File: //backup/db_backup/stationt_tyre.sql
-- MySQL dump 10.15 Distrib 10.0.34-MariaDB, for Linux (x86_64)
--
-- Host: localhost Database: stationt_tyre
-- ------------------------------------------------------
-- Server version 10.0.34-MariaDB
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `wp_ab_appointments`
--
DROP TABLE IF EXISTS `wp_ab_appointments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ab_appointments` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`staff_id` int(10) unsigned NOT NULL,
`service_id` int(10) unsigned DEFAULT NULL,
`start_date` datetime NOT NULL,
`end_date` datetime NOT NULL,
`google_event_id` varchar(255) DEFAULT NULL,
`extras_duration` int(11) NOT NULL DEFAULT '0',
`internal_note` text,
PRIMARY KEY (`id`),
KEY `staff_id` (`staff_id`),
KEY `service_id` (`service_id`),
CONSTRAINT `wp_ab_appointments_ibfk_1` FOREIGN KEY (`staff_id`) REFERENCES `wp_ab_staff` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `wp_ab_appointments_ibfk_2` FOREIGN KEY (`service_id`) REFERENCES `wp_ab_services` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_ab_appointments`
--
LOCK TABLES `wp_ab_appointments` WRITE;
/*!40000 ALTER TABLE `wp_ab_appointments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_ab_appointments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_ab_categories`
--
DROP TABLE IF EXISTS `wp_ab_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ab_categories` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`position` int(11) NOT NULL DEFAULT '9999',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_ab_categories`
--
LOCK TABLES `wp_ab_categories` WRITE;
/*!40000 ALTER TABLE `wp_ab_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_ab_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_ab_coupon_services`
--
DROP TABLE IF EXISTS `wp_ab_coupon_services`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ab_coupon_services` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`coupon_id` int(10) unsigned NOT NULL,
`service_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`id`),
KEY `coupon_id` (`coupon_id`),
KEY `service_id` (`service_id`),
CONSTRAINT `wp_ab_coupon_services_ibfk_1` FOREIGN KEY (`coupon_id`) REFERENCES `wp_ab_coupons` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `wp_ab_coupon_services_ibfk_2` FOREIGN KEY (`service_id`) REFERENCES `wp_ab_services` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_ab_coupon_services`
--
LOCK TABLES `wp_ab_coupon_services` WRITE;
/*!40000 ALTER TABLE `wp_ab_coupon_services` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_ab_coupon_services` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_ab_coupons`
--
DROP TABLE IF EXISTS `wp_ab_coupons`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ab_coupons` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`code` varchar(255) NOT NULL DEFAULT '',
`discount` decimal(3,0) NOT NULL DEFAULT '0',
`deduction` decimal(10,2) NOT NULL DEFAULT '0.00',
`usage_limit` int(10) unsigned NOT NULL DEFAULT '1',
`used` int(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_ab_coupons`
--
LOCK TABLES `wp_ab_coupons` WRITE;
/*!40000 ALTER TABLE `wp_ab_coupons` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_ab_coupons` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_ab_customer_appointments`
--
DROP TABLE IF EXISTS `wp_ab_customer_appointments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ab_customer_appointments` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`customer_id` int(10) unsigned NOT NULL,
`appointment_id` int(10) unsigned NOT NULL,
`location_id` int(10) unsigned DEFAULT NULL,
`payment_id` int(10) unsigned DEFAULT NULL,
`number_of_persons` int(10) unsigned NOT NULL DEFAULT '1',
`extras` text,
`custom_fields` text,
`status` enum('pending','approved','cancelled') NOT NULL DEFAULT 'approved',
`token` varchar(255) DEFAULT NULL,
`time_zone_offset` int(11) DEFAULT NULL,
`locale` varchar(8) DEFAULT NULL,
`compound_service_id` int(10) unsigned DEFAULT NULL,
`compound_token` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `customer_id` (`customer_id`),
KEY `appointment_id` (`appointment_id`),
KEY `payment_id` (`payment_id`),
CONSTRAINT `wp_ab_customer_appointments_ibfk_1` FOREIGN KEY (`customer_id`) REFERENCES `wp_ab_customers` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `wp_ab_customer_appointments_ibfk_2` FOREIGN KEY (`appointment_id`) REFERENCES `wp_ab_appointments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `wp_ab_customer_appointments_ibfk_3` FOREIGN KEY (`payment_id`) REFERENCES `wp_ab_payments` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_ab_customer_appointments`
--
LOCK TABLES `wp_ab_customer_appointments` WRITE;
/*!40000 ALTER TABLE `wp_ab_customer_appointments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_ab_customer_appointments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_ab_customers`
--
DROP TABLE IF EXISTS `wp_ab_customers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ab_customers` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`wp_user_id` bigint(20) unsigned DEFAULT NULL,
`name` varchar(255) NOT NULL DEFAULT '',
`phone` varchar(255) NOT NULL DEFAULT '',
`email` varchar(255) NOT NULL DEFAULT '',
`notes` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_ab_customers`
--
LOCK TABLES `wp_ab_customers` WRITE;
/*!40000 ALTER TABLE `wp_ab_customers` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_ab_customers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_ab_holidays`
--
DROP TABLE IF EXISTS `wp_ab_holidays`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ab_holidays` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`staff_id` int(10) unsigned DEFAULT NULL,
`parent_id` int(10) unsigned DEFAULT NULL,
`date` date NOT NULL,
`repeat_event` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `staff_id` (`staff_id`),
CONSTRAINT `wp_ab_holidays_ibfk_1` FOREIGN KEY (`staff_id`) REFERENCES `wp_ab_staff` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_ab_holidays`
--
LOCK TABLES `wp_ab_holidays` WRITE;
/*!40000 ALTER TABLE `wp_ab_holidays` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_ab_holidays` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_ab_notifications`
--
DROP TABLE IF EXISTS `wp_ab_notifications`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ab_notifications` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`gateway` enum('email','sms') NOT NULL DEFAULT 'email',
`type` varchar(255) NOT NULL DEFAULT '',
`active` tinyint(1) NOT NULL DEFAULT '0',
`copy` tinyint(1) NOT NULL DEFAULT '0',
`subject` varchar(255) NOT NULL DEFAULT '',
`message` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_ab_notifications`
--
LOCK TABLES `wp_ab_notifications` WRITE;
/*!40000 ALTER TABLE `wp_ab_notifications` DISABLE KEYS */;
INSERT INTO `wp_ab_notifications` VALUES (1,'email','client_pending_appointment',0,0,'Your appointment information','<p>Dear {client_name}.</p>\n<p>This is a confirmation that you have booked {service_name}.</p>\n<p>We are waiting you at {company_address} on {appointment_date} at {appointment_time}.</p>\n<p>Thank you for choosing our company.</p>\n<p>{company_name}<br />\n{company_phone}<br />\n{company_website}</p>\n'),(2,'email','client_pending_appointment_cart',0,0,'Your appointment information','<p>Dear {client_name}.</p>\n<p>This is a confirmation that you have booked the following items:</p>\n<p>{cart_info}</p>\n<p>Thank you for choosing our company.</p>\n<p>{company_name}<br />\n{company_phone}<br />\n{company_website}</p>\n'),(3,'email','staff_pending_appointment',0,0,'New booking information','<p>Hello.</p>\n<p>You have new booking.</p>\n<p>Service: {service_name}<br />\nDate: {appointment_date}<br />\nTime: {appointment_time}<br />\nClient name: {client_name}<br />\nClient phone: {client_phone}<br />\nClient email: {client_email}</p>\n'),(4,'email','client_approved_appointment',0,0,'Your appointment information','<p>Dear {client_name}.</p>\n<p>This is a confirmation that you have booked {service_name}.</p>\n<p>We are waiting you at {company_address} on {appointment_date} at {appointment_time}.</p>\n<p>Thank you for choosing our company.</p>\n<p>{company_name}<br />\n{company_phone}<br />\n{company_website}</p>\n'),(5,'email','client_approved_appointment_cart',0,0,'Your appointment information','<p>Dear {client_name}.</p>\n<p>This is a confirmation that you have booked the following items:</p>\n<p>{cart_info}</p>\n<p>Thank you for choosing our company.</p>\n<p>{company_name}<br />\n{company_phone}<br />\n{company_website}</p>\n'),(6,'email','staff_approved_appointment',0,0,'New booking information','<p>Hello.</p>\n<p>You have new booking.</p>\n<p>Service: {service_name}<br />\nDate: {appointment_date}<br />\nTime: {appointment_time}<br />\nClient name: {client_name}<br />\nClient phone: {client_phone}<br />\nClient email: {client_email}</p>\n'),(7,'email','client_cancelled_appointment',0,0,'Booking cancellation','<p>Dear {client_name}.</p>\n<p>You have cancelled your booking of {service_name} on {appointment_date} at {appointment_time}.</p>\n<p>Thank you for choosing our company.</p>\n<p>{company_name}<br />\n{company_phone}<br />\n{company_website}</p>\n'),(8,'email','staff_cancelled_appointment',0,0,'Booking cancellation','<p>Hello.</p>\n<p>The following booking has been cancelled.</p>\n<p>Service: {service_name}<br />\nDate: {appointment_date}<br />\nTime: {appointment_time}<br />\nClient name: {client_name}<br />\nClient phone: {client_phone}<br />\nClient email: {client_email}</p>\n'),(9,'email','client_new_wp_user',0,0,'New customer','<p>Hello.</p>\n<p>An account was created for you at {site_address}</p>\n<p>Your user details:<br />\nuser: {new_username}<br />\npassword: {new_password}</p>\n<p>Thanks.</p>\n'),(10,'email','client_reminder',0,0,'Your appointment at {company_name}','<p>Dear {client_name}.</p>\n<p>We would like to remind you that you have booked {service_name} tomorrow on {appointment_time}. We are waiting you at {company_address}.</p>\n<p>Thank you for choosing our company.</p>\n<p>{company_name}<br />\n{company_phone}<br />\n{company_website}</p>\n'),(11,'email','client_follow_up',0,0,'Your visit to {company_name}','<p>Dear {client_name}.</p>\n<p>Thank you for choosing {company_name}. We hope you were satisfied with your {service_name}.</p>\n<p>Thank you and we look forward to seeing you again soon.</p>\n<p>{company_name}<br />\n{company_phone}<br />\n{company_website}</p>\n'),(12,'email','staff_agenda',0,0,'Your agenda for {tomorrow_date}','<p>Hello.</p>\n<p>Your agenda for tomorrow is:</p>\n<p>{next_day_agenda}</p>\n'),(13,'sms','client_pending_appointment',0,0,'','Dear {client_name}.\nThis is a confirmation that you have booked {service_name}.\nWe are waiting you at {company_address} on {appointment_date} at {appointment_time}.\nThank you for choosing our company.\n{company_name}\n{company_phone}\n{company_website}'),(14,'sms','client_pending_appointment_cart',0,0,'','Dear {client_name}.\nThis is a confirmation that you have booked the following items:\n{cart_info}\nThank you for choosing our company.\n{company_name}\n{company_phone}\n{company_website}'),(15,'sms','staff_pending_appointment',0,0,'','Hello.\nYou have new booking.\nService: {service_name}\nDate: {appointment_date}\nTime: {appointment_time}\nClient name: {client_name}\nClient phone: {client_phone}\nClient email: {client_email}'),(16,'sms','client_approved_appointment',1,0,'','Dear {client_name}.\nThis is a confirmation that you have booked {service_name}.\nWe are waiting you at {company_address} on {appointment_date} at {appointment_time}.\nThank you for choosing our company.\n{company_name}\n{company_phone}\n{company_website}'),(17,'sms','client_approved_appointment_cart',1,0,'','Dear {client_name}.\nThis is a confirmation that you have booked the following items:\n{cart_info}\nThank you for choosing our company.\n{company_name}\n{company_phone}\n{company_website}'),(18,'sms','staff_approved_appointment',0,0,'','Hello.\nYou have new booking.\nService: {service_name}\nDate: {appointment_date}\nTime: {appointment_time}\nClient name: {client_name}\nClient phone: {client_phone}\nClient email: {client_email}'),(19,'sms','client_cancelled_appointment',0,0,'','Dear {client_name}.\nYou have cancelled your booking of {service_name} on {appointment_date} at {appointment_time}.\nThank you for choosing our company.\n{company_name}\n{company_phone}\n{company_website}'),(20,'sms','staff_cancelled_appointment',0,0,'','Hello.\nThe following booking has been cancelled.\nService: {service_name}\nDate: {appointment_date}\nTime: {appointment_time}\nClient name: {client_name}\nClient phone: {client_phone}\nClient email: {client_email}'),(21,'sms','client_new_wp_user',1,0,'','Hello.\nAn account was created for you at {site_address}\nYour user details:\nuser: {new_username}\npassword: {new_password}\n\nThanks.'),(22,'sms','client_reminder',0,0,'','Dear {client_name}.\nWe would like to remind you that you have booked {service_name} tomorrow on {appointment_time}. We are waiting you at {company_address}.\nThank you for choosing our company.\n{company_name}\n{company_phone}\n{company_website}'),(23,'sms','client_follow_up',0,0,'','Dear {client_name}.\nThank you for choosing {company_name}. We hope you were satisfied with your {service_name}.\nThank you and we look forward to seeing you again soon.\n{company_name}\n{company_phone}\n{company_website}'),(24,'sms','staff_agenda',0,0,'','Hello.\nYour agenda for tomorrow is:\n{next_day_agenda}');
/*!40000 ALTER TABLE `wp_ab_notifications` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_ab_payments`
--
DROP TABLE IF EXISTS `wp_ab_payments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ab_payments` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`created` datetime NOT NULL,
`type` enum('local','coupon','paypal','authorizeNet','stripe','2checkout','payulatam','payson','mollie') NOT NULL DEFAULT 'local',
`token` varchar(255) NOT NULL,
`transaction_id` varchar(255) NOT NULL,
`total` decimal(10,2) NOT NULL DEFAULT '0.00',
`paid` decimal(10,2) NOT NULL DEFAULT '0.00',
`status` enum('pending','completed') NOT NULL DEFAULT 'completed',
`details` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_ab_payments`
--
LOCK TABLES `wp_ab_payments` WRITE;
/*!40000 ALTER TABLE `wp_ab_payments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_ab_payments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_ab_schedule_item_breaks`
--
DROP TABLE IF EXISTS `wp_ab_schedule_item_breaks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ab_schedule_item_breaks` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`staff_schedule_item_id` int(10) unsigned NOT NULL,
`start_time` time DEFAULT NULL,
`end_time` time DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `staff_schedule_item_id` (`staff_schedule_item_id`),
CONSTRAINT `wp_ab_schedule_item_breaks_ibfk_1` FOREIGN KEY (`staff_schedule_item_id`) REFERENCES `wp_ab_staff_schedule_items` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_ab_schedule_item_breaks`
--
LOCK TABLES `wp_ab_schedule_item_breaks` WRITE;
/*!40000 ALTER TABLE `wp_ab_schedule_item_breaks` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_ab_schedule_item_breaks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_ab_sent_notifications`
--
DROP TABLE IF EXISTS `wp_ab_sent_notifications`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ab_sent_notifications` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`customer_appointment_id` int(10) unsigned DEFAULT NULL,
`staff_id` int(10) unsigned DEFAULT NULL,
`gateway` enum('email','sms') NOT NULL DEFAULT 'email',
`type` varchar(60) NOT NULL,
`created` datetime NOT NULL,
PRIMARY KEY (`id`),
KEY `customer_appointment_id` (`customer_appointment_id`),
KEY `staff_id` (`staff_id`),
CONSTRAINT `wp_ab_sent_notifications_ibfk_1` FOREIGN KEY (`customer_appointment_id`) REFERENCES `wp_ab_customer_appointments` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `wp_ab_sent_notifications_ibfk_2` FOREIGN KEY (`staff_id`) REFERENCES `wp_ab_staff` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_ab_sent_notifications`
--
LOCK TABLES `wp_ab_sent_notifications` WRITE;
/*!40000 ALTER TABLE `wp_ab_sent_notifications` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_ab_sent_notifications` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_ab_services`
--
DROP TABLE IF EXISTS `wp_ab_services`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ab_services` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) DEFAULT '',
`type` enum('simple','compound') NOT NULL DEFAULT 'simple',
`duration` int(11) NOT NULL DEFAULT '900',
`price` decimal(10,2) NOT NULL DEFAULT '0.00',
`color` varchar(255) NOT NULL DEFAULT '#FFFFFF',
`category_id` int(10) unsigned DEFAULT NULL,
`capacity` int(11) NOT NULL DEFAULT '1',
`position` int(11) NOT NULL DEFAULT '9999',
`padding_left` int(11) NOT NULL DEFAULT '0',
`padding_right` int(11) NOT NULL DEFAULT '0',
`info` text,
`sub_services` text NOT NULL,
`visibility` enum('public','private') NOT NULL DEFAULT 'public',
PRIMARY KEY (`id`),
KEY `category_id` (`category_id`),
CONSTRAINT `wp_ab_services_ibfk_1` FOREIGN KEY (`category_id`) REFERENCES `wp_ab_categories` (`id`) ON DELETE SET NULL ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_ab_services`
--
LOCK TABLES `wp_ab_services` WRITE;
/*!40000 ALTER TABLE `wp_ab_services` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_ab_services` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_ab_staff`
--
DROP TABLE IF EXISTS `wp_ab_staff`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ab_staff` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`wp_user_id` bigint(20) unsigned DEFAULT NULL,
`attachment_id` int(10) unsigned DEFAULT NULL,
`full_name` varchar(255) DEFAULT NULL,
`email` varchar(255) DEFAULT NULL,
`phone` varchar(255) DEFAULT NULL,
`info` text,
`google_data` varchar(255) DEFAULT NULL,
`google_calendar_id` varchar(255) DEFAULT NULL,
`position` int(11) NOT NULL DEFAULT '9999',
`visibility` enum('public','private') NOT NULL DEFAULT 'public',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_ab_staff`
--
LOCK TABLES `wp_ab_staff` WRITE;
/*!40000 ALTER TABLE `wp_ab_staff` DISABLE KEYS */;
INSERT INTO `wp_ab_staff` VALUES (1,NULL,NULL,'Employee',NULL,NULL,NULL,NULL,NULL,9999,'public');
/*!40000 ALTER TABLE `wp_ab_staff` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_ab_staff_schedule_items`
--
DROP TABLE IF EXISTS `wp_ab_staff_schedule_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ab_staff_schedule_items` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`staff_id` int(10) unsigned NOT NULL,
`day_index` int(10) unsigned NOT NULL,
`start_time` time DEFAULT NULL,
`end_time` time DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `unique_ids_idx` (`staff_id`,`day_index`),
CONSTRAINT `wp_ab_staff_schedule_items_ibfk_1` FOREIGN KEY (`staff_id`) REFERENCES `wp_ab_staff` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_ab_staff_schedule_items`
--
LOCK TABLES `wp_ab_staff_schedule_items` WRITE;
/*!40000 ALTER TABLE `wp_ab_staff_schedule_items` DISABLE KEYS */;
INSERT INTO `wp_ab_staff_schedule_items` VALUES (1,1,1,'08:00:00','18:00:00'),(2,1,2,'08:00:00','18:00:00'),(3,1,3,'08:00:00','18:00:00'),(4,1,4,'08:00:00','18:00:00'),(5,1,5,'08:00:00','18:00:00'),(6,1,6,'08:00:00','18:00:00'),(7,1,7,'08:00:00','18:00:00');
/*!40000 ALTER TABLE `wp_ab_staff_schedule_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_ab_staff_services`
--
DROP TABLE IF EXISTS `wp_ab_staff_services`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ab_staff_services` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`staff_id` int(10) unsigned NOT NULL,
`service_id` int(10) unsigned NOT NULL,
`price` decimal(10,2) NOT NULL DEFAULT '0.00',
`deposit` varchar(100) NOT NULL DEFAULT '100%',
`capacity` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
UNIQUE KEY `unique_ids_idx` (`staff_id`,`service_id`),
KEY `service_id` (`service_id`),
CONSTRAINT `wp_ab_staff_services_ibfk_1` FOREIGN KEY (`staff_id`) REFERENCES `wp_ab_staff` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
CONSTRAINT `wp_ab_staff_services_ibfk_2` FOREIGN KEY (`service_id`) REFERENCES `wp_ab_services` (`id`) ON DELETE CASCADE ON UPDATE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_ab_staff_services`
--
LOCK TABLES `wp_ab_staff_services` WRITE;
/*!40000 ALTER TABLE `wp_ab_staff_services` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_ab_staff_services` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) 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=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_commentmeta`
--
LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
INSERT INTO `wp_commentmeta` VALUES (2,2,'akismet_history','a:3:{s:4:\"time\";d:1494965043.05148792266845703125;s:5:\"event\";s:11:\"check-error\";s:4:\"meta\";a:1:{s:8:\"response\";s:7:\"invalid\";}}'),(6,3,'akismet_history','a:3:{s:4:\"time\";d:1501190096.9884700775146484375;s:5:\"event\";s:11:\"check-error\";s:4:\"meta\";a:1:{s:8:\"response\";s:7:\"invalid\";}}'),(10,4,'akismet_history','a:3:{s:4:\"time\";d:1501205175.58782100677490234375;s:5:\"event\";s:11:\"check-error\";s:4:\"meta\";a:1:{s:8:\"response\";s:7:\"invalid\";}}'),(14,5,'akismet_history','a:3:{s:4:\"time\";d:1501384042.741291046142578125;s:5:\"event\";s:11:\"check-error\";s:4:\"meta\";a:1:{s:8:\"response\";s:7:\"invalid\";}}'),(18,6,'akismet_history','a:3:{s:4:\"time\";d:1507633154.0295441150665283203125;s:5:\"event\";s:11:\"check-error\";s:4:\"meta\";a:1:{s:8:\"response\";s:7:\"invalid\";}}');
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext 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=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
INSERT INTO `wp_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2017-02-22 18:28:53','2017-02-22 18:28:53','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://gravatar.com\">Gravatar</a>.',0,'1','','',0,0),(2,1,'SailipNib','r8974jjil@gmail.com','http://undeclaiming.xyz','46.161.9.12','2017-05-16 21:04:03','2017-05-16 20:04:03','http://undeclaiming.xyz <a href=\"http://undeclaiming.xyz\" rel=\"nofollow\">norsk kasino</a> http://undeclaiming.xyz - norsk kasino',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36','',0,0),(3,1,'Instant Web Rankings','emma_lui@zoho.com','https://www.fiverr.com/seodude73/increase-referring-domains-to-your-website','158.222.6.208','2017-07-27 22:14:56','2017-07-27 21:14:56','Acquiring Backlinks from Multiple Domains is Important\r\n\r\nWe know that earning backlinks to content is important, but \r\nhow important is it that the backlinks are coming from different websites \r\nversus the same one?\r\n\r\nWell, the data clearly shows that it’s really important to have a substantial amount \r\nof diversity in the domains linking to your webpage(s).\r\n\r\n\r\nThis is probably one of the most clear-cut factors that equate to \r\nhigh search engine rankings. In fact, the data showed that, on average, webpages ranking #1 had \r\nover 168% more linking domains than the webpages ranking \r\nat #5.\r\n\r\nThis is even clearer to see when you look at the fact \r\nthat webpages ranking #1 actually receive a 23% share of all the linking domains \r\npointing to webpages on page 1 of Google.\r\n\r\nWhenever I map out a backlink acquisition strategy for an SEO campaign, one of the first questions that \r\nI try to answer is, \"How can I get links from a wide range of different websites that are relevant to me?\"\r\n\r\nHigher volumes of backlinks are great, but combining that with high diversity is what’s really going to move the needle.\r\n\r\n\r\nTo give you an idea of the general ratio that you may want to aim for, I looked at the average ratio of backlinks to linking domains that \r\nresults ranking on page 1 of Google.com had.\r\n\r\nAs the trendline in the chart above indicates, the average ratio of backlinks to linking domains that page 1 ranking webpages had was 37:\r\n1.\r\n\r\nIt’s worth noting here that this isn’t necessarily what you need \r\nto \"aim for,\" but rather it should be used as a benchmark to determine whether your current backlink profile could do with an increase in domain diversity.\r\n\r\n\r\n\r\nAction: Use a tool like Ahrefs to analyze your \r\nratio of backlinks to linking domains. If you find that your backlinks are mainly coming from \r\na small pool of domains, look at a way to diversify your backlink strategy to get links from a greater variety of domains.',0,'0','Mozilla/5.0 (Windows NT 5.1; rv:52.0) Gecko/20100101 Firefox/52.0','',0,0),(4,1,'Yohaig','angelika.gillon@gmail.com','http://www.yohaig.ng/category/tv-stations/','154.16.61.8','2017-07-28 02:26:15','2017-07-28 01:26:15','VIDEO: D’banj – It’s Not a Lie ft.\r\nWande Coal & Harrysong\r\n\r\n\r\nHigh 5 Most Considered P-Sq. Movies on Youtube\r\n\r\nOlamide – Wavy Stage\r\n\r\n\r\nVIDEO: P-Sq. – No person Ugly\r\n\r\nVIDEO: Wizkid ft. Drake – Come Nearer\r\n\r\n\r\nVIDEO: Present Dem Camp ft Funbi – As much as You\r\n\r\nMusic video by ShowDemCamp performing As much as You ft.\r\nFunbi. ShowDem Data.\r\n\r\n\r\nSauce Child Sentenced to 2 Years Prison Time \r\nperiod In US For Aggravated Identification Theft\r\n\r\nBabalola Falemi, a Nigerian rapper, popularly often known as Sauce Child or \r\nSinzu has been jailed with a two-yr sentence for stealing $15,388 from…\r\n\r\n\r\nCynthia Morgan – No Digital camera Ft Phyno\r\n\r\nAfrica’s feminine dance-corridor export who\'s now signed to her self led label \"Madrina Records\" Cynthia Morgan places the hiatus to relaxation with…\r\n\r\n\r\nVIDEO: Henry Knight – Train Me\r\n\r\nAfter Trending Massively on Radio in addition to On-line and Offline, Henry Knight unleashes the visuals \r\nto his newest Smash hit single –…\r\n\r\n\r\nVIDEO: Kcee ft. Olamide – We Go Social gathering\r\n\r\nRight here is the video to Kcee’s new jam WE GO Occasion that includes Olamide.\r\nObtain VIDEO\r\n\r\n\r\nSkippa – I need You\r\n\r\nLasisi Olabode Hakeem popularly often known as \"Skippa\" is a Rap/Hip-Hop Artiste and a songwriter who \r\nlaunched his first debut single titled \"Jagaban\" a…\r\n\r\n\r\nChordratic – Elevated ft Haywire, Profound & Nicotine\r\n\r\nWhat can i say, seeing all four of those guys on the identical monitor, means bother.\r\n\r\nChordratic Beats brings again the A team…\r\n\r\n\r\nDJ Latitude – First Half Of The 12 months Combine\r\n\r\n#Team47vibez determined to place an Unique compilation of present and \r\ntrending songs of the primary half of 2017 hosted by quick rising talented…\r\n\r\n\r\nVIDEO: Mystro ft. Davido – Issa Vibe\r\n\r\nThe world is obsessive about the African wave, as Afrobeats and all its fusions proceed to indicate up in widespread music and dance…\r\n\r\n\r\nDoyinsola – My Life (Prod. Puffy Tee)\r\n\r\nDoyinsola continues her regular rise within the music business by dropping \r\nthis majestic single titled \"My Life\". Produced by Puffy Tee, blended and…\r\n\r\n\r\nWizKid – Naughty Journey ft. Main Lazer\r\n\r\nTake a look at this joint off Wizkid’s \"Sounds from the opposite Side\" album titled \"Naughty Ride\" that includes Main Lazer.\r\nGET ON ITUNES\r\n\r\n\r\nKeyda – Loud ( Prod by ICE-BERG BEATZ )\r\n\r\nAfter dropping a sequence of singles that break up airwaves in many \r\nways, Keyda is ready to drop a monster hit known as \r\n\"Loud\". #loudbykeyda…\r\n\r\n\r\nV5ive Ft. Ashraph – Case Closed (Prod. By Lake)\r\n\r\nMulti proficient singer – V5ive who\'s extensively beloved for his distinctive voice and versatility, but once \r\nmore serves his followers with one thing impressively…\r\n\r\n\r\nVIDEO: Diamond Platnumz – Hearth Ft. Tiwa Savage\r\n\r\nVIDEO: Magnito – Loud\r\n\r\n\r\nAfter premiering the audio a few weeks again, Massive E Leisure act \r\nMagnito dishes out the official video of the Juzhiz produced…\r\n\r\n\r\nKcee ft. Olamide – We Go Occasion\r\n\r\nKcee returns with one other single titled WE GO Occasion that includes Olamide.\r\nTest it out beneath and share your ideas. Obtain\r\n\r\n\r\nVIDEO: Diamond Platnumz – I Miss You\r\n\r\nThis Track was written by Diamond Platnumz & The \r\nbeat was produced by LIZER Traditional from Tanzania from Wasafi Data Tanzania… The Video…\r\n\r\n\r\nVIDEO: Phyno – If To Say\r\n\r\nPenthauze presents \"IF TO SAY\" the video by Phyno. Shot and \r\ndirected by Limitless LA.\r\n\r\n\r\nVIDEO | AUDIO: CEO LADDO – Ballin ft. Oritse Femi\r\n\r\nCEO Laddo reveals no indicators of slowing down after dropping \r\nsongs like My Nigga, Amalaune the Enugu state born Rapper / Lyriscist Cornelius…\r\n\r\n\r\nSurprize ft. Olstar – Wan Avenue\r\n\r\nTremendous Wavey Information freshly signed act \"Surprize \" is able \r\nto invade the trade together with his personal distinctive model of music.\r\n\r\nHe’s set…\r\n\r\n\r\nIce Prince – Profitable\r\n\r\nOfficial audio for the 2017 Afrobeats single \"Successful\" by Ice Prince \r\nZamani, produced by Tefa from Nigeria. Get this monitor on iTunes!',0,'0','Mozilla/5.0 (Windows NT 5.1; rv:52.0) Gecko/20100101 Firefox/52.0','',0,0),(5,1,'SEO - 72% Off','sabinaparamor@gmx.de','https://www.fiverr.com/seodude73/increase-referring-domains-to-your-website','167.88.120.128','2017-07-30 04:07:22','2017-07-30 03:07:22','The Number of Referring Domains Has a Very Strong Influence on Rankings\r\n\r\nYou may have heard that getting backlinks from the same domain has diminishing returns.\r\n\r\n\r\nIn other words, it’s better to get 10 links from 10 different sites than 10 \r\nlinks from the same domain.\r\n\r\nAccording to our analysis, this appears to be the case.\r\nWe found that domain diversity has a substantial impact on rankings.\r\n\r\n\r\nGoogle wants to see several different sites endorsing \r\nyour page. And the more domains that link to you, the more endorsements you have in the eyes of Google.\r\n\r\n\r\nIn fact, the number of unique referring domains was the strongest \r\ncorrelation in our entire study.\r\n\r\nKey Takeaway: Getting links from a diverse group of domains \r\nis extrem',0,'0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:52.0) Gecko/20100101 Firefox/52.0','',0,0),(6,1,'BabloPridi','iansrm002@yahoo.com','http://lifestir.net/blogs/post/969','146.185.223.105','2017-10-10 11:59:13','2017-10-10 10:59:13','griseofulvin 10 20 buy, http://mariannaonline.com/community/blogs/post/21082, http://kiddzcom.com/oxwall/blogs/post/4637 griseofulvin forum buy http://rsocial.espu-ao.net/blogs/post/17187 http://diduknow.allrh.com/blogs/post/32641 http://www.ocperio.org/group3/blogs/post/9970, http://saknada.com.au/ssn/blogs/post/12816, http://saknada.com.au/ssn/blogs/post/65888, http://www.mauiwowie.xxx/social/blogs/post/22786',0,'0','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 YaBrowser/17.3.0.1785 Yowser/2.5 Safari/537.36','',0,0);
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_es_deliverreport`
--
DROP TABLE IF EXISTS `wp_es_deliverreport`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_es_deliverreport` (
`es_deliver_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`es_deliver_sentguid` varchar(255) NOT NULL,
`es_deliver_emailid` int(10) unsigned NOT NULL,
`es_deliver_emailmail` varchar(255) NOT NULL,
`es_deliver_sentdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`es_deliver_status` varchar(25) NOT NULL,
`es_deliver_viewdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`es_deliver_sentstatus` varchar(25) NOT NULL DEFAULT 'Sent',
`es_deliver_senttype` varchar(25) NOT NULL DEFAULT 'Instant Mail',
PRIMARY KEY (`es_deliver_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_es_deliverreport`
--
LOCK TABLES `wp_es_deliverreport` WRITE;
/*!40000 ALTER TABLE `wp_es_deliverreport` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_es_deliverreport` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_es_emaillist`
--
DROP TABLE IF EXISTS `wp_es_emaillist`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_es_emaillist` (
`es_email_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`es_email_name` varchar(255) NOT NULL,
`es_email_mail` varchar(255) NOT NULL,
`es_email_status` varchar(25) NOT NULL DEFAULT 'Unconfirmed',
`es_email_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`es_email_viewcount` varchar(100) NOT NULL,
`es_email_group` varchar(255) NOT NULL DEFAULT 'Public',
`es_email_guid` varchar(255) NOT NULL,
PRIMARY KEY (`es_email_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_es_emaillist`
--
LOCK TABLES `wp_es_emaillist` WRITE;
/*!40000 ALTER TABLE `wp_es_emaillist` DISABLE KEYS */;
INSERT INTO `wp_es_emaillist` VALUES (1,'Admin','bhoobal.webdesigner@gmail.com','Confirmed','2017-02-23 04:17:05','0','Public','ydbcnf-ykiagm-xzlerd-ajmsei-yfokgl');
/*!40000 ALTER TABLE `wp_es_emaillist` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_es_notification`
--
DROP TABLE IF EXISTS `wp_es_notification`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_es_notification` (
`es_note_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`es_note_cat` text,
`es_note_group` varchar(255) NOT NULL,
`es_note_templ` int(10) unsigned NOT NULL,
`es_note_status` varchar(10) NOT NULL DEFAULT 'Enable',
PRIMARY KEY (`es_note_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_es_notification`
--
LOCK TABLES `wp_es_notification` WRITE;
/*!40000 ALTER TABLE `wp_es_notification` DISABLE KEYS */;
INSERT INTO `wp_es_notification` VALUES (1,' ##Motors## -- ##Tesla## -- ##Uncategorised## -- ##Uncategorized## ','Public',1,'Enable');
/*!40000 ALTER TABLE `wp_es_notification` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_es_pluginconfig`
--
DROP TABLE IF EXISTS `wp_es_pluginconfig`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_es_pluginconfig` (
`es_c_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`es_c_fromname` varchar(255) NOT NULL,
`es_c_fromemail` varchar(255) NOT NULL,
`es_c_mailtype` varchar(255) NOT NULL,
`es_c_adminmailoption` varchar(255) NOT NULL,
`es_c_adminemail` varchar(255) NOT NULL,
`es_c_adminmailsubject` varchar(255) NOT NULL,
`es_c_adminmailcontant` text,
`es_c_usermailoption` varchar(255) NOT NULL,
`es_c_usermailsubject` varchar(255) NOT NULL,
`es_c_usermailcontant` text,
`es_c_optinoption` varchar(255) NOT NULL,
`es_c_optinsubject` varchar(255) NOT NULL,
`es_c_optincontent` text,
`es_c_optinlink` varchar(255) NOT NULL,
`es_c_unsublink` varchar(255) NOT NULL,
`es_c_unsubtext` text,
`es_c_unsubhtml` text,
`es_c_subhtml` text,
`es_c_message1` text,
`es_c_message2` text,
PRIMARY KEY (`es_c_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_es_pluginconfig`
--
LOCK TABLES `wp_es_pluginconfig` WRITE;
/*!40000 ALTER TABLE `wp_es_pluginconfig` DISABLE KEYS */;
INSERT INTO `wp_es_pluginconfig` VALUES (1,'Admin','bhoobal.webdesigner@gmail.com','WP HTML MAIL','YES','bhoobal.webdesigner@gmail.com','ABS Station Tyres New email subscription','Hi Admin, \r\n\r\nWe have received a request to subscribe new email address to receive emails from our website. \r\n\r\nEmail: ###EMAIL### \r\nName : ###NAME### \r\n\r\nThank You\r\nABS Station Tyres','YES','ABS Station Tyres Welcome to our newsletter','Hi ###NAME###, \r\n\r\nWe have received a request to subscribe this email address to receive newsletter from our website. \r\n\r\nThank You\r\nABS Station Tyres \r\n\r\n No longer interested in emails from ABS Station Tyres?. Please <a href=\'###LINK###\'>click here</a> to unsubscribe','Double Opt In','ABS Station Tyres confirm subscription','Hi ###NAME###, \r\n\r\nA newsletter subscription request for this email address was received. Please confirm it by <a href=\'###LINK###\'>clicking here</a>.\r\n\r\nIf you still cannot subscribe, please click this link : \r\n ###LINK### \r\n\r\nThank You\r\nABS Station Tyres','http://stationtyresdarwen.co.uk/?es=optin&db=###DBID###&email=###EMAIL###&guid=###GUID###','http://stationtyresdarwen.co.uk/?es=unsubscribe&db=###DBID###&email=###EMAIL###&guid=###GUID###','No longer interested in emails from ABS Station Tyres?. Please <a href=\'###LINK###\'>click here</a> to unsubscribe','Thank You, You have been successfully unsubscribed. You will no longer hear from us.','Thank You, You have been successfully subscribed to our newsletter.','Oops.. This subscription cant be completed, sorry. The email address is blocked or already subscribed. Thank you.','Oops.. We are getting some technical error. Please try again or contact admin.');
/*!40000 ALTER TABLE `wp_es_pluginconfig` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_es_sentdetails`
--
DROP TABLE IF EXISTS `wp_es_sentdetails`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_es_sentdetails` (
`es_sent_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`es_sent_guid` varchar(255) NOT NULL,
`es_sent_qstring` varchar(255) NOT NULL,
`es_sent_source` varchar(255) NOT NULL,
`es_sent_starttime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`es_sent_endtime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`es_sent_count` int(10) unsigned NOT NULL,
`es_sent_preview` text,
`es_sent_status` varchar(25) NOT NULL DEFAULT 'Sent',
`es_sent_type` varchar(25) NOT NULL DEFAULT 'Instant Mail',
`es_sent_subject` varchar(255) NOT NULL,
PRIMARY KEY (`es_sent_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_es_sentdetails`
--
LOCK TABLES `wp_es_sentdetails` WRITE;
/*!40000 ALTER TABLE `wp_es_sentdetails` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_es_sentdetails` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_es_templatetable`
--
DROP TABLE IF EXISTS `wp_es_templatetable`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_es_templatetable` (
`es_templ_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`es_templ_heading` varchar(255) NOT NULL,
`es_templ_body` text,
`es_templ_status` varchar(25) NOT NULL DEFAULT 'Published',
`es_email_type` varchar(100) NOT NULL DEFAULT 'Static Template',
PRIMARY KEY (`es_templ_id`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_es_templatetable`
--
LOCK TABLES `wp_es_templatetable` WRITE;
/*!40000 ALTER TABLE `wp_es_templatetable` DISABLE KEYS */;
INSERT INTO `wp_es_templatetable` VALUES (1,'New post published ###POSTTITLE###','Hello ###NAME###,\r\n\r\nWe have published new blog in our website. ###POSTTITLE###\r\n###POSTDESC###\r\nYou may view the latest post at ###POSTLINK###\r\nYou received this e-mail because you asked to be notified when new updates are posted.\r\n\r\nThanks & Regards\r\nAdmin','Published','Dynamic Template'),(2,'Post notification ###POSTTITLE###','Hello ###EMAIL###,\r\n\r\nWe have published new blog in our website. ###POSTTITLE###\r\n###POSTIMAGE###\r\n###POSTFULL###\r\nYou may view the latest post at ###POSTLINK###\r\nYou received this e-mail because you asked to be notified when new updates are posted.\r\n\r\nThanks & Regards\r\nAdmin','Published','Dynamic Template'),(3,'Hello World Newsletter','<strong style=\"color: #990000\"> Email Subscribers</strong><p>Email Subscribers plugin has options to send newsletters to subscribers. It has a separate page with HTML editor to create a HTML newsletter. Also have options to send notification email to subscribers when new posts are published to your blog. Separate page available to include and exclude categories to send notifications. Using plugin Import and Export options admins can easily import registered users and commenters to subscriptions list.</p> <strong style=\"color: #990000\">Plugin Features</strong><ol> <li>Send notification email to subscribers when new posts are published.</li> <li>Subscription box.</li><li>Double opt-in and single opt-in facility for subscriber.</li> <li>Email notification to admin when user signs up (Optional).</li> <li>Automatic welcome mail to subscriber (Optional).</li> <li>Unsubscribe link in the mail.</li> <li>Import/Export subscriber emails.</li> <li>HTML editor to compose newsletter.</li> </ol> <p>Plugin live demo and video tutorial available on the official website. Check official website for more information.</p> <strong>Thanks & Regards</strong><br>Admin','Published','Static Template');
/*!40000 ALTER TABLE `wp_es_templatetable` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) 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=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_links`
--
LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) 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=MyISAM AUTO_INCREMENT=7780 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://stationtyresdarwen.co.uk','yes'),(2,'home','http://stationtyresdarwen.co.uk','yes'),(3,'blogname','Station Tyres','yes'),(4,'blogdescription','Tyres in Darwen, Tyres Darwen','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','yusuf@y-p.uk','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','jS F Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','jS F Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:214:{s:13:\"stm_office/?$\";s:30:\"index.php?post_type=stm_office\";s:43:\"stm_office/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=stm_office&feed=$matches[1]\";s:38:\"stm_office/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?post_type=stm_office&feed=$matches[1]\";s:30:\"stm_office/page/([0-9]{1,})/?$\";s:48:\"index.php?post_type=stm_office&paged=$matches[1]\";s:10:\"sidebar/?$\";s:27:\"index.php?post_type=sidebar\";s:40:\"sidebar/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=sidebar&feed=$matches[1]\";s:35:\"sidebar/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=sidebar&feed=$matches[1]\";s:27:\"sidebar/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=sidebar&paged=$matches[1]\";s:21:\"test_drive_request/?$\";s:38:\"index.php?post_type=test_drive_request\";s:51:\"test_drive_request/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?post_type=test_drive_request&feed=$matches[1]\";s:46:\"test_drive_request/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?post_type=test_drive_request&feed=$matches[1]\";s:38:\"test_drive_request/page/([0-9]{1,})/?$\";s:56:\"index.php?post_type=test_drive_request&paged=$matches[1]\";s:11:\"listings/?$\";s:28:\"index.php?post_type=listings\";s:41:\"listings/feed/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=listings&feed=$matches[1]\";s:36:\"listings/(feed|rdf|rss|rss2|atom)/?$\";s:45:\"index.php?post_type=listings&feed=$matches[1]\";s:28:\"listings/page/([0-9]{1,})/?$\";s:46:\"index.php?post_type=listings&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s: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:38:\"stm_office/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"stm_office/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"stm_office/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"stm_office/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"stm_office/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"stm_office/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"stm_office/([^/]+)/embed/?$\";s:43:\"index.php?stm_office=$matches[1]&embed=true\";s:31:\"stm_office/([^/]+)/trackback/?$\";s:37:\"index.php?stm_office=$matches[1]&tb=1\";s:51:\"stm_office/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?stm_office=$matches[1]&feed=$matches[2]\";s:46:\"stm_office/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?stm_office=$matches[1]&feed=$matches[2]\";s:39:\"stm_office/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?stm_office=$matches[1]&paged=$matches[2]\";s:46:\"stm_office/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?stm_office=$matches[1]&cpage=$matches[2]\";s:35:\"stm_office/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?stm_office=$matches[1]&page=$matches[2]\";s:27:\"stm_office/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"stm_office/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"stm_office/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"stm_office/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"stm_office/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"stm_office/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"sidebar/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"sidebar/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"sidebar/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"sidebar/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"sidebar/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"sidebar/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"sidebar/([^/]+)/embed/?$\";s:40:\"index.php?sidebar=$matches[1]&embed=true\";s:28:\"sidebar/([^/]+)/trackback/?$\";s:34:\"index.php?sidebar=$matches[1]&tb=1\";s:48:\"sidebar/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?sidebar=$matches[1]&feed=$matches[2]\";s:43:\"sidebar/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?sidebar=$matches[1]&feed=$matches[2]\";s:36:\"sidebar/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?sidebar=$matches[1]&paged=$matches[2]\";s:43:\"sidebar/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?sidebar=$matches[1]&cpage=$matches[2]\";s:32:\"sidebar/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?sidebar=$matches[1]&page=$matches[2]\";s:24:\"sidebar/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"sidebar/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"sidebar/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"sidebar/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"sidebar/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"sidebar/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:46:\"test_drive_request/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:56:\"test_drive_request/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:76:\"test_drive_request/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"test_drive_request/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:71:\"test_drive_request/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:52:\"test_drive_request/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:35:\"test_drive_request/([^/]+)/embed/?$\";s:51:\"index.php?test_drive_request=$matches[1]&embed=true\";s:39:\"test_drive_request/([^/]+)/trackback/?$\";s:45:\"index.php?test_drive_request=$matches[1]&tb=1\";s:59:\"test_drive_request/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?test_drive_request=$matches[1]&feed=$matches[2]\";s:54:\"test_drive_request/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:57:\"index.php?test_drive_request=$matches[1]&feed=$matches[2]\";s:47:\"test_drive_request/([^/]+)/page/?([0-9]{1,})/?$\";s:58:\"index.php?test_drive_request=$matches[1]&paged=$matches[2]\";s:54:\"test_drive_request/([^/]+)/comment-page-([0-9]{1,})/?$\";s:58:\"index.php?test_drive_request=$matches[1]&cpage=$matches[2]\";s:43:\"test_drive_request/([^/]+)(?:/([0-9]+))?/?$\";s:57:\"index.php?test_drive_request=$matches[1]&page=$matches[2]\";s:35:\"test_drive_request/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"test_drive_request/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"test_drive_request/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"test_drive_request/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"test_drive_request/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"test_drive_request/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:36:\"listings/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:46:\"listings/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:66:\"listings/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"listings/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:61:\"listings/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:42:\"listings/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:25:\"listings/([^/]+)/embed/?$\";s:41:\"index.php?listings=$matches[1]&embed=true\";s:29:\"listings/([^/]+)/trackback/?$\";s:35:\"index.php?listings=$matches[1]&tb=1\";s:49:\"listings/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?listings=$matches[1]&feed=$matches[2]\";s:44:\"listings/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?listings=$matches[1]&feed=$matches[2]\";s:37:\"listings/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?listings=$matches[1]&paged=$matches[2]\";s:44:\"listings/([^/]+)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?listings=$matches[1]&cpage=$matches[2]\";s:33:\"listings/([^/]+)(?:/([0-9]+))?/?$\";s:47:\"index.php?listings=$matches[1]&page=$matches[2]\";s:25:\"listings/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:35:\"listings/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:55:\"listings/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"listings/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:50:\"listings/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"listings/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:40:\"vc_grid_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"vc_grid_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"vc_grid_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"vc_grid_item/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"vc_grid_item/([^/]+)/embed/?$\";s:45:\"index.php?vc_grid_item=$matches[1]&embed=true\";s:33:\"vc_grid_item/([^/]+)/trackback/?$\";s:39:\"index.php?vc_grid_item=$matches[1]&tb=1\";s:41:\"vc_grid_item/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&paged=$matches[2]\";s:48:\"vc_grid_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&cpage=$matches[2]\";s:37:\"vc_grid_item/([^/]+)(?:/([0-9]+))?/?$\";s:51:\"index.php?vc_grid_item=$matches[1]&page=$matches[2]\";s:29:\"vc_grid_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"vc_grid_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"vc_grid_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"vc_grid_item/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:38:\"mc4wp-form/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"mc4wp-form/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"mc4wp-form/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"mc4wp-form/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"mc4wp-form/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:44:\"mc4wp-form/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:27:\"mc4wp-form/([^/]+)/embed/?$\";s:43:\"index.php?mc4wp-form=$matches[1]&embed=true\";s:31:\"mc4wp-form/([^/]+)/trackback/?$\";s:37:\"index.php?mc4wp-form=$matches[1]&tb=1\";s:39:\"mc4wp-form/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?mc4wp-form=$matches[1]&paged=$matches[2]\";s:46:\"mc4wp-form/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?mc4wp-form=$matches[1]&cpage=$matches[2]\";s:35:\"mc4wp-form/([^/]+)(?:/([0-9]+))?/?$\";s:49:\"index.php?mc4wp-form=$matches[1]&page=$matches[2]\";s:27:\"mc4wp-form/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"mc4wp-form/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"mc4wp-form/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"mc4wp-form/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"mc4wp-form/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"mc4wp-form/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";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:8:\"embed/?$\";s:21:\"index.php?&embed=true\";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=4283&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:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:15:{i:0;s:19:\"akismet/akismet.php\";i:1;s:51:\"bookly-responsive-appointment-booking-tool/main.php\";i:2;s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";i:3;s:36:\"contact-form-7/wp-contact-form-7.php\";i:4;s:51:\"custom_icons_by_stylemixthemes/stm-custom-icons.php\";i:5;s:39:\"email-subscribers/email-subscribers.php\";i:6;s:33:\"instagram-feed/instagram-feed.php\";i:7;s:27:\"js_composer/js_composer.php\";i:8;s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";i:9;s:37:\"protect-wp-admin/protect-wp-admin.php\";i:10;s:23:\"revslider/revslider.php\";i:11;s:31:\"stm-post-type/stm-post-type.php\";i:12;s:29:\"stm_importer/stm-importer.php\";i:13;s:45:\"stm_vehicles_listing/stm_vehicles_listing.php\";i:14;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:5:{i:0;s:75:\"/home/stationtyresdarw/public_html/wp-content/themes/stationtyres/index.php\";i:1;s:76:\"/home/stationtyresdarw/public_html/wp-content/themes/stationtyres/header.php\";i:2;s:75:\"/home/stationtyresdarw/public_html/wp-content/themes/stationtyres/style.css\";i:3;s:80:\"/home/stationtyresdarw/public_html/demo/wp-content/themes/stationtyres/style.css\";i:4;s:81:\"/home/stationtyresdarw/public_html/demo/wp-content/themes/stationtyres/footer.php\";}','no'),(40,'template','stationtyres','yes'),(41,'stylesheet','stationtyres','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','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','0','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:3:{s:51:\"bookly-responsive-appointment-booking-tool/main.php\";a:2:{i:0;s:21:\"BooklyLite\\Lib\\Plugin\";i:1;s:9:\"uninstall\";}s:33:\"instagram-feed/instagram-feed.php\";s:22:\"sb_instagram_uninstall\";s:37:\"protect-wp-admin/protect-wp-admin.php\";s:26:\"init_uninstall_pwa_plugins\";}','no'),(82,'timezone_string','Europe/London','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','4283','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','4416','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','37965','yes'),(92,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(93,'WPLANG','en_GB','yes'),(94,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'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'),(96,'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'),(97,'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'),(98,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:6:{s:19:\"wp_inactive_widgets\";a:0:{}s:7:\"default\";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:6:\"footer\";a:3:{i:0;s:10:\"stm_text-3\";i:1;s:10:\"stm_text-2\";i:2;s:10:\"stm_text-4\";}s:15:\"stm_listing_car\";a:0:{}s:13:\"stm_boats_car\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(453,'es_rm_notice_email_subscribers','no','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,'cron','a:6:{i:1524629593;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:1524640738;a:1:{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:1524643704;a:1:{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;}}}i:1524646518;a:1:{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;}}}i:1524680949;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'),(142,'db_upgraded','','yes'),(6181,'_site_transient_timeout_envato_market_plugins','1514976182','no'),(139,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:12:\"yusuf@y-p.uk\";s:7:\"version\";s:6:\"4.7.10\";s:9:\"timestamp\";i:1523697531;}','no'),(145,'can_compress_scripts','0','no'),(146,'theme_mods_twentysixteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1487788615;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'),(7776,'_site_transient_theme_roots','a:4:{s:12:\"stationtyres\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:13:\"twentysixteen\";s:7:\"/themes\";}','no'),(7775,'_site_transient_timeout_theme_roots','1524605206','no'),(6182,'_site_transient_envato_market_plugins','a:4:{s:9:\"purchased\";a:2:{i:0;a:14:{s:2:\"id\";i:7458846;s:4:\"name\";s:19:\"CSS Animator for VC\";s:6:\"author\";s:41:\"Benjamin Intal, Gambit Technologies, Inc.\";s:7:\"version\";s:3:\"1.7\";s:11:\"description\";s:81:\"Adds the CSS Animator element to Visual Composer that enables more CSS animations\";s:3:\"url\";s:68:\"https://codecanyon.net/item/css-animator-for-visual-composer/7458846\";s:10:\"author_url\";s:35:\"https://codecanyon.net/user/bfintal\";s:13:\"thumbnail_url\";s:0:\"\";s:13:\"landscape_url\";s:50:\"https://s3.envato.com/files/88260642/preview22.jpg\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:5:\"4.8.x\";s:15:\"number_of_sales\";i:892;s:10:\"updated_at\";s:25:\"2017-06-29T02:59:40+10:00\";s:6:\"rating\";d:4.8300000000000000710542735760100185871124267578125;}i:1;a:14:{s:2:\"id\";i:6892199;s:4:\"name\";s:35:\"Ultimate Addons for Visual Composer\";s:6:\"author\";s:16:\"Brainstorm Force\";s:7:\"version\";s:7:\"3.16.20\";s:11:\"description\";s:215:\"Includes Visual Composer premium addon elements like Icon, Info Box, Interactive Banner, Flip Box, Info List & Counter. Best of all - provides A Font Icon Manager allowing users to upload / delete custom icon fonts.\";s:3:\"url\";s:71:\"https://codecanyon.net/item/ultimate-addons-for-visual-composer/6892199\";s:10:\"author_url\";s:43:\"https://codecanyon.net/user/brainstormforce\";s:13:\"thumbnail_url\";s:0:\"\";s:13:\"landscape_url\";s:52:\"https://s3.envato.com/files/238323758/UAVC-thumb.jpg\";s:8:\"requires\";s:3:\"4.4\";s:6:\"tested\";s:5:\"4.8.x\";s:15:\"number_of_sales\";i:45375;s:10:\"updated_at\";s:25:\"2017-12-06T00:15:31+11:00\";s:6:\"rating\";d:4.82000000000000028421709430404007434844970703125;}}s:6:\"active\";a:0:{}s:9:\"installed\";a:0:{}s:7:\"install\";a:2:{i:0;a:14:{s:2:\"id\";i:7458846;s:4:\"name\";s:19:\"CSS Animator for VC\";s:6:\"author\";s:41:\"Benjamin Intal, Gambit Technologies, Inc.\";s:7:\"version\";s:3:\"1.7\";s:11:\"description\";s:81:\"Adds the CSS Animator element to Visual Composer that enables more CSS animations\";s:3:\"url\";s:68:\"https://codecanyon.net/item/css-animator-for-visual-composer/7458846\";s:10:\"author_url\";s:35:\"https://codecanyon.net/user/bfintal\";s:13:\"thumbnail_url\";s:0:\"\";s:13:\"landscape_url\";s:50:\"https://s3.envato.com/files/88260642/preview22.jpg\";s:8:\"requires\";s:3:\"3.8\";s:6:\"tested\";s:5:\"4.8.x\";s:15:\"number_of_sales\";i:892;s:10:\"updated_at\";s:25:\"2017-06-29T02:59:40+10:00\";s:6:\"rating\";d:4.8300000000000000710542735760100185871124267578125;}i:1;a:14:{s:2:\"id\";i:6892199;s:4:\"name\";s:35:\"Ultimate Addons for Visual Composer\";s:6:\"author\";s:16:\"Brainstorm Force\";s:7:\"version\";s:7:\"3.16.20\";s:11:\"description\";s:215:\"Includes Visual Composer premium addon elements like Icon, Info Box, Interactive Banner, Flip Box, Info List & Counter. Best of all - provides A Font Icon Manager allowing users to upload / delete custom icon fonts.\";s:3:\"url\";s:71:\"https://codecanyon.net/item/ultimate-addons-for-visual-composer/6892199\";s:10:\"author_url\";s:43:\"https://codecanyon.net/user/brainstormforce\";s:13:\"thumbnail_url\";s:0:\"\";s:13:\"landscape_url\";s:52:\"https://s3.envato.com/files/238323758/UAVC-thumb.jpg\";s:8:\"requires\";s:3:\"4.4\";s:6:\"tested\";s:5:\"4.8.x\";s:15:\"number_of_sales\";i:45375;s:10:\"updated_at\";s:25:\"2017-12-06T00:15:31+11:00\";s:6:\"rating\";d:4.82000000000000028421709430404007434844970703125;}}}','no'),(576,'_site_transient_timeout_browser_88337cd9fed317d029aaa03191c0be0b','1488998836','no'),(577,'_site_transient_browser_88337cd9fed317d029aaa03191c0be0b','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"56.0.2924.87\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(6163,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1515015422','no'),(6164,'_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:34:\"\n Fri, 22 Dec 2017 22:00: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: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=5.0-alpha-42419\";s:7:\"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:40:\"WordPress User Survey Data for 2015-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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:76:\"https://wordpress.org/news/2017/12/wordpress-user-survey-data-for-2015-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 22 Dec 2017 21:40: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:7:\"General\";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:6:\"WrapUp\";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:6:\"survey\";s:7:\"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=5310\";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:321:\"For many years, we’ve invited folks to tell us how they use WordPress by filling out an annual survey. In the past, interesting results from this survey have been shared in the annual State of the Word address. This year, for the first time, the results of the 2017 survey are being published on 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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"Andrea Middleton\";s: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:64131:\"<p>For many years, we’ve invited folks to tell us how they use WordPress by filling out an annual survey. In the past, interesting results from this survey have been shared in the annual <a href=\"https://ma.tt/2017/12/state-of-the-word-2017/\">State of the Word</a> address. This year, for the first time, the results of the 2017 survey are being published on WordPress News, along with the results of the 2015 and 2016 survey.</p>\n<p>So that information from the survey doesn’t reveal anything that respondents might consider private, we do not publish a full export of the raw data. We’d love to make this information as accessible as possible, though, so if you have a suggestion for an OS project or tool we can put the data into that allows people to play with it that still protects individual response privacy, please leave a comment on this post!</p>\n<h4>Major Groups</h4>\n<p>This survey features multiple groups, dividing respondents at the first question:</p>\n<blockquote><p>Which of the following best describes how you use WordPress? (<em>Mandatory</em>)</p></blockquote>\n<p>Those who selected “I’m a designer or developer, or I work for a company that designs/develops websites; I use WordPress to build websites and/or blogs for others. (This might include theme development, writing plugins, or other custom work.)” were served questions from what we’ll call the “WordPress Professionals” group.</p>\n<p>This “WordPress Professionals” group is further divided into WordPress Company and WordPress Freelancer/Hobbyist groups, based on how the respondent answered the question, “Which of the following best describes your involvement with WordPress? (2015) / Do you work for a company, or on your own? (2016-17).”</p>\n<p>Those who selected “I own, run, or contribute to a blog or website that is built with WordPress.” were served questions in what we’re calling the “WordPress Users” group.</p>\n<p>The relevant survey group is noted in each table below. In the case of questions that were served to different groups in 2015 but then served to all respondents in 2016 and 2017, the group responses from 2015 have been consolidated into one set of data for easier comparison between years.</p>\n<h4>Survey results</h4>\n<p><a href=\"#pro\">Jump to answers from WordPress Professionals</a></p>\n<p><a href=\"#user\">Jump to answers from WordPress Users</a></p>\n<p><a href=\"#all\">Jump to answers from All Respondents</a></p>\n<p><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></p>\n<h3>Which of the following best describes how you use WordPress? (Mandatory)</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td>Number of responses (since this question was mandatory, the number of responses here is the total number for the survey)</td>\n<td>45,995</td>\n<td></td>\n<td>15,585</td>\n<td></td>\n<td>16,029</td>\n<td></td>\n</tr>\n<tr>\n<td>I’m a designer or developer, or I work for a company that designs/develops websites; I use WordPress to build websites and/or blogs for others. (This might include theme development, writing plugins, other custom work.)</td>\n<td>26,662</td>\n<td>58%</td>\n<td>8,838</td>\n<td>57%</td>\n<td>9,099</td>\n<td>57%</td>\n</tr>\n<tr>\n<td>I own, run, or contribute to a blog or website that is built with WordPress.</td>\n<td>16,130</td>\n<td>35%</td>\n<td>5,293</td>\n<td>34%</td>\n<td>5,625</td>\n<td>35%</td>\n</tr>\n<tr>\n<td>Neither of the above.</td>\n<td>3,204</td>\n<td>7%</td>\n<td>1,460</td>\n<td>9%</td>\n<td>1,306</td>\n<td>8%</td>\n</tr>\n</tbody>\n</table>\n<h2 id=\"pro\">WordPress Professionals</h2>\n<h3><strong>Which of the following best describes your involvement with WordPress? (Mandatory, 2015) / Do you work for a company, or on your own? (Mandatory, 2016-17)</strong></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>26,699</td>\n<td></td>\n<td>8,838</td>\n<td></td>\n<td>9,101</td>\n<td></td>\n</tr>\n<tr>\n<td>My primary job is working for a company or organization that uses WordPress.</td>\n<td>9,505</td>\n<td>36%</td>\n<td>3,529</td>\n<td>40%</td>\n<td>3,660</td>\n<td>40%</td>\n</tr>\n<tr>\n<td>My primary job is as a self-employed designer or developer that uses WordPress.</td>\n<td>9,310</td>\n<td>35%</td>\n<td>3,188</td>\n<td>36%</td>\n<td>3,440</td>\n<td>38%</td>\n</tr>\n<tr>\n<td>I earn money from part-time or occasional freelance work involving WordPress.</td>\n<td>5,954</td>\n<td>22%</td>\n<td>1,633</td>\n<td>18%</td>\n<td>1,590</td>\n<td>17%</td>\n</tr>\n<tr>\n<td>Work that I do involving WordPress is just a hobby, I don’t make money from it.</td>\n<td>1,930</td>\n<td>7%</td>\n<td>491</td>\n<td>6%</td>\n<td>411</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>How does your company or organization work with WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,342</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Build/design and/or maintain websites or blogs for other people, companies, or organizations.</td>\n<td>7,772</td>\n<td>27%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Develop or customize themes.</td>\n<td>5,404</td>\n<td>19%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Build/design and/or maintain websites or blogs for my own use.</td>\n<td>4,733</td>\n<td>16%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Host websites for customers.</td>\n<td>4,397</td>\n<td>15%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Develop or distribute plugins.</td>\n<td>3,181</td>\n<td>11%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Provide educational resources to help others to use WordPress.</td>\n<td>1,349</td>\n<td>5%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Sponsor and/or attend WordCamps.</td>\n<td>1,127</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Contribute bug reports and/or patches to WordPress core.</td>\n<td>914</td>\n<td>3%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>182</td>\n<td> 1%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>3,457</td>\n<td></td>\n<td>3,598</td>\n<td></td>\n</tr>\n<tr>\n<td>We make websites for others.</td>\n<td></td>\n<td></td>\n<td>2,695</td>\n<td>24%</td>\n<td>2,722</td>\n<td>23%</td>\n</tr>\n<tr>\n<td>We make websites for ourselves.</td>\n<td></td>\n<td></td>\n<td>2,355</td>\n<td>21%</td>\n<td>2,470</td>\n<td>21%</td>\n</tr>\n<tr>\n<td>We develop or customize themes.</td>\n<td></td>\n<td></td>\n<td>1,866</td>\n<td>16%</td>\n<td>1,910</td>\n<td>16%</td>\n</tr>\n<tr>\n<td>We host websites for others.</td>\n<td></td>\n<td></td>\n<td>1,564</td>\n<td>14%</td>\n<td>1,595</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>We develop or distribute plugins.</td>\n<td></td>\n<td></td>\n<td>1,283</td>\n<td>11%</td>\n<td>1,342</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>We provide educational resources to help others to use WordPress.</td>\n<td></td>\n<td></td>\n<td>581</td>\n<td>5%</td>\n<td>631</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>We sponsor and/or attend WordCamps.</td>\n<td></td>\n<td></td>\n<td>561</td>\n<td>5%</td>\n<td>579</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>We contribute bug reports and/or patches to WordPress core.</td>\n<td></td>\n<td></td>\n<td>444</td>\n<td>4%</td>\n<td>468</td>\n<td>4%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td></td>\n<td></td>\n<td>98</td>\n<td>1%</td>\n<td>96</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<p><strong>How would you describe the business of your typical client(s)? (2015) / How would you describe the business of your typical client/customer? (2016, 2017)</strong></p>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,154</td>\n<td></td>\n<td>3,317</td>\n<td></td>\n<td>3,498</td>\n<td></td>\n</tr>\n<tr>\n<td>Small business</td>\n<td>6,893</td>\n<td>32%</td>\n<td>2,398</td>\n<td>31%</td>\n<td>2,510</td>\n<td>31%</td>\n</tr>\n<tr>\n<td>Large business or Enterprise</td>\n<td>3,635</td>\n<td>17%</td>\n<td>1,361</td>\n<td>18%</td>\n<td>1,447</td>\n<td>18%</td>\n</tr>\n<tr>\n<td>Non-profit</td>\n<td>2,644</td>\n<td>12%</td>\n<td>934</td>\n<td>12%</td>\n<td>992</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>Individual</td>\n<td>2,600</td>\n<td>12%</td>\n<td>888</td>\n<td>12%</td>\n<td>1,022</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>Education</td>\n<td>2,344</td>\n<td>11%</td>\n<td>854</td>\n<td>11%</td>\n<td>966</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>Website development (sub-contracting)</td>\n<td>2,065</td>\n<td>10%</td>\n<td>637</td>\n<td>8%</td>\n<td>677</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>Government</td>\n<td>1,410</td>\n<td>6%</td>\n<td>524</td>\n<td>7%</td>\n<td>552</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>127</td>\n<td>1%</td>\n<td>66</td>\n<td>1%</td>\n<td>64</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<p><strong>How does your company or organization use WordPress when developing websites? (2015) / When making websites, how does your company or organization use WordPress? (2016, 2017)</strong></p>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,078</td>\n<td></td>\n<td>3,369</td>\n<td></td>\n<td>3,552</td>\n<td></td>\n</tr>\n<tr>\n<td>Mostly as a content management system (CMS)</td>\n<td>6,361</td>\n<td>70%</td>\n<td>2,482</td>\n<td>74%</td>\n<td>2,640</td>\n<td>74%</td>\n</tr>\n<tr>\n<td>About half the time as a blogging platform and half the time as a CMS</td>\n<td>1,222</td>\n<td>13%</td>\n<td>370</td>\n<td>11%</td>\n<td>383</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Mostly as a blogging platform</td>\n<td>721</td>\n<td>8%</td>\n<td>137</td>\n<td>4%</td>\n<td>129</td>\n<td>4%</td>\n</tr>\n<tr>\n<td>Mostly as an application framework</td>\n<td>629</td>\n<td>7%</td>\n<td>303</td>\n<td>9%</td>\n<td>303</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>145</td>\n<td>2%</td>\n<td>78</td>\n<td>2%</td>\n<td>97</td>\n<td>3%</td>\n</tr>\n</tbody>\n</table>\n<h3>How much is your average WordPress site customized from the original WordPress installation?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,054</td>\n<td></td>\n<td>3,302</td>\n<td></td>\n<td>3,473</td>\n<td></td>\n</tr>\n<tr>\n<td>A lot of work has been done, the front end is unrecognizable, but the Dashboard still looks like the usual WordPress interface.</td>\n<td>5,651</td>\n<td>62%</td>\n<td>2,025</td>\n<td>61%</td>\n<td>2,105</td>\n<td>61%</td>\n</tr>\n<tr>\n<td>There’s a different theme and some plugins have been added.</td>\n<td>2,230</td>\n<td>25%</td>\n<td>799</td>\n<td>24%</td>\n<td>905</td>\n<td>26%</td>\n</tr>\n<tr>\n<td>Not at all, it’s still pretty much the same as the original download.</td>\n<td>756</td>\n<td>8%</td>\n<td>302</td>\n<td>9%</td>\n<td>298</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>You’d never know this was a WordPress installation, everything (including the admin) has been customized.</td>\n<td>417</td>\n<td>5%</td>\n<td>177</td>\n<td>5%</td>\n<td>165</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>Roughly how many currently active WordPress sites has your company or organization built?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>8,801</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>200 +</td>\n<td>1,074</td>\n<td>12%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>51 – 200</td>\n<td>1,721</td>\n<td>20%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>21 – 50</td>\n<td>1,718</td>\n<td>20%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>11 – 20</td>\n<td>1,284</td>\n<td>15%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>6 – 10</td>\n<td>1,109</td>\n<td>13%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>2 – 5</td>\n<td>1,418</td>\n<td>16%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>1</td>\n<td>390</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>0</td>\n<td>87</td>\n<td>1%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>3,358</td>\n<td></td>\n<td>3,540</td>\n<td></td>\n</tr>\n<tr>\n<td>Thousands.</td>\n<td></td>\n<td></td>\n<td>291</td>\n<td>9%</td>\n<td>331</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Hundreds.</td>\n<td></td>\n<td></td>\n<td>770</td>\n<td>23%</td>\n<td>894</td>\n<td>25%</td>\n</tr>\n<tr>\n<td>Fewer than a hundred.</td>\n<td></td>\n<td></td>\n<td>1,144</td>\n<td>34%</td>\n<td>1,177</td>\n<td>33%</td>\n</tr>\n<tr>\n<td>Just a few, but they are really great.</td>\n<td></td>\n<td></td>\n<td>926</td>\n<td>28%</td>\n<td>896</td>\n<td>25%</td>\n</tr>\n<tr>\n<td>Prefer not to answer.</td>\n<td></td>\n<td></td>\n<td>228</td>\n<td>7%</td>\n<td>242</td>\n<td>7%</td>\n</tr>\n</tbody>\n</table>\n<h3>How many person-hours (of your company’s work) does the typical site take to complete?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,091</td>\n<td></td>\n<td>3,353</td>\n<td></td>\n<td>3,522</td>\n<td></td>\n</tr>\n<tr>\n<td>More than 200</td>\n<td>939</td>\n<td>10%</td>\n<td>309</td>\n<td>9%</td>\n<td>325</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>100 – 200</td>\n<td>1080</td>\n<td>12%</td>\n<td>329</td>\n<td>10%</td>\n<td>367</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>60 – 100</td>\n<td>1541</td>\n<td>17%</td>\n<td>527</td>\n<td>16%</td>\n<td>513</td>\n<td>15%</td>\n</tr>\n<tr>\n<td>40 – 60</td>\n<td>1854</td>\n<td>20%</td>\n<td>583</td>\n<td>17%</td>\n<td>620</td>\n<td>18%</td>\n</tr>\n<tr>\n<td>20 – 40</td>\n<td>2066</td>\n<td>23%</td>\n<td>691</td>\n<td>21%</td>\n<td>685</td>\n<td>19%</td>\n</tr>\n<tr>\n<td>Fewer than 20</td>\n<td>1611</td>\n<td>18%</td>\n<td>479</td>\n<td>14%</td>\n<td>519</td>\n<td>15%</td>\n</tr>\n<tr>\n<td>Prefer not to answer (2016, 2017)</td>\n<td></td>\n<td></td>\n<td>436</td>\n<td>13%</td>\n<td>493</td>\n<td>14%</td>\n</tr>\n</tbody>\n</table>\n<h3>Roughly what percentage of your company or organization’s output is based around WordPress (as opposed to other platforms or software)?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>8,950</td>\n<td></td>\n<td>3,345</td>\n<td></td>\n<td>3,503</td>\n<td></td>\n</tr>\n<tr>\n<td>100 %</td>\n<td>1,089</td>\n<td>12%</td>\n<td>438</td>\n<td>13%</td>\n<td>480</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>90 %</td>\n<td>1,043</td>\n<td>12%</td>\n<td>417</td>\n<td>12%</td>\n<td>459</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>80 %</td>\n<td>955</td>\n<td>11%</td>\n<td>367</td>\n<td>11%</td>\n<td>424</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>70 %</td>\n<td>831</td>\n<td>9%</td>\n<td>305</td>\n<td>9%</td>\n<td>344</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>60 %</td>\n<td>534</td>\n<td>6%</td>\n<td>246</td>\n<td>7%</td>\n<td>226</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>50 %</td>\n<td>973</td>\n<td>11%</td>\n<td>335</td>\n<td>10%</td>\n<td>338</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>40 %</td>\n<td>613</td>\n<td>7%</td>\n<td>245</td>\n<td>7%</td>\n<td>202</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>30 %</td>\n<td>877</td>\n<td>10%</td>\n<td>335</td>\n<td>10%</td>\n<td>310</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>20 %</td>\n<td>806</td>\n<td>9%</td>\n<td>242</td>\n<td>7%</td>\n<td>280</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>10 %</td>\n<td>1,039</td>\n<td>12%</td>\n<td>344</td>\n<td>10%</td>\n<td>348</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>0 %</td>\n<td>190</td>\n<td>2%</td>\n<td>72</td>\n<td>2%</td>\n<td>92</td>\n<td>3%</td>\n</tr>\n</tbody>\n</table>\n<h3>In which of the following ways do you work with WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>17,009</td>\n<td></td>\n<td>5,221</td>\n<td></td>\n<td>5,425</td>\n<td></td>\n</tr>\n<tr>\n<td>Build/design and/or maintain websites or blogs for other people, companies, or organizations</td>\n<td>15,342</td>\n<td>34%</td>\n<td>4,795</td>\n<td>34%</td>\n<td>5,064</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Develop or customize themes</td>\n<td>10,549</td>\n<td>24%</td>\n<td>2,997</td>\n<td>21%</td>\n<td>3,021</td>\n<td>20%</td>\n</tr>\n<tr>\n<td>Host websites for customers</td>\n<td>8,142</td>\n<td>18%</td>\n<td>2,466</td>\n<td>17%</td>\n<td>2,728</td>\n<td>18%</td>\n</tr>\n<tr>\n<td>Develop or distribute plugins</td>\n<td>4,125</td>\n<td>9%</td>\n<td>1,395</td>\n<td>10%</td>\n<td>1,416</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Provide educational resources to help others to use WordPress</td>\n<td>3,276</td>\n<td>7%</td>\n<td>1,187</td>\n<td>8%</td>\n<td>1,308</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Sponsor and/or attend WordCamps</td>\n<td>1,559</td>\n<td>4%</td>\n<td>648</td>\n<td>5%</td>\n<td>724</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>Contribute bug reports and/or patches to WordPress core</td>\n<td>1,107</td>\n<td>2%</td>\n<td>381</td>\n<td>3%</td>\n<td>393</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>389</td>\n<td>1%</td>\n<td>243</td>\n<td>2%</td>\n<td>299</td>\n<td>2%</td>\n</tr>\n</tbody>\n</table>\n<h3>How would you describe the business of your typical client(s)?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,863</td>\n<td></td>\n<td>5,151</td>\n<td></td>\n<td>5,353</td>\n<td></td>\n</tr>\n<tr>\n<td>Small business</td>\n<td>14,185</td>\n<td>35%</td>\n<td>4,342</td>\n<td>35%</td>\n<td>4,622</td>\n<td>36%</td>\n</tr>\n<tr>\n<td>Individual</td>\n<td>8,513</td>\n<td>21%</td>\n<td>2,581</td>\n<td>21%</td>\n<td>2,583</td>\n<td>20%</td>\n</tr>\n<tr>\n<td>Non-profit</td>\n<td>6,585</td>\n<td>16%</td>\n<td>2,004</td>\n<td>16%</td>\n<td>2,113</td>\n<td>16%</td>\n</tr>\n<tr>\n<td>Website development (sub-contracting)</td>\n<td>4,301</td>\n<td>11%</td>\n<td>1,258</td>\n<td>10%</td>\n<td>1,216</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Education</td>\n<td>3,458</td>\n<td>8%</td>\n<td>1,049</td>\n<td>8%</td>\n<td>1,139</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Large business or Enterprise</td>\n<td>2,391</td>\n<td>6%</td>\n<td>805</td>\n<td>6%</td>\n<td>857</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>Government</td>\n<td>1,150</td>\n<td>3%</td>\n<td>300</td>\n<td>2%</td>\n<td>329</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>173</td>\n<td>0%</td>\n<td>101</td>\n<td>1%</td>\n<td>99</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>How do you use WordPress in your development?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,768</td>\n<td></td>\n<td>5,145</td>\n<td></td>\n<td>5,372</td>\n<td></td>\n</tr>\n<tr>\n<td>Mostly as a content management system (CMS)</td>\n<td>11,754</td>\n<td>70%</td>\n<td>3,641</td>\n<td>71%</td>\n<td>3,959</td>\n<td>74%</td>\n</tr>\n<tr>\n<td>About half the time as a blogging platform and half the time as a CMS</td>\n<td>2,825</td>\n<td>17%</td>\n<td>812</td>\n<td>16%</td>\n<td>721</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>Mostly as an application framework</td>\n<td>1,012</td>\n<td>6%</td>\n<td>343</td>\n<td>7%</td>\n<td>344</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Mostly as a blogging platform</td>\n<td>992</td>\n<td>6%</td>\n<td>246</td>\n<td>5%</td>\n<td>226</td>\n<td>4%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>185</td>\n<td>1%</td>\n<td>105</td>\n<td>2%</td>\n<td>122</td>\n<td>2%</td>\n</tr>\n</tbody>\n</table>\n<h3>How much is your average WordPress site customized from the original WordPress installation?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,699</td>\n<td></td>\n<td>5,131</td>\n<td></td>\n<td>5,317</td>\n<td></td>\n</tr>\n<tr>\n<td>A lot of work has been done, the front end is unrecognizable, but the Dashboard still looks like the usual WordPress interface.</td>\n<td>9,457</td>\n<td>57%</td>\n<td>2,837</td>\n<td>55%</td>\n<td>2,998</td>\n<td>56%</td>\n</tr>\n<tr>\n<td>There’s a different theme and some plugins have been added.</td>\n<td>5,526</td>\n<td>33%</td>\n<td>1,694</td>\n<td>33%</td>\n<td>1,781</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Not at all, it’s still pretty much the same as the original download.</td>\n<td>977</td>\n<td>6%</td>\n<td>341</td>\n<td>7%</td>\n<td>310</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>You’d never know this was a WordPress installation, everything (including the admin) has been customized.</td>\n<td>739</td>\n<td>4%</td>\n<td>261</td>\n<td>5%</td>\n<td>228</td>\n<td>4%</td>\n</tr>\n</tbody>\n</table>\n<h3>How many currently active WordPress sites have you built? (2015) / Roughly how many currently active WordPress sites have you built? (2016, 2017)</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,690</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>200 +</td>\n<td>514</td>\n<td>3%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>51 – 200</td>\n<td>1,728</td>\n<td>10%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>21 – 50</td>\n<td>3,000</td>\n<td>18%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>11 – 20</td>\n<td>3,146</td>\n<td>19%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>6 – 10</td>\n<td>3,405</td>\n<td>20%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>2 – 5</td>\n<td>3,838</td>\n<td>23%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>1</td>\n<td>698</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>0</td>\n<td>361</td>\n<td>2%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>5,165</td>\n<td></td>\n<td>5367</td>\n<td></td>\n</tr>\n<tr>\n<td>Thousands.</td>\n<td></td>\n<td></td>\n<td>110</td>\n<td>2%</td>\n<td>104</td>\n<td>2%</td>\n</tr>\n<tr>\n<td>Hundreds.</td>\n<td></td>\n<td></td>\n<td>603</td>\n<td>12%</td>\n<td>713</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>Fewer than a hundred.</td>\n<td></td>\n<td></td>\n<td>2,264</td>\n<td>44%</td>\n<td>2,457</td>\n<td>46%</td>\n</tr>\n<tr>\n<td>Just a few, but they are really great.</td>\n<td></td>\n<td></td>\n<td>1,871</td>\n<td>36%</td>\n<td>1,813</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Prefer not to answer.</td>\n<td></td>\n<td></td>\n<td>319</td>\n<td>6%</td>\n<td>280</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>Roughly what percentage of your working time is spent working with WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,658</td>\n<td></td>\n<td>5,039</td>\n<td></td>\n<td>5,241</td>\n<td></td>\n</tr>\n<tr>\n<td>100 %</td>\n<td>949</td>\n<td>6%</td>\n<td>459</td>\n<td>9%</td>\n<td>461</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>90 %</td>\n<td>1,300</td>\n<td>8%</td>\n<td>527</td>\n<td>10%</td>\n<td>540</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>80 %</td>\n<td>1,784</td>\n<td>11%</td>\n<td>637</td>\n<td>13%</td>\n<td>711</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>70 %</td>\n<td>1,850</td>\n<td>11%</td>\n<td>608</td>\n<td>12%</td>\n<td>627</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>60 %</td>\n<td>1,313</td>\n<td>8%</td>\n<td>438</td>\n<td>9%</td>\n<td>465</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>50 %</td>\n<td>2,095</td>\n<td>13%</td>\n<td>612</td>\n<td>12%</td>\n<td>639</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>40 %</td>\n<td>1,438</td>\n<td>9%</td>\n<td>391</td>\n<td>8%</td>\n<td>384</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>30 %</td>\n<td>2,076</td>\n<td>12%</td>\n<td>530</td>\n<td>11%</td>\n<td>511</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>20 %</td>\n<td>1,743</td>\n<td>10%</td>\n<td>445</td>\n<td>9%</td>\n<td>429</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>10 %</td>\n<td>1,819</td>\n<td>11%</td>\n<td>342</td>\n<td>7%</td>\n<td>419</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>0 %</td>\n<td>291</td>\n<td>2%</td>\n<td>52</td>\n<td>1%</td>\n<td>55</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>How many hours of your work does the typical site take to complete? (2015) / How many hours of work does your typical WordPress project take to launch? (2016, 2017)</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,670</td>\n<td></td>\n<td>5,164</td>\n<td></td>\n<td>5,378</td>\n<td></td>\n</tr>\n<tr>\n<td>More than 200</td>\n<td>503</td>\n<td>3%</td>\n<td>222</td>\n<td>4%</td>\n<td>245</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>100 – 200</td>\n<td>973</td>\n<td>6%</td>\n<td>386</td>\n<td>7%</td>\n<td>393</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>60 – 100</td>\n<td>2,277</td>\n<td>14%</td>\n<td>788</td>\n<td>15%</td>\n<td>815</td>\n<td>15%</td>\n</tr>\n<tr>\n<td>40 – 60</td>\n<td>3,896</td>\n<td>23%</td>\n<td>1,153</td>\n<td>22%</td>\n<td>1,216</td>\n<td>23%</td>\n</tr>\n<tr>\n<td>20 – 40</td>\n<td>6,068</td>\n<td>36%</td>\n<td>1,487</td>\n<td>29%</td>\n<td>1,582</td>\n<td>29%</td>\n</tr>\n<tr>\n<td>Fewer than 20</td>\n<td>2,953</td>\n<td>18%</td>\n<td>712</td>\n<td>14%</td>\n<td>751</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>418</td>\n<td>8%</td>\n<td>376</td>\n<td>7%</td>\n</tr>\n</tbody>\n</table>\n<h3>Which of the following have you done with WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" /> </colgroup>\n</table>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional (Company/Freelancer/Hobbyist)</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>20,687</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve written a theme from scratch.</td>\n<td>11,894</td>\n<td>25%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve written a plugin.</td>\n<td>9,719</td>\n<td>21%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve answered a question in the WordPress forum.</td>\n<td>8,805</td>\n<td>19%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve attended a WordPress meetup.</td>\n<td>4,062</td>\n<td>9%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve submitted a WordPress bug report.</td>\n<td>4,062</td>\n<td>9%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve attended a WordCamp.</td>\n<td>3,571</td>\n<td>8%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve contributed to WordPress documentation.</td>\n<td>1,778</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>1,739</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve contributed a WordPress core patch.</td>\n<td>1,055</td>\n<td>2%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n<h3>What’s the best thing about WordPress?<a href=\"#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>22,718</td>\n<td></td>\n<td>7,891</td>\n<td></td>\n<td>8,267</td>\n<td></td>\n</tr>\n<tr>\n<td>Easy/simple/user-friendly</td>\n<td>9,450</td>\n<td>42%</td>\n<td>3,454</td>\n<td>44%</td>\n<td>3,852</td>\n<td>47%</td>\n</tr>\n<tr>\n<td>Customizable/extensible/modular/plugins/themes</td>\n<td>8,601</td>\n<td>38%</td>\n<td>3,116</td>\n<td>39%</td>\n<td>3,555</td>\n<td>43%</td>\n</tr>\n<tr>\n<td>Community/support/documentation/help</td>\n<td>3,806</td>\n<td>17%</td>\n<td>1,211</td>\n<td>15%</td>\n<td>1,340</td>\n<td>16%</td>\n</tr>\n<tr>\n<td>Free/open/open source</td>\n<td>2,291</td>\n<td>10%</td>\n<td>802</td>\n<td>10%</td>\n<td>908</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Popular/ubiquitous</td>\n<td>249</td>\n<td>1%</td>\n<td>86</td>\n<td>1%</td>\n<td>187</td>\n<td>2%</td>\n</tr>\n</tbody>\n</table>\n<h3> What’s the most frustrating thing about WordPress?<a href=\"#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>21,144</td>\n<td></td>\n<td>7,294</td>\n<td></td>\n<td>7,691</td>\n<td></td>\n</tr>\n<tr>\n<td>Plugins & themes (abandoned/conflicts/coding standards)</td>\n<td>6,122</td>\n<td>29%</td>\n<td>2,194</td>\n<td>30%</td>\n<td>2,187</td>\n<td>28%</td>\n</tr>\n<tr>\n<td>Security/vulnerabilities/hacks</td>\n<td>2,321</td>\n<td>11%</td>\n<td>712</td>\n<td>10%</td>\n<td>829</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Updates</td>\n<td>1,544</td>\n<td>7%</td>\n<td>422</td>\n<td>6%</td>\n<td>508</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>Nothing/I don’t know/can’t think of anything</td>\n<td>1,276</td>\n<td>6%</td>\n<td>344</td>\n<td>5%</td>\n<td>476</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Speed/performance/slow/heavy</td>\n<td>1,196</td>\n<td>6%</td>\n<td>644</td>\n<td>9%</td>\n<td>516</td>\n<td>7%</td>\n</tr>\n</tbody>\n</table>\n<h3>WordPress is as good as, or better than, its main competitors.</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (this question was not asked in the 2015 survey)</td>\n<td></td>\n<td></td>\n<td>8,672</td>\n<td></td>\n<td>9,059</td>\n<td></td>\n</tr>\n<tr>\n<td>Agree</td>\n<td></td>\n<td></td>\n<td>7551</td>\n<td>87%</td>\n<td>7836</td>\n<td>87%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>754</td>\n<td>9%</td>\n<td>795</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Disagree</td>\n<td></td>\n<td></td>\n<td>370</td>\n<td>4%</td>\n<td>428</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h2 id=\"user\">WordPress Users</h2>\n<h3>Which of the following describes how you use WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>15,169</td>\n<td></td>\n<td>5,043</td>\n<td></td>\n<td>5,521</td>\n<td></td>\n</tr>\n<tr>\n<td>My personal blog (or blogs) uses WordPress.</td>\n<td>9,395</td>\n<td>36%</td>\n<td>3,117</td>\n<td>36%</td>\n<td>3,424</td>\n<td>36%</td>\n</tr>\n<tr>\n<td>My company or organization’s website is built with WordPress software.</td>\n<td>7,480</td>\n<td>29%</td>\n<td>2,519</td>\n<td>29%</td>\n<td>2,841</td>\n<td>30%</td>\n</tr>\n<tr>\n<td>I have a hobby or side project that has a website built with WordPress.</td>\n<td>6,112</td>\n<td>23%</td>\n<td>1,973</td>\n<td>23%</td>\n<td>2,200</td>\n<td>23%</td>\n</tr>\n<tr>\n<td>I write (or otherwise work) for an online publication that uses WordPress.</td>\n<td>2,329</td>\n<td>9%</td>\n<td>806</td>\n<td>9%</td>\n<td>821</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>872</td>\n<td>3%</td>\n<td>234</td>\n<td>3%</td>\n<td>288</td>\n<td>3%</td>\n</tr>\n</tbody>\n</table>\n<h3>Who installed your WordPress website?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>15,055</td>\n<td></td>\n<td>5,020</td>\n<td></td>\n<td>5,523</td>\n<td></td>\n</tr>\n<tr>\n<td>I did.</td>\n<td>11,216</td>\n<td>66%</td>\n<td>3,659</td>\n<td>73%</td>\n<td>4,129</td>\n<td>75%</td>\n</tr>\n<tr>\n<td>My hosting provider</td>\n<td>2,236</td>\n<td>13%</td>\n<td>667</td>\n<td>13%</td>\n<td>767</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>An external company</td>\n<td>909</td>\n<td>5%</td>\n<td>182</td>\n<td>4%</td>\n<td>178</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>An internal web person/team or a colleague</td>\n<td>874</td>\n<td>5%</td>\n<td>178</td>\n<td>4%</td>\n<td>191</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>A friend or family member</td>\n<td>787</td>\n<td>5%</td>\n<td>192</td>\n<td>4%</td>\n<td>172</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>I don’t know</td>\n<td>502</td>\n<td>3%</td>\n<td>145</td>\n<td>3%</td>\n<td>87</td>\n<td>2%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>345</td>\n<td>2%</td>\n<td>n/a</td>\n<td>n/a</td>\n<td>n/a</td>\n<td>n/a</td>\n</tr>\n</tbody>\n</table>\n<h3>How much has the site been customized from the original WordPress installation?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>14,789</td>\n<td></td>\n<td>4,997</td>\n<td></td>\n<td>5,494</td>\n<td></td>\n</tr>\n<tr>\n<td>There’s a different theme and some plugins have been added.</td>\n<td>7,465</td>\n<td>50%</td>\n<td>2,337</td>\n<td>47%</td>\n<td>2,660</td>\n<td>48%</td>\n</tr>\n<tr>\n<td>A lot of work has been done, the site itself is unrecognizable from the original theme, but the Dashboard still looks like the usual WordPress interface.</td>\n<td>4,715</td>\n<td>32%</td>\n<td>1,707</td>\n<td>34%</td>\n<td>1,872</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Not at all, it’s still pretty much the same as it was when I started out.</td>\n<td>1,841</td>\n<td>12%</td>\n<td>635</td>\n<td>13%</td>\n<td>673</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>You’d never know this was a WordPress installation, everything has been customized.</td>\n<td>768</td>\n<td>5%</td>\n<td>321</td>\n<td>6%</td>\n<td>290</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>What’s the best thing about WordPress?<a href=\"#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>14,328</td>\n<td></td>\n<td>4,613</td>\n<td></td>\n<td>5,076</td>\n<td></td>\n</tr>\n<tr>\n<td>Easy/simple/user-friendly</td>\n<td>7,391</td>\n<td>52%</td>\n<td>2,276</td>\n<td>49%</td>\n<td>2,511</td>\n<td>49%</td>\n</tr>\n<tr>\n<td>Customizable/extensible/modular/plugins/themes</td>\n<td>4,219</td>\n<td>29%</td>\n<td>1,569</td>\n<td>34%</td>\n<td>1,632</td>\n<td>32%</td>\n</tr>\n<tr>\n<td>Free/open/open source</td>\n<td>1,586</td>\n<td>11%</td>\n<td>493</td>\n<td>11%</td>\n<td>538</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Community/support/documentation/help</td>\n<td>1,085</td>\n<td>8%</td>\n<td>388</td>\n<td>8%</td>\n<td>458</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Popular/ubiquitous</td>\n<td>223</td>\n<td>2%</td>\n<td>74</td>\n<td>2%</td>\n<td>48</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>What’s the most frustrating thing about WordPress?<a href=\"#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>13,681</td>\n<td></td>\n<td>4,287</td>\n<td></td>\n<td>4,758</td>\n<td></td>\n</tr>\n<tr>\n<td>Plugins & themes (abandoned/conflicts/coding standards)</td>\n<td>2,531</td>\n<td>19%</td>\n<td>1,183</td>\n<td>28%</td>\n<td>1,300</td>\n<td>27%</td>\n</tr>\n<tr>\n<td>Customization/design/look/template</td>\n<td>1,273</td>\n<td>9%</td>\n<td>381</td>\n<td>9%</td>\n<td>408</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Code/coding/PHP</td>\n<td>931</td>\n<td>7%</td>\n<td>306</td>\n<td>7%</td>\n<td>277</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Updates</td>\n<td>926</td>\n<td>7%</td>\n<td>209</td>\n<td>5%</td>\n<td>296</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Security/vulnerabilites/hacks</td>\n<td>785</td>\n<td>6%</td>\n<td>255</td>\n<td>6%</td>\n<td>292</td>\n<td>6%</td>\n</tr>\n</tbody>\n</table>\n<h3>WordPress is as good as, or better than, its main competitors.</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>5,026</td>\n<td></td>\n<td>5,498</td>\n<td></td>\n</tr>\n<tr>\n<td>Agree</td>\n<td></td>\n<td></td>\n<td>4,038</td>\n<td>80%</td>\n<td>4,462</td>\n<td>81%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>737</td>\n<td>15%</td>\n<td>782</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>Disagree</td>\n<td></td>\n<td></td>\n<td>254</td>\n<td>5%</td>\n<td>255</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h2 id=\"all\">All Respondents</h2>\n<h3>Can you (truthfully!) say “I make my living from WordPress”?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (combination of all three groups from 2015; this question was not broken out by group in 2016-2017)</td>\n<td>42,236</td>\n<td></td>\n<td>14,906</td>\n<td></td>\n<td>15,616</td>\n<td></td>\n</tr>\n<tr>\n<td>Not really, but I do get some or all of my income as a result of working with WordPress.</td>\n<td>16,607</td>\n<td>39%</td>\n<td>5,408</td>\n<td>36%</td>\n<td>5,702</td>\n<td>37%</td>\n</tr>\n<tr>\n<td>Yes.</td>\n<td>9,635</td>\n<td>23%</td>\n<td>4,791</td>\n<td>32%</td>\n<td>5,033</td>\n<td>32%</td>\n</tr>\n<tr>\n<td>No.</td>\n<td>15,995</td>\n<td>38%</td>\n<td>4,713</td>\n<td>32%</td>\n<td>4,882</td>\n<td>31%</td>\n</tr>\n</tbody>\n</table>\n<h3>Which devices do you access WordPress on?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (combination of all three groups from 2015; this question was not broken out by group in 2016-2017)</td>\n<td>42,433</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Web</td>\n<td>40,503</td>\n<td>95%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Android phone</td>\n<td>15,396</td>\n<td>36%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>iPhone</td>\n<td>12,353</td>\n<td>29%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>iPad</td>\n<td>11,748</td>\n<td>28%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Android tablet</td>\n<td>9,223</td>\n<td>22%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Desktop app, like MarsEdit</td>\n<td>6,018</td>\n<td>14%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>1837</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (this question was not broken out by group in 2016-2017)</td>\n<td></td>\n<td></td>\n<td>14,840</td>\n<td></td>\n<td>15,597</td>\n<td></td>\n</tr>\n<tr>\n<td>Web browser on a desktop or laptop</td>\n<td></td>\n<td></td>\n<td>14,160</td>\n<td>54%</td>\n<td>15,052</td>\n<td>55%</td>\n</tr>\n<tr>\n<td>Web browser on a mobile device (tablet or phone)</td>\n<td></td>\n<td></td>\n<td>7,952</td>\n<td>30%</td>\n<td>8,248</td>\n<td>30%</td>\n</tr>\n<tr>\n<td>An app on a mobile device (table or phone)</td>\n<td></td>\n<td></td>\n<td>3,309</td>\n<td>13%</td>\n<td>3,311</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>A desktop app like MarsEdit</td>\n<td></td>\n<td></td>\n<td>517</td>\n<td>2%</td>\n<td>498</td>\n<td>2%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td></td>\n<td></td>\n<td>282</td>\n<td>1%</td>\n<td>240</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>WordPress now updates minor & security releases automatically for you. Check all that apply: (question not asked in 2016, 2017)</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (combination of all three groups)</td>\n<td>39,726</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I love auto-updates.</td>\n<td>17,367</td>\n<td>44%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’d like to see auto-updates for plugins.</td>\n<td>12,796</td>\n<td>32%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Initially, I was nervous about auto updates.</td>\n<td>11,868</td>\n<td>30%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Auto updates still make me nervous.</td>\n<td>10,809</td>\n<td>27%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Auto updates don’t make me nervous now.</td>\n<td>10,708</td>\n<td>27%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’d like to see auto-updates for themes.</td>\n<td>10,449</td>\n<td>26%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’d like to see auto updates for major versions of WordPress.</td>\n<td>10,225</td>\n<td>26%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>This is the first I’ve heard of auto-updates.</td>\n<td>8,660</td>\n<td>22%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I hate auto-updates.</td>\n<td>3,293</td>\n<td>8%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n<h3>What is your gender?<a href=\"#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All respondents (This question was not asked in the 2015 survey.)</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>13,953</td>\n<td></td>\n<td>14,680</td>\n<td></td>\n</tr>\n<tr>\n<td>Male</td>\n<td></td>\n<td></td>\n<td>10,978</td>\n<td>78.68%</td>\n<td>11,570</td>\n<td>78.81%</td>\n</tr>\n<tr>\n<td>Female</td>\n<td></td>\n<td></td>\n<td>2,340</td>\n<td>16.77%</td>\n<td>2,511</td>\n<td>21.70%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>601</td>\n<td>4.31%</td>\n<td>562</td>\n<td>3.83%</td>\n</tr>\n<tr>\n<td>Transgender</td>\n<td></td>\n<td></td>\n<td>11</td>\n<td>0.08%</td>\n<td>8</td>\n<td>0.05%</td>\n</tr>\n<tr>\n<td>Nonbinary</td>\n<td></td>\n<td></td>\n<td>8</td>\n<td>0.06%</td>\n<td>17</td>\n<td>0.12%</td>\n</tr>\n<tr>\n<td>Genderqueer</td>\n<td></td>\n<td></td>\n<td>4</td>\n<td>0.03%</td>\n<td>3</td>\n<td>0.02%</td>\n</tr>\n<tr>\n<td>Androgynous</td>\n<td></td>\n<td></td>\n<td>6</td>\n<td>0.04%</td>\n<td>5</td>\n<td>0.03%</td>\n</tr>\n<tr>\n<td>Fluid</td>\n<td></td>\n<td></td>\n<td>3</td>\n<td>0.02%</td>\n<td>4</td>\n<td>0.03%</td>\n</tr>\n<tr>\n<td>Demimale</td>\n<td></td>\n<td></td>\n<td>2</td>\n<td>0.01%</td>\n<td>0</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n<h3>Where are you located?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All respondents (This question was not asked in the 2015 survey.)</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>14,562</td>\n<td></td>\n<td>15,343</td>\n<td></td>\n</tr>\n<tr>\n<td>United States</td>\n<td></td>\n<td></td>\n<td>3,770</td>\n<td>25.89%</td>\n<td>4,067</td>\n<td>26.51%</td>\n</tr>\n<tr>\n<td>India</td>\n<td></td>\n<td></td>\n<td>1,456</td>\n<td>10.00%</td>\n<td>1,424</td>\n<td>9.28%</td>\n</tr>\n<tr>\n<td>United Kingdom</td>\n<td></td>\n<td></td>\n<td>810</td>\n<td>5.56%</td>\n<td>900</td>\n<td>5.87%</td>\n</tr>\n<tr>\n<td>Germany</td>\n<td></td>\n<td></td>\n<td>555</td>\n<td>3.81%</td>\n<td>729</td>\n<td>4.75%</td>\n</tr>\n<tr>\n<td>Canada</td>\n<td></td>\n<td></td>\n<td>511</td>\n<td>3.51%</td>\n<td>599</td>\n<td>3.90%</td>\n</tr>\n<tr>\n<td>Australia</td>\n<td></td>\n<td></td>\n<td>389</td>\n<td>2.67%</td>\n<td>460</td>\n<td>3.00%</td>\n</tr>\n<tr>\n<td>Italy</td>\n<td></td>\n<td></td>\n<td>298</td>\n<td>2.05%</td>\n<td>356</td>\n<td>2.32%</td>\n</tr>\n<tr>\n<td>Netherlands</td>\n<td></td>\n<td></td>\n<td>343</td>\n<td>2.36%</td>\n<td>350</td>\n<td>2.28%</td>\n</tr>\n<tr>\n<td>France</td>\n<td></td>\n<td></td>\n<td>232</td>\n<td>1.59%</td>\n<td>283</td>\n<td>1.84%</td>\n</tr>\n<tr>\n<td>Bangladesh</td>\n<td></td>\n<td></td>\n<td>257</td>\n<td>1.76%</td>\n<td>263</td>\n<td>1.71%</td>\n</tr>\n<tr>\n<td>Spain</td>\n<td></td>\n<td></td>\n<td>271</td>\n<td>1.86%</td>\n<td>252</td>\n<td>1.64%</td>\n</tr>\n<tr>\n<td>Brazil</td>\n<td></td>\n<td></td>\n<td>239</td>\n<td>1.64%</td>\n<td>251</td>\n<td>1.64%</td>\n</tr>\n<tr>\n<td>Pakistan</td>\n<td></td>\n<td></td>\n<td>254</td>\n<td>1.74%</td>\n<td>240</td>\n<td>1.56%</td>\n</tr>\n<tr>\n<td>Indonesia</td>\n<td></td>\n<td></td>\n<td>230</td>\n<td>1.58%</td>\n<td>226</td>\n<td>1.47%</td>\n</tr>\n<tr>\n<td>Iran, Islamic Republic of</td>\n<td></td>\n<td></td>\n<td>190</td>\n<td>1.30%</td>\n<td>173</td>\n<td>1.13%</td>\n</tr>\n<tr>\n<td>Sweden</td>\n<td></td>\n<td></td>\n<td>144</td>\n<td>0.99%</td>\n<td>173</td>\n<td>1.13%</td>\n</tr>\n<tr>\n<td>Nigeria</td>\n<td></td>\n<td></td>\n<td>196</td>\n<td>1.35%</td>\n<td>172</td>\n<td>1.12%</td>\n</tr>\n<tr>\n<td>South Africa</td>\n<td></td>\n<td></td>\n<td>193</td>\n<td>1.33%</td>\n<td>172</td>\n<td>1.12%</td>\n</tr>\n<tr>\n<td>Russian Federation</td>\n<td></td>\n<td></td>\n<td>181</td>\n<td>1.24%</td>\n<td>151</td>\n<td>0.98%</td>\n</tr>\n<tr>\n<td>Poland</td>\n<td></td>\n<td></td>\n<td>129</td>\n<td>0.89%</td>\n<td>137</td>\n<td>0.89%</td>\n</tr>\n<tr>\n<td>Romania</td>\n<td></td>\n<td></td>\n<td>144</td>\n<td>0.99%</td>\n<td>132</td>\n<td>0.86%</td>\n</tr>\n<tr>\n<td>Switzerland</td>\n<td></td>\n<td></td>\n<td>122</td>\n<td>0.84%</td>\n<td>130</td>\n<td>0.85%</td>\n</tr>\n<tr>\n<td>Philippines</td>\n<td></td>\n<td></td>\n<td>92</td>\n<td>0.63%</td>\n<td>125</td>\n<td>0.81%</td>\n</tr>\n<tr>\n<td>China</td>\n<td></td>\n<td></td>\n<td>136</td>\n<td>0.93%</td>\n<td>123</td>\n<td>0.80%</td>\n</tr>\n<tr>\n<td>Austria</td>\n<td></td>\n<td></td>\n<td>89</td>\n<td>0.61%</td>\n<td>122</td>\n<td>0.80%</td>\n</tr>\n<tr>\n<td>Ukraine</td>\n<td></td>\n<td></td>\n<td>105</td>\n<td>0.72%</td>\n<td>118</td>\n<td>0.77%</td>\n</tr>\n<tr>\n<td>Denmark</td>\n<td></td>\n<td></td>\n<td>107</td>\n<td>0.73%</td>\n<td>114</td>\n<td>0.74%</td>\n</tr>\n<tr>\n<td>Greece</td>\n<td></td>\n<td></td>\n<td>120</td>\n<td>0.82%</td>\n<td>114</td>\n<td>0.74%</td>\n</tr>\n<tr>\n<td>Portugal</td>\n<td></td>\n<td></td>\n<td>94</td>\n<td>0.65%</td>\n<td>109</td>\n<td>0.71%</td>\n</tr>\n<tr>\n<td>Vietnam</td>\n<td></td>\n<td></td>\n<td>101</td>\n<td>0.69%</td>\n<td>108</td>\n<td>0.70%</td>\n</tr>\n<tr>\n<td>Mexico</td>\n<td></td>\n<td></td>\n<td>94</td>\n<td>0.65%</td>\n<td>105</td>\n<td>0.68%</td>\n</tr>\n<tr>\n<td>Nepal</td>\n<td></td>\n<td></td>\n<td>76</td>\n<td>0.52%</td>\n<td>97</td>\n<td>0.63%</td>\n</tr>\n<tr>\n<td>Ireland</td>\n<td></td>\n<td></td>\n<td>72</td>\n<td>0.49%</td>\n<td>94</td>\n<td>0.61%</td>\n</tr>\n<tr>\n<td>Israel</td>\n<td></td>\n<td></td>\n<td>78</td>\n<td>0.54%</td>\n<td>94</td>\n<td>0.61%</td>\n</tr>\n<tr>\n<td>New Zealand</td>\n<td></td>\n<td></td>\n<td>77</td>\n<td>0.53%</td>\n<td>91</td>\n<td>0.59%</td>\n</tr>\n<tr>\n<td>Finland</td>\n<td></td>\n<td></td>\n<td>63</td>\n<td>0.43%</td>\n<td>90</td>\n<td>0.59%</td>\n</tr>\n<tr>\n<td>Turkey</td>\n<td></td>\n<td></td>\n<td>91</td>\n<td>0.62%</td>\n<td>86</td>\n<td>0.56%</td>\n</tr>\n<tr>\n<td>Malaysia</td>\n<td></td>\n<td></td>\n<td>91</td>\n<td>0.62%</td>\n<td>81</td>\n<td>0.53%</td>\n</tr>\n<tr>\n<td>Belgium</td>\n<td></td>\n<td></td>\n<td>84</td>\n<td>0.58%</td>\n<td>79</td>\n<td>0.51%</td>\n</tr>\n<tr>\n<td>Norway</td>\n<td></td>\n<td></td>\n<td>66</td>\n<td>0.45%</td>\n<td>79</td>\n<td>0.51%</td>\n</tr>\n<tr>\n<td>Argentina</td>\n<td></td>\n<td></td>\n<td>65</td>\n<td>0.45%</td>\n<td>76</td>\n<td>0.50%</td>\n</tr>\n<tr>\n<td>Bulgaria</td>\n<td></td>\n<td></td>\n<td>74</td>\n<td>0.51%</td>\n<td>72</td>\n<td>0.47%</td>\n</tr>\n<tr>\n<td>Japan</td>\n<td></td>\n<td></td>\n<td>61</td>\n<td>0.42%</td>\n<td>68</td>\n<td>0.44%</td>\n</tr>\n<tr>\n<td>Thailand</td>\n<td></td>\n<td></td>\n<td>69</td>\n<td>0.47%</td>\n<td>67</td>\n<td>0.44%</td>\n</tr>\n<tr>\n<td>Czech Republic</td>\n<td></td>\n<td></td>\n<td>76</td>\n<td>0.52%</td>\n<td>66</td>\n<td>0.43%</td>\n</tr>\n<tr>\n<td>Serbia</td>\n<td></td>\n<td></td>\n<td>89</td>\n<td>0.61%</td>\n<td>63</td>\n<td>0.41%</td>\n</tr>\n<tr>\n<td>Kenya</td>\n<td></td>\n<td></td>\n<td>58</td>\n<td>0.40%</td>\n<td>62</td>\n<td>0.40%</td>\n</tr>\n<tr>\n<td>Colombia</td>\n<td></td>\n<td></td>\n<td>39</td>\n<td>0.27%</td>\n<td>59</td>\n<td>0.38%</td>\n</tr>\n<tr>\n<td>Egypt</td>\n<td></td>\n<td></td>\n<td>40</td>\n<td>0.27%</td>\n<td>52</td>\n<td>0.34%</td>\n</tr>\n</tbody>\n</table>\n<h3>What is your age?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td style=\"text-align: center\" colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (This question was not asked in 2015.)</td>\n<td></td>\n<td></td>\n<td>14,944</td>\n<td></td>\n<td>15,636</td>\n<td></td>\n</tr>\n<tr>\n<td>60 and over</td>\n<td></td>\n<td></td>\n<td>1,139</td>\n<td>8%</td>\n<td>1,641</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>50-59</td>\n<td></td>\n<td></td>\n<td>1,537</td>\n<td>10%</td>\n<td>1,996</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>40-49</td>\n<td></td>\n<td></td>\n<td>2,205</td>\n<td>15%</td>\n<td>2,643</td>\n<td>17%</td>\n</tr>\n<tr>\n<td>30-39</td>\n<td></td>\n<td></td>\n<td>3,914</td>\n<td>26%</td>\n<td>3,972</td>\n<td>25%</td>\n</tr>\n<tr>\n<td>20-29</td>\n<td></td>\n<td></td>\n<td>5,013</td>\n<td>34%</td>\n<td>4,444</td>\n<td>28%</td>\n</tr>\n<tr>\n<td>Under 20</td>\n<td></td>\n<td></td>\n<td>1142</td>\n<td>8%</td>\n<td>941</td>\n<td>6%</td>\n</tr>\n</tbody>\n</table>\n<p>Thank you to everyone who made time to fill out the survey — we’re so happy you use WordPress, and we’re very grateful that you’re willing to share your experiences with us! Thanks also to everyone who spread the word about this survey, and to those of you who read all the way to the bottom of this post. <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f609.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n<p><small><a id=\"text\"></a>*Text Field Questions: Each survey included some questions that could be answered only by filling out a text field. In the case of the questions “What is the best thing about WordPress?” and “What is the most frustrating thing about WordPress?” we listed the five most common responses, aggregated when applicable. In the case of the question “What is your gender?” in the 2016 and 2017 surveys, we aggregated responses as best we could. Responses meant to obscure respondents’ gender entirely are aggregated in “prefer not to answer.”</small></p>\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:\"5310\";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: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:37:\"The Month in WordPress: November 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"https://wordpress.org/news/2017/12/the-month-in-wordpress-november-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 01 Dec 2017 11:00: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in 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:34:\"https://wordpress.org/news/?p=5290\";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:354:\"The WordPress project recently released WordPress 4.9, “Tipton” — a new major release named in honor of musician and band leader Billy Tipton. Read on to find out more about this and other interesting news from around the WordPress world in November. WordPress 4.9 “Tipton” On November 16, WordPress 4.9 was released with new features […]\";s: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:\"Hugh Lashbrooke\";s: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:4234:\"\n<p>The WordPress project recently released WordPress 4.9, “Tipton” — a new major release named in honor of musician and band leader Billy Tipton. Read on to find out more about this and other interesting news from around the WordPress world in November.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 4.9 “Tipton”</h2>\n\n\n\n<p>On November 16, <a href=\"https://wordpress.org/news/2017/11/tipton/\">WordPress 4.9 was released</a> with new features for publishers and developers alike. Release highlights include design locking, scheduling, and previews in the Customizer, an even more secure and usable code editing experience, a new gallery widget, and text widget improvements.</p>\n\n\n\n<p>The follow up security and maintenance, v4.9.1, <a href=\"https://wordpress.org/news/2017/11/wordpress-4-9-1-security-and-maintenance-release/\">has now been released</a> to tighten up the security of WordPress as a whole.</p>\n\n\n\n<p>To get involved in building WordPress Core, jump into the #core channel in the<a href=\"https://make.wordpress.org/chat/\"> Making WordPress Slack group</a>, and follow<a href=\"https://make.wordpress.org/core/\"> the Core team blog</a>.</p>\n\n\n\n<h2>Apply to Speak At WordCamp Europe 2018</h2>\n\n\n\n<p>The next edition of WordCamp Europe takes place in June, 2018. While the organizing team is still in the early stages of planning, <a href=\"https://2018.europe.wordcamp.org/2017/11/15/are-you-ready-to-speak-at-the-largest-wordpress-event-in-europe/\">they are accepting speaker applications</a>.</p>\n\n\n\n<p>WordCamp Europe is the largest WordCamp in the world and, along with WordCamp US, one of the flagship events of the WordCamp program — speaking at this event is a great way to give back to the global WordPress community by sharing your knowledge and expertise with thousands of WordPress enthusiasts.</p>\n\n\n\n<h2>Diversity Outreach Speaker Training Initiative</h2>\n\n\n\n<p>To help WordPress community organizers offer diverse speaker lineups, <a href=\"https://make.wordpress.org/community/2017/11/13/call-for-volunteers-diversity-outreach-speaker-training/\">a new community initiative has kicked off</a> to use existing <a href=\"https://make.wordpress.org/training/handbook/speaker-training/\">speaker training workshops</a> to demystify speaking requirements and help participants gain confidence in their ability to share their WordPress knowledge in a WordCamp session.</p>\n\n\n\n<p>The working group behind this initiative will be meeting regularly to discuss and plan how they can help local communities to train speakers for WordCamps and other events.</p>\n\n\n\n<p>To get involved in this initiative, you can join the meetings at 5pm UTC every other Wednesday in the #community-team channel of the<a href=\"https://make.wordpress.org/chat/\"> Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul>\n <li><a href=\"https://2017.us.wordcamp.org/\">WordCamp US 2017</a> is happening on December 1-3 in Nashville, with the annual State of the Word talk happening on Saturday afternoon — <a href=\"https://2017.us.wordcamp.org/live-stream/\">the live stream of the entire event is available to view for free</a>.</li>\n <li><a href=\"https://xwp.co/tide-a-path-to-better-code-across-the-wordpress-ecosystem/\">Tide</a>, a new service from XWP designed to help users make informed plugin choices, is due to launch at WordCamp US.</li>\n <li>Gutenberg development is continuing rapidly, with <a href=\"https://make.wordpress.org/core/2017/11/28/whats-new-in-gutenberg-28th-november/\">a packed new release</a> and a focus on <a href=\"https://make.wordpress.org/test/2017/11/22/testing-flow-in-gutenberg/\">usability testing</a>.</li>\n <li>After some discussion among the community, <a href=\"https://make.wordpress.org/community/2017/11/10/discussion-micro-regional-wordcamps/\">a new type of micro-regional WordCamp</a> is going to be introduced into the global WordCamp program.</li>\n</ul>\n\n\n\n<p><em></em></p>\n\n\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></p>\n\n\n\n<p><em></em></p>\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:\"5290\";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: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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"WordPress 4.9.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/11/wordpress-4-9-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, 29 Nov 2017 20:33: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: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: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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5215\";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:359:\"WordPress 4.9.1 is now available. This is a security and maintenance release for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately. WordPress versions 4.9 and earlier are affected by four security issues which could potentially be exploited as part of a multi-vector attack. As part of the core team's […]\";s: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:\"John Blackbourn\";s: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:4287:\"\n<p>WordPress 4.9.1 is now available. This is a <strong>security and maintenance release</strong> for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately.</p>\n\n\n\n<p>WordPress versions 4.9 and earlier are affected by four security issues which could potentially be exploited as part of a multi-vector attack. As part of the core team's ongoing commitment to security hardening, the following fixes have been implemented in 4.9.1:</p>\n\n\n\n<ol>\n <li>Use a properly generated hash for the <code>newbloguser</code> key instead of a determinate substring.</li>\n <li>Add escaping to the language attributes used on <code>html</code> elements.</li>\n <li>Ensure the attributes of enclosures are correctly escaped in RSS and Atom feeds.</li>\n <li>Remove the ability to upload JavaScript files for users who do not have the <code>unfiltered_html</code> capability.</li>\n</ol>\n\n\n\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible security disclosure</a>: <a href=\"https://twitter.com/0x62626262\">Rahul Pratap Singh</a> and John Blackbourn.</p>\n\n\n\n<p>Eleven other bugs were fixed in WordPress 4.9.1. Particularly of note were:</p>\n\n\n\n<ul>\n <li>Issues relating to the caching of theme template files.</li>\n <li>A MediaElement JavaScript error preventing users of certain languages from being able to upload media files.</li>\n <li>The inability to edit theme and plugin files on Windows based servers.</li>\n</ul>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2017/11/28/wordpress-4-9-1-scheduled-for-november-29th/\">This post has more information about all of the issues fixed in 4.9.1 if you'd like to learn more</a>.</p>\n\n\n\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.1</a> or venture over to Dashboard → Updates and click "Update Now." Sites that support automatic background updates are already beginning to update automatically.</p>\n\n\n\n<p>Thank you to everyone who contributed to WordPress 4.9.1:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/la-geek/\">Angelika Reisiger</a>, <a href=\"https://profiles.wordpress.org/blobfolio/\">Blobfolio</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/edo888/\">edo888</a>, <a href=\"https://profiles.wordpress.org/erich_k4wp/\">Erich Munz</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/ibenic/\">Igor Benic</a>, <a href=\"https://profiles.wordpress.org/jfarthing84/\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jeremyescott/\">jeremyescott</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnpgreen/\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/lenasterg/\">lenasterg</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mariovalney/\">Mário Valney</a>, <a href=\"https://profiles.wordpress.org/natacado/\">natacado</a>, <a href=\"https://profiles.wordpress.org/odysseygate/\">odyssey</a>, <a href=\"https://profiles.wordpress.org/precies/\">precies</a>, <a href=\"https://profiles.wordpress.org/stodorovic/\">Saša</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>.</p>\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:\"5215\";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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"WordPress 4.9 “Tipton”\";s:7:\"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:\"https://wordpress.org/news/2017/11/tipton/\";s: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, 16 Nov 2017 01:16: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: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=4968\";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:227:\"Announcing version 4.9 of WordPress, named “Tipton” in honor of jazz pianist and band leader Billy Tipton. New features in 4.9 will smooth your design workflow and keep you safe from coding errors. Download or update today!\";s: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:\"Mel Choyce\";s: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:42220:\"<h2 style=\"text-align: center\">Major Customizer Improvements, Code Error Checking, and More! ?</h2>\n\r\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2017/11/banner.png?fit=2400%2C1200&ssl=1\" alt=\"\" /></figure>\r\n\r\n\r\n\r\n<p>Version 4.9 of WordPress, named “Tipton” in honor of jazz musician and band leader Billy Tipton, is available for download or update in your WordPress dashboard. New features in 4.9 will smooth your design workflow and keep you safe from coding errors.</p>\r\n\r\n\r\n\r\n<p>Featuring design drafts, scheduling, and locking, along with preview links, the Customizer workflow improves collaboration for content creators. What’s more, code syntax highlighting and error checking will make for a clean and smooth site building experience. Finally, if all that wasn’t pretty great, we’ve got an awesome new Gallery widget and improvements to theme browsing and switching.</p>\r\n\r\n\r\n\r\n<hr class=\"wp-block-separator\" />\r\n\r\n\r\n\r\n<h2 style=\"text-align:center\">Customizer Workflow Improved </h2>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2017/11/customizer-workflow-improved-small.png?w=632&ssl=1\" alt=\"\" data-recalc-dims=\"1\" /></figure>\r\n\r\n\r\n\r\n<h3>Draft and Schedule Site Design Customizations</h3>\r\n\r\n\r\n\r\n<p>Yes, you read that right. Just like you can draft and revise posts and schedule them to go live on the date and time you choose, you can now tinker with your site’s design and schedule those design changes to go live as you please.</p>\r\n\r\n\r\n\r\n<h3>Collaborate with Design Preview Links</h3>\r\n\r\n\r\n\r\n<p>Need to get some feedback on proposed site design changes? WordPress 4.9 gives you a preview link you can send to colleagues and customers so that you can collect and integrate feedback before you schedule the changes to go live. Can we say collaboration++?</p>\r\n\r\n\r\n\r\n<h3>Design Locking Guards Your Changes</h3>\r\n\r\n\r\n\r\n<p>Ever encounter a scenario where two designers walk into a project and designer A overrides designer B’s beautiful changes? WordPress 4.9’s design lock feature (similar to post locking) secures your draft design so that no one can make changes to it or erase all your hard work.</p>\r\n\r\n\r\n\r\n<h3>A Prompt to Protect Your Work</h3>\r\n\r\n\r\n\r\n<p>Were you lured away from your desk before you saved your new draft design? Fear not, when you return, WordPress 4.9 will politely ask whether or not you’d like to save your unsaved changes.</p>\r\n\r\n\r\n\r\n<hr class=\"wp-block-separator\" />\r\n\r\n\r\n\r\n<h2 style=\"text-align:center\">Coding Enhancements</h2>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2017/11/coding-enhancements-small.png?w=632&ssl=1\" alt=\"\" data-recalc-dims=\"1\" /></figure>\r\n\r\n\r\n\r\n<h3>Syntax Highlighting and Error Checking? Yes, Please!</h3>\r\n\r\n\r\n\r\n<p>You’ve got a display problem but can’t quite figure out exactly what went wrong in the CSS you lovingly wrote. With syntax highlighting and error checking for CSS editing and the Custom HTML widget introduced in WordPress 4.8.1, you’ll pinpoint coding errors quickly. Practically guaranteed to help you scan code more easily, and suss out & fix code errors quickly.</p>\r\n\r\n\r\n\r\n<h3>Sandbox for Safety</h3>\r\n\r\n\r\n\r\n<p>The dreaded white screen. You’ll avoid it when working on themes and plugin code because WordPress 4.9 will warn you about saving an error. You’ll sleep better at night.</p>\r\n\r\n\r\n\r\n<h3>Warning: Potential Danger Ahead!</h3>\r\n\r\n\r\n\r\n<p>When you edit themes and plugins directly, WordPress 4.9 will politely warn you that this is a dangerous practice and will recommend that you draft and test changes before updating your file. Take the safe route: You’ll thank you. Your team and customers will thank you.</p>\r\n\r\n\r\n\r\n<hr class=\"wp-block-separator\" />\r\n\r\n\r\n\r\n<h2 style=\"text-align:center\">Even More Widget Updates </h2>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2017/11/even-more-widget-updates-small.png?w=632&ssl=1\" alt=\"\" data-recalc-dims=\"1\" /></figure>\r\n\r\n\r\n\r\n<h3>The New Gallery Widget</h3>\r\n\r\n\r\n\r\n<p>An incremental improvement to the media changes hatched in WordPress 4.8, you can now add a gallery via this new widget. Yes!</p>\r\n\r\n\r\n\r\n<h3>Press a Button, Add Media</h3>\r\n\r\n\r\n\r\n<p>Want to add media to your text widget? Embed images, video, and audio directly into the widget along with your text, with our simple but useful Add Media button. Woo!</p>\r\n\r\n\r\n\r\n<hr class=\"wp-block-separator\" />\r\n\r\n\r\n\r\n<h2 style=\"text-align:center\">Site Building Improvements </h2>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image\"><img src=\"https://i1.wp.com/wordpress.org/news/files/2017/11/site-building-improvements-small.png?w=632&ssl=1\" alt=\"\" data-recalc-dims=\"1\" /></figure>\r\n\r\n\r\n\r\n<h3>More Reliable Theme Switching</h3>\r\n\r\n\r\n\r\n<p>When you switch themes, widgets sometimes think they can just move location. Improvements in WordPress 4.9 offer more persistent menu and widget placement when you decide it’s time for a new theme. </p>\r\n\r\n\r\n\r\n<h3>Find and Preview the Perfect Theme</h3>\r\n\r\n\r\n\r\n<p>Looking for a new theme for your site? Now, from within the Customizer, you can search, browse, and preview over 2600 themes before deploying changes to your site. What’s more, you can speed your search with filters for subject, features, and layout.</p>\r\n\r\n\r\n\r\n<h3>Better Menu Instructions = Less Confusion</h3>\r\n\r\n\r\n\r\n<p>Were you confused by the steps to create a new menu? Perhaps no longer! We’ve ironed out the UX for a smoother menu creation process. Newly updated copy will guide you.</p>\r\n\r\n\r\n\r\n<hr class=\"wp-block-separator\" />\r\n\r\n\r\n\r\n<h2 style=\"text-align:center\">Lend a Hand with Gutenberg ?</h2>\r\n\r\n\r\n\r\n<figure class=\"wp-block-image\"><img src=\"https://i2.wp.com/wordpress.org/news/files/2017/11/gutenberg-1.png?w=632&ssl=1\" alt=\"\" data-recalc-dims=\"1\" /></figure>\r\n\r\n\r\n\r\n<p>WordPress is working on a new way to create and control your content and we’d love to have your help. Interested in being an <a href=\"https://wordpress.org/plugins/gutenberg/\">early tester</a> or getting involved with the Gutenberg project? <a href=\"https://github.com/WordPress/gutenberg\">Contribute on GitHub</a>.</p>\r\n\r\n\r\n\r\n<p>(PS: this post was written in Gutenberg!)</p>\r\n\r\n\r\n\r\n<hr class=\"wp-block-separator\" />\r\n\r\n\r\n\r\n<h2 style=\"text-align:center\">Developer Happiness ?</h2>\r\n\r\n\r\n\r\n<h3><a href=\"https://make.wordpress.org/core/2017/11/01/improvements-to-the-customize-js-api-in-4-9/\">Customizer JS API Improvements</a></h3>\r\n\r\n\r\n\r\n<p>We’ve made numerous improvements to the Customizer JS API in WordPress 4.9, eliminating many pain points. (Hello, default parameters for constructs! Goodbye repeated ID for constructs!) There are also new base control templates, a date/time control, and section/panel/global notifications to name a few. <a href=\"https://make.wordpress.org/core/2017/11/01/improvements-to-the-customize-js-api-in-4-9/\">Check out the full list.</a></p>\r\n\r\n\r\n\r\n<h3><a href=\"https://make.wordpress.org/core/2017/10/22/code-editing-improvements-in-wordpress-4-9/\">CodeMirror available for use in your themes and plugins</a></h3>\r\n\r\n\r\n\r\n<p>We’ve introduced a new code editing library, CodeMirror, for use within core. CodeMirror allows for syntax highlighting, error checking, and validation when creating code writing or editing experiences within your plugins, like CSS or JavaScript include fields.</p>\r\n\r\n\r\n\r\n<h3><a href=\"https://make.wordpress.org/core/2017/10/30/mediaelement-upgrades-in-wordpress-4-9/\">MediaElement.js upgraded to 4.2.6</a></h3>\r\n\r\n\r\n\r\n<p>WordPress 4.9 includes an upgraded version of MediaElement.js, which removes dependencies on jQuery, improves accessibility, modernizes the UI, and fixes many bugs.</p>\r\n\r\n\r\n\r\n<h3><a href=\"https://make.wordpress.org/core/2017/10/15/improvements-for-roles-and-capabilities-in-4-9/\">Roles and Capabilities Improvements</a></h3>\r\n\r\n\r\n\r\n<p>New capabilities have been introduced that allow granular management of plugins and translation files. In addition, the site switching process in multisite has been fine-tuned to update the available roles and capabilities in a more reliable and coherent way.</p>\r\n\r\n\r\n\r\n<hr class=\"wp-block-separator\" />\r\n\r\n\r\n\r\n<h2>The Squad</h2>\r\n\r\n\r\n\r\n<p>This release was led by <a href=\"https://choycedesign.com/\">Mel Choyce</a> and <a href=\"https://weston.ruter.net/\">Weston Ruter</a>, with the help of the following fabulous folks. There are 443 contributors with props in this release, with 185 of them contributing for the first time. Pull up some Billy Tipton on your music service of choice, and check out some of their profiles:</p>\r\n\r\n\r\n\r\n<a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abrightclearweb\">abrightclearweb</a>, <a href=\"https://profiles.wordpress.org/ibachal\">Achal Jain</a>, <a href=\"https://profiles.wordpress.org/achbed\">achbed</a>, <a href=\"https://profiles.wordpress.org/acmethemes\">Acme Themes</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adammacias\">adammacias</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/ahmadawais\">ahmadawais</a>, <a href=\"https://profiles.wordpress.org/airesvsg\">airesvsg</a>, <a href=\"https://profiles.wordpress.org/ajoah\">ajoah</a>, <a href=\"https://profiles.wordpress.org/akibjorklund\">Aki Björklund</a>, <a href=\"https://profiles.wordpress.org/akshayvinchurkar\">akshayvinchurkar</a>, <a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/xavortm\">Alex Dimitrov</a>, <a href=\"https://profiles.wordpress.org/ironpaperweight\">Alex Hon</a>, <a href=\"https://profiles.wordpress.org/alex27\">alex27</a>, <a href=\"https://profiles.wordpress.org/allancole\">allancole</a>, <a href=\"https://profiles.wordpress.org/arush\">Amanda Rush</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andrewp-2\">Andreas Panag</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/kelderic\">Andy Mercer</a>, <a href=\"https://profiles.wordpress.org/andy\">Andy Skelton</a>, <a href=\"https://profiles.wordpress.org/aniketpant\">Aniket Pant</a>, <a href=\"https://profiles.wordpress.org/anilbasnet\">Anil Basnet</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/ahortin\">Anthony Hortin</a>, <a href=\"https://profiles.wordpress.org/antisilent\">antisilent</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/apokalyptik\">apokalyptik</a>, <a href=\"https://profiles.wordpress.org/artoliukkonen\">artoliukkonen</a>, <a href=\"https://profiles.wordpress.org/ideag\">Arunas Liuiza</a>, <a href=\"https://profiles.wordpress.org/attitude\">attitude</a>, <a href=\"https://profiles.wordpress.org/backermann\">backermann</a>, <a href=\"https://profiles.wordpress.org/b-07\">Bappi</a>, <a href=\"https://profiles.wordpress.org/bcole808\">Ben Cole</a>, <a href=\"https://profiles.wordpress.org/quasel\">Bernhard Gronau</a>, <a href=\"https://profiles.wordpress.org/kau-boy\">Bernhard Kau</a>, <a href=\"https://profiles.wordpress.org/binarymoon\">binarymoon</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bjornw\">BjornW</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boblinthorst\">boblinthorst</a>, <a href=\"https://profiles.wordpress.org/boboudreau\">boboudreau</a>, <a href=\"https://profiles.wordpress.org/gitlost\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/brainstormforce\">Brainstorm Force</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brianhogg\">Brian Hogg</a>, <a href=\"https://profiles.wordpress.org/krogsgard\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/bronsonquick\">Bronson Quick</a>, <a href=\"https://profiles.wordpress.org/sixhours\">Caroline Moore</a>, <a href=\"https://profiles.wordpress.org/caseypatrickdriscoll\">Casey Driscoll</a>, <a href=\"https://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"https://profiles.wordpress.org/chandrapatel\">Chandra Patel</a>, <a href=\"https://profiles.wordpress.org/chaos-engine\">Chaos Engine</a>, <a href=\"https://profiles.wordpress.org/cheeserolls\">cheeserolls</a>, <a href=\"https://profiles.wordpress.org/chesio\">chesio</a>, <a href=\"https://profiles.wordpress.org/ketuchetan\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/choongsavvii\">choong</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chredd\">chredd</a>, <a href=\"https://profiles.wordpress.org/chrisjean\">Chris Jean</a>, <a href=\"https://profiles.wordpress.org/cmmarslender\">Chris Marslender</a>, <a href=\"https://profiles.wordpress.org/chris_d2d\">Chris Smith</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriswiegman\">Chris Wiegman</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/chriseverson\">chriseverson</a>, <a href=\"https://profiles.wordpress.org/christian1012\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/cwpnolen\">Christian Nolen</a>, <a href=\"https://profiles.wordpress.org/needle\">Christian Wach</a>, <a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/clarionwpdeveloper\">Clarion Technologies</a>, <a href=\"https://profiles.wordpress.org/claudiosmweb\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiosanches\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiolabarbera\">ClaudioLaBarbera</a>, <a href=\"https://profiles.wordpress.org/codemovementpk\">codemovement.pk</a>, <a href=\"https://profiles.wordpress.org/coderkevin\">coderkevin</a>, <a href=\"https://profiles.wordpress.org/codfish\">codfish</a>, <a href=\"https://profiles.wordpress.org/coreymcollins\">coreymcollins</a>, <a href=\"https://profiles.wordpress.org/curdin\">Curdin Krummenacher</a>, <a href=\"https://profiles.wordpress.org/cgrymala\">Curtiss Grymala</a>, <a href=\"https://profiles.wordpress.org/cdog\">Cătălin Dogaru</a>, <a href=\"https://profiles.wordpress.org/danhgilmore\">danhgilmore</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber </a>, <a href=\"https://profiles.wordpress.org/danielkanchev\">Daniel Kanchev</a>, <a href=\"https://profiles.wordpress.org/danielpietrasik\">Daniel Pietrasik</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/dllh\">Daryl L. L. Houston (dllh)</a>, <a href=\"https://profiles.wordpress.org/davepullig\">Dave Pullig</a>, <a href=\"https://profiles.wordpress.org/goto10\">Dave Romsey (goto10)</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/turtlepod\">David Chandra Purnama</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dglingren\">David Lingren</a>, <a href=\"https://profiles.wordpress.org/davidmosterd\">David Mosterd</a>, <a href=\"https://profiles.wordpress.org/dshanske\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/davidbhayes\">davidbhayes</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/deeptiboddapati\">deeptiboddapati</a>, <a href=\"https://profiles.wordpress.org/delphinus\">delphinus</a>, <a href=\"https://profiles.wordpress.org/deltafactory\">deltafactory</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/pcfreak30\">Derrick Hammer</a>, <a href=\"https://profiles.wordpress.org/derrickkoo\">Derrick Koo</a>, <a href=\"https://profiles.wordpress.org/dimchik\">dimchik</a>, <a href=\"https://profiles.wordpress.org/dineshc\">Dinesh Chouhan</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipeshkakadiya</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">dmsnell</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dotancohen\">Dotan Cohen</a>, <a href=\"https://profiles.wordpress.org/dougwollison\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/doughamlin\">doughamlin</a>, <a href=\"https://profiles.wordpress.org/dreamon11\">DreamOn11</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/duncanjbrown\">duncanjbrown</a>, <a href=\"https://profiles.wordpress.org/dungengronovius\">dungengronovius</a>, <a href=\"https://profiles.wordpress.org/dylanauty\">DylanAuty</a>, <a href=\"https://profiles.wordpress.org/hurtige\">Eddie Hurtig</a>, <a href=\"https://profiles.wordpress.org/oso96_2000\">Eduardo Reveles</a>, <a href=\"https://profiles.wordpress.org/chopinbach\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/electricfeet\">ElectricFeet</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/elyobo\">elyobo</a>, <a href=\"https://profiles.wordpress.org/enodekciw\">enodekciw</a>, <a href=\"https://profiles.wordpress.org/enshrined\">enshrined</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/pushred\">Eric Lanehart</a>, <a href=\"https://profiles.wordpress.org/eherman24\">Evan Herman</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fencer04\">Fencer04</a>, <a href=\"https://profiles.wordpress.org/florianbrinkmann\">Florian Brinkmann</a>, <a href=\"https://profiles.wordpress.org/mista-flo\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/foliovision\">FolioVision</a>, <a href=\"https://profiles.wordpress.org/fomenkoandrey\">fomenkoandrey</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/frankiet\">Frankie</a>, <a href=\"https://profiles.wordpress.org/fjarrett\">Frankie Jarrett</a>, <a href=\"https://profiles.wordpress.org/akeif\">Fred</a>, <a href=\"https://profiles.wordpress.org/frozzare\">Fredrik Forsmo</a>, <a href=\"https://profiles.wordpress.org/fuscata\">fuscata</a>, <a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">Garth Mortensen</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/geekysoft\">Geeky Software</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/goranseric\">Goran Šerić</a>, <a href=\"https://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>, <a href=\"https://profiles.wordpress.org/grantderepas\">Grant Derepas</a>, <a href=\"https://profiles.wordpress.org/tivnet\">Gregory Karpinsky (@tivnet)</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/henrywright\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/hiddenpearls\">hiddenpearls</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/hristo-sg\">Hristo Pandjarov</a>, <a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/polevaultweb\">Iain Poulson</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianedington\">Ian Edington</a>, <a href=\"https://profiles.wordpress.org/idealien\">idealien</a>, <a href=\"https://profiles.wordpress.org/igmoweb\">Ignacio Cruz Moreno</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/implenton\">implenton</a>, <a href=\"https://profiles.wordpress.org/ionutst\">Ionut Stanciu</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/ivdimova\">ivdimova</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jakept\">Jacob Peattie</a>, <a href=\"https://profiles.wordpress.org/whyisjake\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamesacero\">jamesacero</a>, <a href=\"https://profiles.wordpress.org/japh\">Japh</a>, <a href=\"https://profiles.wordpress.org/jaredcobb\">Jared Cobb</a>, <a href=\"https://profiles.wordpress.org/jayarjo\">jayarjo</a>, <a href=\"https://profiles.wordpress.org/jdolan\">jdolan</a>, <a href=\"https://profiles.wordpress.org/jdoubleu\">jdoubleu</a>, <a href=\"https://profiles.wordpress.org/jblz\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/jbpaul17\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/jimt\">jimt</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/jmusal\">jmusal</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joelcj91\">Joel James</a>, <a href=\"https://profiles.wordpress.org/johanmynhardt\">johanmynhardt</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/zyphonic\">John Dittmar</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnpbloch\">John P. Bloch</a>, <a href=\"https://profiles.wordpress.org/johnregan3\">John Regan</a>, <a href=\"https://profiles.wordpress.org/johnpgreen\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/kenshino\">Jon (Kenshino)</a>, <a href=\"https://profiles.wordpress.org/jonathanbardo\">Jonathan Bardo</a>, <a href=\"https://profiles.wordpress.org/jbrinley\">Jonathan Brinley</a>, <a href=\"https://profiles.wordpress.org/daggerhart\">Jonathan Daggerhart</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonnyauk\">jonnyauk</a>, <a href=\"https://profiles.wordpress.org/jordesign\">jordesign</a>, <a href=\"https://profiles.wordpress.org/jorritschippers\">JorritSchippers</a>, <a href=\"https://profiles.wordpress.org/joefusco\">Joseph Fusco</a>, <a href=\"https://profiles.wordpress.org/jjeaton\">Josh Eaton</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/joshcummingsdesign\">joshcummingsdesign</a>, <a href=\"https://profiles.wordpress.org/joshkadis\">joshkadis</a>, <a href=\"https://profiles.wordpress.org/joyously\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/jrgould\">JRGould</a>, <a href=\"https://profiles.wordpress.org/juanfra\">Juanfra Aldasoro</a>, <a href=\"https://profiles.wordpress.org/juhise\">Juhi Saxena</a>, <a href=\"https://profiles.wordpress.org/nukaga\">Junko Nukaga</a>, <a href=\"https://profiles.wordpress.org/justinbusa\">Justin Busa</a>, <a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"https://profiles.wordpress.org/jshreve\">Justin Shreve</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/kacperszurek\">kacperszurek</a>, <a href=\"https://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/kalenjohnson\">KalenJohnson</a>, <a href=\"https://profiles.wordpress.org/codebykat\">Kat Hagan</a>, <a href=\"https://profiles.wordpress.org/kkoppenhaver\">Keanan Koppenhaver</a>, <a href=\"https://profiles.wordpress.org/keesiemeijer\">keesiemeijer</a>, <a href=\"https://profiles.wordpress.org/kellbot\">kellbot</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/khag7\">Kevin Hagerty</a>, <a href=\"https://profiles.wordpress.org/kwight\">Kirk Wight</a>, <a href=\"https://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjbenk\">kjbenk</a>, <a href=\"https://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/koenschipper\">koenschipper</a>, <a href=\"https://profiles.wordpress.org/kokarn\">kokarn</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/kouratoras\">Konstantinos Kouratoras</a>, <a href=\"https://profiles.wordpress.org/kuchenundkakao\">kuchenundkakao</a>, <a href=\"https://profiles.wordpress.org/kuldipem\">kuldipem</a>, <a href=\"https://profiles.wordpress.org/laurelfulford\">Laurel Fulford</a>, <a href=\"https://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"https://profiles.wordpress.org/leobaiano\">Leo Baiano</a>, <a href=\"https://profiles.wordpress.org/littlebigthing\">LittleBigThings (Csaba)</a>, <a href=\"https://profiles.wordpress.org/lucasstark\">Lucas Stark</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>, <a href=\"https://profiles.wordpress.org/lukepettway\">Luke Pettway</a>, <a href=\"https://profiles.wordpress.org/lyubomir_popov\">lyubomir_popov</a>, <a href=\"https://profiles.wordpress.org/mariovalney\">Mário Valney</a>, <a href=\"https://profiles.wordpress.org/mageshp\">mageshp</a>, <a href=\"https://profiles.wordpress.org/mahesh901122\">Mahesh Waghmare</a>, <a href=\"https://profiles.wordpress.org/mangeshp\">Mangesh Parte</a>, <a href=\"https://profiles.wordpress.org/manishsongirkar36\">Manish Songirkar</a>, <a href=\"https://profiles.wordpress.org/mantismamita\">mantismamita</a>, <a href=\"https://profiles.wordpress.org/mbootsman\">Marcel Bootsman</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mbelchev\">Mariyan Belchev</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mrwweb\">Mark Root-Wiley</a>, <a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/markshep\">markshep</a>, <a href=\"https://profiles.wordpress.org/matrixik\">matrixik</a>, <a href=\"https://profiles.wordpress.org/mjbanks\">Matt Banks</a>, <a href=\"https://profiles.wordpress.org/mattking5000\">Matt King</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/jaworskimatt\">Matt PeepSo</a>, <a href=\"https://profiles.wordpress.org/veraxus\">Matt van Andel</a>, <a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"https://profiles.wordpress.org/maximeculea\">Maxime Culea</a>, <a href=\"https://profiles.wordpress.org/mayukojpn\">Mayo Moriyama</a>, <a href=\"https://profiles.wordpress.org/mckernanin\">mckernanin</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mhowell\">mhowell</a>, <a href=\"https://profiles.wordpress.org/michaelarestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michalzuber\">michalzuber</a>, <a href=\"https://profiles.wordpress.org/stubgo\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/mauteri\">Mike Auteri</a>, <a href=\"https://profiles.wordpress.org/mihai2u\">Mike Crantea</a>, <a href=\"https://profiles.wordpress.org/mdgl\">Mike Glendinning</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikelittle\">Mike Little</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeviele\">Mike Viele</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/modemlooper\">modemlooper</a>, <a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/deremohan\">Mohan Dere</a>, <a href=\"https://profiles.wordpress.org/monikarao\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/morettigeorgiev\">morettigeorgiev</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/mt8biz\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/mrbobbybryant\">mrbobbybryant</a>, <a href=\"https://profiles.wordpress.org/nnaimov\">Naim Naimov</a>, <a href=\"https://profiles.wordpress.org/natereist\">Nate Reist</a>, <a href=\"https://profiles.wordpress.org/natewr\">NateWr</a>, <a href=\"https://profiles.wordpress.org/nathanrice\">nathanrice</a>, <a href=\"https://profiles.wordpress.org/nazgul\">Nazgul</a>, <a href=\"https://profiles.wordpress.org/greatislander\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/krstarica\">net</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey </a>, <a href=\"https://profiles.wordpress.org/nikeo\">Nicolas GUILLAUME</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nikv\">Nikhil Vimal</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/noplanman\">noplanman</a>, <a href=\"https://profiles.wordpress.org/nullvariable\">nullvariable</a>, <a href=\"https://profiles.wordpress.org/odie2\">odie2</a>, <a href=\"https://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"https://profiles.wordpress.org/hideokamoto\">Okamoto Hidetaka</a>, <a href=\"https://profiles.wordpress.org/orvils\">orvils</a>, <a href=\"https://profiles.wordpress.org/oskosk\">oskosk</a>, <a href=\"https://profiles.wordpress.org/ottok\">Otto Kekäläinen</a>, <a href=\"https://profiles.wordpress.org/ovann86\">ovann86</a>, <a href=\"https://profiles.wordpress.org/imnok\">Pantip Treerattanapitak (Nok)</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/patilvikasj\">patilvikasj</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/sirbrillig\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/pdufour\">pdufour</a>, <a href=\"https://profiles.wordpress.org/piewp\">Perdaan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/phh\">phh</a>, <a href=\"https://profiles.wordpress.org/php\">php</a>, <a href=\"https://profiles.wordpress.org/delawski\">Piotr Delawski</a>, <a href=\"https://profiles.wordpress.org/pippinsplugins\">pippinsplugins</a>, <a href=\"https://profiles.wordpress.org/pjgalbraith\">pjgalbraith</a>, <a href=\"https://profiles.wordpress.org/pkevan\">pkevan</a>, <a href=\"https://profiles.wordpress.org/pratikchaskar\">Pratik</a>, <a href=\"https://profiles.wordpress.org/pressionate\">Pressionate</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/procodewp\">procodewp</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rahulsprajapati\">Rahul Prajapati</a>, <a href=\"https://profiles.wordpress.org/superpoincare\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/ramiabraham\">ramiabraham</a>, <a href=\"https://profiles.wordpress.org/ranh\">ranh</a>, <a href=\"https://profiles.wordpress.org/redsand\">Red Sand Media Group</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/iamfriendly\">Richard Tape</a>, <a href=\"https://profiles.wordpress.org/rpayne7264\">Robert D Payne</a>, <a href=\"https://profiles.wordpress.org/iamjolly\">Robert Jolly</a>, <a href=\"https://profiles.wordpress.org/rnoakes3rd\">Robert Noakes</a>, <a href=\"https://profiles.wordpress.org/d4z_c0nf\">Rocco Aliberti</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/rommelxcastro\">Rommel Castro</a>, <a href=\"https://profiles.wordpress.org/fronaldaraujo\">Ronald Araújo</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/guavaworks\">Roy Sivan</a>, <a href=\"https://profiles.wordpress.org/ryankienstra\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/ryanplas\">Ryan Plas</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>, <a href=\"https://profiles.wordpress.org/sandesh055\">Sandesh</a>, <a href=\"https://profiles.wordpress.org/smyoon315\">Sang-Min Yoon</a>, <a href=\"https://profiles.wordpress.org/sanketparmar\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/pollyplummer\">Sarah Gooding</a>, <a href=\"https://profiles.wordpress.org/sayedwp\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/schrapel\">schrapel</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scrappyhuborg\">scrappy@hub.org</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/seancjones\">seancjones</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sgr33n\">Sergio De Falco</a>, <a href=\"https://profiles.wordpress.org/sfpt\">sfpt</a>, <a href=\"https://profiles.wordpress.org/shayanys\">shayanys</a>, <a href=\"https://profiles.wordpress.org/shazahm1hotmailcom\">shazahm1</a>, <a href=\"https://profiles.wordpress.org/shprink\">shprink</a>, <a href=\"https://profiles.wordpress.org/simonlampen\">simonlampen</a>, <a href=\"https://profiles.wordpress.org/skippy\">skippy</a>, <a href=\"https://profiles.wordpress.org/smerriman\">smerriman</a>, <a href=\"https://profiles.wordpress.org/snacking\">snacking</a>, <a href=\"https://profiles.wordpress.org/solal\">solal</a>, <a href=\"https://profiles.wordpress.org/soean\">Soren Wrede</a>, <a href=\"https://profiles.wordpress.org/sstoqnov\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/metodiew\">Stanko Metodiev</a>, <a href=\"https://profiles.wordpress.org/sharkomatic\">Steph</a>, <a href=\"https://profiles.wordpress.org/sswells\">Steph Wells</a>, <a href=\"https://profiles.wordpress.org/sillybean\">Stephanie Leary</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/stevenlinx\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>, <a href=\"https://profiles.wordpress.org/patilswapnilv\">Swapnil V. Patil</a>, <a href=\"https://profiles.wordpress.org/swapnild\">swapnild</a>, <a href=\"https://profiles.wordpress.org/szaqal21\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/takahashi_fumiki\">Takahashi Fumiki</a>, <a href=\"https://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tapsboy\">tapsboy</a>, <a href=\"https://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"https://profiles.wordpress.org/team\">team</a>, <a href=\"https://profiles.wordpress.org/tg29359\">tg29359</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/the\">the</a>, <a href=\"https://profiles.wordpress.org/themeshaper\">themeshaper</a>, <a href=\"https://profiles.wordpress.org/thenbrent\">thenbrent</a>, <a href=\"https://profiles.wordpress.org/thomaswm\">thomaswm</a>, <a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/tierra\">tierra</a>, <a href=\"https://profiles.wordpress.org/tnash\">Tim Nash</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford\">Timmy Crawford</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timph\">timph</a>, <a href=\"https://profiles.wordpress.org/tkama\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tnegri\">tnegri</a>, <a href=\"https://profiles.wordpress.org/tomauger\">Tom Auger</a>, <a href=\"https://profiles.wordpress.org/tjnowell\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tomdxw\">tomdxw</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/transl8or\">transl8or</a>, <a href=\"https://profiles.wordpress.org/traversal\">traversal</a>, <a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"https://profiles.wordpress.org/nmt90\">Triet Minh</a>, <a href=\"https://profiles.wordpress.org/trishasalas\">Trisha Salas</a>, <a href=\"https://profiles.wordpress.org/tristangemus\">tristangemus</a>, <a href=\"https://profiles.wordpress.org/truongwp\">truongwp</a>, <a href=\"https://profiles.wordpress.org/tsl143\">tsl143</a>, <a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/utkarshpatel\">Utkarsh</a>, <a href=\"https://profiles.wordpress.org/valeriutihai\">Valeriu Tihai</a>, <a href=\"https://profiles.wordpress.org/zuige\">Viljami Kuosmanen</a>, <a href=\"https://profiles.wordpress.org/vishalkakadiya\">Vishal Kakadiya</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/vrundakansara-1\">Vrunda Kansara</a>, <a href=\"https://profiles.wordpress.org/webbgaraget\">webbgaraget</a>, <a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design | Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/websupporter\">websupporter</a>, <a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton\">williampatton</a>, <a href=\"https://profiles.wordpress.org/wolly\">Wolly aka Paolo Valenti</a>, <a href=\"https://profiles.wordpress.org/wraithkenny\">WraithKenny</a>, <a href=\"https://profiles.wordpress.org/yale01\">yale01</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yogasukma\">Yoga Sukma</a>, <a href=\"https://profiles.wordpress.org/oxymoron\">Zach Wills</a>, <a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>, <a href=\"https://profiles.wordpress.org/vanillalounge\">Ze Fontainhas</a>, <a href=\"https://profiles.wordpress.org/zhildzik\">zhildzik</a>, and <a href=\"https://profiles.wordpress.org/zsusag\">zsusag</a>.\r\n\r\n\r\n\r\n<p>Finally, thanks to all the community translators who worked on WordPress 4.9. Their efforts bring WordPress 4.9 fully translated to 43 languages at release time, with more on the way.</p>\r\n\r\n\r\n\r\n<p>Do you want to report on WordPress 4.9? <a href=\"https://s.w.org/images/core/4.9/wp-4-9_press-kit.zip\">We've compiled a press kit featuring information about the release features, and some media assets to help you along</a>.</p>\r\n\r\n\r\n\r\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\r\n\r\n\r\n\r\n<p>Thanks for choosing WordPress!</p>\r\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:\"4968\";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: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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 4.9 Release Candidate 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:69:\"https://wordpress.org/news/2017/11/wordpress-4-9-release-candidate-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:\"Tue, 14 Nov 2017 06: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:13:\"Documentation\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5184\";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:345:\"The third release candidate for WordPress 4.9 is now available. A 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. In fact, we did miss some things in RC1 and RC2. This third release candidate was not originally scheduled, but […]\";s: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:\"Weston Ruter\";s: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:4169:\"<p>The third release candidate for WordPress 4.9 is now available.</p>\n<p>A 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. In fact, we did miss some things in RC1 and RC2. This third release candidate was not originally scheduled, but due a number of defects uncovered through your testing of RC2 (thank you!), we are putting out another 4.9 release candidate.</p>\n<p>We hope to ship WordPress 4.9 on <strong>Tuesday, November 14</strong> (that’s <em>tomorrow</em>) at 23:00 UTC, but we still need your help to get there. If you haven’t tested 4.9 yet, now is the time! If there are additional defects uncovered through testing between now and the release time, we may delay the 4.9 release to the following day.</p>\n<p>To test WordPress 4.9, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.9-RC3.zip\">download the release candidate here</a> (zip).</p>\n<p>We’ve made <a href=\"https://core.trac.wordpress.org/log/branches/4.9?action=stop_on_copy&mode=stop_on_copy&rev=42178&stop_rev=42133\">just over 20 changes</a> since releasing RC2 last week (as we did between RC1 and RC2). For more details about what’s new in version 4.9, check out the <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-3/\">Beta 3</a>, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-4/\">Beta 4</a>, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-release-candidate/\">RC1</a>, and <a href=\"https://wordpress.org/news/2017/11/wordpress-4-9-release-candidate-2/\">RC2</a> blog posts. A few specific areas to test in RC3:</p>\n<ul>\n<li>Switching between the Visual and Text tabs of the editor, and the syncing of the cursor between those two tabs.</li>\n<li>Overriding linting errors in the Customizer’s Additional CSS editor.</li>\n<li>Adding nav menu items for Custom Links in the Customizer.</li>\n<li>Scheduling customization drafts (stubbed posts/pages) for publishing in the Customizer.</li>\n<li>Autosave revisions for changes in the Customizer.</li>\n<li>About page styling.</li>\n</ul>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.9 and update your plugin’s <em>Tested up to</em> version in the readme to 4.9. 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. Please see the summative <a href=\"https://make.wordpress.org/core/2017/11/07/wordpress-4-9-field-guide/\">field guide</a> to the 4.9 <a href=\"https://make.wordpress.org/core/tag/4.9+dev-notes/\">developer notes</a> on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p><em>Didn’t squash them all <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f41b.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></em><br />\n<em>We want to release Tuesday</em><br />\n<em>New features not bugs <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/2728.png\" alt=\"✨\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></em></p>\n<p>Thanks for your continued help testing out the latest versions of WordPress.</p>\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:\"5184\";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: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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"WordPress 4.9 Release Candidate 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:69:\"https://wordpress.org/news/2017/11/wordpress-4-9-release-candidate-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:\"Tue, 07 Nov 2017 05:33: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:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5047\";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:342:\"The second release candidate for WordPress 4.9 is now available. A 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.9 on Tuesday, November 14 (just over one week from now), 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:12:\"Weston Ruter\";s: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:3424:\"<p>The second release candidate for WordPress 4.9 is now available.</p>\n<p>A 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.9 on <strong>Tuesday, November 14</strong> (just over <em>one week</em> from now), but we need your help to get there. If you haven’t tested 4.9 yet, now is the time!</p>\n<p>To test WordPress 4.9, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.9-RC2.zip\">download the release candidate here</a> (zip).</p>\n<p>We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&mode=stop_on_copy&rev=42124&stop_rev=42049&limit=100&sfp_email=&sfph_mail=\">just over 20 changes</a> since releasing RC 1 last week. For more details about what’s new in version 4.9, check out the <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-3/\">Beta 3</a>, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-4/\">Beta 4</a>, and <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-release-candidate/\">RC1</a> blog posts. Specific areas to test in RC2:</p>\n<ul>\n<li>Theme installation in the Customizer.</li>\n<li>Scheduling changes for publishing in the Customizer.</li>\n<li>Switching themes with live preview in the Customizer.</li>\n</ul>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.9 and update your plugin’s <em>Tested up to</em> version in the readme to 4.9. 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. Please see the summative <a href=\"https://make.wordpress.org/core/2017/11/07/wordpress-4-9-field-guide/\">field guide</a> to the 4.9 <a href=\"https://make.wordpress.org/core/tag/4.9+dev-notes/\">developer notes</a> on the <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p>This week’s haiku is courtesy of <a href=\'https://profiles.wordpress.org/melchoyce/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>melchoyce</a>:</p>\n<p><em>We squashed all the bugs <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f41b.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></em><br />\n<em>But uh, if not, let us know</em><br />\n<em>Also, test your stuff</em></p>\n<p>Thanks for your continued help testing out the latest versions of WordPress.</p>\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:\"5047\";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:36:\"The Month in WordPress: October 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2017/11/the-month-in-wordpress-october-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 02 Nov 2017 12:02: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Month in 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:34:\"https://wordpress.org/news/?p=5044\";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:333:\"While this month we focused on building new features for WordPress core, we advanced other areas of the project too. Read on to learn more about what the WordPress project accomplished during the month of October. Take the 2017 Annual WordPress User Survey The annual WordPress User Survey is a great opportunity for you to […]\";s: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:\"Hugh Lashbrooke\";s: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:6180:\"\n<p>While this month we focused on building new features for WordPress core, we advanced other areas of the project too. Read on to learn more about what the WordPress project accomplished during the month of October.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Take the 2017 Annual WordPress User Survey</h2>\n\n\n\n<p>The annual WordPress User Survey is a great opportunity for you to provide your feedback about how you use WordPress. This year is no exception, as <a href=\"https://wordpressdotorg.polldaddy.com/s/wordpress-2017-survey\">the 2017 WordPress User Survey</a> is out now.</p>\n\n\n\n<p>The information collected in the survey is used to make informed decisions about improvements across the WordPress project, so your answers are incredibly valuable and help shape the future of the platform.</p>\n\n\n\n<h2>WordPress 4.8.3 Security Release</h2>\n\n\n\n<p>At the end of October, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-8-3-security-release/\">WordPress 4.8.3 was released</a> containing an important security fix for all previous versions of WordPress. If your WordPress installation has not updated automatically, please update it now to protect your site.</p>\n\n\n\n<p>This security issue was brought to light by a community member, so if you ever discover a security vulnerability in WordPress core, please do the same and <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">disclose it responsibly</a>.</p>\n\n\n\n<h2>WordPress 4.9 Nearly Ready for Release</h2>\n\n\n\n<p>WordPress 4.9 was in rapid development this month. We released four beta versions and published a <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-release-candidate/\">release candidate</a>. The target for shipping WordPress 4.9 is November 14 — just two short weeks away. With many new features, this is a hugely exciting release that improves WordPress’ user experience considerably. Notably, you’ll see <a href=\"https://make.wordpress.org/core/2017/10/24/a-new-themes-experience-in-the-customizer/\">improvements to the theme selection experience</a>, plenty of <a href=\"https://make.wordpress.org/core/2017/10/24/widget-improvements-in-wordpress-4-9/\">widget enhancements</a>, drastically improved <a href=\"https://make.wordpress.org/core/2017/10/22/code-editing-improvements-in-wordpress-4-9/\">code editing</a>, and much better <a href=\"https://make.wordpress.org/core/2017/10/15/improvements-for-roles-and-capabilities-in-4-9/\">user role management</a>.</p>\n\n\n\n<p>To get involved in building WordPress Core, jump into the #core channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>, and follow <a href=\"https://make.wordpress.org/core/\">the Core team blog</a>.</p>\n\n\n\n<h2>WordPress Charity Hackathons are Growing</h2>\n\n\n\n<p>For the last few years, the number of <a href=\"https://doaction.org/\">do_action series of WordPress charity hackathons</a> has grown around the world. What started as a community event to assist local nonprofit organizations, has become something many WordPress communities are replicating in an increasing number of cities.</p>\n\n\n\n<p>As of this month, do_action events have been hosted in Cape Town and Johannesburg, South Africa, Beirut, Lebanon, Austin, Texas, and Montréal, Canada. In addition, events are now scheduled for <a href=\"https://doaction.org/event/bristol-2018/\">Bristol, England</a> and <a href=\"https://doaction.org/event/zurich-2018/\">Zurich, Switzerland</a> in 2018.</p>\n\n\n\n<p>To get involved in organizing a do_action event locally, read <a href=\"https://make.wordpress.org/community/handbook/meetup-organizer/event-formats/do_action-charity-hackathon/\">the do_action organizer’s handbook</a> and join the #community-events channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a>.</p>\n\n\n\n<h2>Gutenberg Development Advances</h2>\n\n\n\n<p>While work steadily continues on Gutenberg — the new editor for WordPress core — one update from this month addresses one of the primary concerns that some people shared about the project.</p>\n\n\n\n<p>Up until <a href=\"https://make.wordpress.org/core/2017/10/24/whats-new-in-gutenberg-24th-october/\">the release on October 24</a>, Gutenberg did not support the meta boxes that so many WordPress content creators rely on. The new editor now has initial support for meta boxes as well as a host of other critical features for content creation in WordPress.</p>\n\n\n\n<p><a href=\"https://make.wordpress.org/test/handbook/call-for-testing/gutenberg-testing/\">Test out Gutenberg</a> right now and help develop it by joining the #core-editor channel in the <a href=\"https://make.wordpress.org/chat/\">Making WordPress Slack group</a> and following the <a href=\"https://make.wordpress.org/core/\">Core team blog</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul>\n <li>DonateWC, a new initiative that assists people in attending WordCamps, <a href=\"https://donatewc.org/wordcamp-stories/wordcamp-cape-town-experience/\">sponsored Trust Nhokovedzo from Harare, Zimbabwe</a> to speak at WordCamp Cape Town, South Africa this month.</li>\n <li><a href=\"https://woocommerce.com/2017/10/saying-goodbye-to-canvas/\">The popular Canvas theme was retired</a> this month to allow WooCommerce to focus on moving their products forward more effectively.</li>\n <li>The next installment of Camp Press, the WordPress community retreat event, will take place <a href=\"https://camp.press/event/iceland2018/\">in Iceland</a>.</li>\n <li>If you run a WordPress meetup group, but are struggling to find content for your events, the WordPress Marketing team <a href=\"https://make.wordpress.org/community/2017/10/04/supporting-for-meetups-with-low-content/\">has put together some ideas</a> to help.</li>\n <li><a href=\"https://2017.us.wordcamp.org/\">WordCamp US 2017</a> is just around the corner — there’s still time to grab your tickets.</li>\n</ul>\n\n\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></p>\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:\"5044\";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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"WordPress 4.8.3 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/10/wordpress-4-8-3-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:\"Tue, 31 Oct 2017 14:20: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: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.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:34:\"https://wordpress.org/news/?p=5035\";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:\"WordPress 4.8.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.8.2 and earlier are affected by an issue where $wpdb->prepare() can create unexpected and unsafe queries leading to potential SQL injection (SQLi). WordPress core is not directly vulnerable to […]\";s: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:\"Gary Pendergast\";s: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:1337:\"<p>WordPress 4.8.3 is now available. This is a <strong>security release</strong> for all previous versions and we strongly encourage you to update your sites immediately.</p>\n<p>WordPress versions 4.8.2 and earlier are affected by an issue where <code>$wpdb->prepare()</code> can create unexpected and unsafe queries leading to potential SQL injection (SQLi). 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 <a href=\"https://twitter.com/ircmaxell\">Anthony Ferrara</a>.</p>\n<p>This release includes a change in behaviour for the <code>esc_sql()</code> function. Most developers will not be affected by this change, you can read more details in the <a href=\"https://make.wordpress.org/core/2017/10/31/changed-behaviour-of-esc_sql-in-wordpress-4-8-3/\">developer note</a>.</p>\n<p>Thank you to the reporter of this issue for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible disclosure</a>.</p>\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.8.3</a> 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.8.3.</p>\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:\"5035\";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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"WordPress 4.9 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/2017/10/wordpress-4-9-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:\"Tue, 31 Oct 2017 04:42: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:8:\"category\";a:2:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4963\";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:\"The release candidate for WordPress 4.9 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.9 on Tuesday, November 14, but we need your help to get there. If you haven’t tested 4.9 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:10:\"Mel Choyce\";s: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:3275:\"<p>The release candidate for WordPress 4.9 is now available.</p>\n<p>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.9 on <strong>Tuesday, November 14</strong>, but we need your help to get there. If you haven’t tested 4.9 yet, now is the time!</p>\n<p>To test WordPress 4.9, you can use the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\">WordPress Beta Tester</a> plugin or you can <a href=\"https://wordpress.org/wordpress-4.9-RC1.zip\">download the release candidate here</a> (zip).</p>\n<p>We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/?action=stop_on_copy&mode=stop_on_copy&rev=42049&stop_rev=42022&limit=100&sfp_email=&sfph_mail=\">almost 30 changes</a> since releasing Beta 4 last week. For more details about what’s new in version 4.9, check out the <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-3/\">Beta 3</a>, and <a href=\"https://wordpress.org/news/2017/10/wordpress-4-9-beta-4/\">Beta 4</a> blog posts.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.9 and update your plugin’s <em>Tested up to</em> version in the readme to 4.9. 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 <a href=\"https://make.wordpress.org/core/\">core development blog</a>. In the meantime, you can review the <a href=\"https://make.wordpress.org/core/tag/4.9+dev-notes/\">developer notes for 4.9</a>.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p>This week’s haiku is courtesy of <a href=\'https://profiles.wordpress.org/pento/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>pento</a>:</p>\n<p><em>this is halloween <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f383.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></em><br />\n<em>scary, spooky, candy day <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f47b.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></em><br />\n<em>rc1 is sweet <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f36c.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></em></p>\n<p>Thanks for your continued help testing out the latest versions of WordPress.</p>\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:\"4963\";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:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"2017 WordPress Survey and WordCamp 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://wordpress.org/news/2017/10/2017-wordpress-survey-and-wordcamp-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:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 26 Oct 2017 20:59: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: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:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"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=5004\";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:332:\"It’s time for the annual WordPress user and developer survey! If you’re a WordPress user, developer, or business owner, then we want your feedback. Just like previous years, we’ll share the data at the upcoming WordCamp US (WCUS). It only takes a few minutes to fill out the survey, which will provide an overview of […]\";s: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:1083:\"\n<p>It’s time for the annual WordPress user and developer survey! If you’re a WordPress user, developer, or business owner, then we want your feedback. Just like previous years, we’ll share the data at the upcoming WordCamp US (WCUS).</p>\n\n\n\n<p>It only takes a few minutes to <a href=\"https://wordpressdotorg.polldaddy.com/s/wordpress-2017-survey\">fill out the survey</a>, which will provide an overview of how people use WordPress.</p>\n\n\n\n<figure class=\"wp-block-image alignright\" style=\"width:357px\"><a href=\"https://2017.us.wordcamp.org/tickets/\"><img src=\"https://i0.wp.com/wordpress.org/news/files/2017/10/header.jpg?resize=357%2C148&ssl=1\" data-recalc-dims=\"1\" /></a>\n <figcaption>WordCamp US in Nashville</figcaption>\n</figure>\n\n\n\n<p>The <a href=\"https://wordpress.tv/tag/state-of-the-word/\">State of the Word</a> includes stats and an overview of what's new in WordPress and is given every year at WCUS. Don't forget that tickets are available <a href=\"https://2017.us.wordcamp.org\">now</a> so you can join the excitement in Nashville this year!</p>\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:\"5004\";s: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:9:\"\n 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:4:\"\n 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:\"Wed, 03 Jan 2018 09:37:01 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, 22 Dec 2017 22:00:09 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}}s:5:\"build\";s:14:\"20170301171504\";}','no'),(6179,'_site_transient_timeout_available_translations','1514983340','no'),(6180,'_site_transient_available_translations','a:108:{s:2:\"af\";a:8:{s:8:\"language\";s:2:\"af\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-09 10:37:15\";s:12:\"english_name\";s:9:\"Afrikaans\";s:11:\"native_name\";s:9:\"Afrikaans\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.8/af.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"af\";i:2;s:3:\"afr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Gaan voort\";}}s:2:\"ar\";a:8:{s:8:\"language\";s:2:\"ar\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-01-26 15:49:08\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.8/ar.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:2;s:3:\"ara\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:3:\"ary\";a:8:{s:8:\"language\";s:3:\"ary\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:42:35\";s:12:\"english_name\";s:15:\"Moroccan Arabic\";s:11:\"native_name\";s:31:\"العربية المغربية\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.7/ary.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ar\";i:3;s:3:\"ary\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"المتابعة\";}}s:2:\"as\";a:8:{s:8:\"language\";s:2:\"as\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-22 18:59:07\";s:12:\"english_name\";s:8:\"Assamese\";s:11:\"native_name\";s:21:\"অসমীয়া\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/as.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"as\";i:2;s:3:\"asm\";i:3;s:3:\"asm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:2:\"az\";a:8:{s:8:\"language\";s:2:\"az\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-06 00:09:27\";s:12:\"english_name\";s:11:\"Azerbaijani\";s:11:\"native_name\";s:16:\"Azərbaycan dili\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/az.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:2;s:3:\"aze\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Davam\";}}s:3:\"azb\";a:8:{s:8:\"language\";s:3:\"azb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-12 20:34:31\";s:12:\"english_name\";s:17:\"South Azerbaijani\";s:11:\"native_name\";s:29:\"گؤنئی آذربایجان\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/azb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"az\";i:3;s:3:\"azb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:3:\"bel\";a:8:{s:8:\"language\";s:3:\"bel\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-08 13:11:55\";s:12:\"english_name\";s:10:\"Belarusian\";s:11:\"native_name\";s:29:\"Беларуская мова\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.8/bel.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"be\";i:2;s:3:\"bel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Працягнуць\";}}s:5:\"bg_BG\";a:8:{s:8:\"language\";s:5:\"bg_BG\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-12 13:02:53\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/bg_BG.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bg\";i:2;s:3:\"bul\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:22:\"Продължение\";}}s:5:\"bn_BD\";a:8:{s:8:\"language\";s:5:\"bn_BD\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-04 16:58:43\";s:12:\"english_name\";s:7:\"Bengali\";s:11:\"native_name\";s:15:\"বাংলা\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/bn_BD.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"bn\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:23:\"এগিয়ে চল.\";}}s:2:\"bo\";a:8:{s:8:\"language\";s:2:\"bo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-05 09:44:12\";s:12:\"english_name\";s:7:\"Tibetan\";s:11:\"native_name\";s:21:\"བོད་ཡིག\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/bo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bo\";i:2;s:3:\"tib\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"མུ་མཐུད།\";}}s:5:\"bs_BA\";a:8:{s:8:\"language\";s:5:\"bs_BA\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-04 20:20:28\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:8:\"Bosanski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/bs_BA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"bs\";i:2;s:3:\"bos\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:2:\"ca\";a:8:{s:8:\"language\";s:2:\"ca\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-28 05:42:38\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.8/ca.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ca\";i:2;s:3:\"cat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:3:\"ceb\";a:8:{s:8:\"language\";s:3:\"ceb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-02 17:25:51\";s:12:\"english_name\";s:7:\"Cebuano\";s:11:\"native_name\";s:7:\"Cebuano\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ceb.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"ceb\";i:3;s:3:\"ceb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Padayun\";}}s:5:\"cs_CZ\";a:8:{s:8:\"language\";s:5:\"cs_CZ\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 08:46:26\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/cs_CZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cs\";i:2;s:3:\"ces\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:11:\"Pokračovat\";}}s:2:\"cy\";a:8:{s:8:\"language\";s:2:\"cy\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-13 20:38:23\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.8/cy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"cy\";i:2;s:3:\"cym\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Parhau\";}}s:5:\"da_DK\";a:8:{s:8:\"language\";s:5:\"da_DK\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-04-05 09:50:06\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/da_DK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"da\";i:2;s:3:\"dan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Fortsæt\";}}s:12:\"de_DE_formal\";a:8:{s:8:\"language\";s:12:\"de_DE_formal\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-05 15:33:29\";s:12:\"english_name\";s:15:\"German (Formal)\";s:11:\"native_name\";s:13:\"Deutsch (Sie)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.7.8/de_DE_formal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:14:\"de_CH_informal\";a:8:{s:8:\"language\";s:14:\"de_CH_informal\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:39:59\";s:12:\"english_name\";s:30:\"German (Switzerland, Informal)\";s:11:\"native_name\";s:21:\"Deutsch (Schweiz, Du)\";s:7:\"package\";s:73:\"https://downloads.wordpress.org/translation/core/4.7.7/de_CH_informal.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Weiter\";}}s:5:\"de_CH\";a:8:{s:8:\"language\";s:5:\"de_CH\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:40:03\";s:12:\"english_name\";s:20:\"German (Switzerland)\";s:11:\"native_name\";s:17:\"Deutsch (Schweiz)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/de_CH.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:5:\"de_DE\";a:8:{s:8:\"language\";s:5:\"de_DE\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-05 15:33:56\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/de_DE.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"de\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Fortfahren\";}}s:3:\"dzo\";a:8:{s:8:\"language\";s:3:\"dzo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-06-29 08:59:03\";s:12:\"english_name\";s:8:\"Dzongkha\";s:11:\"native_name\";s:18:\"རྫོང་ཁ\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/dzo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"dz\";i:2;s:3:\"dzo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:2:\"el\";a:8:{s:8:\"language\";s:2:\"el\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-10-25 16:31:58\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικά\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.8/el.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"el\";i:2;s:3:\"ell\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Συνέχεια\";}}s:5:\"en_GB\";a:8:{s:8:\"language\";s:5:\"en_GB\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-06 02:09:51\";s:12:\"english_name\";s:12:\"English (UK)\";s:11:\"native_name\";s:12:\"English (UK)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/en_GB.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_ZA\";a:8:{s:8:\"language\";s:5:\"en_ZA\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:53:43\";s:12:\"english_name\";s:22:\"English (South Africa)\";s:11:\"native_name\";s:22:\"English (South Africa)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/en_ZA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_NZ\";a:8:{s:8:\"language\";s:5:\"en_NZ\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-06 08:22:20\";s:12:\"english_name\";s:21:\"English (New Zealand)\";s:11:\"native_name\";s:21:\"English (New Zealand)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/en_NZ.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_CA\";a:8:{s:8:\"language\";s:5:\"en_CA\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-06 21:51:31\";s:12:\"english_name\";s:16:\"English (Canada)\";s:11:\"native_name\";s:16:\"English (Canada)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/en_CA.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:5:\"en_AU\";a:8:{s:8:\"language\";s:5:\"en_AU\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-06 04:53:59\";s:12:\"english_name\";s:19:\"English (Australia)\";s:11:\"native_name\";s:19:\"English (Australia)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/en_AU.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"en\";i:2;s:3:\"eng\";i:3;s:3:\"eng\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continue\";}}s:2:\"eo\";a:8:{s:8:\"language\";s:2:\"eo\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-09 01:14:15\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanto\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.8/eo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eo\";i:2;s:3:\"epo\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Daŭrigi\";}}s:5:\"es_GT\";a:8:{s:8:\"language\";s:5:\"es_GT\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-15 14:57:21\";s:12:\"english_name\";s:19:\"Spanish (Guatemala)\";s:11:\"native_name\";s:21:\"Español de Guatemala\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/es_GT.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_ES\";a:8:{s:8:\"language\";s:5:\"es_ES\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-06 08:57:13\";s:12:\"english_name\";s:15:\"Spanish (Spain)\";s:11:\"native_name\";s:8:\"Español\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/es_ES.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CO\";a:8:{s:8:\"language\";s:5:\"es_CO\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:54:37\";s:12:\"english_name\";s:18:\"Spanish (Colombia)\";s:11:\"native_name\";s:20:\"Español de Colombia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/es_CO.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_MX\";a:8:{s:8:\"language\";s:5:\"es_MX\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:42:28\";s:12:\"english_name\";s:16:\"Spanish (Mexico)\";s:11:\"native_name\";s:19:\"Español de México\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/es_MX.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_VE\";a:8:{s:8:\"language\";s:5:\"es_VE\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-04-23 23:02:31\";s:12:\"english_name\";s:19:\"Spanish (Venezuela)\";s:11:\"native_name\";s:21:\"Español de Venezuela\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/es_VE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_AR\";a:8:{s:8:\"language\";s:5:\"es_AR\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-16 03:21:37\";s:12:\"english_name\";s:19:\"Spanish (Argentina)\";s:11:\"native_name\";s:21:\"Español de Argentina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/es_AR.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_PE\";a:8:{s:8:\"language\";s:5:\"es_PE\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-09 09:36:22\";s:12:\"english_name\";s:14:\"Spanish (Peru)\";s:11:\"native_name\";s:17:\"Español de Perú\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_PE.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"es_CL\";a:8:{s:8:\"language\";s:5:\"es_CL\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-28 20:09:49\";s:12:\"english_name\";s:15:\"Spanish (Chile)\";s:11:\"native_name\";s:17:\"Español de Chile\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/es_CL.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"es\";i:2;s:3:\"spa\";i:3;s:3:\"spa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"et\";a:8:{s:8:\"language\";s:2:\"et\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 16:37:11\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/et.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"et\";i:2;s:3:\"est\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Jätka\";}}s:2:\"eu\";a:8:{s:8:\"language\";s:2:\"eu\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-05 15:31:54\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.8/eu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"eu\";i:2;s:3:\"eus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Jarraitu\";}}s:5:\"fa_IR\";a:8:{s:8:\"language\";s:5:\"fa_IR\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-02-02 15:21:03\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/fa_IR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fa\";i:2;s:3:\"fas\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:2:\"fi\";a:8:{s:8:\"language\";s:2:\"fi\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:42:25\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.7/fi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fi\";i:2;s:3:\"fin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Jatka\";}}s:5:\"fr_CA\";a:8:{s:8:\"language\";s:5:\"fr_CA\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-18 16:11:00\";s:12:\"english_name\";s:15:\"French (Canada)\";s:11:\"native_name\";s:19:\"Français du Canada\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/fr_CA.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_BE\";a:8:{s:8:\"language\";s:5:\"fr_BE\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:40:32\";s:12:\"english_name\";s:16:\"French (Belgium)\";s:11:\"native_name\";s:21:\"Français de Belgique\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/fr_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"fr\";i:2;s:3:\"fra\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:5:\"fr_FR\";a:8:{s:8:\"language\";s:5:\"fr_FR\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-05 14:22:07\";s:12:\"english_name\";s:15:\"French (France)\";s:11:\"native_name\";s:9:\"Français\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/fr_FR.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"fr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"gd\";a:8:{s:8:\"language\";s:2:\"gd\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-08-23 17:41:37\";s:12:\"english_name\";s:15:\"Scottish Gaelic\";s:11:\"native_name\";s:9:\"Gàidhlig\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/gd.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"gd\";i:2;s:3:\"gla\";i:3;s:3:\"gla\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"Lean air adhart\";}}s:5:\"gl_ES\";a:8:{s:8:\"language\";s:5:\"gl_ES\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-06 16:55:32\";s:12:\"english_name\";s:8:\"Galician\";s:11:\"native_name\";s:6:\"Galego\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/gl_ES.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gl\";i:2;s:3:\"glg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:2:\"gu\";a:8:{s:8:\"language\";s:2:\"gu\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-13 21:15:33\";s:12:\"english_name\";s:8:\"Gujarati\";s:11:\"native_name\";s:21:\"ગુજરાતી\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.8/gu.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"gu\";i:2;s:3:\"guj\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"ચાલુ રાખવું\";}}s:3:\"haz\";a:8:{s:8:\"language\";s:3:\"haz\";s:7:\"version\";s:5:\"4.4.2\";s:7:\"updated\";s:19:\"2015-12-05 00:59:09\";s:12:\"english_name\";s:8:\"Hazaragi\";s:11:\"native_name\";s:15:\"هزاره گی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.4.2/haz.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"haz\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"ادامه\";}}s:5:\"he_IL\";a:8:{s:8:\"language\";s:5:\"he_IL\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-12-06 13:22:52\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:16:\"עִבְרִית\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/he_IL.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"he\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"להמשיך\";}}s:5:\"hi_IN\";a:8:{s:8:\"language\";s:5:\"hi_IN\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-24 00:18:40\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/hi_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hi\";i:2;s:3:\"hin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"जारी\";}}s:2:\"hr\";a:8:{s:8:\"language\";s:2:\"hr\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-07 15:10:37\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.8/hr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hr\";i:2;s:3:\"hrv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Nastavi\";}}s:5:\"hu_HU\";a:8:{s:8:\"language\";s:5:\"hu_HU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:39\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/hu_HU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hu\";i:2;s:3:\"hun\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:7:\"Tovább\";}}s:2:\"hy\";a:8:{s:8:\"language\";s:2:\"hy\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-03 16:21:10\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"Հայերեն\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/hy.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"hy\";i:2;s:3:\"hye\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Շարունակել\";}}s:5:\"id_ID\";a:8:{s:8:\"language\";s:5:\"id_ID\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-05-02 14:01:52\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:16:\"Bahasa Indonesia\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/id_ID.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"id\";i:2;s:3:\"ind\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Lanjutkan\";}}s:5:\"is_IS\";a:8:{s:8:\"language\";s:5:\"is_IS\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-04-13 13:55:54\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/is_IS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"is\";i:2;s:3:\"isl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Áfram\";}}s:5:\"it_IT\";a:8:{s:8:\"language\";s:5:\"it_IT\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-07 11:16:40\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/it_IT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"it\";i:2;s:3:\"ita\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Continua\";}}s:2:\"ja\";a:8:{s:8:\"language\";s:2:\"ja\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-06-03 15:15:18\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.7/ja.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"ja\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"続ける\";}}s:5:\"ka_GE\";a:8:{s:8:\"language\";s:5:\"ka_GE\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-04-05 06:17:00\";s:12:\"english_name\";s:8:\"Georgian\";s:11:\"native_name\";s:21:\"ქართული\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/ka_GE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ka\";i:2;s:3:\"kat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"გაგრძელება\";}}s:3:\"kab\";a:8:{s:8:\"language\";s:3:\"kab\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:39:13\";s:12:\"english_name\";s:6:\"Kabyle\";s:11:\"native_name\";s:9:\"Taqbaylit\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/kab.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"kab\";i:3;s:3:\"kab\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuer\";}}s:2:\"km\";a:8:{s:8:\"language\";s:2:\"km\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-07 02:07:59\";s:12:\"english_name\";s:5:\"Khmer\";s:11:\"native_name\";s:27:\"ភាសាខ្មែរ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/km.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"km\";i:2;s:3:\"khm\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"បន្ត\";}}s:5:\"ko_KR\";a:8:{s:8:\"language\";s:5:\"ko_KR\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-10 13:55:34\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/ko_KR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ko\";i:2;s:3:\"kor\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"계속\";}}s:3:\"ckb\";a:8:{s:8:\"language\";s:3:\"ckb\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:25\";s:12:\"english_name\";s:16:\"Kurdish (Sorani)\";s:11:\"native_name\";s:13:\"كوردی\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/ckb.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ku\";i:3;s:3:\"ckb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"بهردهوام به\";}}s:2:\"lo\";a:8:{s:8:\"language\";s:2:\"lo\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 09:59:23\";s:12:\"english_name\";s:3:\"Lao\";s:11:\"native_name\";s:21:\"ພາສາລາວ\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/lo.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lo\";i:2;s:3:\"lao\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"ຕໍ່\";}}s:5:\"lt_LT\";a:8:{s:8:\"language\";s:5:\"lt_LT\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-15 19:48:50\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:15:\"Lietuvių kalba\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/lt_LT.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lt\";i:2;s:3:\"lit\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Tęsti\";}}s:2:\"lv\";a:8:{s:8:\"language\";s:2:\"lv\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-03-17 20:40:40\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:16:\"Latviešu valoda\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.7/lv.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"lv\";i:2;s:3:\"lav\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Turpināt\";}}s:5:\"mk_MK\";a:8:{s:8:\"language\";s:5:\"mk_MK\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:54:41\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:31:\"Македонски јазик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/mk_MK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mk\";i:2;s:3:\"mkd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:16:\"Продолжи\";}}s:5:\"ml_IN\";a:8:{s:8:\"language\";s:5:\"ml_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:43:32\";s:12:\"english_name\";s:9:\"Malayalam\";s:11:\"native_name\";s:18:\"മലയാളം\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ml_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ml\";i:2;s:3:\"mal\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:18:\"തുടരുക\";}}s:2:\"mn\";a:8:{s:8:\"language\";s:2:\"mn\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-12 07:29:35\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:12:\"Монгол\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/mn.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mn\";i:2;s:3:\"mon\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"Үргэлжлүүлэх\";}}s:2:\"mr\";a:8:{s:8:\"language\";s:2:\"mr\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-03-24 06:52:11\";s:12:\"english_name\";s:7:\"Marathi\";s:11:\"native_name\";s:15:\"मराठी\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.8/mr.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"mr\";i:2;s:3:\"mar\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"सुरु ठेवा\";}}s:5:\"ms_MY\";a:8:{s:8:\"language\";s:5:\"ms_MY\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-15 14:11:50\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:13:\"Bahasa Melayu\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/ms_MY.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ms\";i:2;s:3:\"msa\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Teruskan\";}}s:5:\"my_MM\";a:8:{s:8:\"language\";s:5:\"my_MM\";s:7:\"version\";s:6:\"4.1.20\";s:7:\"updated\";s:19:\"2015-03-26 15:57:42\";s:12:\"english_name\";s:17:\"Myanmar (Burmese)\";s:11:\"native_name\";s:15:\"ဗမာစာ\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/translation/core/4.1.20/my_MM.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"my\";i:2;s:3:\"mya\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:54:\"ဆက်လက်လုပ်ေဆာင်ပါ။\";}}s:5:\"nb_NO\";a:8:{s:8:\"language\";s:5:\"nb_NO\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:42:31\";s:12:\"english_name\";s:19:\"Norwegian (Bokmål)\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/nb_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nb\";i:2;s:3:\"nob\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Fortsett\";}}s:5:\"ne_NP\";a:8:{s:8:\"language\";s:5:\"ne_NP\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-06-02 10:59:56\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:18:\"नेपाली\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/ne_NP.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ne\";i:2;s:3:\"nep\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:31:\"जारीराख्नु \";}}s:5:\"nl_NL\";a:8:{s:8:\"language\";s:5:\"nl_NL\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-15 12:00:12\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/nl_NL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nl_BE\";a:8:{s:8:\"language\";s:5:\"nl_BE\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-10-26 11:43:42\";s:12:\"english_name\";s:15:\"Dutch (Belgium)\";s:11:\"native_name\";s:20:\"Nederlands (België)\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/nl_BE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:12:\"nl_NL_formal\";a:8:{s:8:\"language\";s:12:\"nl_NL_formal\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-15 12:01:05\";s:12:\"english_name\";s:14:\"Dutch (Formal)\";s:11:\"native_name\";s:20:\"Nederlands (Formeel)\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/translation/core/4.7.8/nl_NL_formal.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nl\";i:2;s:3:\"nld\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"Doorgaan\";}}s:5:\"nn_NO\";a:8:{s:8:\"language\";s:5:\"nn_NO\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-01-26 15:40:57\";s:12:\"english_name\";s:19:\"Norwegian (Nynorsk)\";s:11:\"native_name\";s:13:\"Norsk nynorsk\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/nn_NO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"nn\";i:2;s:3:\"nno\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Hald fram\";}}s:3:\"oci\";a:8:{s:8:\"language\";s:3:\"oci\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-02 13:47:38\";s:12:\"english_name\";s:7:\"Occitan\";s:11:\"native_name\";s:7:\"Occitan\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/oci.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"oc\";i:2;s:3:\"oci\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Contunhar\";}}s:5:\"pa_IN\";a:8:{s:8:\"language\";s:5:\"pa_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-16 05:19:43\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:18:\"ਪੰਜਾਬੀ\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/pa_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pa\";i:2;s:3:\"pan\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:25:\"ਜਾਰੀ ਰੱਖੋ\";}}s:5:\"pl_PL\";a:8:{s:8:\"language\";s:5:\"pl_PL\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-12-02 15:20:38\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"Polski\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/pl_PL.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pl\";i:2;s:3:\"pol\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Kontynuuj\";}}s:2:\"ps\";a:8:{s:8:\"language\";s:2:\"ps\";s:7:\"version\";s:6:\"4.1.20\";s:7:\"updated\";s:19:\"2015-03-29 22:19:48\";s:12:\"english_name\";s:6:\"Pashto\";s:11:\"native_name\";s:8:\"پښتو\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.1.20/ps.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ps\";i:2;s:3:\"pus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:8:\"دوام\";}}s:5:\"pt_BR\";a:8:{s:8:\"language\";s:5:\"pt_BR\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-06 13:08:33\";s:12:\"english_name\";s:19:\"Portuguese (Brazil)\";s:11:\"native_name\";s:20:\"Português do Brasil\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/pt_BR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"pt\";i:2;s:3:\"por\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:5:\"pt_PT\";a:8:{s:8:\"language\";s:5:\"pt_PT\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-12-19 23:09:17\";s:12:\"english_name\";s:21:\"Portuguese (Portugal)\";s:11:\"native_name\";s:10:\"Português\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/pt_PT.zip\";s:3:\"iso\";a:1:{i:1;s:2:\"pt\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuar\";}}s:3:\"rhg\";a:8:{s:8:\"language\";s:3:\"rhg\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-16 13:03:18\";s:12:\"english_name\";s:8:\"Rohingya\";s:11:\"native_name\";s:8:\"Ruáinga\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/rhg.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"rhg\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:5:\"ro_RO\";a:8:{s:8:\"language\";s:5:\"ro_RO\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-12-15 17:03:07\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/ro_RO.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ro\";i:2;s:3:\"ron\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Continuă\";}}s:5:\"ru_RU\";a:8:{s:8:\"language\";s:5:\"ru_RU\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-05 14:26:51\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/ru_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ru\";i:2;s:3:\"rus\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:3:\"sah\";a:8:{s:8:\"language\";s:3:\"sah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-21 02:06:41\";s:12:\"english_name\";s:5:\"Sakha\";s:11:\"native_name\";s:14:\"Сахалыы\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/sah.zip\";s:3:\"iso\";a:2:{i:2;s:3:\"sah\";i:3;s:3:\"sah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Салҕаа\";}}s:5:\"si_LK\";a:8:{s:8:\"language\";s:5:\"si_LK\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-12 06:00:52\";s:12:\"english_name\";s:7:\"Sinhala\";s:11:\"native_name\";s:15:\"සිංහල\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/si_LK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"si\";i:2;s:3:\"sin\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:44:\"දිගටම කරගෙන යන්න\";}}s:5:\"sk_SK\";a:8:{s:8:\"language\";s:5:\"sk_SK\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-09-08 11:22:11\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/sk_SK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sk\";i:2;s:3:\"slk\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Pokračovať\";}}s:5:\"sl_SI\";a:8:{s:8:\"language\";s:5:\"sl_SI\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-16 18:46:53\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/sl_SI.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sl\";i:2;s:3:\"slv\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Nadaljujte\";}}s:2:\"sq\";a:8:{s:8:\"language\";s:2:\"sq\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-06 12:08:03\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:5:\"Shqip\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.8/sq.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sq\";i:2;s:3:\"sqi\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"Vazhdo\";}}s:5:\"sr_RS\";a:8:{s:8:\"language\";s:5:\"sr_RS\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-29 20:58:47\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:23:\"Српски језик\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/sr_RS.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sr\";i:2;s:3:\"srp\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:14:\"Настави\";}}s:5:\"sv_SE\";a:8:{s:8:\"language\";s:5:\"sv_SE\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-05 15:02:59\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/sv_SE.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"sv\";i:2;s:3:\"swe\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:9:\"Fortsätt\";}}s:3:\"szl\";a:8:{s:8:\"language\";s:3:\"szl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-09-24 19:58:14\";s:12:\"english_name\";s:8:\"Silesian\";s:11:\"native_name\";s:17:\"Ślōnskŏ gŏdka\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/szl.zip\";s:3:\"iso\";a:1:{i:3;s:3:\"szl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:13:\"Kōntynuować\";}}s:5:\"ta_IN\";a:8:{s:8:\"language\";s:5:\"ta_IN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-27 03:22:47\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:15:\"தமிழ்\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ta_IN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ta\";i:2;s:3:\"tam\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:24:\"தொடரவும்\";}}s:2:\"te\";a:8:{s:8:\"language\";s:2:\"te\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:47:39\";s:12:\"english_name\";s:6:\"Telugu\";s:11:\"native_name\";s:18:\"తెలుగు\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/te.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"te\";i:2;s:3:\"tel\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:30:\"కొనసాగించు\";}}s:2:\"th\";a:8:{s:8:\"language\";s:2:\"th\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2017-01-26 15:48:43\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/th.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"th\";i:2;s:3:\"tha\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:15:\"ต่อไป\";}}s:2:\"tl\";a:8:{s:8:\"language\";s:2:\"tl\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-30 02:38:08\";s:12:\"english_name\";s:7:\"Tagalog\";s:11:\"native_name\";s:7:\"Tagalog\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.2/tl.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tl\";i:2;s:3:\"tgl\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:10:\"Magpatuloy\";}}s:5:\"tr_TR\";a:8:{s:8:\"language\";s:5:\"tr_TR\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-13 22:08:24\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/tr_TR.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tr\";i:2;s:3:\"tur\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:5:\"Devam\";}}s:5:\"tt_RU\";a:8:{s:8:\"language\";s:5:\"tt_RU\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-11-20 20:20:50\";s:12:\"english_name\";s:5:\"Tatar\";s:11:\"native_name\";s:19:\"Татар теле\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/tt_RU.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"tt\";i:2;s:3:\"tat\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:17:\"дәвам итү\";}}s:3:\"tah\";a:8:{s:8:\"language\";s:3:\"tah\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-03-06 18:39:39\";s:12:\"english_name\";s:8:\"Tahitian\";s:11:\"native_name\";s:10:\"Reo Tahiti\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/translation/core/4.7.2/tah.zip\";s:3:\"iso\";a:3:{i:1;s:2:\"ty\";i:2;s:3:\"tah\";i:3;s:3:\"tah\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:0:\"\";}}s:5:\"ug_CN\";a:8:{s:8:\"language\";s:5:\"ug_CN\";s:7:\"version\";s:5:\"4.7.2\";s:7:\"updated\";s:19:\"2016-12-05 09:23:39\";s:12:\"english_name\";s:6:\"Uighur\";s:11:\"native_name\";s:9:\"Uyƣurqə\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.2/ug_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ug\";i:2;s:3:\"uig\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:26:\"داۋاملاشتۇرۇش\";}}s:2:\"uk\";a:8:{s:8:\"language\";s:2:\"uk\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-05-17 03:13:31\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:20:\"Українська\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.7/uk.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uk\";i:2;s:3:\"ukr\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продовжити\";}}s:2:\"ur\";a:8:{s:8:\"language\";s:2:\"ur\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-06 09:16:03\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:8:\"اردو\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.8/ur.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"ur\";i:2;s:3:\"urd\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:19:\"جاری رکھیں\";}}s:5:\"uz_UZ\";a:8:{s:8:\"language\";s:5:\"uz_UZ\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-05-13 09:55:38\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:11:\"O‘zbekcha\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/uz_UZ.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"uz\";i:2;s:3:\"uzb\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:20:\"Продолжить\";}}s:2:\"vi\";a:8:{s:8:\"language\";s:2:\"vi\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-07-02 09:07:47\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/translation/core/4.7.7/vi.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"vi\";i:2;s:3:\"vie\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:12:\"Tiếp tục\";}}s:5:\"zh_CN\";a:8:{s:8:\"language\";s:5:\"zh_CN\";s:7:\"version\";s:5:\"4.7.8\";s:7:\"updated\";s:19:\"2017-11-15 21:18:33\";s:12:\"english_name\";s:15:\"Chinese (China)\";s:11:\"native_name\";s:12:\"简体中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.8/zh_CN.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"继续\";}}s:5:\"zh_TW\";a:8:{s:8:\"language\";s:5:\"zh_TW\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-05-08 04:16:08\";s:12:\"english_name\";s:16:\"Chinese (Taiwan)\";s:11:\"native_name\";s:12:\"繁體中文\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/zh_TW.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}s:5:\"zh_HK\";a:8:{s:8:\"language\";s:5:\"zh_HK\";s:7:\"version\";s:5:\"4.7.7\";s:7:\"updated\";s:19:\"2017-09-21 17:42:56\";s:12:\"english_name\";s:19:\"Chinese (Hong Kong)\";s:11:\"native_name\";s:16:\"香港中文版 \";s:7:\"package\";s:64:\"https://downloads.wordpress.org/translation/core/4.7.7/zh_HK.zip\";s:3:\"iso\";a:2:{i:1;s:2:\"zh\";i:2;s:3:\"zho\";}s:7:\"strings\";a:1:{s:8:\"continue\";s:6:\"繼續\";}}}','no'),(6167,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1515015423','no'),(6168,'_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:19:\"Matt: Books in 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:22:\"https://ma.tt/?p=47744\";s:7:\"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:36:\"https://ma.tt/2017/12/books-in-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:4679:\"<p>Here's what I ended up reading this year, in roughly chronological finishing order. (I usually have 3-4 books going on at once.)</p>\n\n\n\n<ul>\n <li><a href=\"https://www.amazon.com/dp/B01HSMRWNU/?tag=photomatt08-20\">Tools of Titans</a> by Tim Ferriss.</li>\n <li><a href=\"https://www.amazon.com/dp/B00JSRQSJS/?tag=photomatt08-20\">The Art of Stillness</a> by Pico Ayer.</li>\n <li><a href=\"https://www.amazon.com/dp/B0162WIRKY/?tag=photomatt08-20\">Out of Your Mind</a> by Alan Watts (audiobook, really a series of lectures).</li>\n <li><a href=\"https://www.amazon.com/dp/B007V3FHRU/?tag=photomatt08-20\">Book of Five Rings</a> by Miyamoto Mushashi (audiobook).</li>\n <li><a href=\"https://smile.amazon.com/dp/B01KKNM8UQ/?tag=photomatt08-20\">Do Not Say We Have Nothing</a> by Madeleine Thien.</li>\n <li><a href=\"https://www.amazon.com/dp/B01912QC5Y/?tag=photomatt08-20\">The Best American Short Stories 2016</a> edited by Junot Diaz.</li>\n <li><a href=\"https://www.amazon.com/dp/B00CVNLK3K/?tag=photomatt08-20\">Feynman</a> by Jim Ottaviani.</li>\n <li><a href=\"https://www.amazon.com/dp/8129137704/?tag=photomatt08-20\">My Gita</a> by Devdutt Pattanaik.</li>\n <li><a href=\"https://www.amazon.com/dp/B00DTO6LZ2/?tag=photomatt08-20\">From Plato to Post-modernism: Understanding the Essence of Literature and the Role of the Author</a> by Louis Markos (another lecture series).</li>\n <li><a href=\"https://www.amazon.com/dp/B01LZOV6R3/?tag=photomatt08-20\">The Rules Do Not Apply</a> by Ariel Levy.</li>\n <li><a href=\"https://www.amazon.com/dp/B01BSNQJDY/?tag=photomatt08-20\">The Story of a Brief Marriage</a> by Anuk Arudpragasam.</li>\n <li><a href=\"https://www.amazon.com/dp/B00DPM7TIG/?tag=photomatt08-20\">All the Light We Cannot See</a> by Anthony Doerr.</li>\n <li><a href=\"https://www.amazon.com/dp/B01NAG34EH/?tag=photomatt08-20\">Ikigai: The Japanese Secret to a Long and Happy Life</a> by Héctor García and Francesc Miralles.</li>\n <li><a href=\"https://www.amazon.com/dp/B00V3CE1M2/?tag=photomatt08-20\">When Hitler Took Cocaine and Lenin Lost His Brain: History's Unknown Chapters</a> by Giles Milton.</li>\n <li><a href=\"https://www.amazon.com/dp/184861098X/?tag=photomatt08-20\">Widow Basquiat: A Love Story</a> by Jennifer Clement.</li>\n <li><a href=\"https://www.amazon.com/dp/0812983068/?tag=photomatt08-20\">32 Yolks: From My Mother's Table to Working the Line</a> by Eric Ripert.</li>\n <li><a href=\"https://www.amazon.com/dp/B005LH08M2/?tag=photomatt08-20\">Identify: Basic Principles of Identity Design in the Iconic Trademarks</a> by Chermayeff & Geismar.</li>\n <li><a href=\"https://www.amazon.com/dp/B0024NP55G/?tag=photomatt08-20\">Catching the Big Fish: Meditation, Consciousness, and Creativity</a> by David Lynch (audiobook).</li>\n <li><a href=\"https://www.amazon.com/dp/B01HZFB3X0/?tag=photomatt08-20\">The Upstarts: How Uber, Airbnb, and the Killer Companies of the New Silicon Valley Are Changing the World</a> by Brad Stone.</li>\n <li><a href=\"https://www.amazon.com/dp/B01JKHTNCY/?tag=photomatt08-20\">The Leavers</a> by Lisa Ko.</li>\n <li><a href=\"https://www.amazon.com/dp/B002UZ5K4Y/?tag=photomatt08-20\">Wolf Hall</a> by Hilary Mantel.</li>\n <li><a href=\"https://www.amazon.com/dp/B013PKGT2O/?tag=photomatt08-20\">Girls on Fire</a> by Robin Wasserman.</li>\n <li><a href=\"https://www.amazon.com/dp/0195096444/?tag=photomatt08-20\">The Executive's Compass</a> by James O'Toole.</li>\n <li><a href=\"https://www.amazon.com/dp/B000SEGMAU/?tag=photomatt08-20\">Tuesdays with Morrie</a> by Mitch Albom.</li>\n <li><a href=\"https://www.amazon.com/dp/B06WLGYW83/?tag=photomatt08-20\">Dance of the Possible</a> by Scott Berkun.</li>\n <li><a href=\"https://subterraneanpress.com/magazine/fall_2010/fiction_the_lifecycle_of_software_objects_by_ted_chiang\">The Lifecycle of Software Objects</a> by Ted Chiang (short story).</li>\n <li><a href=\"https://www.amazon.com/dp/B071KJ7PTB/?tag=photomatt08-20\">Tribe of Mentors</a> by Tim Ferriss.</li>\n <li><a href=\"https://www.amazon.com/dp/B06XZSNB3W/?tag=photomatt08-20\">After On: A Novel of Silicon Valley</a> by Rob Reid.</li>\n <li><a href=\"https://www.amazon.com/gp/product/1501124021/?tag=photomatt08-20\">Principles</a> by Ray Dalio.</li>\n <li><a href=\"https://www.amazon.com/dp/B001H44FP4/?tag=photomatt08-20\">The Graveyard Book</a> by Neil Gaiman (audiobook).</li>\n <li><a href=\"https://www.amazon.com/dp/B0073X0GRO/?tag=photomatt08-20\">The Undiscovered Self: With Symbols and the Interpretation of Dreams</a> by C.G. Jung.</li>\n</ul>\n\n\n\n<p>A fairly random selection, and hopefully I can get a few more in next year.</p>\";s: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, 31 Dec 2017 23:19:10 +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: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:54:\"WPTavern: WPWeekly Episode 299 – 2017 Year in Review\";s:7:\"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=77120&preview=true&preview_id=77120\";s:7:\"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:61:\"https://wptavern.com/wpweekly-episode-299-2017-year-in-review\";s: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:19514:\"<p>In this episode, <a href=\"https://jjj.blog/\">John James Jacoby</a> and I review the WordPress news that made headlines on the Tavern in 2017. Among the stories we talk about more in-depth was Headway Themes, WP-CLI becoming a WordPress.org sanctioned project, and Disqus being acquired. We also talked about the future of comments in WordPress and what circumstances could lead to <a href=\"https://intensedebate.com/\">Intense Debate</a> being relevant again.</p>\n<p>Last but not least, we offered up our thoughts for the New Year. Shout out to <a href=\"https://gist.github.com/kevinwhoffman\">Kevin Hoffman</a> who submitted a five-star review for WP Weekly on <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">iTunes</a>. Thank you to all of the listeners who have and continue to listen to WordPress Weekly.</p>\n<h2>Stories Discussed:</h2>\n<h3>January</h3>\n<p><a href=\"https://wptavern.com/wp-cli-gets-official-wordpress-org-support\">WP-CLI Gets Official WordPress.org Support</a><br />\n<a href=\"https://wptavern.com/wordpress-4-7-1-fixes-eight-security-issues\">WordPress 4.7.1 Fixes Eight Security Issues</a><br />\n<a href=\"https://wptavern.com/automattic-releases-free-plugin-for-exporting-photos-from-lightroom-to-wordpress\">Automattic Releases Free Plugin for Exporting Photos from Lightroom to WordPress</a><br />\n<a href=\"https://wptavern.com/aaron-d-campbell-replaces-nikolay-bachiyski-as-wordpress-security-czar\">Aaron D. Campbell Replaces Nikolay Bachiyski as WordPress’ Security Czar</a><br />\n<a href=\"https://wptavern.com/postmatic-basic-rebrands-as-replyable-moves-two-way-email-commenting-to-saas-product\">Postmatic Basic Rebrands as Replyable, Moves Two-Way Email Commenting to SaaS Product</a><br />\n<a href=\"https://wptavern.com/jetpack-4-5-expands-monetization-with-wordads-integration\">Jetpack 4.5 Expands Monetization with WordAds Integration</a><br />\n<a href=\"https://wptavern.com/obama-foundation-launches-new-website-powered-by-wordpress\">Obama Foundation Launches New Website Powered by WordPress</a><br />\n<a href=\"https://wptavern.com/wix-removes-gpl-licensed-wordpress-code-from-mobile-app-forks-original-mit-library\">Wix Removes GPL-Licensed WordPress Code from Mobile App, Forks Original MIT Library</a></p>\n<h3>February</h3>\n<p><a href=\"https://wptavern.com/10up-unveils-elasticpress-io-elasticsearch-as-a-service-for-wordpress-sites\">10up Unveils ElasticPress.io: Elasticsearch as a Service for WordPress Sites</a><br />\n<a href=\"https://wptavern.com/matt-mullenweg-responds-to-security-rant-digital-signatures-for-wordpress-updates-are-important-but-not-a-priority\">Matt Mullenweg Responds to Security Rant: Digital Signatures for WordPress Updates Are Important but Not a Priority</a><br />\n<a href=\"https://wptavern.com/buddypress-2-8-boosts-minimum-php-requirement-adds-twenty-seventeen-companion-stylesheet\">BuddyPress 2.8 Boosts Minimum PHP Requirement, Adds Twenty Seventeen Companion Stylesheet</a><br />\n<a href=\"https://wptavern.com/wordpress-core-editor-team-publishes-ui-prototype-for-gutenberg-an-experimental-block-based-editor\">WordPress Core Editor Team Publishes UI Prototype for “Gutenberg,” an Experimental Block Based Editor</a><br />\n<a href=\"https://wptavern.com/zerif-lite-returns-to-wordpress-org-after-5-month-suspension-and-63-decline-in-revenue\">Zerif Lite Returns to WordPress.org after 5-Month Suspension and 63% Decline in Revenue</a><br />\n<a href=\"https://wptavern.com/cloudflare-memory-leak-exposes-private-data\">Cloudflare Memory Leak Exposes Private Data</a><br />\n<a href=\"https://wptavern.com/freemius-launches-insights-for-wordpress-themes\">Freemius Launches Insights for WordPress Themes</a><br />\n<a href=\"https://wptavern.com/hackerone-launches-free-community-edition-for-non-commercial-open-source-projects\">HackerOne Launches Free Community Edition for Non-Commercial Open Source Projects</a></p>\n<h3>March</h3>\n<p><a href=\"https://wptavern.com/web-annotations-are-now-a-w3c-standard-paving-the-way-for-decentralized-annotation-infrastructure\">Web Annotations are Now a W3C Standard, Paving the Way for Decentralized Annotation Infrastructure</a><br />\n<a href=\"https://wptavern.com/wordpress-4-7-3-patches-six-security-vulnerabilities-immediate-update-advised\">WordPress 4.7.3 Patches Six Security Vulnerabilities, Immediate Update Advised</a><br />\n<a href=\"https://wptavern.com/wefoster-launches-hosting-platform-catered-to-online-communities\">WeFoster Launches Hosting Platform Catered to Online Communities</a><br />\n<a href=\"https://wptavern.com/jetpack-introduces-theme-installation-from-wordpress-com-sparks-controversy-with-alternative-marketplace-for-free-themes\">Jetpack Introduces Theme Installation from WordPress.com, Sparks Controversy with Alternative Marketplace for Free Themes</a><br />\n<a href=\"https://wptavern.com/pressshack-forks-edit-flow-to-create-publishpress-aims-to-improve-multi-user-editorial-workflow-in-wordpress\">PressShack Forks Edit Flow to Create PublishPress, Aims to Improve Multi-User Editorial Workflow in WordPress</a><br />\n<a href=\"https://wptavern.com/yoast-seo-4-5-urges-users-to-upgrade-to-php-7\">Yoast SEO 4.5 Urges Users to Upgrade to PHP 7</a><br />\n<a href=\"https://wptavern.com/foxhound-is-the-first-rest-api-powered-theme-on-wordpress-org\">Foxhound Is the First REST API Powered Theme on WordPress.org</a><br />\n<a href=\"https://wptavern.com/godaddy-acquires-sucuri\">GoDaddy Acquires Sucuri</a><br />\n<a href=\"https://wptavern.com/wordpress-relaunches-plugin-directory-with-new-design-and-improved-search-algorithm\">WordPress Relaunches Plugin Directory with New Design and Improved Search Algorithm</a><br />\n<a href=\"https://wptavern.com/poopy-life-lets-you-create-free-unlimited-wordpress-test-installs\">Poopy.life Lets You Create Free, Unlimited WordPress Test Installs</a><br />\n<a href=\"https://wptavern.com/wordpress-community-support-shuts-down-wordcamp-netherlands-in-favor-of-city-based-wordcamps\">WordPress Community Support Shuts Down WordCamp Netherlands in Favor of City-Based WordCamps</a></p>\n<h3>April</h3>\n<p><a href=\"https://wptavern.com/woocommerce-3-0-brings-major-improvements-to-product-gallery-introduces-crud-classes-and-a-new-cli\">WooCommerce 3.0 Brings Major Improvements to Product Gallery, Introduces CRUD Classes and a New CLI</a><br />\n<a href=\"https://wptavern.com/jetpack-4-8-introduces-settings-redesign-adds-global-wordpress-com-toolbar\">Jetpack 4.8 Introduces Settings Redesign, Adds Global WordPress.com Toolbar</a><br />\n<a href=\"https://wptavern.com/yoast-seos-php-upgrade-nag-is-producing-a-significant-increase-in-sites-upgrading-to-php-7\">Yoast SEO’s PHP Upgrade Nag is Producing a Significant Increase in Sites Upgrading to PHP 7</a><br />\n<a href=\"https://wptavern.com/buddypress-2016-survey-results-show-54-of-respondents-are-on-php-7-0\">BuddyPress 2016 Survey Results Show 54% of Respondents are on PHP 7.0+</a><br />\n<a href=\"https://wptavern.com/wordpress-4-7-4-fixes-visual-editor-incompatibility-with-upcoming-version-of-chrome\">WordPress 4.7.4 Fixes 47 Issues</a><br />\n<a href=\"https://wptavern.com/headway-themes-appears-to-be-dying-a-slow-death\">Headway Themes Appears to be Dying a Slow Death</a><br />\n<a href=\"https://wptavern.com/shopify-discontinues-its-official-plugin-for-wordpress\">Shopify Discontinues Its Official Plugin for WordPress</a></p>\n<h3>May</h3>\n<p><a href=\"https://wptavern.com/10up-releases-wp-docker-an-open-source-docker-configuration-for-local-wordpress-development\">10up Releases WP Docker, an Open Source Docker Configuration for Local WordPress Development</a><br />\n<a href=\"https://wptavern.com/jetpack-4-9-introduces-eu-cookie-law-banner-widget\">Jetpack 4.9 Introduces EU Cookie Law Banner Widget</a><br />\n<a href=\"https://wptavern.com/weglot-multilingual-plugin-closes-450k-in-seed-funding\">Weglot Multilingual Plugin Closes €450K in Seed Funding</a><br />\n<a href=\"https://wptavern.com/wordpress-is-now-on-hackerone-launches-bug-bounties\">WordPress Is Now on HackerOne, Launches Bug Bounties</a><br />\n<a href=\"https://wptavern.com/hookr-plugin-rebrands-as-wp-inspect-project-to-shift-to-a-module-based-architecture\">Hookr Plugin Rebrands as WP Inspect, Project to Shift to a Module-Based Architecture</a><br />\n<a href=\"https://wptavern.com/wordpress-4-7-5-patches-six-security-issues-immediate-update-recommended\">WordPress 4.7.5 Patches Six Security Issues, Immediate Update Recommended</a><br />\n<a href=\"https://wptavern.com/storefront-2-2-0-released-includes-design-refresh-and-major-improvements-to-new-user-experience\">Storefront 2.2.0 Released, Includes Design Refresh and Major Improvements to New User Experience</a><br />\n<a href=\"https://wptavern.com/rainmaker-digital-to-partner-with-nimble-worldwide\">Rainmaker Digital to Partner with Nimble Worldwide</a><br />\n<a href=\"https://wptavern.com/wordpress-removes-hhvm-from-testing-infrastructure\">WordPress Removes HHVM from Testing Infrastructure</a><br />\n<a href=\"https://wptavern.com/wp-cli-1-2-0-released-project-unveils-new-logo\">WP-CLI 1.2.0 Released, Project Unveils New Logo</a></p>\n<h3>June</h3>\n<p><a href=\"https://wptavern.com/wpforms-acquires-wp-mail-smtp-plugin\">WPForms Acquires WP Mail SMTP Plugin</a><br />\n<a href=\"https://wptavern.com/versionpress-launches-versionpress-com-to-fund-open-source-project\">VersionPress Launches VersionPress.com to Fund Open Source Project</a><br />\n<a href=\"https://wptavern.com/wordpress-4-8-evans-released-featuring-nearby-wordpress-events-new-media-widgets-and-link-boundaries\">WordPress 4.8 “Evans” Released Featuring Nearby WordPress Events, New Media Widgets, and Link Boundaries</a><br />\n<a href=\"https://wptavern.com/imagely-acquires-teslathemes-is-seeking-other-acquisition-opportunities\">Imagely Acquires TeslaThemes, Is Seeking Other Acquisition Opportunities</a><br />\n<a href=\"https://wptavern.com/9seeds-acquires-web-savvy-marketings-genesis-theme-store\">9seeds Acquires Web Savvy Marketing’s Genesis Theme Store</a><br />\n<a href=\"https://wptavern.com/wordcamp-europe-2017-draws-1900-attendees-from-79-countries\">WordCamp Europe 2017 Draws 1900 Attendees from 79 Countries</a><br />\n<a href=\"https://wptavern.com/woocommerce-drops-50-renewal-discount-on-subscriptions\">WooCommerce Drops 50% Renewal Discount on Subscriptions</a><br />\n<a href=\"https://wptavern.com/wpshout-updates-and-acquires-wphierarchy-com\">WPShout Updates and Acquires WPHierarchy.com</a><br />\n<a href=\"https://wptavern.com/wordpress-new-gutenberg-editor-now-available-as-a-plugin-for-testing\">WordPress’ New Gutenberg Editor Now Available as a Plugin for Testing</a><br />\n<a href=\"https://wptavern.com/automattic-to-renew-efforts-on-underscores-retire-components-starter-theme-generator\">Automattic to Renew Efforts on Underscores, Retire Components Starter-Theme Generator</a><br />\n<a href=\"https://wptavern.com/woocommerce-3-1-adds-new-csv-product-importerexporter-improves-extension-management\">WooCommerce 3.1 Adds New CSV Product Importer/Exporter, Improves Extension Management</a><br />\n<a href=\"https://wptavern.com/clef-is-shutting-down-june-6th\">Clef Shuts Down</a></p>\n<h3>July</h3>\n<p><a href=\"https://wptavern.com/jesse-petersen-founder-of-genesis-the-me-passes-away\">Jesse Petersen, Founder of Genesis The.me Passes Away</a><br />\n<a href=\"https://wptavern.com/wangguard-plugin-author-shuts-down-splog-hunting-service-due-to-trauma-and-death-threats\">WangGuard Plugin Author Shuts Down Splog Hunting Service Due to Trauma and Death Threats</a><br />\n<a href=\"https://wptavern.com/lets-encrypt-passes-100-million-certificates-issued-will-offer-wildcard-certificates-in-january-2018\">Let’s Encrypt Passes 100 Million Certificates Issued, Will Offer Wildcard Certificates in January 2018</a><br />\n<a href=\"https://wptavern.com/10up-acquires-lift-ux\">10up Acquires Lift UX</a><br />\n<a href=\"https://wptavern.com/aj-morris-acquires-ithemes-exchange\">AJ Morris Acquires iThemes Exchange</a><br />\n<a href=\"https://wptavern.com/react-users-petition-facebook-to-re-license-react-js-after-apache-software-foundation-bans-bsdpatents-license-in-dependencies\">React Users Petition Facebook to Re-license React.js after Apache Software Foundation Bans BSD+Patents License in Dependencies</a><br />\n<a href=\"https://wptavern.com/sitelock-acquires-patchmans-malware-and-vulnerability-detection-technology-expands-wordpress-customer-base-to-4-million\">SiteLock Acquires Patchman’s Malware and Vulnerability Detection Technology, Expands WordPress Customer Base to 4 Million</a><br />\n<a href=\"https://wptavern.com/adobe-to-discontinue-flash-support-and-updates-in-2020\">Adobe to Discontinue Flash Support and Updates in 2020</a><br />\n<a href=\"https://wptavern.com/blog-passes-100000-registrations-66-5-of-purchased-domains-are-in-use\">.blog Passes 100,000 Registrations, 66.5% of Purchased Domains are in Use</a></p>\n<h3>August</h3>\n<p><a href=\"https://wptavern.com/jetpack-5-2-brings-major-improvements-to-the-contact-form-module\">Jetpack 5.2 Brings Major Improvements to the Contact Form Module</a><br />\n<a href=\"https://wptavern.com/wordpress-polyglots-team-fuels-international-community-growth-with-3rd-global-translation-day\">WordPress Polyglots Team Fuels International Community Growth with 3rd Global Translation Day</a><br />\n<a href=\"https://wptavern.com/wordpress-4-8-1-released-adds-custom-html-widget\">WordPress 4.8.1 Released, Adds Custom HTML Widget</a><br />\n<a href=\"https://wptavern.com/trademark-trial-and-appeal-board-dismisses-automattics-trademark-dispute-against-chris-pearson\">Trademark Trial and Appeal Board Dismisses Automattic’s Trademark Dispute Against Chris Pearson</a><br />\n<a href=\"https://wptavern.com/wordpress-coms-business-plan-gives-subscribers-a-way-to-tap-into-wordpress-orgs-third-party-ecosystem\">WordPress.com’s Business Plan Gives Subscribers a Way to Tap into WordPress.org’s Third-party Ecosystem</a><br />\n<a href=\"https://wptavern.com/maekit-acquires-wp-remote-plans-to-add-cloud-based-backup-services\">maekit Acquires WP Remote, Plans to Add Cloud-Based Backup Services</a><br />\n<a href=\"https://wptavern.com/wordpress-org-now-allows-plugin-authors-to-specify-a-minimum-php-version-requirement\">WordPress.org Now Allows Plugin Authors to Specify a Minimum PHP Version Requirement</a><br />\n<a href=\"https://wptavern.com/gutenberg-1-0-0-introduces-drag-and-drop-for-adding-image-blocks\">Gutenberg 1.0.0 Introduces Drag and Drop for Adding Image Blocks</a></p>\n<h3>September</h3>\n<p><a href=\"https://wptavern.com/jetpack-5-3-adds-php-7-1-compatibility-better-control-for-wordads-placement\">Jetpack 5.3 Adds PHP 7.1 Compatibility, Better Control for WordAds Placement</a><br />\n<a href=\"https://wptavern.com/wordpress-org-adds-new-support-rep-role-for-plugin-pages\">WordPress.org Adds New Support Rep Role for Plugin Pages</a><br />\n<a href=\"https://wptavern.com/wordpress-abandons-react-due-to-patents-clause-gutenberg-to-be-rewritten-with-a-different-library\">WordPress Abandons React due to Patents Clause, Gutenberg to be Rewritten with a Different Library</a><br />\n<a href=\"https://wptavern.com/wordpress-4-8-2-patches-eight-security-vulnerabilities\">WordPress 4.8.2 Patches Eight Security Vulnerabilities</a><br />\n<a href=\"https://wptavern.com/apply-filters-podcast-to-be-retired-after-83-episodes\">Apply Filters Podcast to be Retired after 83 Episodes</a><br />\n<a href=\"https://wptavern.com/wordpress-com-adds-google-photos-integration-available-now-for-jetpack-enabled-sites\">WordPress.com Adds Google Photos Integration, Available Now for Jetpack-Enabled Sites</a></p>\n<h3>October</h3>\n<p><a href=\"https://wptavern.com/poopy-life-launches-pro-version-at-wpsandbox-io-aimed-at-theme-and-plugin-developers\">Poopy.life Launches Pro Version at WPsandbox.io Aimed at Theme and Plugin Developers</a><br />\n<a href=\"https://wptavern.com/disqus-data-breach-affects-17-5-million-accounts\">Disqus Data Breach Affects 17.5 Million Accounts</a><br />\n<a href=\"https://wptavern.com/gitlab-raises-20-million-series-c-round-adds-matt-mullenweg-to-board-of-directors\">GitLab Raises $20 Million Series C Round, Adds Matt Mullenweg to Board of Directors</a><br />\n<a href=\"https://wptavern.com/woocommerce-3-2-adds-ability-to-apply-coupons-in-the-admin-introduces-pre-update-version-checks-for-extensions\">WooCommerce 3.2 Adds Ability to Apply Coupons in the Admin, Introduces Pre-Update Version Checks for Extensions</a><br />\n<a href=\"https://wptavern.com/postman-smtp-plugin-forked-after-removal-from-wordpress-org-for-security-issues\">Postman SMTP Plugin Forked after Removal from WordPress.org for Security Issues</a><br />\n<a href=\"https://wptavern.com/woocommerce-retires-canvas-theme-recommends-customers-migrate-to-storefront-theme\">WooCommerce Retires Canvas Theme, Recommends Customers Migrate to Storefront Theme</a><br />\n<a href=\"https://wptavern.com/goodnight-firebug\">Firebug is Retired</a></p>\n<h3>November</h3>\n<p><a href=\"https://wptavern.com/wordpress-4-8-3-a-security-release-six-weeks-in-the-making\">WordPress 4.8.3, A Security Release Six Weeks in the Making</a><br />\n<a href=\"https://wptavern.com/press-this-removed-from-wordpress-4-9-in-favor-of-a-plugin\">Press This Removed from WordPress 4.9 in Favor of a Plugin</a><br />\n<a href=\"https://wptavern.com/bianca-welds-awarded-kim-parsell-travel-scholarship\">Bianca Welds Awarded Kim Parsell Travel Scholarship</a><br />\n<a href=\"https://wptavern.com/jetpack-5-5-removes-syntax-highlighting-and-gallery-widget-for-compatibility-with-upcoming-wordpress-4-9-release\">Jetpack 5.5 Removes Syntax Highlighting and Gallery Widget for Compatibility</a><br />\n<a href=\"https://wptavern.com/wordpress-4-9-released-with-major-improvements-to-customizer-workflow-updated-code-editors-and-new-core-gallery-widget\">WordPress 4.9 Released with Major Improvements to Customizer Workflow, Updated Code Editors, and New Core Gallery Widget</a><br />\n<a href=\"https://wptavern.com/tailor-page-builder-plugin-discontinued-owners-cite-funding-gutenberg-and-competition\">Tailor Page Builder Plugin Discontinued, Owners Cite Funding, Gutenberg, and Competition</a><br />\n<a href=\"https://wptavern.com/wordpress-4-9-1-released-fixes-page-template-bug\">WordPress 4.9.1 Released, Fixes Page Template Bug</a><br />\n<a href=\"https://wptavern.com/wpweekly-episode-296-gutenberg-telemetry-calypso-and-more-with-matt-mullenweg\">WPWeekly Episode 296 – Gutenberg, Telemetry, Calypso, and More With Matt Mullenweg</a></p>\n<h3>December</h3>\n<p><a href=\"https://wptavern.com/storify-to-close-may-16-2018-wordpress-plugin-discontinued\">Storify to Close May 16, 2018, WordPress Plugin Discontinued</a><br />\n<a href=\"https://wptavern.com/jetpack-5-6-1-increases-security-of-the-contact-form-module\">Jetpack 5.6.1 Increases Security of the Contact Form Module</a><br />\n<a href=\"https://wptavern.com/wp-site-care-acquires-wp-radius\">WP Site Care Acquires WP Radius<b></b></a></p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, January 3rd at 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p><strong>Listen To Episode #299:</strong><br />\n</p>\";s: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 Dec 2017 02:08:34 +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: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:94:\"HeroPress: My Journey from being a Dyslexic kid to becoming A Co-organiser For WordCamp Mumbai\";s:7:\"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=2369\";s:7:\"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:190:\"https://heropress.com/essays/journey-dyslexic-kid-becoming-co-organiser-wordcamp-mumbai/#utm_source=rss&utm_medium=rss&utm_campaign=journey-dyslexic-kid-becoming-co-organiser-wordcamp-mumbai\";s: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:16513:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/122717-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: My WordPress journey over the last two years has been excellent, filled with beautiful surprises.\" /><p>In my early childhood, my parents were told that I had <a href=\"https://en.wikipedia.org/wiki/Dyslexia\">dyslexia</a> and <a href=\"https://en.wikipedia.org/wiki/Dyscalculia\">dyscalculia</a>. They were told that with this drawback, I would never achieve anything constructive in my life. My parents were a little shocked as they had no clue what was dyslexia and dyscalculia and how to handle the situation. They never gave up on me and believe that I could reach great success in life. They found a tutor for me who was able to train me to do better and gave me the same treatment as other students.</p>\n<p>As a student suffering from dyslexia and dyscalculia, I had an option to skip Maths and opt for an additional subject in in 8th grade. Computer as an additional subject was introduced to me. It was the first time I was introduced to the world of internet. I started researching what internet has to offer and how it works. Those days email and website were all new and fascinating. My father bought our first desktop so I can do my research at home.</p>\n<blockquote><p>My father wanted to turn my love for the computer into something more constructive to help me in my future.</p></blockquote>\n<p>After 12th standard, my father enrolled me in a short computer course from NIIT to develop new skills and polish my old skills. Once the course was over, my teacher was so impressed with my performance that she advised my father to enroll me in a 3 years Software Development course. This course was carried out in parallel with my regular college. I would become both a graduate and a software developer at the same time. My father happily enrolled me.</p>\n<p>(PS: I was a bit disappointed as I had to juggle 2 courses together during my college days. I thought it would be very difficult to concentrate on both things. BUT to be honest today when I look back, I feel that I enjoyed doing both college and NIIT together.)</p>\n<p>During the 3 year period, I learned different languages like C Sharp, C, C++, Java, and dotNet.</p>\n<p>After I completed my graduation and NIIT course, I was confused which field to select and apply for a job. There was a rule in NIIT, I had to complete 1 year of internship after my course. If due to any circumstance I could not complete, I would not get the certificate. My parents had spent a lot of money on my course and I didn’t want their hard earned money to go down the drain so I started going for different interviews in the IT field. My father had advised me that if after one year I was not happy with my IT job, I can quit and pursue Banking career.</p>\n<blockquote><p>In 2009 on my birthday to my surprise and good fortune, I passed an interview and joined a company. On the first day, I was introduced to WordPress.</p></blockquote>\n<p>I got an assignment to change the look and feel of WordPress dashboard. This assignment had to be completed within the next 6 hours. I had no clue what WordPress was. I was looking at the whiteboard in front of me and thinking this assignment is not possible to complete within 6 hours. I thought my boss was joking (Bosses generally joke with interns).</p>\n<p>Guess who came to the rescue. GOOGLE. <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n<p>I started researching about WordPress on how it works and how to use it. After 2 hours, when I was comfortable using WordPress, I started searching how to change look and feel of WordPress Admin Dashboard. Thankfully, I found a plugin which can change the look and feel of the WordPress Dashboard. I learned how to install and work with it. After trying different combinations of color and style, I finally completed the assignment with 2 hours to spare. My boss was happy.</p>\n<p>Unfortunately after 4 days of working with WordPress, I was shifted to another CMS. I started working with the other CMS for so long that I completely forgot about WordPress. I worked with that particular CMS for 5 years.</p>\n<h3>Coming Back To WordPress</h3>\n<p>After 5 years, my office got an international project in WordPress. My boss told me to lead the project. I was hesitant since I had lost touch with WordPress. But I decided this is a great opportunity to become a team leader and lead from front. I decided to update my WordPress skills. Google GOD came to my rescue again. I updated my skills and also taught my junior team members all about WordPress. My juniors team members who never knew anything about WordPress, started to love and use WordPress frequently after my training. My team completed the project in 2 weeks. This project got me back in WordPress for good.</p>\n<p>As a team leader, one needs to help juniors to solve issues and guide them wherever necessary. I never always had the answer to their problems. I did not have any friends from the WordPress world who I can just talk to and discuss things. All my friends were either in dotNet OR commerce fields. For this reason, I was in look out for some kind group which would help me expand my scope of knowledge in WordPress.</p>\n<h3>Finding the Community</h3>\n<p>In 2015, when I was browsing Facebook, I came across an ad about WordCamp Mumbai. I missed out on the event by 2 days. Somehow I found the meetup website and joined the WordPress Mumbai meetup group.</p>\n<p>At the beginning, I didn’t have time and there wasn’t any topic that interested or motivated me to attend the meetup. It was either clashing with shopping or work or outing with friends or something or the other. Finally, after months I found one interesting topic, and in the comments section, they had mentioned that it will be a beginner level workshop. Finally I decided attend the meetup at any cost. I rescheduled all my plans so I could attend the meetup.</p>\n<p>I remember I was on my way to the meetup and was talking to my best friend on phone. I was a bit nervous as I didn’t know anyone there. I could not find the place for the meetup. I told my friend that I am taking a U-turn and going home. BUT to my disadvantage, I finally found the venue and I decided to attend the meetup. In the first 15 mins of the meetup I realized that it’s not a beginners topics. Once the meetup ended, I got up from my seat and left immediately. I was unhappy with the way it was presented.</p>\n<blockquote><p>After a few months, another great topic was announced in the meetup group. My heart told me to take a chance again.</p></blockquote>\n<p>Thankfully this time I knew the venue (same as last time). I attend the meetup and was happy with the way it was presented and learnt a few important tips. After the meetup was over the speaker took time and spoke to individual attendees. When he come to me, I took the opportunity and asked a couple of issues I had with one of my project. He sweetly gave me tips how to deal with my issues.</p>\n<p>The next day to my surprise I receive a message from the team leader Alexander Gounder. He asked me if I want to speak at a meetup. I politely declined the offer as I was not confident. After this, for a couple of the next meetup, I attended and got to know a few people. During that period, there were talks about WordCamp Mumbai 2016.</p>\n<h3>Taking Part In WordCamp</h3>\n<p>I showed an interest to be a part of the team who handles WordCamp Mumbai. I thought WordCamp was a conference where 100 or more people attend it. On the first day of WordCamp Mumbai, I was surprised to see so many WordCamp enthusiastic attending and enjoying this event.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/wcmumbai16-group_photo.jpg\"><img class=\"wp-image-2374 size-full\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/wcmumbai16-group_photo.jpg\" alt=\"WordCamp Mumbai 2016\" width=\"1000\" height=\"358\" /></a>WordCamp Mumbai 2016\n<p> </p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/wcmumbai16-localhost-min.jpg\"><img class=\"wp-image-2382 size-full\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/wcmumbai16-localhost-min.jpg\" alt=\"\" width=\"1000\" height=\"664\" /></a>WordCamp Mumbai 2016\n<p>After seeing a successful WordCamp 2016, I try to attend as many meetups as possible.</p>\n<p>I started with an entry-level role with basic responsibilities in my first WordCamp 2016. Gradually I started taking an active part in volunteering taking over more responsibilities. In WordCamp 2017 I handled speaker profiles and social media promotions. In WordCamp 2018, I am getting to know more about what all an organiser needs to do from planning to execution, to make the event the WordCamp an successful event.</p>\n<p><b>WordCamp Mumbai 2017</b></p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/wcmumbai2017-1.jpg\"><img class=\"size-full wp-image-2375\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/wcmumbai2017-1.jpg\" alt=\"WordCamp Mumbai 2017\" width=\"668\" height=\"337\" /></a>WordCamp Mumbai 2017\n<p>After spending 3 years with WordPress Mumbai Community, I am glad to be part of this amazing team. My WordPress journey over the last two years has been excellent, filled with beautiful surprises.</p>\n<p>I have been interviewed twice. Never in my wildest dreams did I ever thought that someone would interview me. <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /> My first ever interview was with <a href=\"https://www.wpwatercooler.com/video/community-connections-wordpress-at-home-in-india-w-meher-bala/\">Bridget and Jen for Community Connections by WPwatercooler</a>. Second was with <a href=\"https://courses.wpshout.com/\">David Hayes for WPShout on WordPress Security</a>.</p>\n<p>Some highlights events are as below:</p>\n<ol>\n<li>Introduced to Rosie pins – Wapuu for Women Who WordPress.</li>\n<li>Travelled to different cities across India, just to attended wordcamps.</li>\n<li>Made many new friends locally and international.</li>\n<li>Conducted a meetup on “Contributing to WordPress”.</li>\n<li>Conducted a panel discussion at WC Nashik 2017.</li>\n<li>Running a FB group especially for Indian WordPress Women Community.</li>\n<li>Writing an article for HeroPress.</li>\n<li>Contributing my part in the Marketing Team WordPress .</li>\n</ol>\n<table border=\"0\">\n<tbody>\n<tr>\n<td>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/speaker-badge.jpg\"><img class=\"wp-image-2376\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/speaker-badge-215x300.jpg\" alt=\"Speaker Badge - WC Nashik 2017\" width=\"300\" height=\"418\" /></a>Speaker Badge – WC Nashik 2017</td>\n<td>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/panel-discussion-selfie.jpg\"><img class=\"wp-image-2377\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/panel-discussion-selfie-300x225.jpg\" alt=\"Panel Group Selfie - WC Nashik 2017\" width=\"400\" height=\"300\" /></a>Panel Group Selfie – WC Nashik 2017</td>\n</tr>\n<tr>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/wp-profile.png\"><img class=\"size-medium wp-image-2378\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/wp-profile-300x132.png\" alt=\"Different Badges - WordPress Profile\" width=\"300\" height=\"132\" /></a>Different Badges – WordPress Profile</td>\n<td>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/presentation-my-talk.jpg\"><img class=\"wp-image-2379\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/12/presentation-my-talk-300x153.jpg\" alt=\"Conducted my first meetup - WordPress Mumbai\" width=\"400\" height=\"204\" /></a>Conducted my first meetup – WordPress Mumbai</td>\n</tr>\n</tbody>\n</table>\n<p><b>My wish list for 2018:</b></p>\n<ol>\n<li>Apply as a speaker in at least one the WordCamp.</li>\n<li>Attend and volunteer at an International WordCamp.</li>\n<li>Attend and volunteer at WordCamp US 2018.</li>\n<li>Meeting Matt Mullenweg hopefully (Fingers crossed!).</li>\n<li>Meeting all my lovely international virtual friends at one of the WordCamps.</li>\n</ol>\n<p>One of my biggest dreams would be to lead WordCamp Mumbai as a lead organiser.</p>\n<blockquote><p>My advice to all who earn their livelihood from WordPress is to try and give back to the WordPress community in any way possible.</p></blockquote>\n<p>I am sure you will either learn something new <b>or</b> teach something new to someone else <b>or</b> just make new friendships.</p>\n<p>At the end of the article, I take the opportunity to thank my grantparents, parents and my sister for always standing by me and believing me. I thank my teacher Ms. Amita, my boss Mr. Ivan Bayross, my WordPress friends, and my virtual international friends for always guiding and motivating me to stay focussed and to keep learning new things in life.</p>\n<p>A big thank you to Topher for giving me an opportunity to write about my life journey.</p>\n<p>Being dyslexic I still make mistakes and I know that I’m not perfect. But I know for sure there is no harm in making mistakes. You need to learn from them and grow your skills. Don’t let your disabilities get in the way of your success. If you are reading this article and can connect with my story, do let me know in the comment section. I would love to hear from you.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: My Journey from being a Dyslexic kid to becoming A Co-organiser For WordCamp Mumbai\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=My%20Journey%20from%20being%20a%20Dyslexic%20kid%20to%20becoming%20A%20Co-organiser%20For%20WordCamp%20Mumbai&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fjourney-dyslexic-kid-becoming-co-organiser-wordcamp-mumbai%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: My Journey from being a Dyslexic kid to becoming A Co-organiser For WordCamp Mumbai\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fjourney-dyslexic-kid-becoming-co-organiser-wordcamp-mumbai%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fjourney-dyslexic-kid-becoming-co-organiser-wordcamp-mumbai%2F&title=My+Journey+from+being+a+Dyslexic+kid+to+becoming+A+Co-organiser+For+WordCamp+Mumbai\" rel=\"nofollow\" target=\"_blank\" title=\"Share: My Journey from being a Dyslexic kid to becoming A Co-organiser For WordCamp Mumbai\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/journey-dyslexic-kid-becoming-co-organiser-wordcamp-mumbai/&media=https://heropress.com/wp-content/uploads/2018/12/122717-150x150.jpg&description=My Journey from being a Dyslexic kid to becoming A Co-organiser For WordCamp Mumbai\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: My Journey from being a Dyslexic kid to becoming A Co-organiser For WordCamp Mumbai\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/journey-dyslexic-kid-becoming-co-organiser-wordcamp-mumbai/\" title=\"My Journey from being a Dyslexic kid to becoming A Co-organiser For WordCamp Mumbai\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/journey-dyslexic-kid-becoming-co-organiser-wordcamp-mumbai/\">My Journey from being a Dyslexic kid to becoming A Co-organiser For WordCamp Mumbai</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s: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 Dec 2017 02:23: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:10:\"Meher Bala\";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:29:\"Matt: NORAD’s Santa Tracker\";s:7:\"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:43:\"https://ma.tt/2017/12/norads-santa-tracker/\";s:7:\"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://ma.tt/2017/12/norads-santa-tracker/\";s: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:432:\"<p>Politico has <a href=\"https://www.politico.com/amp/story/2017/12/24/norads-crazy-santa-cause-260254\">a lovely story on the history and present of the NORAD Santa Tracker</a>, which started because a 1955 Sears department store ad had “a digit wrong — and was instead the direct line into the secret military nerve center in Colorado Springs, Colo., where the Pentagon was on the lookout to prevent nuclear war.”</p>\";s: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 Dec 2017 14:25: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: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: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:\"Dev Blog: WordPress User Survey Data for 2015-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:34:\"https://wordpress.org/news/?p=5310\";s:7:\"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://wordpress.org/news/2017/12/wordpress-user-survey-data-for-2015-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:61756:\"<p>For many years, we’ve invited folks to tell us how they use WordPress by filling out an annual survey. In the past, interesting results from this survey have been shared in the annual <a href=\"https://ma.tt/2017/12/state-of-the-word-2017/\">State of the Word</a> address. This year, for the first time, the results of the 2017 survey are being published on WordPress News, along with the results of the 2015 and 2016 survey.</p>\n<p>So that information from the survey doesn’t reveal anything that respondents might consider private, we do not publish a full export of the raw data. We’d love to make this information as accessible as possible, though, so if you have a suggestion for an OS project or tool we can put the data into that allows people to play with it that still protects individual response privacy, please leave a comment on this post!</p>\n<h4>Major Groups</h4>\n<p>This survey features multiple groups, dividing respondents at the first question:</p>\n<blockquote><p>Which of the following best describes how you use WordPress? (<em>Mandatory</em>)</p></blockquote>\n<p>Those who selected “I’m a designer or developer, or I work for a company that designs/develops websites; I use WordPress to build websites and/or blogs for others. (This might include theme development, writing plugins, or other custom work.)” were served questions from what we’ll call the “WordPress Professionals” group.</p>\n<p>This “WordPress Professionals” group is further divided into WordPress Company and WordPress Freelancer/Hobbyist groups, based on how the respondent answered the question, “Which of the following best describes your involvement with WordPress? (2015) / Do you work for a company, or on your own? (2016-17).”</p>\n<p>Those who selected “I own, run, or contribute to a blog or website that is built with WordPress.” were served questions in what we’re calling the “WordPress Users” group.</p>\n<p>The relevant survey group is noted in each table below. In the case of questions that were served to different groups in 2015 but then served to all respondents in 2016 and 2017, the group responses from 2015 have been consolidated into one set of data for easier comparison between years.</p>\n<h4>Survey results</h4>\n<p><a href=\"https://wordpress.org/news/feed/#pro\">Jump to answers from WordPress Professionals</a></p>\n<p><a href=\"https://wordpress.org/news/feed/#user\">Jump to answers from WordPress Users</a></p>\n<p><a href=\"https://wordpress.org/news/feed/#all\">Jump to answers from All Respondents</a></p>\n<p><!--td {border: 1px solid #ccc;}br {mso-data-placement:same-cell;}--></p>\n<h3>Which of the following best describes how you use WordPress? (Mandatory)</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td>Number of responses (since this question was mandatory, the number of responses here is the total number for the survey)</td>\n<td>45,995</td>\n<td></td>\n<td>15,585</td>\n<td></td>\n<td>16,029</td>\n<td></td>\n</tr>\n<tr>\n<td>I’m a designer or developer, or I work for a company that designs/develops websites; I use WordPress to build websites and/or blogs for others. (This might include theme development, writing plugins, other custom work.)</td>\n<td>26,662</td>\n<td>58%</td>\n<td>8,838</td>\n<td>57%</td>\n<td>9,099</td>\n<td>57%</td>\n</tr>\n<tr>\n<td>I own, run, or contribute to a blog or website that is built with WordPress.</td>\n<td>16,130</td>\n<td>35%</td>\n<td>5,293</td>\n<td>34%</td>\n<td>5,625</td>\n<td>35%</td>\n</tr>\n<tr>\n<td>Neither of the above.</td>\n<td>3,204</td>\n<td>7%</td>\n<td>1,460</td>\n<td>9%</td>\n<td>1,306</td>\n<td>8%</td>\n</tr>\n</tbody>\n</table>\n<h2 id=\"pro\">WordPress Professionals</h2>\n<h3><strong>Which of the following best describes your involvement with WordPress? (Mandatory, 2015) / Do you work for a company, or on your own? (Mandatory, 2016-17)</strong></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>26,699</td>\n<td></td>\n<td>8,838</td>\n<td></td>\n<td>9,101</td>\n<td></td>\n</tr>\n<tr>\n<td>My primary job is working for a company or organization that uses WordPress.</td>\n<td>9,505</td>\n<td>36%</td>\n<td>3,529</td>\n<td>40%</td>\n<td>3,660</td>\n<td>40%</td>\n</tr>\n<tr>\n<td>My primary job is as a self-employed designer or developer that uses WordPress.</td>\n<td>9,310</td>\n<td>35%</td>\n<td>3,188</td>\n<td>36%</td>\n<td>3,440</td>\n<td>38%</td>\n</tr>\n<tr>\n<td>I earn money from part-time or occasional freelance work involving WordPress.</td>\n<td>5,954</td>\n<td>22%</td>\n<td>1,633</td>\n<td>18%</td>\n<td>1,590</td>\n<td>17%</td>\n</tr>\n<tr>\n<td>Work that I do involving WordPress is just a hobby, I don’t make money from it.</td>\n<td>1,930</td>\n<td>7%</td>\n<td>491</td>\n<td>6%</td>\n<td>411</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>How does your company or organization work with WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,342</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Build/design and/or maintain websites or blogs for other people, companies, or organizations.</td>\n<td>7,772</td>\n<td>27%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Develop or customize themes.</td>\n<td>5,404</td>\n<td>19%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Build/design and/or maintain websites or blogs for my own use.</td>\n<td>4,733</td>\n<td>16%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Host websites for customers.</td>\n<td>4,397</td>\n<td>15%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Develop or distribute plugins.</td>\n<td>3,181</td>\n<td>11%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Provide educational resources to help others to use WordPress.</td>\n<td>1,349</td>\n<td>5%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Sponsor and/or attend WordCamps.</td>\n<td>1,127</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Contribute bug reports and/or patches to WordPress core.</td>\n<td>914</td>\n<td>3%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>182</td>\n<td> 1%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>3,457</td>\n<td></td>\n<td>3,598</td>\n<td></td>\n</tr>\n<tr>\n<td>We make websites for others.</td>\n<td></td>\n<td></td>\n<td>2,695</td>\n<td>24%</td>\n<td>2,722</td>\n<td>23%</td>\n</tr>\n<tr>\n<td>We make websites for ourselves.</td>\n<td></td>\n<td></td>\n<td>2,355</td>\n<td>21%</td>\n<td>2,470</td>\n<td>21%</td>\n</tr>\n<tr>\n<td>We develop or customize themes.</td>\n<td></td>\n<td></td>\n<td>1,866</td>\n<td>16%</td>\n<td>1,910</td>\n<td>16%</td>\n</tr>\n<tr>\n<td>We host websites for others.</td>\n<td></td>\n<td></td>\n<td>1,564</td>\n<td>14%</td>\n<td>1,595</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>We develop or distribute plugins.</td>\n<td></td>\n<td></td>\n<td>1,283</td>\n<td>11%</td>\n<td>1,342</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>We provide educational resources to help others to use WordPress.</td>\n<td></td>\n<td></td>\n<td>581</td>\n<td>5%</td>\n<td>631</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>We sponsor and/or attend WordCamps.</td>\n<td></td>\n<td></td>\n<td>561</td>\n<td>5%</td>\n<td>579</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>We contribute bug reports and/or patches to WordPress core.</td>\n<td></td>\n<td></td>\n<td>444</td>\n<td>4%</td>\n<td>468</td>\n<td>4%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td></td>\n<td></td>\n<td>98</td>\n<td>1%</td>\n<td>96</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<p><strong>How would you describe the business of your typical client(s)? (2015) / How would you describe the business of your typical client/customer? (2016, 2017)</strong></p>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,154</td>\n<td></td>\n<td>3,317</td>\n<td></td>\n<td>3,498</td>\n<td></td>\n</tr>\n<tr>\n<td>Small business</td>\n<td>6,893</td>\n<td>32%</td>\n<td>2,398</td>\n<td>31%</td>\n<td>2,510</td>\n<td>31%</td>\n</tr>\n<tr>\n<td>Large business or Enterprise</td>\n<td>3,635</td>\n<td>17%</td>\n<td>1,361</td>\n<td>18%</td>\n<td>1,447</td>\n<td>18%</td>\n</tr>\n<tr>\n<td>Non-profit</td>\n<td>2,644</td>\n<td>12%</td>\n<td>934</td>\n<td>12%</td>\n<td>992</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>Individual</td>\n<td>2,600</td>\n<td>12%</td>\n<td>888</td>\n<td>12%</td>\n<td>1,022</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>Education</td>\n<td>2,344</td>\n<td>11%</td>\n<td>854</td>\n<td>11%</td>\n<td>966</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>Website development (sub-contracting)</td>\n<td>2,065</td>\n<td>10%</td>\n<td>637</td>\n<td>8%</td>\n<td>677</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>Government</td>\n<td>1,410</td>\n<td>6%</td>\n<td>524</td>\n<td>7%</td>\n<td>552</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>127</td>\n<td>1%</td>\n<td>66</td>\n<td>1%</td>\n<td>64</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<p><strong>How does your company or organization use WordPress when developing websites? (2015) / When making websites, how does your company or organization use WordPress? (2016, 2017)</strong></p>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,078</td>\n<td></td>\n<td>3,369</td>\n<td></td>\n<td>3,552</td>\n<td></td>\n</tr>\n<tr>\n<td>Mostly as a content management system (CMS)</td>\n<td>6,361</td>\n<td>70%</td>\n<td>2,482</td>\n<td>74%</td>\n<td>2,640</td>\n<td>74%</td>\n</tr>\n<tr>\n<td>About half the time as a blogging platform and half the time as a CMS</td>\n<td>1,222</td>\n<td>13%</td>\n<td>370</td>\n<td>11%</td>\n<td>383</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Mostly as a blogging platform</td>\n<td>721</td>\n<td>8%</td>\n<td>137</td>\n<td>4%</td>\n<td>129</td>\n<td>4%</td>\n</tr>\n<tr>\n<td>Mostly as an application framework</td>\n<td>629</td>\n<td>7%</td>\n<td>303</td>\n<td>9%</td>\n<td>303</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>145</td>\n<td>2%</td>\n<td>78</td>\n<td>2%</td>\n<td>97</td>\n<td>3%</td>\n</tr>\n</tbody>\n</table>\n<h3>How much is your average WordPress site customized from the original WordPress installation?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,054</td>\n<td></td>\n<td>3,302</td>\n<td></td>\n<td>3,473</td>\n<td></td>\n</tr>\n<tr>\n<td>A lot of work has been done, the front end is unrecognizable, but the Dashboard still looks like the usual WordPress interface.</td>\n<td>5,651</td>\n<td>62%</td>\n<td>2,025</td>\n<td>61%</td>\n<td>2,105</td>\n<td>61%</td>\n</tr>\n<tr>\n<td>There’s a different theme and some plugins have been added.</td>\n<td>2,230</td>\n<td>25%</td>\n<td>799</td>\n<td>24%</td>\n<td>905</td>\n<td>26%</td>\n</tr>\n<tr>\n<td>Not at all, it’s still pretty much the same as the original download.</td>\n<td>756</td>\n<td>8%</td>\n<td>302</td>\n<td>9%</td>\n<td>298</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>You’d never know this was a WordPress installation, everything (including the admin) has been customized.</td>\n<td>417</td>\n<td>5%</td>\n<td>177</td>\n<td>5%</td>\n<td>165</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>Roughly how many currently active WordPress sites has your company or organization built?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>8,801</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>200 +</td>\n<td>1,074</td>\n<td>12%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>51 – 200</td>\n<td>1,721</td>\n<td>20%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>21 – 50</td>\n<td>1,718</td>\n<td>20%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>11 – 20</td>\n<td>1,284</td>\n<td>15%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>6 – 10</td>\n<td>1,109</td>\n<td>13%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>2 – 5</td>\n<td>1,418</td>\n<td>16%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>1</td>\n<td>390</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>0</td>\n<td>87</td>\n<td>1%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>3,358</td>\n<td></td>\n<td>3,540</td>\n<td></td>\n</tr>\n<tr>\n<td>Thousands.</td>\n<td></td>\n<td></td>\n<td>291</td>\n<td>9%</td>\n<td>331</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Hundreds.</td>\n<td></td>\n<td></td>\n<td>770</td>\n<td>23%</td>\n<td>894</td>\n<td>25%</td>\n</tr>\n<tr>\n<td>Fewer than a hundred.</td>\n<td></td>\n<td></td>\n<td>1,144</td>\n<td>34%</td>\n<td>1,177</td>\n<td>33%</td>\n</tr>\n<tr>\n<td>Just a few, but they are really great.</td>\n<td></td>\n<td></td>\n<td>926</td>\n<td>28%</td>\n<td>896</td>\n<td>25%</td>\n</tr>\n<tr>\n<td>Prefer not to answer.</td>\n<td></td>\n<td></td>\n<td>228</td>\n<td>7%</td>\n<td>242</td>\n<td>7%</td>\n</tr>\n</tbody>\n</table>\n<h3>How many person-hours (of your company’s work) does the typical site take to complete?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>9,091</td>\n<td></td>\n<td>3,353</td>\n<td></td>\n<td>3,522</td>\n<td></td>\n</tr>\n<tr>\n<td>More than 200</td>\n<td>939</td>\n<td>10%</td>\n<td>309</td>\n<td>9%</td>\n<td>325</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>100 – 200</td>\n<td>1080</td>\n<td>12%</td>\n<td>329</td>\n<td>10%</td>\n<td>367</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>60 – 100</td>\n<td>1541</td>\n<td>17%</td>\n<td>527</td>\n<td>16%</td>\n<td>513</td>\n<td>15%</td>\n</tr>\n<tr>\n<td>40 – 60</td>\n<td>1854</td>\n<td>20%</td>\n<td>583</td>\n<td>17%</td>\n<td>620</td>\n<td>18%</td>\n</tr>\n<tr>\n<td>20 – 40</td>\n<td>2066</td>\n<td>23%</td>\n<td>691</td>\n<td>21%</td>\n<td>685</td>\n<td>19%</td>\n</tr>\n<tr>\n<td>Fewer than 20</td>\n<td>1611</td>\n<td>18%</td>\n<td>479</td>\n<td>14%</td>\n<td>519</td>\n<td>15%</td>\n</tr>\n<tr>\n<td>Prefer not to answer (2016, 2017)</td>\n<td></td>\n<td></td>\n<td>436</td>\n<td>13%</td>\n<td>493</td>\n<td>14%</td>\n</tr>\n</tbody>\n</table>\n<h3>Roughly what percentage of your company or organization’s output is based around WordPress (as opposed to other platforms or software)?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Company</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>8,950</td>\n<td></td>\n<td>3,345</td>\n<td></td>\n<td>3,503</td>\n<td></td>\n</tr>\n<tr>\n<td>100 %</td>\n<td>1,089</td>\n<td>12%</td>\n<td>438</td>\n<td>13%</td>\n<td>480</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>90 %</td>\n<td>1,043</td>\n<td>12%</td>\n<td>417</td>\n<td>12%</td>\n<td>459</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>80 %</td>\n<td>955</td>\n<td>11%</td>\n<td>367</td>\n<td>11%</td>\n<td>424</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>70 %</td>\n<td>831</td>\n<td>9%</td>\n<td>305</td>\n<td>9%</td>\n<td>344</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>60 %</td>\n<td>534</td>\n<td>6%</td>\n<td>246</td>\n<td>7%</td>\n<td>226</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>50 %</td>\n<td>973</td>\n<td>11%</td>\n<td>335</td>\n<td>10%</td>\n<td>338</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>40 %</td>\n<td>613</td>\n<td>7%</td>\n<td>245</td>\n<td>7%</td>\n<td>202</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>30 %</td>\n<td>877</td>\n<td>10%</td>\n<td>335</td>\n<td>10%</td>\n<td>310</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>20 %</td>\n<td>806</td>\n<td>9%</td>\n<td>242</td>\n<td>7%</td>\n<td>280</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>10 %</td>\n<td>1,039</td>\n<td>12%</td>\n<td>344</td>\n<td>10%</td>\n<td>348</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>0 %</td>\n<td>190</td>\n<td>2%</td>\n<td>72</td>\n<td>2%</td>\n<td>92</td>\n<td>3%</td>\n</tr>\n</tbody>\n</table>\n<h3>In which of the following ways do you work with WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>17,009</td>\n<td></td>\n<td>5,221</td>\n<td></td>\n<td>5,425</td>\n<td></td>\n</tr>\n<tr>\n<td>Build/design and/or maintain websites or blogs for other people, companies, or organizations</td>\n<td>15,342</td>\n<td>34%</td>\n<td>4,795</td>\n<td>34%</td>\n<td>5,064</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Develop or customize themes</td>\n<td>10,549</td>\n<td>24%</td>\n<td>2,997</td>\n<td>21%</td>\n<td>3,021</td>\n<td>20%</td>\n</tr>\n<tr>\n<td>Host websites for customers</td>\n<td>8,142</td>\n<td>18%</td>\n<td>2,466</td>\n<td>17%</td>\n<td>2,728</td>\n<td>18%</td>\n</tr>\n<tr>\n<td>Develop or distribute plugins</td>\n<td>4,125</td>\n<td>9%</td>\n<td>1,395</td>\n<td>10%</td>\n<td>1,416</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Provide educational resources to help others to use WordPress</td>\n<td>3,276</td>\n<td>7%</td>\n<td>1,187</td>\n<td>8%</td>\n<td>1,308</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Sponsor and/or attend WordCamps</td>\n<td>1,559</td>\n<td>4%</td>\n<td>648</td>\n<td>5%</td>\n<td>724</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>Contribute bug reports and/or patches to WordPress core</td>\n<td>1,107</td>\n<td>2%</td>\n<td>381</td>\n<td>3%</td>\n<td>393</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>389</td>\n<td>1%</td>\n<td>243</td>\n<td>2%</td>\n<td>299</td>\n<td>2%</td>\n</tr>\n</tbody>\n</table>\n<h3>How would you describe the business of your typical client(s)?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,863</td>\n<td></td>\n<td>5,151</td>\n<td></td>\n<td>5,353</td>\n<td></td>\n</tr>\n<tr>\n<td>Small business</td>\n<td>14,185</td>\n<td>35%</td>\n<td>4,342</td>\n<td>35%</td>\n<td>4,622</td>\n<td>36%</td>\n</tr>\n<tr>\n<td>Individual</td>\n<td>8,513</td>\n<td>21%</td>\n<td>2,581</td>\n<td>21%</td>\n<td>2,583</td>\n<td>20%</td>\n</tr>\n<tr>\n<td>Non-profit</td>\n<td>6,585</td>\n<td>16%</td>\n<td>2,004</td>\n<td>16%</td>\n<td>2,113</td>\n<td>16%</td>\n</tr>\n<tr>\n<td>Website development (sub-contracting)</td>\n<td>4,301</td>\n<td>11%</td>\n<td>1,258</td>\n<td>10%</td>\n<td>1,216</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Education</td>\n<td>3,458</td>\n<td>8%</td>\n<td>1,049</td>\n<td>8%</td>\n<td>1,139</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Large business or Enterprise</td>\n<td>2,391</td>\n<td>6%</td>\n<td>805</td>\n<td>6%</td>\n<td>857</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>Government</td>\n<td>1,150</td>\n<td>3%</td>\n<td>300</td>\n<td>2%</td>\n<td>329</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>173</td>\n<td>0%</td>\n<td>101</td>\n<td>1%</td>\n<td>99</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>How do you use WordPress in your development?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,768</td>\n<td></td>\n<td>5,145</td>\n<td></td>\n<td>5,372</td>\n<td></td>\n</tr>\n<tr>\n<td>Mostly as a content management system (CMS)</td>\n<td>11,754</td>\n<td>70%</td>\n<td>3,641</td>\n<td>71%</td>\n<td>3,959</td>\n<td>74%</td>\n</tr>\n<tr>\n<td>About half the time as a blogging platform and half the time as a CMS</td>\n<td>2,825</td>\n<td>17%</td>\n<td>812</td>\n<td>16%</td>\n<td>721</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>Mostly as an application framework</td>\n<td>1,012</td>\n<td>6%</td>\n<td>343</td>\n<td>7%</td>\n<td>344</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Mostly as a blogging platform</td>\n<td>992</td>\n<td>6%</td>\n<td>246</td>\n<td>5%</td>\n<td>226</td>\n<td>4%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>185</td>\n<td>1%</td>\n<td>105</td>\n<td>2%</td>\n<td>122</td>\n<td>2%</td>\n</tr>\n</tbody>\n</table>\n<h3>How much is your average WordPress site customized from the original WordPress installation?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,699</td>\n<td></td>\n<td>5,131</td>\n<td></td>\n<td>5,317</td>\n<td></td>\n</tr>\n<tr>\n<td>A lot of work has been done, the front end is unrecognizable, but the Dashboard still looks like the usual WordPress interface.</td>\n<td>9,457</td>\n<td>57%</td>\n<td>2,837</td>\n<td>55%</td>\n<td>2,998</td>\n<td>56%</td>\n</tr>\n<tr>\n<td>There’s a different theme and some plugins have been added.</td>\n<td>5,526</td>\n<td>33%</td>\n<td>1,694</td>\n<td>33%</td>\n<td>1,781</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Not at all, it’s still pretty much the same as the original download.</td>\n<td>977</td>\n<td>6%</td>\n<td>341</td>\n<td>7%</td>\n<td>310</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>You’d never know this was a WordPress installation, everything (including the admin) has been customized.</td>\n<td>739</td>\n<td>4%</td>\n<td>261</td>\n<td>5%</td>\n<td>228</td>\n<td>4%</td>\n</tr>\n</tbody>\n</table>\n<h3>How many currently active WordPress sites have you built? (2015) / Roughly how many currently active WordPress sites have you built? (2016, 2017)</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,690</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>200 +</td>\n<td>514</td>\n<td>3%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>51 – 200</td>\n<td>1,728</td>\n<td>10%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>21 – 50</td>\n<td>3,000</td>\n<td>18%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>11 – 20</td>\n<td>3,146</td>\n<td>19%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>6 – 10</td>\n<td>3,405</td>\n<td>20%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>2 – 5</td>\n<td>3,838</td>\n<td>23%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>1</td>\n<td>698</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>0</td>\n<td>361</td>\n<td>2%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>5,165</td>\n<td></td>\n<td>5367</td>\n<td></td>\n</tr>\n<tr>\n<td>Thousands.</td>\n<td></td>\n<td></td>\n<td>110</td>\n<td>2%</td>\n<td>104</td>\n<td>2%</td>\n</tr>\n<tr>\n<td>Hundreds.</td>\n<td></td>\n<td></td>\n<td>603</td>\n<td>12%</td>\n<td>713</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>Fewer than a hundred.</td>\n<td></td>\n<td></td>\n<td>2,264</td>\n<td>44%</td>\n<td>2,457</td>\n<td>46%</td>\n</tr>\n<tr>\n<td>Just a few, but they are really great.</td>\n<td></td>\n<td></td>\n<td>1,871</td>\n<td>36%</td>\n<td>1,813</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Prefer not to answer.</td>\n<td></td>\n<td></td>\n<td>319</td>\n<td>6%</td>\n<td>280</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>Roughly what percentage of your working time is spent working with WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,658</td>\n<td></td>\n<td>5,039</td>\n<td></td>\n<td>5,241</td>\n<td></td>\n</tr>\n<tr>\n<td>100 %</td>\n<td>949</td>\n<td>6%</td>\n<td>459</td>\n<td>9%</td>\n<td>461</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>90 %</td>\n<td>1,300</td>\n<td>8%</td>\n<td>527</td>\n<td>10%</td>\n<td>540</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>80 %</td>\n<td>1,784</td>\n<td>11%</td>\n<td>637</td>\n<td>13%</td>\n<td>711</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>70 %</td>\n<td>1,850</td>\n<td>11%</td>\n<td>608</td>\n<td>12%</td>\n<td>627</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>60 %</td>\n<td>1,313</td>\n<td>8%</td>\n<td>438</td>\n<td>9%</td>\n<td>465</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>50 %</td>\n<td>2,095</td>\n<td>13%</td>\n<td>612</td>\n<td>12%</td>\n<td>639</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>40 %</td>\n<td>1,438</td>\n<td>9%</td>\n<td>391</td>\n<td>8%</td>\n<td>384</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>30 %</td>\n<td>2,076</td>\n<td>12%</td>\n<td>530</td>\n<td>11%</td>\n<td>511</td>\n<td>10%</td>\n</tr>\n<tr>\n<td>20 %</td>\n<td>1,743</td>\n<td>10%</td>\n<td>445</td>\n<td>9%</td>\n<td>429</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>10 %</td>\n<td>1,819</td>\n<td>11%</td>\n<td>342</td>\n<td>7%</td>\n<td>419</td>\n<td>8%</td>\n</tr>\n<tr>\n<td>0 %</td>\n<td>291</td>\n<td>2%</td>\n<td>52</td>\n<td>1%</td>\n<td>55</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>How many hours of your work does the typical site take to complete? (2015) / How many hours of work does your typical WordPress project take to launch? (2016, 2017)</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Freelancer/Hobbyist</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>16,670</td>\n<td></td>\n<td>5,164</td>\n<td></td>\n<td>5,378</td>\n<td></td>\n</tr>\n<tr>\n<td>More than 200</td>\n<td>503</td>\n<td>3%</td>\n<td>222</td>\n<td>4%</td>\n<td>245</td>\n<td>5%</td>\n</tr>\n<tr>\n<td>100 – 200</td>\n<td>973</td>\n<td>6%</td>\n<td>386</td>\n<td>7%</td>\n<td>393</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>60 – 100</td>\n<td>2,277</td>\n<td>14%</td>\n<td>788</td>\n<td>15%</td>\n<td>815</td>\n<td>15%</td>\n</tr>\n<tr>\n<td>40 – 60</td>\n<td>3,896</td>\n<td>23%</td>\n<td>1,153</td>\n<td>22%</td>\n<td>1,216</td>\n<td>23%</td>\n</tr>\n<tr>\n<td>20 – 40</td>\n<td>6,068</td>\n<td>36%</td>\n<td>1,487</td>\n<td>29%</td>\n<td>1,582</td>\n<td>29%</td>\n</tr>\n<tr>\n<td>Fewer than 20</td>\n<td>2,953</td>\n<td>18%</td>\n<td>712</td>\n<td>14%</td>\n<td>751</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>418</td>\n<td>8%</td>\n<td>376</td>\n<td>7%</td>\n</tr>\n</tbody>\n</table>\n<h3>Which of the following have you done with WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" /> </colgroup>\n</table>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional (Company/Freelancer/Hobbyist)</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>20,687</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve written a theme from scratch.</td>\n<td>11,894</td>\n<td>25%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve written a plugin.</td>\n<td>9,719</td>\n<td>21%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve answered a question in the WordPress forum.</td>\n<td>8,805</td>\n<td>19%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve attended a WordPress meetup.</td>\n<td>4,062</td>\n<td>9%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve submitted a WordPress bug report.</td>\n<td>4,062</td>\n<td>9%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve attended a WordCamp.</td>\n<td>3,571</td>\n<td>8%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve contributed to WordPress documentation.</td>\n<td>1,778</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>1,739</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’ve contributed a WordPress core patch.</td>\n<td>1,055</td>\n<td>2%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n<h3>What’s the best thing about WordPress?<a href=\"https://wordpress.org/news/feed/#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>22,718</td>\n<td></td>\n<td>7,891</td>\n<td></td>\n<td>8,267</td>\n<td></td>\n</tr>\n<tr>\n<td>Easy/simple/user-friendly</td>\n<td>9,450</td>\n<td>42%</td>\n<td>3,454</td>\n<td>44%</td>\n<td>3,852</td>\n<td>47%</td>\n</tr>\n<tr>\n<td>Customizable/extensible/modular/plugins/themes</td>\n<td>8,601</td>\n<td>38%</td>\n<td>3,116</td>\n<td>39%</td>\n<td>3,555</td>\n<td>43%</td>\n</tr>\n<tr>\n<td>Community/support/documentation/help</td>\n<td>3,806</td>\n<td>17%</td>\n<td>1,211</td>\n<td>15%</td>\n<td>1,340</td>\n<td>16%</td>\n</tr>\n<tr>\n<td>Free/open/open source</td>\n<td>2,291</td>\n<td>10%</td>\n<td>802</td>\n<td>10%</td>\n<td>908</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Popular/ubiquitous</td>\n<td>249</td>\n<td>1%</td>\n<td>86</td>\n<td>1%</td>\n<td>187</td>\n<td>2%</td>\n</tr>\n</tbody>\n</table>\n<h3> What’s the most frustrating thing about WordPress?<a href=\"https://wordpress.org/news/feed/#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>21,144</td>\n<td></td>\n<td>7,294</td>\n<td></td>\n<td>7,691</td>\n<td></td>\n</tr>\n<tr>\n<td>Plugins & themes (abandoned/conflicts/coding standards)</td>\n<td>6,122</td>\n<td>29%</td>\n<td>2,194</td>\n<td>30%</td>\n<td>2,187</td>\n<td>28%</td>\n</tr>\n<tr>\n<td>Security/vulnerabilities/hacks</td>\n<td>2,321</td>\n<td>11%</td>\n<td>712</td>\n<td>10%</td>\n<td>829</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Updates</td>\n<td>1,544</td>\n<td>7%</td>\n<td>422</td>\n<td>6%</td>\n<td>508</td>\n<td>7%</td>\n</tr>\n<tr>\n<td>Nothing/I don’t know/can’t think of anything</td>\n<td>1,276</td>\n<td>6%</td>\n<td>344</td>\n<td>5%</td>\n<td>476</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Speed/performance/slow/heavy</td>\n<td>1,196</td>\n<td>6%</td>\n<td>644</td>\n<td>9%</td>\n<td>516</td>\n<td>7%</td>\n</tr>\n</tbody>\n</table>\n<h3>WordPress is as good as, or better than, its main competitors.</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress Professional</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (this question was not asked in the 2015 survey)</td>\n<td></td>\n<td></td>\n<td>8,672</td>\n<td></td>\n<td>9,059</td>\n<td></td>\n</tr>\n<tr>\n<td>Agree</td>\n<td></td>\n<td></td>\n<td>7551</td>\n<td>87%</td>\n<td>7836</td>\n<td>87%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>754</td>\n<td>9%</td>\n<td>795</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Disagree</td>\n<td></td>\n<td></td>\n<td>370</td>\n<td>4%</td>\n<td>428</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h2 id=\"user\">WordPress Users</h2>\n<h3>Which of the following describes how you use WordPress?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>15,169</td>\n<td></td>\n<td>5,043</td>\n<td></td>\n<td>5,521</td>\n<td></td>\n</tr>\n<tr>\n<td>My personal blog (or blogs) uses WordPress.</td>\n<td>9,395</td>\n<td>36%</td>\n<td>3,117</td>\n<td>36%</td>\n<td>3,424</td>\n<td>36%</td>\n</tr>\n<tr>\n<td>My company or organization’s website is built with WordPress software.</td>\n<td>7,480</td>\n<td>29%</td>\n<td>2,519</td>\n<td>29%</td>\n<td>2,841</td>\n<td>30%</td>\n</tr>\n<tr>\n<td>I have a hobby or side project that has a website built with WordPress.</td>\n<td>6,112</td>\n<td>23%</td>\n<td>1,973</td>\n<td>23%</td>\n<td>2,200</td>\n<td>23%</td>\n</tr>\n<tr>\n<td>I write (or otherwise work) for an online publication that uses WordPress.</td>\n<td>2,329</td>\n<td>9%</td>\n<td>806</td>\n<td>9%</td>\n<td>821</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>872</td>\n<td>3%</td>\n<td>234</td>\n<td>3%</td>\n<td>288</td>\n<td>3%</td>\n</tr>\n</tbody>\n</table>\n<h3>Who installed your WordPress website?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>15,055</td>\n<td></td>\n<td>5,020</td>\n<td></td>\n<td>5,523</td>\n<td></td>\n</tr>\n<tr>\n<td>I did.</td>\n<td>11,216</td>\n<td>66%</td>\n<td>3,659</td>\n<td>73%</td>\n<td>4,129</td>\n<td>75%</td>\n</tr>\n<tr>\n<td>My hosting provider</td>\n<td>2,236</td>\n<td>13%</td>\n<td>667</td>\n<td>13%</td>\n<td>767</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>An external company</td>\n<td>909</td>\n<td>5%</td>\n<td>182</td>\n<td>4%</td>\n<td>178</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>An internal web person/team or a colleague</td>\n<td>874</td>\n<td>5%</td>\n<td>178</td>\n<td>4%</td>\n<td>191</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>A friend or family member</td>\n<td>787</td>\n<td>5%</td>\n<td>192</td>\n<td>4%</td>\n<td>172</td>\n<td>3%</td>\n</tr>\n<tr>\n<td>I don’t know</td>\n<td>502</td>\n<td>3%</td>\n<td>145</td>\n<td>3%</td>\n<td>87</td>\n<td>2%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>345</td>\n<td>2%</td>\n<td>n/a</td>\n<td>n/a</td>\n<td>n/a</td>\n<td>n/a</td>\n</tr>\n</tbody>\n</table>\n<h3>How much has the site been customized from the original WordPress installation?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>14,789</td>\n<td></td>\n<td>4,997</td>\n<td></td>\n<td>5,494</td>\n<td></td>\n</tr>\n<tr>\n<td>There’s a different theme and some plugins have been added.</td>\n<td>7,465</td>\n<td>50%</td>\n<td>2,337</td>\n<td>47%</td>\n<td>2,660</td>\n<td>48%</td>\n</tr>\n<tr>\n<td>A lot of work has been done, the site itself is unrecognizable from the original theme, but the Dashboard still looks like the usual WordPress interface.</td>\n<td>4,715</td>\n<td>32%</td>\n<td>1,707</td>\n<td>34%</td>\n<td>1,872</td>\n<td>34%</td>\n</tr>\n<tr>\n<td>Not at all, it’s still pretty much the same as it was when I started out.</td>\n<td>1,841</td>\n<td>12%</td>\n<td>635</td>\n<td>13%</td>\n<td>673</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>You’d never know this was a WordPress installation, everything has been customized.</td>\n<td>768</td>\n<td>5%</td>\n<td>321</td>\n<td>6%</td>\n<td>290</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h3>What’s the best thing about WordPress?<a href=\"https://wordpress.org/news/feed/#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>14,328</td>\n<td></td>\n<td>4,613</td>\n<td></td>\n<td>5,076</td>\n<td></td>\n</tr>\n<tr>\n<td>Easy/simple/user-friendly</td>\n<td>7,391</td>\n<td>52%</td>\n<td>2,276</td>\n<td>49%</td>\n<td>2,511</td>\n<td>49%</td>\n</tr>\n<tr>\n<td>Customizable/extensible/modular/plugins/themes</td>\n<td>4,219</td>\n<td>29%</td>\n<td>1,569</td>\n<td>34%</td>\n<td>1,632</td>\n<td>32%</td>\n</tr>\n<tr>\n<td>Free/open/open source</td>\n<td>1,586</td>\n<td>11%</td>\n<td>493</td>\n<td>11%</td>\n<td>538</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>Community/support/documentation/help</td>\n<td>1,085</td>\n<td>8%</td>\n<td>388</td>\n<td>8%</td>\n<td>458</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Popular/ubiquitous</td>\n<td>223</td>\n<td>2%</td>\n<td>74</td>\n<td>2%</td>\n<td>48</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>What’s the most frustrating thing about WordPress?<a href=\"https://wordpress.org/news/feed/#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td>13,681</td>\n<td></td>\n<td>4,287</td>\n<td></td>\n<td>4,758</td>\n<td></td>\n</tr>\n<tr>\n<td>Plugins & themes (abandoned/conflicts/coding standards)</td>\n<td>2,531</td>\n<td>19%</td>\n<td>1,183</td>\n<td>28%</td>\n<td>1,300</td>\n<td>27%</td>\n</tr>\n<tr>\n<td>Customization/design/look/template</td>\n<td>1,273</td>\n<td>9%</td>\n<td>381</td>\n<td>9%</td>\n<td>408</td>\n<td>9%</td>\n</tr>\n<tr>\n<td>Code/coding/PHP</td>\n<td>931</td>\n<td>7%</td>\n<td>306</td>\n<td>7%</td>\n<td>277</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Updates</td>\n<td>926</td>\n<td>7%</td>\n<td>209</td>\n<td>5%</td>\n<td>296</td>\n<td>6%</td>\n</tr>\n<tr>\n<td>Security/vulnerabilites/hacks</td>\n<td>785</td>\n<td>6%</td>\n<td>255</td>\n<td>6%</td>\n<td>292</td>\n<td>6%</td>\n</tr>\n</tbody>\n</table>\n<h3>WordPress is as good as, or better than, its main competitors.</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: WordPress User</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>5,026</td>\n<td></td>\n<td>5,498</td>\n<td></td>\n</tr>\n<tr>\n<td>Agree</td>\n<td></td>\n<td></td>\n<td>4,038</td>\n<td>80%</td>\n<td>4,462</td>\n<td>81%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>737</td>\n<td>15%</td>\n<td>782</td>\n<td>14%</td>\n</tr>\n<tr>\n<td>Disagree</td>\n<td></td>\n<td></td>\n<td>254</td>\n<td>5%</td>\n<td>255</td>\n<td>5%</td>\n</tr>\n</tbody>\n</table>\n<h2 id=\"all\">All Respondents</h2>\n<h3>Can you (truthfully!) say “I make my living from WordPress”?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (combination of all three groups from 2015; this question was not broken out by group in 2016-2017)</td>\n<td>42,236</td>\n<td></td>\n<td>14,906</td>\n<td></td>\n<td>15,616</td>\n<td></td>\n</tr>\n<tr>\n<td>Not really, but I do get some or all of my income as a result of working with WordPress.</td>\n<td>16,607</td>\n<td>39%</td>\n<td>5,408</td>\n<td>36%</td>\n<td>5,702</td>\n<td>37%</td>\n</tr>\n<tr>\n<td>Yes.</td>\n<td>9,635</td>\n<td>23%</td>\n<td>4,791</td>\n<td>32%</td>\n<td>5,033</td>\n<td>32%</td>\n</tr>\n<tr>\n<td>No.</td>\n<td>15,995</td>\n<td>38%</td>\n<td>4,713</td>\n<td>32%</td>\n<td>4,882</td>\n<td>31%</td>\n</tr>\n</tbody>\n</table>\n<h3>Which devices do you access WordPress on?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (combination of all three groups from 2015; this question was not broken out by group in 2016-2017)</td>\n<td>42,433</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Web</td>\n<td>40,503</td>\n<td>95%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Android phone</td>\n<td>15,396</td>\n<td>36%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>iPhone</td>\n<td>12,353</td>\n<td>29%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>iPad</td>\n<td>11,748</td>\n<td>28%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Android tablet</td>\n<td>9,223</td>\n<td>22%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Desktop app, like MarsEdit</td>\n<td>6,018</td>\n<td>14%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td>1837</td>\n<td>4%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (this question was not broken out by group in 2016-2017)</td>\n<td></td>\n<td></td>\n<td>14,840</td>\n<td></td>\n<td>15,597</td>\n<td></td>\n</tr>\n<tr>\n<td>Web browser on a desktop or laptop</td>\n<td></td>\n<td></td>\n<td>14,160</td>\n<td>54%</td>\n<td>15,052</td>\n<td>55%</td>\n</tr>\n<tr>\n<td>Web browser on a mobile device (tablet or phone)</td>\n<td></td>\n<td></td>\n<td>7,952</td>\n<td>30%</td>\n<td>8,248</td>\n<td>30%</td>\n</tr>\n<tr>\n<td>An app on a mobile device (table or phone)</td>\n<td></td>\n<td></td>\n<td>3,309</td>\n<td>13%</td>\n<td>3,311</td>\n<td>12%</td>\n</tr>\n<tr>\n<td>A desktop app like MarsEdit</td>\n<td></td>\n<td></td>\n<td>517</td>\n<td>2%</td>\n<td>498</td>\n<td>2%</td>\n</tr>\n<tr>\n<td>Other Option</td>\n<td></td>\n<td></td>\n<td>282</td>\n<td>1%</td>\n<td>240</td>\n<td>1%</td>\n</tr>\n</tbody>\n</table>\n<h3>WordPress now updates minor & security releases automatically for you. Check all that apply: (question not asked in 2016, 2017)</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"36\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (combination of all three groups)</td>\n<td>39,726</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I love auto-updates.</td>\n<td>17,367</td>\n<td>44%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’d like to see auto-updates for plugins.</td>\n<td>12,796</td>\n<td>32%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Initially, I was nervous about auto updates.</td>\n<td>11,868</td>\n<td>30%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Auto updates still make me nervous.</td>\n<td>10,809</td>\n<td>27%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Auto updates don’t make me nervous now.</td>\n<td>10,708</td>\n<td>27%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’d like to see auto-updates for themes.</td>\n<td>10,449</td>\n<td>26%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I’d like to see auto updates for major versions of WordPress.</td>\n<td>10,225</td>\n<td>26%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>This is the first I’ve heard of auto-updates.</td>\n<td>8,660</td>\n<td>22%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>I hate auto-updates.</td>\n<td>3,293</td>\n<td>8%</td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n</tbody>\n</table>\n<h3>What is your gender?<a href=\"https://wordpress.org/news/feed/#text\">*</a></h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All respondents (This question was not asked in the 2015 survey.)</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>13,953</td>\n<td></td>\n<td>14,680</td>\n<td></td>\n</tr>\n<tr>\n<td>Male</td>\n<td></td>\n<td></td>\n<td>10,978</td>\n<td>78.68%</td>\n<td>11,570</td>\n<td>78.81%</td>\n</tr>\n<tr>\n<td>Female</td>\n<td></td>\n<td></td>\n<td>2,340</td>\n<td>16.77%</td>\n<td>2,511</td>\n<td>21.70%</td>\n</tr>\n<tr>\n<td>Prefer not to answer</td>\n<td></td>\n<td></td>\n<td>601</td>\n<td>4.31%</td>\n<td>562</td>\n<td>3.83%</td>\n</tr>\n<tr>\n<td>Transgender</td>\n<td></td>\n<td></td>\n<td>11</td>\n<td>0.08%</td>\n<td>8</td>\n<td>0.05%</td>\n</tr>\n<tr>\n<td>Nonbinary</td>\n<td></td>\n<td></td>\n<td>8</td>\n<td>0.06%</td>\n<td>17</td>\n<td>0.12%</td>\n</tr>\n<tr>\n<td>Genderqueer</td>\n<td></td>\n<td></td>\n<td>4</td>\n<td>0.03%</td>\n<td>3</td>\n<td>0.02%</td>\n</tr>\n<tr>\n<td>Androgynous</td>\n<td></td>\n<td></td>\n<td>6</td>\n<td>0.04%</td>\n<td>5</td>\n<td>0.03%</td>\n</tr>\n<tr>\n<td>Fluid</td>\n<td></td>\n<td></td>\n<td>3</td>\n<td>0.02%</td>\n<td>4</td>\n<td>0.03%</td>\n</tr>\n<tr>\n<td>Demimale</td>\n<td></td>\n<td></td>\n<td>2</td>\n<td>0.01%</td>\n<td>0</td>\n<td>0</td>\n</tr>\n</tbody>\n</table>\n<h3>Where are you located?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All respondents (This question was not asked in the 2015 survey.)</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses</td>\n<td></td>\n<td></td>\n<td>14,562</td>\n<td></td>\n<td>15,343</td>\n<td></td>\n</tr>\n<tr>\n<td>United States</td>\n<td></td>\n<td></td>\n<td>3,770</td>\n<td>25.89%</td>\n<td>4,067</td>\n<td>26.51%</td>\n</tr>\n<tr>\n<td>India</td>\n<td></td>\n<td></td>\n<td>1,456</td>\n<td>10.00%</td>\n<td>1,424</td>\n<td>9.28%</td>\n</tr>\n<tr>\n<td>United Kingdom</td>\n<td></td>\n<td></td>\n<td>810</td>\n<td>5.56%</td>\n<td>900</td>\n<td>5.87%</td>\n</tr>\n<tr>\n<td>Germany</td>\n<td></td>\n<td></td>\n<td>555</td>\n<td>3.81%</td>\n<td>729</td>\n<td>4.75%</td>\n</tr>\n<tr>\n<td>Canada</td>\n<td></td>\n<td></td>\n<td>511</td>\n<td>3.51%</td>\n<td>599</td>\n<td>3.90%</td>\n</tr>\n<tr>\n<td>Australia</td>\n<td></td>\n<td></td>\n<td>389</td>\n<td>2.67%</td>\n<td>460</td>\n<td>3.00%</td>\n</tr>\n<tr>\n<td>Italy</td>\n<td></td>\n<td></td>\n<td>298</td>\n<td>2.05%</td>\n<td>356</td>\n<td>2.32%</td>\n</tr>\n<tr>\n<td>Netherlands</td>\n<td></td>\n<td></td>\n<td>343</td>\n<td>2.36%</td>\n<td>350</td>\n<td>2.28%</td>\n</tr>\n<tr>\n<td>France</td>\n<td></td>\n<td></td>\n<td>232</td>\n<td>1.59%</td>\n<td>283</td>\n<td>1.84%</td>\n</tr>\n<tr>\n<td>Bangladesh</td>\n<td></td>\n<td></td>\n<td>257</td>\n<td>1.76%</td>\n<td>263</td>\n<td>1.71%</td>\n</tr>\n<tr>\n<td>Spain</td>\n<td></td>\n<td></td>\n<td>271</td>\n<td>1.86%</td>\n<td>252</td>\n<td>1.64%</td>\n</tr>\n<tr>\n<td>Brazil</td>\n<td></td>\n<td></td>\n<td>239</td>\n<td>1.64%</td>\n<td>251</td>\n<td>1.64%</td>\n</tr>\n<tr>\n<td>Pakistan</td>\n<td></td>\n<td></td>\n<td>254</td>\n<td>1.74%</td>\n<td>240</td>\n<td>1.56%</td>\n</tr>\n<tr>\n<td>Indonesia</td>\n<td></td>\n<td></td>\n<td>230</td>\n<td>1.58%</td>\n<td>226</td>\n<td>1.47%</td>\n</tr>\n<tr>\n<td>Iran, Islamic Republic of</td>\n<td></td>\n<td></td>\n<td>190</td>\n<td>1.30%</td>\n<td>173</td>\n<td>1.13%</td>\n</tr>\n<tr>\n<td>Sweden</td>\n<td></td>\n<td></td>\n<td>144</td>\n<td>0.99%</td>\n<td>173</td>\n<td>1.13%</td>\n</tr>\n<tr>\n<td>Nigeria</td>\n<td></td>\n<td></td>\n<td>196</td>\n<td>1.35%</td>\n<td>172</td>\n<td>1.12%</td>\n</tr>\n<tr>\n<td>South Africa</td>\n<td></td>\n<td></td>\n<td>193</td>\n<td>1.33%</td>\n<td>172</td>\n<td>1.12%</td>\n</tr>\n<tr>\n<td>Russian Federation</td>\n<td></td>\n<td></td>\n<td>181</td>\n<td>1.24%</td>\n<td>151</td>\n<td>0.98%</td>\n</tr>\n<tr>\n<td>Poland</td>\n<td></td>\n<td></td>\n<td>129</td>\n<td>0.89%</td>\n<td>137</td>\n<td>0.89%</td>\n</tr>\n<tr>\n<td>Romania</td>\n<td></td>\n<td></td>\n<td>144</td>\n<td>0.99%</td>\n<td>132</td>\n<td>0.86%</td>\n</tr>\n<tr>\n<td>Switzerland</td>\n<td></td>\n<td></td>\n<td>122</td>\n<td>0.84%</td>\n<td>130</td>\n<td>0.85%</td>\n</tr>\n<tr>\n<td>Philippines</td>\n<td></td>\n<td></td>\n<td>92</td>\n<td>0.63%</td>\n<td>125</td>\n<td>0.81%</td>\n</tr>\n<tr>\n<td>China</td>\n<td></td>\n<td></td>\n<td>136</td>\n<td>0.93%</td>\n<td>123</td>\n<td>0.80%</td>\n</tr>\n<tr>\n<td>Austria</td>\n<td></td>\n<td></td>\n<td>89</td>\n<td>0.61%</td>\n<td>122</td>\n<td>0.80%</td>\n</tr>\n<tr>\n<td>Ukraine</td>\n<td></td>\n<td></td>\n<td>105</td>\n<td>0.72%</td>\n<td>118</td>\n<td>0.77%</td>\n</tr>\n<tr>\n<td>Denmark</td>\n<td></td>\n<td></td>\n<td>107</td>\n<td>0.73%</td>\n<td>114</td>\n<td>0.74%</td>\n</tr>\n<tr>\n<td>Greece</td>\n<td></td>\n<td></td>\n<td>120</td>\n<td>0.82%</td>\n<td>114</td>\n<td>0.74%</td>\n</tr>\n<tr>\n<td>Portugal</td>\n<td></td>\n<td></td>\n<td>94</td>\n<td>0.65%</td>\n<td>109</td>\n<td>0.71%</td>\n</tr>\n<tr>\n<td>Vietnam</td>\n<td></td>\n<td></td>\n<td>101</td>\n<td>0.69%</td>\n<td>108</td>\n<td>0.70%</td>\n</tr>\n<tr>\n<td>Mexico</td>\n<td></td>\n<td></td>\n<td>94</td>\n<td>0.65%</td>\n<td>105</td>\n<td>0.68%</td>\n</tr>\n<tr>\n<td>Nepal</td>\n<td></td>\n<td></td>\n<td>76</td>\n<td>0.52%</td>\n<td>97</td>\n<td>0.63%</td>\n</tr>\n<tr>\n<td>Ireland</td>\n<td></td>\n<td></td>\n<td>72</td>\n<td>0.49%</td>\n<td>94</td>\n<td>0.61%</td>\n</tr>\n<tr>\n<td>Israel</td>\n<td></td>\n<td></td>\n<td>78</td>\n<td>0.54%</td>\n<td>94</td>\n<td>0.61%</td>\n</tr>\n<tr>\n<td>New Zealand</td>\n<td></td>\n<td></td>\n<td>77</td>\n<td>0.53%</td>\n<td>91</td>\n<td>0.59%</td>\n</tr>\n<tr>\n<td>Finland</td>\n<td></td>\n<td></td>\n<td>63</td>\n<td>0.43%</td>\n<td>90</td>\n<td>0.59%</td>\n</tr>\n<tr>\n<td>Turkey</td>\n<td></td>\n<td></td>\n<td>91</td>\n<td>0.62%</td>\n<td>86</td>\n<td>0.56%</td>\n</tr>\n<tr>\n<td>Malaysia</td>\n<td></td>\n<td></td>\n<td>91</td>\n<td>0.62%</td>\n<td>81</td>\n<td>0.53%</td>\n</tr>\n<tr>\n<td>Belgium</td>\n<td></td>\n<td></td>\n<td>84</td>\n<td>0.58%</td>\n<td>79</td>\n<td>0.51%</td>\n</tr>\n<tr>\n<td>Norway</td>\n<td></td>\n<td></td>\n<td>66</td>\n<td>0.45%</td>\n<td>79</td>\n<td>0.51%</td>\n</tr>\n<tr>\n<td>Argentina</td>\n<td></td>\n<td></td>\n<td>65</td>\n<td>0.45%</td>\n<td>76</td>\n<td>0.50%</td>\n</tr>\n<tr>\n<td>Bulgaria</td>\n<td></td>\n<td></td>\n<td>74</td>\n<td>0.51%</td>\n<td>72</td>\n<td>0.47%</td>\n</tr>\n<tr>\n<td>Japan</td>\n<td></td>\n<td></td>\n<td>61</td>\n<td>0.42%</td>\n<td>68</td>\n<td>0.44%</td>\n</tr>\n<tr>\n<td>Thailand</td>\n<td></td>\n<td></td>\n<td>69</td>\n<td>0.47%</td>\n<td>67</td>\n<td>0.44%</td>\n</tr>\n<tr>\n<td>Czech Republic</td>\n<td></td>\n<td></td>\n<td>76</td>\n<td>0.52%</td>\n<td>66</td>\n<td>0.43%</td>\n</tr>\n<tr>\n<td>Serbia</td>\n<td></td>\n<td></td>\n<td>89</td>\n<td>0.61%</td>\n<td>63</td>\n<td>0.41%</td>\n</tr>\n<tr>\n<td>Kenya</td>\n<td></td>\n<td></td>\n<td>58</td>\n<td>0.40%</td>\n<td>62</td>\n<td>0.40%</td>\n</tr>\n<tr>\n<td>Colombia</td>\n<td></td>\n<td></td>\n<td>39</td>\n<td>0.27%</td>\n<td>59</td>\n<td>0.38%</td>\n</tr>\n<tr>\n<td>Egypt</td>\n<td></td>\n<td></td>\n<td>40</td>\n<td>0.27%</td>\n<td>52</td>\n<td>0.34%</td>\n</tr>\n</tbody>\n</table>\n<h3>What is your age?</h3>\n<table dir=\"ltr\" border=\"1\" cellspacing=\"0\" cellpadding=\"0\">\n<colgroup>\n<col width=\"554\" />\n<col width=\"47\" />\n<col width=\"36\" />\n<col width=\"47\" />\n<col width=\"51\" />\n<col width=\"47\" />\n<col width=\"51\" /></colgroup>\n<tbody>\n<tr>\n<td></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2015</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2016</strong></td>\n<td colspan=\"2\" rowspan=\"1\"><strong>2017</strong></td>\n</tr>\n<tr>\n<td><em>Group: All Respondents</em></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n<td></td>\n</tr>\n<tr>\n<td>Number of responses (This question was not asked in 2015.)</td>\n<td></td>\n<td></td>\n<td>14,944</td>\n<td></td>\n<td>15,636</td>\n<td></td>\n</tr>\n<tr>\n<td>60 and over</td>\n<td></td>\n<td></td>\n<td>1,139</td>\n<td>8%</td>\n<td>1,641</td>\n<td>11%</td>\n</tr>\n<tr>\n<td>50-59</td>\n<td></td>\n<td></td>\n<td>1,537</td>\n<td>10%</td>\n<td>1,996</td>\n<td>13%</td>\n</tr>\n<tr>\n<td>40-49</td>\n<td></td>\n<td></td>\n<td>2,205</td>\n<td>15%</td>\n<td>2,643</td>\n<td>17%</td>\n</tr>\n<tr>\n<td>30-39</td>\n<td></td>\n<td></td>\n<td>3,914</td>\n<td>26%</td>\n<td>3,972</td>\n<td>25%</td>\n</tr>\n<tr>\n<td>20-29</td>\n<td></td>\n<td></td>\n<td>5,013</td>\n<td>34%</td>\n<td>4,444</td>\n<td>28%</td>\n</tr>\n<tr>\n<td>Under 20</td>\n<td></td>\n<td></td>\n<td>1142</td>\n<td>8%</td>\n<td>941</td>\n<td>6%</td>\n</tr>\n</tbody>\n</table>\n<p>Thank you to everyone who made time to fill out the survey — we’re so happy you use WordPress, and we’re very grateful that you’re willing to share your experiences with us! Thanks also to everyone who spread the word about this survey, and to those of you who read all the way to the bottom of this post. <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f609.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n<p><small><a id=\"text\"></a>*Text Field Questions: Each survey included some questions that could be answered only by filling out a text field. In the case of the questions “What is the best thing about WordPress?” and “What is the most frustrating thing about WordPress?” we listed the five most common responses, aggregated when applicable. In the case of the question “What is your gender?” in the 2016 and 2017 surveys, we aggregated responses as best we could. Responses meant to obscure respondents’ gender entirely are aggregated in “prefer not to answer.”</small></p>\";s: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 Dec 2017 21:40: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:16:\"Andrea Middleton\";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:82:\"WPTavern: WPWeekly Episode 298 – GDPR, User Privacy, and More With Heather Burns\";s:7:\"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=77110&preview=true&preview_id=77110\";s:7:\"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:87:\"https://wptavern.com/wpweekly-episode-298-gdpr-user-privacy-and-more-with-heather-burns\";s: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:2570:\"<p>In this episode, <a href=\"https://jjj.blog/\">John James Jacoby</a> and I are joined by <a href=\"https://twitter.com/webdevlaw?lang=en\">Heather Burns</a>, Founder of <a href=\"https://webdevlaw.uk/\">WebDevLaw</a>. We have a lengthy discussion about <a href=\"https://www.eugdpr.org/\">GDPR</a> (General Data Protection Regulation), what it is, what’s at stake, and its potential impacts on the WordPress ecosystem. We also discuss the cultural differences between the North American and European views on user privacy.</p>\n<p>When asked what she hopes to see as we approach May of 2018, Burns replied:</p>\n<p>“I want to see all hands on deck making WordPress a force for good, that people can trust, and that people can be empowered to change for the better. Don’t let the fact that it involves law put you off. GDPR is a toolkit for empowerment, it’s a means for protecting and safeguarding your users in these quite scary times we’re living in. And it will make you a better developer and site administrator in the end.”</p>\n<p>For questions related to GDPR or how to make your site or WordPress plugins compliant, <a href=\"https://webdevlaw.uk/\">please get in touch with Burns</a>. You can also <a href=\"https://videopress.com/v/JkKwb2zi\">view her presentation</a> on WordPress.TV from WordCamp Belfast, 2016.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/wp-site-care-acquires-wp-radius\">WP Site Care Acquires WP Radius</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://frontenberg.tomjn.com/\">Frontenberg</a> by Tom J. Nowell is a new site that displays Gutenberg to the frontend of WordPress. It allows visitors to tinker with Gutenberg without having to login to a site or install a plugin.</p>\n<p>John gave props to <a href=\"https://github.com/renatonascalves\">Renato Alves</a> who has been working on adding WP-CLI support for <a href=\"https://github.com/bbpress/wp-cli-bbpress\">bbPress</a> and <a href=\"https://github.com/buddypress/wp-cli-buddypress\">BuddyPress</a>.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, December 27th 18th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p><strong>Listen To Episode #298:</strong><br />\n</p>\";s: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 Dec 2017 01:21: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: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:24:\"Matt: Design in Kentucky\";s:7:\"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=47730\";s:7:\"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:41:\"https://ma.tt/2017/12/design-in-kentucky/\";s: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:352:\"<p>Fast Company Design has written <a href=\"https://www.fastcodesign.com/90154530/tech-has-a-diversity-problem-so-this-designer-went-to-kentucky\">Tech Has A Diversity Problem–So This Designer Went To Kentucky</a>, about John Maeda's work pairing some of the top designers in the world with students in Paintsville, Kentucky. </p>\n\n\n\n<p></p>\";s: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 Dec 2017 21:17: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: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: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:41:\"WPTavern: WP Site Care Acquires WP Radius\";s:7:\"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=77086\";s:7:\"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://wptavern.com/wp-site-care-acquires-wp-radius\";s: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:1407:\"<p><a href=\"https://www.wpsitecare.com\">WP Site Care</a>, a WordPress management and maintenance service provider<a href=\"https://www.wpsitecare.com/weve-acquired-wp-radius/\"> has acquired</a> <a href=\"https://www.wpradius.com/\">WP Radius</a>. Ryan Sullivan, Founder of WP Site Care, says the acquisition has been in the works for some time. </p>\n\n\n\n<p>\"We’ve been working toward growing our customer base and learning about new business models in the WordPress support space for quite some time, and the WP Radius acquisition allows us to accomplish both of those goals,\" he said.<br /></p>\n\n\n\n<p>The move increases WP Site Care's customer base by 20% and will allow it to experiment with <a href=\"https://www.wpradius.com/plans/\">an unlimited jobs model</a>, something that set WP Radius apart. </p>\n\n\n\n<p>\"We’ve been very interested in the unlimited jobs model and what that really means from an operations standpoint for quite some time, and whether or not it’s <em>actually</em> better for customers, so this move will allow us to learn a lot more about how that all plays out in the real world,\" Sullivan said.</p>\n\n\n\n<p>WP Radius will continue to operate as a separate entity and will eventually be consolidated into the WP Site Care brand. </p>\n\n\n\n<p>WP Radius was founded in 2015 by Todd Schwartzfarb and Brandon Yanofsky. Financial details of the acquisition were not disclosed. </p>\";s: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 Dec 2017 19:38: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:\"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: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:51:\"HeroPress: WordPress allowed me to have a Dream Job\";s:7:\"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=2357\";s:7:\"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:128:\"https://heropress.com/essays/wordpress-allowed-dream-job/#utm_source=rss&utm_medium=rss&utm_campaign=wordpress-allowed-dream-job\";s: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:13902:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/121917-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: You know that you should never stop dreaming, right?\" /><p>I was always interested in computers but I did not know I would become a developer. As a kid, a dream job, was playing and reviewing video games. I believe, many kids had a similar dream job. I guess, that’s where I started seeing a dream job would be a job where you would be happy to go to and maybe even sad when going from it.</p>\n<p>Today, I see myself as having a dream job. Let me tell you how I got to my current situation.</p>\n<h3>Programming was not for me</h3>\n<p>While going to high school, I was introduced to programming. We did some Turbo C++ and I could not understand a thing. Even a simple for-loop was hard for me. I would rather play Counter-Strike with friends who attended that class. After that, as I did not understand programming, I chose not to follow such career path. I did not want my parents to pay for my college expenses since I would have to go to another city. Especially since I realised I don’t understand how to code.</p>\n<p>Since I live in Croatia, I did not have access to a high speed internet. At that time, a high speed internet was an ADSL with a download speed of 200kb/s.</p>\n<blockquote><p>I was using the 56k modem which was too expensive so I had only 2 hours per week to spend on it.</p></blockquote>\n<p>I used those 2 hours for playing games instead of learning.</p>\n<p>Once I got the ADSL, somewhere near the end of high school, I was able to get my hands on Photoshop and learned how to manipulate images. After high school, I went to the Maritime College but soon after I knew I did not want to spend years and years working on ships, not seeing my family or friends. That was not my dream job.</p>\n<h3>Second Try</h3>\n<p>I decided to give another chance to programming, but with a different learning path. Since I already knew how to use Photoshop, I realized there was an option “Slice for Web..”. That was my first introduction to web development.</p>\n<p>I knew having a web page composed of images from Photoshop was not how it should be done. I was used to 56k modem and I knew how a page like that would take long to load.</p>\n<p>The luck was on my side now since I had ADSL and I could spend hours and hours weekly search the Internet. I searched how to slice images and prepare them for web pages by reading PSD Tuts+. Back then there were only PSD and Net TutsPlus sites in their network.</p>\n<p>I learned a lot on PSD to HTML and how to use CSS to style your web sites. After that, I wanted to learn how do blogging sites work. How do they show those articles. I mean, it couldn’t be that for each article, they would open one HTML file and edit it. That’s just too much work. So, I found about PHP and MySQL and got some courses on Lynda on that.</p>\n<p>I learned about creating a blog using PHP and MySQL. I also learned a little on advanced coding and I was really happy with my knowledge. All that was just a month or two from where I knew nothing on programming.</p>\n<h3>Looking for a CMS</h3>\n<p>With my knowledge, I knew how to build various types of sites. I asked other businesses if I could build a site for them in return of a favour or even product. Some of them were up to that. I didn’t want to charge since I knew I still had a lot to learn.</p>\n<p>After a while, I was a bit tired (read: lazy) of building SQL tables and all the base functions for each project. I wanted to see if there are some tools I could use for a faster development. Something that would give me a starting point with basic functionalities such as content, users, settings etc.</p>\n<p>After reading a lot of tutorials on PHP, I also read about Joomla, WordPress and similar. So I went for both. I was so confused by Joomla and how everything I wanted to do required me several clicks. After that, I tried WordPress. I loved it. Joomla had articles, which you could set as pages. WordPress had Posts and Pages. I really loved how everything was so easy to setup. At that time, there were no custom post types or featured images, but I did not need them yet. I was just beginning my journey with WordPress.</p>\n<p>From there forward I downloaded many themes and plugins just to read their code and learn how they’ve been developed.</p>\n<h3>The First Breadcrumbs & Disappointments</h3>\n<p>Even though I did not know too much, I did know how to develop something, how to use a library and integrate it into my own and so on.</p>\n<blockquote><p>The first time I realised that WordPress could help me have a dream job is when I created a simple Dropbox plugin for my own needs.</p></blockquote>\n<p>Once I’ve built it and scanned through CodeCanyon, I saw there was nothing like that (now there are several). So I went and uploaded it there. It went live after a week or so.</p>\n<p>I did not expect much from it. I could gather around $300 from it after several months. As a college student who didn’t work on a side job, such income was really great for me.</p>\n<p>That is where it all started for me. I decided to use WordPress for any new projects and build custom ones to learn more.</p>\n<p>Don’t get me wrong. It was not so easy to get new projects. I did get a job as a student which was a failure in the sense that I did not get paid for it. I also had another freelancing experience that was not good. But that did not let me down.</p>\n<p>You WILL get those clients from hell. It is something I think most of us get to know. But in time, you will learn how to identify such clients and pass on such projects.</p>\n<p>Fast forward a year and I got a job where I did not use WordPress. But I did not intend to leave it. I joined Elance (now Upwork) so I could earn some side money using WordPress.</p>\n<p>I did not earn anything on Elance and on my daily job, for a year, I was getting only 60% of the monthly paycheck because the Company did not have enough money. Somehow they did get the other 40% by the end of the month.</p>\n<p>But can you imagine how stressful was that? You can never know if you can travel or save some money. I could not afford purchasing a course which could improve my knowledge.</p>\n<p>I had a job where I liked to work, but the money situation was really stressful and I did not want to rely just on the company. WordPress to the rescue!</p>\n<h3>WordPress Community</h3>\n<p>Not long after, I learned about WordPress Croatia. Before that, I never used social media for such discussions and networking. That Facebook group was the first group I joined to discuss about WordPress and help each other.</p>\n<p>That was really a great experience. I learned about WordCamps and Meetups and that group pushed me into making my first eBook on WordPress. Another product I was able to earn some side money which involved WordPress. My mindset started to change.</p>\n<blockquote><p>By helping others through teaching and discussion, I can also help the WordPress Community.</p></blockquote>\n<p>My first experience on public speaking was on a WordPress Meetup in Zagreb. I would never go if I was not invited by Emanuel Blagonić. A great guy who with his brother Lucijan and several other folks really started a WordPress movement in Croatia.</p>\n<p>I never seen anything like that before. People helping each others, going so much to take their own free time to fix or at least investigate a bug on someone else’s site. I really liked it and wanted to be a part of such a community.</p>\n<p>Even if such a community does not help you directly to land a job or get a new gig, it really does help you indirectly with all the knowledge that is shared (from development to business).</p>\n<h3>Teaching & Job Opportunities</h3>\n<p>Because of the WordPress community in Croatia, I wanted to help by teaching others. So I also started a site where I have written a lot of tutorials on WordPress development. That site was in Croatian so people can start much sooner (even if they don’t know English).</p>\n<p>I used to sleep only for 2 to 3 hours so I could get up much earlier and start to write tutorials or make videos. I did not have a microphone at first, so I used a webcam as a microphone. You can imagine how awful the audio was. Even if it’s in Croatian, you can check the quality of it on <a href=\"https://www.youtube.com/channel/UCzcRclnBSnJRPM5h4PfnqWw\">YouTube</a>.</p>\n<blockquote><p>But I was really happy I could help someone who knows less than me.</p></blockquote>\n<p>By teaching, I have learned a lot and I am so thankful to the community which was one of the reasons I kept going like that. I also got invited to several WordPress projects just because people saw me as someone who understands WordPress.</p>\n<h3>WordCamps & WebCamps</h3>\n<p>You can make friends there. Seems a bit odd maybe, but you can. Due to the community I made some friends such as Ana & Marko from <a href=\"https://www.anarieldesign.com/\">anarieldesign.com</a> and Goran Jakovljević from <a href=\"https://wpgens.com/\">wpgens.com</a>.</p>\n<p>We have become friends through the community on social media. I’ve met them all just after a year or so on WordCamp Zagreb 2017. But we talked as if we were friends for years and years. I’ve seen how people from all over the world talk to each other and how a friendly and welcoming this WordPress Community is.</p>\n<p>Even today, I frequently talk to all of them and we help each other as we can. That is something that you can’t have everywhere.</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/codeable.png\"><img class=\"alignleft size-medium wp-image-2359\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/codeable-300x270.png\" alt=\"Codeable sticker on a ski helmet\" width=\"300\" height=\"270\" /></a>My dream job progress came after WebCamp Zagreb 2016 where I met other people from the IT community. I got introduced to Toptal and just a month from it, I joined Toptal. Codeable was also something I wanted to try and I did. As if those platform communicated together, I got invited into <a href=\"https://codeable.io/\">Codeable</a> a week after I joined <a href=\"https://www.toptal.com/\">Toptal</a>.</p>\n<p>That is where it all has started getting real to me. I was able to freelance as much as I wanted and when I wanted. It was the first time I could go do my hobbies without worrying about money.</p>\n<h3>The Dream Job we all seek</h3>\n<p>My definition of a dream job is the feeling when you’re waking up happy and not sad because you have to go to work. Such job should also challenge you so you learn something new. Sometimes it may even get you out of your comfort zone, but you’ll be a better person because of it.</p>\n<p>I still have an occupied day, working on a daily job and then working with my own clients. It may not suit all. But I am finally able to feel somehow financially free, going happy to work and making friends while doing it. Even if I don’t have any side projects, I am working on my plugins and writing tutorials on my own site (I love it).</p>\n<p>Today, for the first time, I am planning to go to a WordCamp outside Croatia.</p>\n<p><strong>That is all thanks to WordPress.</strong></p>\n<p>You know that you should never stop dreaming, right?</p>\n<p>I guess, I wanted to let you know that WordPress can help you get a dream job! It can be something totally different, but as long as it involves Internet, I think WordPress can help you with it.</p>\n<p><strong>WordPress would not be where it is today if it was not to the whole WordPress Community. So, thanks to all involved in it!</strong></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: WordPress allowed me to have a Dream Job\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=WordPress%20allowed%20me%20to%20have%20a%20Dream%20Job&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-allowed-dream-job%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: WordPress allowed me to have a Dream Job\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-allowed-dream-job%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-allowed-dream-job%2F&title=WordPress+allowed+me+to+have+a+Dream+Job\" rel=\"nofollow\" target=\"_blank\" title=\"Share: WordPress allowed me to have a Dream Job\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/wordpress-allowed-dream-job/&media=https://heropress.com/wp-content/uploads/2017/12/121917-150x150.jpg&description=WordPress allowed me to have a Dream Job\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: WordPress allowed me to have a Dream Job\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/wordpress-allowed-dream-job/\" title=\"WordPress allowed me to have a Dream Job\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/wordpress-allowed-dream-job/\">WordPress allowed me to have a Dream Job</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s: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 Dec 2017 07: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:\"Igor Benić\";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:71:\"Akismet: Version 4.0.2 of the Akismet WordPress Plugin Is Now Available\";s:7:\"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.akismet.com/?p=1982\";s:7:\"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:99:\"https://blog.akismet.com/2017/12/18/version-4-0-2-of-the-akismet-wordpress-plugin-is-now-available/\";s: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:1161:\"<p>Version 4.0.2 of <a href=\"http://wordpress.org/plugins/akismet/\">the Akismet plugin for WordPress</a> is now available.</p>\n<p>4.0.2 contains a few helpful changes:</p>\n<ul>\n<li class=\"p1\"><span class=\"s1\">Fixed a bug that could cause Akismet to recheck a comment that has already been manually approved or marked as spam.</span></li>\n<li class=\"p1\"><span class=\"s1\">Fixed a bug that could cause Akismet to claim that some comments are still waiting to be checked when no comments are waiting to be checked.</span></li>\n</ul>\n<p>To upgrade, visit the Updates page of your WordPress dashboard and follow the instructions. If you need to download the plugin zip file directly, links to all versions are available in <a href=\"http://wordpress.org/plugins/akismet/\">the WordPress plugins directory</a>.</p><br /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/akismet.wordpress.com/1982/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/akismet.wordpress.com/1982/\" /></a> <img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=blog.akismet.com&blog=116920&post=1982&subd=akismet&ref=&feed=1\" width=\"1\" height=\"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:\"Mon, 18 Dec 2017 16: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:14:\"Stephane Daury\";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:69:\"WPTavern: Jetpack 5.6.1 Increases Security of the Contact Form Module\";s:7:\"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=77061\";s:7:\"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:80:\"https://wptavern.com/jetpack-5-6-1-increases-security-of-the-contact-form-module\";s: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:575:\"<p>Jetpack has <a href=\"https://jetpack.com/2017/12/14/jetpack-5-6-1/\">released version 5.6.1</a> which hardens the Contact Form module by improving permissions checking when updating a form's settings. In addition to security fixes, the character count for when Publicize publishes content to Twitter has been increased to 280. </p>\n\n\n\n<p>This release also fixes a bug that disabled the ability to save widgets after removing a Widget Visibility rule. Users are encouraged to update as soon as possible, especially if you make heavy use of the Contact Form module. </p>\";s: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, 15 Dec 2017 22:49: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: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: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:57:\"WPTavern: WPWeekly Episode 297 – WordCamp US 2017 Recap\";s:7:\"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=77042&preview=true&preview_id=77042\";s:7:\"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/wpweekly-episode-297-wordcamp-us-2017-recap\";s: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:2715:\"<p>In this episode, <a href=\"https://jjj.blog/\">John James Jacoby</a> and I are joined by <a href=\"https://mor10.com/\">Morten Rand-Hendriksen</a>. We have an engaging conversation about WordCamp US 2017, Gutenberg, and what it’s going to take for it to succeed. Rand-Hendriksen shared what he thinks are <a href=\"https://mor10.com/gutenberg-and-the-future-of-wordpress-conditions-for-success/\">the three conditions</a> that need to be met before Gutenberg can be shipped.</p>\n<p>Near the end of the show, we discuss the possible impacts Gutenberg’s timeline may have on the WordPress economy. Jacoby and I round out the show by reviewing the 2017 State of the Word and our picks of the week.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/storify-to-close-may-16-2018-wordpress-plugin-discontinued\">Storify to Close May 16, 2018, WordPress Plugin Discontinued</a><br />\n<a href=\"https://wptavern.com/gutenberg-and-the-wordpress-of-tomorrow-by-morten-rand-hendriksen\" rel=\"bookmark\">Gutenberg and the WordPress of Tomorrow by Morten Rand-Hendriksen</a><br />\n<a href=\"https://bridgetwillard.com/economic-impact-timeline-gutenberg-rollout/\">The Economic Impact of the Timeline of the Gutenberg Rollout</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://www.copytrans.net/copytransheic/\">CopyTrans</a> is a plugin for Windows to view HEIC files. In iOS 11, Apple started using HEIC/HEIF. HEIF stands for High Efficiency Image Format, and, as the name suggests, is a more streamlined way to store image files. It allows digital photographs to be created in smaller files sizes while retaining higher image quality than its JPEG alternative. The image format is currently not supported in Windows 7, 8, and 10.</p>\n<p>CopyTrans HEIC for Windows is a simple Windows plugin that allows you to open HEIC files using Windows Photo Viewer. This format is also <a href=\"https://core.trac.wordpress.org/ticket/42775\">not compatible with WordPress.</a></p>\n<p><a href=\"http://github.com/10up/wpsnapshots\">WP Snapshots</a> is a command line interface (CLI) tool by 10Up that empowers engineering teams to quickly share WordPress projects, including files and the database.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, December 20th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p><strong>Listen To Episode #297:</strong> </p>\";s: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, 14 Dec 2017 00:59: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:\"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: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:48:\"HeroPress: Finding My Way Out Of My Comfort Zone\";s:7:\"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=2341\";s:7:\"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:122:\"https://heropress.com/essays/finding-way-comfort-zone/#utm_source=rss&utm_medium=rss&utm_campaign=finding-way-comfort-zone\";s: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:20331:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/121317-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: As web developers, programmers, people who speak English, people who have internet access to read this article, are incredibly, very, very, very lucky.\" /><p>I don’t remember when we had a computer for the first time. I practically grew up with them. Hungary was a communist country when I was born in ’84, so while everyone had a job, no one could really do their own thing. Everything was state owned.</p>\n<p>In 1989-1990 there was a change of regime which followed the collapse of the Berlin wall, and suddenly the country became a democracy, and people were free to start and own companies. Yes, the era also had other problems, like 35% inflation at one point, but at least we were “free”.</p>\n<p>My parents started out by importing computers from Hong Kong. That was a huge thing. We had one of the first of those, a 286 with a whopping speed of 8 Mhz which went up to 16 if I pressed the Turbo button! I had no idea what that meant though besides the number being higher.</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/young_gabor.jpg\"><img class=\"aligncenter size-large wp-image-2343\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/young_gabor-1024x576.jpg\" alt=\"Gabor about age 3, at a computer\" width=\"960\" height=\"540\" /></a></p>\n<p>It was a good time of Sim City, Prince of Persia, and Sokoban.</p>\n<h3>Finding the Web</h3>\n<p>My first “website” was one my grandmother asked me to make for her Quaker group. I was 12. I created it with tables and inline styling (CSS wasn’t a thing back then), but never got it live – hosting wasn’t something I really knew about.</p>\n<p>Fast forward to 2003 when I started university studying architecture in Budapest. It was fun, I loved physics, I loved drawing, I loved math, I <em>especially</em> loved descriptive geometry! The latter is pretty much “how to represent a 3d thing on a sheet of paper”. Incidentally that brought me my first high paying consulting job. As a student in 2nd year I coached a student in first year in descriptive geometry – he had broken his leg so couldn’t actually make the classes, but he had to pass that subject to advance. So every week I would go to their house and spend about 3 hours helping him draw and figure out how to draw what to draw and why to draw those things that way. That experience taught him everything he needed to know to pass with a 4 (on a scale of 5, 5 being best), which translates to around 80%. I had my first satisfied customer. <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /></p>\n<p>It also taught me two very important things:</p>\n<ol>\n<li>if you’re good at it, they will overlook the fact that you’re not actually “qualified” to do the thing (I wasn’t a TA / lecturer. I was merely another student in an upper class. An upperclassman. 先輩)</li>\n<li>if you’re good at it, you can charge people a lot more than you otherwise think. I got paid about 3x the standard hourly wage of adults working the majority of hourly jobs, and as a student, that was awesome!</li>\n</ol>\n<p>For context though, there is no tuition fee for your first degree (i.e.: it’s paid for by the government for you which gets that money from taxes).</p>\n<p>The second formative experience was between 2004-2006. I joined an extracurricular architecture club. Basically students who don’t just want to bumble through the university but actually get good! Like, REALLY GOOD. We pitched to host EASA – European Architecture Students’ Assembly – in Budapest in 2006. For that we needed a website, both an internal forum, and a public facing site for sponsors / attendees / workshops / visitors / everyone.</p>\n<p>I knew nothing besides basic html.</p>\n<p>So naturally I volunteered.</p>\n<h3>Leveling up</h3>\n<p>I learned PHP, MySQL, and Flash from books: learn php in 24 hours, PHP 4 reference, learn mysql in 24 hours, learn flash in 24 hours, etc. I had one guy over the internet who helped me figure out things in PHP, but other than that I was all alone. Stack Overflow wasn’t a thing either. Wild times. From memory I could probably exploit that engine in one of 284 ways today. I’m glad it’s not online any more. The flash site is, it’s somewhat broken, but here you go: <a href=\"https://javorszky.github.io/ancientflashsite/\" rel=\"nofollow\">https://javorszky.github.io/ancientflashsite/</a></p>\n<p>I built a forum engine and a full actionscript site. We also had a requirement that whoever applies to host whatever workshop, we need to judge the workshop on its own merit, not on who submits it, so I built the submit form in such a way that it took the files, and renamed them, scrubbed the email addresses that reached the judging committee, and we made it a rule that if there’s any identifying information ON the pdf, it’s immediately disqualified. The year is 2005.</p>\n<p>Looking back, I realized two things:</p>\n<ol>\n<li>learn to learn on the job, and learn to enjoy not knowing stuff. Nobody does, really</li>\n<li>biases are real. Mitigate them. Even the ones you don’t know about. Especially the ones you don’t know about! Or at least have a framework by which you acknowledge if you’re called out</li>\n</ol>\n<h3>Moving On</h3>\n<p>I then decided to not continue my studies there. I was failed in one class where I expected a strong pass. We were split into 12 groups, and groups 1 and 2 got mostly failed, and groups 3-12 got overwhelmingly passed. Something wasn’t right, I spoke up, but I was a student, and they were faculty. I left because I didn’t feel like fighting and losing my soul over it.</p>\n<blockquote><p>Something wasn’t right, I spoke up, but I was a student, and they were faculty. I left because I didn’t feel like fighting and losing my soul over it.</p></blockquote>\n<p>I continued making websites for myself and got introduced to WordPress around this time. I don’t remember my first project. I <em>think</em> it was a site I built for myself in 8 hours for a competition which led me to my first paying website job, which I totally screwed up.</p>\n<p>In 2010 I decided to move countries with 3 friends I went to university with, at the time I was studying International Tourism Management, and I could transfer to Oxford Brookes University (not the one you heard about).</p>\n<p>I missed the application deadline.</p>\n<p>Which meant that I had to find work. When I bought my plane ticket I decided that whatever it takes, I will make it work. Staying in Hungary was not an option for me: I didn’t like the politics, I didn’t like where the country was heading economically, and I longed for a more cheerful society to surround me. Movement rights and language I can speak and other people going the same way helped me decide on the UK.</p>\n<h3>Restarting</h3>\n<p>So I made it work: I accepted the first full time job that I got offered. I worked as a wait staff at the restaurant of one of the luxury hotels in the city. It had very little to do with computers, but I had income, I could pay back the help I got from my friends (and by extension, their families), and I could actually take control of my own life instead of just bumping into furniture.</p>\n<blockquote><p>It had very little to do with computers, but I had income, I could pay back the help I got from my friends (and by extension, their families), and I could actually take control of my own life […]</p></blockquote>\n<p>I’ve learned a lot from working there. Chef taught me that literally no one cares WHY there was a mistake at that time in putting through an order – what’s important is what the error was, what’s needed to correct it. Everything else is wasting everyone’s time. Of course we’d go through these after the service.</p>\n<p>I’ve learned that to work in hospitality, you have to leave your ego at the door. Doesn’t mean you should take abuse, but there you’re part of a – hopefully – finely tuned, oiled machinery, and keeping the whole thing operating is the number one goal. Turns out that’s also applicable to working in teams in general.</p>\n<p>A year goes by, and we need to move out of the house we’re renting. In a break between morning and evening shifts I look at the job postings in the local newspaper: someone’s looking for a developer! It was a Wednesday. I got an interview for Friday, and started on Monday. I had to talk to my supervisor to move me to evening-only shifts because I have a second desk job. My days: 9am – 4:45pm developer, 5pm – 2am (ish, whenever we finished) waiting tables. Rinse and repeat.</p>\n<p>Working 60-80 hours could only go on for so long. After about 3 months I had a very sharp chest pain while on shift at the restaurant. Had to walk home (normally I cycle), and then made my way to the emergency room where after having waited 5 hours, I got an X-ray, and EKG, and the doctor determined there’s nothing wrong, so here’s some Ibuprofen (3×1) and some Paracetamol (1×1).</p>\n<blockquote><p>Kids, don’t work 60-80 hours a week.</p></blockquote>\n<p>“Uh, which one should I take on a day?” “Oh… both!”</p>\n<p>I went home, took the first dose, and slept for 22 hours. I handed in my resignation 2 days later at the restaurant because I needed to not work that much. My manager pleaded me to stay at least on part time, which I did, because they were genuinely lovely people.</p>\n<p>Kids, don’t work 60-80 hours a week.</p>\n<h3>Back to the web with full steam</h3>\n<p>After a year at the development agency + restaurant combo, I got hired to a WordPress agency through recruiters. My new boss asked me why I haven’t applied to them directly, even though I saw their ad, why I waited to go through a recruiter. I said I didn’t think I was good enough. That decision ended up costing him a few thousand pounds in recruitment fees.</p>\n<p>I quit my restaurant job for good. I also learned a lesson to actually trust myself.</p>\n<p>Something that during the 2,5 years with them I would question a lot of times. There have been instances when I made mistakes that were incredibly easy to avoid had I just taken 5 more minutes to think. But every time it was something we could correct fairly fast (shoutout to hospitality experience!) and then I had a postmortem, and changed the way I work to avoid similar problems.</p>\n<p>I had the privilege to work on some seriously challenging WordPress sites while with them. That was my first actual commercial experience with it. We built blogs from Oxford University (the one you heard about) to eCommerce site migrations from Magento using Jigoshop and later WooCommerce.</p>\n<p>I’ve had to disassemble how WooCommerce worked fairly fast because of some of the client requirements, and I got pretty good at it.</p>\n<p>In November 2014 I got hired to one of the product companies around WooCommerce and spent a year and a half with them maintaining their plugins, answering customer queries and helping them fix their sites occasionally. That was my first help desk experience.</p>\n<p>I got access to some incredibly large eCommerce stores and I quickly discovered where the bottlenecks were in our plugins, WordPress, and WooCommerce itself. Some of the customers had access to New Relic, which I could use to help me find what’s taking so long.</p>\n<p>From then on it was just a case of finding what’s slow, following it back, reading the documentation and code on why it’s slow, and coming up with ideas on how to fix it.</p>\n<p>I got really good at this.</p>\n<h3>The Freelance Days</h3>\n<p>At the end of July 2016 our ways parted, and I had a buffer of about 3 months when I didn’t need to worry about having to find another job. While trying to figure out what to do, where next, I started getting requests to work on some projects. They asked me my hourly rate. I said a number I was slightly uncomfortable with, they said yeah, and off I went.</p>\n<blockquote><p>[…] I started getting requests to work on some projects. They asked me my hourly rate. I said a number I was slightly uncomfortable with, they said yeah […]</p></blockquote>\n<p>It also helped that I was at the time known for my love of hard problems and actually figuring out why things break and fixing them.</p>\n<p>I thought “hey, if I can command that much hourly rate, I could make this work!”</p>\n<p>I took on clients, and managed to make things work for… a surprisingly long time. Having GREAT accountants is a must for self employment.</p>\n<p>I suddenly also had time to pursue some of my other interests: I learned how to ride a motorcycle.</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/gabor_motorcycle.jpg\"><img class=\"aligncenter size-large wp-image-2344\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/gabor_motorcycle-1024x576.jpg\" alt=\"Gabor standing by a sporty motorcycle\" width=\"960\" height=\"540\" /></a></p>\n<p>I started learning Japanese! I got back onto the slackline.</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/gabor_slackline.jpg\"><img class=\"aligncenter size-large wp-image-2345\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/gabor_slackline-1024x768.jpg\" alt=\"Gabor balancing on a narrow strap hung between two trees\" width=\"960\" height=\"720\" /></a></p>\n<p>I got to speak at WordCamp Brighton in 2017!</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/gabor_wordcamp.jpg\"><img class=\"aligncenter wp-image-2346 size-large\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/gabor_wordcamp-1024x683.jpg\" alt=\"Gabor, on stage at WordCamp Brighton\" width=\"960\" height=\"640\" /></a></p>\n<p>Until very recently, it was a game of “how long can I be self employed before I need to look for a job?” Turns out I couldn’t answer this, because an opportunity came up to join Mindsize as a lead backend developer.</p>\n<p>When I heard about them starting up a few months prior, I had two thoughts:</p>\n<ol>\n<li>they are probably the only company I would stop doing freelance work for</li>\n<li>I’m not good enough to work with them yet</li>\n</ol>\n<p>Statement 1 was true :).</p>\n<h3>Catching up with the present</h3>\n<p>This brings us into the very recent present. It’s maybe a month old development at the time of publication. Since then I’ve been working really hard to reclaim my time of about 40 hours worked a week. With the holiday push of the clients I had as a freelancer, there was a transition phase where I had to work 60-80 hours.</p>\n<p>Don’t work 60-80 hours a week, kids!</p>\n<p>Looking back it was incredibly humbling experience so far, but also exciting, and full of challenges, and learnings. I’ve made a lot of excellent friends, and luckily very few enemies. I am grateful for each and every one of them.</p>\n<p>I don’t know where life takes me. For the foreseeable future I’ll be with Mindsize and will make eCommerce sites awesome, and will make awesome eCommerce sites. But I’ll also try and pass on some of the things I’ve learned by helping people new to the industry.</p>\n<p>There are a lot more things I could say, but they aren’t necessarily part of my journey, so I’ll save them for some other time.</p>\n<h3>On privilege</h3>\n<blockquote><p>We, as web developers, programmers, people who speak English, people who have internet access to read this article, are incredibly, very, very, very lucky.</p></blockquote>\n<p>Except for one thing. When I worked at the WordPress agency, Twitter, and by extension, society, started the “check your privilege” trend. It took a while to understand what it was all about, but it’s something I wish everyone did.</p>\n<p>We, as web developers, programmers, people who speak English, people who have internet access to read this article, are incredibly, very, very, very lucky. I’ve realized that my journey wouldn’t have been possible had I been born to less fortunate circumstances:</p>\n<p>If my parents didn’t make the decision to start teaching me English when I was 3.</p>\n<p>If I didn’t have the financial stability in my family to be able to just explore what I like to do.</p>\n<p>If I didn’t have the financial stability to just drop out of university after 3 years because “I didn’t like it”. And another one after a semester. And never finish my Tourism Management course.</p>\n<p>If I didn’t live in a developed nation with easy access and high standards of living.</p>\n<p>This brings into mind one of my favorite tweets:</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Your job, lucky person, is to help others less lucky than you to improve their odds.</p>\n<p>— Dylan Wilbanks, Human Grumpy Cat (@dylanw) <a href=\"https://twitter.com/dylanw/status/522060876304486400?ref_src=twsrc%5Etfw\">October 14, 2014</a></p></blockquote>\n<p></p>\n<p>Not everyone has these opportunities and every day I am conscious of it.</p>\n<p>Humans are hard. Interpersonal skills are hard. Treating each other with dignity, respect, and grace is hard if you haven’t been brought up with those values as a kid. It’s been a challenge for me to shed the “boys will be boys” upbringing I was carrying.</p>\n<p>Let’s use our power and means and help the less fortunate walk their own paths. Let’s lessen marginalization with the view of ending it. Let’s be excellent to each other!</p>\n<p>And don’t use “guys” to mean everyone!</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Finding My Way Out Of My Comfort Zone\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Finding%20My%20Way%20Out%20Of%20My%20Comfort%20Zone&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Ffinding-way-comfort-zone%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Finding My Way Out Of My Comfort Zone\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Ffinding-way-comfort-zone%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Ffinding-way-comfort-zone%2F&title=Finding+My+Way+Out+Of+My+Comfort+Zone\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Finding My Way Out Of My Comfort Zone\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/finding-way-comfort-zone/&media=https://heropress.com/wp-content/uploads/2017/12/121317-150x150.jpg&description=Finding My Way Out Of My Comfort Zone\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Finding My Way Out Of My Comfort Zone\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/finding-way-comfort-zone/\" title=\"Finding My Way Out Of My Comfort Zone\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/finding-way-comfort-zone/\">Finding My Way Out Of My Comfort Zone</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s: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 Dec 2017 08:00: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:\"Gabor Javorszky\";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:70:\"WPTavern: Storify to Close May 16, 2018, WordPress Plugin Discontinued\";s:7:\"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=76992\";s:7:\"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/storify-to-close-may-16-2018-wordpress-plugin-discontinued\";s: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:2906:\"<p><a href=\"https://storify.com/\">Storify</a>, a service that launched in 2010 and opened to the public in 2013 has announced that it is shutting down version one of its service on May 16th, 2018. Concurrently, its WordPress plugin that is actively installed on more than 2,000 sites has been <a href=\"https://wordpress.org/plugins/storify/\">discontinued</a>. </p>\n\n\n\n<img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/12/StorifyPluginDiscontinued.png?w=627&ssl=1\" />\n Storify Plugin is Discontinued\n\n\n\n\n<p>Storify enabled journalists and others to build stories and timelines similar to Twitter and other social networks. The service <a href=\"https://techcrunch.com/2013/09/09/livefyre-acquires-storify/\">was acquired</a> by <a href=\"http://www.livefyre.com\">Livefyre</a> in 2013 and became part of Adobe when it <a href=\"https://techcrunch.com/2016/05/03/adobe-acquires-livefyre/\">acquired Livefyre</a> in 2016. </p>\n\n\n\n<p>Storify has disabled new accounts from being created and will delete stories and accounts on May 16th, 2018. Existing users who want to move to Storify 2, a paid feature of Livefyre, will need to purchase a license. The service has <a href=\"https://storify.com/faq-eol\">published a FAQ</a> that includes directions on how to export content. </p>\n\n\n\n<h2>New Plugin Opportunity</h2>\n\n\n\n<p>According to some users, the export process is cumbersome, providing an excellent opportunity for a prospecting developer to create a WordPress plugin that makes the process easier. A search of the WordPress plugin directory for Storify Export produces zero results. <br /></p>\n\n\n\n\n <blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">A fantastic <a href=\"https://twitter.com/hashtag/WordPress?src=hash&ref_src=twsrc%5Etfw\">#WordPress</a> dev opportunity: <a href=\"https://twitter.com/Storify?ref_src=twsrc%5Etfw\">@Storify</a> just announced its \"End of Life\" for May 2018. The export is kinda lame. If I could import a story from Storify into a WordPress Post/Page that would be fabulous! I have a few stories that I wouldn\'t want to lose. <a href=\"https://twitter.com/hashtag/biz?src=hash&ref_src=twsrc%5Etfw\">#biz</a></p>— Birgit Pauli-Haack (@bph) <a href=\"https://twitter.com/bph/status/940706045449703424?ref_src=twsrc%5Etfw\">December 12, 2017</a></blockquote>\n\n\n\n\n\n <blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I have a lot of Storify stories I\'d hate to lose, too. If you hear of someone doing this, I\'d love to know about it.</p>— Deborah Edwards-Onoro (@redcrew) <a href=\"https://twitter.com/redcrew/status/940729186469253120?ref_src=twsrc%5Etfw\">December 12, 2017</a></blockquote>\n\n\n\n\n<p>If you know of any methods or plugins that eases the process of exporting content from Storify and importing it to WordPress, please share them in the comments. Also feel free to let us know if you create a plugin that performs this task. </p>\";s: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 Dec 2017 07:30: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: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:75:\"WPTavern: Gutenberg and the WordPress of Tomorrow by Morten Rand-Hendriksen\";s:7:\"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=76959\";s:7:\"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/gutenberg-and-the-wordpress-of-tomorrow-by-morten-rand-hendriksen\";s: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:1054:\"<p>While attending WordCamp US 2017, there were a number of sessions that stood out to me. <a href=\"https://wordpress.tv/2017/12/10/morten-rand-hendriksen-gutenberg-and-the-wordpress-of-tomorrow/\">Gutenberg and the WordPress of Tomorrow</a> by Morten Rand-Hendriksen was one of them. </p>\n\n\n\n<p>Hendriksen explains the state of WYSIWYG in WordPress and how it doesn't really exist but Gutenberg provides opportunities to change that. He explores developing sites without being confined to a small view port. He also performs a live demo of Gutenberg showing off its capabilities.</p>\n\n\n\n<p>An interesting outcome from his presentation is the amount of optimism and excitement it generated from the audience. During the question and answer session, a member of the audience commented on how far Gutenberg has advanced in the last three months and that it looks cool to use now. </p>\n\n\n\n<p>To gain insight into how Gutenberg can moonshot WordPress over its competition, watch Hendriksen's presentation. </p>\n\n\n\n\n <div class=\"embed-wrap\"></div>\";s: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 Dec 2017 20:57: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:\"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:26:\"Matt: Post-Verbal Language\";s:7:\"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=47705\";s:7:\"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://ma.tt/2017/12/post-verbal-language/\";s: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:1800:\"<p>James Beshara has a <a href=\"https://jjbeshara.com/2017/12/09/a-post-verbal-world/\">really interesting read on how communication will change and evolve in a post-verbal world</a>, namely one where human/brain interfaces like <a href=\"https://waitbutwhy.com/2017/04/neuralink.html\">Neuralink</a> can more directly transmit thought between people than the medium of language allows today. </p>\n\n\n\n<p>After reading the essay I wonder if people's thoughts or the neural pathways they activate, if they could be directly transmitted into another brain, would actually make any sense to someone else with a unique internal set of pathways and framework for parsing and understanding the world. The essay assumes we'd understand and have more empathy with each other, but that seems like a leap. It seems likely the neural link would need it own set of abstractions, perhaps even unique per person, similar to how <a href=\"https://www.newscientist.com/article/2114748-google-translate-ai-invents-its-own-language-to-translate-with/\">Google Translate AI invented its own meta-language</a>. </p>\n\n\n\n<p>Today <a href=\"https://www.economist.com/news/leaders/21730871-facebook-google-and-twitter-were-supposed-save-politics-good-information-drove-out\">idea-viruses that cause outrage (outrageous?) in today's discourse have been weaponized by algorithms optimizing for engagement</a>, and directly brain-transmitted memes seem especially risky for appealing to our base natures or causing <a href=\"https://en.wikipedia.org/wiki/Amygdala_hijack\">amygdala hijack</a>. But perhaps a feature of these neural interface devices could counteract that, with a command like \"tell me this piece of news but suppress my confirmation bias and tribal emotional reactions while I'm taking it in.\"</p>\";s: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 Dec 2017 03:09: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: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: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:26:\"Matt: iPhone Fast Charging\";s:7:\"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=47682\";s:7:\"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:\"https://ma.tt/2017/12/iphone-charging/\";s: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:382:\"<p>I love USB, cables, and charging things. <a href=\"https://www.macrumors.com/guide/iphone-x-fast-charging-speeds-compared/\">So MacRumors comparison of different wired and wireless charging options and speed for the iPhone X is my catnip</a>. tl; dr: USB-C + USB-C-to-Lightning cable gives you far and away the fastest times. I've found this true for the iPad Pro as well.</p>\";s: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 Dec 2017 16:51: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: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: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:29:\"Matt: State of the Word, 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:22:\"https://ma.tt/?p=47687\";s:7:\"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/12/state-of-the-word-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:524:\"<p>I really enjoyed connecting with the WordPress community in Nashville this previous weekend. On Saturday I delivered the State of the Word presentation alongside <a href=\"https://choycedesign.com/\">Mel</a>, <a href=\"https://weston.ruter.net/\">Weston</a>, and <a href=\"https://matiasventura.com/\">Matías</a>. There's always a post-event buzz but I definitely noticed a change in tenor of people's thoughts on Gutenberg after the presentation and demo. The video is above, check it out when you get a chance.</p>\";s: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 Dec 2017 23:38:20 +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: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:37:\"HeroPress: Remote Work Brings Freedom\";s:7:\"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=2324\";s:7:\"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://heropress.com/essays/remote-work-brings-freedom/#utm_source=rss&utm_medium=rss&utm_campaign=remote-work-brings-freedom\";s: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:21046:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/120617-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: WordPress is not just a CMS, it\'s a Community of lovely people!\" /><p><a href=\"http://heropress.com/feed/#gujarati\">આ નિબંધ ગુજરાતીમાં પણ ઉપલબ્ધ છે</a></p>\n<p>First of all, I want to say thank you to HeroPress for reaching out and letting so many people share their stories. I am a follower of HeroPress and read new stories every week! A few months ago my friend <a href=\"https://heropress.com/essays/wordpress-good-indian-women/\">Juhi Patel shared her great WordPress story</a>, and I was inspired by her to share my own and how it has changed my way of working.</p>\n<blockquote><p>I am that guy who hates theory and loves to do practical programming.</p></blockquote>\n<p>After completing my bachelor of engineering with Information Technology in 2013, I was looking for a job. I found that there were many different kinds of programming language jobs that were available. I was really not sure which one I needed or wanted to choose. After getting advice from a senior, I started training for PHP because it was easy and quick to learn. A few days before I had completed Training, I got selected in small company (5 Employees) as a PHP Developer. I was making websites there using PHP codeigniter framework.</p>\n<p>I was belong from a small town, and everyday it took me around 3 hours to travel to my job. After about 2 months, I applied for a job at another big company and was selected as Web Developer. There I was working on CMS Framework (not WordPress <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f600.png\" alt=\"?\" class=\"wp-smiley\" /> ) for website projects. After a few days, I made my personal site using WordPress in my free time.</p>\n<blockquote><p>At that time, I was not aware of themes and plugins. I was just playing with theme files and editor to make changes on my website! <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f61c.png\" alt=\"?\" class=\"wp-smiley\" /></p></blockquote>\n<p>After a month, my team leader got to know about that I was interested in WordPress. I got the opportunity to learn WordPress. I learned and explored WordPress with some demo projects by understanding how plugins and themes work. After 3 weeks of learning WordPress, I worked on my first WordPress project. This project took around 4 months to complete <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f600.png\" alt=\"?\" class=\"wp-smiley\" /> After this successful project, the whole CMS Team migrated to WordPress.</p>\n<blockquote><p>I realized that, WordPress is so easy to learn, get help and work on it!</p></blockquote>\n<p>After around 1 year and 3 months of working with that company, I was told to work after working hours due to heavy requirements from our projects. I felt really stressed and frustrated at work and during that time…</p>\n<blockquote><p>I got to know about “Remote” work. But I didn’t know what that was or how it works?</p></blockquote>\n<p>I explored about remote work and found that this is a career that you can work from your home, workplace or anywhere you like. I saw that many people in world are doing remote work happily. I decided to switch my job from Office Job to Remote Job. My parents, family and relatives advised me to not leave office job because they believed Remote Job is not as secure as an Office Job. But I stuck with my decision. In March 2015, I resigned from my job without notice period with the condition of no experience letter would be provided to me of this job.</p>\n<blockquote><p>At the initial stage it was hard to be freelancer. But I was trying and trying to get that started.</p></blockquote>\n<p>I had registered in one popular freelancer marketplace. After 1 week of trying very hard I got my first project. It was just for $5 to make an HTML page with a countdown timer. I did it successfully and got the best review. After that I had also completed many projects successfully. That’s it! I was done with my decision. Within the first few weeks I made a website for one US Client. They were impressed by my work and hired me as Full time Web Developer for their company in April 2015. I am remotely working with them happily still today from my home!</p>\n<blockquote><p>Everything is going smoothly. I am enjoying Work from Home, Freedom and Quality time with Family.</p></blockquote>\n<p>In October 2016, I learned about WordCamp. I attended my first WordCamp Nashik 2016. I met many WordPress Developers, Freelancers, Professionals, Users and many other people at this WordCamp. After that, I became a fan of WordCamp. We started organizing Meetups in our City. Within the last year, I have attended, volunteered and contributed as a friend and sponsor at more than 6 WordCamps. Currently I am active member of Ahmedabad WordPress Community.</p>\n<blockquote><p>I am a WordCamp Lover. WordCamp is a way to meet new people, learn and share knowledge!</p></blockquote>\n<p>In October 2017, we successfully organized WordCamp in our city. I have been speaking about how remote job can be a good opportunity as a career to students and newbie in panel discussion of WordCamp Ahmedabad.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/wcahmedabad-panel-discussion.jpg\"><img class=\"size-large wp-image-2325\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/12/wcahmedabad-panel-discussion-1024x683.jpg\" alt=\"4 men on a couch at the front of a room.\" width=\"960\" height=\"640\" /></a>Panel Discussion – WordCamp Ahmedabad 2017 (PC. Meher Bala)\n<blockquote><p>WordPress is not just a CMS, It’s a community of lovely people!</p></blockquote>\n<hr />\n<h1 id=\"gujarati\">રિમોટ કામ સ્વતંત્રતા લાવે છે.</h1>\n<blockquote><p>“મને હીરોપ્રેસ સ્ટોરીમાં ભાગ લેવામાં કેવી રીતે પ્રેરણા મળી?”</p></blockquote>\n<p>સૌ પ્રથમ, ઘણા લોકો સુધી પહોંચીને અને તેમની વાર્તાઓ કહેવા માટે હું હીરોપ્રેસનો ખુબ જ આભાર માનું છું. હું હિરોપ્રેસનો અનુયાયી છું અને દર અઠવાડિયે નવી વાર્તાઓ વાંચું છું! થોડા મહિના પહેલા મારી મિત્ર જુહી પટેલે તેની વર્ડપ્રેસની રસપ્રદ વાર્તા હીરોપ્રેસ પર કહી હતી. તે વાંચીને મને, મારા પોતાની વાર્તા, મારા કામ કરવાની રીત કઇ રીતે બદલાઈ તે કહેવા માટે પ્રેરણા મળી હતી.</p>\n<blockquote><p>“હું તે વ્યક્તિ છું જે થિયોરીને નફરત કરે છે અને પ્રાયોગિક પ્રોગ્રામિંગ કરવા માટે પ્રેમ કરે છે. “</p></blockquote>\n<p>2013 માં ઇન્ફોર્મેશન ટેકનોલોજી સાથે મારી સ્નાતક એન્જિનિયરિંગ પૂર્ણ કર્યા પછી, હું નોકરી શોધી રહ્યો હતો ત્યારે મેં જોયું કે અહીં ઘણી બધી પ્રોગ્રામિંગ ભાષાની નોકરીઓ ઉપલબ્ધ છે. ત્યારે હું ચોક્કસ ન હતો કે મારે કઈ પ્રોગ્રામિંગ ભાષા પસંદ કરવાની જરૂર છે? વરિષ્ઠ પાસેથી સલાહ મેળવ્યા પછી, મેં PHP માટે તાલીમ શરૂ કરી, કારણ કે તે શીખવા માટે સરળ અને ઝડપી હતી. તાલીમ પૂર્ણ થયાના થોડા દિવસો પહેલાં, મારી નાની કંપની (5 કર્મચારીઓ) માં PHP ડેવલપર તરીકે પસંદગી થઇ. હું PHP Codeigniter ફ્રેમવર્કનો ઉપયોગ કરીને ત્યાં વેબસાઇટ્સ બતાવતો હતો.</p>\n<p>હું એક નાનકડા શહેરમાંથી આવતો હતો, અને દરરોજ મને મારી નોકરી પર મુસાફરી કરવા માટે 3 કલાક જેવા થતા હતા. લગભગ 2 મહિના પછી, મેં બીજી મોટી કંપનીમાં નોકરી માટે અરજી કરી હતી અને ત્યાં મારી વેબ ડેવલપર તરીકે પસંદગી કરવામાં આવી હતી. ત્યાં હું વેબસાઇટ સંબંધિત પ્રોજેક્ટ્સ માટે સીએમએસ ફ્રેમવર્ક (વર્ડપ્રેસ સિવાયની <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f600.png\" alt=\"?\" class=\"wp-smiley\" />) પર કામ કરતો હતો. થોડા દિવસો પછી, મેં મારી વ્યક્તિગત વેબસાઈટને મારા સ્વતંત્ર સમય દરમિયાન વર્ડપ્રેસની મદદથી બનાવી.</p>\n<blockquote><p>“તે સમયે, હું થીમ્સ અને પ્લગિન્સથી વાકેફ ન હતો. હું મારી વેબસાઇટ પર ફેરફારો કરવા માટે માત્ર થીમ ફાઇલો અને એડિટર સાથે રમી રહ્યો હતો! <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f61c.png\" alt=\"?\" class=\"wp-smiley\" />”</p></blockquote>\n<p>એક મહિના પછી, મારી ટીમના આગેવાનને જાણવા મળ્યું કે મને વર્ડપ્રેસમાં રસ હતો. ત્યારે મને વર્ડપ્રેસ શીખવાની તક મળી. વર્ડપ્રેસ થીમ્સ અને પ્લગીંસ કેવી રીતે કામ કરે છે એ સમજવા, મેં જાતે શીખીને કેટલાક ડેમો પ્રોજેક્ટસ બનાવ્યા. વર્ડપ્રેસ શીખવાના 3 અઠવાડિયા પછી, મેં મારા પ્રથમ વર્ડપ્રેસ લાઈવ પ્રોજેક્ટ પર કામ કર્યું હતું. આ પ્રોજેક્ટ પૂર્ણ કરવા માટે મને લગભગ 4 મહિના લાગ્યા હતા <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f600.png\" alt=\"?\" class=\"wp-smiley\" /> આ સફળ પ્રોજેક્ટ પછી, સમગ્ર સીએમએસ ટીમ વર્ડપ્રેસમાં જોડાઈ ગઈ.</p>\n<blockquote><p>“મેં અનુભવ કર્યો કે, વર્ડપ્રેસ શીખવું, સહાય મેળવવી અને તેના પર કાર્ય કરવુ ખૂબ જ સરળ છે!”</p></blockquote>\n<p>લગભગ 1 વર્ષ અને 3 મહિના તે કંપની સાથે કામ કર્યા પછી, મને અમારા પ્રોજેક્ટ્સની ભારે આવશ્યકતાના કારણે કામના કલાકો પછી પણ વધારે રોકાઈને કામ કરવા કહેવામાં આવતું હતું અને તે 2 સપ્તાહથી વધુ ચાલુ રહ્યું. ત્યારે મને કામ કરવું ખરેખર ભારયુક્ત અને નિરાશાજનક લાગવા લાગ્યું, તે સમય દરમિયાન ..</p>\n<blockquote><p>“મને “રિમોટ” કામ વિશે જાણવા મળ્યું. પરંતુ મને ખબર નહોતી કે તે કે તે કેવી રીતે કાર્ય કરે છે?”</p></blockquote>\n<p>મેં રિમોટ કામ વિશે તપાસ કરી અને જાણવા મળ્યું કે આ એક કારકિર્દી છે જે તમે તમારા ઘર, કાર્યસ્થળ અથવા તમને પસંદ હોય એ જગ્યાએથી કામ કરી શકો છો. મેં જોયું કે દુનિયામાં ઘણા લોકો રિમોટ કામ ખુબ જ ખુશીથી કરી રહ્યા હતા. મેં ઑફિસ જોબ છોડીને રિમોટ કામ કરવાનું નક્કી કર્યું. મારા માતાપિતા, કુટુંબીજનો અને સંબંધીઓએ મને ઓફિસની નોકરી ના છોડવાની સલાહ આપી કારણ કે તેઓ માનતા હતા કે રિમોટ કામ એ ઓફિસ જોબ જેટલું સુરક્ષિત નથી. પરંતુ હું મારા નિર્ણય સાથે જોડાઈ રહ્યો. માર્ચ 2015 માં, મેં નોટિસના સમયગાળા વગર મારા કામમાંથી રાજીનામું આપ્યું હતું અને શરત હતી કે આ નોકરીનો કોઈપણ અનુભવ પત્ર મને પૂરો પાડવામાં આવશે નહીં.</p>\n<blockquote><p>“પ્રારંભિક તબક્કે ફ્રીલાન્સર બનવું મુશ્કેલ હતું. પરંતુ હું તે ગમે તેમ કરીને શરૂ કરવાનો ખુબ જ પ્રયાસ કરી રહ્યો હતો.”</p></blockquote>\n<p>મેં એક લોકપ્રિય ફ્રીલાન્સર માર્કેટપ્લેસમાં રજીસ્ટર કર્યું હતું. 1 અઠવાડિયાના સખત પ્રયાસ કાર્ય પછી મને પહેલો પ્રોજેક્ટ મળ્યો. આ પ્રોજેક્ટ કાઉન્ટડાઉન ટાઈમર સાથે એક HTML પેજ બનાવવા માટે મને માત્ર $5 મળ્યા હતા. મેં એ પ્રોજેક્ટ સફળતાપૂર્વક પૂરો કર્યો અને શ્રેષ્ઠ રિવ્યૂ મેળવ્યો. તે પછી મેં ઘણા પ્રોજેક્ટ્સ પણ સફળતાપૂર્વક પૂર્ણ કર્યા હતા. બસ આ જ! મને મારો નિર્ણય સાચો પુરવાર થયો. પ્રથમ થોડા અઠવાડિયાની અંદર મેં એક યુએસ ક્લાયન્ટ માટે વેબસાઇટ બનાવી. તેઓ મારા કામથી પ્રભાવિત થયા હતા અને એપ્રિલ 2015 માં મને તેમની કંપની માટે સંપૂર્ણ સમય માટે વેબ ડેવલપર તરીકે નિયુક્ત કર્યો. હું આજે પણ તેમની સાથે ખુબ જ ખુશીપૂર્વક મારા ઘરેથી રિમોટ કામ કરું છું!</p>\n<blockquote><p>“બધું સરળતાપૂર્વક જઈ રહ્યું છે. હું ઘરેથી કામ કરીને સ્વતંત્રતા અને પરિવાર સાથે ગુણવત્તાભર્યો સમય પસાર કરવાનો આનંદ અનુભવું છું.”</p></blockquote>\n<p>ઑક્ટોબર 2016 માં, મને વર્ડકેમ્પ વિશે જાણવા મળ્યું. મેં મારી પહેલી વર્ડકેમ્પ નાસિક 2016 માં હાજરી આપી હતી. હું ઘણા વર્ડપ્રેસ ડેવલપર્સ, ફ્રીલાન્સર્સ, પ્રોફેશનલ્સ, યુઝર્સ અને ઘણા અન્ય લોકોને આ વર્ડકેમ્પ પર મળ્યો હતો. તે પછી, હું વર્ડકેમ્પ નો ચાહક બની ગયો. અમે અમારા શહેરમાં મીટપનું નું આયોજન કરવાનું શરૂ કર્યું. છેલ્લા વર્ષમાં, 6 થી વધુ વર્ડકેમ્પ પર મેં હાજરી આપીને, સ્વયંસેવક અને મિત્ર સ્પોન્સર તરીકે ફાળો આપ્યો છે. હાલમાં હું અમદાવાદ વર્ડપ્રેસ સમુદાયનો સક્રિય સભ્ય છું</p>\n<blockquote><p>“હું વર્ડકેમ્પનો પ્રેમી છું. વર્ડકેમ્પ નવા લોકોને મળવાનો, પોતાના જ્ઞાનની આપ-લે કરવાનો એક માર્ગ છે!”</p></blockquote>\n<p>ઓક્ટોબર 2017 માં, અમે અમારા શહેરમાં સફળતાપૂર્વક વર્ડકૅમ્પનું આયોજન કર્યું હતું. વર્ડકૅમ્પ અમદાવાદની પેનલ ચર્ચામાં મેં વિદ્યાર્થીઓ અને વપરાશકર્તાઓ માટે રિમોટ કામ કેવી રીતે સારી કારકિર્દી હોઈ શકે તે વિશે ચર્ચા કરી હતી.</p>\n<blockquote><p>“વર્ડપ્રેસ ફક્ત સીએમએસ નથી, પણ તે શ્રેષ્ઠ લોકોનો સમુદાય છે.”</p></blockquote>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Remote Work Brings Freedom\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Remote%20Work%20Brings%20Freedom&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fremote-work-brings-freedom%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Remote Work Brings Freedom\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fremote-work-brings-freedom%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fremote-work-brings-freedom%2F&title=Remote+Work+Brings+Freedom\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Remote Work Brings Freedom\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/remote-work-brings-freedom/&media=https://heropress.com/wp-content/uploads/2017/12/120617-150x150.jpg&description=Remote Work Brings Freedom\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Remote Work Brings Freedom\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/remote-work-brings-freedom/\" title=\"Remote Work Brings Freedom\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/remote-work-brings-freedom/\">Remote Work Brings Freedom</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s: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 Dec 2017 02:30: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:16:\"Chetan Prajapati\";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:65:\"WPTavern: WordCamp US 2017 is Livestreaming All Sessions for Free\";s:7:\"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=76937\";s:7:\"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/wordcamp-us-2017-is-livestreaming-all-sessions-for-free\";s: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:2781:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/04/wordcamp-us-nashville.jpeg?ssl=1\"><img /></a></p>\n<p>WordCamp US is kicking off this morning. If you couldn’t make the journey to Nashville, you can still follow along at home or wherever you are in the world. <a href=\"https://2017.us.wordcamp.org/tickets/\" rel=\"noopener\" target=\"_blank\">Livestream Tickets</a> are free on the event’s website. Once you’ve registered for a ticket, head on over to <a href=\"https://2017.us.wordcamp.org/live-stream/\" rel=\"noopener\" target=\"_blank\">2017.us.wordcamp.org/live-stream/</a> and you’ll be able to tune in to the Fiddle Track, Banjo Track, Guitar Track, and the State of the Word (scheduled for Saturday, December 2, at 4PM CST).</p>\n<p>WordCamp US will be running three tracks simultaneously for both days of the conference and all sessions will be livestreamed. Check out the <a href=\"https://2017.us.wordcamp.org/schedule/\" rel=\"noopener\" target=\"_blank\">schedule</a> to find sessions you want to attend from home. Volunteers will also include captions, which will be embedded within the live stream video. If you have any problems with the stream, the event has a page dedicated to <a href=\"https://2017.us.wordcamp.org/live-stream/attendee-test/\" rel=\"noopener\" target=\"_blank\">livestream attendees</a> with a backup stream, as well as a troubleshooting page for <a href=\"https://2017.us.wordcamp.org/live-stream/support/\" rel=\"noopener\" target=\"_blank\">livestream support</a>.</p>\n<p>If you’re following along on Twitter, the <a href=\"https://twitter.com/wordcampus\" rel=\"noopener\" target=\"_blank\">WCUS Twitter</a> volunteers will be providing threaded coverage of sessions. This should keep your Twitter stream a little tidier with a kickoff tweet for each session, followed by live coverage threaded under each as replies.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Want to follow along with WCUS coverage at home? It will be easy by following our threaded coverage. Each session will start with a tweet that looks like this, All coverage of that session will be threaded to that kick-off tweet. <a href=\"https://t.co/J0M6jo6GEi\">pic.twitter.com/J0M6jo6GEi</a></p>\n<p>— WordCamp US (@WordCampUS) <a href=\"https://twitter.com/WordCampUS/status/936595172485468160?ref_src=twsrc%5Etfw\">December 1, 2017</a></p></blockquote>\n<p></p>\n<p>Want to see WCUS hosted near you in 2019/2020? <a href=\"https://wordcampcentral.polldaddy.com/s/wcus-2019-2020\" rel=\"noopener\" target=\"_blank\">Applications for host cities</a> opened today. If you want to be part of the team that makes WCUS happen in your city, talk to your local WordPress community organizers about filling out an application for the next host city.</p>\";s: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, 01 Dec 2017 15:34: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: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:47:\"Dev Blog: The Month in WordPress: November 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:34:\"https://wordpress.org/news/?p=5290\";s:7:\"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://wordpress.org/news/2017/12/the-month-in-wordpress-november-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:4232:\"<p>The WordPress project recently released WordPress 4.9, “Tipton” — a new major release named in honor of musician and band leader Billy Tipton. Read on to find out more about this and other interesting news from around the WordPress world in November.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>WordPress 4.9 “Tipton”</h2>\n\n\n\n<p>On November 16, <a href=\"https://wordpress.org/news/2017/11/tipton/\">WordPress 4.9 was released</a> with new features for publishers and developers alike. Release highlights include design locking, scheduling, and previews in the Customizer, an even more secure and usable code editing experience, a new gallery widget, and text widget improvements.</p>\n\n\n\n<p>The follow up security and maintenance, v4.9.1, <a href=\"https://wordpress.org/news/2017/11/wordpress-4-9-1-security-and-maintenance-release/\">has now been released</a> to tighten up the security of WordPress as a whole.</p>\n\n\n\n<p>To get involved in building WordPress Core, jump into the #core channel in the<a href=\"https://make.wordpress.org/chat/\"> Making WordPress Slack group</a>, and follow<a href=\"https://make.wordpress.org/core/\"> the Core team blog</a>.</p>\n\n\n\n<h2>Apply to Speak At WordCamp Europe 2018</h2>\n\n\n\n<p>The next edition of WordCamp Europe takes place in June, 2018. While the organizing team is still in the early stages of planning, <a href=\"https://2018.europe.wordcamp.org/2017/11/15/are-you-ready-to-speak-at-the-largest-wordpress-event-in-europe/\">they are accepting speaker applications</a>.</p>\n\n\n\n<p>WordCamp Europe is the largest WordCamp in the world and, along with WordCamp US, one of the flagship events of the WordCamp program — speaking at this event is a great way to give back to the global WordPress community by sharing your knowledge and expertise with thousands of WordPress enthusiasts.</p>\n\n\n\n<h2>Diversity Outreach Speaker Training Initiative</h2>\n\n\n\n<p>To help WordPress community organizers offer diverse speaker lineups, <a href=\"https://make.wordpress.org/community/2017/11/13/call-for-volunteers-diversity-outreach-speaker-training/\">a new community initiative has kicked off</a> to use existing <a href=\"https://make.wordpress.org/training/handbook/speaker-training/\">speaker training workshops</a> to demystify speaking requirements and help participants gain confidence in their ability to share their WordPress knowledge in a WordCamp session.</p>\n\n\n\n<p>The working group behind this initiative will be meeting regularly to discuss and plan how they can help local communities to train speakers for WordCamps and other events.</p>\n\n\n\n<p>To get involved in this initiative, you can join the meetings at 5pm UTC every other Wednesday in the #community-team channel of the<a href=\"https://make.wordpress.org/chat/\"> Making WordPress Slack group</a>.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Further Reading:</h2>\n\n\n\n<ul>\n <li><a href=\"https://2017.us.wordcamp.org/\">WordCamp US 2017</a> is happening on December 1-3 in Nashville, with the annual State of the Word talk happening on Saturday afternoon — <a href=\"https://2017.us.wordcamp.org/live-stream/\">the live stream of the entire event is available to view for free</a>.</li>\n <li><a href=\"https://xwp.co/tide-a-path-to-better-code-across-the-wordpress-ecosystem/\">Tide</a>, a new service from XWP designed to help users make informed plugin choices, is due to launch at WordCamp US.</li>\n <li>Gutenberg development is continuing rapidly, with <a href=\"https://make.wordpress.org/core/2017/11/28/whats-new-in-gutenberg-28th-november/\">a packed new release</a> and a focus on <a href=\"https://make.wordpress.org/test/2017/11/22/testing-flow-in-gutenberg/\">usability testing</a>.</li>\n <li>After some discussion among the community, <a href=\"https://make.wordpress.org/community/2017/11/10/discussion-micro-regional-wordcamps/\">a new type of micro-regional WordCamp</a> is going to be introduced into the global WordCamp program.</li>\n</ul>\n\n\n\n<p><em></em></p>\n\n\n\n<p><em>If you have a story we should consider including in the next “Month in WordPress” post, please <a href=\"https://make.wordpress.org/community/month-in-wordpress-submissions/\">submit it here</a>.</em></p>\n\n\n\n<p><em></em></p>\";s: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, 01 Dec 2017 11:00: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:15:\"Hugh Lashbrooke\";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:34:\"BuddyPress: BuddyPress 2018 Survey\";s:7:\"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=269296\";s:7:\"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://buddypress.org/2017/12/buddypress-2018-survey/\";s: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:630:\"<p>What would you like BuddyPress to focus on in 2018? The core team has ideas of where BuddyPress can expand on and your input is important to harness the time and resources of an all-volunteer crew.</p>\n<p>The survey will take 10-15 minutes to complete. Be assured that we will not publish your name, email address, nor IP address when we post the results of this survey at BuddyPress.org.</p>\n<p>Thank you for your time and cooperation. Your feedback will help us improve BuddyPress for you.</p>\n<p>=> <strong><a href=\"https://mercime.polldaddy.com/s/buddypress-2018-survey\">Take the 2018 BuddyPress Survey</a></strong></p>\";s: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, 01 Dec 2017 10:26: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: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: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:72:\"WPTavern: Gutenberg 1.8 Adds Greater Extensibility for Plugin Developers\";s:7:\"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=76855\";s:7:\"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/gutenberg-1-8-adds-greater-extensibility-for-plugin-developers\";s: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:3668:\"<p><a href=\"https://make.wordpress.org/core/2017/11/28/whats-new-in-gutenberg-28th-november/\" rel=\"noopener\" target=\"_blank\">Gutenberg 1.8</a> was released this week with several notable improvements that will give plugin developers more flexibility in extending the editor. It introduces <a href=\"https://github.com/WordPress/gutenberg/pull/3668\" rel=\"noopener\" target=\"_blank\">block templates</a>, which developers can use when registering a new custom post type. The block templates define a set of pre-configured blocks that will initialize when a user creates a new post. In the example below, Gutenberg lead engineer Matias Ventura demonstrates what a block template for a book custom post type might look like.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/11/block-template-book.gif?ssl=1\"><img /></a></p>\n<p>This release also <a href=\"https://github.com/WordPress/gutenberg/pull/3456\" rel=\"noopener\" target=\"_blank\">improves the design of the tools menu</a> (toggled by the ellipses at the top of the editor) to have a more lightweight UI that will lend itself better to displaying items added by extensions in the future. The new design displays multiple menu items as a radio group where the selected item shows a checkmark, an approach that Gutenberg designers found to be more intuitive after some research.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/11/Screen-Shot-2017-11-29-at-10.02.09-PM.png?ssl=1\"><img /></a></p>\n<p>Version 1.8 adds the ability for developers to <a href=\"https://github.com/WordPress/gutenberg/pull/3577\" rel=\"noopener\" target=\"_blank\">filter allowed block types</a> by specifying an array of type names that can be shown in the inserter component. This capability paves the way for block nesting where developers can define allowed children types. It also allows custom post types to specify which blocks are allowed or restricted, which will be useful for keeping CPTs lean as Gutenberg already has a large number of block types.</p>\n<p>The release also <a href=\"https://github.com/WordPress/gutenberg/pull/3554\" rel=\"noopener\" target=\"_blank\">improves meta box compatibility</a> with a fallback to the classic editor if Gutenberg detects that the meta box is unsupported. Plugin authors can now explicitly declare Gutenberg incompatibility when registering meta boxes, which will trigger a warning to the end user that explains which meta boxes have caused the fallback to the classic editor.</p>\n<p>In addition to all the improvements for extending Gutenberg, version 1.8 makes many small design tweaks, including <a href=\"https://github.com/WordPress/gutenberg/pull/3054\" rel=\"noopener\" target=\"_blank\">updated color pickers</a> with color indications and collapsible panels, <a href=\"https://github.com/WordPress/gutenberg/pull/3563\" rel=\"noopener\" target=\"_blank\">updated icon and tooltip</a> for table of contents menu, and a new <a href=\"https://github.com/WordPress/gutenberg/pull/3483\" rel=\"noopener\" target=\"_blank\">contrast checker</a> for paragraph color options. It also <a href=\"https://github.com/WordPress/gutenberg/pull/3632\" rel=\"noopener\" target=\"_blank\">puts block actions back on the block level</a> for the default, while still preserving the option to change it to a fixed toolbar at the top of the screen.</p>\n<p>For a full list of all the changes in version 1.8, check out the <a href=\"https://make.wordpress.org/core/2017/11/28/whats-new-in-gutenberg-28th-november/\" rel=\"noopener\" target=\"_blank\">release post</a> and the <a href=\"https://wordpress.org/plugins/gutenberg/#developers\" rel=\"noopener\" target=\"_blank\">changelog</a> on WordPress.org.</p>\";s: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 Nov 2017 17:23: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: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:94:\"WPTavern: WPWeekly Episode 296 – Gutenberg, Telemetry, Calypso, and More With 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=76917&preview=true&preview_id=76917\";s:7:\"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:98:\"https://wptavern.com/wpweekly-episode-296-gutenberg-telemetry-calypso-and-more-with-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1249:\"<p>In this episode, <a href=\"https://jjj.blog/\">John James Jacoby</a> and I are joined by <a href=\"https://ma.tt/\">Matt Mullenweg</a>, co-creator of the WordPress project and CEO of Automattic. We discussed a wide range of topics including, his role on the board of directors at GitLab, Telemetry or data-usage gathering in WordPress, and the WordPress Growth Council.</p>\n<p>We learned what’s happening with the Mobile teams inside Automattic, the future of Calypso, and the role of Pressable as a testing bed. Last but not least, we find out how beneficial joining HackerOne has been for WordPress and why WordPress.com finally allowed the installation of third-party themes and plugins through its Business Plan.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, December 13th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p><strong>Listen To Episode #296:</strong><br />\n</p>\";s: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 Nov 2017 04:40: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: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:\"WPTavern: WordPress 4.9.1 Released, Fixes Page Template Bug\";s:7:\"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=76879\";s:7:\"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:69:\"https://wptavern.com/wordpress-4-9-1-released-fixes-page-template-bug\";s: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:1473:\"<p>WordPress 4.9.1 <a href=\"https://wordpress.org/news/2017/11/wordpress-4-9-1-security-and-maintenance-release/\">is available</a> for download and is a maintenance and security release. This release addresses four security issues in WordPress 4.9 and below that could potentially be used as part of a multi-vector attack. According to the release notes, the following changes have been made to WordPress to protect against these vulnerabilities.</p>\n<ol>\n<li>Use a properly generated hash for the <code>newbloguser</code> key instead of a determinate substring.</li>\n<li>Add escaping to the language attributes used on <code>html</code> elements.</li>\n<li>Ensure the attributes of enclosures are correctly escaped in RSS and Atom feeds.</li>\n<li>Remove the ability to upload JavaScript files for users who do not have the <code>unfiltered_html</code> capability.</li>\n</ol>\n<p><a href=\"https://twitter.com/0x62626262\">Rahul Pratap Singh</a> and John Blackbourn are credited with responsibly disclosing the vulnerabilities. In addition to the changes above, 4.9.1 fixes eleven bugs, including the Page Template issue <a href=\"https://wptavern.com/workarounds-for-the-page-template-bug-in-wordpress-4-9\">we wrote about</a> last week. Many sites have already updated to 4.9.1 automatically. To see a list of detailed changes, check out <a href=\"https://make.wordpress.org/core/2017/11/28/wordpress-4-9-1-scheduled-for-november-29th/\">this post</a> on Make WordPress Core.</p>\";s: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 Nov 2017 04:07: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: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: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:96:\"WPTavern: Distributor Plugin Now in Beta: A New WordPress Content Syndication Solution from 10up\";s:7:\"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=76871\";s:7:\"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:106:\"https://wptavern.com/distributor-plugin-now-in-beta-a-new-wordpress-content-syndication-solution-from-10up\";s: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:6117:\"<p>10up published a <a href=\"https://10up.com/blog/2017/distributor-plugin/\" rel=\"noopener\" target=\"_blank\">preview of its Distributor plugin</a> today, a new solution for syndicating content across WordPress multisite networks and the web. The <a href=\"https://distributorplugin.com/\" rel=\"noopener\" target=\"_blank\">plugin</a>, which the company plans to release for free, is currently in final closed beta. It enables content managers to either “push” or “pull” content to/from sites where they have permission to publish.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/11/distributor-push-screenshot.jpg?ssl=1\"><img /></a>image credit: <a href=\"https://10up.com/blog/2017/distributor-plugin/\">10up</a>\n<p>Distributor includes the ability for editors to make changes to the original post and have linked copies automatically inherit the changes. This includes post content, post meta (custom fields), and taxonomy terms. It also ensures that content is SEO-friendly by providing canonical links that prevent duplicate content issues.</p>\n<p>The plugin differs from many <a href=\"https://wordpress.org/plugins/search/syndicate/\" rel=\"noopener\" target=\"_blank\">existing content syndication solutions</a>, which traditionally make use of RSS or XML/RPC, in that it is built using the <a href=\"https://developer.wordpress.org/rest-api/\" rel=\"noopener\" target=\"_blank\">REST API</a>.</p>\n<p>“The main technical advantage of the REST API is that it’s a ‘standard’ inside core for sharing information across sites,” 10up President Jake Goldman said. “Outside of multisite, we never even considered another approach. It is worth saying that you do need Distributor installed on both ‘ends’ for all of its features to work across the REST API – we need to extend the REST API a bit to get everything to pull across (plus the handling of ‘linked’ copies).”</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/11/distributor-pull-screenshot.jpg?ssl=1\"><img /></a></p>\n<p>Goldman said that although “syndication” means many different things to different people, the “classic” use case of simply pulling from a source, such as ingesting content from a newswire, is not exactly the use case for Distributor. He said the team behind the plugin is perhaps more excited about the “push” implementation. In building their own solution, 10up also incorporated its trademark lean/streamlined UI, as many existing solutions are more complicated to use.</p>\n<p>“We’re definitely aware that there are other takes at a good content sharing workflow,” Goldman said. “We even helped Automattic refactor their solution a few years ago, which they use on VIP. We took a bit of inspiration from that project, including the modular ‘connection’ types. In earnest, when trying to help our clients find solutions that were intuitive, extensible, and engineered to an enterprise grade, we just couldn’t endorse any of the options we found. It’s more a UX problem – clunky workflows, overwhelming interfaces, feature overload (I prefer a certain simplicity) – than anything, though we also have concerns about how modular / customizable some of the other solutions are.”</p>\n<h3>10up Plans to Release Distributor on WordPress.org Following the Closed Beta</h3>\n<p>10up currently has several clients using Distributor, including large publishers with several properties/magazines/newspapers, as well as large technology businesses using it for their news and media features across a network of sites. The plugin is in final closed beta but 10up is granting early access to those with interesting use cases.</p>\n<p>“We’re casting a pretty broad net in terms of ‘appropriate’ use cases for the beta; in fact, we’re hoping that broader beta testing will open our eyes to great use cases within the scope of its purpose that we hadn’t considered,” Goldman said. “We’ve already heard from some very large publishers, some smaller digital publishers, universities, public school systems, some enterprises with multiple properties, agencies interested in staging content, and just engineers who own multiple sites that share content – we’re excited about all of these use cases!”</p>\n<p>Goldman said his team is most curious to see Distributor applied to use cases that aren’t simply “news and publishing,” including CRMs and product businesses with multiples sites that share content. 10up has not yet tested specific plugins for full compatibility with Distributor, but Goldman said pre-version 1.0, it should work with any plugin that adds custom post types and fields/taxonomies “the WordPress way.”</p>\n<p>“In fact, Distributor checks to see which sites support the same post type and terms before it offers a list of sites you can ‘distribute’ content to (so you can’t ‘distribute’ a WooCommerce product to a site not running WooCommerce),” he said. Selling the same products across multiple stores, with automatically updating inventory and price changes, is just one of the many interesting use cases for Distributor.</p>\n<p>Goldman said the team anticipates taking the plugin out of beta and putting it on WordPress.org by mid to late Q1 of 2018, in approximately 2-3 months, depending on feedback from testers. 10up does not currently have a plan to monetize the plugin.</p>\n<p>“I never want to rule out that there are ‘eventually’ opportunities for commercialization, but I can honestly say that isn’t anywhere on our roadmap or consideration set at the moment,” Goldman said.</p>\n<p>Those who want to get in on the Distributor beta before it is publicly available can <a href=\"https://distributorplugin.com/\" rel=\"noopener\" target=\"_blank\">sign up on the plugin’s website </a>with a quick explanation of your use case. 10up will send a copy of the plugin for testing.</p>\";s: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 Nov 2017 23:19: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:\"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:58:\"Dev Blog: WordPress 4.9.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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=5215\";s:7:\"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/11/wordpress-4-9-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4275:\"<p>WordPress 4.9.1 is now available. This is a <strong>security and maintenance release</strong> for all versions since WordPress 3.7. We strongly encourage you to update your sites immediately.</p>\n\n\n\n<p>WordPress versions 4.9 and earlier are affected by four security issues which could potentially be exploited as part of a multi-vector attack. As part of the core team's ongoing commitment to security hardening, the following fixes have been implemented in 4.9.1:</p>\n\n\n\n<ol>\n <li>Use a properly generated hash for the <code>newbloguser</code> key instead of a determinate substring.</li>\n <li>Add escaping to the language attributes used on <code>html</code> elements.</li>\n <li>Ensure the attributes of enclosures are correctly escaped in RSS and Atom feeds.</li>\n <li>Remove the ability to upload JavaScript files for users who do not have the <code>unfiltered_html</code> capability.</li>\n</ol>\n\n\n\n<p>Thank you to the reporters of these issues for practicing <a href=\"https://make.wordpress.org/core/handbook/testing/reporting-security-vulnerabilities/\">responsible security disclosure</a>: <a href=\"https://twitter.com/0x62626262\">Rahul Pratap Singh</a> and John Blackbourn.</p>\n\n\n\n<p>Eleven other bugs were fixed in WordPress 4.9.1. Particularly of note were:</p>\n\n\n\n<ul>\n <li>Issues relating to the caching of theme template files.</li>\n <li>A MediaElement JavaScript error preventing users of certain languages from being able to upload media files.</li>\n <li>The inability to edit theme and plugin files on Windows based servers.</li>\n</ul>\n\n\n\n<p><a href=\"https://make.wordpress.org/core/2017/11/28/wordpress-4-9-1-scheduled-for-november-29th/\">This post has more information about all of the issues fixed in 4.9.1 if you'd like to learn more</a>.</p>\n\n\n\n<p><a href=\"https://wordpress.org/download/\">Download WordPress 4.9.1</a> or venture over to Dashboard → Updates and click \"Update Now.\" Sites that support automatic background updates are already beginning to update automatically.</p>\n\n\n\n<p>Thank you to everyone who contributed to WordPress 4.9.1:</p>\n\n\n\n<p><a href=\"https://profiles.wordpress.org/schlessera/\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/afercia/\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/la-geek/\">Angelika Reisiger</a>, <a href=\"https://profiles.wordpress.org/blobfolio/\">Blobfolio</a>, <a href=\"https://profiles.wordpress.org/bobbingwide/\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/chetan200891/\">Chetan Prajapati</a>, <a href=\"https://profiles.wordpress.org/dd32/\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/ocean90/\">Dominik Schilling (ocean90)</a>, <a href=\"https://profiles.wordpress.org/edo888/\">edo888</a>, <a href=\"https://profiles.wordpress.org/erich_k4wp/\">Erich Munz</a>, <a href=\"https://profiles.wordpress.org/flixos90/\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/mista-flo/\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/pento/\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/ibenic/\">Igor Benic</a>, <a href=\"https://profiles.wordpress.org/jfarthing84/\">Jeff Farthing</a>, <a href=\"https://profiles.wordpress.org/jbpaul17/\">Jeffrey Paul</a>, <a href=\"https://profiles.wordpress.org/jeremyescott/\">jeremyescott</a>, <a href=\"https://profiles.wordpress.org/joemcgill/\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/johnpgreen/\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/ryelle/\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/lenasterg/\">lenasterg</a>, <a href=\"https://profiles.wordpress.org/clorith/\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/melchoyce/\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mariovalney/\">Mário Valney</a>, <a href=\"https://profiles.wordpress.org/natacado/\">natacado</a>, <a href=\"https://profiles.wordpress.org/odysseygate/\">odyssey</a>, <a href=\"https://profiles.wordpress.org/precies/\">precies</a>, <a href=\"https://profiles.wordpress.org/stodorovic/\">Saša</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov/\">Sergey Biryukov</a>, and <a href=\"https://profiles.wordpress.org/westonruter/\">Weston Ruter</a>.</p>\";s: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 Nov 2017 20:33: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:15:\"John Blackbourn\";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:74:\"WPTavern: Four Things I’d Like to See in This Year’s State of the Word\";s:7:\"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=76830\";s:7:\"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/four-things-id-like-to-see-in-this-years-state-of-the-word\";s: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:2724:\"<p>This weekend, WordPressers from far and wide will descend upon Nashville, TN, for WordCamp US. One of the highlights of the event is Matt Mullenweg’s <a href=\"https://ma.tt/2016/12/state-of-the-word-2016/\">State of the Word</a>. Last year, Mullenweg shared a variety of statistics, made a few announcements, and plotted a new course for WordPress development.</p>\n<p>As the event draws near, here are some things I’d like to see addressed in this year’s State of the Word.</p>\n<h2>Will There Be A Renewed Effort to Make Calypso Plugin Aware?</h2>\n<p>During the 2016 State of the Word, Mullenweg announced that Calypso became plugin aware.</p>\n<img />Plugin Aware Calypso\n<p>The idea was that plugins that are actively installed on more than 1 million sites could participate in an experimental program that would add meta box support and other plugin specific features to Calypso. To this day, this has not materialized and I’d like to know what happened and if there will be a renewed effort in 2018.</p>\n<h2>An Update on WordPress Foundation Supported Initiatives</h2>\n<p>Last year, we learned that WordCamp Central became its own Public Benefit Corporation while the WordPress Foundation maintained its non-profit status. In addition, the Foundation announced support for like-minded non-profits such as, Hack the Hood, Internet Archive, and Black Girls CODE.</p>\n<p>I’d like to know how much money the Foundation has contributed to these causes and if any progress has been made on providing educational workshops in underdeveloped countries.</p>\n<h2>An Update on WordPress’ Development/Release Strategy</h2>\n<p>A year into WordPress’ new development and release strategy, I’d like to know what challenges he and the team have faced and overcome. I’d also like to know if the results he has seen thus far warrant continuing the experiment in 2018.</p>\n<h2>Take an Opportunity to Explain What Gutenberg Really Is</h2>\n<p>Last year, Mullenweg surprised the community by announcing that the WordPress post editor would be revamped. Since then, we’ve learned that the project’s <a href=\"https://ma.tt/2017/08/we-called-it-gutenberg-for-a-reason/\">name is Gutenberg</a> and it’s about more than just the editor. I’d like to see Mullenweg take this unique opportunity to provide a deeper explanation into what the project is and why it’s pivotal for WordPress’ continued success.</p>\n<hr />\n<p>This year’s State of the Word will be presented on Saturday, December 2nd, at 4PM Eastern. If you can’t see it in-person, you can <a href=\"https://2017.us.wordcamp.org/live-stream/\">watch it for free</a> via the livestream.</p>\";s: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 Nov 2017 17:38: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:\"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:49:\"HeroPress: WordPress Gave Me the Perfect Identity\";s:7:\"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=2294\";s:7:\"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:136:\"https://heropress.com/essays/wordpress-gave-perfect-identity/#utm_source=rss&utm_medium=rss&utm_campaign=wordpress-gave-perfect-identity\";s: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:18339:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/112917-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: I have fallen head over heels in love with WordPress and I am excited.\" /><h3>How it all began…</h3>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/myself.jpg\"><img class=\"size-medium wp-image-2305\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/myself-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" /></a>I just love this picture of myself..hehehe\n<p>I remember when cybercafés started trending in Nigeria; I had just finished high school and was awaiting my results for admittance into the university. I would spend not less than 10 hours surfing the internet every day, all my pocket money went into buying bulk time at cafes. My first email was opened in 2002 on my 1st attempt to surf the internet. Spending my day at cafes continued till I left the university after which I bought a desktop computer and a modem. You can imagine my excitement as being a proud owner of a PC even though it was a desktop PC.</p>\n<p>You see, my first degree was in Philosophy. I remember my dad asking me if I was sure about that course because prior to my senior school leaving exams I had always said I was going to study business administration. What business administration was, to be honest, I had no idea, I only wanted it because I had the impression it was a cool course and I would be a corporate employee in a big firm strutting around in my skirt suit looking all glamorous.</p>\n<h3><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/i-in-skirts2.jpg\"><img class=\"size-medium wp-image-2310 aligncenter\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/i-in-skirts2-300x300.jpg\" alt=\"\" width=\"300\" height=\"300\" /></a>Funny right?</h3>\n<p>Anyway i always had a thing for Philosophy so you can imagine my enthusiasm when I discovered Philosophy was a course of study, of course I opted to study Philosophy in 2004 and graduated in 2008. However my love for the internet did not reduce by the way. I not only surfed the internet but I spent a lot of time freelancing and testing my skills as a ghost writer on different freelancing sites. I also went into blogging as well in 2009. I tried using blogger, hubpages and WordPress, but oh my, I found WordPress so complicated for me because I did not understand how it worked so I stuck with blogger and hubpages.</p>\n<h3>Growing up as a Timid but Curious Cat…</h3>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/i-and-my-lil-brother.jpg\"><img class=\"wp-image-2306 size-medium\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/i-and-my-lil-brother-225x300.jpg\" alt=\"\" width=\"225\" height=\"300\" /></a>I and my little brother. Haa of course we all grown now. Haha\n<p>During my younger years and even up to two years ago I was always a shy person deep down in my mind, but alas quite a number of people thought I was bold. This might be because 99.9% of my friends were males, or maybe not. Perhaps this could also be because I grew up with 3 brothers and no sister. It’s quite shocking though that they thought that way because it is only quite recent that I cultivated the courage to speak my mind. Prior to a year ago (2016), expressing my feelings by speaking the words out was a <em>herculean task</em>; this was what led me to starting a personal blog around 2009. I needed to let out my feelings and since I dared not speak them out, I blogged them.</p>\n<p>Blogging gave me a voice and a medium to express my thoughts and I became a better writer with each passing script. After my one year government mandated youth service in 2010 which is required of every Nigerian citizen after a bachelor’s degree, I bought an HP Mini Laptop. Can you imagine my excitement at owning a personalized computer? This I could carry around, my happiness knew no bounds.</p>\n<p>In 2010 thanks to the social network Facebook I met an Uncle of mine and we became BFF’s {Best Friends Forever} even though we had never met physically before. He was in Rome at the period we met studying Media and Communication. He came back home in 2012 but his job as a Salesian Brother took him to Ghana. Of course I made sure to keep a date with him when he came back home briefly in 2012 before heading to resume in Ghana. We had cake and ice cream at my favourite café that day.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/i-and-bff-unc-sam.jpg\"><img class=\"size-medium wp-image-2303\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/i-and-bff-unc-sam-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" /></a>I and my BFF Uncle..Hehe\n<h3>Rediscovering WordPress…</h3>\n<p>Then came 2015, I ended a horrid relationship and i lost my best friend female; I mean I thought I was in love, but alas I had loved the idea of loving a person. I was not happy and I wanted a breath of fresh air and a change of environment. At that period, I had obtained a postgraduate diploma in mass communication and I had started a Masters Degree in Information Management and my required 3 months internship was coming up that summer. I decided to volunteer in Ghana at the headquarters of the <a href=\"https://sdbafw.org\" target=\"_blank\" rel=\"noopener\">Salesians of Don Bosco in West Africa {SDBAFW}</a> where my Uncle was. My time there was beyond awesome and a new beautiful story in my life chapter.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/at-sdbafw-in-ashaiman.jpeg\"><img class=\"size-medium wp-image-2309\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/at-sdbafw-in-ashaiman-300x300.jpeg\" alt=\"\" width=\"300\" height=\"300\" /></a>I met a lot of amazing people and made new friends within the SDB community in Ashaiman, Ghana\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/i-and-volunteers-at-kakum.jpg\"><img class=\"size-medium wp-image-2308\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/i-and-volunteers-at-kakum-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /></a>i and other volunteers and great friends at Kakum National Park in Cape Coast, Ghana\n<p>I worked in the communications department at the SDBAFW province. My Uncle knew how much I loved blogging and he had been my writing tutor for a while, so one day he asked why I was not blogging on WordPress. Of course I went on about how difficult and complicated the platform was, he sighed, told me their organization website was built on WordPress and he gave me a folder with tutorial videos made by <a href=\"https://twitter.com/mor10\">Morten Rand-Hendriksen</a> for beginners to go watch.</p>\n<p>After two weeks of watching those videos, my life changed. You see prior to 2015 I treated my time online as a purely personal affair because I was just passionate about being online right, exploring, freelancing and discovering. I never thought it would become something I could make a full time career out of. I was still pursuing a career in Human Resources since managing people was another thing I was great at. In late 2015 I had joined a series of online Facebook groups and I was wowed by one in particular run by John Obidi (<a href=\"https://web.facebook.com/groups/smartbcamp\" target=\"_blank\" rel=\"noopener\">SmartBCamp</a>) because I saw a lot of people earning an income from things I did and knew for the fun of it. I found myself asking what planet I had been living on and why I had not made my passion my business.</p>\n<p>Hence I made a decision in 2016 to make my passion my business, I decided to move to Lagos since I was done with my Master’s coursework and focus on this new journey of mine. Meanwhile in December of 2015, a woman had contacted me saying she loved how my blog UX on WordPress looked and if I could work on hers.</p>\n<blockquote><p>As at then I didn’t even know the difference between wordpress.com and wordpress.org so I started googling which is something I’m also great at.</p></blockquote>\n<p>I took on the task of redesigning her website and I started troubleshooting all the current issues she had on her site, I read up a lot, I visited the WordPress.Org/showcase and was wowed with all the good things I could do with WordPress.org, I especially loved Snoop Doggs website and told myself my goal would be to be able to make a project that would look like that one day. But of course the first few sites I designed were horrible, when I look back at them now I wonder what was going on in my head when I designed them.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/my-typical-day-in-gh.jpg\"><img class=\"size-medium wp-image-2302\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/my-typical-day-in-gh-300x225.jpg\" alt=\"\" width=\"300\" height=\"225\" /></a>A typical day for me in front of my PC\n<p>Alas I had great online plans for the year 2016 but up until the middle of year 2016, I had a series of bad experiences that sent me back to the stone age and my parents house; I blogged about it <a href=\"https://mojispeaks.com/2017/01/09/my-2016-in-retrospect/\">here</a>. They were bad experiences alright, but a lot of good came out of them. I got saved bit by bit and found my rhythm again. Meanwhile I was already <em><strong>falling in love with WordPress</strong></em> so I decided to look for ways to give back. That’s when I stumbled upon make.wordpress.org and discovered there were so many ways to give back. I was not a programmer alright so what will I go to do in Core or CLI or any other similar place, I automatically went for the community.</p>\n<h3>Building the Nigerian WordPress Community…</h3>\n<p>In November 2016 I made one of the best decisions that turned my life around. I was fed up because the entire year had not turned out in any way I had planned in December 2015 of the previous year. So I made an interesting decision to turn off my data and go to sleep by 10pm. Trust me this was a big decision for me before I would usually freak out if my data wasn’t functioning or if my phone battery died. Anyway during this period I had moved back to my parents’ right and I needed to work in a quiet room because I so much needed to focus.</p>\n<p>Also by now I had discovered there was a WordPress Meetup community in Lagos but when I applied I did so for Ogun which is my state, but during my conversations with WordPress Global they had requested if I would be willing to join the Lagos WordPress Group, at first I was a little hesitant because Lagos is an hour drive from my town, I don’t have a car, so that adds another one hour. Surely you can’t live in Lagos and not know Lagos and traffic are best buddies so that adds another hour to my trip. Without thinking too much about it I agreed. Looking back today I do not regret it one bit.</p>\n<blockquote><p>This started my journey as a WordPress Lagos Community Co-organizer and a Community Deputy.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/600_455477788.jpeg\"><img class=\"size-medium wp-image-2317\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/600_455477788-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" /></a>the first meetup i had as a Lagos co-organizer</blockquote>\n<p>This is 2017 right, I must not fail to mention it to you that my income in the last one year has come solely from WordPress Web Design. Today the Nigerian WordPress has grown, still growing definitely, the Lagos WordPress Meetup group has also grown and we have had 8 Meetups this year. I have made great friends and co-organizers in the community who are dedicated to building and sharing their WordPress knowledge with the community like I am. We are hosting the very first Nigerian <a href=\"https://2018.lagos.wordcamp.org/\">WordCamp in Lagos</a> on March 10 2018 at the Civic Centre in Victoria Island, Lagos. I must not forget to mention that we also now have an Ijebu WordPress Community; that’s my town alright <span class=\"ttfmake-icon mceNonEditable fa\"></span> .</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/3rd-wp-lagos-meetup-2017.jpg\"><img class=\"wp-image-2312 size-full\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/3rd-wp-lagos-meetup-2017.jpg\" alt=\"\" width=\"299\" height=\"224\" /></a>this was our 4th meetup event this year\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/first-wp-lagos-meetup-2018.jpg\"><img class=\"wp-image-2313 size-medium\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/first-wp-lagos-meetup-2018-300x169.jpg\" alt=\"\" width=\"300\" height=\"169\" /></a>this was our first meetup event this year\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/600_463289287.jpeg\"><img class=\"wp-image-2316 size-medium\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/600_463289287-300x225.jpeg\" alt=\"\" width=\"300\" height=\"225\" /></a>our third meetup early this year\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/WPlagos-30th-Sept-Meetup-Photo-1.jpg\"><img class=\"size-medium wp-image-2318\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/WPlagos-30th-Sept-Meetup-Photo-1-300x199.jpg\" alt=\"\" width=\"300\" height=\"199\" /></a>WPlagos 30th Sept Meetup (5th meetup this year)\n<p>We recently created a <a href=\"https://photos.app.goo.gl/VNx047kS0Bj8u7z63\" target=\"_blank\" rel=\"noopener\">google photos for our past meetups, click here to view them. </a>So tell me why I shouldn’t be grateful? Why I shouldn’t fall in love with WordPress? Because this is all that has happened to me since I met WordPress, <em><strong>I have fallen head over heels in love with WordPress and I am excited.</strong></em></p>\n<h3>What have i gained from WordPress?</h3>\n<ol>\n<li>I overcame my stage fright fully because i have to get in front of the crowd at every meetup to do the introductions and introduce the WordPress communities.</li>\n<li>I attended my first WordCamp in Cape Town, South Africa. <a href=\"https://youtu.be/PE6k8-PLKVk\" target=\"_blank\" rel=\"noopener\">Click here to see my picture story</a>. Coincidentally this was also my first time outside West Africa. I had never been in an aircraft for more than one hour before my trip.</li>\n<li>I have made money from WordPress Web Design Projects, enough to sustain me during my learning period. Still learning everyday.</li>\n<li>I jumped off <a href=\"https://mojispeaks.com/2017/11/19/i-did-jump-off-a-hill-my-wordcamp-cape-town-story/\" target=\"_blank\" rel=\"noopener\">Signal Hill in Cape Town, find post here</a>; next up, sky diving.</li>\n</ol>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/DSC_0246-1.jpg\"><img class=\"size-medium wp-image-2314\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/DSC_0246-1-300x200.jpg\" alt=\"\" width=\"300\" height=\"200\" /></a>At a WordCamp Cape Town session\n<p><strong>My advice to you from my experience so far…</strong></p>\n<p>Always seek to understand the basics of whatever knowledge you seek…never jump in too fast, wanting to spiral to the top while ignoring the learning curve. You will crash down effortlessly if you do so and would have learnt nothing.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/WordPress-Gave-Me-the-Perfect-Identity.png\"><img class=\"size-medium wp-image-2315\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2017/11/WordPress-Gave-Me-the-Perfect-Identity-300x225.png\" alt=\"\" width=\"300\" height=\"225\" /></a>WordPress Gave Me the Perfect Identity Indeed…I no longer roam the internet..hehehe\n<blockquote>\n<p>The End…?<br />\nI Don’t Think So…<br />\nMy Story has Just Begun. <strong>Stay Tuned….!</strong></p>\n</blockquote>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: WordPress Gave Me the Perfect Identity\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=WordPress%20Gave%20Me%20the%20Perfect%20Identity&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-gave-perfect-identity%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: WordPress Gave Me the Perfect Identity\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-gave-perfect-identity%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fwordpress-gave-perfect-identity%2F&title=WordPress+Gave+Me+the+Perfect+Identity\" rel=\"nofollow\" target=\"_blank\" title=\"Share: WordPress Gave Me the Perfect Identity\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/wordpress-gave-perfect-identity/&media=https://heropress.com/wp-content/uploads/2017/11/112917-150x150.jpg&description=WordPress Gave Me the Perfect Identity\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: WordPress Gave Me the Perfect Identity\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/wordpress-gave-perfect-identity/\" title=\"WordPress Gave Me the Perfect Identity\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/wordpress-gave-perfect-identity/\">WordPress Gave Me the Perfect Identity</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s: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 Nov 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:8:\"Mary Job\";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:71:\"WPTavern: WordCamp Albuquerque Gears Up for 5th Edition in January 2018\";s:7:\"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=76845\";s:7:\"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-albuquerque-gears-up-for-5th-edition-in-january-2018\";s: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:3644:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/11/Screen-Shot-2017-11-28-at-8.15.51-PM-e1511921930548.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://2018.albuquerque.wordcamp.org/\" rel=\"noopener\" target=\"_blank\">WordCamp Albuquerque</a> is gearing up for its 5th edition January 19-21, 2018, following events held in 2011, 2012, 2013, and 2016. An all-new organizing team is ready to invigorate the Southwestern WordPress community with an exciting array of world-class speakers and educational opportunities for both new and experienced users.</p>\n<p>Lead organizer Alonso Indacochea said the team is expecting to host 300 attendees. Many of them will be coming from New Mexico, Southern Colorado, West Texas, and Arizona.</p>\n<p>“The southwestern community is interesting because there are a lot of developers doing really interesting tech work, but a lot of it happens in silos due to government secrecy,” speaker wrangler Sam Hotchkiss said. “New Mexico has a rich history of technology, from the Manhattan Project and the creation of the first nuclear weapons to the formation of Microsoft, which was founded in Albuquerque in 1975.</p>\n<p>“We’re trying to pull together that community to connect with each other, and also establish Albuquerque as a WordCamp with consistently high-quality speakers of global renown.”</p>\n<p>In pursuit of this goal, Hotchkiss has recruited a healthy crop of top quality speakers from the WordPress community. During the Saturday afternoon session, <a href=\"http://chrislema.com/\" rel=\"noopener\" target=\"_blank\">Chris Lema</a>, Vice President of Products and Innovation at <a href=\"https://www.liquidweb.com/\" rel=\"noopener\" target=\"_blank\">Liquid Web</a>, will be interviewing a diverse group of speakers in the main hall, including the following:</p>\n<ul>\n<li>Ashleigh Axios, former Creative Director for the Obama White House and AIGA Board Member</li>\n<li>Sakin Shrestha, Founder of Catch Themes and the main drive behind the vibrant WordPress community in Nepal</li>\n<li>John Maeda, Global Head, Computational Design and Inclusion at Automattic</li>\n<li>Jon Brown, WordPress Nomad</li>\n<li>Alonso Indacochea, WordCamp lead organizer, who had no serious software development experience 5 years ago, went through a local boot camp, and is now CEO of the fastest growing digital agency in New Mexico</li>\n</ul>\n<p>This year WordCamp Albuquerque will feature multiple tracks sorted by topic, beginning with a WordPress Fundamentals track on Friday, January 19.</p>\n<p>“Foundation Friday is something I’ve seen be really successful at other camps,” Hotchkiss said. “It gives people who are new to WP a base of knowledge so that they can go into Saturday feeling confident and ready to learn. Each class on Friday will build on the one before it. Starting from scratch? Show up at 9. Already have a site, but need help handling the layout? Come at 10:30.”</p>\n<p>Saturday’s program will include sessions in the Business, Design, and Development tracks throughout the day, in addition to the planned interviews. A contributor day session is planned for Sunday. The event’s organizers are still <a href=\"https://2018.albuquerque.wordcamp.org/speakers/\" rel=\"noopener\" target=\"_blank\">accepting speaker applications</a> until midnight on Monday, December 4. They plan to finalize the schedule next week. <a href=\"https://2018.albuquerque.wordcamp.org/attendees/\" rel=\"noopener\" target=\"_blank\">Tickets</a> are on sale now and attendees can elect to purchase one for whatever combination of days they wish to attend.</p>\";s: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 Nov 2017 02:30: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:\"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:52:\"WPTavern: Practicing the Pac-Man Rule at WordCamp 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=76857\";s:7:\"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:63:\"https://wptavern.com/practicing-the-pac-man-rule-at-wordcamp-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1750:\"<p>With more than 2,000 attendees expected, WordCamp US is one of the largest conferences devoted to WordPress. It’s a great opportunity to meet a lot of new faces and catch up with familiar ones. If you’re standing in the hallway at WordCamp US speaking with a group of people and want to encourage others to say hi or be part of the conversation, try this tip <a href=\"https://www.facebook.com/GreatSmokyMountainsAssociation/videos/10155628004363673/\">shared by</a> Jason Cosper called the <a href=\"http://ericholscher.com/blog/2017/aug/2/pacman-rule-conferences/\">Pac-Man rule</a> written by Eric Holscher.</p>\n<img />photo credit: rbatina <a href=\"http://www.flickr.com/photos/27988337@N00/12081061246\">Random Phone Shots</a> <a href=\"https://creativecommons.org/licenses/by-nc-nd/2.0/\">(license)</a>\n<p>The rule is simple. When standing in a circle, provide an opening for someone to join the group. By standing in an open circle, it gives a passersby explicit permission to join the group and limits the appearance of cliques. I didn’t realize how standing in a closed circle can be off-putting to those wanting to introduce themselves or chime in until learning about this rule.</p>\n<p>In addition to the Pac-Man rule, <a href=\"https://twitter.com/bobWP/status/935576711252533248\">Bob Dunn suggests</a> using eye contact to invite people to the group. <a href=\"https://twitter.com/mor10/status/935582280164065280\">Morten Rand-Hendriksen suggests</a> that if you’re looking to start a conversation with someone new, start with groups of two people as they likely know each other and want to talk to new people. I’ll be practicing the Pac-Man rule this weekend and I encourage other attendees to do so as well.</p>\";s: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 Nov 2017 21:06: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: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:71:\"WPTavern: Gutenberg Team Is Ramping Up Usability Testing at WordCamp 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=76807\";s:7:\"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/gutenberg-team-is-ramping-up-usability-testing-at-wordcamp-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4848:\"<p>The Gutenberg Team will have a usability testing station set up at WordCamp US where attendees can participate in a round of pre-set tests that focus on the writing flow. Testers will answer a short survey that includes their prior WordPress experience level, age, and device used. Volunteers will get participants set up with a testing site and will start the screen recording app.</p>\n<p>Testers will be asked to create a post based on the content shown in an image. There are three different images, which require the user to perform actions such as adding images, embedding media, creating unordered lists, adding quotes, and other basic content creation tasks. In order to segment results, the usability tests have been divided into <a href=\"https://drive.google.com/file/d/0B4BHP7ZnNw32RWJRa2diODFXVGs/view\" rel=\"noopener\" target=\"_blank\">beginner</a>, <a href=\"https://drive.google.com/file/d/0B4BHP7ZnNw32bVpyd2xaaFVVMWM/view\" rel=\"noopener\" target=\"_blank\">intermediate</a>, and <a href=\"https://drive.google.com/file/d/0B4BHP7ZnNw32R3U0ZkJRVXBySWM/view\" rel=\"noopener\" target=\"_blank\">advanced</a> level images.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/11/Screen-Shot-2017-11-27-at-10.23.35-PM.png?ssl=1\"><img /></a>Advanced level task image for Gutenberg usability testing\n<p>After completing the test, participants will be asked to answer a few followup questions, such as “Did the task take longer or shorter than you expected?” and “Are you more or less likely to use the Gutenberg editor in the future?”</p>\n<p>“This is the second round of usability testing scripts — we tried out the first batch of scripts at WordCamp Milano, and made some adjustments for clarity,” Gutenberg design lead Tammie Lister said. “As a result of testing, we moved the toolbar on blocks to not be fixed and back to the block. At Milano, we tested the tests.”</p>\n<p>As the result of these tests and other prior feedback, Lister <a href=\"https://github.com/WordPress/gutenberg/issues/3570\" rel=\"noopener\" target=\"_blank\">recommended the default position of the toolbar to be fixed to the block</a>.</p>\n<p>Anna Harrison, UX lead at Ephox (the makers of tinyMCE), has been instrumental in helping with the efforts around testing and writing scripts. She also offered <a href=\"https://github.com/WordPress/gutenberg/issues/3570#issuecomment-345879950\" rel=\"noopener\" target=\"_blank\">feedback on the ticket</a>, referencing comments from the previous discussion on the issue:</p>\n<blockquote><p>A fixed [docked to top] toolbar solution has several complications. Firstly, we break accessibility. I won’t reiterate the discussion, as it’s well articulated above. Secondly, we break things independent of accessibility – I ran user tests on something quite similar to this last year, and we discovered that <a href=\"https://go.tinymce.com/blog/from-the-ux-desk-road-testing-inline-image-editing/\" rel=\"noopener\" target=\"_blank\">disconnecting the toolbar from the point of action resulted in 100% user test fails</a>.</p></blockquote>\n<p>Gutenberg version 1.8 will change the default back to displaying block actions on the block level, although the option to change it to a fixed toolbar at the top of the screen will still be available. This change is one example of how usability testing is shaping Gutenberg’s development. WordCamp US is an opportunity for the team to collect a host of new testing data in one place.</p>\n<p>Lister said all the data that is collected will be processed by volunteers on the make/test team, but the team is still small and they could use more volunteers to work on this effort.</p>\n<p>“The turnaround time on processing the data we collect really depends on how many volunteers are available to work on it,” Lister said. “It also depends on if it’s a bug reported – bugs are easier to get fixed right away. If the data indicates an area where we need to investigate more, we’ll do that. The results of the testing will be published on make.wordpress.org/test.”</p>\n<p>Lister said the team is hoping to reach a wider variety of WordPress users at WCUS this year, from all backgrounds and careers. The testing booth offers an opportunity for anyone to contribute to the future of WordPress, regardless of your experience level or familiarity with the software. The team is also eager to broaden its testing field by recruiting non-WordPress users as well. If you can’t make it to WordCamp US, you can still <a href=\"https://make.wordpress.org/test/2017/11/22/testing-flow-in-gutenberg/\" rel=\"noopener\" target=\"_blank\">contribute to Gutenberg by taking and administering usability tests</a> on your own with the help of the instructions posted on the make.wordpress.org/test site.</p>\";s: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 Nov 2017 16:55: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: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: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:102:\"WPTavern: Delete Me WordPress Plugin Assists Website Owners in Granting the GDPR Right to be Forgotten\";s:7:\"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=76474\";s:7:\"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/delete-me-wordpress-plugin-assists-website-owners-in-granting-the-gdpr-right-to-be-forgotten\";s: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:4080:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/11/eraser.jpg?ssl=1\"><img /></a>photo credit: pj_vanf <a href=\"http://www.flickr.com/photos/48066826@N02/5006945413\">to err is human</a> – <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>With the EU GDPR compliance deadline just <a href=\"http://www.gdprcountdownclock.com/\" rel=\"noopener\" target=\"_blank\">178 days away</a>, many WordPress site owners are looking for tools that will help them meet the requirements. The regulation expands existing rights of data subjects in several key ways, including (but not limited to) the right to be notified of data breaches, the right to access personal data, the right to be forgotten, and the right to data portability.</p>\n<p>A plugin called <a href=\"https://wordpress.org/plugins/delete-me/\" rel=\"noopener\" target=\"_blank\">Delete Me</a>, by Clinton Caldwell, is one that may be helpful in addressing the Right to be Forgotten. The <a href=\"https://www.eugdpr.org\" rel=\"noopener\" target=\"_blank\">GDPR.org</a> website breaks it down as follows:</p>\n<blockquote><p>Also known as Data Erasure, the right to be forgotten entitles the data subject to have the data controller erase his/her personal data, cease further dissemination of the data, and potentially have third parties halt processing of the data. The conditions for erasure, as outlined in article 17, include the data no longer being relevant to original purposes for processing, or a data subjects withdrawing consent. It should also be noted that this right requires controllers to compare the subjects’ rights to “the public interest in the availability of the data” when considering such requests.</p></blockquote>\n<p>The Delete Me plugin takes this one step further for site owners who are comfortable allowing users to delete their own data without having to create a request for it. By default, the delete button displays on the profile.php screen in the admin, but administrators can elect to use a shortcode to display it somewhere else on the frontend.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/11/Screen-Shot-2017-11-27-at-4.54.42-PM.png?ssl=1\"><img /></a></p>\n<p>The plugin will delete the users’ posts, links, and even comments (optional) after the user confirms. The confirmation screen could stand to include more information about what data is being deleted so that the user knows what to expect. However, administrators do have the option to specify this within the JavaScript confirmation dialog. After deletion the user is dumped back out to the homepage by default, but the redirect URL can be configured in the plugin’s settings page.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/11/Screen-Shot-2017-11-27-at-4.54.21-PM.png?ssl=1\"><img /></a></p>\n<p>Additional configurable settings include the ability to select specific WordPress roles to allow to delete themselves, specify class and style attributes of delete link, enable or disable JavaScript confirm for Shortcode, specify button text, and send an email notification when users delete themselves.</p>\n<p>Delete Me also supports network activation and single site activation for multisite installations. By default, users can only delete themselves and their content from a single site, while other networked sites where they are registered will not be affected. The plugin does include a “Delete From Network” checkbox that administrators can enable to allow users to delete themselves from all sites on the network.</p>\n<p><a href=\"https://wordpress.org/plugins/delete-me/\" rel=\"noopener\" target=\"_blank\">Delete Me</a> is available for free on WordPress.org. I tested the plugin and have confirmed that it works with WordPress 5.0-alpha. It is currently active on more than 2,000 sites. By no means does it satisfy the full requirements of the GDPR, but it provides a decent starting point for site owners who want to make this option available to their users without having to manually fulfill their requests.</p>\";s: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 Nov 2017 00:08: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: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:99:\"WPTavern: WPWeekly Episode 295 – Turkey With A Side of Gutenberg and Giving Thanks to 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:58:\"https://wptavern.com?p=76789&preview=true&preview_id=76789\";s:7:\"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:106:\"https://wptavern.com/wpweekly-episode-295-turkey-with-a-side-of-gutenberg-and-giving-thanks-to-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3233:\"<p>I apologize for the delay in getting this episode out to you. In this episode, <a href=\"https://jjj.blog/\">John James Jacoby</a> and I discussed a range of topics, including a caching bug introduced in WordPress 4.9 that causes Page Templates not to display for an hour. We talk about the possibilities of using Gutenberg with WooCommerce and how it could impact product management.</p>\n<p>As is tradition, near the end of the show, we shared what we’re thankful for. We also shared what listeners are <a href=\"https://twitter.com/jeffr0/status/933101857039200258\">thankful for</a> regarding open source.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://core.trac.wordpress.org/ticket/42573\">This bug</a> is causing some theme developers to rip their hair out. Weston Ruter <a href=\"https://core.trac.wordpress.org/ticket/42573#comment:57\">explains</a> why the change was implemented.<br />\n<a href=\"https://wptavern.com/woocommerce-explores-the-possibilities-and-challenges-for-e-commerce-in-the-gutenberg-era\">WooCommerce Explores the Possibilities and Challenges for E-Commerce in the Gutenberg Era</a><br />\n<a href=\"https://wptavern.com/tailor-page-builder-plugin-discontinued-owners-cite-funding-gutenberg-and-competition\">Tailor Page Builder Plugin Discontinued, Owners Cite Funding, Gutenberg, and Competition</a><br />\n<a href=\"https://wptavern.com/wordcamp-europe-2018-speaker-applications-now-open\">WordCamp Europe 2018 Speaker Applications Now Open</a><br />\n<a href=\"https://wptavern.com/github-launches-security-alerts-for-javascript-and-ruby-projects-python-support-coming-in-2018\">GitHub Launches Security Alerts for JavaScript and Ruby Projects, Python Support Coming in 2018</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://wordpress.org/plugins/trigger-happy/\">Trigger Happy</a> developed by Hotsource is a visual scripting tool for WordPress, allowing you to connect plugins and events together using a simple user interface. It currently supports core WordPress functionality, WooCommerce, and Ninja Form.</p>\n<p><a href=\"https://github.com/boogah/big-dummy\">Big dummy</a> is a project for folks who need to emulate an established blog with plenty of content while doing WordPress benchmarking and performance testing.</p>\n<p>There are 2495 posts, 6197 comments, 231 tags, 26 categories, and 10 pages worth of WordPress dummy data, fully ready to import. That’s 3 (simulated) years worth of content. <i>Note:</i> There are ~1.6 GB of images (courtesy of<a href=\"https://unsplash.com\"> Unsplash</a>) attached to these posts. It’s a very good idea to import everything <i>but</i> the media in order to avoid timeouts or errors with the WordPress Importer.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, November 29th 3:00 P.M. Eastern</p>\n<p>Subscribe to <a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\">WordPress Weekly via Itunes</a></p>\n<p>Subscribe to <a href=\"https://www.wptavern.com/feed/podcast\">WordPress Weekly via RSS</a></p>\n<p>Subscribe to <a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\">WordPress Weekly via Stitcher Radio</a></p>\n<p><strong>Listen To Episode #295:</strong><br />\n</p>\";s: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 Nov 2017 07:54: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:\"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:64:\"WPTavern: Workarounds for the Page Template Bug in WordPress 4.9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=76785\";s:7:\"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/workarounds-for-the-page-template-bug-in-wordpress-4-9\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2105:\"<p>WordPress 4.9 “Tipton” <a href=\"https://wptavern.com/wordpress-4-9-released-with-major-improvements-to-customizer-workflow-updated-code-editors-and-new-core-gallery-widget\">was released</a> last week and although it’s largely trouble-free, there is one particular issue <a href=\"https://wordpress.org/support/topic/updated-to-4-9-wont-detect-page-template/\">users</a> and <a href=\"https://core.trac.wordpress.org/ticket/42573#comment:75\">developers</a> are running into that’s causing frustration. In 4.9, custom page templates that are created fail to display in the Template drop-down menu. The issue is related to changes made to the <a href=\"https://core.trac.wordpress.org/changeset/41806\">file editor</a>.</p>\n<p>Previous versions of WordPress listed files 2-levels deep in the editor. In 4.9, the entire directory tree for a theme is listed regardless of its depth. Caching was added to help limit the performance impacts of loading large WordPress themes. “An unintended side effect of the caching is that the same directory listing function <tt>get_files</tt> is used both for the theme editor and for gathering page templates,” Weston Ruter, Co-Release Lead for WordPress 4.9 <a href=\"https://core.trac.wordpress.org/ticket/42573#comment:57\">said</a>.</p>\n<p>Within the <a href=\"https://core.trac.wordpress.org/ticket/42573\">trac ticket</a>, developers suggests that a button be added that flushes all caches or disabling the cache if <tt>WP_DEBUG</tt> is set to true. Neither suggestion turned into a patch committed to core. Instead, Ruter has <a href=\"https://gist.github.com/westonruter/6c2ca0e5a4da233bf4bd88a1871dd950\">released a plugin</a> as a workaround that flushes the template cache. Other workarounds include, bumping the theme’s version, running the <tt>wp cache flush</tt> command in WP CLI, or waiting 60 minutes for the cache to expire.</p>\n<p>The ticket is marked as a high priority but because of the upcoming holidays in the US and WordCamp US next weekend, it could be at least a few weeks before WordPress 4.9.1 is released.</p>\";s: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 Nov 2017 00:42: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:\"\";}}}}}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:97:\"WPTavern: Tide Project Aims to Audit and Score WordPress Themes and Plugins based on Code Quality\";s:7:\"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=76652\";s:7:\"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:108:\"https://wptavern.com/tide-project-aims-to-audit-and-score-wordpress-themes-and-plugins-based-on-code-quality\";s: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:8526:\"<p>Last week XWP dropped an intriguing <a href=\"https://xwp.co/tide-a-path-to-better-code-across-the-wordpress-ecosystem/\" rel=\"noopener\" target=\"_blank\">preview of a new project called Tide</a> that aims to improve code quality across the WordPress plugin and theme ecosystems. The company has been working with the support of Google, Automattic, and WP Engine, on creating a new service that will help users make better plugin decisions and assist developers in writing better code.</p>\n<p>XWP’s marketing manager Rob Stinson summarized the project’s direction so far:</p>\n<blockquote><p>Tide is a service, consisting of an API, Audit Server, and Sync Server, working in tandem to run a series of automated tests against the WordPress.org plugin and theme directories. Through the Tide plugin, the results of these tests are delivered as an aggregated score in the WordPress admin that represents the overall code quality of the plugin or theme. A comprehensive report is generated, equipping developers to better understand how they can increase the quality of their code.</p></blockquote>\n<p>The XWP announcement also included a screenshot of how this data might be presented in the WordPress plugin directory:</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/11/jetpack-tide-plugin-score.jpg?ssl=1\"><img /></a></p>\n<p>XWP plans to unveil the service at WordCamp US in Nashville at the Google booth where they will be inviting the community to get involved. Naturally, a project with the potential to have this much impact on the plugin ecosystem raises many questions about who is behind the vision and what kind of metrics will be used.</p>\n<p>I contacted Rob Stinson and Luke Carbis at XWP, who are both contributors to the project, to get an inside look at how it started and where they anticipate it going.</p>\n<p>“Tide was started at XWP about 12 months ago when one of our service teams pulled together the idea, followed up by a proof of concept, of a tool that ran a series of code quality tests against a package of code (WordPress plugin) and returned the results via an API,” Stinson said. “We shortly after came up with the name Tide, inspired by the proverb ‘A rising tide lifts all boats,’ thinking that if a tool like this could lower the barrier of entry to good quality code for enough developers, it could lift the quality of code across the whole WordPress ecosystem.”</p>\n<p>Stinson said XWP ramped up its efforts on Tide during the last few months after beginning to see its potential and sharing the vision with partners.</p>\n<p>“Google, Automattic and WP Engine have all helped resource (funds, infrastructure, developer time, advice etc) the project recently as well,” Stinson said. “Their support has really helped us build momentum. Google have been a big part of this since about August. We had been working with them on other projects and when we shared with them the vision for Tide, they loved it and saw how in line it is with the vision they have for a better performant web.”</p>\n<p>The Tide service is not currently active but a beta version will launch at WordCamp US with a WordPress plugin to follow shortly thereafter. Stinson said the team designed the first version to present the possibilities of Tide and encourage feedback and contribution from the community.</p>\n<p>“We realize that Tide will be its best if its open sourced,” he said. “There are many moving parts to it and we recognize that the larger the input from the community, the better it will represent and solve the needs of the community around code quality.”</p>\n<p>At this phase of the project, nothing has been set in stone. The Tide team is continuing to experiment with different ways of making the plugin audit data available, as well as refining how that data is weighed when delivering a Tide score.</p>\n<p>“The star rating is just an idea we have been playing with,” Stinson said. “The purpose of it will be to aggregate the full report that is produced by Tide into a simple and easy to understand metric that WordPress users can refer to when making decisions about plugins and themes. We know we haven’t got this metric and how it is displayed quite right. We’ve had some great feedback from the community already.”</p>\n<p>The service is not just designed to output scores but also to make it easy for developers to identify weaknesses in their code and learn how to fix them.</p>\n<p>“Lowering the barrier of entry to writing good code was the original inspiration for the idea,” Stinson said.</p>\n<h3>Tide Project Team Plans to Refine Metrics Used for Audit Score based on Community Feedback</h3>\n<p>The Tide project website, <a href=\"http://wptide.org\" rel=\"noopener\" target=\"_blank\">wptide.org</a>, will launch at WordCamp US and will provide developers with scores, including specifics like line numbers and descriptions of failed sniffs. Plugin developers will be able to use the site to improve their code and WordPress users will be able to quickly check the quality of a plugin. XWP product manager Luke Carbis explained how the Tide score is currently calculated.</p>\n<p>“Right now, Tide runs a series of code sniffs across a plugin / theme, takes the results, applies some weighting (potential security issues are more important than tabs vs. spaces), and then averages the results per line of code,” Carbis said. “The output of this is a score out of 100, which is a great indicator of the quality of a plugin or theme. The ‘algorithm’ that determines the score is basically just a series of weightings.”</p>\n<p>The weightings the service is currently using were selected as a starting point, but Carbis said the team hopes the WordPress community will help them to refine it.</p>\n<p>“If it makes sense, maybe one day this score could be surfaced in the WordPress admin (on the add new plugin page),” Carbis said. “Or maybe it could influence the search results (higher rated plugins ranked first). Or maybe it just stays on wptide.org. That’s really up to the community to decide.”</p>\n<p>In addition to running codesniffs, the Tide service will run two other scans. A <a href=\"https://developers.google.com/web/tools/lighthouse/\" rel=\"noopener\" target=\"_blank\">Lighthouse</a> scan, using Google’s open-source, automated tool for improving the quality of web pages, will be performed on themes, which Carbis says is a “huge technological accomplishment.”</p>\n<p>“For every theme in the directory, we’re spinning up a temporary WordPress install, and running a Lighthouse audit in a headless chrome instance,” Carbis said. “This means we get a detailed report of the theme’s <em>front end output</em> quality, not just the code that powers it.”</p>\n<p>The second scan Tide will perform measures PHP compatibility and will apply to both plugins and themes.</p>\n<p>“Tide can tell which versions of PHP a plugin or theme will work with,” Carbis said. “For users, this means we could potentially hide results that we <em>know</em> won’t work with their WordPress install (or at least show a warning). For hosts, this means they can easily check the PHP compatibility before upgrading an install to PHP 7 (we think this will cause <em>many</em> more installs to be upgraded – the net effect being a noticeable speed increase, which we find really exciting and motivating).”</p>\n<p>Carbis said that the team is currently working in the short term to get the PHP Compatibility piece into the WordPress.org API, which he says could start influencing search results without any changes to WordPress core.</p>\n<p>“We’d also like to start engaging with the community to find out whether surfacing a Code Quality score to WordPress users is helpful, and if it is, what does that look like? (e.g. score out of 100, 5 star rating, A/B/C/D, etc.),” Carbis said. “We will release our suggestion for what this <em>could</em> look like as a plugin shortly after WordCamp US.”</p>\n<p>More specific information about the metrics Tide is currently using and how it applies to plugins and themes will be available after the service launches in beta. If you are attending WordCamp US and have some suggestions or feedback to offer the team, make sure to stop by the Google sponsorship booth.</p>\";s: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 Nov 2017 21:21: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:\"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: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:36:\"Matt: Adam Robinson on Understanding\";s:7:\"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=47663\";s:7:\"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://ma.tt/2017/11/adam-robinson-on-understanding/\";s: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:5921:\"<p>This is a long quote/excerpt from <a href=\"https://twitter.com/iamadamrobinson\">Adam Robinson</a> I’ve been holding onto for a while, from <a href=\"https://tribeofmentors.com/\">Tribe of Mentors</a>. Worth considering, especially if you strive to work in a data-informed product organization.</p>\n<blockquote><p>Virtually all investors have been told when they were younger — or implicitly believe, or have been tacitly encouraged to do so by the cookie-cutter curriculums of the business schools they all attend — that the more they understand the world, the better their investment results. It makes sense, doesn’t it? The more information we acquire and evaluate, the “better informed” we become, the better our decisions. Accumulating information, becoming “better informed,” is certainly an advantage in numerous, if not most, fields.</p>\n<p>But not in the eld of counterintuitive world of investing, where accumulating information can hurt your investment results.</p>\n<p>In 1974, Paul Slovic — a world-class psychologist, and a peer of Nobel laureate Daniel Kahneman — decided to evaluate the effect of information on decision-making. This study should be taught at every business school in the country. Slovic gathered eight professional horse handicappers and announced, “I want to see how well you predict the winners of horse races.” Now, these handicappers were all seasoned professionals who made their livings solely on their gambling skills.</p>\n<p>Slovic told them the test would consist of predicting 40 horse races in four consecutive rounds. In the first round, each gambler would be given the five pieces of information he wanted on each horse, which would vary from handicapper to handicapper. One handicapper might want the years of experience the jockey had as one of his top five variables, while another might not care about that at all but want the fastest speed any given horse had achieved in the past year, or whatever.</p>\n<p>Finally, in addition to asking the handicappers to predict the winner of each race, he asked each one also to state how confident he was in his prediction. Now, as it turns out, there were an average of ten horses in each race, so we would expect by blind chance — random guessing — each handicapper would be right 10 percent of the time, and that their confidence with a blind guess to be 10 percent.</p>\n<p>So in round one, with just five pieces of information, the handicappers were 17 percent accurate, which is pretty good, 70 percent better than the 10 percent chance they started with when given zero pieces of information. And interestingly, their confidence was 19 percent — almost exactly as confident as they should have been. They were 17 percent accurate and 19 percent confident in their predictions.</p>\n<p>In round two, they were given ten pieces of information. In round three, 20 pieces of information. And in the fourth and final round, 40 pieces of information. That’s a whole lot more than the five pieces of information they started with. Surprisingly, their accuracy had flatlined at 17 percent; they were no more accurate with the additional 35 pieces of information. Unfortunately, their confidence nearly doubled — to 34 percent! So the additional information made them no more accurate but a whole lot more confident. Which would have led them to increase the size of their bets and lose money as a result.</p>\n<p>Beyond a certain minimum amount, additional information only feeds — leaving aside the considerable cost of and delay occasioned in acquiring it — what psychologists call “confirmation bias.” The information we gain that conflicts with our original assessment or conclusion, we conveniently ignore or dismiss, while the information that confirms our original decision makes us increasingly certain that our conclusion was correct.</p>\n<p>So, to return to investing, the second problem with trying to understand the world is that it is simply far too complex to grasp, and the more dogged our at- tempts to understand the world, the more we earnestly want to “explain” events and trends in it, the more we become attached to our resulting beliefs — which are always more or less mistaken — blinding us to the financial trends that are actually unfolding. Worse, we think we understand the world, giving investors a false sense of confidence, when in fact we always more or less misunderstand it.<br />\nYou hear it all the time from even the most seasoned investors and financial “experts” that this trend or that “doesn’t make sense.” “It doesn’t make sense that the dollar keeps going lower” or “it makes no sense that stocks keep going higher.” But what’s really going on when investors say that something makes no sense is that they have a dozen or whatever reasons why the trend should be moving in the opposite direction.. yet it keeps moving in the current direction. So they believe the trend makes no sense. But what makes no sense is their model of the world. That’s what doesn’t make sense. The world always makes sense.</p>\n<p>In fact, because financial trends involve human behavior and human beliefs on a global scale, the most powerful trends won’t make sense until it becomes too late to profit from them. By the time investors formulate an understanding that gives them the confidence to invest, the investment opportunity has already passed.</p>\n<p>So when I hear sophisticated investors or financial commentators say, for example, that it makes no sense how energy stocks keep going lower, I know that energy stocks have a lot lower to go. Because all those investors are on the wrong side of the trade, in denial, probably doubling down on their original decision to buy energy stocks. Eventually they will throw in the towel and have to sell those energy stocks, driving prices lower still.</p></blockquote>\n<p> </p>\";s: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 Nov 2017 16:33: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: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: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:40:\"HeroPress: Finding WordPress in Cameroon\";s:7:\"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=2286\";s:7:\"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://heropress.com/essays/finding-wordpress-cameroon/#utm_source=rss&utm_medium=rss&utm_campaign=finding-wordpress-cameroon\";s: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:5922:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2018/11/112217-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: The more I share knowledge with someone the more I gain in return.\" /><p>My name is Michaël Nde Tabefor, I reside in Cameroon. I grew up in the economic capital of the country surrounded by so much diversity and culture.</p>\n<p>Yet I was still very young when I developed an interest in technology, back in Primary school I had a PC at home I used to play around, most especially Spider Solitaire hahaha. Well that game sound crazy but it’s educative, it built up my reflex with the mouse and yeah it worth it. When I arrived in Secondary school I quickly picked up the subject.</p>\n<p>I began educating myself on the trend of Technology and how they work. I developed a great interest for organisations such as Google, what they doing for humanity not just about technology. So I understood that no matter the position I get, I must always contribute to Humanity by volunteering.</p>\n<p>When I got to the University back in 2014 as a Freshman, I enrolled into Software engineering program where I began excelling and widening my thinking and reflex, met with other enthusiasts of technology.</p>\n<h3>Taking Another Path</h3>\n<p>Unlike other students I decided to go in for an internship at my first year (am one of those who believe university is good but it contribute to just about 10 – 20% of what builds up skill, people must be passionate about what the do, that passion alone will get you have the skills and be able to learn more and more).</p>\n<p>On my first day of internship, my internship coordinator gave me a task to go and install WordPress on my computer and create with the use of an external template (not there default themes) the website of my university.</p>\n<blockquote><p>Let me make this point, I didn’t know about WordPress. Had no idea of what it’s meant for. Completely blank.</p></blockquote>\n<p>I went back to my university, I met one of my professors, explained it to him, he redirected me to a senior student who once did internship and had to use WordPress.</p>\n<p>I went home, got my environment set up and called my senior, She did the guiding all through the installation on phone, till installing the template, my curiosity did the rest of the job hahaha, end of story. The next day I went back to the office, my coordinator didn’t expect me that soon Lol.</p>\n<h3>Diving Deeper</h3>\n<p>So I worked on some tutorial on building themes and plugin from scratch from Lynda.com but I took a break from building cuz I didn’t have much skills in PHP, in first year we didn’t do web technologies, I began hacking on PHP on my own, basic’ly I learnt almost every skill on my own via research and practice.</p>\n<p>I worked on several sites that used WordPress and began installing for others. My coordinator told me it would be interesting to start a WordPress Community so others could benefit from it. Actually the more I share knowledge with someone I gain 100% in return too, it builds up my mastery and ability to debug and resolve issues.</p>\n<blockquote><p>I began our local community and everyday I kept understanding WordPress more and more.</p></blockquote>\n<p>After a couple of months I officially joined the WordPress Volunteer Community in doing more reach outs in (November 2015 – via Rocio Valdiva) and on April 15, 2017 I organized <a href=\"https://2017.buea.wordcamp.org/\">the very first WordCamp in the whole of Central Africa</a> that brought together over 240 persons. Complete gallery on <a href=\"https://www.flickr.com/photos/144827169@N08/\">Flickr</a>, Video on <a href=\"https://youtu.be/nnUgqhveB00\">YouTube</a>.</p>\n<p>After the WordCamp I later on built a Mobile Money Payment Gateway with a local Network Operator web payment API using WooCommerce.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Finding WordPress in Cameroon\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Finding%20WordPress%20in%20Cameroon&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Ffinding-wordpress-cameroon%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Finding WordPress in Cameroon\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Ffinding-wordpress-cameroon%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Ffinding-wordpress-cameroon%2F&title=Finding+WordPress+in+Cameroon\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Finding WordPress in Cameroon\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/finding-wordpress-cameroon/&media=https://heropress.com/wp-content/uploads/2018/11/112217-150x150.jpg&description=Finding WordPress in Cameroon\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Finding WordPress in Cameroon\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/finding-wordpress-cameroon/\" title=\"Finding WordPress in Cameroon\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/finding-wordpress-cameroon/\">Finding WordPress in Cameroon</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s: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 Nov 2017 15:45:10 +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:20:\"Michaël Nde Tabefor\";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:98:\"WPTavern: Envato Elements Adds Unlimited WordPress Theme and Plugin Downloads to Subscription Plan\";s:7:\"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=76604\";s:7:\"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:109:\"https://wptavern.com/envato-elements-adds-unlimited-wordpress-theme-and-plugin-downloads-to-subscription-plan\";s: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:4096:\"<p>Envato has added <a href=\"https://envato.com/blog/announcing-wordpress-themes-on-envato-elements/\" rel=\"noopener\" target=\"_blank\">unlimited WordPress theme and plugin downloads</a> to its Elements digital assets subscription service. The company is including a curated collection of <a href=\"https://elements.envato.com/wordpress/themes/sort-by-latest\" rel=\"noopener\" target=\"_blank\">210 WordPress themes</a> and <a href=\"https://elements.envato.com/wordpress/plugins/sort-by-latest\" rel=\"noopener\" target=\"_blank\">100 plugins</a> along with 400,000 other design assets already offered through the service.</p>\n<p>Envato is the largest WordPress theme marketplace on the web with 39,102 themes and website templates for sale. Last year the company <a href=\"https://wptavern.com/envato-celebrates-10-years-in-business\" rel=\"noopener\" target=\"_blank\">celebrated 10 years in business</a> and reported that the community earned more than $40 million, with a significant portion of that revenue coming from WordPress products.</p>\n<p>The new “all you can eat” style package for WordPress themes on Envato Elements was introduced to boost the value of the service’s annual subscription plan and is not available to monthly subscribers. For $228/year, annual subscribers can change themes as often as they choose, which is the chief selling point of the new addition. However, the subscription service does not provide direct item support for the themes, as they are submitted by independent designers.</p>\n<p>Current Elements subscribers have the option to change their payment plans from monthly to annual to gain access to the unlimited WordPress products. Several disgruntled customers have taken to Twitter to express their dissatisfaction with the WordPress additions being withheld from existing monthly subscribers and perceive it to be heavy-handed a tactic for locking in more annual subscribers before raising the price.</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Not cheeky ask at all, your roadmap did not say anything about this price change, but got people signed up at $19 per month with the understanding this was going to be an added edition. Shocking way to treat loyal customers. <a href=\"https://twitter.com/hashtag/moneyhungry?src=hash&ref_src=twsrc%5Etfw\">#moneyhungry</a></p>\n<p>— TVBanterUK <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f4ad.png\" alt=\"?\" class=\"wp-smiley\" /> (@TVBanterUK) <a href=\"https://twitter.com/TVBanterUK/status/930943546693226501?ref_src=twsrc%5Etfw\">November 15, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Why hold monthly subscribers ransom by only allowing annual subscribers access? Feels somewhat unfair to long term subs!</p>\n<p>— Paul Charlton (@ipixel_design) <a href=\"https://twitter.com/ipixel_design/status/931203052765433862?ref_src=twsrc%5Etfw\">November 16, 2017</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Yes we were on the understanding us early day loyal subscribers signed up would get what the roadmap said, it’s such a sneaky way to get people locked in to the annual plan which you will then increase in year 2, seen it all before.</p>\n<p>— TVBanterUK <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f4ad.png\" alt=\"?\" class=\"wp-smiley\" /> (@TVBanterUK) <a href=\"https://twitter.com/TVBanterUK/status/931097713579610112?ref_src=twsrc%5Etfw\">November 16, 2017</a></p></blockquote>\n<p></p>\n<p>An Envato support representative offered some background on the decision in response to monthly subscribers who do not appreciate being excluded from additions to the service.</p>\n<p>“We chose this pricing model because we think it creates the fairest platform for both our subscribers and our authors,” the representative said. “A huge amount of time and dedication goes into creating and maintaining WordPress themes and plugin so this allows us to help protect the earnings of the authors who provide our community with premium assets.”</p>\";s: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 Nov 2017 04:01:34 +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:22:\"Matt: Tribe of Mentors\";s:7:\"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=47661\";s:7:\"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:39:\"https://ma.tt/2017/11/tribe-of-mentors/\";s: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:1004:\"<p>Tim Ferriss’s new book <a href=\"https://tribeofmentors.com/\">Tribe of Mentors is out</a>. I have finished it already, and can say it’s really excellent and I even liked it more than Tools of Titans even though I’m not in this one. <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" /> As I said in a message to Tim:</p>\n<blockquote class=\"twitter-tweet\">\n<p lang=\"en\" dir=\"ltr\">Curious how Tribe of Mentors is different from Tools of Titans? Here\'s a text to me from Matt Mullenweg (<a href=\"https://twitter.com/photomatt?ref_src=twsrc%5Etfw\">@photomatt</a>, CEO Automattic)… <a href=\"https://t.co/D9kvA2rFFC\">pic.twitter.com/D9kvA2rFFC</a></p>\n<p>— Tim Ferriss (@tferriss) <a href=\"https://twitter.com/tferriss/status/919729467244863488?ref_src=twsrc%5Etfw\">October 16, 2017</a></p></blockquote>\n<p></p>\n<p>I learned a lot from it, took a ton of notes to follow up on, and wrote down about twenty more books I have to read.</p>\";s: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, 21 Nov 2017 23:55: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: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: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:98:\"WPTavern: Tailor Page Builder Plugin Discontinued, Owners Cite Funding, Gutenberg, and Competition\";s:7:\"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=76599\";s:7:\"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:106:\"https://wptavern.com/tailor-page-builder-plugin-discontinued-owners-cite-funding-gutenberg-and-competition\";s: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:6385:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/11/tailor-e1510853958841.png?ssl=1\"><img /></a></p>\n<p><a href=\"https://www.enclavely.io/\" rel=\"noopener\" target=\"_blank\">Enclavely, Inc.</a>, the owners of the <a href=\"https://wordpress.org/plugins/tailor/\" rel=\"noopener\" target=\"_blank\">Tailor Page Builder plugin</a>, have announced that they will be <a href=\"https://www.tailorwp.com/discontinued/\" rel=\"noopener\" target=\"_blank\">discontinuing its development</a> effective immediately.</p>\n<p><a href=\"http://andrewworsfold.com/\" rel=\"noopener\" target=\"_blank\">Andrew Worsfold</a>, the original developer, launched Tailor in April 2016 and the plugin received an enthusiastic reception from the WordPress community. After performing <a href=\"https://wptavern.com/pippin-williamson-shakes-up-page-builder-plugins-with-critical-review\" rel=\"noopener\" target=\"_blank\">a critical review of the major page builders</a> available to users in September 2016, Pippin Williamson found only three that he could happily recommend to his customers: Tailor, Pootle Page Builder, and Beaver Builder. This recommendation was based primarily on code quality, usability, and compatibility with other plugins.</p>\n<p>The plugin <a href=\"https://www.tailorwp.com/tailor-page-builder-under-new-management/\" rel=\"noopener\" target=\"_blank\">came under new management in July 2017</a> after the original developer no longer had enough time to dedicate to the project. Worsfold sold it to Enclavely, whose owners were early and enthusiastic users of the plugin, for what he said was “a nominal amount.” Three months later, the new owners cite the cost of keeping up with Gutenberg and other competitors as the primary reason for <a href=\"https://www.tailorwp.com/discontinued/\" rel=\"noopener\" target=\"_blank\">discontinuing its development</a>:</p>\n<blockquote><p>Gutenberg is going to be bundled with WordPress itself. That’s definitely going to give a tough time to all 3rd party page builders and even that is not the case there are some really big players around like Elementor, Divi, Beaver Builder, and others which are going to be hard for us to compete with, being a completely free project and providing almost all the great features in free version…</p>\n<p>So the main reason for us to discontinue Tailor is due to finances, which Tailor needs to keep on its development and marketing to compete with all the big players and especially Gutenberg.</p></blockquote>\n<p>This instance seems to be more of a case of the new management running out of funds, rather than Gutenberg preemptively killing off a page builder. Enclavely was no longer willing to invest in developing a product that could compete against some of the more widely used page builders.</p>\n<p>“Tailor needs a lot of effort and money, which was much more than we estimated,” an Enclavely representative said when I contacted the company. “And even if we continue to put effort and money in this project, we all know that Gutenberg is going to smash this space soon and we won’t be able to survive, and so will be the case with some other page builders. This is why we decided to end this now.”</p>\n<p>Tailor currently has more than 3,000 active installations, according to WordPress.org. Fans of the plugin commented on the <a href=\"https://medium.com/tailor-page-builder/end-of-tailor-rise-of-gutenberg-6b4c59431f99\" rel=\"noopener\" target=\"_blank\">announcement</a>, asking if the original developer might be able to pick the project back up again.</p>\n<p>When I contacted the company, they said the original developer was no longer involved with the project.</p>\n<p>“The original developer has parted ways since the acquisition,” an Enclavely representative said. “He was involved with some stuff in the start but not that much, thus the decision is mainly taken by us based on the issues we were facing in maintaining this project.”</p>\n<p>However, Worsfold’s account of his involvement with Tailor following the acquisition differs greatly from Enclavely’s report.</p>\n<p>“I handed over control of the project in July, although all releases since then were also written by me and deployed on their behalf,” Worsfold said. “Given that I haven’t been asked to help with anything recently, and there have been no further releases, it looks like development has already ended.”</p>\n<p>The plugin is <a href=\"https://wordpress.org/plugins/tailor/\" rel=\"noopener\" target=\"_blank\">available free on WordPress.org</a> and licensed under the GPL, so anyone who wants to can fork it. Worsfold doesn’t anticipate having the time to maintain the project himself and said he was under the impression that Enclavely is attempting to sell it.</p>\n<p>“I made the decision to hand over control of Tailor as work and other commitments meant that I couldn’t dedicate enough time to the project,” Worsfold said. “I had hoped that the new team would continue development, provide support, and ensure the needs of existing users were met. However after just three months they’ve decided to give up. That’s obviously very disappointing.”</p>\n<p>Worsfold said that when he sold it to them, it was with the understanding that they would continue to develop and maintain it. He doesn’t anticipate being able to re-adopt it due to a lack of time to dedicate to the project.</p>\n<p>“I’m in much the same situation I was in before and it seems they are wanting to on-sell it themselves, so I can’t imagine I will be able to readopt it,” Worsfold said. “I have mixed feelings about the whole situation. Ultimately I see Gutenberg doing most of what page builders currently do, but in a better, more standardized, way. Hopefully, whatever’s left (custom blocks, styles, functionality etc.) will build on the framework and serve to reduce the amount of fragmentation in the ecosystem.”</p>\n<p>Worsfold is still limited on free time but said he would be willing to contribute to the project if someone decided to fork it and keep it alive.</p>\n<p>“It would be a shame to see something I built, and that people use, simply die,” he said. “Hopefully someone will either fork it or take over development.”</p>\";s: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, 21 Nov 2017 00:15:40 +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: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:105:\"WPTavern: GitHub Launches Security Alerts for JavaScript and Ruby Projects, Python Support Coming in 2018\";s:7:\"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=76663\";s:7:\"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/github-launches-security-alerts-for-javascript-and-ruby-projects-python-support-coming-in-2018\";s: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:1873:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2015/04/github-octocat.jpg?ssl=1\"><img /></a></p>\n<p>Last month <a href=\"https://wptavern.com/github-launches-new-dependency-graph-feature-with-security-alerts-coming-soon\" rel=\"noopener\" target=\"_blank\">GitHub launched its Dependency Graph feature</a> that tracks a repository’s dependencies and sub-dependencies under the Insights tab. This week the company rolled out an expansion of the feature and will now <a href=\"https://github.com/blog/2470-introducing-security-alerts-on-github\" rel=\"noopener\" target=\"_blank\">identify known vulnerabilities and send notifications</a> with suggested fixes from the GitHub community.</p>\n<p>Dependency graphs and security alerts are automatically enabled for public repositories, provided the repository owner has defined the dependencies in <a href=\"https://help.github.com/articles/listing-the-packages-that-a-repository-depends-on\" rel=\"noopener\" target=\"_blank\">one of the supported manifest file types</a>, such as package.json or Gemfile. (Private repo owners have to opt in.) The vulnerability alerts are not public – they will only be shown to those who have been granted access to the vulnerability alerts.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/11/github-dependency-vulnerability.png?ssl=1\"><img /></a></p>\n<p>GitHub uses data from the <a href=\"https://nvd.nist.gov/\" rel=\"noopener\" target=\"_blank\">National Vulnerability Database</a> to alert repository owners about publicly disclosed vulnerabilities that have <a href=\"https://cve.mitre.org/\" rel=\"noopener\" target=\"_blank\">CVE IDs</a>. Vulnerability detection is currently limited to JavaScript and Ruby projects but Python support is next on the roadmap for 2018. PHP, which is a bet less widely used in projects on GitHub, is likely further down the list.</p>\";s: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 Nov 2017 00:25: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:\"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:60:\"WPTavern: WordCamp Europe 2018 Speaker Applications Now Open\";s:7:\"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=76608\";s:7:\"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://wptavern.com/wordcamp-europe-2018-speaker-applications-now-open\";s: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:3019:\"<p>WordCamp Europe 2018 has opened the <a href=\"https://2018.europe.wordcamp.org/2017/11/15/are-you-ready-to-speak-at-the-largest-wordpress-event-in-europe/\" rel=\"noopener\" target=\"_blank\">call for speakers</a> and will be accepting applications through January 15. The organizing team recommends that speakers already have some experience ahead of applying to speak at the largest WordPress event in Europe, but a dedicated Content Team will also be available with resources for helping speakers create a successful presentation.</p>\n<p>The 2017 event received a total of 235 speaker applications and 43 were selected for the main event. Organizers plan to stick to the same format and are calling for 40-minute talks (30 min + 10 min Q&A) as well as 10-minute lightning talks. This year the event will experiment with hosting community workshops and organizers plan to open a separate call for workshop leaders next week.</p>\n<p>The Content Team put out a specific call for more technical talks at the 2018 event after a <a href=\"https://2018.europe.wordcamp.org/2017/11/10/how-your-feedback-will-help-us-shape-the-next-wordcamp-europe/\" rel=\"noopener\" target=\"_blank\">community survey</a> showed that more developer-oriented talks are what the audience is looking for. More than half of those surveyed identified themselves as developers (54%), with business owners (12%) the next largest demographic.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/11/Screen-Shot-2017-11-17-at-11.44.21-AM.png?ssl=1\"><img /></a></p>\n<p>The survey also showed that 37% of respondents have been working with WordPress for more than 9 years and roughly 90% of attendees have been using WordPress for 4-9+ years. Advanced development was the most highly requested topic for presentations, selected by 53% of respondents, followed by design (45%).</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/11/Screen-Shot-2017-11-17-at-11.54.06-AM.png?ssl=1\"><img /></a></p>\n<p>The survey results offer some insight about which topics might fare well at WCEU in 2018. Organizers have also compiled an extensive <a href=\"https://apply.wp-europe.org/ideas\" rel=\"noopener\" target=\"_blank\">list of ideas and topics</a> to inspire speaker applicants.</p>\n<p>A batch of 1,000 Early Bird tickets recently <a href=\"https://wptavern.com/wordcamp-europe-2018-early-bird-tickets-now-on-sale\" rel=\"noopener\" target=\"_blank\">went on sale</a> and there are still 680 available. Attendees who purchase a ticket before December 31, 2017, will receive a limited-edition swag item. The organizing team plans to release tickets in batches, as in previous years, but will not be setting specific expectations on sales this year, according to PR representative Letizia Barbi. The Sava Center venue, an international congress and cultural center, is the largest audience hall in Serbia and will accommodate all who want to attend WCEU 2018. Barbi said it should also scale down nicely in case of a smaller turn out.</p>\";s: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, 17 Nov 2017 19:19: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: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:99:\"WPTavern: WooCommerce Explores the Possibilities and Challenges for E-Commerce in the Gutenberg Era\";s:7:\"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=76597\";s:7:\"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:110:\"https://wptavern.com/woocommerce-explores-the-possibilities-and-challenges-for-e-commerce-in-the-gutenberg-era\";s: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:4350:\"<p>The next release of WordPress (5.0) will introduce the new Gutenberg editor and contributors plan to keep it rolling towards the eventual goal of providing a full site building experience. Nearly every WordPress theme and plugin developer will be impacted by the change and many are starting to look ahead to how their products may interact with Gutenberg in the future.</p>\n<p>What will e-commerce look like in the Gutenberg era? The WooCommerce design team has published <a href=\"https://woocommerce.com/2017/11/woocommerce-gutenberg/\" rel=\"noopener\" target=\"_blank\">a preview of some of their “Wootenberg” experiments</a>, along with a gif demonstrating what a block-based editing experience may look like in the context of working with products. The team sees a lot of potential for putting the power of visual product editing into the hands of users.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/11/wootenberg.gif?ssl=1\"><img /></a></p>\n<p>The example shows a quick exploration of page layout with product blocks and the team also posted an idea of what basic product authoring may look like with a predefined product template that includes the featured image, product title, description, and price as new Gutenberg blocks. But will it be possible to have complex product creation fit into a block-based editor? The WooCommerce team admits in the post that they don’t yet know how this will work.</p>\n<p>“One thing that isn’t yet 100% clear is how complex plugins like WooCommerce will work with Gutenberg,” Automattic designer/developer James Koster said. “A simple product with a description, a price, and a category is one thing. But a product with variations, for each of which you want to upload a different image, and need to manage/track stock is quite another. Imagining a WYSIWYG editing experience for that kind of data is a little fuzzier.”</p>\n<p>Koster referenced Gutenberg’s newly merged support for meta boxes, the first step in making product authoring possible. However, the Gutenberg team is still experimenting and isn’t yet set on a solution for implementing meta boxes.</p>\n<p>“How this works with WooCommerce in the long term is unclear,” Koster said. “But you can rest assured it’s something we’ll be dedicating more time to investigating as WordPress approaches the 5.0 release.” Koster concludes the post by asking readers if visual product editing, with the flexibility to rearrange product/shop layouts, is something that interests them.</p>\n<p>“If there’s one thing that WooCommerce should perhaps learn from Shopify’s rapid growth, it’s that many ‘would-be’ shop owners don’t care to spend hours upon hours tweaking the layout of their shop, and that pre-built easy-to-use software that looks good and feels good, but can still be extended in complex ways, is what attracts many users,” Jesse Nickles commented on the post. “While this may be the underlying goal of Gutenberg, it perhaps doesn’t crossover clearly to the e-commerce world.”</p>\n<p>Koster said he agrees that users don’t always need visual editing experiences and that simple things like price changes should be quick and painless.</p>\n<p>“How we present data-driven editing alongside the Gutenberg experience will ultimately determine the success of the project from a WooCommerce perspective,” Koster said.</p>\n<p>Support for meta boxes is one the most challenging aspects of the Gutenberg project that the team has yet to solve. Exploring the possibilities of flexible page layouts for products is exciting, but even the WooCommerce team is left wondering how this is all going to work with more complex CMS data. Smaller product teams without the collective knowledge and resources of WooCommerce may have a more difficult time finding the bandwidth to experiment and rebuild their products in time for WordPress 5.0.</p>\n<p>The WooCommerce team invites any users interested in Gutenberg-related UX changes to join the plugin’s <a href=\"https://woocommerce.com/design-feedback/\" rel=\"noopener\" target=\"_blank\">design feedback group</a>, as they continue to explore how the new editor will work in the context of complex e-commerce product creation and display.</p>\";s: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, 17 Nov 2017 04:30: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:\"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: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:113:\"WPTavern: GDPR for WordPress Project Gains Momentum, Proposal Receives Positive Response from Developer 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:29:\"https://wptavern.com/?p=76484\";s:7:\"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:123:\"https://wptavern.com/gdpr-for-wordpress-project-gains-momentum-proposal-receives-positive-response-from-developer-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:5743:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/10/WP-GDPR-Compliance.png?ssl=1\"><img /></a></p>\n<p>Community feedback on the new <a href=\"https://www.gdprwp.com\" rel=\"noopener\" target=\"_blank\">GDPR for WordPress project</a>, created by WordCamp Denmark organizer Kåre Mulvad Steffensen and WP Pusher creator Peter Suhm, has started rolling in after the two launched a survey for developers. The project aims to provide an industry standard for getting plugins compliant with EU General Data Protection Regulation (GDPR) legislation ahead of the May 2018 deadline.</p>\n<p>Steffensen <a href=\"https://www.gdprwp.com/status-the-gdpr-interface/\" rel=\"noopener\" target=\"_blank\">published</a> some initial results of the survey after having it open for two weeks. So far, 90% of respondents have answered that they would consider implementing a GDPR “file” types solution for their plugins if a standard was available. Only 4.9% of the 40 developers who responded said they have a plan for making their plugins GDPR compliant and 43.9% said they do not currently have a plan. The remaining 24.4% were developers of plugins that do not handle personal data.</p>\n<p>“Our talks with Paul Sieminski from <a href=\"https://automattic.com/\" rel=\"noopener\" target=\"_blank\">Automattic</a> and Dovy Paukstys from the <a href=\"https://reduxframework.com/\" rel=\"noopener\" target=\"_blank\">Redux options framework</a> have reassured us that we still do have a need for a GDPR structure which can help the community establish a basis for handling GDPR compliance,” Steffensen said.</p>\n<p>Steffensen and Suhm created a <a href=\"https://github.com/GDPRWP/standard\" rel=\"noopener\" target=\"_blank\">GitHub repository</a> where they have outlined their proposal for a PHP object interface that plugin developers could add to their codebases as a standard way of indicating how their plugins work with personal data.</p>\n<p>“The nature of such an interface puts some responsibility in the hands of the developer to identify any place personal data is stored,” Steffensen said. “What kind of data it is, and for what purpose as well as how it should be handled upon deletion. The Interface approach will allow a community-wide adoption, without setting limitations on how plugin developers choose to work with their data – something we obviously can’t control.”</p>\n<p>The idea is that plugin developers could then build other tools on top of this framework using specific functions that correspond to GDPR requirements, such as functions that allow users to access their data, implement the right to be forgotten, report data breaches, and delete and anonymize data. Developers could also build plugins that offer a plain language description of what personal data a plugin collects and how it is handled.</p>\n<p>In speaking with Dovy Paukstys on how this could work with Redux, Steffensen said the options framework may be able to facilitate compliance for the 500,000+ sites where it is active and the developers who use it to build plugins.</p>\n<p>“Dovy from Redux has a coder’s view on this,” Steffensen said. “Our object interface (PHP) would be something his framework could provide an easy way to utilize for the many developers using Redux. The redux users (developers) could essentially do this themselves also, but since Redux is a framework it makes sense to see if they can build something that will make it near instant for developers to provide compliance for the GDPR.”</p>\n<p>Steffensen said the team is aware that the first version of the interface will not render plugins, and by extension their sites, instantly compliant. The interface they are proposing is not one that could be held legally accountable, but the goal is to make it possible for developers to build accountable systems on top of it.</p>\n<h3>GDPR for WordPress Project Founders Consider Accepting Sponsorships</h3>\n<p>With 189 <a href=\"http://www.gdprcountdownclock.com/\" rel=\"noopener\" target=\"_blank\">days remaining before the GDPR goes into effect</a>, the team will need to work quickly to make a solution available with enough time for interested developers to incorporate it into their plugins. They have not yet set up a way to accept donations but are considering it.</p>\n<p>“We aren’t actively seeking funding, but would love any funds that would help us allocate the time needed to keep the momentum going,” Steffensen said. “We’re lucky that the <a href=\"https://wptavern.com/gdpr-for-wordpress-project-seeks-to-provide-a-standard-for-plugin-compliance\" rel=\"noopener\" target=\"_blank\">WP Tavern article</a> brought attention to our GDPR approach and have caught the eyes of some of the key players in the ecosystem. One such company is Mailpoet that was the first to raise the idea of sponsoring our work.”</p>\n<p>Steffensen works at <a href=\"http://Peytz.dk\" rel=\"noopener\" target=\"_blank\">Peytz.dk</a>, a Danish WordPress agency that wants to support the community and has allocated some of his time to work on the project. He said any funding/donations they receive would be spent on pushing the roadmap forward, investing time in coding, and possibly seeking further advice from people who they cannot expect to be in it for free.</p>\n<p>In addition to looking at ways to receive donations, the team plans to keep the survey open for developers for awhile longer to try to make more connections in the community. Steffensen said they hope respondents will help them gain insight on the developer community’s readiness and also enable them to reach out to any plugin owners who could play a key role in a wider adoption.</p>\";s: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, 16 Nov 2017 20:58:22 +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: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:58:\"WPTavern: Consultants Are WordPress’ Boots on the Ground\";s:7:\"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=76619\";s:7:\"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:\"https://wptavern.com/consultants-are-wordpress-boots-on-the-ground\";s: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:1173:\"<blockquote><p>A business can’t survive without strong sales & customer service, two competencies that are arguably the lifeblood of a company.</p>\n<p>Many of you reading this fill that exact gap for the open source WordPress project. I don’t mean this as a slight to the thousands of wonderful people who build the software, document it, and support it in the forums, but that consultants (doing it right or wrong) are also fueling this locomotive too.</p>\n<p>There are no official sales or customer service channels at WordPress.org and us consultants bear the brunt of it — for better or worse — and that’s where our job comes in. Just as you trust a core contributor to spot-check her code and ensure that we’ve <em>sanitized all the things! </em></p>\n<p><em>Consultants are the boots on the ground, and as you’ll see below in my feedback section, represent a disproportionate ratio of launching many more websites than an individual website owner. – Matt Medeiros<br />\n</em></p></blockquote>\n<p>From <a href=\"https://mattreport.com/growth-of-wordpress/\">The blue-collar WordPress worker and the 2,500+ websites built to grow the CMS</a>.</p>\";s: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, 16 Nov 2017 20:07: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: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:90:\"WPTavern: WPWeekly Episode 294 – HeroPress, Community, and WinningWP With 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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=76578&preview=true&preview_id=76578\";s:7:\"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-294-heropress-community-and-winningwp-with-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:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2958:\"<p>In this episode, <a href=\"https://jjj.blog/\">John James Jacoby</a> and I are joined by <a href=\"https://topher1kenobe.com/\">Topher DeRosia</a>, founder of <a href=\"https://heropress.com/\">HeroPress</a>. DeRosia provides an update on HeroPress and explains his new role creating <a href=\"https://www.youtube.com/channel/UCt8Sa48zWN_WcordE7TaUBg\">WordPress training videos</a> for <a href=\"https://winningwp.com/\">WinningWP</a>. Jacoby and I discussed the news of the week including, Press This removed in WordPress 4.9, Meta box support in Gutenberg, and WP-SpamShield removed from the directory.</p>\n<p>Near the end of the show, we discuss whether or not consultants, agencies, and site builders have been left out of the discussion and not factored into WordPress’ growth over the years.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/press-this-removed-from-wordpress-4-9-in-favor-of-a-plugin\">Press This Removed from WordPress 4.9 in Favor of a Plugin</a><br />\n<a href=\"https://wptavern.com/bianca-welds-awarded-kim-parsell-travel-scholarship\">Bianca Welds Awarded Kim Parsell Travel Scholarship</a><br />\n<a href=\"https://wptavern.com/wordcamp-europe-2018-early-bird-tickets-now-on-sale\">WordCamp Europe 2018 Early Bird Tickets Now on Sale</a><br />\n<a href=\"https://wptavern.com/gutenberg-contributors-explore-alternative-to-using-iframes-for-meta-boxes\">Gutenberg Contributors Explore Alternative to Using iframes for Meta Boxes</a><br />\n<a href=\"https://wptavern.com/wp-spamshield-plugin-removed-from-wordpress-org-author-plans-to-pull-all-plugins-from-the-directory\">WP-SpamShield Plugin Removed from WordPress.org, Author Plans to Pull All Plugins from the Directory</a><br />\n<a href=\"https://mattreport.com/growth-of-wordpress/?utm_content=bufferee910&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer\">The blue-collar WordPress worker and the 2,500+ websites built to grow the CMS</a></p>\n<h2>Picks of the Week:</h2>\n<p><a href=\"https://wptavern.com/how-to-whitelist-comments-in-wordpress\">How to Whitelist Comments in WordPress</a></p>\n<p><a href=\"https://wordpress.org/plugins/dark-mode/\">Dark Mode</a> is an experimental feature plugin that darkens the colors of the WordPress backend.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, November 22nd 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via RSS: </strong><a href=\"https://wptavern.com/feed/podcast\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Subscribe To WPWeekly Via Stitcher Radio: </strong><a href=\"http://www.stitcher.com/podcast/wordpress-weekly-podcast?refid=stpr\" target=\"_blank\" rel=\"noopener\">Click here to subscribe</a></p>\n<p><strong>Listen To Episode #294:</strong><br />\n</p>\";s: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, 16 Nov 2017 03:13: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:\"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: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:130:\"WPTavern: WordPress 4.9 Released with Major Improvements to Customizer Workflow, Updated Code Editors, and New Core Gallery Widget\";s:7:\"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=76391\";s:7:\"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:139:\"https://wptavern.com/wordpress-4-9-released-with-major-improvements-to-customizer-workflow-updated-code-editors-and-new-core-gallery-widget\";s: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:5359:\"<p><a href=\"https://wordpress.org/news/2017/11/tipton/\" rel=\"noopener\" target=\"_blank\">WordPress 4.9</a> “Tipton” was released today, named for Oklahoma-born jazz musician <a href=\"https://en.wikipedia.org/wiki/Billy_Tipton\" rel=\"noopener\" target=\"_blank\">William Lee Tipton</a>, a gifted pianist and saxophonist. This update introduces major improvements to the design and collaboration workflow in the Customizer, improves WordPress’ built-in code editor, and enhances core text and media widgets.</p>\n<h4>Draft, Schedule, and Preview Changes in the Customizer</h4>\n<p>Prior to 4.9, users could get a live preview of their sites in the Customizer but any changes they made would need to be saved immediately or discarded. This update makes it possible to draft and schedule changes in the Customizer, and even share a preview link to collaborate on changes before making them live. Users can now stage content, such as new pages, a new set of widgets, a different combination of menu items, and schedule it all to publish at a future date.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/11/customizer-publish-settings-schedule-e1510636315310.png?ssl=1\"><img /></a></p>\n<p>This release also brings the ability to search, browse, and preview themes directly in the Customizer. The search interface includes filters for subject, features, and layout, just like the ones on the “Add Themes” screen in wp-admin. It does not yet include the featured, popular, latest, or favorites tabs, so users will need to navigate back to the admin if they want to browse those categories.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/11/theme-browser-customizer.png?ssl=1\"><img /></a></p>\n<p>The menu creation process has also been updated in the Customizer to be less confusing with a rethink of the UI and revised copy.</p>\n<h4>Syntax Highlighting and Error Checking Added to the Code Editors</h4>\n<p>WordPress 4.9 brings syntax highlighting, linting, and auto-completion to the built-in code editors by incorporating the <a href=\"https://codemirror.net/\">CodeMirror</a> library. These long-awaited improvements are now available in the theme and plugin editors as well as the custom HTML widget and additional CSS box in the Customizer. The feature comes with <a href=\"https://wptavern.com/wordpress-4-9-protects-users-from-fatal-errors-created-in-the-theme-and-plugin-editors\" rel=\"noopener\" target=\"_blank\">prominent warnings</a> about directly editing themes and plugins and protection against saving code that would cause a fatal error.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2017/11/editor-css-error-e1510640427941.png?ssl=1\"><img /></a></p>\n<h4>New Core Gallery Widget and Support for Shortcodes and Embedded Media in the Text Widget</h4>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/09/core-gallery-widget.png?ssl=1\"><img /></a><a href=\"https://wptavern.com/new-core-gallery-widget-targeted-for-wordpress-4-9\" rel=\"noopener\" target=\"_blank\">WordPress 4.9 adds a new gallery widget</a> to the collection of core media widgets (audio, image, and video) that were introduced in 4.8. It brings the same gallery-creation features to widgets that have long been available in the post and page editors.</p>\n<p>These incremental changes will help users get ready for Gutenberg’s block-based interface. The plan is to eventually transition widgets over to blocks after Gutenberg is in core and the plugin already has support for a gallery block, as well as a Custom HTML block.</p>\n<p>As of 4.9, users can now embed media in the Text widget, including images, video, and audio by clicking the “Add Media” button. In order to make this possible, WordPress contributors also needed to <a href=\"https://wptavern.com/wordpress-4-9-will-support-shortcodes-and-embedded-media-in-the-text-widget\" rel=\"noopener\" target=\"_blank\">add shortcode support to widgets</a>, a feature that users have requested for nearly a decade. With this now built into core, hundreds of thousands of WordPress sites will no longer need additional code from plugins and themes to use shortcodes in widgets.</p>\n<p>Widgets have also been improved to offer a better migration experience with updated logic for mapping widgets between two themes’ widget areas.</p>\n<h4>On Towards Gutenberg</h4>\n<p>WordPress 4.9 also includes a notice in the about.php page of the admin, inviting users to help test or contribute to Gutenberg. It is the first time a feature plugin has been highlighted so prominently on the page users see after they update to the latest version.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/11/Screen-Shot-2017-11-15-at-4.33.01-PM-e1510785254925.png?ssl=1\"><img /></a></p>\n<p>The Gutenberg project has been getting a lot of attention over the past few months as the WordPress community looks ahead to the 5.0 release that will introduce the new editor to the world. Meanwhile, contributors to 4.9 have been working in tandem to make significant improvements to existing features, enabling users to do more with widgets and overall site design than ever before. This release was led by Weston Ruter and Mel Choyce with help from 443 contributors, 42% (185) of them contributing to WordPress for the first time.</p>\";s: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, 16 Nov 2017 01:24: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: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:36:\"Dev Blog: WordPress 4.9 “Tipton”\";s:7:\"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=4968\";s:7:\"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:\"https://wordpress.org/news/2017/11/tipton/\";s: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:41416:\"<h2>Major Customizer Improvements, Code Error Checking, and More! ?</h2>\n\n<img src=\"https://i1.wp.com/wordpress.org/news/files/2017/11/banner.png?fit=2400%2C1200&ssl=1\" alt=\"\" />\n\n\n\n<p>Version 4.9 of WordPress, named “Tipton” in honor of jazz musician and band leader Billy Tipton, is available for download or update in your WordPress dashboard. New features in 4.9 will smooth your design workflow and keep you safe from coding errors.</p>\n\n\n\n<p>Featuring design drafts, scheduling, and locking, along with preview links, the Customizer workflow improves collaboration for content creators. What’s more, code syntax highlighting and error checking will make for a clean and smooth site building experience. Finally, if all that wasn’t pretty great, we’ve got an awesome new Gallery widget and improvements to theme browsing and switching.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Customizer Workflow Improved </h2>\n\n\n\n<img src=\"https://i0.wp.com/wordpress.org/news/files/2017/11/customizer-workflow-improved-small.png?w=632&ssl=1\" alt=\"\" />\n\n\n\n<h3>Draft and Schedule Site Design Customizations</h3>\n\n\n\n<p>Yes, you read that right. Just like you can draft and revise posts and schedule them to go live on the date and time you choose, you can now tinker with your site’s design and schedule those design changes to go live as you please.</p>\n\n\n\n<h3>Collaborate with Design Preview Links</h3>\n\n\n\n<p>Need to get some feedback on proposed site design changes? WordPress 4.9 gives you a preview link you can send to colleagues and customers so that you can collect and integrate feedback before you schedule the changes to go live. Can we say collaboration++?</p>\n\n\n\n<h3>Design Locking Guards Your Changes</h3>\n\n\n\n<p>Ever encounter a scenario where two designers walk into a project and designer A overrides designer B’s beautiful changes? WordPress 4.9’s design lock feature (similar to post locking) secures your draft design so that no one can make changes to it or erase all your hard work.</p>\n\n\n\n<h3>A Prompt to Protect Your Work</h3>\n\n\n\n<p>Were you lured away from your desk before you saved your new draft design? Fear not, when you return, WordPress 4.9 will politely ask whether or not you’d like to save your unsaved changes.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Coding Enhancements</h2>\n\n\n\n<img src=\"https://i2.wp.com/wordpress.org/news/files/2017/11/coding-enhancements-small.png?w=632&ssl=1\" alt=\"\" />\n\n\n\n<h3>Syntax Highlighting and Error Checking? Yes, Please!</h3>\n\n\n\n<p>You’ve got a display problem but can’t quite figure out exactly what went wrong in the CSS you lovingly wrote. With syntax highlighting and error checking for CSS editing and the Custom HTML widget introduced in WordPress 4.8.1, you’ll pinpoint coding errors quickly. Practically guaranteed to help you scan code more easily, and suss out & fix code errors quickly.</p>\n\n\n\n<h3>Sandbox for Safety</h3>\n\n\n\n<p>The dreaded white screen. You’ll avoid it when working on themes and plugin code because WordPress 4.9 will warn you about saving an error. You’ll sleep better at night.</p>\n\n\n\n<h3>Warning: Potential Danger Ahead!</h3>\n\n\n\n<p>When you edit themes and plugins directly, WordPress 4.9 will politely warn you that this is a dangerous practice and will recommend that you draft and test changes before updating your file. Take the safe route: You’ll thank you. Your team and customers will thank you.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Even More Widget Updates </h2>\n\n\n\n<img src=\"https://i1.wp.com/wordpress.org/news/files/2017/11/even-more-widget-updates-small.png?w=632&ssl=1\" alt=\"\" />\n\n\n\n<h3>The New Gallery Widget</h3>\n\n\n\n<p>An incremental improvement to the media changes hatched in WordPress 4.8, you can now add a gallery via this new widget. Yes!</p>\n\n\n\n<h3>Press a Button, Add Media</h3>\n\n\n\n<p>Want to add media to your text widget? Embed images, video, and audio directly into the widget along with your text, with our simple but useful Add Media button. Woo!</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Site Building Improvements </h2>\n\n\n\n<img src=\"https://i1.wp.com/wordpress.org/news/files/2017/11/site-building-improvements-small.png?w=632&ssl=1\" alt=\"\" />\n\n\n\n<h3>More Reliable Theme Switching</h3>\n\n\n\n<p>When you switch themes, widgets sometimes think they can just move location. Improvements in WordPress 4.9 offer more persistent menu and widget placement when you decide it’s time for a new theme. </p>\n\n\n\n<h3>Find and Preview the Perfect Theme</h3>\n\n\n\n<p>Looking for a new theme for your site? Now, from within the Customizer, you can search, browse, and preview over 2600 themes before deploying changes to your site. What’s more, you can speed your search with filters for subject, features, and layout.</p>\n\n\n\n<h3>Better Menu Instructions = Less Confusion</h3>\n\n\n\n<p>Were you confused by the steps to create a new menu? Perhaps no longer! We’ve ironed out the UX for a smoother menu creation process. Newly updated copy will guide you.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Lend a Hand with Gutenberg ?</h2>\n\n\n\n<img src=\"https://i2.wp.com/wordpress.org/news/files/2017/11/gutenberg-1.png?w=632&ssl=1\" alt=\"\" />\n\n\n\n<p>WordPress is working on a new way to create and control your content and we’d love to have your help. Interested in being an <a href=\"https://wordpress.org/plugins/gutenberg/\">early tester</a> or getting involved with the Gutenberg project? <a href=\"https://github.com/WordPress/gutenberg\">Contribute on GitHub</a>.</p>\n\n\n\n<p>(PS: this post was written in Gutenberg!)</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>Developer Happiness ?</h2>\n\n\n\n<h3><a href=\"https://make.wordpress.org/core/2017/11/01/improvements-to-the-customize-js-api-in-4-9/\">Customizer JS API Improvements</a></h3>\n\n\n\n<p>We’ve made numerous improvements to the Customizer JS API in WordPress 4.9, eliminating many pain points. (Hello, default parameters for constructs! Goodbye repeated ID for constructs!) There are also new base control templates, a date/time control, and section/panel/global notifications to name a few. <a href=\"https://make.wordpress.org/core/2017/11/01/improvements-to-the-customize-js-api-in-4-9/\">Check out the full list.</a></p>\n\n\n\n<h3><a href=\"https://make.wordpress.org/core/2017/10/22/code-editing-improvements-in-wordpress-4-9/\">CodeMirror available for use in your themes and plugins</a></h3>\n\n\n\n<p>We’ve introduced a new code editing library, CodeMirror, for use within core. CodeMirror allows for syntax highlighting, error checking, and validation when creating code writing or editing experiences within your plugins, like CSS or JavaScript include fields.</p>\n\n\n\n<h3><a href=\"https://make.wordpress.org/core/2017/10/30/mediaelement-upgrades-in-wordpress-4-9/\">MediaElement.js upgraded to 4.2.6</a></h3>\n\n\n\n<p>WordPress 4.9 includes an upgraded version of MediaElement.js, which removes dependencies on jQuery, improves accessibility, modernizes the UI, and fixes many bugs.</p>\n\n\n\n<h3><a href=\"https://make.wordpress.org/core/2017/10/15/improvements-for-roles-and-capabilities-in-4-9/\">Roles and Capabilities Improvements</a></h3>\n\n\n\n<p>New capabilities have been introduced that allow granular management of plugins and translation files. In addition, the site switching process in multisite has been fine-tuned to update the available roles and capabilities in a more reliable and coherent way.</p>\n\n\n\n<hr class=\"wp-block-separator\" />\n\n\n\n<h2>The Squad</h2>\n\n\n\n<p>This release was led by <a href=\"https://choycedesign.com/\">Mel Choyce</a> and <a href=\"https://weston.ruter.net/\">Weston Ruter</a>, with the help of the following fabulous folks. There are 443 contributors with props in this release, with 185 of them contributing for the first time. Pull up some Billy Tipton on your music service of choice, and check out some of their profiles:</p>\n\n\n\n<a href=\"https://profiles.wordpress.org/aaroncampbell\">Aaron D. Campbell</a>, <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abrightclearweb\">abrightclearweb</a>, <a href=\"https://profiles.wordpress.org/ibachal\">Achal Jain</a>, <a href=\"https://profiles.wordpress.org/achbed\">achbed</a>, <a href=\"https://profiles.wordpress.org/acmethemes\">Acme Themes</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/adammacias\">adammacias</a>, <a href=\"https://profiles.wordpress.org/mrahmadawais\">Ahmad Awais</a>, <a href=\"https://profiles.wordpress.org/ahmadawais\">ahmadawais</a>, <a href=\"https://profiles.wordpress.org/airesvsg\">airesvsg</a>, <a href=\"https://profiles.wordpress.org/ajoah\">ajoah</a>, <a href=\"https://profiles.wordpress.org/akibjorklund\">Aki Björklund</a>, <a href=\"https://profiles.wordpress.org/akshayvinchurkar\">akshayvinchurkar</a>, <a href=\"https://profiles.wordpress.org/schlessera\">Alain Schlesser</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/xavortm\">Alex Dimitrov</a>, <a href=\"https://profiles.wordpress.org/ironpaperweight\">Alex Hon</a>, <a href=\"https://profiles.wordpress.org/alex27\">alex27</a>, <a href=\"https://profiles.wordpress.org/allancole\">allancole</a>, <a href=\"https://profiles.wordpress.org/arush\">Amanda Rush</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andrewp-2\">Andreas Panag</a>, <a href=\"https://profiles.wordpress.org/nacin\">Andrew Nacin</a>, <a href=\"https://profiles.wordpress.org/azaozz\">Andrew Ozz</a>, <a href=\"https://profiles.wordpress.org/rarst\">Andrey \"Rarst\" Savchenko</a>, <a href=\"https://profiles.wordpress.org/andizer\">Andy Meerwaldt</a>, <a href=\"https://profiles.wordpress.org/kelderic\">Andy Mercer</a>, <a href=\"https://profiles.wordpress.org/andy\">Andy Skelton</a>, <a href=\"https://profiles.wordpress.org/aniketpant\">Aniket Pant</a>, <a href=\"https://profiles.wordpress.org/anilbasnet\">Anil Basnet</a>, <a href=\"https://profiles.wordpress.org/ankit-k-gupta\">Ankit K Gupta</a>, <a href=\"https://profiles.wordpress.org/ahortin\">Anthony Hortin</a>, <a href=\"https://profiles.wordpress.org/antisilent\">antisilent</a>, <a href=\"https://profiles.wordpress.org/atimmer\">Anton Timmermans</a>, <a href=\"https://profiles.wordpress.org/apokalyptik\">apokalyptik</a>, <a href=\"https://profiles.wordpress.org/artoliukkonen\">artoliukkonen</a>, <a href=\"https://profiles.wordpress.org/ideag\">Arunas Liuiza</a>, <a href=\"https://profiles.wordpress.org/attitude\">attitude</a>, <a href=\"https://profiles.wordpress.org/backermann\">backermann</a>, <a href=\"https://profiles.wordpress.org/b-07\">Bappi</a>, <a href=\"https://profiles.wordpress.org/bcole808\">Ben Cole</a>, <a href=\"https://profiles.wordpress.org/quasel\">Bernhard Gronau</a>, <a href=\"https://profiles.wordpress.org/kau-boy\">Bernhard Kau</a>, <a href=\"https://profiles.wordpress.org/binarymoon\">binarymoon</a>, <a href=\"https://profiles.wordpress.org/birgire\">Birgir Erlendsson (birgire)</a>, <a href=\"https://profiles.wordpress.org/bjornw\">BjornW</a>, <a href=\"https://profiles.wordpress.org/bobbingwide\">bobbingwide</a>, <a href=\"https://profiles.wordpress.org/boblinthorst\">boblinthorst</a>, <a href=\"https://profiles.wordpress.org/boboudreau\">boboudreau</a>, <a href=\"https://profiles.wordpress.org/gitlost\">bonger</a>, <a href=\"https://profiles.wordpress.org/boonebgorges\">Boone B. Gorges</a>, <a href=\"https://profiles.wordpress.org/bradyvercher\">Brady Vercher</a>, <a href=\"https://profiles.wordpress.org/brainstormforce\">Brainstorm Force</a>, <a href=\"https://profiles.wordpress.org/kraftbj\">Brandon Kraft</a>, <a href=\"https://profiles.wordpress.org/brianhogg\">Brian Hogg</a>, <a href=\"https://profiles.wordpress.org/krogsgard\">Brian Krogsgard</a>, <a href=\"https://profiles.wordpress.org/bronsonquick\">Bronson Quick</a>, <a href=\"https://profiles.wordpress.org/sixhours\">Caroline Moore</a>, <a href=\"https://profiles.wordpress.org/caseypatrickdriscoll\">Casey Driscoll</a>, <a href=\"https://profiles.wordpress.org/caspie\">Caspie</a>, <a href=\"https://profiles.wordpress.org/chandrapatel\">Chandra Patel</a>, <a href=\"https://profiles.wordpress.org/chaos-engine\">Chaos Engine</a>, <a href=\"https://profiles.wordpress.org/cheeserolls\">cheeserolls</a>, <a href=\"https://profiles.wordpress.org/chesio\">chesio</a>, <a href=\"https://profiles.wordpress.org/ketuchetan\">chetansatasiya</a>, <a href=\"https://profiles.wordpress.org/choongsavvii\">choong</a>, <a href=\"https://profiles.wordpress.org/chouby\">Chouby</a>, <a href=\"https://profiles.wordpress.org/chredd\">chredd</a>, <a href=\"https://profiles.wordpress.org/chrisjean\">Chris Jean</a>, <a href=\"https://profiles.wordpress.org/cmmarslender\">Chris Marslender</a>, <a href=\"https://profiles.wordpress.org/chris_d2d\">Chris Smith</a>, <a href=\"https://profiles.wordpress.org/chrisvanpatten\">Chris Van Patten</a>, <a href=\"https://profiles.wordpress.org/chriswiegman\">Chris Wiegman</a>, <a href=\"https://profiles.wordpress.org/chriscct7\">chriscct7</a>, <a href=\"https://profiles.wordpress.org/chriseverson\">chriseverson</a>, <a href=\"https://profiles.wordpress.org/christian1012\">Christian Chung</a>, <a href=\"https://profiles.wordpress.org/cwpnolen\">Christian Nolen</a>, <a href=\"https://profiles.wordpress.org/needle\">Christian Wach</a>, <a href=\"https://profiles.wordpress.org/christophherr\">Christoph Herr</a>, <a href=\"https://profiles.wordpress.org/clarionwpdeveloper\">Clarion Technologies</a>, <a href=\"https://profiles.wordpress.org/claudiosmweb\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiosanches\">Claudio Sanches</a>, <a href=\"https://profiles.wordpress.org/claudiolabarbera\">ClaudioLaBarbera</a>, <a href=\"https://profiles.wordpress.org/codemovementpk\">codemovement.pk</a>, <a href=\"https://profiles.wordpress.org/coderkevin\">coderkevin</a>, <a href=\"https://profiles.wordpress.org/codfish\">codfish</a>, <a href=\"https://profiles.wordpress.org/coreymcollins\">coreymcollins</a>, <a href=\"https://profiles.wordpress.org/curdin\">Curdin Krummenacher</a>, <a href=\"https://profiles.wordpress.org/cgrymala\">Curtiss Grymala</a>, <a href=\"https://profiles.wordpress.org/cdog\">Cătălin Dogaru</a>, <a href=\"https://profiles.wordpress.org/danhgilmore\">danhgilmore</a>, <a href=\"https://profiles.wordpress.org/danielbachhuber\">Daniel Bachhuber </a>, <a href=\"https://profiles.wordpress.org/danielkanchev\">Daniel Kanchev</a>, <a href=\"https://profiles.wordpress.org/danielpietrasik\">Daniel Pietrasik</a>, <a href=\"https://profiles.wordpress.org/mte90\">Daniele Scasciafratte</a>, <a href=\"https://profiles.wordpress.org/dllh\">Daryl L. L. Houston (dllh)</a>, <a href=\"https://profiles.wordpress.org/davepullig\">Dave Pullig</a>, <a href=\"https://profiles.wordpress.org/goto10\">Dave Romsey (goto10)</a>, <a href=\"https://profiles.wordpress.org/davidakennedy\">David A. Kennedy</a>, <a href=\"https://profiles.wordpress.org/turtlepod\">David Chandra Purnama</a>, <a href=\"https://profiles.wordpress.org/dlh\">David Herrera</a>, <a href=\"https://profiles.wordpress.org/dglingren\">David Lingren</a>, <a href=\"https://profiles.wordpress.org/davidmosterd\">David Mosterd</a>, <a href=\"https://profiles.wordpress.org/dshanske\">David Shanske</a>, <a href=\"https://profiles.wordpress.org/davidbhayes\">davidbhayes</a>, <a href=\"https://profiles.wordpress.org/folletto\">Davide \'Folletto\' Casali</a>, <a href=\"https://profiles.wordpress.org/deeptiboddapati\">deeptiboddapati</a>, <a href=\"https://profiles.wordpress.org/delphinus\">delphinus</a>, <a href=\"https://profiles.wordpress.org/deltafactory\">deltafactory</a>, <a href=\"https://profiles.wordpress.org/denis-de-bernardy\">Denis de Bernardy</a>, <a href=\"https://profiles.wordpress.org/valendesigns\">Derek Herman</a>, <a href=\"https://profiles.wordpress.org/pcfreak30\">Derrick Hammer</a>, <a href=\"https://profiles.wordpress.org/derrickkoo\">Derrick Koo</a>, <a href=\"https://profiles.wordpress.org/dimchik\">dimchik</a>, <a href=\"https://profiles.wordpress.org/dineshc\">Dinesh Chouhan</a>, <a href=\"https://profiles.wordpress.org/dd32\">Dion Hulse</a>, <a href=\"https://profiles.wordpress.org/dipeshkakadiya\">dipeshkakadiya</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">dmsnell</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/dotancohen\">Dotan Cohen</a>, <a href=\"https://profiles.wordpress.org/dougwollison\">Doug Wollison</a>, <a href=\"https://profiles.wordpress.org/doughamlin\">doughamlin</a>, <a href=\"https://profiles.wordpress.org/dreamon11\">DreamOn11</a>, <a href=\"https://profiles.wordpress.org/drewapicture\">Drew Jaynes</a>, <a href=\"https://profiles.wordpress.org/duncanjbrown\">duncanjbrown</a>, <a href=\"https://profiles.wordpress.org/dungengronovius\">dungengronovius</a>, <a href=\"https://profiles.wordpress.org/dylanauty\">DylanAuty</a>, <a href=\"https://profiles.wordpress.org/hurtige\">Eddie Hurtig</a>, <a href=\"https://profiles.wordpress.org/oso96_2000\">Eduardo Reveles</a>, <a href=\"https://profiles.wordpress.org/chopinbach\">Edwin Cromley</a>, <a href=\"https://profiles.wordpress.org/electricfeet\">ElectricFeet</a>, <a href=\"https://profiles.wordpress.org/eliorivero\">Elio Rivero</a>, <a href=\"https://profiles.wordpress.org/iseulde\">Ella Iseulde Van Dorpe</a>, <a href=\"https://profiles.wordpress.org/elyobo\">elyobo</a>, <a href=\"https://profiles.wordpress.org/enodekciw\">enodekciw</a>, <a href=\"https://profiles.wordpress.org/enshrined\">enshrined</a>, <a href=\"https://profiles.wordpress.org/ericlewis\">Eric Andrew Lewis</a>, <a href=\"https://profiles.wordpress.org/pushred\">Eric Lanehart</a>, <a href=\"https://profiles.wordpress.org/eherman24\">Evan Herman</a>, <a href=\"https://profiles.wordpress.org/flixos90\">Felix Arntz</a>, <a href=\"https://profiles.wordpress.org/fencer04\">Fencer04</a>, <a href=\"https://profiles.wordpress.org/florianbrinkmann\">Florian Brinkmann</a>, <a href=\"https://profiles.wordpress.org/mista-flo\">Florian TIAR</a>, <a href=\"https://profiles.wordpress.org/foliovision\">FolioVision</a>, <a href=\"https://profiles.wordpress.org/fomenkoandrey\">fomenkoandrey</a>, <a href=\"https://profiles.wordpress.org/frank-klein\">Frank Klein</a>, <a href=\"https://profiles.wordpress.org/frankiet\">Frankie</a>, <a href=\"https://profiles.wordpress.org/fjarrett\">Frankie Jarrett</a>, <a href=\"https://profiles.wordpress.org/akeif\">Fred</a>, <a href=\"https://profiles.wordpress.org/frozzare\">Fredrik Forsmo</a>, <a href=\"https://profiles.wordpress.org/fuscata\">fuscata</a>, <a href=\"https://profiles.wordpress.org/gma992\">Gabriel Maldonado</a>, <a href=\"https://profiles.wordpress.org/voldemortensen\">Garth Mortensen</a>, <a href=\"https://profiles.wordpress.org/garyj\">Gary Jones</a>, <a href=\"https://profiles.wordpress.org/pento\">Gary Pendergast</a>, <a href=\"https://profiles.wordpress.org/geekysoft\">Geeky Software</a>, <a href=\"https://profiles.wordpress.org/georgestephanis\">George Stephanis</a>, <a href=\"https://profiles.wordpress.org/goranseric\">Goran Šerić</a>, <a href=\"https://profiles.wordpress.org/grahamarmfield\">Graham Armfield</a>, <a href=\"https://profiles.wordpress.org/grantderepas\">Grant Derepas</a>, <a href=\"https://profiles.wordpress.org/tivnet\">Gregory Karpinsky (@tivnet)</a>, <a href=\"https://profiles.wordpress.org/hardeepasrani\">Hardeep Asrani</a>, <a href=\"https://profiles.wordpress.org/helen\">Helen Hou-Sandí</a>, <a href=\"https://profiles.wordpress.org/henrywright\">Henry Wright</a>, <a href=\"https://profiles.wordpress.org/hiddenpearls\">hiddenpearls</a>, <a href=\"https://profiles.wordpress.org/hnle\">Hinaloe</a>, <a href=\"https://profiles.wordpress.org/hristo-sg\">Hristo Pandjarov</a>, <a href=\"https://profiles.wordpress.org/hugobaeta\">Hugo Baeta</a>, <a href=\"https://profiles.wordpress.org/polevaultweb\">Iain Poulson</a>, <a href=\"https://profiles.wordpress.org/iandunn\">Ian Dunn</a>, <a href=\"https://profiles.wordpress.org/ianedington\">Ian Edington</a>, <a href=\"https://profiles.wordpress.org/idealien\">idealien</a>, <a href=\"https://profiles.wordpress.org/igmoweb\">Ignacio Cruz Moreno</a>, <a href=\"https://profiles.wordpress.org/imath\">imath</a>, <a href=\"https://profiles.wordpress.org/implenton\">implenton</a>, <a href=\"https://profiles.wordpress.org/ionutst\">Ionut Stanciu</a>, <a href=\"https://profiles.wordpress.org/ipstenu\">Ipstenu (Mika Epstein)</a>, <a href=\"https://profiles.wordpress.org/ivdimova\">ivdimova</a>, <a href=\"https://profiles.wordpress.org/jdgrimes\">J.D. Grimes</a>, <a href=\"https://profiles.wordpress.org/jakept\">Jacob Peattie</a>, <a href=\"https://profiles.wordpress.org/whyisjake\">Jake Spurlock</a>, <a href=\"https://profiles.wordpress.org/jnylen0\">James Nylen</a>, <a href=\"https://profiles.wordpress.org/jamesacero\">jamesacero</a>, <a href=\"https://profiles.wordpress.org/japh\">Japh</a>, <a href=\"https://profiles.wordpress.org/jaredcobb\">Jared Cobb</a>, <a href=\"https://profiles.wordpress.org/jayarjo\">jayarjo</a>, <a href=\"https://profiles.wordpress.org/jdolan\">jdolan</a>, <a href=\"https://profiles.wordpress.org/jdoubleu\">jdoubleu</a>, <a href=\"https://profiles.wordpress.org/jblz\">Jeff Bowen</a>, <a href=\"https://profiles.wordpress.org/jbpaul17\">Jeff Paul</a>, <a href=\"https://profiles.wordpress.org/cheffheid\">Jeffrey de Wit</a>, <a href=\"https://profiles.wordpress.org/jeremyfelt\">Jeremy Felt</a>, <a href=\"https://profiles.wordpress.org/jpry\">Jeremy Pry</a>, <a href=\"https://profiles.wordpress.org/jimt\">jimt</a>, <a href=\"https://profiles.wordpress.org/jipmoors\">Jip Moors</a>, <a href=\"https://profiles.wordpress.org/jmusal\">jmusal</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/joemcgill\">Joe McGill</a>, <a href=\"https://profiles.wordpress.org/joelcj91\">Joel James</a>, <a href=\"https://profiles.wordpress.org/johanmynhardt\">johanmynhardt</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/zyphonic\">John Dittmar</a>, <a href=\"https://profiles.wordpress.org/johnjamesjacoby\">John James Jacoby</a>, <a href=\"https://profiles.wordpress.org/johnpbloch\">John P. Bloch</a>, <a href=\"https://profiles.wordpress.org/johnregan3\">John Regan</a>, <a href=\"https://profiles.wordpress.org/johnpgreen\">johnpgreen</a>, <a href=\"https://profiles.wordpress.org/kenshino\">Jon (Kenshino)</a>, <a href=\"https://profiles.wordpress.org/jonathanbardo\">Jonathan Bardo</a>, <a href=\"https://profiles.wordpress.org/jbrinley\">Jonathan Brinley</a>, <a href=\"https://profiles.wordpress.org/daggerhart\">Jonathan Daggerhart</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/spacedmonkey\">Jonny Harris</a>, <a href=\"https://profiles.wordpress.org/jonnyauk\">jonnyauk</a>, <a href=\"https://profiles.wordpress.org/jordesign\">jordesign</a>, <a href=\"https://profiles.wordpress.org/jorritschippers\">JorritSchippers</a>, <a href=\"https://profiles.wordpress.org/joefusco\">Joseph Fusco</a>, <a href=\"https://profiles.wordpress.org/jjeaton\">Josh Eaton</a>, <a href=\"https://profiles.wordpress.org/shelob9\">Josh Pollock</a>, <a href=\"https://profiles.wordpress.org/joshcummingsdesign\">joshcummingsdesign</a>, <a href=\"https://profiles.wordpress.org/joshkadis\">joshkadis</a>, <a href=\"https://profiles.wordpress.org/joyously\">Joy</a>, <a href=\"https://profiles.wordpress.org/jrf\">jrf</a>, <a href=\"https://profiles.wordpress.org/jrgould\">JRGould</a>, <a href=\"https://profiles.wordpress.org/juanfra\">Juanfra Aldasoro</a>, <a href=\"https://profiles.wordpress.org/juhise\">Juhi Saxena</a>, <a href=\"https://profiles.wordpress.org/nukaga\">Junko Nukaga</a>, <a href=\"https://profiles.wordpress.org/justinbusa\">Justin Busa</a>, <a href=\"https://profiles.wordpress.org/justinsainton\">Justin Sainton</a>, <a href=\"https://profiles.wordpress.org/jshreve\">Justin Shreve</a>, <a href=\"https://profiles.wordpress.org/jtsternberg\">Justin Sternberg</a>, <a href=\"https://profiles.wordpress.org/kadamwhite\">K.Adam White</a>, <a href=\"https://profiles.wordpress.org/kacperszurek\">kacperszurek</a>, <a href=\"https://profiles.wordpress.org/trepmal\">Kailey (trepmal)</a>, <a href=\"https://profiles.wordpress.org/kalenjohnson\">KalenJohnson</a>, <a href=\"https://profiles.wordpress.org/codebykat\">Kat Hagan</a>, <a href=\"https://profiles.wordpress.org/kkoppenhaver\">Keanan Koppenhaver</a>, <a href=\"https://profiles.wordpress.org/keesiemeijer\">keesiemeijer</a>, <a href=\"https://profiles.wordpress.org/kellbot\">kellbot</a>, <a href=\"https://profiles.wordpress.org/ryelle\">Kelly Dwan</a>, <a href=\"https://profiles.wordpress.org/khag7\">Kevin Hagerty</a>, <a href=\"https://profiles.wordpress.org/kwight\">Kirk Wight</a>, <a href=\"https://profiles.wordpress.org/kitchin\">kitchin</a>, <a href=\"https://profiles.wordpress.org/ixkaito\">Kite</a>, <a href=\"https://profiles.wordpress.org/kjbenk\">kjbenk</a>, <a href=\"https://profiles.wordpress.org/knutsp\">Knut Sparhell</a>, <a href=\"https://profiles.wordpress.org/koenschipper\">koenschipper</a>, <a href=\"https://profiles.wordpress.org/kokarn\">kokarn</a>, <a href=\"https://profiles.wordpress.org/kovshenin\">Konstantin Kovshenin</a>, <a href=\"https://profiles.wordpress.org/obenland\">Konstantin Obenland</a>, <a href=\"https://profiles.wordpress.org/kouratoras\">Konstantinos Kouratoras</a>, <a href=\"https://profiles.wordpress.org/kuchenundkakao\">kuchenundkakao</a>, <a href=\"https://profiles.wordpress.org/kuldipem\">kuldipem</a>, <a href=\"https://profiles.wordpress.org/laurelfulford\">Laurel Fulford</a>, <a href=\"https://profiles.wordpress.org/leewillis77\">Lee Willis</a>, <a href=\"https://profiles.wordpress.org/leobaiano\">Leo Baiano</a>, <a href=\"https://profiles.wordpress.org/littlebigthing\">LittleBigThings (Csaba)</a>, <a href=\"https://profiles.wordpress.org/lucasstark\">Lucas Stark</a>, <a href=\"https://profiles.wordpress.org/lukecavanagh\">Luke Cavanagh</a>, <a href=\"https://profiles.wordpress.org/lgedeon\">Luke Gedeon</a>, <a href=\"https://profiles.wordpress.org/lukepettway\">Luke Pettway</a>, <a href=\"https://profiles.wordpress.org/lyubomir_popov\">lyubomir_popov</a>, <a href=\"https://profiles.wordpress.org/mariovalney\">Mário Valney</a>, <a href=\"https://profiles.wordpress.org/mageshp\">mageshp</a>, <a href=\"https://profiles.wordpress.org/mahesh901122\">Mahesh Waghmare</a>, <a href=\"https://profiles.wordpress.org/mangeshp\">Mangesh Parte</a>, <a href=\"https://profiles.wordpress.org/manishsongirkar36\">Manish Songirkar</a>, <a href=\"https://profiles.wordpress.org/mantismamita\">mantismamita</a>, <a href=\"https://profiles.wordpress.org/mbootsman\">Marcel Bootsman</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/mbelchev\">Mariyan Belchev</a>, <a href=\"https://profiles.wordpress.org/markjaquith\">Mark Jaquith</a>, <a href=\"https://profiles.wordpress.org/mrwweb\">Mark Root-Wiley</a>, <a href=\"https://profiles.wordpress.org/mapk\">Mark Uraine</a>, <a href=\"https://profiles.wordpress.org/markoheijnen\">Marko Heijnen</a>, <a href=\"https://profiles.wordpress.org/markshep\">markshep</a>, <a href=\"https://profiles.wordpress.org/matrixik\">matrixik</a>, <a href=\"https://profiles.wordpress.org/mjbanks\">Matt Banks</a>, <a href=\"https://profiles.wordpress.org/mattking5000\">Matt King</a>, <a href=\"https://profiles.wordpress.org/matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/jaworskimatt\">Matt PeepSo</a>, <a href=\"https://profiles.wordpress.org/veraxus\">Matt van Andel</a>, <a href=\"https://profiles.wordpress.org/mattwiebe\">Matt Wiebe</a>, <a href=\"https://profiles.wordpress.org/mattheu\">Matthew Haines-Young</a>, <a href=\"https://profiles.wordpress.org/mattyrob\">mattyrob</a>, <a href=\"https://profiles.wordpress.org/maxcutler\">Max Cutler</a>, <a href=\"https://profiles.wordpress.org/maximeculea\">Maxime Culea</a>, <a href=\"https://profiles.wordpress.org/mayukojpn\">Mayo Moriyama</a>, <a href=\"https://profiles.wordpress.org/mckernanin\">mckernanin</a>, <a href=\"https://profiles.wordpress.org/melchoyce\">Mel Choyce</a>, <a href=\"https://profiles.wordpress.org/mhowell\">mhowell</a>, <a href=\"https://profiles.wordpress.org/michaelarestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michael-arestad\">Michael Arestad</a>, <a href=\"https://profiles.wordpress.org/michalzuber\">michalzuber</a>, <a href=\"https://profiles.wordpress.org/stubgo\">Miina Sikk</a>, <a href=\"https://profiles.wordpress.org/mauteri\">Mike Auteri</a>, <a href=\"https://profiles.wordpress.org/mihai2u\">Mike Crantea</a>, <a href=\"https://profiles.wordpress.org/mdgl\">Mike Glendinning</a>, <a href=\"https://profiles.wordpress.org/mikehansenme\">Mike Hansen</a>, <a href=\"https://profiles.wordpress.org/mikelittle\">Mike Little</a>, <a href=\"https://profiles.wordpress.org/mikeschroder\">Mike Schroder</a>, <a href=\"https://profiles.wordpress.org/mikeviele\">Mike Viele</a>, <a href=\"https://profiles.wordpress.org/dimadin\">Milan Dinić</a>, <a href=\"https://profiles.wordpress.org/modemlooper\">modemlooper</a>, <a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/deremohan\">Mohan Dere</a>, <a href=\"https://profiles.wordpress.org/monikarao\">Monika Rao</a>, <a href=\"https://profiles.wordpress.org/morettigeorgiev\">morettigeorgiev</a>, <a href=\"https://profiles.wordpress.org/morganestes\">Morgan Estes</a>, <a href=\"https://profiles.wordpress.org/mor10\">Morten Rand-Hendriksen</a>, <a href=\"https://profiles.wordpress.org/mt8biz\">moto hachi ( mt8.biz )</a>, <a href=\"https://profiles.wordpress.org/mrbobbybryant\">mrbobbybryant</a>, <a href=\"https://profiles.wordpress.org/nnaimov\">Naim Naimov</a>, <a href=\"https://profiles.wordpress.org/natereist\">Nate Reist</a>, <a href=\"https://profiles.wordpress.org/natewr\">NateWr</a>, <a href=\"https://profiles.wordpress.org/nathanrice\">nathanrice</a>, <a href=\"https://profiles.wordpress.org/nazgul\">Nazgul</a>, <a href=\"https://profiles.wordpress.org/greatislander\">Ned Zimmerman</a>, <a href=\"https://profiles.wordpress.org/krstarica\">net</a>, <a href=\"https://profiles.wordpress.org/celloexpressions\">Nick Halsey </a>, <a href=\"https://profiles.wordpress.org/nikeo\">Nicolas GUILLAUME</a>, <a href=\"https://profiles.wordpress.org/nikschavan\">Nikhil Chavan</a>, <a href=\"https://profiles.wordpress.org/nikv\">Nikhil Vimal</a>, <a href=\"https://profiles.wordpress.org/nbachiyski\">Nikolay Bachiyski</a>, <a href=\"https://profiles.wordpress.org/rabmalin\">Nilambar Sharma</a>, <a href=\"https://profiles.wordpress.org/noplanman\">noplanman</a>, <a href=\"https://profiles.wordpress.org/nullvariable\">nullvariable</a>, <a href=\"https://profiles.wordpress.org/odie2\">odie2</a>, <a href=\"https://profiles.wordpress.org/odysseygate\">odyssey</a>, <a href=\"https://profiles.wordpress.org/hideokamoto\">Okamoto Hidetaka</a>, <a href=\"https://profiles.wordpress.org/orvils\">orvils</a>, <a href=\"https://profiles.wordpress.org/oskosk\">oskosk</a>, <a href=\"https://profiles.wordpress.org/ottok\">Otto Kekäläinen</a>, <a href=\"https://profiles.wordpress.org/ovann86\">ovann86</a>, <a href=\"https://profiles.wordpress.org/imnok\">Pantip Treerattanapitak (Nok)</a>, <a href=\"https://profiles.wordpress.org/swissspidy\">Pascal Birchler</a>, <a href=\"https://profiles.wordpress.org/patilvikasj\">patilvikasj</a>, <a href=\"https://profiles.wordpress.org/pbearne\">Paul Bearne</a>, <a href=\"https://profiles.wordpress.org/paulwilde\">Paul Wilde</a>, <a href=\"https://profiles.wordpress.org/sirbrillig\">Payton Swick</a>, <a href=\"https://profiles.wordpress.org/pdufour\">pdufour</a>, <a href=\"https://profiles.wordpress.org/piewp\">Perdaan</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/phh\">phh</a>, <a href=\"https://profiles.wordpress.org/php\">php</a>, <a href=\"https://profiles.wordpress.org/delawski\">Piotr Delawski</a>, <a href=\"https://profiles.wordpress.org/pippinsplugins\">pippinsplugins</a>, <a href=\"https://profiles.wordpress.org/pjgalbraith\">pjgalbraith</a>, <a href=\"https://profiles.wordpress.org/pkevan\">pkevan</a>, <a href=\"https://profiles.wordpress.org/pratikchaskar\">Pratik</a>, <a href=\"https://profiles.wordpress.org/pressionate\">Pressionate</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/procodewp\">procodewp</a>, <a href=\"https://profiles.wordpress.org/rachelbaker\">Rachel Baker</a>, <a href=\"https://profiles.wordpress.org/rahulsprajapati\">Rahul Prajapati</a>, <a href=\"https://profiles.wordpress.org/superpoincare\">Ramanan</a>, <a href=\"https://profiles.wordpress.org/ramiy\">Rami Yushuvaev</a>, <a href=\"https://profiles.wordpress.org/ramiabraham\">ramiabraham</a>, <a href=\"https://profiles.wordpress.org/ranh\">ranh</a>, <a href=\"https://profiles.wordpress.org/redsand\">Red Sand Media Group</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rianrietveld\">Rian Rietveld</a>, <a href=\"https://profiles.wordpress.org/iamfriendly\">Richard Tape</a>, <a href=\"https://profiles.wordpress.org/rpayne7264\">Robert D Payne</a>, <a href=\"https://profiles.wordpress.org/iamjolly\">Robert Jolly</a>, <a href=\"https://profiles.wordpress.org/rnoakes3rd\">Robert Noakes</a>, <a href=\"https://profiles.wordpress.org/d4z_c0nf\">Rocco Aliberti</a>, <a href=\"https://profiles.wordpress.org/rodrigosprimo\">Rodrigo Primo</a>, <a href=\"https://profiles.wordpress.org/rommelxcastro\">Rommel Castro</a>, <a href=\"https://profiles.wordpress.org/fronaldaraujo\">Ronald Araújo</a>, <a href=\"https://profiles.wordpress.org/magicroundabout\">Ross Wintle</a>, <a href=\"https://profiles.wordpress.org/guavaworks\">Roy Sivan</a>, <a href=\"https://profiles.wordpress.org/ryankienstra\">Ryan Kienstra</a>, <a href=\"https://profiles.wordpress.org/rmccue\">Ryan McCue</a>, <a href=\"https://profiles.wordpress.org/ryanplas\">Ryan Plas</a>, <a href=\"https://profiles.wordpress.org/welcher\">Ryan Welcher</a>, <a href=\"https://profiles.wordpress.org/salcode\">Sal Ferrarello</a>, <a href=\"https://profiles.wordpress.org/samikeijonen\">Sami Keijonen</a>, <a href=\"https://profiles.wordpress.org/solarissmoke\">Samir Shah</a>, <a href=\"https://profiles.wordpress.org/samuelsidler\">Samuel Sidler</a>, <a href=\"https://profiles.wordpress.org/sandesh055\">Sandesh</a>, <a href=\"https://profiles.wordpress.org/smyoon315\">Sang-Min Yoon</a>, <a href=\"https://profiles.wordpress.org/sanketparmar\">Sanket Parmar</a>, <a href=\"https://profiles.wordpress.org/pollyplummer\">Sarah Gooding</a>, <a href=\"https://profiles.wordpress.org/sayedwp\">Sayed Taqui</a>, <a href=\"https://profiles.wordpress.org/schrapel\">schrapel</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/wonderboymusic\">Scott Taylor</a>, <a href=\"https://profiles.wordpress.org/scrappyhuborg\">scrappy@hub.org</a>, <a href=\"https://profiles.wordpress.org/scribu\">scribu</a>, <a href=\"https://profiles.wordpress.org/seancjones\">seancjones</a>, <a href=\"https://profiles.wordpress.org/sebastianpisula\">Sebastian Pisula</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/sgr33n\">Sergio De Falco</a>, <a href=\"https://profiles.wordpress.org/sfpt\">sfpt</a>, <a href=\"https://profiles.wordpress.org/shayanys\">shayanys</a>, <a href=\"https://profiles.wordpress.org/shazahm1hotmailcom\">shazahm1</a>, <a href=\"https://profiles.wordpress.org/shprink\">shprink</a>, <a href=\"https://profiles.wordpress.org/simonlampen\">simonlampen</a>, <a href=\"https://profiles.wordpress.org/skippy\">skippy</a>, <a href=\"https://profiles.wordpress.org/smerriman\">smerriman</a>, <a href=\"https://profiles.wordpress.org/snacking\">snacking</a>, <a href=\"https://profiles.wordpress.org/solal\">solal</a>, <a href=\"https://profiles.wordpress.org/soean\">Soren Wrede</a>, <a href=\"https://profiles.wordpress.org/sstoqnov\">Stanimir Stoyanov</a>, <a href=\"https://profiles.wordpress.org/metodiew\">Stanko Metodiev</a>, <a href=\"https://profiles.wordpress.org/sharkomatic\">Steph</a>, <a href=\"https://profiles.wordpress.org/sswells\">Steph Wells</a>, <a href=\"https://profiles.wordpress.org/sillybean\">Stephanie Leary</a>, <a href=\"https://profiles.wordpress.org/netweb\">Stephen Edgar</a>, <a href=\"https://profiles.wordpress.org/stephenharris\">Stephen Harris</a>, <a href=\"https://profiles.wordpress.org/stevenkword\">Steven Word</a>, <a href=\"https://profiles.wordpress.org/stevenlinx\">stevenlinx</a>, <a href=\"https://profiles.wordpress.org/sudar\">Sudar Muthu</a>, <a href=\"https://profiles.wordpress.org/patilswapnilv\">Swapnil V. Patil</a>, <a href=\"https://profiles.wordpress.org/swapnild\">swapnild</a>, <a href=\"https://profiles.wordpress.org/szaqal21\">szaqal21</a>, <a href=\"https://profiles.wordpress.org/takahashi_fumiki\">Takahashi Fumiki</a>, <a href=\"https://profiles.wordpress.org/miyauchi\">Takayuki Miyauchi</a>, <a href=\"https://profiles.wordpress.org/karmatosed\">Tammie Lister</a>, <a href=\"https://profiles.wordpress.org/tapsboy\">tapsboy</a>, <a href=\"https://profiles.wordpress.org/tlovett1\">Taylor Lovett</a>, <a href=\"https://profiles.wordpress.org/team\">team</a>, <a href=\"https://profiles.wordpress.org/tg29359\">tg29359</a>, <a href=\"https://profiles.wordpress.org/tharsheblows\">tharsheblows</a>, <a href=\"https://profiles.wordpress.org/the\">the</a>, <a href=\"https://profiles.wordpress.org/themeshaper\">themeshaper</a>, <a href=\"https://profiles.wordpress.org/thenbrent\">thenbrent</a>, <a href=\"https://profiles.wordpress.org/thomaswm\">thomaswm</a>, <a href=\"https://profiles.wordpress.org/tfrommen\">Thorsten Frommen</a>, <a href=\"https://profiles.wordpress.org/tierra\">tierra</a>, <a href=\"https://profiles.wordpress.org/tnash\">Tim Nash</a>, <a href=\"https://profiles.wordpress.org/timmydcrawford\">Timmy Crawford</a>, <a href=\"https://profiles.wordpress.org/timothyblynjacobs\">Timothy Jacobs</a>, <a href=\"https://profiles.wordpress.org/timph\">timph</a>, <a href=\"https://profiles.wordpress.org/tkama\">Tkama</a>, <a href=\"https://profiles.wordpress.org/tnegri\">tnegri</a>, <a href=\"https://profiles.wordpress.org/tomauger\">Tom Auger</a>, <a href=\"https://profiles.wordpress.org/tjnowell\">Tom J Nowell</a>, <a href=\"https://profiles.wordpress.org/tomdxw\">tomdxw</a>, <a href=\"https://profiles.wordpress.org/toro_unit\">Toro_Unit (Hiroshi Urabe)</a>, <a href=\"https://profiles.wordpress.org/zodiac1978\">Torsten Landsiedel</a>, <a href=\"https://profiles.wordpress.org/transl8or\">transl8or</a>, <a href=\"https://profiles.wordpress.org/traversal\">traversal</a>, <a href=\"https://profiles.wordpress.org/wpsmith\">Travis Smith</a>, <a href=\"https://profiles.wordpress.org/nmt90\">Triet Minh</a>, <a href=\"https://profiles.wordpress.org/trishasalas\">Trisha Salas</a>, <a href=\"https://profiles.wordpress.org/tristangemus\">tristangemus</a>, <a href=\"https://profiles.wordpress.org/truongwp\">truongwp</a>, <a href=\"https://profiles.wordpress.org/tsl143\">tsl143</a>, <a href=\"https://profiles.wordpress.org/tywayne\">Ty Carlson</a>, <a href=\"https://profiles.wordpress.org/grapplerulrich\">Ulrich</a>, <a href=\"https://profiles.wordpress.org/utkarshpatel\">Utkarsh</a>, <a href=\"https://profiles.wordpress.org/valeriutihai\">Valeriu Tihai</a>, <a href=\"https://profiles.wordpress.org/zuige\">Viljami Kuosmanen</a>, <a href=\"https://profiles.wordpress.org/vishalkakadiya\">Vishal Kakadiya</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/vrundakansara-1\">Vrunda Kansara</a>, <a href=\"https://profiles.wordpress.org/webbgaraget\">webbgaraget</a>, <a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design | Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/websupporter\">websupporter</a>, <a href=\"https://profiles.wordpress.org/earnjam\">William Earnhardt</a>, <a href=\"https://profiles.wordpress.org/williampatton\">williampatton</a>, <a href=\"https://profiles.wordpress.org/wolly\">Wolly aka Paolo Valenti</a>, <a href=\"https://profiles.wordpress.org/wraithkenny\">WraithKenny</a>, <a href=\"https://profiles.wordpress.org/yale01\">yale01</a>, <a href=\"https://profiles.wordpress.org/yoavf\">Yoav Farhi</a>, <a href=\"https://profiles.wordpress.org/yogasukma\">Yoga Sukma</a>, <a href=\"https://profiles.wordpress.org/oxymoron\">Zach Wills</a>, <a href=\"https://profiles.wordpress.org/tollmanz\">Zack Tollman</a>, <a href=\"https://profiles.wordpress.org/vanillalounge\">Ze Fontainhas</a>, <a href=\"https://profiles.wordpress.org/zhildzik\">zhildzik</a>, and <a href=\"https://profiles.wordpress.org/zsusag\">zsusag</a>.\n\n\n\n<p>Finally, thanks to all the community translators who worked on WordPress 4.9. Their efforts bring WordPress 4.9 fully translated to 43 languages at release time, with more on the way.</p>\n\n\n\n<p>Do you want to report on WordPress 4.9? <a href=\"https://s.w.org/images/core/4.9/wp-4-9_press-kit.zip\">We've compiled a press kit featuring information about the release features, and some media assets to help you along</a>.</p>\n\n\n\n<p>If you want to follow along or help out, check out <a href=\"https://make.wordpress.org/\">Make WordPress</a> and our <a href=\"https://make.wordpress.org/core/\">core development blog</a>.</p>\n\n\n\n<p>Thanks for choosing WordPress!</p>\";s: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, 16 Nov 2017 01:16: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:10:\"Mel Choyce\";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:108:\"WPTavern: Gutenberg 1.7 Adds Multi-Block Transform Functionality, Drops iframes Implementation of Meta Boxes\";s:7:\"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=76552\";s:7:\"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/gutenberg-1-7-adds-multi-block-transform-functionality-drops-iframes-implementation-of-meta-boxes\";s: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:4469:\"<p><a href=\"https://make.wordpress.org/core/2017/11/15/whats-new-in-gutenberg-15th-november/\" rel=\"noopener\" target=\"_blank\">Gutenberg 1.7</a> was released today, two weeks after version 1.6, with a fresh round of new features, design updates, and the groundwork for nested blocks and block extensibility.</p>\n<p>Last week contributors began exploring <a href=\"https://wptavern.com/gutenberg-contributors-explore-alternative-to-using-iframes-for-meta-boxes\" rel=\"noopener\" target=\"_blank\">an alternative to using iframes for meta boxes</a>. This experiment has landed in 1.7 so that the plugin now <a href=\"https://github.com/WordPress/gutenberg/pull/3345\" rel=\"noopener\" target=\"_blank\">renders meta boxes inline</a>. Gutenberg engineer Riad Benguella, who wrote and merged the code, said that it doesn’t fix all the meta box issues and might create some new ones, but it “gets us closer to where we want to go.” Pre-rendering meta boxes and creating a migration path for existing ones is next on the agenda.</p>\n<p>One of the most exciting new features in 1.7 is the <a href=\"https://github.com/WordPress/gutenberg/pull/3357\" rel=\"noopener\" target=\"_blank\">multi-block transform functionality</a> that allows users to select multiple blocks and instantly transform them into other block types. It works like a little bit of Gutenberg magic. By default, users can select multiple paragraphs and transform them into a list or select multiple images and transform them into a gallery.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/11/Screen-Shot-2017-11-15-at-2.50.25-PM-e1510779367673.png?ssl=1\"><img /></a></p>\n<p>After selecting two or more blocks, the user can click on the block’s settings in the toolbar to transform them. They can also be easily changed back to single blocks. The multi-block transform functionality has been added to the Blocks API so that developers can set isMultiBlock to true to specify blocks that can be transformed.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2017/11/Screen-Shot-2017-11-15-at-3.31.49-PM-e1510781927286.png?ssl=1\"><img /></a></p>\n<p>Version 1.7 introduces a new toggle that the team is testing for <a href=\"https://github.com/WordPress/gutenberg/pull/3311\" rel=\"noopener\" target=\"_blank\">switching between the top fixed toolbar and the contextual toolbars attached to each block</a>. It provides an easy way for users to test both types of toolbar styles, but may be temporary as the pull request was submitted as a suggestion for an A/B test.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2017/11/Screen-Shot-2017-11-15-at-4.03.38-PM.png?ssl=1\"><img /></a></p>\n<p>Gutenberg 1.7 <a href=\"https://github.com/WordPress/gutenberg/pull/2743\" rel=\"noopener\" target=\"_blank\">paves the way for nested blocks</a> in the data structure. It also adds <a href=\"https://github.com/WordPress/gutenberg/pull/3318\" rel=\"noopener\" target=\"_blank\">hooks for block extensibility</a> and contributors are currently testing how these work internally.</p>\n<p>A few other notable features in this release include the following:</p>\n<ul>\n<li>Added <a href=\"https://github.com/WordPress/gutenberg/pull/2896\" rel=\"noopener\" target=\"_blank\">@-mention autocomplete for users</a> in a site</li>\n<li>Allow <a href=\"https://github.com/WordPress/gutenberg/pull/2792\" rel=\"noopener\" target=\"_blank\">pasting standalone images</a> and uploading them (also supports pasting base64 encoded images)</li>\n<li>Full <a href=\"https://github.com/WordPress/gutenberg/pull/3401\" rel=\"noopener\" target=\"_blank\">design update to focus styles</a> around the UI</li>\n<li>Placed <a href=\"https://github.com/WordPress/gutenberg/pull/3459\" rel=\"noopener\" target=\"_blank\">“table of contents” button in the header area</a>, disabled when there are no blocks in the content, added paragraph count</li>\n</ul>\n<p>Gutenberg’s documentation has also been <a href=\"https://github.com/WordPress/gutenberg/pull/3381\" rel=\"noopener\" target=\"_blank\">moved</a> to <a href=\"https://wordpress.org/gutenberg/handbook/\" rel=\"noopener\" target=\"_blank\">https://wordpress.org/gutenberg/handbook/</a>, signaling the project is getting closer to becoming part of WordPress. The new editor will be included in WordPress 5.0, which will ship when Gutenberg is ready. A notice in the 4.9 about.php page invites users to start testing the feature plugin ahead of its inclusion in core.</p>\";s: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 Nov 2017 23:57: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:\"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:\"\";}}}}}}}}}}}}}}}}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:\"Wed, 03 Jan 2018 09:37:02 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Wed, 03 Jan 2018 09:30:30 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:\"20170301171504\";}','no'),(638,'pwa_rewrite_text','abs-admin','yes'),(639,'pwa_restrict','','yes'),(640,'pwa_logout','','yes'),(641,'pwa_allow_custom_users','','yes'),(642,'pwa_logo_path','','yes'),(643,'pwa_login_page_bg_color','','yes'),(544,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(556,'mail_from','info@stationtyresdarwen.co.uk','yes'),(557,'mail_from_name','Station Tyres Darwen','yes'),(558,'mailer','smtp','yes'),(559,'mail_set_return_path','','yes'),(560,'smtp_host','mail.stationtyresdarwen.co.uk','yes'),(561,'smtp_port','26','yes'),(562,'smtp_ssl','none','yes'),(563,'smtp_auth','true','yes'),(564,'smtp_user','info@stationtyresdarwen.co.uk','yes'),(565,'smtp_pass','7)p=clfkCBNb','yes'),(566,'pepipost_user','','yes'),(567,'pepipost_pass','','yes'),(568,'pepipost_port','2525','yes'),(569,'pepipost_ssl','none','yes'),(6175,'_transient_timeout_plugin_slugs','1515058982','no'),(6176,'_transient_plugin_slugs','a:17:{i:0;s:19:\"akismet/akismet.php\";i:1;s:51:\"bookly-responsive-appointment-booking-tool/main.php\";i:2;s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";i:3;s:36:\"contact-form-7/wp-contact-form-7.php\";i:4;s:51:\"custom_icons_by_stylemixthemes/stm-custom-icons.php\";i:5;s:39:\"email-subscribers/email-subscribers.php\";i:6;s:9:\"hello.php\";i:7;s:33:\"instagram-feed/instagram-feed.php\";i:8;s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";i:9;s:45:\"stm_vehicles_listing/stm_vehicles_listing.php\";i:10;s:37:\"protect-wp-admin/protect-wp-admin.php\";i:11;s:23:\"revslider/revslider.php\";i:12;s:29:\"stm_importer/stm-importer.php\";i:13;s:31:\"stm-post-type/stm-post-type.php\";i:14;s:27:\"woocommerce/woocommerce.php\";i:15;s:29:\"wp-mail-smtp/wp_mail_smtp.php\";i:16;s:27:\"js_composer/js_composer.php\";}','no'),(147,'current_theme','stationtyres','yes'),(148,'theme_mods_stationtyres','a:33:{s:18:\"custom_css_post_id\";i:-1;s:4:\"logo\";s:73:\"http://stationtyresdarwen.co.uk/wp-content/uploads/station-tyres-logo.png\";s:10:\"site_style\";s:17:\"site_style_custom\";s:21:\"site_style_base_color\";s:7:\"#ffa500\";s:26:\"site_style_secondary_color\";s:7:\"#ffffff\";s:27:\"typography_body_font_family\";s:5:\"Exo 2\";s:24:\"typography_heading_color\";s:7:\"#ffa500\";s:15:\"header_bg_color\";s:7:\"#000000\";s:19:\"header_compare_show\";b:0;s:16:\"header_cart_show\";b:0;s:14:\"top_bar_enable\";b:0;s:13:\"top_bar_login\";b:0;s:22:\"top_bar_address_mobile\";b:0;s:28:\"top_bar_working_hours_mobile\";b:0;s:20:\"top_bar_phone_mobile\";b:1;s:13:\"top_bar_phone\";s:11:\"07713948270\";s:22:\"top_bar_socials_enable\";s:25:\"facebook,twitter,linkedin\";s:17:\"header_main_phone\";s:13:\"01254 705 305\";s:15:\"footer_bg_color\";s:7:\"#000000\";s:20:\"footer_sidebar_count\";s:1:\"3\";s:22:\"footer_copyright_color\";s:7:\"#000000\";s:21:\"footer_copyright_text\";s:27:\"© 2017 All Rights Reserved\";s:21:\"footer_socials_enable\";s:25:\"facebook,twitter,linkedin\";s:10:\"logo_width\";s:3:\"229\";s:21:\"top_bar_wpml_switcher\";b:0;s:16:\"top_bar_bg_color\";s:7:\"#000000\";s:21:\"header_socials_enable\";s:8:\"facebook\";s:12:\"socials_link\";s:262:\"facebook=https%3A%2F%2Fwww.facebook.com%2Fstationtyresdarwen%2F&twitter=%23&vk=&instagram=&behance=&dribbble=&flickr=&git=&linkedin=%23&pinterest=&yahoo=&delicious=&dropbox=&reddit=&soundcloud=&google=&google-plus=&skype=&youtube=&youtube-play=&tumblr=&whatsapp=\";s:14:\"google_api_key\";s:39:\"AIzaSyA80hpWeo6Gjazx63p2xL3NgIwKucHefCA\";s:18:\"nav_menu_locations\";a:1:{s:7:\"primary\";i:128;}s:16:\"enable_recaptcha\";b:1;s:20:\"recaptcha_public_key\";s:40:\"6Le-CxsTAAAAAGEu5LE5eEYsYwLLTKHPabvMaw8u\";s:20:\"recaptcha_secret_key\";s:40:\"6Le-CxsTAAAAAP_FFXJLr6Lnfxo1W9BYIOZQUvjt\";}','yes'),(149,'theme_switched','','yes'),(150,'envato_market_version','1.0.0-RC2','yes'),(151,'widget_socials','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(152,'widget_stm_text','a:4:{i:2;a:4:{s:5:\"title\";s:10:\"Contact us\";s:4:\"text\";s:81:\"2-4 Kay St, Darwen,<br>\r\n BB3 3BZ, UK<br><br>\r\n\r\nTel: 01254 705 305 / 07713948270\";s:6:\"filter\";b:0;s:7:\"socials\";b:0;}i:3;a:4:{s:5:\"title\";s:8:\"About us\";s:4:\"text\";s:232:\"<p>Fast, friendly and great customer service - specialising in new and second-hand tyres!\r\n</p><p>\r\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock.</p> \";s:6:\"filter\";b:0;s:7:\"socials\";b:0;}i:4;a:4:{s:5:\"title\";s:12:\"Opening time\";s:4:\"text\";s:150:\"Open 7 Days</br>\r\nOpen 9 - 5:30 Monday to Saturday<br>\r\nOpen 10:00 - 15:00 Sunday<br>\r\nOpen late on request<br>\r\nCall out service in Darwen area only.\";s:6:\"filter\";b:0;s:7:\"socials\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(153,'widget_stm_address','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(154,'widget_stm_dealer_car_info','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(155,'widget_car_location','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(156,'widget_stm_similar_cars','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(157,'widget_stm_listing_car_form','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(158,'widget_contacts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(159,'stm_price_patched','dismiss_patch','yes'),(160,'stm_vehicle_listing_options','a:10:{i:1;a:18:{s:11:\"single_name\";s:9:\"Condition\";s:11:\"plural_name\";s:10:\"Conditions\";s:4:\"slug\";s:9:\"condition\";s:4:\"font\";s:0:\"\";s:7:\"numeric\";b:0;s:6:\"slider\";b:0;s:26:\"use_on_single_listing_page\";b:0;s:23:\"use_on_car_listing_page\";b:0;s:31:\"use_on_car_archive_listing_page\";b:0;s:22:\"use_on_single_car_page\";b:0;s:17:\"use_on_car_filter\";b:1;s:11:\"use_on_tabs\";b:0;s:24:\"use_on_car_modern_filter\";b:1;s:36:\"use_on_car_modern_filter_view_images\";b:0;s:23:\"use_on_car_filter_links\";b:0;s:29:\"use_on_directory_filter_title\";b:1;s:22:\"enable_checkbox_button\";b:0;s:20:\"use_in_footer_search\";b:0;}i:2;a:18:{s:11:\"single_name\";s:4:\"Type\";s:11:\"plural_name\";s:5:\"Types\";s:4:\"slug\";s:4:\"body\";s:4:\"font\";s:0:\"\";s:7:\"numeric\";b:0;s:6:\"slider\";b:0;s:26:\"use_on_single_listing_page\";b:0;s:23:\"use_on_car_listing_page\";b:0;s:31:\"use_on_car_archive_listing_page\";b:0;s:22:\"use_on_single_car_page\";b:1;s:17:\"use_on_car_filter\";b:1;s:11:\"use_on_tabs\";b:1;s:24:\"use_on_car_modern_filter\";b:0;s:36:\"use_on_car_modern_filter_view_images\";b:0;s:23:\"use_on_car_filter_links\";b:0;s:29:\"use_on_directory_filter_title\";b:0;s:22:\"enable_checkbox_button\";b:0;s:20:\"use_in_footer_search\";b:0;}i:3;a:18:{s:11:\"single_name\";s:8:\"Category\";s:11:\"plural_name\";s:10:\"Categories\";s:4:\"slug\";s:13:\"category_type\";s:4:\"font\";s:0:\"\";s:7:\"numeric\";b:0;s:6:\"slider\";b:0;s:26:\"use_on_single_listing_page\";b:0;s:23:\"use_on_car_listing_page\";b:1;s:31:\"use_on_car_archive_listing_page\";b:0;s:22:\"use_on_single_car_page\";b:1;s:17:\"use_on_car_filter\";b:1;s:11:\"use_on_tabs\";b:0;s:24:\"use_on_car_modern_filter\";b:0;s:36:\"use_on_car_modern_filter_view_images\";b:0;s:23:\"use_on_car_filter_links\";b:0;s:29:\"use_on_directory_filter_title\";b:1;s:22:\"enable_checkbox_button\";b:0;s:20:\"use_in_footer_search\";b:0;}i:4;a:18:{s:11:\"single_name\";s:5:\"Brand\";s:11:\"plural_name\";s:6:\"Brands\";s:4:\"slug\";s:4:\"make\";s:4:\"font\";s:0:\"\";s:7:\"numeric\";b:0;s:6:\"slider\";b:0;s:26:\"use_on_single_listing_page\";b:0;s:23:\"use_on_car_listing_page\";b:0;s:31:\"use_on_car_archive_listing_page\";b:0;s:22:\"use_on_single_car_page\";b:0;s:17:\"use_on_car_filter\";b:1;s:11:\"use_on_tabs\";b:0;s:24:\"use_on_car_modern_filter\";b:0;s:36:\"use_on_car_modern_filter_view_images\";b:1;s:23:\"use_on_car_filter_links\";b:0;s:29:\"use_on_directory_filter_title\";b:1;s:22:\"enable_checkbox_button\";b:0;s:20:\"use_in_footer_search\";b:0;}i:5;a:17:{s:11:\"single_name\";s:5:\"Model\";s:11:\"plural_name\";s:6:\"Models\";s:4:\"slug\";s:5:\"serie\";s:4:\"font\";s:16:\"icomoon-settings\";s:7:\"numeric\";b:0;s:6:\"slider\";b:0;s:26:\"use_on_single_listing_page\";b:0;s:23:\"use_on_car_listing_page\";b:0;s:31:\"use_on_car_archive_listing_page\";b:0;s:22:\"use_on_single_car_page\";b:0;s:17:\"use_on_car_filter\";b:1;s:24:\"use_on_car_modern_filter\";b:0;s:36:\"use_on_car_modern_filter_view_images\";b:0;s:23:\"use_on_car_filter_links\";b:0;s:29:\"use_on_directory_filter_title\";b:0;s:22:\"enable_checkbox_button\";b:0;s:20:\"use_in_footer_search\";b:0;}i:6;a:19:{s:11:\"single_name\";s:7:\"Mileage\";s:11:\"plural_name\";s:8:\"Mileages\";s:4:\"slug\";s:7:\"mileage\";s:4:\"font\";s:0:\"\";s:7:\"numeric\";b:1;s:6:\"slider\";b:0;s:26:\"use_on_single_listing_page\";b:0;s:23:\"use_on_car_listing_page\";b:1;s:31:\"use_on_car_archive_listing_page\";b:1;s:22:\"use_on_single_car_page\";b:1;s:17:\"use_on_car_filter\";b:1;s:11:\"use_on_tabs\";b:0;s:24:\"use_on_car_modern_filter\";b:0;s:36:\"use_on_car_modern_filter_view_images\";b:0;s:23:\"use_on_car_filter_links\";b:0;s:29:\"use_on_directory_filter_title\";b:0;s:18:\"number_field_affix\";s:2:\"ml\";s:22:\"enable_checkbox_button\";b:0;s:20:\"use_in_footer_search\";b:0;}i:7;a:18:{s:11:\"single_name\";s:6:\"Engine\";s:11:\"plural_name\";s:7:\"Engines\";s:4:\"slug\";s:6:\"engine\";s:4:\"font\";s:0:\"\";s:7:\"numeric\";b:1;s:6:\"slider\";b:0;s:26:\"use_on_single_listing_page\";b:0;s:23:\"use_on_car_listing_page\";b:0;s:31:\"use_on_car_archive_listing_page\";b:1;s:22:\"use_on_single_car_page\";b:1;s:17:\"use_on_car_filter\";b:0;s:11:\"use_on_tabs\";b:0;s:24:\"use_on_car_modern_filter\";b:0;s:36:\"use_on_car_modern_filter_view_images\";b:0;s:23:\"use_on_car_filter_links\";b:0;s:29:\"use_on_directory_filter_title\";b:0;s:22:\"enable_checkbox_button\";b:0;s:20:\"use_in_footer_search\";b:0;}i:8;a:18:{s:11:\"single_name\";s:4:\"Year\";s:11:\"plural_name\";s:5:\"Years\";s:4:\"slug\";s:7:\"ca-year\";s:4:\"font\";s:0:\"\";s:7:\"numeric\";b:0;s:6:\"slider\";b:0;s:26:\"use_on_single_listing_page\";b:0;s:23:\"use_on_car_listing_page\";b:0;s:31:\"use_on_car_archive_listing_page\";b:0;s:22:\"use_on_single_car_page\";b:1;s:17:\"use_on_car_filter\";b:1;s:11:\"use_on_tabs\";b:0;s:24:\"use_on_car_modern_filter\";b:0;s:36:\"use_on_car_modern_filter_view_images\";b:0;s:23:\"use_on_car_filter_links\";b:0;s:29:\"use_on_directory_filter_title\";b:0;s:22:\"enable_checkbox_button\";b:0;s:20:\"use_in_footer_search\";b:0;}i:9;a:17:{s:11:\"single_name\";s:5:\"Price\";s:11:\"plural_name\";s:6:\"Prices\";s:4:\"slug\";s:5:\"price\";s:4:\"font\";s:0:\"\";s:7:\"numeric\";b:1;s:6:\"slider\";b:1;s:26:\"use_on_single_listing_page\";b:1;s:23:\"use_on_car_listing_page\";b:0;s:31:\"use_on_car_archive_listing_page\";b:0;s:22:\"use_on_single_car_page\";b:0;s:17:\"use_on_car_filter\";b:1;s:24:\"use_on_car_modern_filter\";b:0;s:36:\"use_on_car_modern_filter_view_images\";b:0;s:23:\"use_on_car_filter_links\";b:0;s:29:\"use_on_directory_filter_title\";b:0;s:22:\"enable_checkbox_button\";b:0;s:20:\"use_in_footer_search\";b:0;}i:10;a:18:{s:11:\"single_name\";s:5:\"Color\";s:11:\"plural_name\";s:6:\"Colors\";s:4:\"slug\";s:14:\"exterior-color\";s:4:\"font\";s:0:\"\";s:7:\"numeric\";b:0;s:6:\"slider\";b:0;s:26:\"use_on_single_listing_page\";b:0;s:23:\"use_on_car_listing_page\";b:0;s:31:\"use_on_car_archive_listing_page\";b:1;s:22:\"use_on_single_car_page\";b:1;s:17:\"use_on_car_filter\";b:0;s:11:\"use_on_tabs\";b:0;s:24:\"use_on_car_modern_filter\";b:0;s:36:\"use_on_car_modern_filter_view_images\";b:0;s:23:\"use_on_car_filter_links\";b:0;s:29:\"use_on_directory_filter_title\";b:0;s:22:\"enable_checkbox_button\";b:0;s:20:\"use_in_footer_search\";b:0;}}','yes'),(6185,'_site_transient_timeout_envato_market_themes','1514977683','no'),(6186,'_site_transient_envato_market_themes','a:4:{s:9:\"purchased\";a:12:{i:0;a:9:{s:2:\"id\";i:5556590;s:4:\"name\";s:4:\"The7\";s:6:\"author\";s:11:\"Dream-Theme\";s:7:\"version\";s:5:\"6.0.1\";s:11:\"description\";s:381:\"Any design, any layout. No coding required. The7 is the most customisable WordPress theme on the market up to date. Add the power of Visual Composer, The7 Post Types, Ultimate Addons, Slider Revolution, and WooCommerce to the mix, and youll get the ultimate web-site building toolkit! Theme is translation ready, compatible with WPML, SEO and mobile friendly (certified by Google).\";s:3:\"url\";s:81:\"https://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\";s:10:\"author_url\";s:40:\"https://themeforest.net/user/dream-theme\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";d:4.769999999999999573674358543939888477325439453125;}i:1;a:9:{s:2:\"id\";i:19439025;s:4:\"name\";s:12:\"CorporatePro\";s:6:\"author\";s:10:\"Kutethemes\";s:7:\"version\";s:5:\"1.1.7\";s:11:\"description\";s:298:\"coporate Shop is a simple but modern responsive Wordpress theme that oozes high-street sophistication. Its sharp lines and flat design style has been designed to be pixel perfect. Simply load your photography and you can have an online shop to matches the likes of Prada, Gucci and Yves St Laurent.\";s:3:\"url\";s:74:\"https://themeforest.net/item/corporate-responsive-wordpress-theme/19439025\";s:10:\"author_url\";s:39:\"https://themeforest.net/user/kutethemes\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";d:3;}i:2;a:9:{s:2:\"id\";i:15370904;s:4:\"name\";s:9:\"Lawmaster\";s:6:\"author\";s:12:\"Ven Bradshaw\";s:7:\"version\";s:3:\"1.0\";s:11:\"description\";s:194:\"Law Master is a complete WordPress theme for Attorney, Legal and Law related businesses. it\'s a amazing, clean and modern lawyer WordPress theme perfect for solicitors, barristers and lawyers.\";s:3:\"url\";s:95:\"https://themeforest.net/item/law-master-law-attorney-legal-firm-lawyer-wordpress-theme/15370904\";s:10:\"author_url\";s:40:\"https://themeforest.net/user/venbradshaw\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";s:0:\"\";}i:3;a:9:{s:2:\"id\";i:15752549;s:4:\"name\";s:6:\"Houzez\";s:6:\"author\";s:10:\"Favethemes\";s:7:\"version\";s:7:\"1.5.7.1\";s:11:\"description\";s:465:\"Houzez is a premium WordPress theme for real estate agents where modern aesthetics are combined with tasteful simplicity, and where the ease of use is achieved without compromise in your ability to customise the design. Whether you are a real estate agent looking to build a website for your company or a web developer seeking a perfect WordPress theme for your next project, you are certain to appreciate the numerous features and benefits that our theme provides.\";s:3:\"url\";s:72:\"https://themeforest.net/item/houzez-real-estate-wordpress-theme/15752549\";s:10:\"author_url\";s:39:\"https://themeforest.net/user/favethemes\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";d:4.80999999999999960920149533194489777088165283203125;}i:4;a:9:{s:2:\"id\";i:13181652;s:4:\"name\";s:9:\"CityTours\";s:6:\"author\";s:9:\"SoapTheme\";s:7:\"version\";s:5:\"2.5.0\";s:11:\"description\";s:130:\"The CityTours theme for WordPress is a fully responsive theme that looks great on any device. This theme is for city ctel booking.\";s:3:\"url\";s:82:\"https://themeforest.net/item/citytours-hotel-tour-booking-wordpress-theme/13181652\";s:10:\"author_url\";s:38:\"https://themeforest.net/user/soaptheme\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";d:4.2400000000000002131628207280300557613372802734375;}i:5;a:9:{s:2:\"id\";i:8625840;s:4:\"name\";s:9:\"ClassiAds\";s:6:\"author\";s:13:\"Designinvento\";s:7:\"version\";s:5:\"5.2.2\";s:11:\"description\";s:126:\"WORLDS LARGEST CLASSIFIED WORDPRESS THEME WITH COMPLETE TWO VERSIONS, SEVERAL DEMOS, MAXIMUM POSSIBILITIES & TONS OF FEATURES.\";s:3:\"url\";s:77:\"https://themeforest.net/item/classiads-classified-ads-wordpress-theme/8625840\";s:10:\"author_url\";s:42:\"https://themeforest.net/user/designinvento\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";d:4.29000000000000003552713678800500929355621337890625;}i:6;a:9:{s:2:\"id\";i:13987211;s:4:\"name\";s:6:\"Motors\";s:6:\"author\";s:14:\"StylemixThemes\";s:7:\"version\";s:3:\"3.8\";s:11:\"description\";s:90:\"Automotive, Cars, Vehicle, Boat Dealership, Classifieds WordPress Theme by StylemixThemes.\";s:3:\"url\";s:112:\"https://themeforest.net/item/motors-automotive-cars-vehicle-boat-dealership-classifieds-wordpress-theme/13987211\";s:10:\"author_url\";s:43:\"https://themeforest.net/user/stylemixthemes\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";d:4.54000000000000003552713678800500929355621337890625;}i:7;a:9:{s:2:\"id\";i:11830820;s:4:\"name\";s:6:\"Panama\";s:6:\"author\";s:7:\"Peenapo\";s:7:\"version\";s:5:\"1.9.4\";s:11:\"description\";s:23:\"Theme by Peenapo Themes\";s:3:\"url\";s:94:\"https://themeforest.net/item/photography-wordpress-theme-portfolio-transitions-panama/11830820\";s:10:\"author_url\";s:36:\"https://themeforest.net/user/peenapo\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";d:4.05999999999999960920149533194489777088165283203125;}i:8;a:9:{s:2:\"id\";i:12624481;s:4:\"name\";s:8:\"Universo\";s:6:\"author\";s:16:\"OceanThemes Team\";s:7:\"version\";s:5:\"2.1.0\";s:11:\"description\";s:418:\"In 2014, our default theme lets you create a responsive magazine website with a sleek, modern design. Feature your favorite homepage content in either a grid or a slider. Use the three .widget_tag_cloud li areas to customize your website, and change your content\'s layout with a full-width page template and a contributor page to show off your authors. Creating a magazine website with WordPress has never been easier.\";s:3:\"url\";s:80:\"https://themeforest.net/item/universo-powerful-education-courses-events/12624481\";s:10:\"author_url\";s:40:\"https://themeforest.net/user/oceanthemes\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";d:4.36000000000000031974423109204508364200592041015625;}i:9;a:9:{s:2:\"id\";i:11445307;s:4:\"name\";s:10:\"Montmartre\";s:6:\"author\";s:10:\"cmsmasters\";s:7:\"version\";s:5:\"1.2.3\";s:11:\"description\";s:1074:\"Montmartre WordPress Theme is amazing. Unlimited design solutions can be created due to a great flexibility of settings and shortcode options. 99+ Custom Shortcodes are added through a Visual content composer with drag\'n\'drop function. You can set a completely custom layout that stretches to any width, set your content in many columnns and assign animation many parts of your content. Montmartre theme has a Portfolio that can be set to any sort of a grid or a Masonry puzzle with variable paddings for elemens, while Blog can have several different layouts too. Custom Profiles and Projects post types offer an optimal way to present your content, while valid code, SEO-optimized structure and microformats guarantee this content is easily crawled and indexed by search engines. Montmartre comes with a Custom Mega Menu plugin, a really functional Form Builder and premium Revolution and Layer Slider plugins included for free. Multilanguage, RTL-ready, plugin-compatible and professionally-supported theme will make every day you work with your website be a Montmartre!\";s:3:\"url\";s:80:\"https://themeforest.net/item/montmartre-cafe-restaurant-wordpress-theme/11445307\";s:10:\"author_url\";s:39:\"https://themeforest.net/user/cmsmasters\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";d:4.55999999999999960920149533194489777088165283203125;}i:10;a:9:{s:2:\"id\";i:10581527;s:4:\"name\";s:6:\"Mobilz\";s:6:\"author\";s:11:\"Ninzio Team\";s:7:\"version\";s:3:\"3.2\";s:11:\"description\";s:67:\"Mobilz Multipurpose Responsive Retina-Ready Wordpress Premium Theme\";s:3:\"url\";s:74:\"https://themeforest.net/item/mobilz-responsive-multipurpose-theme/10581527\";s:10:\"author_url\";s:35:\"https://themeforest.net/user/ninzio\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";d:4.80999999999999960920149533194489777088165283203125;}i:11;a:9:{s:2:\"id\";i:3776000;s:4:\"name\";s:28:\"CleanSpace Business WP Theme\";s:6:\"author\";s:11:\"ThemeDev.me\";s:7:\"version\";s:5:\"2.7.3\";s:11:\"description\";s:196:\"CleanSpace is a clean style and multi-purpose HTML5&CSS3 template. It is greatly suitable for any kind of web sites, either it is a corporate/business site or it is a hair salon or portfolio site.\";s:3:\"url\";s:78:\"https://themeforest.net/item/cleanspace-retina-ready-business-wp-theme/3776000\";s:10:\"author_url\";s:38:\"https://themeforest.net/user/gt3themes\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";d:4.410000000000000142108547152020037174224853515625;}}s:6:\"active\";a:0:{}s:9:\"installed\";a:0:{}s:7:\"install\";a:12:{i:0;a:9:{s:2:\"id\";i:5556590;s:4:\"name\";s:4:\"The7\";s:6:\"author\";s:11:\"Dream-Theme\";s:7:\"version\";s:5:\"6.0.1\";s:11:\"description\";s:381:\"Any design, any layout. No coding required. The7 is the most customisable WordPress theme on the market up to date. Add the power of Visual Composer, The7 Post Types, Ultimate Addons, Slider Revolution, and WooCommerce to the mix, and youll get the ultimate web-site building toolkit! Theme is translation ready, compatible with WPML, SEO and mobile friendly (certified by Google).\";s:3:\"url\";s:81:\"https://themeforest.net/item/the7-responsive-multipurpose-wordpress-theme/5556590\";s:10:\"author_url\";s:40:\"https://themeforest.net/user/dream-theme\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";d:4.769999999999999573674358543939888477325439453125;}i:1;a:9:{s:2:\"id\";i:19439025;s:4:\"name\";s:12:\"CorporatePro\";s:6:\"author\";s:10:\"Kutethemes\";s:7:\"version\";s:5:\"1.1.7\";s:11:\"description\";s:298:\"coporate Shop is a simple but modern responsive Wordpress theme that oozes high-street sophistication. Its sharp lines and flat design style has been designed to be pixel perfect. Simply load your photography and you can have an online shop to matches the likes of Prada, Gucci and Yves St Laurent.\";s:3:\"url\";s:74:\"https://themeforest.net/item/corporate-responsive-wordpress-theme/19439025\";s:10:\"author_url\";s:39:\"https://themeforest.net/user/kutethemes\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";d:3;}i:2;a:9:{s:2:\"id\";i:15370904;s:4:\"name\";s:9:\"Lawmaster\";s:6:\"author\";s:12:\"Ven Bradshaw\";s:7:\"version\";s:3:\"1.0\";s:11:\"description\";s:194:\"Law Master is a complete WordPress theme for Attorney, Legal and Law related businesses. it\'s a amazing, clean and modern lawyer WordPress theme perfect for solicitors, barristers and lawyers.\";s:3:\"url\";s:95:\"https://themeforest.net/item/law-master-law-attorney-legal-firm-lawyer-wordpress-theme/15370904\";s:10:\"author_url\";s:40:\"https://themeforest.net/user/venbradshaw\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";s:0:\"\";}i:3;a:9:{s:2:\"id\";i:15752549;s:4:\"name\";s:6:\"Houzez\";s:6:\"author\";s:10:\"Favethemes\";s:7:\"version\";s:7:\"1.5.7.1\";s:11:\"description\";s:465:\"Houzez is a premium WordPress theme for real estate agents where modern aesthetics are combined with tasteful simplicity, and where the ease of use is achieved without compromise in your ability to customise the design. Whether you are a real estate agent looking to build a website for your company or a web developer seeking a perfect WordPress theme for your next project, you are certain to appreciate the numerous features and benefits that our theme provides.\";s:3:\"url\";s:72:\"https://themeforest.net/item/houzez-real-estate-wordpress-theme/15752549\";s:10:\"author_url\";s:39:\"https://themeforest.net/user/favethemes\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";d:4.80999999999999960920149533194489777088165283203125;}i:4;a:9:{s:2:\"id\";i:13181652;s:4:\"name\";s:9:\"CityTours\";s:6:\"author\";s:9:\"SoapTheme\";s:7:\"version\";s:5:\"2.5.0\";s:11:\"description\";s:130:\"The CityTours theme for WordPress is a fully responsive theme that looks great on any device. This theme is for city ctel booking.\";s:3:\"url\";s:82:\"https://themeforest.net/item/citytours-hotel-tour-booking-wordpress-theme/13181652\";s:10:\"author_url\";s:38:\"https://themeforest.net/user/soaptheme\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";d:4.2400000000000002131628207280300557613372802734375;}i:5;a:9:{s:2:\"id\";i:8625840;s:4:\"name\";s:9:\"ClassiAds\";s:6:\"author\";s:13:\"Designinvento\";s:7:\"version\";s:5:\"5.2.2\";s:11:\"description\";s:126:\"WORLDS LARGEST CLASSIFIED WORDPRESS THEME WITH COMPLETE TWO VERSIONS, SEVERAL DEMOS, MAXIMUM POSSIBILITIES & TONS OF FEATURES.\";s:3:\"url\";s:77:\"https://themeforest.net/item/classiads-classified-ads-wordpress-theme/8625840\";s:10:\"author_url\";s:42:\"https://themeforest.net/user/designinvento\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";d:4.29000000000000003552713678800500929355621337890625;}i:6;a:9:{s:2:\"id\";i:13987211;s:4:\"name\";s:6:\"Motors\";s:6:\"author\";s:14:\"StylemixThemes\";s:7:\"version\";s:3:\"3.8\";s:11:\"description\";s:90:\"Automotive, Cars, Vehicle, Boat Dealership, Classifieds WordPress Theme by StylemixThemes.\";s:3:\"url\";s:112:\"https://themeforest.net/item/motors-automotive-cars-vehicle-boat-dealership-classifieds-wordpress-theme/13987211\";s:10:\"author_url\";s:43:\"https://themeforest.net/user/stylemixthemes\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";d:4.54000000000000003552713678800500929355621337890625;}i:7;a:9:{s:2:\"id\";i:11830820;s:4:\"name\";s:6:\"Panama\";s:6:\"author\";s:7:\"Peenapo\";s:7:\"version\";s:5:\"1.9.4\";s:11:\"description\";s:23:\"Theme by Peenapo Themes\";s:3:\"url\";s:94:\"https://themeforest.net/item/photography-wordpress-theme-portfolio-transitions-panama/11830820\";s:10:\"author_url\";s:36:\"https://themeforest.net/user/peenapo\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";d:4.05999999999999960920149533194489777088165283203125;}i:8;a:9:{s:2:\"id\";i:12624481;s:4:\"name\";s:8:\"Universo\";s:6:\"author\";s:16:\"OceanThemes Team\";s:7:\"version\";s:5:\"2.1.0\";s:11:\"description\";s:418:\"In 2014, our default theme lets you create a responsive magazine website with a sleek, modern design. Feature your favorite homepage content in either a grid or a slider. Use the three .widget_tag_cloud li areas to customize your website, and change your content\'s layout with a full-width page template and a contributor page to show off your authors. Creating a magazine website with WordPress has never been easier.\";s:3:\"url\";s:80:\"https://themeforest.net/item/universo-powerful-education-courses-events/12624481\";s:10:\"author_url\";s:40:\"https://themeforest.net/user/oceanthemes\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";d:4.36000000000000031974423109204508364200592041015625;}i:9;a:9:{s:2:\"id\";i:11445307;s:4:\"name\";s:10:\"Montmartre\";s:6:\"author\";s:10:\"cmsmasters\";s:7:\"version\";s:5:\"1.2.3\";s:11:\"description\";s:1074:\"Montmartre WordPress Theme is amazing. Unlimited design solutions can be created due to a great flexibility of settings and shortcode options. 99+ Custom Shortcodes are added through a Visual content composer with drag\'n\'drop function. You can set a completely custom layout that stretches to any width, set your content in many columnns and assign animation many parts of your content. Montmartre theme has a Portfolio that can be set to any sort of a grid or a Masonry puzzle with variable paddings for elemens, while Blog can have several different layouts too. Custom Profiles and Projects post types offer an optimal way to present your content, while valid code, SEO-optimized structure and microformats guarantee this content is easily crawled and indexed by search engines. Montmartre comes with a Custom Mega Menu plugin, a really functional Form Builder and premium Revolution and Layer Slider plugins included for free. Multilanguage, RTL-ready, plugin-compatible and professionally-supported theme will make every day you work with your website be a Montmartre!\";s:3:\"url\";s:80:\"https://themeforest.net/item/montmartre-cafe-restaurant-wordpress-theme/11445307\";s:10:\"author_url\";s:39:\"https://themeforest.net/user/cmsmasters\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";d:4.55999999999999960920149533194489777088165283203125;}i:10;a:9:{s:2:\"id\";i:10581527;s:4:\"name\";s:6:\"Mobilz\";s:6:\"author\";s:11:\"Ninzio Team\";s:7:\"version\";s:3:\"3.2\";s:11:\"description\";s:67:\"Mobilz Multipurpose Responsive Retina-Ready Wordpress Premium Theme\";s:3:\"url\";s:74:\"https://themeforest.net/item/mobilz-responsive-multipurpose-theme/10581527\";s:10:\"author_url\";s:35:\"https://themeforest.net/user/ninzio\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";d:4.80999999999999960920149533194489777088165283203125;}i:11;a:9:{s:2:\"id\";i:3776000;s:4:\"name\";s:28:\"CleanSpace Business WP Theme\";s:6:\"author\";s:11:\"ThemeDev.me\";s:7:\"version\";s:5:\"2.7.3\";s:11:\"description\";s:196:\"CleanSpace is a clean style and multi-purpose HTML5&CSS3 template. It is greatly suitable for any kind of web sites, either it is a corporate/business site or it is a hair salon or portfolio site.\";s:3:\"url\";s:78:\"https://themeforest.net/item/cleanspace-retina-ready-business-wp-theme/3776000\";s:10:\"author_url\";s:38:\"https://themeforest.net/user/gt3themes\";s:13:\"thumbnail_url\";s:0:\"\";s:6:\"rating\";d:4.410000000000000142108547152020037174224853515625;}}}','no'),(163,'envato_market_state','install','yes'),(168,'widget_stm-recent-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(471,'revslider-dashboard','O:8:\"stdClass\":1:{s:11:\"test-handle\";O:8:\"stdClass\":5:{s:12:\"version_from\";s:5:\"5.0.0\";s:10:\"version_to\";s:5:\"5.0.0\";s:5:\"order\";i:5;s:7:\"content\";s:181:\"<div class=\"rs-dash-widget\"><div class=\"rs-dash-title-wrap\"><div class=\"rs-dash-title\">your version is: {{current_version}}</div></div><div class=\"rs-dash-widget-inner\"></div></div>\";s:4:\"code\";s:0:\"\";}}','yes'),(472,'revslider-addons','O:8:\"stdClass\":23:{s:26:\"revslider-whiteboard-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:26:\"revslider-whiteboard-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Whiteboard\";s:6:\"line_1\";s:31:\"Create Hand-Drawn Presentations\";s:6:\"line_2\";s:45:\"that are understandable, memorable & engaging\";s:9:\"available\";s:5:\"1.0.6\";s:10:\"background\";s:70:\"http://updates.themepunch.tools/addons/images/whiteboard_widget_bg.jpg\";s:6:\"button\";s:11:\"How to use?\";}s:22:\"revslider-backup-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:22:\"revslider-backup-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Backup\";s:6:\"line_1\";s:12:\"Make Backups\";s:6:\"line_2\";s:25:\"Revisions for your safety\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";}s:23:\"revslider-gallery-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:23:\"revslider-gallery-addon\";s:12:\"version_from\";s:5:\"5.2.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"WordPress Gallery\";s:6:\"line_1\";s:31:\"Replace the standard WP Gallery\";s:6:\"line_2\";s:31:\"with the Sliders of your choice\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";}s:25:\"revslider-rel-posts-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:25:\"revslider-rel-posts-addon\";s:12:\"version_from\";s:7:\"5.2.4.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:13:\"Related Posts\";s:6:\"line_1\";s:25:\"Add related Posts Sliders\";s:6:\"line_2\";s:31:\"at the end of your post content\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";}s:26:\"revslider-typewriter-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:26:\"revslider-typewriter-addon\";s:12:\"version_from\";s:5:\"5.3.0\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:17:\"Typewriter Effect\";s:6:\"line_1\";s:27:\"Enhance your slider\'s text \";s:6:\"line_2\";s:24:\"with typewriter effects \";s:9:\"available\";s:5:\"1.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";}s:23:\"revslider-sharing-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:23:\"revslider-sharing-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Social Sharing\";s:6:\"line_1\";s:17:\"Share your slides\";s:6:\"line_2\";s:50:\"with RevSlider \"actions\" because sharing is caring\";s:9:\"available\";s:5:\"1.1.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";}s:27:\"revslider-maintenance-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:27:\"revslider-maintenance-addon\";s:12:\"version_from\";s:5:\"5.3.1\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:15:\"Coming & Maint.\";s:6:\"line_1\";s:37:\"Simple Coming Soon & Maintenance Page\";s:6:\"line_2\";s:42:\"Let your visitors know what\'s up and when!\";s:9:\"available\";s:5:\"1.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";}s:20:\"revslider-snow-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:20:\"revslider-snow-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:12:\"Holiday Snow\";s:6:\"line_1\";s:12:\"Let it snow!\";s:6:\"line_2\";s:32:\"Add animated snow to any Slider \";s:9:\"available\";s:5:\"1.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";}s:25:\"revslider-particles-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:25:\"revslider-particles-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:16:\"Particle Effects\";s:6:\"line_1\";s:17:\"Let\'s Parti(cle)!\";s:6:\"line_2\";s:51:\"Add interactive particle animations to your sliders\";s:9:\"available\";s:5:\"1.0.5\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";}s:24:\"revslider-polyfold-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:24:\"revslider-polyfold-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:22:\"Polyfold Scroll Effect\";s:6:\"line_1\";s:32:\"Add sharp edges to your sliders \";s:6:\"line_2\";s:35:\"as they scroll into and out of view\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:11:\"How to use?\";}s:19:\"revslider-404-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:19:\"revslider-404-addon\";s:12:\"version_from\";s:3:\"5.3\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:3:\"404\";s:6:\"line_1\";s:39:\"Build custom 404 \"Page not Found\" Pages\";s:6:\"line_2\";s:28:\"with Slider Revolution swag!\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";}s:30:\"revslider-prevnext-posts-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:30:\"revslider-prevnext-posts-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Adjacent Posts\";s:6:\"line_1\";s:30:\"Display previous and next post\";s:6:\"line_2\";s:28:\"to the currently showing one\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";}s:25:\"revslider-filmstrip-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:25:\"revslider-filmstrip-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:9:\"Filmstrip\";s:6:\"line_1\";s:44:\"Display a continously rotating set of images\";s:6:\"line_2\";s:26:\"for your slide backgrounds\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";}s:21:\"revslider-login-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:21:\"revslider-login-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:10:\"Login Page\";s:6:\"line_1\";s:25:\"Very simple WP Login Page\";s:6:\"line_2\";s:34:\"enhanced with your favorite slider\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";}s:24:\"revslider-featured-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:24:\"revslider-featured-addon\";s:12:\"version_from\";s:3:\"5.4\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:20:\"Post Featured Slider\";s:6:\"line_1\";s:25:\"Display a featured Slider\";s:6:\"line_2\";s:41:\"instead of a featured Image in your Posts\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:9:\"Configure\";}s:22:\"revslider-slicey-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:22:\"revslider-slicey-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Slicey\";s:6:\"line_1\";s:20:\"Slice \'em up nicely!\";s:6:\"line_2\";s:38:\"Create image slices of your background\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";}s:27:\"revslider-beforeafter-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:27:\"revslider-beforeafter-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:14:\"Before & After\";s:6:\"line_1\";s:35:\"Compare two slides before and after\";s:6:\"line_2\";s:33:\"use it vertically or horizontally\";s:9:\"available\";s:5:\"1.0.3\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";}s:23:\"revslider-weather-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:23:\"revslider-weather-addon\";s:12:\"version_from\";s:7:\"5.4.5.2\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Weather\";s:6:\"line_1\";s:21:\"Every where you go...\";s:6:\"line_2\";s:36:\"...always take the weather with you!\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";}s:24:\"revslider-panorama-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:24:\"revslider-panorama-addon\";s:12:\"version_from\";s:7:\"5.4.5.2\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"Panorama\";s:6:\"line_1\";s:14:\"Panorama AddOn\";s:6:\"line_2\";s:23:\"Display images in 360°\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";}s:30:\"revslider-duotonefilters-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:30:\"revslider-duotonefilters-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:7:\"Duotone\";s:6:\"line_1\";s:7:\"Duotone\";s:6:\"line_2\";s:25:\"Because one is not enough\";s:9:\"available\";s:5:\"1.0.2\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";}s:22:\"revslider-reveal-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:24:\"revslider-revealer-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:6:\"Reveal\";s:6:\"line_1\";s:9:\"Reveal...\";s:6:\"line_2\";s:37:\"...your inner beast... and RevSliders\";s:9:\"available\";s:5:\"1.0.1\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";}s:23:\"revslider-refresh-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:23:\"revslider-refresh-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:8:\"(Re)Load\";s:6:\"line_1\";s:39:\"Reload the current page or a custom URL\";s:6:\"line_2\";s:34:\"after a certain time, loops, slide\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";}s:27:\"revslider-bubblemorph-addon\";O:8:\"stdClass\":9:{s:4:\"slug\";s:27:\"revslider-bubblemorph-addon\";s:12:\"version_from\";s:5:\"5.4.6\";s:10:\"version_to\";s:5:\"9.9.9\";s:5:\"title\";s:11:\"BubbleMorph\";s:6:\"line_1\";s:26:\"Include BubbleMorph Layers\";s:6:\"line_2\";s:33:\"for a decorative lava lamp effect\";s:9:\"available\";s:5:\"1.0.0\";s:10:\"background\";s:0:\"\";s:6:\"button\";s:6:\"How To\";}}','yes'),(170,'ab_lite_uninstall_remove_bookly_data','1','yes'),(171,'ab_data_loaded','1','yes'),(172,'ab_db_version','11.3.1','yes'),(173,'ab_installation_time','1487788874','yes'),(174,'ab_settings_company_name','','yes'),(175,'ab_settings_company_logo_attachment_id','','yes'),(176,'ab_settings_company_address','','yes'),(177,'ab_settings_company_phone','','yes'),(178,'ab_settings_company_website','','yes'),(179,'ab_settings_pay_locally','1','yes'),(180,'ab_settings_sender_name','ABS Station Tyres','yes'),(181,'ab_settings_sender_email','bhoobal.webdesigner@gmail.com','yes'),(182,'ab_settings_time_slot_length','15','yes'),(183,'ab_settings_minimum_time_prior_booking','0','yes'),(184,'ab_settings_maximum_available_days_for_booking','365','yes'),(185,'ab_settings_minimum_time_prior_cancel','0','yes'),(186,'ab_settings_approve_page_url','http://stationtyresdarwen.co.uk','yes'),(187,'ab_settings_cancel_page_url','http://stationtyresdarwen.co.uk','yes'),(188,'ab_settings_cancel_denied_page_url','http://stationtyresdarwen.co.uk','yes'),(189,'ab_settings_use_client_time_zone','0','yes'),(190,'ab_settings_step_cart_enabled','0','yes'),(191,'ab_settings_create_account','0','yes'),(192,'ab_settings_coupons','0','yes'),(193,'ab_settings_google_client_id','','yes'),(194,'ab_settings_google_client_secret','','yes'),(195,'ab_settings_google_two_way_sync','1','yes'),(196,'ab_settings_google_limit_events','50','yes'),(197,'ab_settings_google_event_title','{service_name}','yes'),(198,'ab_settings_final_step_url','','yes'),(199,'ab_settings_allow_staff_members_edit_profile','1','yes'),(200,'ab_settings_link_assets_method','enqueue','yes'),(201,'ab_settings_phone_default_country','auto','yes'),(202,'ab_settings_default_appointment_status','approved','yes'),(203,'ab_settings_client_cancel_appointment_action','cancel','yes'),(204,'ab_settings_cron_reminder','a:3:{s:16:\"client_follow_up\";i:21;s:15:\"client_reminder\";i:18;s:12:\"staff_agenda\";i:18;}','yes'),(205,'ab_settings_cart_notifications_combined','0','yes'),(206,'ab_cart_show_columns','a:6:{s:7:\"service\";a:1:{s:4:\"show\";i:1;}s:4:\"date\";a:1:{s:4:\"show\";i:1;}s:4:\"time\";a:1:{s:4:\"show\";i:1;}s:8:\"employee\";a:1:{s:4:\"show\";i:1;}s:5:\"price\";a:1:{s:4:\"show\";i:1;}s:7:\"deposit\";a:1:{s:4:\"show\";i:1;}}','yes'),(207,'ab_settings_monday_start','08:00','yes'),(208,'ab_settings_monday_end','18:00','yes'),(209,'ab_settings_tuesday_start','08:00','yes'),(210,'ab_settings_tuesday_end','18:00','yes'),(211,'ab_settings_wednesday_start','08:00','yes'),(212,'ab_settings_wednesday_end','18:00','yes'),(213,'ab_settings_thursday_start','08:00','yes'),(214,'ab_settings_thursday_end','18:00','yes'),(215,'ab_settings_friday_start','08:00','yes'),(216,'ab_settings_friday_end','18:00','yes'),(217,'ab_settings_saturday_start','','yes'),(218,'ab_settings_saturday_end','','yes'),(219,'ab_settings_sunday_start','','yes'),(220,'ab_settings_sunday_end','','yes'),(221,'ab_appearance_text_info_service_step','Please select service: ','yes'),(222,'ab_appearance_text_info_time_step','Below you can find a list of available time slots for {service_name} by {staff_name}.\nClick on a time slot to proceed with booking.','yes'),(223,'ab_appearance_text_info_cart_step','Below you can find a list of services selected for booking.\nClick BOOK MORE if you want to add more services.','yes'),(224,'ab_appearance_text_info_details_step','You selected a booking for {service_name} by {staff_name} at {service_time} on {service_date}. The price for the service is {service_price}.\nPlease provide your details in the form below to proceed with booking.','yes'),(225,'ab_appearance_text_info_details_step_guest','','yes'),(226,'ab_appearance_text_info_payment_step','Please tell us how you would like to pay: ','yes'),(227,'ab_appearance_text_info_complete_step','Thank you! Your booking is complete. An email with details of your booking has been sent to you.','yes'),(228,'ab_appearance_text_info_coupon','The total price for the booking is {total_price}.','yes'),(229,'ab_appearance_color','#f4662f','yes'),(230,'ab_appearance_required_employee','0','yes'),(231,'ab_appearance_text_step_service','Service','yes'),(232,'ab_appearance_text_step_time','Time','yes'),(233,'ab_appearance_text_step_cart','Cart','yes'),(234,'ab_appearance_text_step_details','Details','yes'),(235,'ab_appearance_text_step_payment','Payment','yes'),(236,'ab_appearance_text_step_done','Done','yes'),(237,'ab_appearance_text_button_next','Next','yes'),(238,'ab_appearance_text_button_back','Back','yes'),(239,'ab_appearance_text_button_apply','Apply','yes'),(240,'ab_appearance_text_button_book_more','Book More','yes'),(241,'ab_appearance_text_label_category','Category','yes'),(242,'ab_appearance_text_label_service','Service','yes'),(243,'ab_appearance_text_label_employee','Employee','yes'),(244,'ab_appearance_text_label_select_date','I\'m available on or after','yes'),(245,'ab_appearance_text_label_start_from','Start from','yes'),(246,'ab_appearance_text_label_finish_by','Finish by','yes'),(247,'ab_appearance_text_label_name','Name','yes'),(248,'ab_appearance_text_label_phone','Phone','yes'),(249,'ab_appearance_text_label_email','Email','yes'),(250,'ab_appearance_text_label_coupon','Coupon','yes'),(251,'ab_appearance_text_label_pay_locally','I will pay locally','yes'),(252,'ab_appearance_text_label_pay_mollie','I will pay now with Mollie','yes'),(253,'ab_appearance_text_label_pay_paypal','I will pay now with PayPal','yes'),(254,'ab_appearance_text_label_pay_ccard','I will pay now with Credit Card','yes'),(255,'ab_appearance_text_label_ccard_number','Credit Card Number','yes'),(256,'ab_appearance_text_label_ccard_expire','Expiration Date','yes'),(257,'ab_appearance_text_label_ccard_code','Card Security Code','yes'),(258,'ab_appearance_text_label_number_of_persons','Number of persons','yes'),(259,'ab_appearance_text_option_service','Select service','yes'),(260,'ab_appearance_text_option_category','Select category','yes'),(261,'ab_appearance_text_option_employee','Any','yes'),(262,'ab_appearance_text_required_service','Please select a service','yes'),(263,'ab_appearance_text_required_employee','Please select an employee','yes'),(264,'ab_appearance_text_required_name','Please tell us your name','yes'),(265,'ab_appearance_text_required_phone','Please tell us your phone','yes'),(266,'ab_appearance_text_required_email','Please tell us your email','yes'),(267,'ab_appearance_show_progress_tracker','1','yes'),(268,'ab_appearance_staff_name_with_price','1','yes'),(269,'ab_appearance_show_blocked_timeslots','0','yes'),(270,'ab_appearance_show_day_one_column','0','yes'),(271,'ab_appearance_show_calendar','0','yes'),(272,'ab_envato_purchase_code','','yes'),(273,'ab_currency','USD','yes'),(274,'ab_paypal_type','disabled','yes'),(275,'ab_paypal_api_username','','yes'),(276,'ab_paypal_api_password','','yes'),(277,'ab_paypal_api_signature','','yes'),(278,'ab_paypal_ec_mode','','yes'),(279,'ab_paypal_id','','yes'),(280,'ab_authorizenet_type','disabled','yes'),(281,'ab_authorizenet_sandbox','0','yes'),(282,'ab_authorizenet_api_login_id','','yes'),(283,'ab_authorizenet_transaction_key','','yes'),(284,'ab_stripe','disabled','yes'),(285,'ab_stripe_publishable_key','','yes'),(286,'ab_stripe_secret_key','','yes'),(287,'ab_2checkout','disabled','yes'),(288,'ab_2checkout_sandbox','0','yes'),(289,'ab_2checkout_api_seller_id','','yes'),(290,'ab_2checkout_api_secret_word','','yes'),(291,'ab_payulatam','disabled','yes'),(292,'ab_payulatam_sandbox','0','yes'),(293,'ab_payulatam_api_account_id','','yes'),(294,'ab_payulatam_api_key','','yes'),(295,'ab_payulatam_api_merchant_id','','yes'),(296,'ab_payson','disabled','yes'),(297,'ab_payson_sandbox','0','yes'),(298,'ab_payson_fees_payer','PRIMARYRECEIVER','yes'),(299,'ab_payson_funding','a:1:{i:0;s:10:\"CREDITCARD\";}','yes'),(300,'ab_payson_api_agent_id','','yes'),(301,'ab_payson_api_key','','yes'),(302,'ab_payson_api_receiver_email','','yes'),(303,'ab_mollie','disabled','yes'),(304,'ab_mollie_api_key','','yes'),(305,'ab_custom_fields','[{\"type\":\"textarea\",\"label\":\"Notes\",\"required\":false,\"id\":1,\"services\":[]}]','yes'),(306,'ab_custom_fields_per_service','0','yes'),(307,'ab_woocommerce_enabled','0','yes'),(308,'ab_woocommerce_product','','yes'),(309,'ab_woocommerce_cart_info_name','Appointment','yes'),(310,'ab_woocommerce_cart_info_value','Date: {appointment_date}\nTime: {appointment_time}\nService: {service_name}','yes'),(311,'ab_sms_token','','yes'),(312,'ab_sms_administrator_phone','','yes'),(313,'ab_sms_default_country_code','','yes'),(314,'ab_sms_notify_low_balance','1','yes'),(315,'ab_sms_notify_week_summary','1','yes'),(316,'ab_sms_notify_week_summary_sent','08','yes'),(317,'ab_email_content_type','html','yes'),(318,'ab_email_notification_reply_to_customers','1','yes'),(319,'wpcf7','a:3:{s:7:\"version\";s:5:\"4.6.1\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";d:1487788880;s:7:\"version\";s:5:\"4.6.1\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}s:9:\"recaptcha\";a:1:{s:40:\"6Le-CxsTAAAAAGEu5LE5eEYsYwLLTKHPabvMaw8u\";s:40:\"6Le-CxsTAAAAAP_FFXJLr6Lnfxo1W9BYIOZQUvjt\";}}','yes'),(345,'mc4wp_version','4.0.13','yes'),(346,'wpb_js_composer_license_activation_notified','yes','yes'),(324,'sbi_rating_notice','pending','yes'),(325,'sb_instagram_settings','a:3:{s:21:\"sb_instagram_show_btn\";b:1;s:24:\"sb_instagram_show_header\";b:1;s:28:\"sb_instagram_show_follow_btn\";b:1;}','yes'),(326,'revslider-update-check-short','1524297476','yes'),(327,'revslider-templates-check','1524096030','yes'),(332,'revslider-library-check','1523536160','yes'),(333,'rs-library','a:2:{s:7:\"objects\";a:169:{i:198;a:11:{s:2:\"id\";s:3:\"198\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_dvd_1.png\";s:4:\"name\";s:3:\"DVD\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:43:17\";s:6:\"active\";s:1:\"1\";}i:197;a:11:{s:2:\"id\";s:3:\"197\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"relax_hammock.jpg\";s:4:\"name\";s:13:\"Relax Hammock\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:196;a:11:{s:2:\"id\";s:3:\"196\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"beach_houses.jpg\";s:4:\"name\";s:12:\"Beach Houses\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:195;a:11:{s:2:\"id\";s:3:\"195\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"forest_road_2.jpg\";s:4:\"name\";s:13:\"Forest Road 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:194;a:11:{s:2:\"id\";s:3:\"194\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"clean_desk.jpg\";s:4:\"name\";s:10:\"Clean Desk\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:193;a:11:{s:2:\"id\";s:3:\"193\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_6.jpg\";s:4:\"name\";s:15:\"Mountain View 6\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1249\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:192;a:11:{s:2:\"id\";s:3:\"192\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"corn_field.jpg\";s:4:\"name\";s:10:\"Corn Field\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1320\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:191;a:11:{s:2:\"id\";s:3:\"191\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:21:\"stylish_apartment.jpg\";s:4:\"name\";s:17:\"Stylish Apartment\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:190;a:11:{s:2:\"id\";s:3:\"190\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:24:\"hipster_coffee_house.jpg\";s:4:\"name\";s:20:\"Hipster Coffee House\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:189;a:11:{s:2:\"id\";s:3:\"189\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"blurry_beach.jpg\";s:4:\"name\";s:12:\"Blurry Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-10-17 12:41:12\";s:6:\"active\";s:1:\"1\";}i:188;a:11:{s:2:\"id\";s:3:\"188\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_plant_1.png\";s:4:\"name\";s:7:\"Plant 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";}i:187;a:11:{s:2:\"id\";s:3:\"187\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_pen_1.png\";s:4:\"name\";s:5:\"Pen 1\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-12 16:25:27\";s:6:\"active\";s:1:\"1\";}i:186;a:11:{s:2:\"id\";s:3:\"186\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"greens_street.jpg\";s:4:\"name\";s:13:\"Greens Street\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:185;a:11:{s:2:\"id\";s:3:\"185\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"desert.jpg\";s:4:\"name\";s:6:\"Desert\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:184;a:11:{s:2:\"id\";s:3:\"184\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_5.jpg\";s:4:\"name\";s:15:\"Mountain View 5\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:183;a:11:{s:2:\"id\";s:3:\"183\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"laptop.jpg\";s:4:\"name\";s:6:\"Laptop\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1391\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:182;a:11:{s:2:\"id\";s:3:\"182\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"grand_canyon.jpg\";s:4:\"name\";s:12:\"Grand Canyon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1287\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:181;a:11:{s:2:\"id\";s:3:\"181\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:20:\"landscape_clouds.jpg\";s:4:\"name\";s:16:\"Landscape Clouds\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1272\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:180;a:11:{s:2:\"id\";s:3:\"180\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"highway_night.jpg\";s:4:\"name\";s:13:\"Highway Night\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1440\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:179;a:11:{s:2:\"id\";s:3:\"179\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"beach_water.jpg\";s:4:\"name\";s:11:\"Beach Water\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:177;a:11:{s:2:\"id\";s:3:\"177\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"woman_beach.jpg\";s:4:\"name\";s:11:\"Woman Beach\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:3;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:175;a:11:{s:2:\"id\";s:3:\"175\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:12:\"cool_guy.jpg\";s:4:\"name\";s:8:\"Cool Guy\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:174;a:11:{s:2:\"id\";s:3:\"174\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"beach_sea.jpg\";s:4:\"name\";s:9:\"Beach Sea\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:173;a:11:{s:2:\"id\";s:3:\"173\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"bridge_clouds.jpg\";s:4:\"name\";s:13:\"Bridge Clouds\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-09-05 15:29:22\";s:6:\"active\";s:1:\"1\";}i:172;a:11:{s:2:\"id\";s:3:\"172\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_egg_1.png\";s:4:\"name\";s:3:\"Egg\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:171;a:11:{s:2:\"id\";s:3:\"171\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_guitar_1.png\";s:4:\"name\";s:6:\"Guitar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:170;a:11:{s:2:\"id\";s:3:\"170\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_envelope_1.png\";s:4:\"name\";s:15:\"Closed Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:169;a:11:{s:2:\"id\";s:3:\"169\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_2.png\";s:4:\"name\";s:18:\"Postit Label White\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:168;a:11:{s:2:\"id\";s:3:\"168\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_envelope_2.png\";s:4:\"name\";s:13:\"Open Envelope\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:167;a:11:{s:2:\"id\";s:3:\"167\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_eggs_1.png\";s:4:\"name\";s:10:\"Egg Carton\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:166;a:11:{s:2:\"id\";s:3:\"166\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:25:\"object_bottleopener_1.png\";s:4:\"name\";s:13:\"Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:165;a:11:{s:2:\"id\";s:3:\"165\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blueprints_1.png\";s:4:\"name\";s:10:\"Blueprints\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:164;a:11:{s:2:\"id\";s:3:\"164\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_holepunch_1.png\";s:4:\"name\";s:10:\"Hole-punch\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:163;a:11:{s:2:\"id\";s:3:\"163\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_speaker_1.png\";s:4:\"name\";s:13:\"Black Speaker\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:162;a:11:{s:2:\"id\";s:3:\"162\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_eraser_1.png\";s:4:\"name\";s:6:\"Eraser\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"500\";s:6:\"height\";s:3:\"500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:161;a:11:{s:2:\"id\";s:3:\"161\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_vinylcover_1.png\";s:4:\"name\";s:11:\"Vinyl Cover\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:160;a:11:{s:2:\"id\";s:3:\"160\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_booklet_1.png\";s:4:\"name\";s:9:\"Booklet 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:159;a:11:{s:2:\"id\";s:3:\"159\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_earphones_2.png\";s:4:\"name\";s:11:\"Earphones 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:158;a:11:{s:2:\"id\";s:3:\"158\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_vinyl_1.png\";s:4:\"name\";s:5:\"Vinyl\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:157;a:11:{s:2:\"id\";s:3:\"157\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_1.png\";s:4:\"name\";s:17:\"Postit Label Pink\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:156;a:11:{s:2:\"id\";s:3:\"156\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_mechpencil_1.png\";s:4:\"name\";s:17:\"Mechanical Pencil\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:155;a:11:{s:2:\"id\";s:3:\"155\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_turntable_1.png\";s:4:\"name\";s:9:\"Turntable\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:154;a:11:{s:2:\"id\";s:3:\"154\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_folder_2.png\";s:4:\"name\";s:19:\"Closed Folder Black\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:153;a:11:{s:2:\"id\";s:3:\"153\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_4.png\";s:4:\"name\";s:18:\"Postit Label Green\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:152;a:11:{s:2:\"id\";s:3:\"152\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_folder_1.png\";s:4:\"name\";s:12:\"Blank Folder\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:151;a:11:{s:2:\"id\";s:3:\"151\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_pencup_1.png\";s:4:\"name\";s:7:\"Pen Cup\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:150;a:11:{s:2:\"id\";s:3:\"150\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_winebottle_1.png\";s:4:\"name\";s:15:\"Red Wine Bottle\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:149;a:11:{s:2:\"id\";s:3:\"149\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_headphones_1.png\";s:4:\"name\";s:10:\"Headphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:148;a:11:{s:2:\"id\";s:3:\"148\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_earphones_1.png\";s:4:\"name\";s:9:\"Earphones\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:147;a:11:{s:2:\"id\";s:3:\"147\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_postit_3.png\";s:4:\"name\";s:19:\"Postit Label Yellow\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:146;a:11:{s:2:\"id\";s:3:\"146\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_corkscrew_1.png\";s:4:\"name\";s:23:\"Corkscrew Bottle Opener\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1300\";s:6:\"height\";s:4:\"1300\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-18 15:34:49\";s:6:\"active\";s:1:\"1\";}i:145;a:11:{s:2:\"id\";s:3:\"145\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_muffin_1.png\";s:4:\"name\";s:16:\"Chocolate Muffin\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"900\";s:6:\"height\";s:3:\"900\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:144;a:11:{s:2:\"id\";s:3:\"144\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_2.png\";s:4:\"name\";s:12:\"Yellow Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:143;a:11:{s:2:\"id\";s:3:\"143\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_knife_2.png\";s:4:\"name\";s:7:\"Knife 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:142;a:11:{s:2:\"id\";s:3:\"142\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_2.png\";s:4:\"name\";s:16:\"Chopping Board 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:141;a:11:{s:2:\"id\";s:3:\"141\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_3.png\";s:4:\"name\";s:16:\"Chopping Board 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:140;a:11:{s:2:\"id\";s:3:\"140\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_coffee_2.png\";s:4:\"name\";s:12:\"Coffee Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:4:\"1200\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:139;a:11:{s:2:\"id\";s:3:\"139\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_bread_1.png\";s:4:\"name\";s:15:\"Croissant Bread\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:138;a:11:{s:2:\"id\";s:3:\"138\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_spoon_2.png\";s:4:\"name\";s:12:\"Wodden Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:137;a:11:{s:2:\"id\";s:3:\"137\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:26:\"object_choppingboard_1.png\";s:4:\"name\";s:16:\"Chopping Board 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:136;a:11:{s:2:\"id\";s:3:\"136\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_cup_2.png\";s:4:\"name\";s:11:\"Empty Cup 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:135;a:11:{s:2:\"id\";s:3:\"135\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_knife_1.png\";s:4:\"name\";s:5:\"Knife\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:134;a:11:{s:2:\"id\";s:3:\"134\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_spoon_1.png\";s:4:\"name\";s:5:\"Spoon\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:133;a:11:{s:2:\"id\";s:3:\"133\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_cup_1.png\";s:4:\"name\";s:9:\"Empty Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:132;a:11:{s:2:\"id\";s:3:\"132\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_3.png\";s:4:\"name\";s:11:\"White Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:131;a:11:{s:2:\"id\";s:3:\"131\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_coffee_1.png\";s:4:\"name\";s:10:\"Coffee Cup\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:130;a:11:{s:2:\"id\";s:3:\"130\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_frypan_2.png\";s:4:\"name\";s:9:\"Fry Pan 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:129;a:11:{s:2:\"id\";s:3:\"129\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_frypan_1.png\";s:4:\"name\";s:9:\"Fry Pan 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:128;a:11:{s:2:\"id\";s:3:\"128\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_fork_1.png\";s:4:\"name\";s:4:\"Fork\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:127;a:11:{s:2:\"id\";s:3:\"127\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_dishrag_1.png\";s:4:\"name\";s:13:\"Dishrag Cloth\";s:4:\"tags\";a:0:{}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-17 13:48:44\";s:6:\"active\";s:1:\"1\";}i:126;a:11:{s:2:\"id\";s:3:\"126\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_wacom_pen.png\";s:4:\"name\";s:17:\"Wacom Drawing Pen\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1060\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:125;a:11:{s:2:\"id\";s:3:\"125\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_occulus_vr.png\";s:4:\"name\";s:23:\"Occulus Virtual Reality\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:124;a:11:{s:2:\"id\";s:3:\"124\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_antenna.png\";s:4:\"name\";s:13:\"Antenna Radar\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:123;a:11:{s:2:\"id\";s:3:\"123\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_solarpanel.png\";s:4:\"name\";s:11:\"Solar Panel\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:122;a:11:{s:2:\"id\";s:3:\"122\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_wacom.png\";s:4:\"name\";s:20:\"Wacom Drawing Tablet\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:121;a:11:{s:2:\"id\";s:3:\"121\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_earth_2.png\";s:4:\"name\";s:20:\"Earth Globe Planet 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:120;a:11:{s:2:\"id\";s:3:\"120\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_chair_1.png\";s:4:\"name\";s:12:\"Office Chair\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:119;a:11:{s:2:\"id\";s:3:\"119\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_windturbine_2.png\";s:4:\"name\";s:14:\"Wind Turbine 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:118;a:11:{s:2:\"id\";s:3:\"118\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_windturbine.png\";s:4:\"name\";s:12:\"Wind Turbine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:117;a:11:{s:2:\"id\";s:3:\"117\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:16:\"object_earth.png\";s:4:\"name\";s:18:\"Earth Globe Planet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 16:50:55\";s:6:\"active\";s:1:\"1\";}i:116;a:11:{s:2:\"id\";s:3:\"116\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_2.jpg\";s:4:\"name\";s:15:\"Mountain View 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:115;a:11:{s:2:\"id\";s:3:\"115\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"desert_trees.jpg\";s:4:\"name\";s:12:\"Desert Trees\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1275\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:114;a:11:{s:2:\"id\";s:3:\"114\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:20:\"explore_moutains.jpg\";s:4:\"name\";s:17:\"Explore Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:113;a:11:{s:2:\"id\";s:3:\"113\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"night_skyline_2.jpg\";s:4:\"name\";s:15:\"Night Skyline 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:112;a:11:{s:2:\"id\";s:3:\"112\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"cliff_ocean.jpg\";s:4:\"name\";s:11:\"Cliff Ocean\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:111;a:11:{s:2:\"id\";s:3:\"111\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"city_smoke.jpg\";s:4:\"name\";s:10:\"City Smoke\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:110;a:11:{s:2:\"id\";s:3:\"110\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"surfer_beach.jpg\";s:4:\"name\";s:12:\"Surfer Beach\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1278\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:109;a:11:{s:2:\"id\";s:3:\"109\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:13:\"sky_night.jpg\";s:4:\"name\";s:9:\"Sky Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:108;a:11:{s:2:\"id\";s:3:\"108\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"palm_sunset.jpg\";s:4:\"name\";s:11:\"Palm Sunset\";s:4:\"tags\";a:4:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:3;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1372\";s:6:\"height\";s:4:\"1920\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:107;a:11:{s:2:\"id\";s:3:\"107\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"concert_people.jpg\";s:4:\"name\";s:14:\"Concert People\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:106;a:11:{s:2:\"id\";s:3:\"106\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"forest_road.jpg\";s:4:\"name\";s:11:\"Forest Road\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:105;a:11:{s:2:\"id\";s:3:\"105\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:15:\"beach_ocean.jpg\";s:4:\"name\";s:11:\"Beach Ocean\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:104;a:11:{s:2:\"id\";s:3:\"104\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:18:\"mountain_night.jpg\";s:4:\"name\";s:14:\"Mountain Night\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1277\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:103;a:11:{s:2:\"id\";s:3:\"103\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"ocean_mountains.jpg\";s:4:\"name\";s:15:\"Ocean Mountains\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1282\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:102;a:11:{s:2:\"id\";s:3:\"102\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:10:\"forest.jpg\";s:4:\"name\";s:6:\"Forest\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:101;a:11:{s:2:\"id\";s:3:\"101\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"ocean_stones.jpg\";s:4:\"name\";s:12:\"Ocean Stones\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:2;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:100;a:11:{s:2:\"id\";s:3:\"100\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"country_road.jpg\";s:4:\"name\";s:12:\"Country Road\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:2;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:99;a:11:{s:2:\"id\";s:2:\"99\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:9:\"beach.jpg\";s:4:\"name\";s:5:\"Beach\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:98;a:11:{s:2:\"id\";s:2:\"98\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:16:\"city_skyline.jpg\";s:4:\"name\";s:12:\"City Skyline\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:97;a:11:{s:2:\"id\";s:2:\"97\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"night_skyline.jpg\";s:4:\"name\";s:13:\"Night Skyline\";s:4:\"tags\";a:3:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:2;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:96;a:11:{s:2:\"id\";s:2:\"96\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"city_river.jpg\";s:4:\"name\";s:10:\"City River\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:95;a:11:{s:2:\"id\";s:2:\"95\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_3.jpg\";s:4:\"name\";s:15:\"Mountain View 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1281\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:94;a:11:{s:2:\"id\";s:2:\"94\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:14:\"misty_farm.jpg\";s:4:\"name\";s:10:\"Misty Farm\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:93;a:11:{s:2:\"id\";s:2:\"93\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"mountain_path.jpg\";s:4:\"name\";s:13:\"Mountain Path\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1280\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:92;a:11:{s:2:\"id\";s:2:\"92\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"night_skyline_3.jpg\";s:4:\"name\";s:15:\"Night Skyline 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:91;a:11:{s:2:\"id\";s:2:\"91\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:17:\"mountain_view.jpg\";s:4:\"name\";s:13:\"Mountain View\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1160\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:90;a:11:{s:2:\"id\";s:2:\"90\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"rocky_landscape.jpg\";s:4:\"name\";s:15:\"Rocky Landscape\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1080\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:89;a:11:{s:2:\"id\";s:2:\"89\";s:4:\"type\";s:1:\"2\";s:6:\"handle\";s:19:\"mountain_view_4.jpg\";s:4:\"name\";s:15:\"Mountain View 4\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}i:1;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1920\";s:6:\"height\";s:4:\"1203\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-15 14:29:46\";s:6:\"active\";s:1:\"1\";}i:88;a:11:{s:2:\"id\";s:2:\"88\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_eiffeltower_2.png\";s:4:\"name\";s:13:\"Eiffeltower 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:87;a:11:{s:2:\"id\";s:2:\"87\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_notebook_1.png\";s:4:\"name\";s:11:\"Notebook PC\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:86;a:11:{s:2:\"id\";s:2:\"86\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_macbook_1.png\";s:4:\"name\";s:20:\"Apple Macbook Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:85;a:11:{s:2:\"id\";s:2:\"85\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_canon_2.png\";s:4:\"name\";s:21:\"Canon Camera DSLR Top\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:84;a:11:{s:2:\"id\";s:2:\"84\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_3.png\";s:4:\"name\";s:25:\"Apple iPhone Silver White\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:83;a:11:{s:2:\"id\";s:2:\"83\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_candy_2.png\";s:4:\"name\";s:15:\"Candy Colored 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:82;a:11:{s:2:\"id\";s:2:\"82\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_macmouse_1.png\";s:4:\"name\";s:15:\"Apple Mac Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:81;a:11:{s:2:\"id\";s:2:\"81\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_1.png\";s:4:\"name\";s:18:\"Apple iPhone Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:80;a:11:{s:2:\"id\";s:2:\"80\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_deco_1.png\";s:4:\"name\";s:17:\"White Deco Object\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:79;a:11:{s:2:\"id\";s:2:\"79\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_1.png\";s:4:\"name\";s:24:\"Apple Watch White Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:78;a:11:{s:2:\"id\";s:2:\"78\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_swissknife_1.png\";s:4:\"name\";s:11:\"Swiss Knife\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:77;a:11:{s:2:\"id\";s:2:\"77\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_2.png\";s:4:\"name\";s:17:\"Apple Watch Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:76;a:11:{s:2:\"id\";s:2:\"76\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_candy_1.png\";s:4:\"name\";s:13:\"Candy Colored\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:75;a:11:{s:2:\"id\";s:2:\"75\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_1.png\";s:4:\"name\";s:16:\"Apple iPad Black\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:74;a:11:{s:2:\"id\";s:2:\"74\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_lamp_2.png\";s:4:\"name\";s:15:\"Black Desk Lamp\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:73;a:11:{s:2:\"id\";s:2:\"73\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_canon_1.png\";s:4:\"name\";s:17:\"Canon Camera DLSR\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:72;a:11:{s:2:\"id\";s:2:\"72\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_2.png\";s:4:\"name\";s:12:\"Blackberry 3\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:71;a:11:{s:2:\"id\";s:2:\"71\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_iphone_2.png\";s:4:\"name\";s:19:\"Apple iPhone Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:70;a:11:{s:2:\"id\";s:2:\"70\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_2.png\";s:4:\"name\";s:15:\"Apple iPad Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:69;a:11:{s:2:\"id\";s:2:\"69\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_printer_1.png\";s:4:\"name\";s:7:\"Printer\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:68;a:11:{s:2:\"id\";s:2:\"68\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_pcmouse_1.png\";s:4:\"name\";s:14:\"Black PC Mouse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:67;a:11:{s:2:\"id\";s:2:\"67\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_ipad_3.png\";s:4:\"name\";s:17:\"Apple iPad Silver\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:66;a:11:{s:2:\"id\";s:2:\"66\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_lamp_1.png\";s:4:\"name\";s:13:\"Desk Lamp Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:65;a:11:{s:2:\"id\";s:2:\"65\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:22:\"object_macscreen_1.png\";s:4:\"name\";s:16:\"Apple Mac Screen\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"2000\";s:6:\"height\";s:4:\"2000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:64;a:11:{s:2:\"id\";s:2:\"64\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_3.png\";s:4:\"name\";s:12:\"Blackberry 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:63;a:11:{s:2:\"id\";s:2:\"63\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_applewatch_3.png\";s:4:\"name\";s:16:\"Apple Watch Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"800\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:62;a:11:{s:2:\"id\";s:2:\"62\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_blackberry_1.png\";s:4:\"name\";s:10:\"Blackberry\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 16:51:11\";s:6:\"active\";s:1:\"1\";}i:49;a:11:{s:2:\"id\";s:2:\"49\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_bottle_1.png\";s:4:\"name\";s:18:\"Brown Glass Bottle\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:1;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:48;a:11:{s:2:\"id\";s:2:\"48\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_glasses_1.png\";s:4:\"name\";s:19:\"Hipster Glasses Top\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:47;a:11:{s:2:\"id\";s:2:\"47\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_magazine_1.png\";s:4:\"name\";s:14:\"Blank Magazine\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:46;a:11:{s:2:\"id\";s:2:\"46\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:28:\"object_leatherdocument_2.png\";s:4:\"name\";s:24:\"Black Leather Document 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:45;a:11:{s:2:\"id\";s:2:\"45\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_purse_2.png\";s:4:\"name\";s:13:\"Black Purse 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:44;a:11:{s:2:\"id\";s:2:\"44\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_typewriter_1.png\";s:4:\"name\";s:18:\"Retro Typewriter 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:43;a:11:{s:2:\"id\";s:2:\"43\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_5.png\";s:4:\"name\";s:9:\"Old Books\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:42;a:11:{s:2:\"id\";s:2:\"42\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:28:\"object_leatherdocument_1.png\";s:4:\"name\";s:29:\"Black Leather Document Closed\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:41;a:11:{s:2:\"id\";s:2:\"41\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_4.png\";s:4:\"name\";s:8:\"Old Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:40;a:11:{s:2:\"id\";s:2:\"40\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_wallet_2.png\";s:4:\"name\";s:22:\"Black Leather Document\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:39;a:11:{s:2:\"id\";s:2:\"39\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_quill_2.png\";s:4:\"name\";s:15:\"Quill Feather 2\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:38;a:11:{s:2:\"id\";s:2:\"38\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_eiffeltower_1.png\";s:4:\"name\";s:11:\"Eiffeltower\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:37;a:11:{s:2:\"id\";s:2:\"37\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_magazine_2.png\";s:4:\"name\";s:11:\"Open Book 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1333\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:36;a:11:{s:2:\"id\";s:2:\"36\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_1.png\";s:4:\"name\";s:10:\"Blank Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:35;a:11:{s:2:\"id\";s:2:\"35\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"object_glasses_2.png\";s:4:\"name\";s:15:\"Hipster Glasses\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:34;a:11:{s:2:\"id\";s:2:\"34\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_2.png\";s:4:\"name\";s:11:\"Open Book 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:33;a:11:{s:2:\"id\";s:2:\"33\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_gloves_1.png\";s:4:\"name\";s:12:\"Black Gloves\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:32;a:11:{s:2:\"id\";s:2:\"32\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_typewriter_2.png\";s:4:\"name\";s:16:\"Retro Typewriter\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:31;a:11:{s:2:\"id\";s:2:\"31\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:17:\"object_book_3.png\";s:4:\"name\";s:9:\"Open Book\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:30;a:11:{s:2:\"id\";s:2:\"30\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_wallet_1.png\";s:4:\"name\";s:12:\"Black Wallet\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1500\";s:6:\"height\";s:4:\"1500\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:29;a:11:{s:2:\"id\";s:2:\"29\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_purse_1.png\";s:4:\"name\";s:11:\"Black Purse\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:28;a:11:{s:2:\"id\";s:2:\"28\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_quill_1.png\";s:4:\"name\";s:13:\"Quill Feather\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 12:57:32\";s:6:\"active\";s:1:\"1\";}i:27;a:11:{s:2:\"id\";s:2:\"27\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_artbox_2.png\";s:4:\"name\";s:16:\"Art Box Colors 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:26;a:11:{s:2:\"id\";s:2:\"26\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"object_cloth_1.png\";s:4:\"name\";s:17:\"Cloth Paint Color\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:25;a:11:{s:2:\"id\";s:2:\"25\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"object_brushpot_1.png\";s:4:\"name\";s:9:\"Brush Pot\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"984\";s:6:\"height\";s:3:\"984\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:24;a:11:{s:2:\"id\";s:2:\"24\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:24:\"object_paintbucket_1.png\";s:4:\"name\";s:12:\"Paint Bucket\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1400\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:23;a:11:{s:2:\"id\";s:2:\"23\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_2.png\";s:4:\"name\";s:12:\"Paintbrush 3\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:3:\"700\";s:6:\"height\";s:3:\"700\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:22;a:11:{s:2:\"id\";s:2:\"22\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:19:\"object_artbox_1.png\";s:4:\"name\";s:14:\"Art Box Colors\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:21;a:11:{s:2:\"id\";s:2:\"21\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_3.png\";s:4:\"name\";s:12:\"Paintbrush 2\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:20;a:11:{s:2:\"id\";s:2:\"20\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:23:\"object_paintbrush_1.png\";s:4:\"name\";s:12:\"Paintbrush 1\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:4:\"1000\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-12 10:59:23\";s:6:\"active\";s:1:\"1\";}i:11;a:11:{s:2:\"id\";s:2:\"11\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"table_radio_right.png\";s:4:\"name\";s:18:\"Radio Speaker Wood\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}i:10;a:11:{s:2:\"id\";s:2:\"10\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:18:\"keyboard_apple.png\";s:4:\"name\";s:14:\"Apple Keyboard\";s:4:\"tags\";a:1:{i:0;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}i:9;a:11:{s:2:\"id\";s:1:\"9\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:20:\"macbook_top_gold.png\";s:4:\"name\";s:18:\"Apple Macbook Gold\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1600\";s:6:\"height\";s:4:\"1600\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}i:8;a:11:{s:2:\"id\";s:1:\"8\";s:4:\"type\";s:1:\"1\";s:6:\"handle\";s:21:\"nexus6_front_blue.png\";s:4:\"name\";s:19:\"Google Nexus 6 Blue\";s:4:\"tags\";a:2:{i:0;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:1;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}}s:11:\"description\";s:8:\"New File\";s:5:\"width\";s:4:\"1100\";s:6:\"height\";s:4:\"1100\";s:7:\"version\";s:3:\"1.0\";s:5:\"added\";s:19:\"2016-08-11 13:37:51\";s:6:\"active\";s:1:\"1\";}}s:4:\"tags\";a:13:{i:1;a:3:{s:2:\"id\";s:1:\"1\";s:6:\"handle\";s:11:\"accessories\";s:4:\"name\";s:11:\"Accessories\";}i:5;a:3:{s:2:\"id\";s:1:\"5\";s:6:\"handle\";s:3:\"art\";s:4:\"name\";s:3:\"Art\";}i:20;a:3:{s:2:\"id\";s:2:\"20\";s:6:\"handle\";s:5:\"Beach\";s:4:\"name\";s:5:\"Beach\";}i:21;a:3:{s:2:\"id\";s:2:\"21\";s:6:\"handle\";s:4:\"City\";s:4:\"name\";s:4:\"City\";}i:2;a:3:{s:2:\"id\";s:1:\"2\";s:6:\"handle\";s:6:\"device\";s:4:\"name\";s:6:\"Device\";}i:16;a:3:{s:2:\"id\";s:2:\"16\";s:6:\"handle\";s:4:\"food\";s:4:\"name\";s:4:\"Food\";}i:18;a:3:{s:2:\"id\";s:2:\"18\";s:6:\"handle\";s:4:\"misc\";s:4:\"name\";s:4:\"Misc\";}i:4;a:3:{s:2:\"id\";s:1:\"4\";s:6:\"handle\";s:5:\"music\";s:4:\"name\";s:5:\"Music\";}i:19;a:3:{s:2:\"id\";s:2:\"19\";s:6:\"handle\";s:6:\"nature\";s:4:\"name\";s:6:\"Nature\";}i:23;a:3:{s:2:\"id\";s:2:\"23\";s:6:\"handle\";s:5:\"Night\";s:4:\"name\";s:5:\"Night\";}i:3;a:3:{s:2:\"id\";s:1:\"3\";s:6:\"handle\";s:6:\"office\";s:4:\"name\";s:6:\"Office\";}i:24;a:3:{s:2:\"id\";s:2:\"24\";s:6:\"handle\";s:6:\"People\";s:4:\"name\";s:6:\"People\";}i:22;a:3:{s:2:\"id\";s:2:\"22\";s:6:\"handle\";s:3:\"Sky\";s:4:\"name\";s:3:\"Sky\";}}}','no'),(334,'revslider_checktables','1','yes'),(335,'rs_tables_created','1','yes'),(336,'revslider_table_version','1.0.6','yes'),(337,'revslider-global-settings','a:0:{}','yes'),(338,'recently_activated','a:0:{}','yes'),(637,'pwa_active','1','yes'),(339,'revslider_update_version','5.2.5.5','yes'),(340,'widget_rev-slider-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(341,'widget_bcn_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(342,'widget_mc4wp_form_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(343,'vc_version','5.0.1','yes'),(344,'stm_fonts','a:1:{s:8:\"stm-icon\";a:4:{s:7:\"include\";s:18:\"stm_fonts/stm-icon\";s:6:\"folder\";s:18:\"stm_fonts/stm-icon\";s:5:\"style\";s:21:\"stm-icon/stm-icon.css\";s:6:\"config\";s:11:\"charmap.php\";}}','yes'),(347,'mc4wp_flash_messages','a:0:{}','no'),(348,'fresh_site','0','yes'),(349,'envato_market','a:1:{s:5:\"token\";s:32:\"FJ0h0tQNMbdv9IxRHVWK6lCmlsO1KpH0\";}','yes'),(350,'_site_transient_stm_theme_token_added','token_set','no'),(351,'stm_motors_chosen_template','motorcycle','yes'),(352,'category_children','a:0:{}','yes'),(353,'condition_children','a:0:{}','yes'),(354,'body_children','a:0:{}','yes'),(355,'make_children','a:0:{}','yes'),(356,'serie_children','a:0:{}','yes'),(357,'fuel_children','a:0:{}','yes'),(358,'ca-year_children','a:0:{}','yes'),(359,'transmission_children','a:0:{}','yes'),(360,'drive_children','a:0:{}','yes'),(361,'exterior-color_children','a:0:{}','yes'),(362,'interior-color_children','a:0:{}','yes'),(368,'mc4wp','a:4:{s:7:\"api_key\";s:0:\"\";s:20:\"allow_usage_tracking\";i:0;s:15:\"debug_log_level\";s:7:\"warning\";s:18:\"first_activated_on\";i:1487795134;}','yes'),(369,'_transient_timeout_mc4wp_remote_content_icontent-blocksid106689','1487881534','no'),(370,'_transient_mc4wp_remote_content_icontent-blocksid106689','<div style=\"border: 5px dotted #cc4444; padding: 0 20px; background: white;\">\r\n<h3>MailChimp for WordPress Premium</h3>\r\n<p>This plugin has a Premium add-on, unlocking several powerful features. <a href=\"https://mc4wp.com/features/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=upgrade-box\">Have a look at its benefits</a>!</p>\r\n</div>\r\n','no'),(371,'rs_cache_overlay','5.3.1.5','yes'),(372,'rs_obj_favorites','a:12:{i:0;s:115:\"http://stationtyresdarwen.co.uk/wp-content/plugins/revslider/public/assets/assets/svg/action/ic_store_24px.svg\";i:1;s:125:\"http://stationtyresdarwen.co.uk/wp-content/plugins/revslider/public/assets/assets/svg/action/ic_assignment_late_24px.svg\";i:2;s:121:\"http://stationtyresdarwen.co.uk/wp-content/plugins/revslider/public/assets/assets/svg/action/ic_watch_later_24px.svg\";i:3;s:16:\"object_dvd_1.png\";i:4;s:17:\"relax_hammock.jpg\";i:5;s:16:\"beach_houses.jpg\";i:6;s:17:\"forest_road_2.jpg\";i:7;s:18:\"object_plant_1.png\";i:8;s:16:\"object_pen_1.png\";i:9;s:13:\"fa-icon-glass\";i:10;s:13:\"fa-icon-music\";i:11;s:14:\"fa-icon-search\";}','yes'),(631,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1488544168','no'),(632,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','a:100:{s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";s:4:\"6206\";}s:6:\"plugin\";a:3:{s:4:\"name\";s:6:\"plugin\";s:4:\"slug\";s:6:\"plugin\";s:5:\"count\";s:4:\"3807\";}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"Post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";s:4:\"3804\";}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";s:4:\"3335\";}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";s:4:\"2903\";}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";s:4:\"2632\";}s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";s:4:\"2289\";}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";s:4:\"2256\";}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";s:4:\"2176\";}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";s:4:\"2150\";}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";s:4:\"2114\";}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";s:4:\"2079\";}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";s:4:\"2018\";}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";s:4:\"1975\";}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"Facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";s:4:\"1810\";}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";s:4:\"1706\";}s:9:\"wordpress\";a:3:{s:4:\"name\";s:9:\"wordpress\";s:4:\"slug\";s:9:\"wordpress\";s:5:\"count\";s:4:\"1682\";}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";s:4:\"1501\";}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";s:4:\"1417\";}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";s:4:\"1330\";}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";s:4:\"1314\";}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";s:4:\"1182\";}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";s:4:\"1156\";}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";s:4:\"1109\";}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";s:4:\"1046\";}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";s:4:\"1037\";}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";s:4:\"1006\";}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";s:4:\"1001\";}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";s:3:\"994\";}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";s:3:\"981\";}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"AJAX\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";s:3:\"946\";}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";s:3:\"921\";}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";s:3:\"895\";}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";s:3:\"882\";}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";s:3:\"881\";}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";s:3:\"847\";}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"Share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";s:3:\"805\";}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";s:3:\"804\";}s:5:\"photo\";a:3:{s:4:\"name\";s:5:\"photo\";s:4:\"slug\";s:5:\"photo\";s:5:\"count\";s:3:\"796\";}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";s:3:\"788\";}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";s:3:\"784\";}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";s:3:\"781\";}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";s:3:\"780\";}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";s:3:\"771\";}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"CSS\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";s:3:\"766\";}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";s:3:\"760\";}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";s:3:\"750\";}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";s:3:\"744\";}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";s:3:\"740\";}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";s:3:\"734\";}s:6:\"photos\";a:3:{s:4:\"name\";s:6:\"photos\";s:4:\"slug\";s:6:\"photos\";s:5:\"count\";s:3:\"718\";}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";s:3:\"663\";}s:9:\"slideshow\";a:3:{s:4:\"name\";s:9:\"slideshow\";s:4:\"slug\";s:9:\"slideshow\";s:5:\"count\";s:3:\"663\";}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";s:3:\"662\";}s:5:\"stats\";a:3:{s:4:\"name\";s:5:\"stats\";s:4:\"slug\";s:5:\"stats\";s:5:\"count\";s:3:\"655\";}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";s:3:\"643\";}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";s:3:\"642\";}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";s:3:\"638\";}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";s:3:\"629\";}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";s:3:\"624\";}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";s:3:\"609\";}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";s:3:\"608\";}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";s:3:\"602\";}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";s:3:\"599\";}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";s:3:\"598\";}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";s:3:\"591\";}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";s:3:\"577\";}s:4:\"list\";a:3:{s:4:\"name\";s:4:\"list\";s:4:\"slug\";s:4:\"list\";s:5:\"count\";s:3:\"567\";}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";s:3:\"567\";}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";s:3:\"564\";}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";s:3:\"558\";}s:6:\"simple\";a:3:{s:4:\"name\";s:6:\"simple\";s:4:\"slug\";s:6:\"simple\";s:5:\"count\";s:3:\"556\";}s:4:\"shop\";a:3:{s:4:\"name\";s:4:\"shop\";s:4:\"slug\";s:4:\"shop\";s:5:\"count\";s:3:\"547\";}s:7:\"plugins\";a:3:{s:4:\"name\";s:7:\"plugins\";s:4:\"slug\";s:7:\"plugins\";s:5:\"count\";s:3:\"545\";}s:9:\"multisite\";a:3:{s:4:\"name\";s:9:\"multisite\";s:4:\"slug\";s:9:\"multisite\";s:5:\"count\";s:3:\"544\";}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";s:3:\"530\";}s:7:\"picture\";a:3:{s:4:\"name\";s:7:\"picture\";s:4:\"slug\";s:7:\"picture\";s:5:\"count\";s:3:\"524\";}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";s:3:\"518\";}s:3:\"url\";a:3:{s:4:\"name\";s:3:\"url\";s:4:\"slug\";s:3:\"url\";s:5:\"count\";s:3:\"496\";}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";s:3:\"494\";}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";s:3:\"475\";}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";s:3:\"474\";}s:4:\"html\";a:3:{s:4:\"name\";s:4:\"html\";s:4:\"slug\";s:4:\"html\";s:5:\"count\";s:3:\"473\";}s:8:\"pictures\";a:3:{s:4:\"name\";s:8:\"pictures\";s:4:\"slug\";s:8:\"pictures\";s:5:\"count\";s:3:\"467\";}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";s:3:\"464\";}s:10:\"shortcodes\";a:3:{s:4:\"name\";s:10:\"shortcodes\";s:4:\"slug\";s:10:\"shortcodes\";s:5:\"count\";s:3:\"459\";}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";s:3:\"453\";}s:4:\"meta\";a:3:{s:4:\"name\";s:4:\"meta\";s:4:\"slug\";s:4:\"meta\";s:5:\"count\";s:3:\"448\";}s:8:\"lightbox\";a:3:{s:4:\"name\";s:8:\"lightbox\";s:4:\"slug\";s:8:\"lightbox\";s:5:\"count\";s:3:\"447\";}s:11:\"advertising\";a:3:{s:4:\"name\";s:11:\"advertising\";s:4:\"slug\";s:11:\"advertising\";s:5:\"count\";s:3:\"445\";}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";s:3:\"438\";}s:3:\"tag\";a:3:{s:4:\"name\";s:3:\"tag\";s:4:\"slug\";s:3:\"tag\";s:5:\"count\";s:3:\"437\";}s:6:\"paypal\";a:3:{s:4:\"name\";s:6:\"paypal\";s:4:\"slug\";s:6:\"paypal\";s:5:\"count\";s:3:\"437\";}s:9:\"thumbnail\";a:3:{s:4:\"name\";s:9:\"thumbnail\";s:4:\"slug\";s:9:\"thumbnail\";s:5:\"count\";s:3:\"436\";}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";s:3:\"436\";}s:4:\"news\";a:3:{s:4:\"name\";s:4:\"News\";s:4:\"slug\";s:4:\"news\";s:5:\"count\";s:3:\"431\";}s:6:\"upload\";a:3:{s:4:\"name\";s:6:\"upload\";s:4:\"slug\";s:6:\"upload\";s:5:\"count\";s:3:\"431\";}s:8:\"linkedin\";a:3:{s:4:\"name\";s:8:\"linkedin\";s:4:\"slug\";s:8:\"linkedin\";s:5:\"count\";s:3:\"427\";}s:16:\"custom-post-type\";a:3:{s:4:\"name\";s:16:\"custom post type\";s:4:\"slug\";s:16:\"custom-post-type\";s:5:\"count\";s:3:\"427\";}s:7:\"sharing\";a:3:{s:4:\"name\";s:7:\"sharing\";s:4:\"slug\";s:7:\"sharing\";s:5:\"count\";s:3:\"424\";}}','no'),(419,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(388,'email-subscribers','2.9','yes'),(392,'es_c_emailsubscribers','s:4:\"b:0;\";','yes'),(393,'current_sa_email_subscribers_db_version','3.2','yes'),(391,'widget_email-subscribers','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(426,'rgmk_google_map_api_key','AIzaSyA80hpWeo6Gjazx63p2xL3NgIwKucHefCA','yes'),(467,'revslider-connection','1','yes'),(468,'revslider-latest-version','5.4.7.2','yes'),(469,'revslider-stable-version','4.2','yes'),(470,'revslider-notices','a:9:{i:0;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"5.0.9\";s:4:\"text\";s:230:\"<a href=\"http://revolution.themepunch.com/direct-customer-benefits/\" target=\"_blank\"><img src=\"http://updates.themepunch.tools/banners/updatenow51_banner.jpg\" style=\"min-width: 50%; max-width:100%\" alt=\"revslider 5.1 is out\" ></a>\";s:4:\"code\";s:9:\"TPRS51-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:1;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"5.1.4\";s:4:\"text\";s:242:\"<a href=\"http://revolution.themepunch.com/direct-customer-benefits/?ref=515b\" target=\"_blank\"><img src=\"http://updates.themepunch.tools/banners/updatenow_banner515.jpg\" style=\"min-width: 50%; max-width:100%\" alt=\"revslider 5.1.5 is out\" ></a>\";s:4:\"code\";s:10:\"TPRS515-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:2;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"5.1.6\";s:4:\"text\";s:240:\"<a href=\"http://revolution.themepunch.com/direct-customer-benefits/?ref=52b\" target=\"_blank\"><img src=\"http://updates.themepunch.tools/banners/updatenow_banner52.jpg\" style=\"min-width: 50%; max-width:100%\" alt=\"revslider 5.1.5 is out\" ></a>\";s:4:\"code\";s:10:\"TPRS515-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:3;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"5.2.9\";s:4:\"text\";s:249:\"<a href=\"http://revolution.themepunch.com/direct-customer-benefits/?ref=530b\" target=\"_blank\"><img src=\"http://updates.themepunch.tools/banners/updatenow_banner_large_5.3.jpg\" style=\"min-width: 50%; max-width:100%\" alt=\"revslider 5.3.0 is out\" ></a>\";s:4:\"code\";s:10:\"TPRS530-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:4;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"5.3.9\";s:4:\"text\";s:232:\"<a href=\"http://revolution.themepunch.com/direct-customer-benefits/?ref=54b\" target=\"_blank\"><img src=\"http://updates.themepunch.tools/banners/updatenow_54.jpg\" style=\"min-width: 50%; max-width:100%\" alt=\"revslider 5.4 is out\" ></a>\";s:4:\"code\";s:10:\"TPRS540-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:5;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"5.4.1\";s:4:\"text\";s:249:\"<a href=\"http://revolution.themepunch.com/direct-customer-benefits/?ref=542b\" target=\"_blank\"><img src=\"http://updates.themepunch.tools/banners/updatenow_banner_large_542.jpg\" style=\"min-width: 50%; max-width:100%\" alt=\"revslider 5.4.2 is out\" ></a>\";s:4:\"code\";s:10:\"TPRS540-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:6;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"5.4.4\";s:4:\"text\";s:236:\"<a href=\"http://revolution.themepunch.com/direct-customer-benefits/?ref=545b\" target=\"_blank\"><img src=\"http://updates.themepunch.tools/banners/updatenow_545.jpg\" style=\"min-width: 50%; max-width:100%\" alt=\"revslider 5.4.5 is out\" ></a>\";s:4:\"code\";s:10:\"TPRS545-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:7;O:8:\"stdClass\":7:{s:7:\"version\";s:7:\"5.4.5.1\";s:4:\"text\";s:252:\"<a href=\"http://revolution.themepunch.com/direct-customer-benefits/?ref=5452b\" target=\"_blank\"><img src=\"http://updates.themepunch.tools/banners/updatenow_banner_large5452.jpg\" style=\"min-width: 50%; max-width:100%\" alt=\"revslider 5.4.5.2 is out\" ></a>\";s:4:\"code\";s:11:\"TPRS5452-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:8;O:8:\"stdClass\":7:{s:7:\"version\";s:7:\"5.4.5.2\";s:4:\"text\";s:233:\"<a href=\"http://revolution.themepunch.com/direct-customer-benefits/?ref=546b\" target=\"_blank\"><img src=\"http://updates.themepunch.tools/banners/546_update.jpg\" style=\"min-width: 50%; max-width:100%\" alt=\"revslider 5.4.6 is out\" ></a>\";s:4:\"code\";s:10:\"TPRS546-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}}','yes'),(490,'category_type_children','a:0:{}','yes'),(7777,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1524603407;s:7:\"checked\";a:4:{s:12:\"stationtyres\";s:3:\"1.2\";s:13:\"twentyfifteen\";s:3:\"1.6\";s:14:\"twentyfourteen\";s:3:\"1.8\";s:13:\"twentysixteen\";s:3:\"1.3\";}s:8:\"response\";a:3:{s:13:\"twentyfifteen\";a:4:{s:5:\"theme\";s:13:\"twentyfifteen\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentyfifteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentyfifteen.1.9.zip\";}s:14:\"twentyfourteen\";a:4:{s:5:\"theme\";s:14:\"twentyfourteen\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentyfourteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentyfourteen.2.1.zip\";}s:13:\"twentysixteen\";a:4:{s:5:\"theme\";s:13:\"twentysixteen\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:43:\"https://wordpress.org/themes/twentysixteen/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/twentysixteen.1.4.zip\";}}s:12:\"translations\";a:0:{}}','no'),(7778,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1524603407;s:8:\"response\";a:10:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.0.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.0.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.5\";s:12:\"requires_php\";N;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:51:\"bookly-responsive-appointment-booking-tool/main.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:56:\"w.org/plugins/bookly-responsive-appointment-booking-tool\";s:4:\"slug\";s:42:\"bookly-responsive-appointment-booking-tool\";s:6:\"plugin\";s:51:\"bookly-responsive-appointment-booking-tool/main.php\";s:11:\"new_version\";s:6:\"14.5.1\";s:3:\"url\";s:73:\"https://wordpress.org/plugins/bookly-responsive-appointment-booking-tool/\";s:7:\"package\";s:92:\"https://downloads.wordpress.org/plugin/bookly-responsive-appointment-booking-tool.14.5.1.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:95:\"https://ps.w.org/bookly-responsive-appointment-booking-tool/assets/icon-128x128.png?rev=1005009\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:98:\"https://ps.w.org/bookly-responsive-appointment-booking-tool/assets/banner-1544x500.png?rev=1726755\";s:2:\"1x\";s:97:\"https://ps.w.org/bookly-responsive-appointment-booking-tool/assets/banner-772x250.png?rev=1726755\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.5\";s:12:\"requires_php\";N;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:30:\"w.org/plugins/breadcrumb-navxt\";s:4:\"slug\";s:16:\"breadcrumb-navxt\";s:6:\"plugin\";s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";s:11:\"new_version\";s:5:\"6.0.4\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/breadcrumb-navxt/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/breadcrumb-navxt.6.0.4.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:68:\"https://ps.w.org/breadcrumb-navxt/assets/icon-256x256.png?rev=971477\";s:2:\"1x\";s:60:\"https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=971477\";s:3:\"svg\";s:60:\"https://ps.w.org/breadcrumb-navxt/assets/icon.svg?rev=971477\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/breadcrumb-navxt/assets/banner-772x250.jpg?rev=479408\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.5\";s:12:\"requires_php\";N;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:39:\"email-subscribers/email-subscribers.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:31:\"w.org/plugins/email-subscribers\";s:4:\"slug\";s:17:\"email-subscribers\";s:6:\"plugin\";s:39:\"email-subscribers/email-subscribers.php\";s:11:\"new_version\";s:6:\"3.4.12\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/email-subscribers/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/email-subscribers.3.4.12.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/email-subscribers/assets/icon-256x256.png?rev=1348697\";s:2:\"1x\";s:70:\"https://ps.w.org/email-subscribers/assets/icon-128x128.png?rev=1348697\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:72:\"https://ps.w.org/email-subscribers/assets/banner-772x250.png?rev=1523132\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.5\";s:12:\"requires_php\";N;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:33:\"instagram-feed/instagram-feed.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/instagram-feed\";s:4:\"slug\";s:14:\"instagram-feed\";s:6:\"plugin\";s:33:\"instagram-feed/instagram-feed.php\";s:11:\"new_version\";s:5:\"1.8.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/instagram-feed/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/instagram-feed.1.8.2.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/instagram-feed/assets/icon-128x128.png?rev=991410\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/instagram-feed/assets/banner-772x250.png?rev=1805441\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.5\";s:12:\"requires_php\";N;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:30:\"w.org/plugins/mailchimp-for-wp\";s:4:\"slug\";s:16:\"mailchimp-for-wp\";s:6:\"plugin\";s:37:\"mailchimp-for-wp/mailchimp-for-wp.php\";s:11:\"new_version\";s:5:\"4.2.1\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/mailchimp-for-wp/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/mailchimp-for-wp.4.2.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/mailchimp-for-wp/assets/icon-256x256.png?rev=1224577\";s:2:\"1x\";s:69:\"https://ps.w.org/mailchimp-for-wp/assets/icon-128x128.png?rev=1224577\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/mailchimp-for-wp/assets/banner-772x250.png?rev=1184706\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.5\";s:12:\"requires_php\";N;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:37:\"protect-wp-admin/protect-wp-admin.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:30:\"w.org/plugins/protect-wp-admin\";s:4:\"slug\";s:16:\"protect-wp-admin\";s:6:\"plugin\";s:37:\"protect-wp-admin/protect-wp-admin.php\";s:11:\"new_version\";s:3:\"2.9\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/protect-wp-admin/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/protect-wp-admin.2.9.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/protect-wp-admin/assets/icon-128x128.png?rev=1016876\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:71:\"https://ps.w.org/protect-wp-admin/assets/banner-772x250.jpg?rev=1010431\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.5\";s:12:\"requires_php\";N;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"woocommerce/woocommerce.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:25:\"w.org/plugins/woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:6:\"plugin\";s:27:\"woocommerce/woocommerce.php\";s:11:\"new_version\";s:5:\"3.3.5\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/woocommerce/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/woocommerce.3.3.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-256x256.png?rev=1440831\";s:2:\"1x\";s:64:\"https://ps.w.org/woocommerce/assets/icon-128x128.png?rev=1440831\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/woocommerce/assets/banner-1544x500.png?rev=1629184\";s:2:\"1x\";s:66:\"https://ps.w.org/woocommerce/assets/banner-772x250.png?rev=1629184\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.5\";s:12:\"requires_php\";N;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:29:\"wp-mail-smtp/wp_mail_smtp.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:26:\"w.org/plugins/wp-mail-smtp\";s:4:\"slug\";s:12:\"wp-mail-smtp\";s:6:\"plugin\";s:29:\"wp-mail-smtp/wp_mail_smtp.php\";s:11:\"new_version\";s:5:\"1.2.5\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/wp-mail-smtp/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/wp-mail-smtp.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-256x256.png?rev=1755440\";s:2:\"1x\";s:65:\"https://ps.w.org/wp-mail-smtp/assets/icon-128x128.png?rev=1755440\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/wp-mail-smtp/assets/banner-1544x500.png?rev=1785565\";s:2:\"1x\";s:67:\"https://ps.w.org/wp-mail-smtp/assets/banner-772x250.png?rev=1785565\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.5\";s:12:\"requires_php\";N;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:27:\"js_composer/js_composer.php\";O:8:\"stdClass\":5:{s:4:\"slug\";s:11:\"js_composer\";s:11:\"new_version\";s:5:\"5.4.7\";s:3:\"url\";s:0:\"\";s:7:\"package\";b:0;s:4:\"name\";s:24:\"WPBakery Visual Composer\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:3:{s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.0.1\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.0.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=984007\";s:2:\"1x\";s:66:\"https://ps.w.org/contact-form-7/assets/icon-128x128.png?rev=984007\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"4.9.5\";s:12:\"requires_php\";N;s:13:\"compatibility\";a:0:{}}s:9:\"hello.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=969907\";s:2:\"1x\";s:63:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=969907\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:65:\"https://ps.w.org/hello-dolly/assets/banner-772x250.png?rev=478342\";}s:11:\"banners_rtl\";a:0:{}}s:45:\"stm_vehicles_listing/stm_vehicles_listing.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:55:\"w.org/plugins/motors-car-dealership-classified-listings\";s:4:\"slug\";s:41:\"motors-car-dealership-classified-listings\";s:6:\"plugin\";s:45:\"stm_vehicles_listing/stm_vehicles_listing.php\";s:11:\"new_version\";s:5:\"1.3.7\";s:3:\"url\";s:72:\"https://wordpress.org/plugins/motors-car-dealership-classified-listings/\";s:7:\"package\";s:84:\"https://downloads.wordpress.org/plugin/motors-car-dealership-classified-listings.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:94:\"https://ps.w.org/motors-car-dealership-classified-listings/assets/icon-256x256.png?rev=1580270\";s:2:\"1x\";s:94:\"https://ps.w.org/motors-car-dealership-classified-listings/assets/icon-128x128.png?rev=1580270\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:97:\"https://ps.w.org/motors-car-dealership-classified-listings/assets/banner-1544x500.jpg?rev=1580270\";s:2:\"1x\";s:96:\"https://ps.w.org/motors-car-dealership-classified-listings/assets/banner-772x250.jpg?rev=1580270\";}s:11:\"banners_rtl\";a:0:{}}}}','no'),(3613,'_site_transient_timeout_browser_3d5f26438973a3d90b630a57c59a2f98','1505734746','no'),(3614,'_site_transient_browser_3d5f26438973a3d90b630a57c59a2f98','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"60.0.3112.113\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(650,'_site_transient_timeout_browser_754cdcc1e6416d7a56262cf3d275472d','1489141165','no'),(651,'_site_transient_browser_754cdcc1e6416d7a56262cf3d275472d','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"56.0.2924.87\";s:10:\"update_url\";s:28:\"http://www.google.com/chrome\";s:7:\"img_src\";s:49:\"http://s.wordpress.org/images/browsers/chrome.png\";s:11:\"img_src_ssl\";s:48:\"https://wordpress.org/images/browsers/chrome.png\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(6171,'_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109','1515015426','no'),(6172,'_transient_feed_b9388c83948825c1edaef0d856b7b109','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:29:\"Popular — WordPress 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wordpress.org/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:57:\"Plugins extend and expand the functionality of 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:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"\n Wed, 03 Jan 2018 09:22: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: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=5.0-alpha-42419\";s:7:\"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:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Contact Form 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/plugins/contact-form-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:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins/contact-form-7/#respond\";s: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, 02 Aug 2007 12:43: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wordpress.org/plugins-wp/contact-form-7/\";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:54:\"Just another contact form plugin. Simple but flexible.\";s: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:\"Takayuki Miyoshi\";s: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:6432:\"<p><!--section=description--></p>\n<p>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.</p>\n<h4>Docs & Support</h4>\n<p>You can find <a href=\"https://contactform7.com/docs/\" rel=\"nofollow\">docs</a>, <a href=\"https://contactform7.com/faq/\" rel=\"nofollow\">FAQ</a> and more detailed information about Contact Form 7 on <a href=\"https://contactform7.com/\" rel=\"nofollow\">contactform7.com</a>. If you were unable to find the answer to your question on the FAQ or in any of the documentation, you should check the <a href=\"https://wordpress.org/support/plugin/contact-form-7/\" rel=\"nofollow\">support forum</a> on WordPress.org. If you can’t locate any topics that pertain to your particular issue, post a new topic for it.</p>\n<h4>Contact Form 7 Needs Your Support</h4>\n<p>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 <a href=\"https://contactform7.com/donate/\" rel=\"nofollow\"><strong>making a donation</strong></a>. Your donation will help encourage and support the plugin’s continued development and better user support.</p>\n<h4>Recommended Plugins</h4>\n<p>The following plugins are recommended for Contact Form 7 users:</p>\n<ul>\n<li><a href=\"https://wordpress.org/plugins/flamingo/\">Flamingo</a> by Takayuki Miyoshi – With Flamingo, you can save submitted messages via contact forms in the database.</li>\n<li><a href=\"https://wordpress.org/plugins/bogo/\">Bogo</a> by Takayuki Miyoshi – Bogo is a straight-forward multilingual plugin that doesn’t cause headaches.</li>\n</ul>\n<h4>Translations</h4>\n<p>You can <a href=\"https://contactform7.com/translating-contact-form-7/\" rel=\"nofollow\">translate Contact Form 7</a> on <a href=\"https://translate.wordpress.org/projects/wp-plugins/contact-form-7\" rel=\"nofollow\"><strong>translate.wordpress.org</strong></a>.</p>\n<p><!--section=installation--></p>\n<ol>\n<li>Upload the entire <code>contact-form-7</code> folder to the <code>/wp-content/plugins/</code> directory.</li>\n<li>Activate the plugin through the ‘Plugins’ menu in WordPress.</li>\n</ol>\n<p>You will find ‘Contact’ menu in your WordPress admin panel.</p>\n<p>For basic usage, you can also have a look at the <a href=\"https://contactform7.com/\" rel=\"nofollow\">plugin web site</a>.</p>\n<p><!--section=faq--></p>\n<p>Do you have questions or issues with Contact Form 7? Use these support channels appropriately.</p>\n<ol>\n<li><a href=\"https://contactform7.com/docs/\" rel=\"nofollow\">Docs</a></li>\n<li><a href=\"https://contactform7.com/faq/\" rel=\"nofollow\">FAQ</a></li>\n<li><a href=\"https://wordpress.org/support/plugin/contact-form-7/\" rel=\"nofollow\">Support Forum</a></li>\n</ol>\n<p><a href=\"https://contactform7.com/support/\" rel=\"nofollow\">Support</a></p>\n<dl>\n<dt>Installation Instructions</dt>\n<dd>\n<ol>\n<li>Upload the entire <code>contact-form-7</code> folder to the <code>/wp-content/plugins/</code> directory.</li>\n<li>Activate the plugin through the ‘Plugins’ menu in WordPress.</li>\n</ol>\n<p>You will find ‘Contact’ menu in your WordPress admin panel.</p>\n<p>For basic usage, you can also have a look at the <a href=\"https://contactform7.com/\" rel=\"nofollow\">plugin web site</a>.</p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<p>For more information, see <a href=\"https://contactform7.com/category/releases/\" rel=\"nofollow\">Releases</a>.</p>\n<h4>4.9.2</h4>\n<ul>\n<li>Remove improper uses of esc_sql().</li>\n<li>Fix the refill REST-API request so that a nonce is set when available.</li>\n<li>Give more contrast to unused mail-tags in the Mail tab panel to make them easier to recognize.</li>\n<li>Undo the previous change of HTTP status code for the REST-API response.</li>\n</ul>\n<h4>4.9.1</h4>\n<ul>\n<li>Code using create_function() has been removed to avoid security risks and warnings given when using with PHP 7.2+.</li>\n<li>Display the notice of config validation again to encourage admins to apply some important validation items recently added.</li>\n<li>REST API endpoint returns more specific HTTP status code 409 instead of 400.</li>\n<li>Fixed appearance of configuration error signs in the Additional Settings tab.</li>\n</ul>\n<h4>4.9</h4>\n<ul>\n<li>Supports subscribers_only setting</li>\n<li>Changes the default value of WPCF7_VERIFY_NONCE to false</li>\n<li>WPCF7_FormTagsManager::collect_tag_types() supports invert option</li>\n<li>New filter hooks: wpcf7_verify_nonce, wpcf7_subscribers_only_notice, wpcf7_remote_ip_addr, and wpcf7_submission_is_blacklisted</li>\n<li>Fixed: Form-tag’s tabindex option did not accept 0 or negative integer values</li>\n<li>Shows a validation error when no option in a radio buttons group is checked</li>\n<li>Config validator: Adds a validation rule against the use of deprecated settings (on_sent_ok and on_submit)</li>\n<li>Allows to pass the skip_mail option through the WPCF7_ContactForm::submit() and WPCF7_Submission::get_instance() function parameters.</li>\n<li>Triggers wpcf7beforesubmit custom DOM event. You can manipulate the formData object through an event handler.</li>\n</ul>\n<h4>4.8.1</h4>\n<ul>\n<li>wpcf7.initForm JavaScript function added to isolate form initialization process.</li>\n<li>Fix response message duplication caused by repeated click on submit button.</li>\n<li>Clear $phpmailer->AltBody to avoid unintended inheritance from previous wp_mail() calls.</li>\n<li>Fix incorrect character count of textarea input.</li>\n<li>Akismet: Exclude the comment_author, comment_author_email, and comment_author_url values from the comment_content value.</li>\n<li>REST API: More reliable approach to build route URLs.</li>\n<li>Include free_text inputs into event.detail.inputs.</li>\n</ul>\n<h4>4.8</h4>\n<ul>\n<li>Stopped using jquery.form.js.</li>\n<li>Added custom REST API endpoints for Ajax form submissions.</li>\n<li>WPCF7_FormTag class implements ArrayAccess interface.</li>\n<li>WPCF7_FormTagsManager::filter() filters form-tags based on features they support.</li>\n<li>New form-tag features: do-not-store, display-block, and display-hidden</li>\n<li>Removed inappropriate content from h1 headings.</li>\n<li>Added the support of size:invisible option to the reCAPTCHA form-tag.</li>\n</ul>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/plugins/contact-form-7/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";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:30:\"\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:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"Yoast SEO\";s:7:\"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://wordpress.org/plugins/wordpress-seo/\";s: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, 11 Oct 2010 20: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://wordpress.org/plugins-wp/wordpress-seo/\";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:103:\"Improve your WordPress SEO: Write better content and have a fully optimized WordPress site using…\";s: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:\"Joost de Valk\";s: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:15782:\"<p><!--section=description--></p>\n<p>WordPress out of the box is already technically quite a good platform for SEO. This was true when Joost wrote his original <a href=\"https://yoast.com/articles/wordpress-seo/\" rel=\"nofollow\">WordPress SEO</a> 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 <a href=\"https://yoast.com/\" rel=\"nofollow\">Yoast</a> to improve your site’s SEO on <em>all</em> needed aspects. While this <a href=\"https://yoast.com/wordpress/plugins/seo/\" rel=\"nofollow\">Yoast SEO plugin</a> 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.</p>\n<blockquote>\n<p><strong>Premium Support</strong><br />\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 <a href=\"https://yoast.com/wordpress/plugins/seo-premium/\" rel=\"nofollow\">Premium Yoast SEO plugin</a> only.<br />\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!</p>\n<p>You should also check out the <a href=\"https://yoast.com/wordpress/plugins/local-seo/\" rel=\"nofollow\">Yoast Local SEO</a>, <a href=\"https://yoast.com/wordpress/plugins/news-seo/\" rel=\"nofollow\">Yoast News SEO</a> and <a href=\"https://yoast.com/wordpress/plugins/video-seo/\" rel=\"nofollow\">Yoast Video SEO</a> extensions to Yoast SEO. These of course come with support too.</p>\n<p><strong>Bug Reports</strong><br />\n Bug reports for Yoast SEO are <a href=\"https://github.com/Yoast/wordpress-seo\" rel=\"nofollow\">welcomed on GitHub</a>. Please note GitHub is <em>not</em> a support forum, and issues that aren’t properly qualified as bugs will be closed.</p>\n</blockquote>\n<h4>Write better content with Yoast SEO</h4>\n<p>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.</p>\n<h4>Page Analysis</h4>\n<p>The Yoast SEO plugins <a href=\"https://yoast.com/content-seo-wordpress-linkdex/\" rel=\"nofollow\">Page Analysis</a> 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.</p>\n<p>The plugin also 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.</p>\n<p>Combined, this plugin makes sure that your content is the type of content search engines will love!</p>\n<h4>Technical WordPress Search Engine Optimization</h4>\n<p>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:</p>\n<h4>Meta & Link Elements</h4>\n<p>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?</p>\n<p>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 <code>rel=\"next\"</code> and <code>rel=\"prev\"</code> link elements in the <code>head</code> section of your paginated archives. This plugin adds those automatically. See <a href=\"https://yoast.com/rel-next-prev-paginated-archives/\" rel=\"nofollow\">this post</a> for more info.</p>\n<h4>XML Sitemaps</h4>\n<p>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.</p>\n<p>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.</p>\n<p>Because of using <a href=\"https://yoast.com/xsl-stylesheet-xml-sitemap/\" rel=\"nofollow\">XSL stylesheets for these XML Sitemaps</a>, the XML sitemaps are easily readable for the human eye too, so you can spot things that shouldn’t be in there.</p>\n<h4>RSS Optimization</h4>\n<p>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!</p>\n<h4>Breadcrumbs</h4>\n<p>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.</p>\n<p>Making your theme compatible isn’t hard either, check <a href=\"https://kb.yoast.com/kb/implement-wordpress-seo-breadcrumbs/\" rel=\"nofollow\">these instructions</a>.</p>\n<h4>Edit your .htaccess and robots.txt file</h4>\n<p>Using the built-in file editor, you can edit your WordPress blog’s <code>.htaccess</code> and <code>robots.txt</code> file, giving you direct access to the two most powerful files, from an SEO perspective, in your WordPress install.</p>\n<h4>Social Integration</h4>\n<p>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.</p>\n<h4>Multi-Site Compatible</h4>\n<p>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.</p>\n<h4>Import & Export functionality</h4>\n<p>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!</p>\n<h4>Import functionality for other WordPress SEO plugins</h4>\n<p>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.</p>\n<p>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 <a href=\"https://wordpress.org/extend/plugins/seo-data-transporter/\" rel=\"nofollow\">SEO Data Transporter</a> 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.</p>\n<p>Read <a href=\"https://yoast.com/all-in-one-seo-pack-migration/\" rel=\"nofollow\">this migration guide</a> if you still have questions about migrating from another SEO plugin to Yoast SEO.</p>\n<h4>Yoast SEO Plugin in your Language!</h4>\n<p>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 <a href=\"http://translate.yoast.com\" rel=\"nofollow\">translate.yoast.com</a>.</p>\n<h4>News SEO</h4>\n<p>Be sure to also check out the premium <a href=\"https://yoast.com/wordpress/plugins/news-seo/\" rel=\"nofollow\">News SEO module</a> 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.</p>\n<h4>Further Reading</h4>\n<p>For more info, check out the following articles:</p>\n<ul>\n<li>The <a href=\"https://kb.yoast.com/kb/category/yoast-seo/\" rel=\"nofollow\">Yoast SEO Knowledgebase</a>.</li>\n<li><a href=\"https://yoast.com/articles/wordpress-seo/\" rel=\"nofollow\">WordPress SEO – The definitive Guide by Yoast</a>.</li>\n<li>Once you have great SEO, you’ll need the <a href=\"https://yoast.com/articles/wordpress-hosting/\" rel=\"nofollow\">best WordPress Hosting</a>.</li>\n<li>The <a href=\"https://yoast.com/wordpress/plugins/seo/\" rel=\"nofollow\">Yoast SEO Plugin</a> official homepage.</li>\n<li>Other <a href=\"https://yoast.com/wordpress/plugins/\" rel=\"nofollow\">WordPress Plugins</a> by the same team.</li>\n<li>Follow Yoast on <a href=\"https://facebook.com/yoast\" rel=\"nofollow\">Facebook</a> & <a href=\"http://twitter.com/yoast\" rel=\"nofollow\">Twitter</a>.</li>\n</ul>\n<h3>From within WordPress</h3>\n<ol>\n<li>Visit ‘Plugins > Add New’</li>\n<li>Search for ‘Yoast SEO’</li>\n<li>Activate Yoast SEO from your Plugins page.</li>\n<li>Go to “after activation” below.</li>\n</ol>\n<h3>Manually</h3>\n<ol>\n<li>Upload the <code>wordpress-seo</code> folder to the <code>/wp-content/plugins/</code> directory</li>\n<li>Activate the Yoast SEO plugin through the ‘Plugins’ menu in WordPress</li>\n<li>Go to “after activation” below.</li>\n</ol>\n<h3>After activation</h3>\n<ol>\n<li>You should see (a notice to start) the Yoast SEO configuration wizard.</li>\n<li>Go through the configuration wizard and set up the plugin for your site.</li>\n<li>You’re done!</li>\n</ol>\n<p><!--section=faq--></p>\n<p>You’ll find answers to many of your questions on <a href=\"https://kb.yoast.com/kb/category/yoast-seo/\" rel=\"nofollow\">kb.yoast.com</a>.</p>\n<p><!--section=changelog--></p>\n<h4>6.0.0</h4>\n<p>Release Date: December 20th, 2017</p>\n<p>Enhancements:</p>\n<ul>\n<li>Adds support for custom page titles and meta descriptions on the WooCommerce shop page. Props <a href=\"https://github.com/WPprodigy\" rel=\"nofollow\">Caleb Burks</a>.</li>\n<li>Adds support for custom page social titles and descriptions on the WooCommerce shop page.</li>\n<li>Adds a link to the Google Knowledge Graph article on Yoast.com. Props <a href=\"https://github.com/raajtram\" rel=\"nofollow\">Raaj Trambadia</a>.</li>\n<li>Adds a link to an article on Yoast.com on why it might be a bad idea to use the same keyword more than once.</li>\n<li>Changed the meta description maximum recommended length from 156 to 320 characters.</li>\n</ul>\n<p>Bugfixes:</p>\n<ul>\n<li>Disables the mark buttons of the content analysis when switched to text view.</li>\n<li>Hides the mark buttons when the WYSIWYG editor is not loaded or the filter <code>wpseo_enable_assessment_markers</code> returns false.</li>\n<li>Security hardening through stricter code checks.</li>\n</ul>\n<h4>5.9.3</h4>\n<p>Release Date: December 11th, 2017</p>\n<p>Security:</p>\n<ul>\n<li>Fixes an issue where a part of the excerpt would be leaked on password protected posts when used as a replacement variable. Such as <code>%%excerpt%%</code> and <code>%%excerpt_only%%</code>. Props to <a href=\"https://profiles.wordpress.org/rolandinsh\" rel=\"nofollow\">Rolands Umbrovskis</a> for reporting this issue to us.</li>\n</ul>\n<h4>5.9.2</h4>\n<p>Release Date: December 11th, 2017</p>\n<p>Bugfixes:</p>\n<ul>\n<li>Fixes a bug where older browsers couldn’t load the content analysis. This applies to Internet Explorer (10 and lower) and Safari (9.1 and lower).</li>\n<li>Fixes a bug where the Yoast Metabox wouldn’t be shown for posts set to <code>noindex</code>, therefore making it impossible to change it back to <code>index</code>, view Readability scores and not being able to optimize a post, before allowing it to be indexed.</li>\n<li>Fixes a bug where translations wouldn’t be applied in the Yoast SEO Metabox for SEO and Readability scores.</li>\n</ul>\n<h4>5.9.1</h4>\n<p>Release Date: December 5th, 2017</p>\n<p>Bugfixes:</p>\n<ul>\n<li>Fixes a bug where the configuration wizard could not be loaded, caused by a missing JavaScript dependency.</li>\n</ul>\n<h4>5.9.0</h4>\n<p>Release Date: December 5th, 2017</p>\n<p>Bugfixes:</p>\n<ul>\n<li>Fixes a bug where the title isn’t added back to the HTML when the debug marker has been disabled.</li>\n<li>Fixes a bug where multiple help panels showed up when clicking on different help buttons.</li>\n<li>Fixes a bug where the Help Center wouldn’t be closed when clicking the Go Premium link.</li>\n<li>Fixes a bug where the cornerstone setting for a post would be lost when quick editing the post.</li>\n<li>Fixes a bug where newly created posts were taken into account for the link count, resulting in MySQL errors. Props to <a href=\"https://github.com/stodorovic\" rel=\"nofollow\">stodorovic</a>.</li>\n<li>Fixes a bug where Premium plugins were being treated as WordPress.org plugins in the ‘suggested plugin’ notifications, resulting in download errors.</li>\n<li>Fixes a bug where an empty div was visible when both Content and Readability analysis are disabled.</li>\n</ul>\n<p>Enhancements</p>\n<ul>\n<li>Shows a notice regarding opening the Onboarding Wizard when the plugin is installed for the first time.</li>\n<li>Makes it easier to unhook the debug code rendered as HTML comment.</li>\n<li>Implements the Reactified content analysis.</li>\n<li>Introduces the <code>wpseo_add_opengraph_additional_images</code> filter to allow additional OpenGraph Images to be added at a low priority.</li>\n<li>Changes the Dashboard widget’s progress bar height to 24px.</li>\n<li>Makes the ‘Next’ and ‘Back’ buttons in the Onboarding Wizard focusable.</li>\n<li>Adds grouping of feedback within the content analysis, in the following categories: ‘errors’, ‘problems’, ‘needs improvement’, ‘considerations’, and ‘good’. Each category can be expanded and collapsed.</li>\n</ul>\n<h4>Earlier versions</h4>\n<p>For the changelog of earlier versions, please refer to the separate changelog.txt file.</p>\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:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Akismet Anti-Spam\";s:7:\"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:\"https://wordpress.org/plugins/akismet/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://wordpress.org/plugins/akismet/#comments\";s: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, 20 Oct 2005 08:57: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpress.org/plugins-wp/akismet/\";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:103:\"Akismet checks your comments and contact form submissions against our global database of spam to…\";s: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:\"Automattic\";s: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:20566:\"<p><!--section=description--></p>\n<p>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.</p>\n<p>Major features in Akismet include:</p>\n<ul>\n<li>Automatically checks all comments and filters out the ones that look like spam.</li>\n<li>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.</li>\n<li>URLs are shown in the comment body to reveal hidden or misleading links.</li>\n<li>Moderators can see the number of approved comments for each user.</li>\n<li>A discard feature that outright blocks the worst spam, saving you disk space and speeding up your site.</li>\n</ul>\n<p>PS: You’ll need an <a href=\"https://akismet.com/get/\" rel=\"nofollow\">Akismet.com API key</a> to use it. Keys are free for personal blogs; paid subscriptions are available for businesses and commercial sites.</p>\n<p><!--section=installation--></p>\n<p>Upload the Akismet plugin to your blog, Activate it, then enter your <a href=\"https://akismet.com/get/\" rel=\"nofollow\">Akismet.com API key</a>.</p>\n<p>1, 2, 3: You’re done!</p>\n<p><!--section=changelog--></p>\n<h4>4.0.2</h4>\n<p><em>Release Date – 18 December 2017</em></p>\n<ul>\n<li>Fixed a bug that could cause Akismet to recheck a comment that has already been manually approved or marked as spam.</li>\n<li>Fixed a bug that could cause Akismet to claim that some comments are still waiting to be checked when no comments are waiting to be checked.</li>\n</ul>\n<h4>4.0.1</h4>\n<p><em>Release Date – 6 November 2017</em></p>\n<ul>\n<li>Fixed a bug that could prevent some users from connecting Akismet via their Jetpack connection.</li>\n<li>Ensured that any pending Akismet-related events are unscheduled if the plugin is deactivated.</li>\n<li>Allow some JavaScript to be run asynchronously to avoid affecting page render speeds.</li>\n</ul>\n<h4>4.0</h4>\n<p><em>Release Date – 19 September 2017</em></p>\n<ul>\n<li>Added REST API endpoints for configuring Akismet and retrieving stats.</li>\n<li>Increased the minimum supported WordPress version to 4.0.</li>\n<li>Added compatibility with comments submitted via the REST API.</li>\n<li>Improved the progress indicator on the “Check for Spam” button.</li>\n</ul>\n<h4>3.3.4</h4>\n<p><em>Release Date – 3 August 2017</em></p>\n<ul>\n<li>Disabled Akismet’s debug log output by default unless AKISMET_DEBUG is defined.</li>\n<li>URL previews now begin preloading when the mouse moves near them in the comments section of wp-admin.</li>\n<li>When a comment is caught by the Comment Blacklist, Akismet will always allow it to stay in the trash even if it is spam as well.</li>\n<li>Fixed a bug that was preventing an error from being shown when a site can’t reach Akismet’s servers.</li>\n</ul>\n<h4>3.3.3</h4>\n<p><em>Release Date – 13 July 2017</em></p>\n<ul>\n<li>Reduced amount of bandwidth used by the URL Preview feature.</li>\n<li>Improved the admin UI when the API key is manually pre-defined for the site.</li>\n<li>Removed a workaround for WordPress installations older than 3.3 that will improve Akismet’s compatibility with other plugins.</li>\n<li>The number of spam blocked that is displayed on the WordPress dashboard will now be more accurate and updated more frequently.</li>\n<li>Fixed a bug in the Akismet widget that could cause PHP warnings.</li>\n</ul>\n<h4>3.3.2</h4>\n<p><em>Release Date – 10 May 2017</em></p>\n<ul>\n<li>Fixed a bug causing JavaScript errors in some browsers.</li>\n</ul>\n<h4>3.3.1</h4>\n<p><em>Release Date – 2 May 2017</em></p>\n<ul>\n<li>Improve performance by only requesting the akismet_comment_nonce option when absolutely necessary.</li>\n<li>Fixed two bugs that could cause PHP warnings.</li>\n<li>Fixed a bug that was preventing the “Remove author URL” feature from working after a comment was edited using “Quick Edit.”</li>\n<li>Fixed a bug that was preventing the URL preview feature from working after a comment was edited using “Quick Edit.”</li>\n</ul>\n<h4>3.3</h4>\n<p><em>Release Date – 23 February 2017</em></p>\n<ul>\n<li>Updated the Akismet admin pages with a new clean design.</li>\n<li>Fixed bugs preventing the <code>akismet_add_comment_nonce</code> and <code>akismet_update_alert</code> wrapper functions from working properly.</li>\n<li>Fixed bug preventing the loading indicator from appearing when re-checking all comments for spam.</li>\n<li>Added a progress indicator to the “Check for Spam” button.</li>\n<li>Added a success message after manually rechecking the Pending queue for spam.</li>\n</ul>\n<h4>3.2</h4>\n<p><em>Release Date – 6 September 2016</em></p>\n<ul>\n<li>Added a WP-CLI module. You can now check comments and recheck the moderation queue from the command line.</li>\n<li>Stopped using the deprecated jQuery function <code>.live()</code>.</li>\n<li>Fixed a bug in <code>remove_comment_author_url()</code> and <code>add_comment_author_url()</code> that could generate PHP notices.</li>\n<li>Fixed a bug that could cause an infinite loop for sites with very very very large comment IDs.</li>\n<li>Fixed a bug that could cause the Akismet widget title to be blank.</li>\n</ul>\n<h4>3.1.11</h4>\n<p><em>Release Date – 12 May 2016</em></p>\n<ul>\n<li>Fixed a bug that could cause the “Check for Spam” button to skip some comments.</li>\n<li>Fixed a bug that could prevent some spam submissions from being sent to Akismet.</li>\n<li>Updated all links to use https:// when possible.</li>\n<li>Disabled Akismet debug logging unless WP_DEBUG and WP_DEBUG_LOG are both enabled.</li>\n</ul>\n<h4>3.1.10</h4>\n<p><em>Release Date – 1 April 2016</em></p>\n<ul>\n<li>Fixed a bug that could cause comments caught as spam to be placed in the Pending queue.</li>\n<li>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.</li>\n<li>Fixed a bug that could have caused avoidable PHP warnings in the error log.</li>\n</ul>\n<h4>3.1.9</h4>\n<p><em>Release Date – 28 March 2016</em></p>\n<ul>\n<li>Add compatibility with Jetpack so that Jetpack can automatically configure Akismet settings when appropriate.</li>\n<li>Fixed a bug preventing some comment data from being sent to Akismet.</li>\n</ul>\n<h4>3.1.8</h4>\n<p><em>Release Date – 4 March 2016</em></p>\n<ul>\n<li>Fixed a bug preventing Akismet from being used with some plugins that rewrite admin URLs.</li>\n<li>Reduced the amount of bandwidth used on Akismet API calls</li>\n<li>Reduced the amount of space Akismet uses in the database</li>\n<li>Fixed a bug that could cause comments caught as spam to be placed in the Pending queue.</li>\n</ul>\n<h4>3.1.7</h4>\n<p><em>Release Date – 4 January 2016</em></p>\n<ul>\n<li>Added documentation for the ‘akismet_comment_nonce’ filter.</li>\n<li>The post-install activation button is now accessible to screen readers and keyboard-only users.</li>\n<li>Fixed a bug that was preventing the “Remove author URL” feature from working in WordPress 4.4</li>\n</ul>\n<h4>3.1.6</h4>\n<p><em>Release Date – 14 December 2015</em></p>\n<ul>\n<li>Improve the notices shown after activating Akismet.</li>\n<li>Update some strings to allow for the proper plural forms in all languages.</li>\n</ul>\n<h4>3.1.5</h4>\n<p><em>Release Date – 13 October 2015</em></p>\n<ul>\n<li>Closes a potential XSS vulnerability.</li>\n</ul>\n<h4>3.1.4</h4>\n<p><em>Release Date – 24 September 2015</em></p>\n<ul>\n<li>Fixed a bug that was preventing some users from automatically connecting using Jetpack if they didn’t have a current Akismet subscription.</li>\n<li>Fixed a bug that could cause comments caught as spam to be placed in the Pending queue.</li>\n<li>Error messages and instructions have been simplified to be more understandable.</li>\n<li>Link previews are enabled for all links inside comments, not just the author’s website link.</li>\n</ul>\n<h4>3.1.3</h4>\n<p><em>Release Date – 6 July 2015</em></p>\n<ul>\n<li>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.</li>\n</ul>\n<h4>3.1.2</h4>\n<p><em>Release Date – 7 June 2015</em></p>\n<ul>\n<li>Reduced the amount of space Akismet uses in the commentmeta table.</li>\n<li>Fixed a bug where some comments with quotes in the author name weren’t getting history entries</li>\n<li>Pre-emptive security improvements to ensure that the Akismet plugin can’t be used by attackers to compromise a WordPress installation.</li>\n<li>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.</li>\n<li>When deactivating the plugin, notify the Akismet API so the site can be marked as inactive.</li>\n<li>Clearer error messages.</li>\n</ul>\n<h4>3.1.1</h4>\n<p><em>Release Date – 17th March, 2015</em></p>\n<ul>\n<li>Improvements to the “Remove comment author URL” JavaScript</li>\n<li>Include the pingback pre-check from the 2.6 branch.</li>\n</ul>\n<h4>3.1</h4>\n<p><em>Release Date – 11th March, 2015</em></p>\n<ul>\n<li>Use HTTPS by default for all requests to Akismet.</li>\n<li>Fix for a situation where Akismet might strip HTML from a comment.</li>\n</ul>\n<h4>3.0.4</h4>\n<p><em>Release Date – 11th December, 2014</em></p>\n<ul>\n<li>Fix to make .htaccess compatible with Apache 2.4.</li>\n<li>Fix to allow removal of https author URLs.</li>\n<li>Fix to avoid stripping part of the author URL when removing and re-adding.</li>\n<li>Removed the “Check for Spam” button from the “Trash” and “Approved” queues, where it would have no effect.</li>\n<li>Allow automatic API key configuration when Jetpack is installed and connected to a WordPress.com account</li>\n</ul>\n<h4>3.0.3</h4>\n<p><em>Release Date – 3rd November, 2014</em></p>\n<ul>\n<li>Fix for sending the wrong data to delete_comment action that could have prevented old spam comments from being deleted.</li>\n<li>Added a filter to disable logging of Akismet debugging information.</li>\n<li>Added a filter for the maximum comment age when deleting old spam comments.</li>\n<li>Added a filter for the number per batch when deleting old spam comments.</li>\n<li>Removed the “Check for Spam” button from the Spam folder.</li>\n</ul>\n<h4>3.0.2</h4>\n<p><em>Release Date – 18th August, 2014</em></p>\n<ul>\n<li>Performance improvements.</li>\n<li>Fixed a bug that could truncate the comment data being sent to Akismet for checking.</li>\n</ul>\n<h4>3.0.1</h4>\n<p><em>Release Date – 9th July, 2014</em></p>\n<ul>\n<li>Removed dependency on PHP’s fsockopen function</li>\n<li>Fix spam/ham reports to work when reported outside of the WP dashboard, e.g., from Notifications or the WP app</li>\n<li>Remove jQuery dependency for comment form JavaScript</li>\n<li>Remove unnecessary data from some Akismet comment meta</li>\n<li>Suspended keys will now result in all comments being put in moderation, not spam.</li>\n</ul>\n<h4>3.0.0</h4>\n<p><em>Release Date – 15th April, 2014</em></p>\n<ul>\n<li>Move Akismet to Settings menu</li>\n<li>Drop Akismet Stats menu</li>\n<li>Add stats snapshot to Akismet settings</li>\n<li>Add Akismet subscription details and status to Akismet settings</li>\n<li>Add contextual help for each page</li>\n<li>Improve Akismet setup to use Jetpack to automate plugin setup</li>\n<li>Fix “Check for Spam” to use AJAX to avoid page timing out</li>\n<li>Fix Akismet settings page to be responsive</li>\n<li>Drop legacy code</li>\n<li>Tidy up CSS and Javascript</li>\n<li>Replace the old discard setting with a new “discard pervasive spam” feature.</li>\n</ul>\n<h4>2.6.0</h4>\n<p><em>Release Date – 18th March, 2014</em></p>\n<ul>\n<li>Add ajax paging to the check for spam button to handle large volumes of comments</li>\n<li>Optimize javascript and add localization support </li>\n<li>Fix bug in link to spam comments from right now dashboard widget</li>\n<li>Fix bug with deleting old comments to avoid timeouts dealing with large volumes of comments</li>\n<li>Include X-Pingback-Forwarded-For header in outbound WordPress pingback verifications</li>\n<li>Add pre-check for pingbacks, to stop spam before an outbound verification request is made</li>\n</ul>\n<h4>2.5.9</h4>\n<p><em>Release Date – 1st August, 2013</em></p>\n<ul>\n<li>Update ‘Already have a key’ link to redirect page rather than depend on javascript</li>\n<li>Fix some non-translatable strings to be translatable</li>\n<li>Update Activation banner in plugins page to redirect user to Akismet config page</li>\n</ul>\n<h4>2.5.8</h4>\n<p><em>Release Date – 20th January, 2013</em></p>\n<ul>\n<li>Simplify the activation process for new users</li>\n<li>Remove the reporter_ip parameter</li>\n<li>Minor preventative security improvements</li>\n</ul>\n<h4>2.5.7</h4>\n<p><em>Release Date – 13th December, 2012</em></p>\n<ul>\n<li>FireFox Stats iframe preview bug</li>\n<li>Fix mshots preview when using https</li>\n<li>Add .htaccess to block direct access to files</li>\n<li>Prevent some PHP notices</li>\n<li>Fix Check For Spam return location when referrer is empty</li>\n<li>Fix Settings links for network admins</li>\n<li>Fix prepare() warnings in WP 3.5</li>\n</ul>\n<h4>2.5.6</h4>\n<p><em>Release Date – 26th April, 2012</em></p>\n<ul>\n<li>Prevent retry scheduling problems on sites where wp_cron is misbehaving</li>\n<li>Preload mshot previews</li>\n<li>Modernize the widget code</li>\n<li>Fix a bug where comments were not held for moderation during an error condition</li>\n<li>Improve the UX and display when comments are temporarily held due to an error</li>\n<li>Make the Check For Spam button force a retry when comments are held due to an error</li>\n<li>Handle errors caused by an invalid key</li>\n<li>Don’t retry comments that are too old</li>\n<li>Improve error messages when verifying an API key</li>\n</ul>\n<h4>2.5.5</h4>\n<p><em>Release Date – 11th January, 2012</em></p>\n<ul>\n<li>Add nonce check for comment author URL remove action</li>\n<li>Fix the settings link</li>\n</ul>\n<h4>2.5.4</h4>\n<p><em>Release Date – 5th January, 2012</em></p>\n<ul>\n<li>Limit Akismet CSS and Javascript loading in wp-admin to just the pages that need it</li>\n<li>Added author URL quick removal functionality</li>\n<li>Added mShot preview on Author URL hover</li>\n<li>Added empty index.php to prevent directory listing</li>\n<li>Move wp-admin menu items under Jetpack, if it is installed</li>\n<li>Purge old Akismet comment meta data, default of 15 days</li>\n</ul>\n<h4>2.5.3</h4>\n<p><em>Release Date – 8th Febuary, 2011</em></p>\n<ul>\n<li>Specify the license is GPL v2 or later</li>\n<li>Fix a bug that could result in orphaned commentmeta entries</li>\n<li>Include hotfix for WordPress 3.0.5 filter issue</li>\n</ul>\n<h4>2.5.2</h4>\n<p><em>Release Date – 14th January, 2011</em></p>\n<ul>\n<li>Properly format the comment count for author counts</li>\n<li>Look for super admins on multisite installs when looking up user roles</li>\n<li>Increase the HTTP request timeout</li>\n<li>Removed padding for author approved count</li>\n<li>Fix typo in function name</li>\n<li>Set Akismet stats iframe height to fixed 2500px. Better to have one tall scroll bar than two side by side.</li>\n</ul>\n<h4>2.5.1</h4>\n<p><em>Release Date – 17th December, 2010</em></p>\n<ul>\n<li>Fix a bug that caused the “Auto delete” option to fail to discard comments correctly</li>\n<li>Remove the comment nonce form field from the ‘Akismet Configuration’ page in favor of using a filter, akismet_comment_nonce</li>\n<li>Fixed padding bug in “author” column of posts screen</li>\n<li>Added margin-top to “cleared by …” badges on dashboard</li>\n<li>Fix possible error when calling akismet_cron_recheck()</li>\n<li>Fix more PHP warnings</li>\n<li>Clean up XHTML warnings for comment nonce</li>\n<li>Fix for possible condition where scheduled comment re-checks could get stuck</li>\n<li>Clean up the comment meta details after deleting a comment</li>\n<li>Only show the status badge if the comment status has been changed by someone/something other than Akismet</li>\n<li>Show a ‘History’ link in the row-actions</li>\n<li>Translation fixes</li>\n<li>Reduced font-size on author name</li>\n<li>Moved “flagged by…” notification to top right corner of comment container and removed heavy styling</li>\n<li>Hid “flagged by…” notification while on dashboard</li>\n</ul>\n<h4>2.5.0</h4>\n<p><em>Release Date – 7th December, 2010</em></p>\n<ul>\n<li>Track comment actions under ‘Akismet Status’ on the edit comment screen</li>\n<li>Fix a few remaining deprecated function calls ( props Mike Glendinning ) </li>\n<li>Use HTTPS for the stats IFRAME when wp-admin is using HTTPS</li>\n<li>Use the WordPress HTTP class if available</li>\n<li>Move the admin UI code to a separate file, only loaded when needed</li>\n<li>Add cron retry feature, to replace the old connectivity check</li>\n<li>Display Akismet status badge beside each comment</li>\n<li>Record history for each comment, and display it on the edit page</li>\n<li>Record the complete comment as originally submitted in comment_meta, to use when reporting spam and ham</li>\n<li>Highlight links in comment content</li>\n<li>New option, “Show the number of comments you’ve approved beside each comment author.”</li>\n<li>New option, “Use a nonce on the comment form.”</li>\n</ul>\n<h4>2.4.0</h4>\n<p><em>Release Date – 23rd August, 2010</em></p>\n<ul>\n<li>Spell out that the license is GPLv2</li>\n<li>Fix PHP warnings</li>\n<li>Fix WordPress deprecated function calls</li>\n<li>Fire the delete_comment action when deleting comments</li>\n<li>Move code specific for older WP versions to legacy.php</li>\n<li>General code clean up</li>\n</ul>\n<h4>2.3.0</h4>\n<p><em>Release Date – 5th June, 2010</em></p>\n<ul>\n<li>Fix “Are you sure” nonce message on config screen in WPMU</li>\n<li>Fix XHTML compliance issue in sidebar widget</li>\n<li>Change author link; remove some old references to WordPress.com accounts</li>\n<li>Localize the widget title (core ticket #13879)</li>\n</ul>\n<h4>2.2.9</h4>\n<p><em>Release Date – 2nd June, 2010</em></p>\n<ul>\n<li>Eliminate a potential conflict with some plugins that may cause spurious reports</li>\n</ul>\n<h4>2.2.8</h4>\n<p><em>Release Date – 27th May, 2010</em></p>\n<ul>\n<li>Fix bug in initial comment check for ipv6 addresses</li>\n<li>Report comments as ham when they are moved from spam to moderation</li>\n<li>Report comments as ham when clicking undo after spam</li>\n<li>Use transition_comment_status action when available instead of older actions for spam/ham submissions</li>\n<li>Better diagnostic messages when PHP network functions are unavailable</li>\n<li>Better handling of comments by logged-in users</li>\n</ul>\n<h4>2.2.7</h4>\n<p><em>Release Date – 17th December, 2009</em></p>\n<ul>\n<li>Add a new AKISMET_VERSION constant</li>\n<li>Reduce the possibility of over-counting spam when another spam filter plugin is in use</li>\n<li>Disable the connectivity check when the API key is hard-coded for WPMU</li>\n</ul>\n<h4>2.2.6</h4>\n<p><em>Release Date – 20th July, 2009</em></p>\n<ul>\n<li>Fix a global warning introduced in 2.2.5</li>\n<li>Add changelog and additional readme.txt tags</li>\n<li>Fix an array conversion warning in some versions of PHP</li>\n<li>Support a new WPCOM_API_KEY constant for easier use with WordPress MU</li>\n</ul>\n<h4>2.2.5</h4>\n<p><em>Release Date – 13th July, 2009</em></p>\n<ul>\n<li>Include a new Server Connectivity diagnostic check, to detect problems caused by firewalls</li>\n</ul>\n<h4>2.2.4</h4>\n<p><em>Release Date – 3rd June, 2009</em></p>\n<ul>\n<li>Fixed a key problem affecting the stats feature in WordPress MU</li>\n<li>Provide additional blog information in Akismet API calls</li>\n</ul>\n<p><!--section=faq--></p>\n<dl>\n<dt>Installation Instructions</dt>\n<dd>\n<p>Upload the Akismet plugin to your blog, Activate it, then enter your <a href=\"https://akismet.com/get/\" rel=\"nofollow\">Akismet.com API key</a>.</p>\n<p>1, 2, 3: You’re done!</p>\n</dd>\n</dl>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://wordpress.org/plugins/akismet/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"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:\"\";}}}}}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:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:24:\"Jetpack by WordPress.com\";s:7:\"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:\"https://wordpress.org/plugins/jetpack/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://wordpress.org/plugins/jetpack/#comments\";s: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, 20 Jan 2011 02:21: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:41:\"https://wordpress.org/plugins-wp/jetpack/\";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:112:\"The one plugin you need for stats, related posts, search engine optimization, social sharing, protection,…\";s: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:\"Automattic\";s: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:24075:\"<p><!--section=description--></p>\n<p>Keep any WordPress site secure, increase traffic, and engage your readers.</p>\n<h4>Traffic and SEO Tools</h4>\n<p>Traffic is the lifeblood of any website. Jetpack includes:</p>\n<ul>\n<li>[free] Site stats and analytics</li>\n<li>[free] Automatic sharing on Facebook, Twitter, LinkedIn, Tumblr, Reddit, and WhatsApp</li>\n<li>[free] Related posts</li>\n<li>[paid] Search engine optimization tools for Google, Bing, Twitter, Facebook, and WordPress.com</li>\n<li>[paid] Advertising program that includes the best of AdSense, Facebook Ads, AOL, Amazon, Google AdX, and Yahoo</li>\n</ul>\n<h4>Security and Backup Services</h4>\n<p>Stop worrying about data loss, downtime, and hacking. Jetpack provides:</p>\n<ul>\n<li>[free] Brute force attack protection</li>\n<li>[free] Downtime and uptime monitoring</li>\n<li>[free] Secured logins and two-factor authentication</li>\n<li>[paid] Malware scanning, code scanning, and threat resolution</li>\n<li>[paid] Site backups, restores, and migrations</li>\n</ul>\n<h4>Content Creation</h4>\n<p>Add rich, beautifully-presented media — no graphic design expertise necessary:</p>\n<ul>\n<li>[free] A high-speed CDN for your images</li>\n<li>[free] Carousels, slideshows, and tiled galleries</li>\n<li>[free] Simple embeds from YouTube, Google Documents, Spotify and more</li>\n<li>[free] Sidebar customization including Facebook, Twitter, and RSS feeds</li>\n<li>[free] Extra sidebar widgets including blog stats, calendar, and author widgets</li>\n<li>[paid] High-speed, ad-free, and high-definition video hosting</li>\n</ul>\n<h4>Discussion and Community</h4>\n<p>Create a connection with your readers and keep them coming back to your site with:</p>\n<ul>\n<li>[free] Email subscriptions</li>\n<li>[free] Comment login with Facebook, Twitter, and Google</li>\n<li>[free] Fully-customizable contact forms</li>\n<li>[free] Infinite scroll for your posts</li>\n</ul>\n<h4>Expert Support</h4>\n<p>We have an entire team of Happiness Engineers ready to help you. Ask your questions in the support forum, or <a href=\"https://jetpack.com/contact-support\" rel=\"nofollow\">contact us directly</a>.</p>\n<h4>Paid Services</h4>\n<p>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 <a href=\"https://jetpack.com/pricing?from=wporg\" rel=\"nofollow\">simple and affordable plans</a>.</p>\n<h4>Get Started</h4>\n<p>Installation is free, quick, and easy. Set up <a href=\"https://jetpack.com/install?from=wporg\" rel=\"nofollow\">the free plan</a> in minutes.</p>\n<p><!--section=installation--></p>\n<h4>Automated Installation</h4>\n<p>Installation is free, quick, and easy. <a href=\"https://jetpack.com/install?from=wporg\" rel=\"nofollow\">Install Jetpack from our site</a> in minutes.</p>\n<h4>Manual Alternatives</h4>\n<p>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 <a href=\"https://jetpack.com/support/installing-jetpack/\" rel=\"nofollow\">read our detailed instructions</a>.</p>\n<p><!--section=faq--></p>\n<dl>\n<dt>Installation Instructions</dt>\n<dd>\n<h4>Automated Installation</h4>\n<p>Installation is free, quick, and easy. <a href=\"https://jetpack.com/install?from=wporg\" rel=\"nofollow\">Install Jetpack from our site</a> in minutes.</p>\n<h4>Manual Alternatives</h4>\n<p>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 <a href=\"https://jetpack.com/support/installing-jetpack/\" rel=\"nofollow\">read our detailed instructions</a>.</p>\n</dd>\n<dt>Is Jetpack Free?</dt>\n<dd>\n<p>Yes! Jetpack’s core features are and always will be free.</p>\n<p>These include: <a href=\"https://jetpack.com/features/traffic/site-stats\" rel=\"nofollow\">site stats</a>, a <a href=\"https://jetpack.com/features/writing/content-delivery-network/\" rel=\"nofollow\">high-speed CDN</a> for images, <a href=\"https://jetpack.com/features/traffic/related-posts\" rel=\"nofollow\">related posts</a>, <a href=\"https://jetpack.com/features/security/downtime-monitoring\" rel=\"nofollow\">downtime monitoring</a>, brute force <a href=\"https://jetpack.com/features/security/brute-force-attack-protection\" rel=\"nofollow\">attack protection</a>, <a href=\"https://jetpack.com/features/traffic/automatic-publishing/\" rel=\"nofollow\">automated sharing</a> to social networks, <a href=\"https://jetpack.com/features/writing/sidebar-customization/\" rel=\"nofollow\">sidebar customization</a>, and many more.</p>\n</dd>\n<dt>Should I purchase a paid plan?</dt>\n<dd>\n<p>Jetpack’s paid services include automated backups, security scanning, spam filtering, video hosting, site monetization, SEO tools, and priority support.</p>\n<p>If you’re interested in learning more about the extra layers of protection and advanced tools available, learn more about our <a href=\"https://jetpack.com/pricing?from=wporg\" rel=\"nofollow\">paid plans</a>.</p>\n</dd>\n<dt>Why do I need a WordPress.com account?</dt>\n<dd>\n<p>Since Jetpack and its services are provided and hosted by WordPress.com, a WordPress.com account is required for Jetpack to function.</p>\n</dd>\n<dt>I already have a WordPress account, but Jetpack isn’t working. What’s going on?</dt>\n<dd>\n<p>A WordPress.com account is different from the account you use to log into your self-hosted WordPress. If you can log into <a href=\"https://wordpress.com\" rel=\"nofollow\">WordPress.com</a>, then you already have a WordPress.com account. If you can’t, you can easily create one <a href=\"https://jetpack.com/install?from=wporg\" rel=\"nofollow\">during installation</a>.</p>\n</dd>\n<dt>How do I view my stats?</dt>\n<dd>\n<p>Once you’ve installed Jetpack your stats will be available on <a href=\"https://wordpress.com/stats\" rel=\"nofollow\">WordPress.com/Stats</a>, on the official <a href=\"https://apps.wordpress.com/mobile/\" rel=\"nofollow\">WordPress mobile apps</a>, and on your Jetpack dashboard.</p>\n</dd>\n<dt>How do I contribute to Jetpack?</dt>\n<dd>\n<p>There are opportunities for developers at all levels to contribute. <a href=\"https://jetpack.com/contribute\" rel=\"nofollow\">Learn more about contributing to Jetpack</a> or consider <a href=\"https://jetpack.com/beta\" rel=\"nofollow\">joining our beta program</a>.</p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<h4>5.7</h4>\n<ul>\n<li>Release date: January 2, 2018</li>\n<li>Release post: https://wp.me/p1moTy-6FR</li>\n</ul>\n<p><strong>Enhancements</strong></p>\n<ul>\n<li>Added ability to create revisions of Portfolio Projects.</li>\n<li>Users hosting their sites with our Pressable partner who have Rewind access can now jump from the new Activity card in the Jetpack dashboard to the Activity Log in WordPress.com and restore or download backups for the site.</li>\n<li>Comments: Edit links for comments in the frontend can redirect to calypso if the Jetpack option <code>edit_links_calypso_redirect</code> is enabled.</li>\n<li>Protect: Updated the styling of the Protect page for recovering access to your site when you’re locked out of it.</li>\n<li>Search: Improved the UI for customizing the Search widget.</li>\n</ul>\n<p><strong>Improved compatibility</strong></p>\n<ul>\n<li>Comments: Updated our filtering behavior for Jetpack comments so other plugins appending html to the comments section are able to do it instead of being filtered out by Jetpack.</li>\n<li>Widgets: We updated Goodreads URLs to support https schema.</li>\n<li>Masterbar: We now hide the Masterbar settings card in Jetpack’s Admin Page for sites that are set to always show the Masterbar.</li>\n<li>Lazy Images: Added a callback for processing image attributes array when attempting to lazy load images are loaded via <code>wp_get_attachment_image</code>.</li>\n<li>Search: Added hooks to the search filters widget so that other plugins/themes can hook in and change its output.</li>\n</ul>\n<p><strong>Bug fixes</strong></p>\n<ul>\n<li>REST API: Added a check for avoiding a fatal error when attempting to include Akismet class files in case the Akismet plugin files are present but the permissions on the files there are set to be not readable</li>\n<li>Markdown: Fixed bug where code inside shortcodes wasn’t correctly restored from the hash.</li>\n<li>Search: Fixed the link that acts as a month and year filter removal toggle.</li>\n</ul>\n<h4>5.6.1</h4>\n<ul>\n<li>Release date: December 14, 2017</li>\n<li>\n<p>Release post: https://wp.me/p1moTy-6Jk</p>\n</li>\n<li>\n<p>Contact Forms: Hardened security in Contact Form processing.</p>\n</li>\n<li>Sharing: Bumped the character limit to 280 when sharing a post to Twitter.</li>\n<li>Widget Visibility: Fixed a bug that disabled “saving” the widget when removing a Widget Visibility rule.</li>\n</ul>\n<h4>5.6</h4>\n<ul>\n<li>Release date: December 5, 2017</li>\n<li>Release post: https://wp.me/p1moTy-6zt</li>\n</ul>\n<p><strong>Major Enhancements</strong><br />\n* Google Analytics: Add support for universal analytics for WooCommerce.<br />\n* Performance: minify all JavaScript files used in the plugin.<br />\n* Performance: add new Lazy Images module.<br />\n* Protect: add new mechanism allowing you to send yourself an email with a link to the form when you are locked out of your site.</p>\n<p><strong>Enhancements</strong><br />\n* Custom CSS: add new set of font properties that can be used in the CSS editor.<br />\n* Photon: do not remove <code>width</code> and <code>height</code> attributes from image tags when known.<br />\n* Sitemaps: add CLI commands to purge and built the sitemaps.<br />\n* Sitemaps: only display the reporter log success messages if <code>JETPACK_DEV_DEBUG</code> is defined.<br />\n* WordPress.com API: add new endpoints to allow for better comment management in third party interfaces like WordPress.com.<br />\n* WordPress.com Toolbar: prevent dns prefetching for logged out users.</p>\n<p><strong>Improved compatibility</strong><br />\n* Stats: remove function deprecated in PHP 7.2.</p>\n<p><strong>Bug fixes</strong><br />\n* Comment Likes: make sure Like text is properly translated.<br />\n* General: only load stats code when necessary.<br />\n* Related Posts: allow site owners to exclude multiple blog posts from the list of Related Posts.<br />\n* Sharing: remove inline JavaScript used in the email sharing form.<br />\n* Search: Maintain ordering of the search filters in the widget.<br />\n* Sync: avoid PHP notices during the synchronization process.<br />\n* WordPress.com Toolbar: avoid broken link when using the sign out button.</p>\n<h4>5.5.1</h4>\n<ul>\n<li>Release date: November 21, 2017</li>\n<li>Release post: https://wp.me/p1moTy-6Bd</li>\n</ul>\n<p><strong>Bug fixes</strong><br />\n* In Jetpack 5.5 we made some changes that created errors if you were using other plugins that added custom links to the Plugins menu. This is now fixed.<br />\n* We have fixed a problem that did not allow to upload plugins using API requests.<br />\n* Open Graph links in post headers are no longer invalid in some special cases.<br />\n* We fixed warnings happening when syncing users with WordPress.com.<br />\n* We updated the way the Google+ button is loaded to match changes made by Google, to ensure the button is always displayed properly.<br />\n* We fixed conflicts between Jetpack’s Responsive Videos and the updates made to Video players in WordPress 4.9.<br />\n* We updated Publicize’s message length to match Twitter’s new 280 character limit.</p>\n<h4>5.5</h4>\n<ul>\n<li>Release date: November 7, 2017</li>\n<li>Release post: https://wp.me/p1moTy-6rk</li>\n</ul>\n<p><strong>Major Enhancements</strong></p>\n<ul>\n<li>Jetpack is now fully compatible with WordPress’s <a href=\"https://make.wordpress.org/core/2017/09/25/introducing-the-gallery-widget/\" rel=\"nofollow\">new Gallery Widget</a>. Your old Gallery widgets powered by Jetpack will switch to the new Widget when you update to WordPress 4.9.</li>\n</ul>\n<p><strong>Enhancements</strong><br />\n* We have improved the performance when loading the Jetpack Settings in the dashboard by optimizing the number of calls made when loading the page.<br />\n* We have updated the plugin to do a better job of cleaning up after itself whenever you decide to remove Jetpack from your site.<br />\n* We made some changes to reduce the number of connection issues that may happen on a site when switching from HTTP to HTTPs.<br />\n* We made some performance improvements to the Jetpack dashboard interface, to make sure your options and settings are loaded faster there.<br />\n* Error messages are also better in the Jetpack Dashboard; whenever you can’t update settings, Jetpack will provide you with more information about why.<br />\n* We improved the Jetpack update process to make sure updating Jetpack does not stress your database during it, even on high-traffic sites.<br />\n* The next version of WordPress, 4.9, will be released very soon and will include <a href=\"https://make.wordpress.org/core/2017/10/22/code-editing-improvements-in-wordpress-4-9/\" rel=\"nofollow\">a lot of changes to its code editors</a>. Jetpack’s Custom CSS will be fully compatible with the new editors and their syntax highlighting feature.<br />\n* We also made changes to make sure Jetpack was fully compatible with the <a href=\"https://make.wordpress.org/core/2017/10/15/improvements-for-roles-and-capabilities-in-4-9/\" rel=\"nofollow\">role and capability changes</a> in WordPress 4.9.<br />\n* We have made some performance improvements to the Carousel feature.<br />\n* Contact Form: do not process shortcodes in widgets when WordPress itself does, starting in 4.9.<br />\n* Contact Form: we have improved the “website” field to display better error messages when you don’t supply a URL. We have also improved the look of the date picker for the date field.<br />\n* Contact Form: avoid duplicate slashes when loading editor style.<br />\n* Masterbar: update the “Plugins” menu item to match the updated design on WordPress.com.<br />\n* Open Graph: do not display images smaller than Facebook’s required size.<br />\n* Sharing: use Google’s minified libraries to improve performance when loading Google buttons.<br />\n* Sharing: update Open Graph Image tags appearing on the home page to offer better alternatives based on your site settings in Appearance > Customize.<br />\n* We improved the way sitemaps are built so they do not consume too much memory when they are generated.<br />\n* WP.me Shorlinks: those links will now always use HTTPS.<br />\n* Spellchecker: we improved the admin interface to make it more clear when adding ignored phrases and saving them.<br />\n* Subscriptions: we added a filter so third party developers can track comment subscription activations.<br />\n* Sync: synchronize plugin action links to add that information to WordPress.com.<br />\n* Sync: improvements to better track theme and widget changes.<br />\n* VideoPress: we removed Jetpack version locking for directly embedded VideoPress videos to ensure all users receive the newest version of the player.<br />\n* We added a new filter (<code>jetpack_google_translate_widget_layout</code>) to the Google Translate Widget to allow you to change its layout.<br />\n* WordPress.com REST API: improve comment management for all roles, including post authors.<br />\n* WordPress.com REST API: allow site owners to manage comments on attachment pages from WordPress.com.<br />\n* WordPress.com REST API: improve the response from the API when WordPress’ autoupdates are disabled.</p>\n<p><strong>Improved compatibility</strong><br />\n* You can now use Jetpack’s contact form and Yoast SEO’s Focus keywords on the same page without any issues in the editor.<br />\n* Top Posts Widget: avoid Fatal Errors when the widget is used on a site using WPML, and when a popular post cannot be found by WPML.<br />\n* Sync: add more Custom Post Types from third-party plugins to the list of things we do not synchronize with WordPress.com, to improve sync performance.<br />\n* Sharing: since <a href=\"https://make.wordpress.org/core/2017/11/02/press-this-in-4-9/\" rel=\"nofollow\">Press This is now a plugin and not part of WordPress itself</a>, we removed the Press This sharing button if you are not using the plugin.</p>\n<p><strong>Bug fixes</strong><br />\n* We now avoid displaying notices to user roles that cannot benefit or act based on the info in the notices.<br />\n* Gravatar Hovercards: avoid PHP Notices when the user info is an object.<br />\n* Infinite Scroll: avoid PHP notices when a site customizes galleries thanks to the <code>post_gallery</code> filter.<br />\n* Mailchimp: make sure subscription forms can still be embedded in posts and pages.<br />\n* Mailchimp: do not require the use of the shortcodes feature to use the Mailchimp widget.<br />\n* Mailchimp: fix issue where Mailchimp form code could not be added to the Mailchimp widget.<br />\n* Masterbar: avoid JavaScript errors by always loading jQuery.<br />\n* Post By Email: do not display any content in the email address field if no email address has ever been set before.<br />\n* Publicize: avoid errors when DOMDocument is not available.<br />\n* Publicize: we now hide the feature activation toggle if you are not allowed to manage Jetpack features.<br />\n* Search: make sure module cannot be activated when the site does not use a Plan.<br />\n* SEO Tools: do not output any custom meta tags if another SEO plugin is already active.<br />\n* Sharing: make sure Twitter Cards can be displayed even when a post does not include a title.<br />\n* Sharing: fix alignment of sharing buttons in the admin preview when using custom sharing buttons.<br />\n* Sitemaps: wait a minute before to generate sitemaps when the feature is activated, to avoid performance issues.<br />\n* Sync: avoid synchronization issues on Multisite networks using custom domains.<br />\n* Top Posts Widget: display the default title when it is set to empty.<br />\n* Milestone Widget: make sure the widget is displayed properly and can easily be translated into other languages.<br />\n* Verification Tools: avoid notices when saving changes on a Multisite network admin page.<br />\n* VideoPress: avoid missing file warning in the editor when using an RTL language.<br />\n* Upcoming events Widget: avoid PHP notices on sites using a custom timezone setting.<br />\n* WordPress.com REST API: avoid errors when installing plugins via the WordPress.com API.</p>\n<h4>5.4</h4>\n<ul>\n<li>Release date: October 3, 2017</li>\n<li>Release post: http://wp.me/p1moTy-67V</li>\n</ul>\n<p><strong>Major Enhancements</strong><br />\n* Multiple improvements to the connection process, to allow more people to use the Jetpack plugin, even on very specific server configurations.<br />\n* Add a new Welcome screen to guide site owners after they have purchased a Jetpack plan.</p>\n<p><strong>Enhancements</strong><br />\n* Add Schema.org markup to the Contact Info Widget.<br />\n* Add a new “Date” field to the Contact Form.<br />\n* Do not show any update notices when in <a href=\"http://jetpack.com/support/development-mode\" rel=\"nofollow\">development mode</a>.<br />\n* Improve our documentation to help contributors set up a unit testing environment.<br />\n* Avoid conflicts between Jetpack’s Infinite Scroll and other Infinite Scroll plugins.<br />\n* Improvements to the WordPress.com REST API to avoid issues when interacting with your site’s categories and tags on WordPress.com.<br />\n* Allow third party plugin and theme authors to add new menu items to the WordPress.com toolbar.<br />\n* Improve the Content Options panel displayed in the Customizer with certain themes.<br />\n* Add architecture for the Jetpack Search feature, available for Jetpack Professional users.<br />\n* Simple Payments: improve the display of the payment items when used on your site.<br />\n* Ensure a proper display of the Recipe shortcode on sites using an RTL language.<br />\n* Improve the display of the Facebook posts, images, and all other Facebook embeds in your posts.<br />\n* Synchronize the author information for all published posts.<br />\n* Record how Jetpack was discovered and activated to better understand how site owners first discover Jetpack.<br />\n* Improve the display and options offered with the Milestone Widget.</p>\n<p><strong>Bug fixes</strong><br />\n* We fixed layout issues appearing in the admin interface for IE11 users.<br />\n* Comment Form: avoid whitespace sometimes appearing below the form with some themes.<br />\n* Contact Form: avoid errors in the post editor on sites using RTL languages.<br />\n* Toolbar: always display the Toolbar when it’s active, regardless of other admin bar settings.<br />\n* Widget Visibility: make sure rules are correctly migrated from the old Jetpack image widget to the new WordPress Image Widget.<br />\n* Avoid errors showing that Jetpack is out of date on WordPress.com, when running a Multisite network.<br />\n* WP CLI: avoid warnings when using the <code>wp jetpack protect whitelist list</code> command to list the whitelisted IP addresses in the Protect feature.<br />\n* Avoid displaying raw HTML in the Stats Configuration screen.<br />\n* Comment edits are reflected properly in wordpress.com.</p>\n<h4>5.3</h4>\n<ul>\n<li>Release date: September 5, 2017</li>\n<li>Release post: http://wp.me/p1moTy-5Xv</li>\n</ul>\n<p><strong>Major Enhancements</strong><br />\n* Full PHP 7.1 compatibility.<br />\n* It’s now possible to preview your site within WordPress.com.</p>\n<p><strong>Enhancements</strong><br />\n* The Ads feature now gives you more options and control over the ads displayed on your site.<br />\n* Increased performance in the admin by cutting back on unnecessary requests.<br />\n* Loading comment avatars from Facebook and Twitter through a more secure https.<br />\n* Admin UI is much friendlier on initial activation when there are no stats to display.<br />\n* You’re now able to stop VideoPress from looping a video during autoplay through the shortcode.<br />\n* Made some optimizations to the Jetpack connection process which means connecting your site more is more reliable.<br />\n* The EU Cookie Law widget got some styling improvements and looks better in any theme.<br />\n* There’s a new Jetpack CLI command to allow testing of the Jetpack connection.<br />\n* Added the Likes and Monitor features to our recommended features list, making it easier to activate for new sites.<br />\n* Improvements made that makes sure we have the most up-to-date version of your site when managing from WordPress.com.<br />\n* Added a link to view your Comments in the WordPress.com toolbar.<br />\n* Lots of minor design improvements to the Jetpack admin area.<br />\n* We’ve found a few places where we were able to optimize the loading of css files.<br />\n* Removed the Omnisearch feature.</p>\n<p><strong>Bug fixes</strong><br />\n* Fixed compatibility issues with plugins using TinyMCE.<br />\n* Contact Form submission emails have been fixed for sites hosted on SiteGround.<br />\n* Updating WordPress.com themes will no longer have any problems.<br />\n* The Sitemaps feature will no longer error with posts/images with special characters in the title.<br />\n* There are no more conflicts with the ACF plugin when adding a new custom field.<br />\n* Fixed a bug that would cause some plugins to throw warnings with the Shortcode feature.<br />\n* We’re no longer loading a font on the front-end for the Likes feature, which will also have some performance benefits.<br />\n* The Jetpack admin UI had some bugs that were causing some features to not display the correct active status, which are squashed now.<br />\n* Cleaned up our markup to avoid XHTML validation errors.<br />\n* Brought back a filter for the Widget Visibility feature that was accidentally removed.<br />\n* Managing your comments and comment authors more reliable from WordPress.com.</p>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"https://wordpress.org/plugins/jetpack/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";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:\"\";}}}}}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:3:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"WordPress Importer\";s:7:\"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://wordpress.org/plugins/wordpress-importer/\";s: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, 20 May 2010 18:48: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Uncategorized\";s:7:\"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:52:\"https://wordpress.org/plugins-wp/wordpress-importer/\";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:101:\"Import posts, pages, comments, custom fields, categories, tags and more from a WordPress export file.\";s: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:\"Brian Colinger\";s: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:5307:\"<p><!--section=description--></p>\n<p>The WordPress Importer will import the following content from a WordPress export file:</p>\n<ul>\n<li>Posts, pages and other custom post types</li>\n<li>Comments</li>\n<li>Custom fields and post meta</li>\n<li>Categories, tags and terms from custom taxonomies</li>\n<li>Authors</li>\n</ul>\n<p>For further information and instructions please see the <a href=\"https://codex.wordpress.org/Importing_Content#WordPress\" rel=\"nofollow\">Codex page on Importing Content</a></p>\n<h3>Filters</h3>\n<p>The importer has a couple of filters to allow you to completely enable/block certain features:</p>\n<ul>\n<li><code>import_allow_create_users</code>: return false if you only want to allow mapping to existing users</li>\n<li><code>import_allow_fetch_attachments</code>: return false if you do not wish to allow importing and downloading of attachments</li>\n<li><code>import_attachment_size_limit</code>: return an integer value for the maximum file size in bytes to save (default is 0, which is unlimited)</li>\n</ul>\n<p>There are also a few actions available to hook into:</p>\n<ul>\n<li><code>import_start</code>: occurs after the export file has been uploaded and author import settings have been chosen</li>\n<li><code>import_end</code>: called after the last output from the importer</li>\n</ul>\n<p><!--section=installation--></p>\n<p>The quickest method for installing the importer is:</p>\n<ol>\n<li>Visit Tools -> Import in the WordPress dashboard</li>\n<li>Click on the WordPress link in the list of importers</li>\n<li>Click “Install Now”</li>\n<li>Finally click “Activate Plugin & Run Importer”</li>\n</ol>\n<p>If you would prefer to do things manually then follow these instructions:</p>\n<ol>\n<li>Upload the <code>wordpress-importer</code> folder to the <code>/wp-content/plugins/</code> directory</li>\n<li>Activate the plugin through the ‘Plugins’ menu in WordPress</li>\n<li>Go to the Tools -> Import screen, click on WordPress</li>\n</ol>\n<p><!--section=faq--></p>\n<dl>\n<dt>Installation Instructions</dt>\n<dd>\n<p>The quickest method for installing the importer is:</p>\n<ol>\n<li>Visit Tools -> Import in the WordPress dashboard</li>\n<li>Click on the WordPress link in the list of importers</li>\n<li>Click “Install Now”</li>\n<li>Finally click “Activate Plugin & Run Importer”</li>\n</ol>\n<p>If you would prefer to do things manually then follow these instructions:</p>\n<ol>\n<li>Upload the <code>wordpress-importer</code> folder to the <code>/wp-content/plugins/</code> directory</li>\n<li>Activate the plugin through the ‘Plugins’ menu in WordPress</li>\n<li>Go to the Tools -> Import screen, click on WordPress</li>\n</ol>\n</dd>\n<dt>Help! I’m getting out of memory errors or a blank screen.</dt>\n<dd>\n<p>If your exported file is very large, the import script may run into your host’s configured memory limit for PHP.</p>\n<p>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.</p>\n<p>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.</p>\n<p>— <a href=\"https://codex.wordpress.org/Importing_Content#Before_Importing\" rel=\"nofollow\">WordPress Codex: Importing Content</a></p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<h4>0.6.3</h4>\n<ul>\n<li>Add support for import term metadata.</li>\n<li>Fix bug that caused slashes to be stripped from imported content.</li>\n<li>Fix bug that caused characters to be stripped inside of CDATA in some cases.</li>\n<li>Fix PHP notices.</li>\n</ul>\n<h4>0.6.2</h4>\n<ul>\n<li>Add wp_import_existing_post filter. See: https://core.trac.wordpress.org/ticket/33721</li>\n</ul>\n<h4>0.6</h4>\n<ul>\n<li>Support for WXR 1.2 and multiple CDATA sections</li>\n<li>Post aren’t duplicates if their post_type’s are different</li>\n</ul>\n<h4>0.5.2</h4>\n<ul>\n<li>Double check that the uploaded export file exists before processing it. This prevents incorrect error messages when<br />\nan export file is uploaded to a server with bad permissions and WordPress 3.3 or 3.3.1 is being used.</li>\n</ul>\n<h4>0.5</h4>\n<ul>\n<li>Import comment meta (requires export from WordPress 3.2)</li>\n<li>Minor bugfixes and enhancements</li>\n</ul>\n<h4>0.4</h4>\n<ul>\n<li>Map comment user_id where possible</li>\n<li>Import attachments from <code>wp:attachment_url</code></li>\n<li>Upload attachments to correct directory</li>\n<li>Remap resized image URLs correctly</li>\n</ul>\n<h4>0.3</h4>\n<ul>\n<li>Use an XML Parser if possible</li>\n<li>Proper import support for nav menus</li>\n<li>… and much more, see <a href=\"https://core.trac.wordpress.org/ticket/15197\" rel=\"nofollow\">Trac ticket #15197</a></li>\n</ul>\n<h4>0.1</h4>\n<ul>\n<li>Initial release</li>\n</ul>\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:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"WooCommerce\";s:7:\"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:\"https://wordpress.org/plugins/woocommerce/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/plugins/woocommerce/#respond\";s: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, 27 Sep 2011 15:32: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"https://wordpress.org/plugins-wp/woocommerce/\";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:97:\"WooCommerce is a powerful, extendable eCommerce plugin that helps you sell anything. Beautifully.\";s: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:9:\"WooThemes\";s: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:31090:\"<p><!--section=description--></p>\n<p>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.</p>\n<p>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.</p>\n<iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'https://www.youtube.com/embed/1KahlicghaE?version=3&rel=1&fs=1&autohide=2&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe>\n<h4>Sell anything, anywhere</h4>\n<p>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.</p>\n<p>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.</p>\n<h4>Ship wherever you like</h4>\n<p>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.</p>\n<h4>Extensive payment options</h4>\n<p>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.</p>\n<h4>You control it all — forever</h4>\n<p>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.</p>\n<p>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.</p>\n<h4>Define your style with Storefront</h4>\n<p><a href=\"https://wordpress.org/themes/storefront/\" rel=\"nofollow\">Storefront</a> 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.</p>\n<p>Define your style even further by customizing Storefront to your liking or choosing from one of our several <a href=\"https://woocommerce.com/product-category/themes/storefront-child-theme-themes/\" rel=\"nofollow\">Storefront child themes</a>. It’s all up to you, and all open source.</p>\n<h4>Built with developers in mind</h4>\n<p>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).</p>\n<p>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.</p>\n<p>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.</p>\n<p>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.</p>\n<p>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.</p>\n<h4>Extensions galore</h4>\n<p>WordPress.org is home to some amazing extensions for WooCommerce, including:</p>\n<ul>\n<li><a href=\"https://wordpress.org/plugins/woocommerce-google-analytics-integration/\">Google Analytics</a></li>\n<li><a href=\"https://wordpress.org/plugins/woocommerce-delivery-notes/\">Delivery Notes</a></li>\n<li><a href=\"https://wordpress.org/plugins/woocommerce-pdf-invoices-packing-slips/\">PDF Invoices and Packing Slips</a></li>\n<li><a href=\"https://wordpress.org/plugins/affiliates-woocommerce-light/\">Affiliates Integration Light</a></li>\n<li><a href=\"https://wordpress.org/plugins/woocommerce-new-product-badge/\">New Product Badges</a></li>\n</ul>\n<p>Keen to see them all? Search WordPress.org for ‘WooCommerce’ to dive in.</p>\n<p>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:</p>\n<ul>\n<li><a href=\"https://woocommerce.com/products/woocommerce-subscriptions/\" rel=\"nofollow\">WooCommerce Subscriptions</a></li>\n<li><a href=\"https://woocommerce.com/products/woocommerce-memberships/\" rel=\"nofollow\">WooCommerce Memberships</a></li>\n<li><a href=\"https://woocommerce.com/products/woocommerce-bookings/\" rel=\"nofollow\">WooCommerce Bookings</a></li>\n<li><a href=\"https://woocommerce.com/products/dynamic-pricing/\" rel=\"nofollow\">Dynamic Pricing</a></li>\n<li><a href=\"https://woocommerce.com/products/table-rate-shipping/\" rel=\"nofollow\">Table Rate Shipping</a></li>\n<li><a href=\"https://woocommerce.com/products/product-csv-import-suite/\" rel=\"nofollow\">Product CSV Import Suite</a></li>\n</ul>\n<p>And there’s plenty more where they came from. Visit our <a href=\"https://woocommerce.com/product-category/woocommerce-extensions/\" rel=\"nofollow\">extensions page</a> to find out everything you’re capable of and all that’s possible with premium WooCommerce extensions.</p>\n<h4>Join our growing community</h4>\n<p>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!</p>\n<p>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 <a href=\"https://github.com/woocommerce/woocommerce\" rel=\"nofollow\">WooCommerce GitHub Repository</a> to find out how you can pitch in.</p>\n<p>Want to add a new language to WooCommerce? Swell! You can contribute via <a href=\"https://translate.wordpress.org/projects/wp-plugins/woocommerce\" rel=\"nofollow\">translate.wordpress.org</a>.</p>\n<p>And, finally, consider joining or spearheading a WooCommerce Meetup locally, more about those <a href=\"https://woocommerce.com/woocommerce/meetups/\" rel=\"nofollow\">here</a>.</p>\n<p><!--section=installation--></p>\n<h4>Minimum Requirements</h4>\n<ul>\n<li>PHP version 5.2.4 or greater (PHP 5.6 or greater is recommended)</li>\n<li>MySQL version 5.0 or greater (MySQL 5.6 or greater is recommended)</li>\n<li>Some payment gateways require fsockopen support (for IPN access)</li>\n<li>WordPress 4.4+</li>\n</ul>\n<p>Visit the <a href=\"https://docs.woocommerce.com/document/server-requirements/\" rel=\"nofollow\">WooCommerce server requirements documentation</a> for a detailed list of server requirements.</p>\n<h4>Automatic installation</h4>\n<p>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.</p>\n<p>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”.</p>\n<h4>Manual installation</h4>\n<p>The manual installation method involves downloading our eCommerce plugin and uploading it to your webserver via your favourite FTP application. The WordPress codex contains <a href=\"https://codex.wordpress.org/Managing_Plugins#Manual_Plugin_Installation\" rel=\"nofollow\">instructions on how to do this here</a>.</p>\n<h4>Updating</h4>\n<p>Automatic updates should work like a charm; as always though, ensure you backup your site just in case.</p>\n<p>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.</p>\n<h4>Dummy data</h4>\n<p>WooCommerce comes with some dummy data you can use to see how products look; either import dummy_data.xml via the <a href=\"https://wordpress.org/plugins/wordpress-importer/\">WordPress importer</a> or use our <a href=\"https://woocommerce.com/products/product-csv-import-suite/\" rel=\"nofollow\">CSV Import Suite plugin</a> to import dummy_data.csv and dummy_data_variations.csv.</p>\n<p><!--section=faq--></p>\n<dl>\n<dt>Installation Instructions</dt>\n<dd>\n<h4>Minimum Requirements</h4>\n<ul>\n<li>PHP version 5.2.4 or greater (PHP 5.6 or greater is recommended)</li>\n<li>MySQL version 5.0 or greater (MySQL 5.6 or greater is recommended)</li>\n<li>Some payment gateways require fsockopen support (for IPN access)</li>\n<li>WordPress 4.4+</li>\n</ul>\n<p>Visit the <a href=\"https://docs.woocommerce.com/document/server-requirements/\" rel=\"nofollow\">WooCommerce server requirements documentation</a> for a detailed list of server requirements.</p>\n<h4>Automatic installation</h4>\n<p>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.</p>\n<p>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”.</p>\n<h4>Manual installation</h4>\n<p>The manual installation method involves downloading our eCommerce plugin and uploading it to your webserver via your favourite FTP application. The WordPress codex contains <a href=\"https://codex.wordpress.org/Managing_Plugins#Manual_Plugin_Installation\" rel=\"nofollow\">instructions on how to do this here</a>.</p>\n<h4>Updating</h4>\n<p>Automatic updates should work like a charm; as always though, ensure you backup your site just in case.</p>\n<p>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.</p>\n<h4>Dummy data</h4>\n<p>WooCommerce comes with some dummy data you can use to see how products look; either import dummy_data.xml via the <a href=\"https://wordpress.org/plugins/wordpress-importer/\">WordPress importer</a> or use our <a href=\"https://woocommerce.com/products/product-csv-import-suite/\" rel=\"nofollow\">CSV Import Suite plugin</a> to import dummy_data.csv and dummy_data_variations.csv.</p>\n</dd>\n<dt>Where can I find WooCommerce documentation and user guides?</dt>\n<dd>\n<p>For help setting up and configuring WooCommerce please refer to our <a href=\"https://docs.woocommerce.com/documentation/plugins/woocommerce/getting-started/\" rel=\"nofollow\">user guide</a></p>\n<p>For extending or theming WooCommerce, see our <a href=\"https://docs.woocommerce.com/documentation/plugins/woocommerce/woocommerce-codex/\" rel=\"nofollow\">codex</a>.</p>\n</dd>\n<dt>Where can I get support or talk to other users?</dt>\n<dd>\n<p>If you get stuck, you can ask for help in the <a href=\"https://wordpress.org/support/plugin/woocommerce\" rel=\"nofollow\">WooCommerce Plugin Forum</a>.</p>\n<p>For help with premium extensions from WooCommerce.com, use <a href=\"https://woocommerce.com/my-account/tickets/\" rel=\"nofollow\">our helpdesk</a>.</p>\n</dd>\n<dt>Will WooCommerce work with my theme?</dt>\n<dd>\n<p>Yes; WooCommerce will work with any theme, but may require some styling to make it match nicely. Please see our <a href=\"https://docs.woocommerce.com/documentation/plugins/woocommerce/woocommerce-codex/\" rel=\"nofollow\">codex</a> for help. If you’re looking for a theme with built in WooCommerce integration we recommend <a href=\"https://woocommerce.com/storefront/\" rel=\"nofollow\">Storefront</a>.</p>\n</dd>\n<dt>Where can I request new features, eCommerce themes and extensions?</dt>\n<dd>\n<p>You can vote on and request new features and extensions in our <a href=\"http://ideas.woothemes.com/forums/133476-woocommerce\" rel=\"nofollow\">WooIdeas board</a></p>\n</dd>\n<dt>Where can I report bugs or contribute to the project?</dt>\n<dd>\n<p>Bugs can be reported either in our support forum or preferably on the <a href=\"https://github.com/woocommerce/woocommerce/issues\" rel=\"nofollow\">WooCommerce GitHub repository</a>.</p>\n</dd>\n<dt>Where can I find the REST API documentation?</dt>\n<dd>\n<p>You can find the documentation of our REST API on the <a href=\"https://woocommerce.github.io/woocommerce-rest-api-docs/\" rel=\"nofollow\">WooCommerce REST API Docs</a>.</p>\n</dd>\n<dt>WooCommerce is awesome! Can I contribute?</dt>\n<dd>\n<p>Yes you can! Join in on our <a href=\"http://github.com/woocommerce/woocommerce/\" rel=\"nofollow\">GitHub repository</a> <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<h4>3.2.6 – 2017-12-13</h4>\n<ul>\n<li>Fix – CSV Importer – Fix ID mapping to existing IDs.</li>\n<li>Fix – CSV Importer – Unslash header fields to avoid extra slashes.</li>\n<li>Fix – CSV Importer – Allow import and export of draft products.</li>\n<li>Fix – CSV Importer – Get global attribute ID only when is a global attribute.</li>\n<li>Fix – Remove URL fragment when appending geolocation hash.</li>\n<li>Fix – Additional cart rounding fixes so rounding before subtotal works again. Added more unit tests.</li>\n<li>Fix – Add BOM to exported report CSVs.</li>\n<li>Fix – is_visible should ensure product is is not trashed before returning true.</li>\n<li>Fix – Return packages with no rates back to the cart so the shipping calculator is displayed even when the current country is not shippable.</li>\n<li>Fix – Merge session and persistent carts when both exists after login.</li>\n<li>Fix – Remove “wc_error” query string after login. </li>\n<li>Fix – Allow woocommerce_form_field() have ‘custom_attributes’ equal 0.</li>\n<li>Fix – Bulk actions in status logs table.</li>\n<li>Fix – Exclude add-to-cart from pagination links.</li>\n<li>Fix – Updated $GLOBALS[‘post’] data in products shortcode to prevent theme conflicts.</li>\n<li>Fix – Only remove base taxes in cart totals class if item is taxable.</li>\n<li>Fix – REST API – Fixed date format in reports schema.</li>\n<li>Fix – REST API – Updated product categories image schema.</li>\n<li>Fix – REST API – UUse KSES for purchase_note like in admin.</li>\n<li>Fix – REST API – Filter passed images before processing so they can be unset via querystring.</li>\n<li>Tweak – Use protected instead of private methods to allow easy override in session handler.</li>\n<li>Tweak – wc_lostpassword_url should not be used before init – added warning.</li>\n<li>Localization – Update Japanese prefectures to include prefecture type.</li>\n</ul>\n<h4>3.2.5 – 2017-11-22</h4>\n<ul>\n<li>Fix – WordPress 4.9 – REST API – Updated schema, sanitization, and validation callbacks to support correct data types.</li>\n<li>Fix – WordPress 4.9 – Fix an issue saving variation attributes on new products and with attributes containing slashes.</li>\n<li>Fix – Save fee tax lines to new orders on checkout.</li>\n<li>Fix – Restore the post global after rendering product shortcodes.</li>\n<li>Fix – Fix product filtering when searching for a string including quote characters.</li>\n<li>Fix – Fix layered nav drop-downs containing unicode characters.</li>\n<li>Fix – Fix an edge case rounding bug with shipping taxes, and another with non-integer quantities.</li>\n<li>Fix – Set correct defaults when adding a new shipping class in admin.</li>\n</ul>\n<h4>3.2.4 – 2017-11-16</h4>\n<ul>\n<li>Fix – Cache IDs in shortcodes rather than query objects.</li>\n<li>Fix – Fix float rounding issues in cart with currencies like Bitcoin.</li>\n<li>Fix – Prevent slashes appearing in shipping fields and inside meta keys when using quotes.</li>\n<li>Fix – Check valid data when filtering <code>wp_nav_menu_objects</code> to prevent conflicts.</li>\n<li>Fix – <code>get_total_ex_tax</code> should exclude fee taxes.</li>\n<li>Fix – Fix orders count in tax reports.</li>\n<li>Fix – Allow removing coupons from the cart, even if coupons are disabled.</li>\n<li>Fix – Prevent calculate_totals totals running too often.</li>\n<li>Fix – Set attributes during variation creation so all options are correctly displayed in cart forms.</li>\n<li>Fix – Grab description directly to pass through wc_format_content to prevent double sanitization.</li>\n<li>Fix – Fix db warnings when using the “Add Order Indexes” tool.</li>\n<li>Fix – Remove unnecessary html formatting in variation dimensions field.</li>\n<li>Fix – Fix WC_Customer_Download isset method.</li>\n<li>Fix – Removed class within class in admin meta boxes HTML.</li>\n<li>Fix – Fixed wrong <code>flex-control-nav</code> selector scope in <code>add-to-cart-variation.js</code></li>\n<li>Fix – Allow variations to be added to cart from query string.</li>\n<li>Fix – Use <code>add_filter</code> for <code>comment_feed_where</code> hook. </li>\n<li>Fix – Change nocache_headers hook firing in the cache helper.</li>\n<li>Fix – Coupon min/max spend based on displayed subtotal.</li>\n<li>Fix – Fix event propagation on click in setup wizard and improve validation.</li>\n<li>Fix – API – Change how line items are saved in API so calculations are correct.</li>\n<li>Tweak – Hide downloads from admin emails. </li>\n<li>Tweak – Set placeholder for variation lxwxh field to that of the parent.</li>\n<li>Tweak – Improve the Add Payment Methods display so buttons are not shown when no payment methods support the feature.</li>\n<li>Localization – Update NJ tax rate.</li>\n<li>Localization – Add Belarusian ruble BYN.</li>\n</ul>\n<h4>3.2.3 – 2017-11-02</h4>\n<ul>\n<li>Fix – Fixed a conflict with some slider plugins due to sanitization of archive/term descriptions. </li>\n<li>Fix – Fixed a flexslider bug when there is only 1 image on the product page (no gallery).</li>\n<li>Fix – Prevent potential notices when someone extends product tabs wrongly.</li>\n<li>Fix – Fixed display of shipping calculator under some conditions.</li>\n<li>Fix – Fix discount calculation when customer is not within the base location and prices include tax.</li>\n</ul>\n<h4>3.2.2 – 2017-10-31</h4>\n<ul>\n<li>Fix – Properly escape commas when exporting products to CSV.</li>\n<li>Fix – Fixed email template padding in Outlook.</li>\n<li>Fix – Flexslider support for RTL languages and fixes for zoom target in Chrome.</li>\n<li>Fix – Correctly sync prices for grouped products.</li>\n<li>Fix – Filter and remove invalid tax classes names.</li>\n<li>Fix – Stop showing “major” update notification for minor or patch releases.</li>\n<li>Fix – Allow scroll bar in untested plugins list on the bulk plugin updates screen.</li>\n<li>Fix – Fixed meta data cloning when duplicating products.</li>\n<li>Fix – Clean “Filter Products by Attribute” widget cache when updating attributes.</li>\n<li>Fix – Fixed warning messages when reseting passwords with an invalid key.</li>\n<li>Fix – Cart totals: Don’t add shipping costs unless show_shipping is true.</li>\n<li>Fix – Cart totals: Calculate shipping after discounts so discount amounts are available.</li>\n<li>Fix – Cart totals: Fixed issue where VAT exempt users where still being charged VAT on the totals.</li>\n<li>Fix – Cart totals: Fixed the coupons user limit and calculations.</li>\n<li>Fix – Fixed “relevance” default sorting in search results.</li>\n<li>Fix – Use item tax class rather than product tax class when recalculating order totals.</li>\n<li>Tweak – Allow shortcodes and relative URLs for downloads in product CSV importer.</li>\n<li>Tweak – Save unsaved items first while deleting order items.</li>\n<li>Tweak – Only change <code>nocacheheaders</code> when on a cart/checkout page.</li>\n<li>Tweak – Setup locale before generating settings placeholders in email templates.</li>\n<li>Tweak – On checkout, improved the field locale logic to work without clearing default values.</li>\n<li>Tweak – Change title of customer invoice email for clarity.</li>\n<li>Tweak – Use custom event instead of blur to trigger validation.</li>\n<li>Tweak – Various selectWoo usibility improvements and better support for keyboard controls on AJAX multiselect elements.</li>\n<li>Tweak – Various setup Wizard improvements.</li>\n<li>Dev – Fixed orders date query when querying by meta data.</li>\n<li>Dev – In the CSV exporter, added a filter to process meta values before export.</li>\n</ul>\n<h4>3.2.1 – 2017-10-13</h4>\n<ul>\n<li>Fix – Made grouped products display in the saved order, vs the menu order.</li>\n<li>Fix – Made variations with ‘same as parent’ tax class calculate taxes correctly.</li>\n<li>Fix – Fixed tax rate reverting to 0 when the tax rate itself is not changed and the row is saved.</li>\n<li>Fix – Made tax rates sort correctly when defining postcodes and cities.</li>\n<li>Fix – Made guided tour help tab videos lazy-load to prevent performance issues.</li>\n<li>Fix – Added SelectWoo dependency to admin meta box scripts.</li>\n<li>Fix – Fixed cart subtotal 1p rounding error.</li>\n<li>Fix – Fixed discount logic to also look at variation parent categories when validating coupons.</li>\n<li>Fix – Product import filename based matching, and full URL based matching where the date part would still be present.</li>\n<li>Fix – Fixed storage of cart discounts when prices include tax.</li>\n<li>Fix – Added styling for screen-reader-text for themes which do not define it.</li>\n<li>Fix – Fixed legacy cart <code>prices_include_tax</code> variable.</li>\n<li>Fix – Hide cat-parent class when category will show no children due to the new depth setting.</li>\n<li>Fix – Make sure image zoom is enable for calling initZoomForTarget.</li>\n<li>Fix – {blogname} email placeholder.</li>\n<li>Fix – API – Use edit context when updating prices.</li>\n<li>Tweak – Clearly describe when a feature is powered by WooCommerce Services in the setup wizard.</li>\n<li>Tweak – Restored discount total line in order screen when discounts are present.</li>\n<li>Tweak – Add back option to send admin new order email, and include order number and customer email in order emails.</li>\n<li>Tweak – Replace settings screenshot on wp.org listing.</li>\n</ul>\n<h4>3.2.0 – 2017-10-11</h4>\n<ul>\n<li>Feature – Coupons can now be applied and removed in admin when editing unpaid orders.</li>\n<li>Feature – Simplified the ability to resend order details to customers with a single “Resend Order Details” action.</li>\n<li>Feature – Added store street address, city and postal code to settings for use by plugins.</li>\n<li>Feature – Wrapping values in quotes now let’s you use commas in the product CSV importer.</li>\n<li>Feature – If a fatal error occurs, WooCommerce will catch and log it to be viewed in WC > Status > Logs.</li>\n<li>Feature – Drag and drop sorting on the grouped product field to control display order.</li>\n<li>Feature – Integrated selectWoo; more accessible Select2 (enhanced select boxes) in admin and on the front-end.</li>\n<li>Feature – Enhanced select boxes in the shipping calculator.</li>\n<li>Feature – Enhanced select boxes in layered nav “or” widget.</li>\n<li>Feature – Ajaxified the product category filter on the products screen.</li>\n<li>Feature – <code>[products]</code> shortcode can be used in place of other product shortcodes – one shortcode to rule them all.</li>\n<li>Feature – Added option to control maximum depth of product category widget, and cleaned up widget naming.</li>\n<li>Feature – Show sorting options when viewing search results. This defaults to sorting by relevance.</li>\n<li>Feature – Support for the <code>WC tested up to</code> plugin header to show which extensions have been tested against updates.</li>\n<li>Feature – Helper – Filters on the subscription management screen, update notifications, and support for shared licenses.</li>\n<li>Tweak – Importer now supports menu_order property, adds filename based titles to imported images, and correctly sets post status of variations.</li>\n<li>Tweak – Made the buyer phone number clickable in the in the order back-end.</li>\n<li>Tweak – Clean up user is_paying_customer after deleting an order.</li>\n<li>Tweak – If stock changes between page load and editing, reject stock changes to avoid incorrect stock changes.</li>\n<li>Tweak – Disable search engines indexing core, dynamic, cart/checkout pages.</li>\n<li>Tweak – Added shortcodes to description output in structured data, and improved variable product data.</li>\n<li>Tweak – Use AJAX when restoring an item in the cart, and removing an item from the mini-cart.</li>\n<li>Tweak – On-boarding: added “next” button to pointers and allowed them to be dismissed.</li>\n<li>Tweak – Display post states for WC pages e.g. shop, checkout etc.</li>\n<li>Tweak – Improved order tracking page display and validation.</li>\n<li>Tweak – Wizard improvements, with store-owner newsletter sign-up.</li>\n<li>Tweak – Improved tax calculations on negative fees by apportioning to all items.</li>\n<li>Tweak – Added logic to install the plugins and themes asynchronously without using wp-cron.</li>\n<li>Tweak – Modify product API returned data by context.</li>\n<li>Tweak – Move js clipboards off of zeroclipboard script.</li>\n<li>Tweak – Remove spam trap field from registration form.</li>\n<li>Tweak – Added screen reader text to quantity input template.</li>\n<li>Fix – Improved error handling in the CSV importer when invalid files are uploaded.</li>\n<li>Fix – Handle full refunds in tax report by date.</li>\n<li>Fix – API – Return empty result when there is no on_sale products.</li>\n<li>Fix – Fixed WC_Emails::wrap_message hooks .</li>\n<li>Fix – Load up gateways on ajax order status transitions so PayPal funds capture when order is completed.</li>\n<li>Fix – Replace wistia videos with youtube.</li>\n<li>Fix – Handle sale dates on the fly in case of missed cron schedule.</li>\n<li>Fix – If sorting by date in the REST API, fallback to ID so searches are consistant.</li>\n<li>Fix – Do not apply custom sorting to product feeds.</li>\n<li>Fix – Make importer columns case-insensitive.</li>\n<li>Dev – Make parse_date_for_wp_query public.</li>\n<li>Dev – API – Creating webhooks uses the current API version rather than the latest API version.</li>\n<li>Dev – Product CRUD search helpers.</li>\n<li>Dev – Refactor shipping rate to include instance IDs, and pass instance IDs through filters.</li>\n<li>Dev – New attribute helper functions.</li>\n<li>Dev – Order note helper functions.</li>\n<li>Dev – Added the “Terms and conditions” page to the api system status report.</li>\n<li>Dev – Made date inputs reusable.</li>\n<li>Dev – Added option for merging when using ‘Order Again’ via filter <code>woocommerce_empty_cart_when_order_again</code>.</li>\n<li>Dev – Added system status tool for re-populating order address search indexes.</li>\n<li>Dev – Added system status tool for clearing webhook logs.</li>\n<li>Dev – Added woocommerce_get_asset_url filter.</li>\n<li>Dev – Show notice when internal meta props are accessed directly.</li>\n<li>Dev – Improve meta data updates so data is only updated when changed.</li>\n<li>Dev – Improved get_filtered_term_product_counts performance.</li>\n<li>Dev – Introduced wc_get_account_orders_actions function.</li>\n<li>Dev – <code>wc_get_account_formatted_address</code> can get address by customer ID.</li>\n<li>Dev – Added <code>woocommerce_get_product_id_by_sku</code> filter.</li>\n<li>Dev – Refactored cart to use new WC_Cart_Session/WC_Cart_Totals/WC_Cart_Fees/WC_Discounts classes.</li>\n<li>Dev – New <code>WC_Shortcode_Products</code> class to handle all product based shortcodes.</li>\n<li>Theming – Display downloads in their own table, universally, using a new template file.</li>\n<li>Theming – Streamlined email templates content: using the new downloads table, moved billing email with the billing address, order notes into the order totals table, and removed the need for ‘downloadable’ subjects/headings.</li>\n<li>Theming – Checkout: Order pay template</li>\n<li>Localization – Added cantons of Switzerland.</li>\n<li>Localization – Updated XAF and XOF currency codes.</li>\n<li>Localization – Added rtl support for activation.css.</li>\n<li>Localization – Updated Mexican states to use correct 2 letter codes.</li>\n<li>Localization – Improved many strings by excluding HTML.</li>\n<li>Many smaller fixes and improvements – see GitHub!</li>\n</ul>\n<p><a href=\"https://raw.githubusercontent.com/woocommerce/woocommerce/master/CHANGELOG.txt\" rel=\"nofollow\">See changelog for all versions</a>.</p>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"https://wordpress.org/plugins/woocommerce/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";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:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"All in One SEO Pack\";s:7:\"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:50:\"https://wordpress.org/plugins/all-in-one-seo-pack/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/all-in-one-seo-pack/#comments\";s: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, 30 Mar 2007 19:30:03 +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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://wordpress.org/plugins-wp/all-in-one-seo-pack/\";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:83:\"The original SEO plugin for WordPress, downloaded over 30,000,000 times since 2007.\";s: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:\"Michael Torbert\";s: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:4457:\"<p><!--section=description--></p>\n<p>Use <strong>All in One SEO Pack</strong> 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.</p>\n<p><strong><a href=\"http://semperplugins.com/plugins/all-in-one-seo-pack-pro-version/?loc=readme_utpv\" rel=\"nofollow\">Upgrade to Pro Version</a></strong></p>\n<p><a href=\"http://semperplugins.com/support/?loc=readme_ps\" rel=\"nofollow\">Premium Support</a></p>\n<p>First created in 2007, see why AIOSEO is one of the all time most downloaded plugins for WordPress.</p>\n<ul>\n<li>XML Sitemap support – submit your sitemap to Google and Bing and improve your SEO</li>\n<li>Image XML Sitemap submitted to Google and Bing to improve your Image SEO</li>\n<li>Google AMP support (Accelerated Mobile Pages)</li>\n<li>Google Analytics support</li>\n<li>Support for SEO on Custom Post Types</li>\n<li>Advanced Canonical URLs</li>\n<li>Redirect attachment pages to parent post</li>\n<li>Automatically notifies search engines like Google and Bing about changes to your site</li>\n<li>Built-in API so other plugins/themes can access and extend functionality</li>\n<li>ONLY free plugin to provide SEO Integration for e-Commerce sites, including WooCommerce</li>\n<li>Nonce Security built into All in One SEO Pack</li>\n<li>Automatically optimizes your <strong>titles</strong> for Google and other search engines</li>\n<li>Generates <strong>META tags automatically</strong></li>\n<li>Avoids the typical duplicate content found on WordPress blogs</li>\n<li>For beginners, you don’t even have to look at the options, it works out-of-the-box. Just install.</li>\n<li>For advanced users, you can fine-tune everything to optimize your SEO</li>\n<li>You can override any title and set any META description and any META keywords you want.</li>\n<li>Compatibility with many other plugins</li>\n<li>Translated into 57 languages</li>\n<li>PHP 7 100% Compatible</li>\n</ul>\n<p>Follow me on Twitter to keep up with the latest updates <a href=\"http://twitter.com/michaeltorbert/\" rel=\"nofollow\">Michael<br />\nTorbert</a></p>\n<p><iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'https://www.youtube.com/embed/46MR4FboMaA?version=3&rel=1&fs=1&autohide=2&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe></p>\n<p><!--section=faq--></p>\n<p>Please visit our complete <strong><a href=\"http://semperplugins.com/documentation/\" rel=\"nofollow\">Documentation</a></strong> before requesting support for SEO from the<br />\n<strong><a href=\"http://semperplugins.com/support/\" rel=\"nofollow\">All in One SEO Pack Support Forum</a></strong></p>\n<p><a href=\"http://semperfiwebdesign.com/documentation/all-in-one-seo-pack/translations-for-all-in-one-seo-pack/\" rel=\"nofollow\">Translations</a></p>\n<dl>\n<dt>General Settings</dt>\n<dd>\n<p><iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'https://www.youtube.com/embed/uGt6CVbA5bI?version=3&rel=1&fs=1&autohide=2&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe></p>\n</dd>\n<dt>XML Sitemaps</dt>\n<dd>\n<p><iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'https://www.youtube.com/embed/zvNU92Low8A?version=3&rel=1&fs=1&autohide=2&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe></p>\n</dd>\n<dt>Social Meta</dt>\n<dd>\n<p><iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'https://www.youtube.com/embed/Dfe49FiiAog?version=3&rel=1&fs=1&autohide=2&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe></p>\n</dd>\n<dt>Performance</dt>\n<dd>\n<p><iframe class=\'youtube-player\' type=\'text/html\' width=\'640\' height=\'390\' src=\'https://www.youtube.com/embed/A0VKinM5s00?version=3&rel=1&fs=1&autohide=2&showsearch=0&showinfo=1&iv_load_policy=1&wmode=transparent\' allowfullscreen=\'true\' style=\'border:0;\'></iframe></p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<p>All in One SEO Pack <a href=\"http://semperfiwebdesign.com/documentation/all-in-one-seo-pack/all-in-one-seo-pack-release-history/\" rel=\"nofollow\">Changelog</a></p>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/all-in-one-seo-pack/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";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:\"\";}}}}}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:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Google XML Sitemaps\";s:7:\"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://wordpress.org/plugins/google-sitemap-generator/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:63:\"https://wordpress.org/plugins/google-sitemap-generator/#respond\";s: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, 16 Jun 2005 09:33: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wordpress.org/plugins-wp/google-sitemap-generator/\";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:94:\"This plugin will improve SEO by helping search enginess better index your site using sitemaps.\";s: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:\"Arne Brachhold\";s: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:27964:\"<p><!--section=description--></p>\n<p>Use this plugin to greatly improve SEO to create special XML sitemaps which will help search engines like Google, Bing, Yahoo and Ask.com to better index your site.</p>\n<p>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.</p>\n<p>Supported since <em>over 9 years</em> and rated as the <a href=\"https://wordpress.org/plugins/browse/top-rated/\">best WordPress plugin</a>, 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!</p>\n<blockquote>\n<p>If you like the plugin, feel free to rate it (on the right side of this page)! <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n</blockquote>\n<p>Related Links:</p>\n<ul>\n<li><a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/\" title=\"Google XML Sitemaps Plugin for WordPress\" rel=\"nofollow\">Plugin Homepage</a></li>\n<li><a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/changelog/\" title=\"Changelog of the Google XML Sitemaps Plugin for WordPress\" rel=\"nofollow\">Changelog</a></li>\n<li><a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/help/\" title=\"Google Sitemaps FAQ\" rel=\"nofollow\">Plugin help and sitemaps FAQ</a></li>\n<li><a href=\"https://wordpress.org/support/topic/read-before-opening-a-new-support-topic\" rel=\"nofollow\">Support Forum</a></li>\n</ul>\n<h3>License</h3>\n<p>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 site.</p>\n<h3>Translations</h3>\n<p>The plugin comes with various translations, please refer to the <a href=\"https://codex.wordpress.org/Installing_WordPress_in_Your_Language\" title=\"Installing WordPress in Your Language\" rel=\"nofollow\">WordPress Codex</a> 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 <a href=\"http://www.gnu.org/software/gettext/\" rel=\"nofollow\">gettext</a> editor like <a href=\"http://www.poedit.net/\" rel=\"nofollow\">Poedit</a> (Windows).</p>\n<p><!--section=installation--></p>\n<ol>\n<li>Install the plugin like you always install plugins, either by uploading it via FTP or by using the “Add Plugin” function of WordPress.</li>\n<li>Activate the plugin at the plugin administration page</li>\n<li>If you want: Open the plugin configuration page, which is located under Settings -> XML-Sitemap and customize settings like priorities and change frequencies.</li>\n<li>The plugin will automatically update your sitemap of you publish a post, so there is nothing more to do <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></li>\n</ol>\n<p><!--section=faq--></p>\n<dl>\n<dt>Installation Instructions</dt>\n<dd>\n<ol>\n<li>Install the plugin like you always install plugins, either by uploading it via FTP or by using the “Add Plugin” function of WordPress.</li>\n<li>Activate the plugin at the plugin administration page</li>\n<li>If you want: Open the plugin configuration page, which is located under Settings -> XML-Sitemap and customize settings like priorities and change frequencies.</li>\n<li>The plugin will automatically update your sitemap of you publish a post, so there is nothing more to do <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f642.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></li>\n</ol>\n</dd>\n<dt>Where can I find the options page of the plugin?</dt>\n<dd>\n<p>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. <img src=\"https://s.w.org/images/core/emoji/2.3/72x72/1f609.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /></p>\n</dd>\n<dt>Do I have to create a sitemap.xml and sitemap.xml.gz by myself?</dt>\n<dd>\n<p>Not anymore. Since version 4, these files are dynamically generated. <em>There must be no sitemap.xml or sitemap.xml.gz in your site directory anymore!</em> The plugin will try to rename them to sitemap.xml.bak if they still exists.</p>\n</dd>\n<dt>Does this plugin use static files or “I can’t find the sitemap.xml file!”</dt>\n<dd>\n<p>Not anymore. Since version 4, these files are dynamically generated just like any other WordPress content.</p>\n</dd>\n<dt>There are no comments yet (or I’ve disabled them) and all my postings have a priority of zero!</dt>\n<dd>\n<p>Please disable automatic priority calculation and define a static priority for posts.</p>\n</dd>\n<dt>So many configuration options… Do I need to change them?</dt>\n<dd>\n<p>No, only if you want to. Default values are ok for most sites.</p>\n</dd>\n<dt>Does this plugin work with all WordPress versions?</dt>\n<dd>\n<p>This version works with WordPress 3.3 and better. If you’re using an older version, please check the <a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/\" title=\"Google (XML) Sitemap Generator Plugin Homepage\" rel=\"nofollow\">Google Sitemaps Plugin Homepage</a> 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!</p>\n</dd>\n<dt>My question isn’t answered here</dt>\n<dd>\n<p>Most of the plugin options are described at the <a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/\" rel=\"nofollow\">plugin homepage</a> as well as the dedicated <a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/help/\" title=\"List of common questions / problems regarding Google (XML) Sitemaps\" rel=\"nofollow\">Google Sitemaps FAQ</a>.</p>\n</dd>\n<dt>My question isn’t even answered there</dt>\n<dd>\n<p>Please post your question at the <a href=\"https://wordpress.org/support/topic/read-before-opening-a-new-support-topic\" rel=\"nofollow\">WordPress support forum</a> and tag your post with “google-sitemap-generator”.</p>\n</dd>\n<dt>What’s new in the latest version?</dt>\n<dd>\n<p>The changelog is maintained <a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/changelog/\" title=\"Google (XML) Sitemap Generator Plugin Changelog\" rel=\"nofollow\">here</a></p>\n</dd>\n<dt>Why is the changelog on a separate page and not here?</dt>\n<dd>\n<p>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!</p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<h4>4.0.9 (2017-07-24)</h4>\n<ul>\n<li>Fixed security issue related to donation functionality.</li>\n</ul>\n<h4>4.0.8 (2014-11-15)</h4>\n<ul>\n<li>Fixed bug regarding the exclude categories feature, thanks to Claus Schöffel!</li>\n</ul>\n<h4>4.0.7.1 (2014-09-02)</h4>\n<ul>\n<li>Sorry, no new features this time… This release only updates the Compatibility-Tag to WordPress 4.0. Unfortunately there is no way to do this anymore without a new version</li>\n</ul>\n<h4>4.0.7 (2014-06-23)</h4>\n<ul>\n<li>Better compatibility with GoDaddy managed WP hosting</li>\n<li>Better compatibility with QuickCache</li>\n<li>Removed WordPress version from the sitemap</li>\n<li>Corrected link to WordPress privacy settings (if search engines are blocked)</li>\n<li>Changed hook which is being used for sitemap pings to avoid pings on draft edit</li>\n</ul>\n<h4>4.0.6 (2014-06-03)</h4>\n<ul>\n<li>Added option to disable automatic gzipping</li>\n<li>Fixed bug with duplicated external sitemap entries</li>\n<li>Don’t gzip if behind Varnish since Varnish can do that</li>\n</ul>\n<h4>4.0.5 (2014-05-18)</h4>\n<ul>\n<li>Added function to manually start ping for main-sitemap or all sub-sitemaps</li>\n<li>Added support for changing the base of the sitemap URL to another URL (for WP installations in sub-folders)</li>\n<li>Fixed issue with empty post sitemaps (related to GMT/local time offset)</li>\n<li>Fixed some timing issues in archives</li>\n<li>Improved check for possible problems before gzipping</li>\n<li>Fixed empty archives and author sitemaps in case there were no posts</li>\n<li>Fixed bug which caused the Priority Provider to disappear in recent PHP versions</li>\n<li>Plugin will also ping with the corresponding sub-sitemap in case a post was modified</li>\n<li>Better checking for empty external urls</li>\n<li>Changed text in XSL template to be more clear about sitemap-index and sub-sitemaps</li>\n<li>Changed content type to text/xml to improve compatibility with caching plugins</li>\n<li>Changed query parameters to is_feed=true to improve compatibility with caching plugins</li>\n<li>Switched from using WP_Query to load posts to a custom SQL statement to avoid problems with other plugin filters</li>\n<li>Added caching of some SQL statements</li>\n<li>Added support feed for more help topics</li>\n<li>Added link to new help page</li>\n<li>Cleaned up code and renamed variables to be more readable</li>\n<li>Updated Japanese Translation, thanks to Daisuke Takahashi</li>\n</ul>\n<h4>4.0.4 (2014-04-19)</h4>\n<ul>\n<li>Removed deprecated get_page call</li>\n<li>Changed last modification time of sub-sitemaps to the last modification date of the posts instead of the publish date</li>\n<li>Removed information window if the statistic option has not been activated</li>\n<li>Added link regarding new sitemap format</li>\n<li>Updated Portuguese translation, thanks to Pedro Martinho</li>\n<li>Updated German translation</li>\n</ul>\n<h4>4.0.3 (2014-04-13)</h4>\n<ul>\n<li>Fixed compression if an gzlib handler was already active</li>\n<li>Help regarding permalinks for Nginx users</li>\n<li>Fix with gzip compression in case there was other output before already</li>\n<li>Return 404 for HTML sitemaps if the option has been disabled</li>\n<li>Updated translations</li>\n</ul>\n<h4>4.0.2 (2014-04-01)</h4>\n<ul>\n<li>Fixed warning if an gzip handler is already active</li>\n</ul>\n<h4>4.0.1 (2014-03-31)</h4>\n<ul>\n<li>Fixed bug with custom post types including a “-“</li>\n<li>Fixed some 404 Not Found Errors</li>\n</ul>\n<h4>4.0 (2014-03-30)</h4>\n<ul>\n<li>No static files anymore, sitemap is created on the fly!</li>\n<li>Sitemap is split-up into sub-sitemaps by month, allowing up to 50.000 posts per month! <a href=\"http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/google-xml-sitemap-generator-new-sitemap-format/\" rel=\"nofollow\">More information</a></li>\n<li>Support for custom post types and custom taxonomis!</li>\n<li>100% Multisite compatible, including by-blog and network activation.</li>\n<li>Reduced server resource usage due to less content per request.</li>\n<li>New API allows other plugins to add their own, separate sitemaps.</li>\n<li>Note: PHP 5.1 and WordPress 3.3 is required! The plugin will not work with lower versions!</li>\n<li>Note: This version will try to rename your old sitemap files to *-old.xml. If that doesn’t work, please delete them manually since no static files are needed anymore!</li>\n</ul>\n<h4>3.4.1 (2014-04-10)</h4>\n<ul>\n<li>Compatibility with mysqli</li>\n</ul>\n<h4>Version 3.4 (2013-11-24)</h4>\n<ul>\n<li>Fixed deprecation warnings in PHP 5.4, thanks to Dion Hulse!</li>\n</ul>\n<h4>3.3 (2013-09-28)</h4>\n<ul>\n<li>Fixed problem with file permission checking</li>\n<li>Filter out hashs (#) in URLs</li>\n</ul>\n<h4>3.2.9 (2013-01-11)</h4>\n<ul>\n<li>Fixed security issue with change frequencies and filename of sitemap file. Exploit was only possible with admin account.</li>\n</ul>\n<h4>3.2.8 (2012-08-08)</h4>\n<ul>\n<li>Fixed wrong custom taxonomy URLs, thanks to ramon fincken of the wordpress.org forum!</li>\n<li>Removed ASK ping since they shut down their service.</li>\n<li>Exclude post_format taxonomy from custom taxonomy list</li>\n</ul>\n<h4>3.2.7 (2012-04-24)</h4>\n<ul>\n<li>Fixed custom post types, thanks to clearsite of the wordpress.org forum!</li>\n<li>Fixed broken admin layout on WP 3.4</li>\n</ul>\n<h4>3.2.6 (2011-09-19)</h4>\n<ul>\n<li>Removed YAHOO ping since YAHOO uses bing now</li>\n<li>Removed deprecated function call</li>\n</ul>\n<h4>3.2.5 (2011-07-11)</h4>\n<ul>\n<li>Backported Bing ping success fix from beta</li>\n<li>Added friendly hint to try out the new beta</li>\n</ul>\n<h4>3.2.4 (2010-05-29)</h4>\n<ul>\n<li>Added (GMT) to date column in sitemap xslt template to avoid confusion with different time zones</li>\n<li>Fixed wrong SQL statement for author pages, thanks to twoenoug</li>\n<li>Fixed several deprecated function calls</li>\n<li>Note: This release does not support the new multisite feature of WordPress yet and will not be active when multisite is enabled.</li>\n</ul>\n<h4>3.2.3 (2010-04-02)</h4>\n<ul>\n<li>Fixed that all pages were missing in the sitemap if the “Uncategorized” category was excluded</li>\n</ul>\n<h4>3.2.2 (2009-12-19)</h4>\n<ul>\n<li>Updated compatibility tag to WordPress 2.9</li>\n<li>Fixed PHP4 problems</li>\n</ul>\n<h4>3.2.1 (2009-12-16)</h4>\n<ul>\n<li>Notes and update messages at the top of the admin page could interfere with the manual build function</li>\n<li>Help links in the WP contextual help were not shown anymore since the last update</li>\n<li>IE 7 sometimes displayed a cached admin page</li>\n<li>Removed invalid link to config page from the plugin description (The link lead to a “Not enough permission error”)</li>\n<li>Improved performance of getting the current plugin version by caching</li>\n<li>Updated Spanish language files</li>\n</ul>\n<h4>3.2 (2009-11-23)</h4>\n<ul>\n<li>Added function to show the actual results of a ping instead of only linking to the url</li>\n<li>Added new hook (sm_rebuild) for third party plugins to start building the sitemap</li>\n<li>Fixed bug which showed the wrong URL for the latest Google ping result</li>\n<li>Added some missing documentation</li>\n<li>Removed hardcoded php name for sitemap file in admin urls</li>\n<li>Uses KSES for showing ping test results</li>\n<li>Ping test fixed for WP < 2.3</li>\n</ul>\n<h4>3.1.9 (2009-11-13)</h4>\n<ul>\n<li>Fixed MySQL Error if author pages were included</li>\n</ul>\n<h4>3.1.8 (2009-11-07)</h4>\n<ul>\n<li>Improved custom taxonomy handling and fixed wrong last modification date</li>\n<li>Fixed fatal error in WordPress versions lower than 2.3</li>\n<li>Fixed Update Notice for WordPress 2.8 and higher</li>\n<li>Added warning if blog privacy is activated</li>\n<li>Fixed priorities of additional pages were shown as 0 instead of 1</li>\n</ul>\n<h4>3.1.7 (2009-10-21)</h4>\n<ul>\n<li>Added support for custom taxonomies. Thanks to Lee!</li>\n</ul>\n<h4>3.1.6 (2009-08-31)</h4>\n<ul>\n<li>Fixed PHP error “Only variables can be passed by reference”</li>\n<li>Fixed wrong URLS of multi-page posts (Thanks artstorm!)</li>\n<li>Updated many language files</li>\n</ul>\n<h4>3.1.5 (2009-08-24)</h4>\n<ul>\n<li>Added option to completely disable the last modification time</li>\n<li>Fixed problem with HTTPS url for the XSL stylesheet if the sitemap was build via the admin panel</li>\n<li>Improved handling of homepage entry if a single page was set for it</li>\n<li>Fixed mktime warning which appeared sometimes</li>\n<li>Fixed bug which caused inf. reloads after rebuilding the sitemap via the admin panel</li>\n<li>Improved handling of missing sitemaps files if WP was moved to another location</li>\n</ul>\n<h4>3.1.4 (2009-06-22)</h4>\n<ul>\n<li>Fixed bug which broke all pings in WP older than 2.7</li>\n<li>Added more output in debug mode if pings fail</li>\n<li>Moved global post variable so other plugins can use it in get_permalink()</li>\n<li>Added small icon for ozh admin menu</li>\n<li>Added more help links in UI</li>\n</ul>\n<h4>3.1.3 (2009-06-07)</h4>\n<ul>\n<li>Changed MSN Live Search to Bing</li>\n<li>Exclude categories also now exludes the category itself and not only the posts</li>\n<li>Pings now use the new WordPress HTTP API instead of Snoopy</li>\n<li>Fixed bug that in localized WP installations priorities could not be saved</li>\n<li>The sitemap cron job is now cleared after a manual rebuild or after changing the config</li>\n<li>Adjusted style of admin area for WP 2.8 and refreshed icons</li>\n<li>Disabled the “Exclude categories” feature for WP 2.5.1, since it doesn’t have the required functions yet</li>\n</ul>\n<h4>3.1.2 (2008-12-26)</h4>\n<ul>\n<li>Changed the way the stylesheet is saved (default / custom stylesheet)</li>\n<li>Sitemap is now rebuild when a page is published</li>\n<li>Removed support for static robots.txt files, this is now handled via WordPress functions</li>\n<li>Added compat. exceptions for WP 2.0 and WP 2.1</li>\n</ul>\n<h4>3.1.1 (2008-12-21)</h4>\n<ul>\n<li>Fixed redirect issue if wp-admin is rewritten via mod_rewrite, thanks to macjoost</li>\n<li>Fixed wrong path to assets, thanks PozHonks</li>\n<li>Fixed wrong plugin URL if wp-content was renamed / redirected, thanks to wnorris</li>\n<li>Updated WP User Interface for 2.7</li>\n<li>Various other small things</li>\n</ul>\n<h4>3.1.0.1 (2008-05-27)</h4>\n<ul>\n<li>Extracted UI JS to external file</li>\n<li>Enabled the option to include following pages of multi-page posts</li>\n<li>Script tries to raise memory and time limit if active</li>\n</ul>\n<h4>3.1 (2008-05-22)</h4>\n<ul>\n<li>Marked as stable</li>\n</ul>\n<h4>3.1b3 (2008-05-19)</h4>\n<ul>\n<li>Cleaned up plugin directory and moved img files to subfolders</li>\n<li>Fixed background building bug in WP 2.1</li>\n<li>Removed auto-update plugin link for WP < 2.5</li>\n</ul>\n<h4>3.1b2 (2008-05-18)</h4>\n<ul>\n<li>Fixed critical bug with the build in background option</li>\n<li>Added notification if a build is scheduled</li>\n</ul>\n<h4>3.1b1 (2008-05-08)</h4>\n<ul>\n<li>Splitted plugin in loader, generator and user interface to save memory</li>\n<li>Generator and UI will only be loaded when needed</li>\n<li>Secured all admin actions with nonces</li>\n<li>Improved WP 2.5 handling</li>\n<li>New “Suggest a Feature” link</li>\n</ul>\n<h4>3.0.3.3 (2008-04-29)</h4>\n<ul>\n<li>Fixed author pages</li>\n<li>Enhanced background building and increased delay to 15 seconds</li>\n<li>Enabled background building by default</li>\n</ul>\n<h4>3.0.3.2 (2008-04-28)</h4>\n<ul>\n<li>Improved WP 2.5 handling (fixes blank screens and timeouts)</li>\n</ul>\n<h4>3.0.3.1 (2008-03-30)</h4>\n<ul>\n<li>Added compatibility CSS for WP 2.5</li>\n</ul>\n<h4>3.0.3 (2007-12-30)</h4>\n<ul>\n<li>Added option to ping MSN Live Search</li>\n<li>Removed some WordPress hooks (the sitemap isn’t updates with every comment anymore)</li>\n</ul>\n<h4>3.0.2.1 (2007-11-28)</h4>\n<ul>\n<li>Fixed wrong XML Schema Location (Thanks to Emanuele Tessore)</li>\n<li>Added Russian Language files by Sergey http://ryvkin.ru</li>\n</ul>\n<h4>3.0.2 (2007-11-25)</h4>\n<ul>\n<li>Fixed bug which caused that some settings were not saved correctly</li>\n<li>Added option to exclude pages or post by ID</li>\n<li>Restored YAHOO ping service with API key since the other one is to unreliable</li>\n</ul>\n<h4>3.0.1 (2007-11-03)</h4>\n<ul>\n<li>Changed HTTP client for ping requests to Snoopy</li>\n<li>Added “safemode” for SQL which doesn’t use unbuffered results</li>\n<li>Added option to run the building process in background using wp-cron</li>\n<li>Added links to test the ping if it failed</li>\n</ul>\n<h4>3.0 final (2007-09-24)</h4>\n<ul>\n<li>Marked as stable</li>\n<li>Removed useless functions</li>\n</ul>\n<h4>3.0b11 (2007-09-23)</h4>\n<ul>\n<li>Changed mysql queries to unbuffered queries</li>\n<li>Uses MUCH less memory</li>\n<li>Option to limit the number of posts</li>\n</ul>\n<h4>3.0b10 (2007-09-04)</h4>\n<ul>\n<li>Added category support for WordPress 2.3</li>\n<li>Fixed bug with empty URLs in sitemap</li>\n<li>Repaired GET building</li>\n</ul>\n<h4>3.0b9 (2007-09-02)</h4>\n<ul>\n<li>Added tag support for WordPress 2.3</li>\n<li>Fixed archive bug with static pages (Thanks to Peter Claus Lamprecht)</li>\n<li>Fixed some missing translation strings, thanks to Kirin Lin</li>\n</ul>\n<h4>3.0b8 (2007-07-22)</h4>\n<ul>\n<li>Fixed bug with empty categories</li>\n<li>Fixed bug with translation plugins</li>\n<li>Added support for robots.txt</li>\n<li>Switched YAHOO ping API from YAHOO Web Services to the “normal” ping service</li>\n<li>Search engines will only be pinged if the sitemap file has changed</li>\n</ul>\n<h4>3.0b7 (2007-05-17)</h4>\n<ul>\n<li>Added Ask.com notification</li>\n<li>Added option to include the author pages like /author/john</li>\n<li>Fixed WP 2.1 / Pre 2.1 post / pages database changes</li>\n<li>Added check to not build the sitemap if importing posts</li>\n<li>Fixed wrong XSLT location (Thanks froosh)</li>\n<li>Small enhancements and bug fixes</li>\n</ul>\n<h4>3.0b6 (2007-01-23)</h4>\n<ul>\n<li>sitemap.xml.gz was not compressed</li>\n<li>YAHOO update-notification was PHP5 only (Thanks to Joseph Abboud!)</li>\n<li>More WP 2.1 optimizations</li>\n<li>Reduced memory usage with PHP5</li>\n</ul>\n<h4>3.0b5 (2007-01-19)</h4>\n<ul>\n<li>WordPress 2 Design</li>\n<li>YAHOO update notification</li>\n<li>New status report, removed ugly logfiles</li>\n<li>Added option to define a XSLT stylesheet and added a default one</li>\n<li>Fixed bug with sub-pages, thanks to <a href=\"http://baptiste.us/\" rel=\"nofollow\">Mike</a>, <a href=\"http://fastagent.de/\" rel=\"nofollow\">Peter</a> and <a href=\"http://publicityship.com.au/\" rel=\"nofollow\">Glenn</a></li>\n<li>Improved file handling, thanks to <a href=\"http://www.vjtd3.com/\" rel=\"nofollow\">VJTD3</a></li>\n<li>WP 2.1 improvements</li>\n</ul>\n<h4>3.0b4 (2006-11-16)</h4>\n<ul>\n<li>Fixed some smaller bugs</li>\n<li>Decreased memory usage which should solve timeout and memory problems</li>\n<li>Updated namespace to support YAHOO and MSN</li>\n</ul>\n<h4>3.0b2 (2006-01-14)</h4>\n<ul>\n<li>Fixed several bugs reported by users</li>\n</ul>\n<h4>3.0b (2005-11-25)</h4>\n<ul>\n<li>WordPress 2.0 (Beta, RC1) compatible</li>\n<li>Added different priority calculation modes and introduced an API to create custom ones (Some people didn’t like the way to calculate the post priority based on the count of user comments. This will give you the possibility to develop custom priority providers which fit your needs.)</li>\n<li>Added support to use the <a href=\"http://www.alexking.org/blog/2005/07/27/popularity-contest-11/\" rel=\"nofollow\">Popularity Contest</a> plugin by <a href=\"http://www.alexking.org/\" rel=\"nofollow\">Alex King</a> to calculate post priority (If you are already using the Popularity Contest plugin, this will be the best way to determine the priority of the posts. Uses to new priority API noted above.)</li>\n<li>Added option to exclude password protected posts (This was one of the most requested features.)</li>\n<li>Posts and pages marked for publish with a date in the future won’t be included</li>\n<li>Added function to start sitemap creation via GET and a secret key (If you are using external software which directly writes into the database without using the WordPress API, you can rebuild the sitemap with a simple HTTP Request. This can be made with a cron job for example.)</li>\n<li>Improved compatibility with other plugins (There should no longer be problems with other plugins now which checked for existence of a specified function to determine if you are in the control panel or not.)</li>\n<li>Recoded plugin architecture which is now fully OOP (The code is now cleaner and better to understand which makes it easier to modify. This should also avoid namespace problems.)</li>\n<li>Improved speed and optimized settings handling (Settings and pages are only loaded if the sitemap generation process starts and not every time a page loads. This saves one MySQL Query on every request.)</li>\n<li>Added Button to restore default configuration (Messed up the config? You’ll need just one click to restore all settings.)</li>\n<li>Added log file to check everything is running (In the new log window you can see when your sitemap was rebuilt or if there was any error.)</li>\n<li>Improved user-interface</li>\n<li>Added several links to homepage and support (This includes the Notify List about new releases and the WordPress support forum.)</li>\n</ul>\n<h4>2.7 (2005-11-25)</h4>\n<ul>\n<li>Added Polish Translation by <a href=\"http://kubazwolinski.com/\" rel=\"nofollow\">kuba</a></li>\n</ul>\n<h4>2.7 (2005-11-01)</h4>\n<ul>\n<li>Added French Translation by <a href=\"http://www.chezthierry.info/\" rel=\"nofollow\">Thierry Lanfranchi</a></li>\n</ul>\n<h4>2.7 (2005-07-21)</h4>\n<ul>\n<li>Fixed bug with incorrect date in additional pages (wrong format)</li>\n<li>Added Swedish Translation by <a href=\"http://tobiasbergius.se/\" rel=\"nofollow\">Tobias Bergius</a></li>\n</ul>\n<h4>2.6 (2005-07-16)</h4>\n<ul>\n<li>Included Chinese (Simplified) language files by <a href=\"http://www.june6.cn/\" rel=\"nofollow\">june6</a></li>\n</ul>\n<h4>2.6 (2005-07-04)</h4>\n<ul>\n<li>Added support to store the files at a custom location</li>\n<li>Changed the home URL to have a slash at the end</li>\n<li>Fixed errors with wp-mail</li>\n<li>Added support for other plugins to add content to the sitemap</li>\n</ul>\n<h4>2.5 (2005-06-15)</h4>\n<ul>\n<li>You can include now external pages which aren’t generated by WordPress or are not recognized by this plugin</li>\n<li>You can define a minimum post priority, which will overrride the calculated value if it’s too low</li>\n<li>The plugin will automatically ping Google whenever the sitemap gets regenerated</li>\n<li>Update 1: Included Spanish translations by <a href=\"http://www.cesargomez.org/\" rel=\"nofollow\">Cesar Gomez Martin</a></li>\n<li>Update 2: Included Italian translations by <a href=\"http://wordpress-it.it/\" rel=\"nofollow\">Stefano Aglietti</a></li>\n<li>Update 3: Included Traditional Chinese translations by <a href=\"http://kirin-lin.idv.tw/\" rel=\"nofollow\">Kirin Lin</a></li>\n</ul>\n<h4>2.2 (2005-06-08)</h4>\n<ul>\n<li>Language file support: <a href=\"http://hiromasa.zone.ne.jp/\" rel=\"nofollow\">Hiromasa</a> from <a href=\"http://hiromasa.zone.ne.jp/\" rel=\"nofollow\">http://hiromasa.zone.ne.jp</a> sent me a japanese version of the user interface and modified the script to support it! Thanks for this! Check <a href=\"https://codex.wordpress.org/WordPress_Localization\" rel=\"nofollow\">the WordPress Codex</a> how to set the language in WordPress.</li>\n<li>Added Japanese user interface by <a href=\"http://hiromasa.zone.ne.jp/\" rel=\"nofollow\">Hiromasa</a></li>\n<li>Added German user interface by me</li>\n</ul>\n<h4>2.12 (2005-06-07)</h4>\n<ul>\n<li>Changed SQL Statement for categories that it also works on MySQL 3</li>\n</ul>\n<h4>2.11 (2005-06-07)</h4>\n<ul>\n<li>Fixed a hardcoded tablename which made a SQL error</li>\n</ul>\n<h4>2.1 (2005-06-07)</h4>\n<ul>\n<li>Can also generate a gzipped version of the xml file (sitemap.xml.gz)</li>\n<li>Uses correct last modification dates for categories and archives. (Thanks to thx <a href=\"http://www.shupe.ca/\" rel=\"nofollow\">Rodney Shupe</a> for the SQL)</li>\n<li>Supports now different WordPress / Blog directories</li>\n<li>Fixed bug which ignored different post/page priorities (Reported by <a href=\"http://h3h.net/\" rel=\"nofollow\">Brad</a>)</li>\n</ul>\n<h4>2.01 (2005-06-07)</h4>\n<ul>\n<li>Fixed compatibility for PHP installations which are not configured to use short open tags</li>\n<li>Changed Line 147 from _e($i); to _e(strval($i));</li>\n<li>Thanks to <a href=\"http://publicvoidblog.de/\" rel=\"nofollow\">Christian Aust</a> for reporting this!</li>\n</ul>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wordpress.org/plugins/google-sitemap-generator/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";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:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"Limit Login Attempts\";s:7:\"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/plugins/limit-login-attempts/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/plugins/limit-login-attempts/#respond\";s: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, 15 Jan 2009 14:20: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:54:\"https://wordpress.org/plugins-wp/limit-login-attempts/\";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:91:\"Limit rate of login attempts, including by way of cookies, for each IP. Fully customizable.\";s: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:0:\"\";s: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:12097:\"<p><!--section=description--></p>\n<p>Limit the number of login attempts possible both through normal login as well as using auth cookies.</p>\n<p>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.</p>\n<p>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.</p>\n<p>Features</p>\n<ul>\n<li>Limit the number of retry attempts when logging in (for each IP). Fully customizable</li>\n<li>Limit the number of attempts to log in using auth cookies in same way</li>\n<li>Informs user about remaining retries or lockout time on login page</li>\n<li>Optional logging, optional email notification</li>\n<li>Handles server behind reverse proxy</li>\n<li>It is possible to whitelist IPs using a filter. But you probably shouldn’t. ?</li>\n</ul>\n<p>Translations: Bulgarian, Brazilian Portuguese, Catalan, Chinese (Traditional), Czech, Dutch, Finnish, French, German, Hungarian, Norwegian, Persian, Romanian, Russian, Spanish, Swedish, Turkish</p>\n<p>Plugin uses standard actions and filters only.</p>\n<p><!--section=installation--></p>\n<ol>\n<li>Download and extract plugin files to a wp-content/plugin directory.</li>\n<li>Activate the plugin through the WordPress admin interface.</li>\n<li>Customize the settings on the options page, if desired. If your server is located behind a reverse proxy make sure to change this setting.</li>\n</ol>\n<p>If you have any questions or problems please make a post here: https://wordpress.org/tags/limit-login-attempts</p>\n<p><!--section=faq--></p>\n<dl>\n<dt>Installation Instructions</dt>\n<dd>\n<ol>\n<li>Download and extract plugin files to a wp-content/plugin directory.</li>\n<li>Activate the plugin through the WordPress admin interface.</li>\n<li>Customize the settings on the options page, if desired. If your server is located behind a reverse proxy make sure to change this setting.</li>\n</ol>\n<p>If you have any questions or problems please make a post here: https://wordpress.org/tags/limit-login-attempts</p>\n</dd>\n<dt>Why not reset failed attempts on a successful login?</dt>\n<dd>\n<p>This is very much by design. Otherwise you could brute force the “admin” password by logging in as your own user every 4th attempt.</p>\n</dd>\n<dt>What is this option about site connection and reverse proxy?</dt>\n<dd>\n<p>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.</p>\n<p>The option default to NOT being behind a proxy — which should be by far the common case.</p>\n</dd>\n<dt>How do I know if my site is behind a reverse proxy?</dt>\n<dd>\n<p>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.</p>\n</dd>\n<dt>Can I whitelist my IP so I don’t get locked out?</dt>\n<dd>\n<p>First please consider if you really need this. Generally speaking it is not a good idea to have exceptions to your security policies.</p>\n<p>That said, there is now a filter which allows you to do it: “limit_login_whitelist_ip”.</p>\n<p>Example:<br />\nfunction my_ip_whitelist($allow, $ip) {<br />\n return ($ip == ‘my-ip’) ? true : $allow;<br />\n}<br />\nadd_filter(‘limit_login_whitelist_ip’, ‘my_ip_whitelist’, 10, 2);</p>\n<p>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.</p>\n</dd>\n<dt>I locked myself out testing this thing, what do I do?</dt>\n<dd>\n<p>Either wait, or:</p>\n<p>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.</p>\n<p>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.</p>\n<p>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\'”</p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<h4>1.7.1</h4>\n<p>This version fixes a security bug in version 1.6.2 and 1.7.0. Please upgrade immediately.</p>\n<p>“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.</p>\n<p>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.</p>\n<p>Lockout of normal password login attempts still worked as it should, and it appears that all “auth cookie” attempts would keep getting logged.</p>\n<p>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.</p>\n<h4>1.7.0</h4>\n<ul>\n<li>Added filter that allows whitelisting IP. Please use with care!!</li>\n<li>Update to Spanish translation, thanks to Marcelo Pedra</li>\n<li>Updated Swedish translation</li>\n<li>Tested against WordPress 3.3.2</li>\n</ul>\n<h4>1.6.2</h4>\n<ul>\n<li>Fix bug where log would not get updated after it had been cleared</li>\n<li>Do plugin setup in ‘init’ action</li>\n<li>Small update to Spanish translation file, thanks to Marcelo Pedra</li>\n<li>Tested against WordPress 3.2.1</li>\n</ul>\n<h4>1.6.1</h4>\n<ul>\n<li>(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</li>\n<li>Define “Text Domain” correctly</li>\n<li>Include correct Dutch tranlation file. Thanks to Martin1 for noticing. Thanks again to Bjorn Wijers for the translation</li>\n<li>Updated POT file for this version</li>\n<li>Tested against WordPress 3.1-RC4</li>\n</ul>\n<h4>1.6.0</h4>\n<ul>\n<li>Happy New Year</li>\n<li>Tested against WordPress 3.1-RC1</li>\n<li>Plugin now requires WordPress version 2.8+. Of course you should never ever use anything but the latest version</li>\n<li>Fixed deprecation warnings that had been piling up with the old version requirement. Thanks to Johannes Ruthenberg for the report that prompted this</li>\n<li>Removed auth cookie admin check for version 2.7.</li>\n<li>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.</li>\n<li>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”</li>\n<li>Added question to FAQ (“Why not reset failed attempts on a successful login?”)</li>\n<li>Updated screenshots</li>\n</ul>\n<h4>1.5.2</h4>\n<ul>\n<li>Reverted minor cookie-handling cleanup which might somehow be responsible for recently reported cookie related lockouts</li>\n<li>Added version 1.x Brazilian Portuguese translation, thanks to Luciano Passuello</li>\n<li>Added Finnish translation, thanks to Ari Kontiainen</li>\n</ul>\n<h4>1.5.1</h4>\n<ul>\n<li>Further multisite & WPMU support (again thanks to <a href=\"mailto:erik@erikshosting.com\" rel=\"nofollow\">erik@erikshosting.com</a>)</li>\n<li>Better error handling if option variables are damaged</li>\n<li>Added Traditional Chinese translation, thanks to Denny Huang <a href=\"mailto:bigexplorations@bigexplorations.com.tw\" rel=\"nofollow\">bigexplorations@bigexplorations.com.tw</a></li>\n</ul>\n<h4>1.5</h4>\n<ul>\n<li>Tested against WordPress 3.0</li>\n<li>Handle 3.0 login page failure “shake”</li>\n<li>Basic multisite support (parts thanks to <a href=\"mailto:erik@erikshosting.com\" rel=\"nofollow\">erik@erikshosting.com</a>)</li>\n<li>Added Dutch translation, thanks to Bjorn Wijers <a href=\"mailto:burobjorn@burobjorn.nl\" rel=\"nofollow\">burobjorn@burobjorn.nl</a></li>\n<li>Added Hungarian translation, thanks to B?lint Vereskuti <a href=\"mailto:balint@vereskuti.info\" rel=\"nofollow\">balint@vereskuti.info</a></li>\n<li>Added French translation, thanks to oVa <a href=\"mailto:ova13lastar@gmail.com\" rel=\"nofollow\">ova13lastar@gmail.com</a></li>\n</ul>\n<h4>1.4.1</h4>\n<ul>\n<li>Added Turkish translation, thanks to Yazan Canarkadas</li>\n</ul>\n<h4>1.4</h4>\n<ul>\n<li>Protect admin page update using wp_nonce</li>\n<li>Added Czech translation, thanks to Jakub Jedelsky</li>\n</ul>\n<h4>1.3.2</h4>\n<ul>\n<li>Added Bulgarian translation, thanks to Hristo Chakarov</li>\n<li>Added Norwegian translation, thanks to Rune Gulbrands?y</li>\n<li>Added Spanish translation, thanks to Marcelo Pedra</li>\n<li>Added Persian translation, thanks to Mostafa Soufi</li>\n<li>Added Russian translation, thanks to Jack Leonid (http://studio-xl.com)</li>\n</ul>\n<h4>1.3.1</h4>\n<ul>\n<li>Added Catalan translation, thanks to Robert Buj</li>\n<li>Added Romanian translation, thanks to Robert Tudor</li>\n</ul>\n<h4>1.3</h4>\n<ul>\n<li>Support for getting the correct IP for clients while server is behind reverse proxy, thanks to Michael Skerwiderski</li>\n<li>Added German translation, thanks to Michael Skerwiderski</li>\n</ul>\n<h4>1.2</h4>\n<ul>\n<li>No longer replaces pluggable function when cookie handling active. Re-implemented using available actions and filters</li>\n<li>Filter error messages during login to avoid information leak regarding available usernames</li>\n<li>Do not show retries or lockout messages except for login (registration, lost password pages). No change in actual enforcement</li>\n<li>Slightly more aggressive in trimming old retries data</li>\n</ul>\n<h4>1.1</h4>\n<ul>\n<li>Added translation support</li>\n<li>Added Swedish translation</li>\n<li>During lockout, filter out all other login errors</li>\n<li>Minor cleanups</li>\n</ul>\n<h4>1.0</h4>\n<ul>\n<li>Initial version</li>\n</ul>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/plugins/limit-login-attempts/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";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:5:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"TinyMCE Advanced\";s:7:\"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:47:\"https://wordpress.org/plugins/tinymce-advanced/\";s: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:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"https://wordpress.org/plugins/tinymce-advanced/#respond\";s: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 Jun 2007 06:02: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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/plugins-wp/tinymce-advanced/\";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:58:\"Extends and enhances TinyMCE, the WordPress Visual Editor.\";s: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:\"Andrew Ozz\";s: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:10906:\"<p><!--section=description--></p>\n<p>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 <a href=\"screenshots\" rel=\"nofollow\">screenshots</a>.</p>\n<p>It includes 15 plugins for <a href=\"http://tinymce.com/\" rel=\"nofollow\">TinyMCE</a> 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.</p>\n<h4>Some of the features added by this plugin</h4>\n<ul>\n<li>Support for creating and editing tables.</li>\n<li>More options when inserting lists.</li>\n<li>Search and Replace in the editor.</li>\n<li>Ability to set Font Family and Font Sizes.</li>\n<li>And many others.</li>\n</ul>\n<p>With this plugin you can also enable the TinyMCE menu above the toolbars. This will make the editor even more powerful and convenient.</p>\n<p><!--section=installation--></p>\n<p>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”.</p>\n<p><!--section=faq--></p>\n<dl>\n<dt>Installation Instructions</dt>\n<dd>\n<p>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”.</p>\n</dd>\n<dt>No styles are imported in the Formats sub-menu.</dt>\n<dd>\n<p>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.</p>\n</dd>\n<dt>I have just installed this plugin, but it does not do anything.</dt>\n<dd>\n<p>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.</p>\n</dd>\n<dt>When I add “Smilies”, they do not show in the editor.</dt>\n<dd>\n<p>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.</p>\n</dd>\n<dt>The plugin does not add any buttons.</dt>\n<dd>\n<p>Make sure the “Disable the visual editor when writing” checkbox under “Users – Your Profile” is <strong>not</strong> checked.</p>\n</dd>\n<dt>I still see the “old” buttons in the editor</dt>\n<dd>\n<p>Click the “Restore Default Settings” button on the plugin settings page and then set the buttons again and save.</p>\n</dd>\n<dt>Other questions? More screenshots?</dt>\n<dd>\n<p>Please post on the support forum or visit the homepage for <a href=\"http://www.laptoptips.ca/projects/tinymce-advanced/\" rel=\"nofollow\">TinyMCE Advanced</a>.</p>\n</dd>\n</dl>\n<p><!--section=changelog--></p>\n<h4>4.6.7</h4>\n<ul>\n<li>Fixed compatibility with Gutenberg freeform block.</li>\n<li>Forced refresh of the TinyMCE plugins after activation.</li>\n<li>Updated for WordPress 4.9 and TinyMCE 4.6.7.</li>\n</ul>\n<h4>4.6.3</h4>\n<ul>\n<li>Updated for WordPress 4.8 and TinyMCE 4.6.3.</li>\n</ul>\n<h4>4.5.6</h4>\n<ul>\n<li>Updated for WordPress 4.7.4 and TinyMCE 4.5.6.</li>\n<li>Fixed PHP notice after importing settings.</li>\n</ul>\n<h4>4.4.3</h4>\n<ul>\n<li>Updated for WordPress 4.7 and TinyMCE 4.4.3.</li>\n<li>Fixed missing “Source code” button bug.</li>\n</ul>\n<h4>4.4.1</h4>\n<ul>\n<li>Updated for WordPress 4.6 and TinyMCE 4.4.1.</li>\n<li>Fixed multisite saving bug.</li>\n<li>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.</li>\n</ul>\n<h4>4.3.10.1</h4>\n<ul>\n<li>Fixed adding paragraph tags when loading posts that were saved before turning autop off.</li>\n<li>Disabled the (new) inline toolbar for tables as it was overlapping the table in some cases.</li>\n</ul>\n<h4>4.3.10</h4>\n<ul>\n<li>Updated for WordPress 4.5.1 and TinyMCE 4.3.10.</li>\n<li>Fixed support for adding editor-style.css to themes that don’t have it.</li>\n</ul>\n<h4>4.3.8</h4>\n<ul>\n<li>Updated for WordPress 4.5 and TinyMCE 4.3.8.</li>\n<li>Separated standard options and admin options.</li>\n<li>Added settings that can disable the plugin for the main editor, other editors in wp-admin or editors on the front-end.</li>\n<li>Korean translation by Josh Kim and Greek translation by Stathis Mellios.</li>\n</ul>\n<h4>4.2.8</h4>\n<ul>\n<li>Updated for WordPress 4.4 and TinyMCE 4.2.8.</li>\n<li>Japanese translation by Manabu Miwa.</li>\n</ul>\n<h4>4.2.5</h4>\n<ul>\n<li>Updated for WordPress 4.3.1 and TinyMCE 4.2.5.</li>\n<li>Fixed text domain and plugin headers.</li>\n</ul>\n<h4>4.2.3.1</h4>\n<ul>\n<li>Fix error with removing the ‘textpattern’ plugin.</li>\n</ul>\n<h4>4.2.3</h4>\n<ul>\n<li>Updated for WordPress 4.3 and TinyMCE 4.2.3.</li>\n<li>Removed the ‘textpattern’ plugin as WordPress 4.3 includes similar functionality by default.</li>\n<li>French translation by Nicolas Schneider.</li>\n</ul>\n<h4>4.1.9</h4>\n<ul>\n<li>Updated for WordPress 4.2 and TinyMCE 4.1.9.</li>\n<li>Fixed bugs with showing oEmbed previews when pasting an URL.</li>\n<li>Fixed bugs with getting the content from TinyMCE with line breaks.</li>\n</ul>\n<h4>4.1.7</h4>\n<ul>\n<li>Updated for WordPress 4.1 and TinyMCE 4.1.7.</li>\n<li>Fixed bug where consecutive caption shortcodes may be split with an empty paragraph tag.</li>\n</ul>\n<h4>4.1.1</h4>\n<ul>\n<li>Fix bug with image captions when wpautop is disabled.</li>\n<li>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.</li>\n</ul>\n<h4>4.1</h4>\n<ul>\n<li>Updated for WordPress 4.0 and TinyMCE 4.1.</li>\n<li>Add the ‘textpattern’ plugin that supports some of the markdown syntax while typing, <a href=\"http://www.tinymce.com/wiki.php/Configuration:textpattern_patterns\" rel=\"nofollow\">(more info)</a>.</li>\n<li>Add the updated ‘table’ plugin that supports background and border color.</li>\n</ul>\n<h4>4.0.2</h4>\n<ul>\n<li>Fix showing of the second, third and forth button rows when the Toolbar Toggle button is not used.</li>\n<li>Fix adding the ”directionality” plugin when RTL or LTR button is selected.</li>\n<li>Show the ”Advanced Options” to super admins on multisite installs.</li>\n<li>Add the ”link” plugin including link rel setting. Replaces the Insert/Edit Link dialog when enabled.</li>\n<li>Include updated ”table” plugin that has support for vertical align for cells.</li>\n</ul>\n<h4>4.0.1</h4>\n<p>Fix warnings on pages other than Edit Post. Update the description.</p>\n<h4>4.0</h4>\n<p>Updated for WordPress 3.9 and TinyMCE 4.0. Refreshed the settings screen. Added support for exporting and importing of the settings.</p>\n<h4>3.5.9.1</h4>\n<p>Updated for WordPress 3.8, fixed auto-embedding of single line URLs when not removing paragraph tags.</p>\n<h4>3.5.9</h4>\n<p>Updated for WordPress 3.7 and TinyMCE 3.5.9.</p>\n<h4>3.5.8</h4>\n<p>Updated for WordPress 3.5 and TinyMCE 3.5.8.</p>\n<h4>3.4.9</h4>\n<p>Updated for WordPress 3.4 and TinyMCE 3.4.9.</p>\n<h4>3.4.5.1</h4>\n<p>Fixed a bug preventing TinyMCE from importing CSS classes from editor-style.css.</p>\n<h4>3.4.5</h4>\n<p>Updated for WordPress 3.3 or later and TinyMCE 3.4.5.</p>\n<h4>3.4.2.1</h4>\n<p>Fix the removal of the <em>media</em> plugin so it does not require re-saving the settings.</p>\n<h4>3.4.2</h4>\n<p>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 <em>media</em> plugin as it is included by default.</p>\n<h4>3.3.9.1</h4>\n<p>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.</p>\n<p>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.</p>\n<h4>3.3.9</h4>\n<p>Compatibility with WordPress 3.1 and TinyMCE 3.3.9, improved P and BR tags option.</p>\n<h4>3.2.7</h4>\n<p>Compatibility with WordPress 2.9 and TinyMCE 3.2.7, several minor bug fixes.</p>\n<h4>3.2.4</h4>\n<p>Compatibility with WordPress 2.8 and TinyMCE 3.2.4, minor bug fixes.</p>\n<h4>3.2</h4>\n<p>Compatibility with WordPress 2.7 and TinyMCE 3.2, minor bug fixes.</p>\n<h4>3.1</h4>\n<p>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).</p>\n<h4>3.0.1</h4>\n<p>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.</p>\n<h4>3.0</h4>\n<p>Support for WordPress 2.5 and TinyMCE 3.0.</p>\n<h4>2.2</h4>\n<p>Deactivate/Uninstall option page, font size drop-down menu and other small changes.</p>\n<h4>2.1</h4>\n<p>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.</p>\n<h4>2.0</h4>\n<p>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.</p>\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:36:\"http://wellformedweb.org/CommentAPI/\";a:1:{s:10:\"commentRss\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"https://wordpress.org/plugins/tinymce-advanced/feed/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:38:\"http://purl.org/rss/1.0/modules/slash/\";a:1:{s:8:\"comments\";a:1:{i:0;a:5:{s:4:\"data\";s:1:\"0\";s: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:50:\"https://wordpress.org/plugins/browse/popular/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:9:\"\n 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:4:\"\n 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:\"Wed, 03 Jan 2018 09:37:05 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:\"Wed, 03 Jan 2018 09:22:16 GMT\";s:4:\"link\";s:66:\"<https://wordpress.org/plugins/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:4:\"x-nc\";s:11:\"HIT lax 249\";}}s:5:\"build\";s:14:\"20170301171504\";}','no'),(1746,'akismet_spam_count','5','yes'),(6161,'_site_transient_timeout_browser_76973f252ad0942fd599fdc04d17d45c','1515577008','no'),(6162,'_site_transient_browser_76973f252ad0942fd599fdc04d17d45c','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"63.0.3239.84\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(6165,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1515015422','no'),(6166,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1514972222','no'),(6169,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1515015423','no'),(6170,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1514972223','no'),(6173,'_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109','1515015426','no'),(6174,'_transient_feed_mod_b9388c83948825c1edaef0d856b7b109','1514972226','no'),(6177,'_transient_timeout_dash_5f25301ca0145abac6dfc3a0899dc43b','1515015426','no'),(6178,'_transient_dash_5f25301ca0145abac6dfc3a0899dc43b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2017/12/wordpress-user-survey-data-for-2015-2017/\'>WordPress User Survey Data for 2015-2017</a> <span class=\"rss-date\">22nd December 2017</span><div class=\"rssSummary\">For many years, we’ve invited folks to tell us how they use WordPress by filling out an annual survey. In the past, interesting results from this survey have been shared in the annual State of the Word address. This year, for the first time, the results of the 2017 survey are being published on WordPress […]</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://ma.tt/2017/12/books-in-2017/\'>Matt: Books in 2017</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/wpweekly-episode-299-2017-year-in-review\'>WPTavern: WPWeekly Episode 299 – 2017 Year in Review</a></li><li><a class=\'rsswidget\' href=\'https://heropress.com/essays/journey-dyslexic-kid-becoming-co-organiser-wordcamp-mumbai/#utm_source=rss&utm_medium=rss&utm_campaign=journey-dyslexic-kid-becoming-co-organiser-wordcamp-mumbai\'>HeroPress: My Journey from being a Dyslexic kid to becoming A Co-organiser For WordCamp Mumbai</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\"dashboard-news-plugin\"><span>Popular Plugin:</span> Yoast SEO <a href=\"plugin-install.php?tab=plugin-information&plugin=wordpress-seo&_wpnonce=163c122b97&TB_iframe=true&width=600&height=800\" class=\"thickbox open-plugin-details-modal\" aria-label=\"Install Yoast SEO\">(Install)</a></li></ul></div>','no'),(6188,'_site_transient_timeout_browser_6d44eab61dcf5b1f0e6fa8f6595ee1bc','1515594426','no'),(6189,'_site_transient_browser_6d44eab61dcf5b1f0e6fa8f6595ee1bc','a:10:{s:4:\"name\";s:17:\"Internet Explorer\";s:7:\"version\";s:4:\"11.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:74:\"https://support.microsoft.com/en-us/help/17621/internet-explorer-downloads\";s:7:\"img_src\";s:39:\"http://s.w.org/images/browsers/ie.png?1\";s:11:\"img_src_ssl\";s:40:\"https://s.w.org/images/browsers/ie.png?1\";s:15:\"current_version\";s:2:\"11\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','no'),(7581,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:4:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:65:\"https://downloads.wordpress.org/release/en_GB/wordpress-4.9.5.zip\";s:6:\"locale\";s:5:\"en_GB\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:65:\"https://downloads.wordpress.org/release/en_GB/wordpress-4.9.5.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:5:\"4.9.5\";s:7:\"version\";s:5:\"4.9.5\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.9.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.9.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.9.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.9.5-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.9.5\";s:7:\"version\";s:5:\"4.9.5\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.9.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.9.5.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.9.5-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.9.5-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.9.5\";s:7:\"version\";s:5:\"4.9.5\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.8.6.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.8.6.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.8.6-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.8.6-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.8.6\";s:7:\"version\";s:5:\"4.8.6\";s:11:\"php_version\";s:5:\"5.2.4\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"4.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}}s:12:\"last_checked\";i:1524603405;s:15:\"version_checked\";s:6:\"4.7.10\";s:12:\"translations\";a:0:{}}','no');
INSERT INTO `wp_options` VALUES (7564,'rs-templates','a:2:{s:6:\"slider\";a:215:{i:0;a:20:{s:2:\"id\";s:1:\"1\";s:5:\"title\";s:16:\"Classic Carousel\";s:5:\"alias\";s:16:\"classic-carousel\";s:3:\"zip\";s:20:\"classic-carousel.zip\";s:3:\"uid\";s:32:\"146a01dd380c0cdee85c4456ee68cd84\";s:3:\"img\";s:27:\"classic-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/carousel-slider-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">Our classic, full-width carousel example. Drag, swipe or click to navigate!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:310:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:1;a:20:{s:2:\"id\";s:1:\"2\";s:5:\"title\";s:14:\"Classic Slider\";s:5:\"alias\";s:13:\"classicslider\";s:3:\"zip\";s:17:\"classicslider.zip\";s:3:\"uid\";s:32:\"a0d6a9248c9066b404ba0f1cdadc5cf2\";s:3:\"img\";s:24:\"classicslider/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-slideshow-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:136:\" <span class=\"ttm_content\">A classic slideshow example with timer, bullets and arrow navigation.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:2;a:20:{s:2:\"id\";s:1:\"3\";s:5:\"title\";s:12:\"Content Tabs\";s:5:\"alias\";s:11:\"contenttabs\";s:3:\"zip\";s:15:\"contenttabs.zip\";s:3:\"uid\";s:32:\"e02e91604b690123a3d07a65582c4fd0\";s:3:\"img\";s:22:\"contenttabs/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-content-tabs-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:170:\" <span class=\"ttm_content\">An auto-size slider with a cool split-text animation effect. Navigate with vertical bullets and thumbs.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:3;a:20:{s:2:\"id\";s:1:\"4\";s:5:\"title\";s:13:\"Facebook Feed\";s:5:\"alias\";s:13:\"facebook-feed\";s:3:\"zip\";s:17:\"facebook-feed.zip\";s:3:\"uid\";s:32:\"5506431d5b1babcb25dcf52c508d42e3\";s:3:\"img\";s:24:\"facebook-feed/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-facebook-feed/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:174:\"<span class=\"ttm_content\"> This slider is automatically populated by a Facebook stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:439:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Facebook Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:4;a:20:{s:2:\"id\";s:1:\"5\";s:5:\"title\";s:7:\"Fashion\";s:5:\"alias\";s:7:\"fashion\";s:3:\"zip\";s:11:\"fashion.zip\";s:3:\"uid\";s:32:\"4f4b914d6db35e19101ff003c4e7ea3a\";s:3:\"img\";s:18:\"fashion/slider.jpg\";s:7:\"preview\";s:65:\"http://revolution.themepunch.com/wordpress-one-page-slider-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\" <span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:5;a:20:{s:2:\"id\";s:1:\"6\";s:5:\"title\";s:14:\"Flickr Gallery\";s:5:\"alias\";s:14:\"flickr-gallery\";s:3:\"zip\";s:18:\"flickr-gallery.zip\";s:3:\"uid\";s:32:\"ad85cfac7acfa678e6a1b8febfee51ed\";s:3:\"img\";s:25:\"flickr-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-flickr-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\" <span class=\"ttm_content\"> This slider is automatically populated by a Flickr stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:437:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Flickr Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:6;a:20:{s:2:\"id\";s:1:\"7\";s:5:\"title\";s:3:\"Gym\";s:5:\"alias\";s:3:\"gym\";s:3:\"zip\";s:7:\"gym.zip\";s:3:\"uid\";s:32:\"e4d81f13f96fb9bc905f4ad89615032b\";s:3:\"img\";s:14:\"gym/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/one-page-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:189:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the slider menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:7;a:20:{s:2:\"id\";s:1:\"8\";s:5:\"title\";s:18:\"Highlight Carousel\";s:5:\"alias\";s:18:\"highlight-carousel\";s:3:\"zip\";s:22:\"highlight-carousel.zip\";s:3:\"uid\";s:32:\"ada52163f723a942f782351fa0396b3d\";s:3:\"img\";s:29:\"highlight-carousel/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-swipe-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:138:\" <span class=\"ttm_content\">A swipe-controlled carousel with an additional tab-based navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:8;a:20:{s:2:\"id\";s:1:\"9\";s:5:\"title\";s:18:\"Highlight Showcase\";s:5:\"alias\";s:18:\"highlight-showcase\";s:3:\"zip\";s:22:\"highlight-showcase.zip\";s:3:\"uid\";s:32:\"2bfe0bd410fb48fec9d942eab1e21530\";s:3:\"img\";s:29:\"highlight-showcase/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-parallax-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">A tab-based navigation, a slideshow timer and cool animations make this slider interesting!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:9;a:20:{s:2:\"id\";s:2:\"10\";s:5:\"title\";s:10:\"Image Hero\";s:5:\"alias\";s:10:\"image-hero\";s:3:\"zip\";s:13:\"imagehero.zip\";s:3:\"uid\";s:32:\"7db18781d44f2adc28c962440894aac1\";s:3:\"img\";s:20:\"imagehero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-image/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:121:\"<span class=\"ttm_content\">A commonly used full-width image hero block with texts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:10;a:20:{s:2:\"id\";s:2:\"11\";s:5:\"title\";s:17:\"Instagram Gallery\";s:5:\"alias\";s:13:\"insta-gallery\";s:3:\"zip\";s:17:\"insta-gallery.zip\";s:3:\"uid\";s:32:\"711732b0d42ec2b57818a2b9b1d86cba\";s:3:\"img\";s:24:\"insta-gallery/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-instagram-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"640\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:174:\"<span class=\"ttm_content\">This slider is automatically populated by a Instagram stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:440:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Instagram Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:11;a:20:{s:2:\"id\";s:2:\"12\";s:5:\"title\";s:21:\"Levano Restaurant Bar\";s:5:\"alias\";s:19:\"levanorestaurantbar\";s:3:\"zip\";s:23:\"levanorestaurantbar.zip\";s:3:\"uid\";s:32:\"4178f837db67d1b2eb6cb5840bbd0b42\";s:3:\"img\";s:30:\"levanorestaurantbar/slider.jpg\";s:7:\"preview\";s:63:\"http://revolution.themepunch.com/wordpress-front-page-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or bullets.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:12;a:20:{s:2:\"id\";s:2:\"13\";s:5:\"title\";s:19:\"Main Feature Slider\";s:5:\"alias\";s:11:\"mainfeature\";s:3:\"zip\";s:15:\"mainfeature.zip\";s:3:\"uid\";s:32:\"1e002a3230ab00095bedc6f60393ee7f\";s:3:\"img\";s:22:\"mainfeature/slider.jpg\";s:7:\"preview\";s:33:\"http://revolution.themepunch.com/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"750\";s:11:\"description\";s:127:\" <span class=\"ttm_content\">A slightly stripped down version of the main preview slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:13;a:20:{s:2:\"id\";s:2:\"14\";s:5:\"title\";s:17:\"Media Gallery Two\";s:5:\"alias\";s:17:\"media-gallery-two\";s:3:\"zip\";s:21:\"media-gallery-two.zip\";s:3:\"uid\";s:32:\"d002f1b1b55805f9322c264c5504ba5a\";s:3:\"img\";s:28:\"media-gallery-two/slider.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-media-gallery-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:127:\"<span class=\"ttm_content\">A media gallery example with Vimeo, HTML5 and Youtube videos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and titles.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:14;a:20:{s:2:\"id\";s:2:\"15\";s:5:\"title\";s:23:\"Media Carousel Autoplay\";s:5:\"alias\";s:23:\"media-carousel-autoplay\";s:3:\"zip\";s:27:\"media-carousel-autoplay.zip\";s:3:\"uid\";s:32:\"393d7875b1cc9d933378b35e4f645d76\";s:3:\"img\";s:34:\"media-carousel-autoplay/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-media-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"720\";s:6:\"height\";s:3:\"405\";s:11:\"description\";s:153:\"<span class=\"ttm_content\">A media carousel with \"autoplay\" activated. Swipe or click tabs to navigate the slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change media and caption texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:15;a:20:{s:2:\"id\";s:2:\"16\";s:5:\"title\";s:21:\"News Background Video\";s:5:\"alias\";s:21:\"news-background-video\";s:3:\"zip\";s:17:\"news-bg-video.zip\";s:3:\"uid\";s:32:\"a0efe44ac3af0f958b3f84c816a08272\";s:3:\"img\";s:24:\"news-bg-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A hero block with HTML5 background video that plays when entering the screen.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:16;a:20:{s:2:\"id\";s:2:\"17\";s:5:\"title\";s:12:\"News Gallery\";s:5:\"alias\";s:12:\"news-gallery\";s:3:\"zip\";s:16:\"news-gallery.zip\";s:3:\"uid\";s:32:\"3a069c3b286dbb9ee435563f747e3300\";s:3:\"img\";s:23:\"news-gallery/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-news-rotator/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A news gallery slideshow with tab navigation. Great for any blog!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:17;a:20:{s:2:\"id\";s:2:\"18\";s:5:\"title\";s:23:\"News Gallery Post Based\";s:5:\"alias\";s:23:\"news-gallery-post-based\";s:3:\"zip\";s:27:\"news-gallery-post-based.zip\";s:3:\"uid\";s:32:\"32fe05b1039c29ab9420bfd15aec5488\";s:3:\"img\";s:34:\"news-gallery-post-based/slider.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-post-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:447:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:18;a:20:{s:2:\"id\";s:2:\"19\";s:5:\"title\";s:9:\"News Hero\";s:5:\"alias\";s:9:\"news-hero\";s:3:\"zip\";s:13:\"news-hero.zip\";s:3:\"uid\";s:32:\"96a0385538a17c8c81ed8175740f70ea\";s:3:\"img\";s:20:\"news-hero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:107:\"<span class=\"ttm_content\">A image hero block with ken burns effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:19;a:20:{s:2:\"id\";s:2:\"20\";s:5:\"title\";s:10:\"News Video\";s:5:\"alias\";s:10:\"news-video\";s:3:\"zip\";s:14:\"news-video.zip\";s:3:\"uid\";s:32:\"f901e9e16e0363248156c2209eb584e9\";s:3:\"img\";s:21:\"news-video/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-content-blocks/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:128:\"<span class=\"ttm_content\">A Vimeo background video hero block with play / pause buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the video and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:20;a:20:{s:2:\"id\";s:2:\"21\";s:5:\"title\";s:15:\"Newsletter Hero\";s:5:\"alias\";s:15:\"newsletter-hero\";s:3:\"zip\";s:19:\"newsletter-hero.zip\";s:3:\"uid\";s:32:\"6290a9864d8c4c6311784586ed1cc5fe\";s:3:\"img\";s:26:\"newsletter-hero/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-newsletter-signup/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:137:\"<span class=\"ttm_content\">This hero block uses a custom styled Mailchimp newsletter signup field.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:461:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and <a href=\"https://www.themepunch.com/faq/how-to-setup-mailchimp-for-the-newsletter-hero-template/\" target=\"_blank\">Mailchimp code</a>.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:21;a:20:{s:2:\"id\";s:2:\"22\";s:5:\"title\";s:11:\"Not Generic\";s:5:\"alias\";s:10:\"notgeneric\";s:3:\"zip\";s:14:\"notgeneric.zip\";s:3:\"uid\";s:32:\"9d87ba95e02210a9f82387add2ceadf9\";s:3:\"img\";s:21:\"notgeneric/slider.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:144:\"<span class=\"ttm_content\">A full-screen slider with a layer based navigation and sleek content elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:22;a:20:{s:2:\"id\";s:2:\"23\";s:5:\"title\";s:11:\"Photography\";s:5:\"alias\";s:11:\"photography\";s:3:\"zip\";s:15:\"photography.zip\";s:3:\"uid\";s:32:\"1b2072547afb75e49f33b016751ed360\";s:3:\"img\";s:22:\"photography/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-photography-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:23;a:20:{s:2:\"id\";s:2:\"24\";s:5:\"title\";s:20:\"Photography Carousel\";s:5:\"alias\";s:20:\"photography-carousel\";s:3:\"zip\";s:24:\"photography-carousel.zip\";s:3:\"uid\";s:32:\"9a84b859ba23dc49ba8784e3a86545fa\";s:3:\"img\";s:31:\"photography-carousel/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-photo-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">A front-page carousel that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:24;a:20:{s:2:\"id\";s:2:\"25\";s:5:\"title\";s:16:\"Search Form Hero\";s:5:\"alias\";s:16:\"search-form-hero\";s:3:\"zip\";s:20:\"search-form-hero.zip\";s:3:\"uid\";s:32:\"e09eb1bd0f22b3a2b02a1aa251dd1f3e\";s:3:\"img\";s:27:\"search-form-hero/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-search-form-hero/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This hero block uses a custom styled input field to show search results on a WordPress site.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:346:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image, texts, and search field code.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:25;a:20:{s:2:\"id\";s:2:\"26\";s:5:\"title\";s:17:\"Showcase Carousel\";s:5:\"alias\";s:16:\"showcasecarousel\";s:3:\"zip\";s:20:\"showcasecarousel.zip\";s:3:\"uid\";s:32:\"c5ca218398331bd2c064efc2f62eae56\";s:3:\"img\";s:27:\"showcasecarousel/slider.jpg\";s:7:\"preview\";s:62:\"http://revolution.themepunch.com/wordpress-cover-flow-gallery/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:129:\"<span class=\"ttm_content\">A fancy carousel that rotates, fades and scales slider items.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:310:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:26;a:20:{s:2:\"id\";s:2:\"27\";s:5:\"title\";s:11:\"Sports Hero\";s:5:\"alias\";s:11:\"sports-hero\";s:3:\"zip\";s:14:\"sportshero.zip\";s:3:\"uid\";s:32:\"8de7a145f32a362d618d2595ffa2f724\";s:3:\"img\";s:21:\"sportshero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-image-hero/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"720\";s:11:\"description\";s:113:\"<span class=\"ttm_content\">An sports themed image hero block with buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:27;a:20:{s:2:\"id\";s:2:\"28\";s:5:\"title\";s:12:\"Twitter Feed\";s:5:\"alias\";s:12:\"twitter-feed\";s:3:\"zip\";s:16:\"twitter-feed.zip\";s:3:\"uid\";s:32:\"efbfc2af5da5258e7b7bed8598e483cc\";s:3:\"img\";s:23:\"twitter-feed/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-twitter-feed/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:3:\"800\";s:6:\"height\";s:3:\"640\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a Twitter stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:438:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Twitter Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:28;a:20:{s:2:\"id\";s:2:\"29\";s:5:\"title\";s:13:\"Vimeo Gallery\";s:5:\"alias\";s:13:\"vimeo-gallery\";s:3:\"zip\";s:17:\"vimeo-gallery.zip\";s:3:\"uid\";s:32:\"fa824ce1ff3942ec268fc9eda60df539\";s:3:\"img\";s:24:\"vimeo-gallery/slider.jpg\";s:7:\"preview\";s:57:\"http://revolution.themepunch.com/wordpress-vimeo-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"692\";s:11:\"description\";s:170:\"<span class=\"ttm_content\">This slider is automatically populated by a Vimeo stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:436:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Vimeo Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:29;a:20:{s:2:\"id\";s:2:\"30\";s:5:\"title\";s:10:\"Vimeo Hero\";s:5:\"alias\";s:9:\"vimeohero\";s:3:\"zip\";s:13:\"vimeohero.zip\";s:3:\"uid\";s:32:\"c575575f96173d88589cddcb06120b77\";s:3:\"img\";s:20:\"vimeohero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-hero-vimeo/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:116:\"<span class=\"ttm_content\">A commonly used Vimeo video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:461:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:30;a:20:{s:2:\"id\";s:2:\"31\";s:5:\"title\";s:16:\"Web Product Dark\";s:5:\"alias\";s:16:\"web-product-dark\";s:3:\"zip\";s:20:\"web-product-dark.zip\";s:3:\"uid\";s:32:\"39b872cf0608e63c3a503e58374dc30a\";s:3:\"img\";s:27:\"web-product-dark/slider.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/wordpress-frontpage-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:31;a:20:{s:2:\"id\";s:2:\"32\";s:5:\"title\";s:21:\"Web Product Dark Hero\";s:5:\"alias\";s:21:\"web-product-dark-hero\";s:3:\"zip\";s:25:\"web-product-dark-hero.zip\";s:3:\"uid\";s:32:\"b6784e8925221f36677217979d26e6f0\";s:3:\"img\";s:32:\"web-product-dark-hero/slider.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-header-image/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:32;a:20:{s:2:\"id\";s:2:\"33\";s:5:\"title\";s:22:\"Web Product Light Hero\";s:5:\"alias\";s:22:\"web-product-light-hero\";s:3:\"zip\";s:26:\"web-product-light-hero.zip\";s:3:\"uid\";s:32:\"428e65d6aaa6ef775429989d50516492\";s:3:\"img\";s:33:\"web-product-light-hero/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/hero-image-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:162:\"<span class=\"ttm_content\">A modern hero block with three common devices. The screens of each device can be changed easily!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:315:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:33;a:20:{s:2:\"id\";s:2:\"34\";s:5:\"title\";s:17:\"Web Product Light\";s:5:\"alias\";s:15:\"webproductlight\";s:3:\"zip\";s:19:\"webproductlight.zip\";s:3:\"uid\";s:32:\"fa23dab5bf1139c6393828647a9de4e0\";s:3:\"img\";s:26:\"webproductlight/slider.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/wordpress-cover-page/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:194:\"<span class=\"ttm_content\">A front-page slider that can be used as an intro for your website. Navigate by using mouse-wheel scroll or the layer-based menu.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:617:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Instructions for <a href=\"https://www.themepunch.com/faq/modify-burger-menu/\" target=\"_blank\">changing the menu</a>.</span><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:34;a:20:{s:2:\"id\";s:2:\"35\";s:5:\"title\";s:15:\"Youtube Gallery\";s:5:\"alias\";s:15:\"youtube-gallery\";s:3:\"zip\";s:19:\"youtube-gallery.zip\";s:3:\"uid\";s:32:\"ee9e4928ac74f5f0c0b697ce708f5aa7\";s:3:\"img\";s:26:\"youtube-gallery/slider.jpg\";s:7:\"preview\";s:59:\"http://revolution.themepunch.com/wordpress-youtube-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\"> This slider is automatically populated by a YouTube stream. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:438:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"YouTube Stream\"</a>. Make sure to input your correct API information in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:11:\"socialmedia\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:35;a:20:{s:2:\"id\";s:2:\"36\";s:5:\"title\";s:12:\"Youtube Hero\";s:5:\"alias\";s:11:\"youtubehero\";s:3:\"zip\";s:15:\"youtubehero.zip\";s:3:\"uid\";s:32:\"e0b2c12a45841bdf21cb96305f2c85bf\";s:3:\"img\";s:22:\"youtubehero/slider.jpg\";s:7:\"preview\";s:58:\"http://revolution.themepunch.com/wordpress-youtube-header/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:104:\"<span class=\"ttm_content\">A YouTube video background hero block.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:630:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/enable-sound-for-the-youtube-hero-template/\" target=\"_blank\">enable sound for the background video</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:15:\"Revolution Base\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:36;a:20:{s:2:\"id\";s:2:\"37\";s:5:\"title\";s:13:\"Scroll Effect\";s:5:\"alias\";s:13:\"scroll-effect\";s:3:\"zip\";s:17:\"scroll-effect.zip\";s:3:\"uid\";s:32:\"417f59e9db87aa7e47c8509eb88d4af6\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/big-bold-fullscreen-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen slider with a unique scroll effect and big, bold text.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:508:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:37;a:20:{s:2:\"id\";s:2:\"38\";s:5:\"title\";s:12:\"Content Zoom\";s:5:\"alias\";s:12:\"content-zoom\";s:3:\"zip\";s:16:\"content-zoom.zip\";s:3:\"uid\";s:32:\"42ef8cdb70d42ec6ff6fa3b69a027b5f\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/content-zoom-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:243:\"<span class=\"ttm_content\">A very unique full-width slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:397:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:38;a:20:{s:2:\"id\";s:2:\"39\";s:5:\"title\";s:13:\"Food Carousel\";s:5:\"alias\";s:13:\"food-carousel\";s:3:\"zip\";s:17:\"food-carousel.zip\";s:3:\"uid\";s:32:\"a7bf54527b6658a0a308c70c729779fe\";s:3:\"img\";s:29:\"foodcarousel/slider_cover.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/food-carousel-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:267:\"<span class=\"ttm_content\">A fancy carousel with detail content on each slide. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to show and hide layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:397:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:39;a:20:{s:2:\"id\";s:2:\"40\";s:5:\"title\";s:14:\"Rotating Words\";s:5:\"alias\";s:14:\"rotating-words\";s:3:\"zip\";s:18:\"rotating-words.zip\";s:3:\"uid\";s:32:\"70190463d9376f278c8197b7b2ef6c1b\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";s:7:\"preview\";s:53:\"http://revolution.themepunch.com/rotating-words-hero/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:134:\"<span class=\"ttm_content\">A full-screen hero block with unique animated text and blur effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:518:\"<span class=\"ttm_content\">This is a \"Default\" hero slider. Edit the slide to change the background media and texts.<br/>For further configuration options please view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:40;a:20:{s:2:\"id\";s:2:\"41\";s:5:\"title\";s:22:\"Travel Static Captions\";s:5:\"alias\";s:22:\"travel-static-captions\";s:3:\"zip\";s:26:\"travel-static-captions.zip\";s:3:\"uid\";s:32:\"bbe7d61c7c741ebc7aa1ce1082b0cb71\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";s:7:\"preview\";s:50:\"http://revolution.themepunch.com/travel-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A slideshow example with static captions layers above a rotating image background.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:41;a:20:{s:2:\"id\";s:2:\"42\";s:5:\"title\";s:7:\"Concept\";s:5:\"alias\";s:7:\"concept\";s:3:\"zip\";s:11:\"concept.zip\";s:3:\"uid\";s:32:\"47cb06083e87503762f6746725117a3c\";s:3:\"img\";s:18:\"concept/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/fullscreen-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:232:\"<span class=\"ttm_content\">A full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:397:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:42;a:20:{s:2:\"id\";s:2:\"43\";s:5:\"title\";s:15:\"True Fullscreen\";s:5:\"alias\";s:17:\"fullscreen-button\";s:3:\"zip\";s:21:\"fullscreen-button.zip\";s:3:\"uid\";s:32:\"618a43bdf89333b555531f6d6ecde359\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/wordpress-sidebar-slideshow/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A slider with a full-screen button that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:323:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:43;a:20:{s:2:\"id\";s:2:\"44\";s:5:\"title\";s:16:\"Creative Freedom\";s:5:\"alias\";s:15:\"creativefreedom\";s:3:\"zip\";s:19:\"creativefreedom.zip\";s:3:\"uid\";s:32:\"8902bf6c93126c2c6323626b9e872621\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/wordpress-touch-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:145:\"<span class=\"ttm_content\">A full-screen slider with a unique vertical navigation and 3D-parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:316:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images, videos and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:44;a:20:{s:2:\"id\";s:2:\"45\";s:5:\"title\";s:17:\"3D Parallax Scene\";s:5:\"alias\";s:13:\"parallaxscene\";s:3:\"zip\";s:17:\"parallaxscene.zip\";s:3:\"uid\";s:32:\"51566f1ce649708e97a0f5dfaf05ea19\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-3d-parallax/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:328:\"<span class=\"ttm_content\">A 3D-parallax hero scene with mouse-controlled effects. Smart image arrangement creates a convincing 3D effect. Tooltips are shown using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:45;a:20:{s:2:\"id\";s:2:\"46\";s:5:\"title\";s:10:\"Wow Factor\";s:5:\"alias\";s:15:\"slidingoverlays\";s:3:\"zip\";s:19:\"slidingoverlays.zip\";s:3:\"uid\";s:32:\"18002d17e8bc7ca61b0951f5305a759e\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";s:7:\"preview\";s:61:\"http://revolution.themepunch.com/responsive-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:106:\"<span class=\"ttm_content\">A 3D-parallax effect full-screen slider.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:443:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:46;a:20:{s:2:\"id\";s:2:\"47\";s:5:\"title\";s:14:\"3D Web Product\";s:5:\"alias\";s:25:\"web-product-light-hero-3d\";s:3:\"zip\";s:29:\"web-product-light-hero-3d.zip\";s:3:\"uid\";s:32:\"efd345c5da805414093e46066cefd751\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/wordpress-3d-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"668\";s:11:\"description\";s:149:\"<span class=\"ttm_content\">A 3D-parallax hero scene slider with a convincing depth-effect and animated clouds.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:47;a:20:{s:2:\"id\";s:2:\"48\";s:5:\"title\";s:15:\"WooCommerce Big\";s:5:\"alias\";s:6:\"woobig\";s:3:\"zip\";s:10:\"woobig.zip\";s:3:\"uid\";s:32:\"bfb09a39656c7c80e86b468fc5b3403c\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:444:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:48;a:20:{s:2:\"id\";s:2:\"49\";s:5:\"title\";s:17:\"WooCommerce Small\";s:5:\"alias\";s:16:\"woocommercesmall\";s:3:\"zip\";s:20:\"woocommercesmall.zip\";s:3:\"uid\";s:32:\"b17c2adcc5c4c4b68a7ac6fee32fa030\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";s:7:\"preview\";s:52:\"http://revolution.themepunch.com/woocommerce-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.1\";s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"266\";s:11:\"description\";s:174:\" <span class=\"ttm_content\">This slider is automatically populated by WooCommerce posts. Just one slide is needed to show a whole feed!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:444:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"WooCommerce Slider\"</a>. Make sure to select the products you want to show in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:49;a:20:{s:2:\"id\";s:2:\"50\";s:5:\"title\";s:17:\"Restaurant Header\";s:5:\"alias\";s:10:\"finedining\";s:3:\"zip\";s:14:\"finedining.zip\";s:3:\"uid\";s:32:\"03481a9e258501fbe3888b48830ea845\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/restaurant-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:275:\"<span class=\"ttm_content\">A full-screen hero block slider that shows different background layers on button hover using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:461:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:50;a:20:{s:2:\"id\";s:2:\"51\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:12:\"agency-intro\";s:3:\"zip\";s:16:\"agency-intro.zip\";s:3:\"uid\";s:32:\"e9be2afdd55a0c8d0d8d0cc12ba4c82f\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";s:7:\"preview\";s:60:\"http://revolution.themepunch.com/agency-website-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:302:\" <span class=\"ttm_content\">A full-screen hero block slider with ken burns effect and video modal on button click. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:397:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:51;a:20:{s:2:\"id\";s:2:\"52\";s:5:\"title\";s:11:\"Team Slider\";s:5:\"alias\";s:7:\"ourteam\";s:3:\"zip\";s:11:\"ourteam.zip\";s:3:\"uid\";s:32:\"d8eb1fec07a79202d1118bb17f70c233\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";s:7:\"preview\";s:74:\"http://revolution.themepunch.com/thumbnail-hover-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:303:\"<span class=\"ttm_content\">A team slider that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:691:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:52;a:20:{s:2:\"id\";s:2:\"53\";s:5:\"title\";s:13:\"Team Carousel\";s:5:\"alias\";s:17:\"our-team-carousel\";s:3:\"zip\";s:21:\"our-team-carousel.zip\";s:3:\"uid\";s:32:\"37656d5dcab1f265c025cb2a3d669809\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";s:7:\"preview\";s:83:\"http://revolution.themepunch.com/thumbnail-hover-carousel-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:306:\" <span class=\"ttm_content\">A team carousel that changes slides and displays additional information on thumbnail hover. It uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to achieve this effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:693:\"<span class=\"ttm_content\">This is a \"Default\" content carousel. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\nLearn how to <a href=\"https://www.themepunch.com/faq/modify-thumbnails-for-our-team-template/\" target=\"_blank\">modify the thumbnails</a><br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:53;a:20:{s:2:\"id\";s:2:\"54\";s:5:\"title\";s:17:\"4K Youtube Slider\";s:5:\"alias\";s:13:\"betteryoutube\";s:3:\"zip\";s:17:\"betteryoutube.zip\";s:3:\"uid\";s:32:\"d7c5fef9f257037d7a148038aa2a1857\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";s:7:\"preview\";s:94:\"http://revolution.themepunch.com/fullscreen-4k-youtube-video-gallery-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"675\";s:11:\"description\";s:293:\" <span class=\"ttm_content\">A full-screen youtube gallery with 4K videos as an example. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to breathe life into navigation elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:532:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change videos and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:54;a:20:{s:2:\"id\";s:2:\"55\";s:5:\"title\";s:21:\"Agency Website Header\";s:5:\"alias\";s:19:\"agencywebsiteheader\";s:3:\"zip\";s:23:\"agencywebsiteheader.zip\";s:3:\"uid\";s:32:\"c11d272c87277a7a38d9e7fd13e27947\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";s:7:\"preview\";s:56:\"http://revolution.themepunch.com/fullscreen-hero-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:245:\" <span class=\"ttm_content\">A very unique full-screen slider that uses <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:543:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:55;a:20:{s:2:\"id\";s:2:\"56\";s:5:\"title\";s:11:\"Coming Soon\";s:5:\"alias\";s:10:\"comingsoon\";s:3:\"zip\";s:14:\"comingsoon.zip\";s:3:\"uid\";s:32:\"0f89edf995512e6d6e864a2ee7221829\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";s:7:\"preview\";s:79:\"http://revolution.themepunch.com/coming-soon-wordpress-under-construction-site/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:299:\"<span class=\"ttm_content\">A full-screen slider that can be used as a \"Coming Soon\" page. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a> are used to achieve various interaction possibilities.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:661:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\nInstructions for <a href=\"https://www.themepunch.com/faq/change-date-for-coming-soon-template/\" target=\"_blank\">how to change the date.</a><br /><br />\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:56;a:20:{s:2:\"id\";s:2:\"57\";s:5:\"title\";s:20:\"Christmas Snow Scene\";s:5:\"alias\";s:9:\"snowscene\";s:3:\"zip\";s:13:\"snowscene.zip\";s:3:\"uid\";s:32:\"a747bf0837caff86c62419a746690209\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";s:7:\"preview\";s:54:\"http://revolution.themepunch.com/christmas-snow-scene/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.0.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:141:\"<span class=\"ttm_content\">A slider with multiple christmas themed slides and a neat snow fall effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:508:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>For further configuration options please view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:57;a:20:{s:2:\"id\";s:2:\"58\";s:5:\"title\";s:15:\"Rock Band Music\";s:5:\"alias\";s:8:\"rockband\";s:3:\"zip\";s:12:\"rockband.zip\";s:3:\"uid\";s:32:\"5f557a5fad2fd6ca982a6ae6e9619637\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";s:7:\"preview\";s:80:\"http://revolution.themepunch.com/rock-band-music-theme-slider-revolution-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:140:\" <span class=\"ttm_content\">A rock band themed hero block slider with an embedded SoundCloud element.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:461:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background video and texts.<br/><br/></span>\r\nScreencast for <a href=\"https://www.youtube.com/watch?v=I4qGepR4aWw\" target=\"_blank\">mobile video</a> considerations.</a>\r\n<br/><br/>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-24 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:58;a:20:{s:2:\"id\";s:2:\"59\";s:5:\"title\";s:18:\"Sleek Landing Page\";s:5:\"alias\";s:16:\"sleeklandingpage\";s:3:\"zip\";s:20:\"sleeklandingpage.zip\";s:3:\"uid\";s:32:\"07f7f2608936a8ae226213b7d99eee3f\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";s:7:\"preview\";s:70:\"http://revolution.themepunch.com/landing-page-free-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">A full-screen slider that can be used as an App-Landing-Page. The object layers and custom animations create a unique effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-02-22 13:21:33\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:59;a:20:{s:2:\"id\";s:2:\"60\";s:5:\"title\";s:16:\"App Landing Page\";s:5:\"alias\";s:14:\"applandingpage\";s:3:\"zip\";s:18:\"applandingpage.zip\";s:3:\"uid\";s:32:\"38eb600893c1484ab8fd2a3dce3678d7\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/app-landing-page-free-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">A full-screen hero block that can be used as an app landing page. The detail view is build using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:397:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>It might be helpful to use the \"hide/show layer\" feature to efficiently edit all content.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:60;a:20:{s:2:\"id\";s:2:\"61\";s:5:\"title\";s:10:\"Desk Scene\";s:5:\"alias\";s:9:\"deskscene\";s:3:\"zip\";s:13:\"deskscene.zip\";s:3:\"uid\";s:32:\"172a1a89a3e3b333cb4dbeb238f534c5\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";s:7:\"preview\";s:49:\"http://revolution.themepunch.com/hero-desk-scene/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:135:\"<span class=\"ttm_content\">A beautiful desk scene with a cool reveal effect when scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:61;a:20:{s:2:\"id\";s:2:\"62\";s:5:\"title\";s:17:\"Clean News Slider\";s:5:\"alias\";s:15:\"cleannewsslider\";s:3:\"zip\";s:19:\"cleannewsslider.zip\";s:3:\"uid\";s:32:\"82c3f521fe31b80984be0f19e1a9899e\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:132:\"<span class=\"ttm_content\">A slideshow example with clean content and thumbnail navigation.</span>\r\n<span class=\"ttm_space\"></span>\r\n\";s:11:\"setup_notes\";s:308:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:62;a:20:{s:2:\"id\";s:2:\"63\";s:5:\"title\";s:13:\"Image Gallery\";s:5:\"alias\";s:12:\"imagegallery\";s:3:\"zip\";s:16:\"imagegallery.zip\";s:3:\"uid\";s:32:\"cef1d75357df2cb53b990c74a214813e\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">A photo gallery suitable to display your images using <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to their potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:63;a:20:{s:2:\"id\";s:2:\"64\";s:5:\"title\";s:19:\"Standard WP Gallery\";s:5:\"alias\";s:19:\"standard-wp-gallery\";s:3:\"zip\";s:23:\"standard-wp-gallery.zip\";s:3:\"uid\";s:32:\"632035b8a27652d8081dbdfa343dc93d\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";s:7:\"preview\";s:64:\"http://revolution.themepunch.com/wordpress-photo-gallery-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1000\";s:6:\"height\";s:3:\"667\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A photo gallery that uses the \"Standard WP Gallery\" add-on to display images.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:441:\"<span class=\"ttm_content\">Please follow the setup guide on the \"Standard WP Gallery\" add-on page.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";s:166:\"[{\"path\":\"revslider-gallery-addon\\/revslider-gallery-addon.php\",\"name\":\"WP Gallery AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/wordpress-photo-gallery-plugin\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:64;a:20:{s:2:\"id\";s:2:\"65\";s:5:\"title\";s:21:\"Clean News Post Based\";s:5:\"alias\";s:21:\"clean-news-post-based\";s:3:\"zip\";s:25:\"clean-news-post-based.zip\";s:3:\"uid\";s:32:\"f4cf5bbe51afa5a361754bb081cbabf2\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";s:7:\"preview\";s:55:\"http://revolution.themepunch.com/wordpress-news-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:125:\"<span class=\"ttm_content\"> This slider is automatically populated by WordPress posts.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:447:\"<span class=\"ttm_content\">The content source is set to <a href=\"https://www.themepunch.com/revslider-doc/special-content-sources/\" target=\"_blank\">\"Post-Based Slider\"</a>. Make sure to select the post type you want to display in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:9:\"postbased\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:65;a:20:{s:2:\"id\";s:2:\"66\";s:5:\"title\";s:22:\"Interactive Whiteboard\";s:5:\"alias\";s:21:\"interactivewhiteboard\";s:3:\"zip\";s:25:\"interactivewhiteboard.zip\";s:3:\"uid\";s:32:\"058b4af535d6c6c7bcec5225845e3eb4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";s:7:\"preview\";s:77:\"http://revolution.themepunch.com/interactive-whiteboard-animation-free-addon/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:5:\"5.2.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:269:\"<span class=\"ttm_content\">This is the example slider from the Whiteboard add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used to achieve certain effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:572:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/revslider-doc/add-on-whiteboard/\" target=\"_blank\">Whiteboard add-on</a> to be installed. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:185:\"[{\"path\":\"revslider-whiteboard-addon\\/revslider-whiteboard-addon.php\",\"name\":\"Whiteboard AddOn\",\"url\":\"http:\\/\\/revolution.themepunch.com\\/interactive-whiteboard-animation-free-addon\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:66;a:20:{s:2:\"id\";s:2:\"68\";s:5:\"title\";s:17:\"Innovation Slider\";s:5:\"alias\";s:10:\"innovation\";s:3:\"zip\";s:14:\"innovation.zip\";s:3:\"uid\";s:32:\"d3440b69126d9c186fddc713b18b0002\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2016/\";s:7:\"version\";s:5:\"1.0.5\";s:8:\"required\";s:7:\"5.2.3.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:258:\"<span class=\"ttm_content\">A full-screen slider with an elegant fade-out parallax effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:516:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images, videos and texts.<br/>For further configuration options please view the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">\"Custom CSS/JS\"</a> section in the slider settings.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"2016-03-29 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:67;a:23:{s:2:\"id\";s:2:\"69\";s:5:\"title\";s:25:\"Dark Content Block - Menu\";s:5:\"alias\";s:24:\"dark-fullsite-block-menu\";s:3:\"zip\";s:34:\"packs/dark-fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"bf4bd226719d3c3d3146592976e31ca1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:68;a:23:{s:2:\"id\";s:2:\"70\";s:5:\"title\";s:25:\"Dark Content Block - Hero\";s:5:\"alias\";s:21:\"dark-fullsite-block-1\";s:3:\"zip\";s:31:\"packs/dark-fullsite-block-1.zip\";s:3:\"uid\";s:32:\"d8859245fe600288ca932dc29aca751f\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:69;a:23:{s:2:\"id\";s:2:\"71\";s:5:\"title\";s:26:\"Dark Content Block - About\";s:5:\"alias\";s:27:\"dark-fullsite-block-2-about\";s:3:\"zip\";s:37:\"packs/dark-fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"298401901521a197a8294c1b4f73df3e\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:70;a:23:{s:2:\"id\";s:2:\"72\";s:5:\"title\";s:29:\"Dark Content Block - Services\";s:5:\"alias\";s:30:\"dark-fullsite-block-3-services\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"8da3ed605472ed6a26c745fb52f85f82\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:71;a:23:{s:2:\"id\";s:2:\"73\";s:5:\"title\";s:29:\"Dark Content Block - Products\";s:5:\"alias\";s:30:\"dark-fullsite-block-4-products\";s:3:\"zip\";s:40:\"packs/dark-fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"99e4f40399d20261a6131043d0e50b0c\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:448:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\r\n\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:72;a:23:{s:2:\"id\";s:2:\"74\";s:5:\"title\";s:33:\"Dark Content Block - Testimonials\";s:5:\"alias\";s:34:\"dark-fullsite-block-5-testimonials\";s:3:\"zip\";s:44:\"packs/dark-fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"2f9121e0eedd51afe85e233d0743acab\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:73;a:23:{s:2:\"id\";s:2:\"75\";s:5:\"title\";s:28:\"Dark Content Block - Callout\";s:5:\"alias\";s:29:\"dark-fullsite-block-6-callout\";s:3:\"zip\";s:39:\"packs/dark-fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"55fbecb113ff21f050be7adc08637329\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:74;a:23:{s:2:\"id\";s:2:\"76\";s:5:\"title\";s:27:\"Dark Content Block - Footer\";s:5:\"alias\";s:28:\"dark-fullsite-block-7-footer\";s:3:\"zip\";s:38:\"packs/dark-fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"2ff517f5c7c54e3e0c2dd733cfd3400e\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:75;a:23:{s:2:\"id\";s:2:\"77\";s:5:\"title\";s:26:\"Light Content Block - Menu\";s:5:\"alias\";s:19:\"fullsite-block-menu\";s:3:\"zip\";s:29:\"packs/fullsite-block-menu.zip\";s:3:\"uid\";s:32:\"8010971f34387d5f94a1f4e577ef382a\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:76;a:23:{s:2:\"id\";s:2:\"78\";s:5:\"title\";s:26:\"Light Content Block - Hero\";s:5:\"alias\";s:15:\"fullsite-block1\";s:3:\"zip\";s:25:\"packs/fullsite-block1.zip\";s:3:\"uid\";s:32:\"45bf7179843e01ce112e8ec754b0455c\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:77;a:23:{s:2:\"id\";s:2:\"79\";s:5:\"title\";s:27:\"Light Content Block - About\";s:5:\"alias\";s:22:\"fullsite-block-2-about\";s:3:\"zip\";s:32:\"packs/fullsite-block-2-about.zip\";s:3:\"uid\";s:32:\"8402b460638a746d36433cb161440b7d\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:78;a:23:{s:2:\"id\";s:2:\"80\";s:5:\"title\";s:30:\"Light Content Block - Services\";s:5:\"alias\";s:25:\"fullsite-block-3-services\";s:3:\"zip\";s:35:\"packs/fullsite-block-3-services.zip\";s:3:\"uid\";s:32:\"7b8cea27f4d6ae17c5e1eae12457bd06\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:79;a:23:{s:2:\"id\";s:2:\"81\";s:5:\"title\";s:30:\"Light Content Block - Products\";s:5:\"alias\";s:25:\"fullsite-block-4-products\";s:3:\"zip\";s:35:\"packs/fullsite-block-4-products.zip\";s:3:\"uid\";s:32:\"d148935362d7122636cda0635eae4be7\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:80;a:23:{s:2:\"id\";s:2:\"82\";s:5:\"title\";s:34:\"Light Content Block - Testimonials\";s:5:\"alias\";s:29:\"fullsite-block-5-testimonials\";s:3:\"zip\";s:39:\"packs/fullsite-block-5-testimonials.zip\";s:3:\"uid\";s:32:\"06255bfd421e40f71fa8197b839dbf03\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:81;a:23:{s:2:\"id\";s:2:\"83\";s:5:\"title\";s:29:\"Light Content Block - Callout\";s:5:\"alias\";s:24:\"fullsite-block-6-callout\";s:3:\"zip\";s:34:\"packs/fullsite-block-6-callout.zip\";s:3:\"uid\";s:32:\"8a88c3447676b613ec5db2fe5d63315c\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:82;a:23:{s:2:\"id\";s:2:\"84\";s:5:\"title\";s:28:\"Light Content Block - Footer\";s:5:\"alias\";s:23:\"fullsite-block-7-footer\";s:3:\"zip\";s:33:\"packs/fullsite-block-7-footer.zip\";s:3:\"uid\";s:32:\"34300b4407a2093eb2e1e08868fa8319\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:83;a:20:{s:2:\"id\";s:2:\"85\";s:5:\"title\";s:12:\"Tech Journal\";s:5:\"alias\";s:11:\"techjournal\";s:3:\"zip\";s:15:\"techjournal.zip\";s:3:\"uid\";s:32:\"7f92d70d1c108378f915b18c2ceb71d6\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:303:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:84;a:20:{s:2:\"id\";s:2:\"86\";s:5:\"title\";s:14:\"Car Dealership\";s:5:\"alias\";s:13:\"cardealership\";s:3:\"zip\";s:17:\"cardealership.zip\";s:3:\"uid\";s:32:\"bb010838855a8ae4d1dd68e139bf169e\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/car-dealership-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"650\";s:11:\"description\";s:130:\"<span class=\"ttm_content\">A full-width slider with navigation direction-based transitions.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:303:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:85;a:20:{s:2:\"id\";s:2:\"87\";s:5:\"title\";s:22:\"FullScreen Menu Slider\";s:5:\"alias\";s:14:\"fullscreenmenu\";s:3:\"zip\";s:18:\"fullscreenmenu.zip\";s:3:\"uid\";s:32:\"6de81d74c4bf193e2e274d43038adc85\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-fullscreen-menu/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:131:\"<span class=\"ttm_content\">A full-screen slider that contains a menu with slide blur effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:86;a:20:{s:2:\"id\";s:2:\"88\";s:5:\"title\";s:18:\"Creative Frontpage\";s:5:\"alias\";s:17:\"creativefrontpage\";s:3:\"zip\";s:21:\"creativefrontpage.zip\";s:3:\"uid\";s:32:\"0636cb368af3bcaa2f68eb0ebefe6439\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/best-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:246:\"<span class=\"ttm_content\">A full-screen slider with hidden slides that are triggered via <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\" target=\"_blank\">\"Layer Actions\"</a>.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:87;a:23:{s:2:\"id\";s:2:\"89\";s:5:\"title\";s:20:\"Website Builder Menu\";s:5:\"alias\";s:19:\"websitebuilder-menu\";s:3:\"zip\";s:29:\"packs/websitebuilder-menu.zip\";s:3:\"uid\";s:32:\"d9e6d9c961f123a3a4847b51fc3ba3a2\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:88;a:23:{s:2:\"id\";s:2:\"90\";s:5:\"title\";s:20:\"Website Builder Hero\";s:5:\"alias\";s:19:\"websitebuilder-hero\";s:3:\"zip\";s:29:\"packs/websitebuilder-hero.zip\";s:3:\"uid\";s:32:\"6cb2df9a41ad2e7865bb9bbea7e39cb5\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1230\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:89;a:23:{s:2:\"id\";s:2:\"91\";s:5:\"title\";s:23:\"Website Builder Clients\";s:5:\"alias\";s:22:\"websitebuilder-clients\";s:3:\"zip\";s:32:\"packs/websitebuilder-clients.zip\";s:3:\"uid\";s:32:\"050e59c43c9a693510d01f29532088cf\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"120\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:90;a:23:{s:2:\"id\";s:2:\"92\";s:5:\"title\";s:24:\"Website Builder Services\";s:5:\"alias\";s:23:\"websitebuilder-services\";s:3:\"zip\";s:33:\"packs/websitebuilder-services.zip\";s:3:\"uid\";s:32:\"48d56d67615efce619ae973ab4358c07\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"558\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:91;a:23:{s:2:\"id\";s:2:\"93\";s:5:\"title\";s:24:\"Website Builder Discover\";s:5:\"alias\";s:23:\"websitebuilder-discover\";s:3:\"zip\";s:33:\"packs/websitebuilder-discover.zip\";s:3:\"uid\";s:32:\"425a08a7be338daea3df02a07ff5c316\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"955\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:92;a:23:{s:2:\"id\";s:2:\"94\";s:5:\"title\";s:22:\"Website Builder Slider\";s:5:\"alias\";s:21:\"websitebuilder-slider\";s:3:\"zip\";s:31:\"packs/websitebuilder-slider.zip\";s:3:\"uid\";s:32:\"9d670b7335016accb590dc8d52bfb6f0\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:93;a:23:{s:2:\"id\";s:2:\"95\";s:5:\"title\";s:28:\"Website Builder CallToAction\";s:5:\"alias\";s:27:\"websitebuilder-calltoaction\";s:3:\"zip\";s:37:\"packs/websitebuilder-calltoaction.zip\";s:3:\"uid\";s:32:\"45851baf9e61f55ed9f5fa9d0beff77e\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"960\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:94;a:23:{s:2:\"id\";s:2:\"96\";s:5:\"title\";s:22:\"Website Builder Footer\";s:5:\"alias\";s:21:\"websitebuilder-footer\";s:3:\"zip\";s:31:\"packs/websitebuilder-footer.zip\";s:3:\"uid\";s:32:\"2732bbe66ef28219d6cc53ce8cc78863\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:95;a:20:{s:2:\"id\";s:2:\"97\";s:5:\"title\";s:21:\"Focus Parallax Effect\";s:5:\"alias\";s:13:\"focusparallax\";s:3:\"zip\";s:17:\"focusparallax.zip\";s:3:\"uid\";s:32:\"13bd15fb3ddf8b9841cb55b89389cc73\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";s:7:\"preview\";s:68:\" https://revolution.themepunch.com/parallax-effect-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:256:\"<span class=\"ttm_content\">A full-screen slider with mouse controlled parallax effects. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:449:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/>Some content is in <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">\"Static / Global Layers\"</a><br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:96;a:20:{s:2:\"id\";s:2:\"98\";s:5:\"title\";s:14:\"Duotone Slider\";s:5:\"alias\";s:7:\"duotone\";s:3:\"zip\";s:11:\"duotone.zip\";s:3:\"uid\";s:32:\"494862ceb6cb7c6658ad7cd36848cccd\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-header-image-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.4\";s:5:\"width\";s:4:\"1200\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:252:\"<span class=\"ttm_content\">A full-screen slider with unique parallax scroll effect. <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:303:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:97;a:23:{s:2:\"id\";s:2:\"99\";s:5:\"title\";s:12:\"Minimal Menu\";s:5:\"alias\";s:6:\"r_menu\";s:3:\"zip\";s:16:\"packs/r_menu.zip\";s:3:\"uid\";s:32:\"30d6a6895db1a5f29b1679061551c9f0\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:98;a:23:{s:2:\"id\";s:3:\"100\";s:5:\"title\";s:12:\"Minimal Hero\";s:5:\"alias\";s:5:\"rhero\";s:3:\"zip\";s:16:\"packs/r_hero.zip\";s:3:\"uid\";s:32:\"b8b46186956f6e66ad0c08e4532bbbde\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"700\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:99;a:23:{s:2:\"id\";s:3:\"101\";s:5:\"title\";s:13:\"Minimal About\";s:5:\"alias\";s:7:\"r_about\";s:3:\"zip\";s:17:\"packs/r_about.zip\";s:3:\"uid\";s:32:\"343010c4b4c03f92888c3e9e95bc2bb1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:100;a:23:{s:2:\"id\";s:3:\"102\";s:5:\"title\";s:16:\"Minimal Products\";s:5:\"alias\";s:10:\"r_products\";s:3:\"zip\";s:20:\"packs/r_products.zip\";s:3:\"uid\";s:32:\"dda93e85c6a4456d132040147f087f39\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1100\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:101;a:23:{s:2:\"id\";s:3:\"103\";s:5:\"title\";s:12:\"Minimal Info\";s:5:\"alias\";s:6:\"r_info\";s:3:\"zip\";s:16:\"packs/r_info.zip\";s:3:\"uid\";s:32:\"d6e368e8fd4862174af6c980389ae530\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:102;a:20:{s:2:\"id\";s:3:\"104\";s:5:\"title\";s:18:\"Inspiration Header\";s:5:\"alias\";s:17:\"inspirationheader\";s:3:\"zip\";s:21:\"inspirationheader.zip\";s:3:\"uid\";s:32:\"69f04b2be0b618fa7e184af83b86b7e7\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/wordpress-theme-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This full-screen hero slider features sequentially animated texts and cool parallax elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:103;a:20:{s:2:\"id\";s:3:\"105\";s:5:\"title\";s:15:\"Magazine Slider\";s:5:\"alias\";s:13:\"magazineposts\";s:3:\"zip\";s:17:\"magazineposts.zip\";s:3:\"uid\";s:32:\"c562f3457e4edbd030959f7c5e6e0f7c\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-magazine-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1400\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">A full-width slider with a mouse-controlled 3D-Parallax effect. Enjoy! <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on layers.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:303:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:104;a:20:{s:2:\"id\";s:3:\"106\";s:5:\"title\";s:11:\"News Header\";s:5:\"alias\";s:17:\"explorationheader\";s:3:\"zip\";s:21:\"explorationheader.zip\";s:3:\"uid\";s:32:\"8f20d5a868c90ded08b835fb9e8307d7\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/wordpress-news-header/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:288:\"<span class=\"ttm_content\">A full-screen slider that is a perfect fit for displaying news on your websites header! Check out <a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> to add links to buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:303:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:105;a:23:{s:2:\"id\";s:3:\"107\";s:5:\"title\";s:23:\"Minimal Website Package\";s:5:\"alias\";s:23:\"minimal-website-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:23:\"minimal-website-package\";s:3:\"img\";s:31:\"packages/template_group_1_1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/minimal-website-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"110\";s:11:\"description\";s:181:\"<span class=\"ttm_content\">The Minimal Website Template is a one-pager website with a unique background color change effect on scrolling down.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:913:\"<span class=\"ttm_content\">\r\nIn the <a href=\"https://www.themepunch.com/faq/custom-css-or-javascript-for-version-5-0/\" target=\"_blank\">Custom JavaScript</a> section of the \"Minimal Menu\" Template you can scroll down to the color change section.<br/>\r\nFor any elements you want to background color change in addition to the sites body, add this class to the <a href=\"https://www.themepunch.com/revslider-doc/layer-attributes/\" target=\"_blank\">Layers Attributes</a> \".tp-colorchange\".<br/><br/>\r\nIf you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:24:\"Minimal Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"4\";s:9:\"installed\";b:0;}i:106;a:23:{s:2:\"id\";s:3:\"108\";s:5:\"title\";s:23:\"Website Builder Package\";s:5:\"alias\";s:22:\"websitebuilder-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"websitebuilder-package\";s:3:\"img\";s:29:\"packages/template_group_2.jpg\";s:7:\"preview\";s:60:\"https://revolution.themepunch.com/wordpress-website-builder/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.2.5.3\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"60\";s:11:\"description\";s:191:\"<span class=\"ttm_content\">The Website Builder Package is a clean, usable collection website modules that can be used all together or each on their own.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:15:\"Website Builder\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"3\";s:9:\"installed\";b:0;}i:107;a:23:{s:2:\"id\";s:3:\"109\";s:5:\"title\";s:26:\"Dark Content Block Package\";s:5:\"alias\";s:27:\"dark-fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"dark-fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_4.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/dark-wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:13:\"Fullsite Dark\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"2\";s:9:\"installed\";b:0;}i:108;a:23:{s:2:\"id\";s:3:\"110\";s:5:\"title\";s:27:\"Light Content Block Package\";s:5:\"alias\";s:22:\"fullsite-block-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"fullsite-block-package\";s:3:\"img\";s:29:\"packages/template_group_3.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/wordpress-parallax-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.2.5\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">This Minimal Website Template has some sleek parallax effects and on-demand loading modules.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:8:\"Fullsite\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"1\";s:9:\"installed\";b:0;}i:109;a:20:{s:2:\"id\";s:3:\"111\";s:5:\"title\";s:17:\"Typewriter Effect\";s:5:\"alias\";s:16:\"typewritereffect\";s:3:\"zip\";s:20:\"typewritereffect.zip\";s:3:\"uid\";s:32:\"d6f8bae06cc4a7b158d680c01e59ddc2\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";s:7:\"preview\";s:62:\"https://revolution.themepunch.com/wordpress-typewriter-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:263:\"<span class=\"ttm_content\">This is the example slider from the Typewriter add-on preview.<br/><a href=\"https://www.themepunch.com/revslider-doc/layer-settings/#layeractions\">\"Layer Actions\"</a> are used for links on buttons.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:426:\"<span class=\"ttm_content\">This slider template requires the <a href=\"https://www.themepunch.com/revslider-doc/add-on-typewriter/\" target=\"_blank\">Typewriter add-on</a> to be installed. Edit the slides to change images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:170:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-on-typewriter\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:110;a:20:{s:2:\"id\";s:3:\"112\";s:5:\"title\";s:17:\"Blend Mode Header\";s:5:\"alias\";s:15:\"blendmodeheader\";s:3:\"zip\";s:19:\"blendmodeheader.zip\";s:3:\"uid\";s:32:\"2e44e976596d757aab40ffa28086dcf9\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";s:7:\"preview\";s:57:\"https://revolution.themepunch.com/blend-mode-hero-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:163:\"<span class=\"ttm_content\">This full-screen hero header with HMTL5 background video, utilizes the new 5.3 blend mode effect.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:326:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:111;a:23:{s:2:\"id\";s:3:\"113\";s:5:\"title\";s:17:\"Themeplicity Menu\";s:5:\"alias\";s:17:\"themeplicity_menu\";s:3:\"zip\";s:27:\"packs/themeplicity_menu.zip\";s:3:\"uid\";s:32:\"7d5c1e75eaafa63683895a32a62f4ce0\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:112;a:23:{s:2:\"id\";s:3:\"114\";s:5:\"title\";s:19:\"Themeplicity Header\";s:5:\"alias\";s:19:\"themeplicity_header\";s:3:\"zip\";s:29:\"packs/themeplicity_header.zip\";s:3:\"uid\";s:32:\"907091e4d58acc7d12f802de2f280b7d\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1000\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:113;a:23:{s:2:\"id\";s:3:\"115\";s:5:\"title\";s:18:\"Themeplicity Offer\";s:5:\"alias\";s:18:\"themeplicity_offer\";s:3:\"zip\";s:28:\"packs/themeplicity_offer.zip\";s:3:\"uid\";s:32:\"1bd8f9aa2f3e340449664c65ba17fb51\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"330\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:114;a:23:{s:2:\"id\";s:3:\"116\";s:5:\"title\";s:23:\"Themeplicity What We Do\";s:5:\"alias\";s:21:\"themeplicity_whatwedo\";s:3:\"zip\";s:31:\"packs/themeplicity_whatwedo.zip\";s:3:\"uid\";s:32:\"aa800a44b5a3eab30414dde1f32bfed7\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:115;a:23:{s:2:\"id\";s:3:\"117\";s:5:\"title\";s:21:\"Themeplicity Projects\";s:5:\"alias\";s:21:\"themeplicity_projects\";s:3:\"zip\";s:31:\"packs/themeplicity_projects.zip\";s:3:\"uid\";s:32:\"5f61b3a13033ba6a51a18270163e0a50\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"813\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:116;a:23:{s:2:\"id\";s:3:\"118\";s:5:\"title\";s:24:\"Themeplicity Whats Great\";s:5:\"alias\";s:23:\"themeplicity_whatsgreat\";s:3:\"zip\";s:33:\"packs/themeplicity_whatsgreat.zip\";s:3:\"uid\";s:32:\"ce9faf8c55ed2e33e091b23667e7173b\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:117;a:23:{s:2:\"id\";s:3:\"119\";s:5:\"title\";s:19:\"Themeplicity Tables\";s:5:\"alias\";s:19:\"themeplicity_tables\";s:3:\"zip\";s:29:\"packs/themeplicity_tables.zip\";s:3:\"uid\";s:32:\"f28bb4cd20ec1f29a1de7da5ad09c293\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1059\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:118;a:23:{s:2:\"id\";s:3:\"120\";s:5:\"title\";s:24:\"Themeplicity Contactform\";s:5:\"alias\";s:24:\"themeplicity_contactform\";s:3:\"zip\";s:34:\"packs/themeplicity_contactform.zip\";s:3:\"uid\";s:32:\"3e59da970f534490774fa8e053f5b5ed\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:4:\"1067\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:119;a:23:{s:2:\"id\";s:3:\"121\";s:5:\"title\";s:19:\"Themeplicity Footer\";s:5:\"alias\";s:19:\"themeplicity_footer\";s:3:\"zip\";s:29:\"packs/themeplicity_footer.zip\";s:3:\"uid\";s:32:\"89eeb0b4b852c5f743e1bd76e3e8f2ef\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"780\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:120;a:23:{s:2:\"id\";s:3:\"122\";s:5:\"title\";s:20:\"Themeplicity Package\";s:5:\"alias\";s:20:\"themeplicity-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:20:\"themeplicity-package\";s:3:\"img\";s:38:\"packages/templatepack_themeplicity.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">The Themeplicity Website Template uses the new groups & rows feature introduced in 5.3 to its full potential.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:29:\"Themeplicity Website Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"5\";s:9:\"installed\";b:0;}i:121;a:23:{s:2:\"id\";s:3:\"123\";s:5:\"title\";s:19:\"Nice And Clean Menu\";s:5:\"alias\";s:17:\"NiceAndClean_Menu\";s:3:\"zip\";s:27:\"packs/NiceAndClean_Menu.zip\";s:3:\"uid\";s:32:\"3f8c01e26c7446428e045c4b1180776d\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:2:\"90\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:122;a:23:{s:2:\"id\";s:3:\"124\";s:5:\"title\";s:21:\"Nice And Clean Header\";s:5:\"alias\";s:19:\"NiceAndClean_Header\";s:3:\"zip\";s:29:\"packs/NiceAndClean_Header.zip\";s:3:\"uid\";s:32:\"76931033addb20a62557c2845a4d6a11\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:123;a:23:{s:2:\"id\";s:3:\"125\";s:5:\"title\";s:23:\"Nice And Clean Services\";s:5:\"alias\";s:21:\"NiceAndClean_Services\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Services.zip\";s:3:\"uid\";s:32:\"02f72ec606800c8215bcadea09624e87\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"360\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:124;a:23:{s:2:\"id\";s:3:\"126\";s:5:\"title\";s:20:\"Nice And Clean About\";s:5:\"alias\";s:18:\"NiceAndClean_About\";s:3:\"zip\";s:28:\"packs/NiceAndClean_About.zip\";s:3:\"uid\";s:32:\"9510f6fdbb8e9473e8c22f692a6bc89f\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:125;a:23:{s:2:\"id\";s:3:\"127\";s:5:\"title\";s:20:\"Nice And Clean Video\";s:5:\"alias\";s:18:\"niceandclean_video\";s:3:\"zip\";s:28:\"packs/niceandclean_video.zip\";s:3:\"uid\";s:32:\"2bb9e1ad329435cc500542d0c7025e15\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:126;a:23:{s:2:\"id\";s:3:\"128\";s:5:\"title\";s:25:\"Nice And Clean Highlights\";s:5:\"alias\";s:23:\"niceandclean_highlights\";s:3:\"zip\";s:33:\"packs/niceandclean_highlights.zip\";s:3:\"uid\";s:32:\"ff396af163a79d2d5b35db17c1ea7aa6\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:127;a:23:{s:2:\"id\";s:3:\"129\";s:5:\"title\";s:23:\"Nice And Clean Projects\";s:5:\"alias\";s:21:\"NiceAndClean_Projects\";s:3:\"zip\";s:31:\"packs/NiceAndClean_Projects.zip\";s:3:\"uid\";s:32:\"1e6695959ef83f8975b52289c08a4d44\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:3:\"600\";s:6:\"height\";s:3:\"600\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:128;a:23:{s:2:\"id\";s:3:\"130\";s:5:\"title\";s:25:\"Nice And Clean TextBlocks\";s:5:\"alias\";s:23:\"niceandclean_textblocks\";s:3:\"zip\";s:33:\"packs/niceandclean_textblocks.zip\";s:3:\"uid\";s:32:\"1f33eb839c96ea3225faff1c8d382b05\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:129;a:23:{s:2:\"id\";s:3:\"131\";s:5:\"title\";s:22:\"Nice And Clean CallOut\";s:5:\"alias\";s:20:\"niceandclean_callout\";s:3:\"zip\";s:30:\"packs/niceandclean_callout.zip\";s:3:\"uid\";s:32:\"54d4d9bcf79d357de0e614700e909863\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"500\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:130;a:23:{s:2:\"id\";s:3:\"132\";s:5:\"title\";s:21:\"Nice And Clean Footer\";s:5:\"alias\";s:19:\"niceandclean_footer\";s:3:\"zip\";s:29:\"packs/niceandclean_footer.zip\";s:3:\"uid\";s:32:\"5492d7f72b3771a4e754f91bda063b15\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"400\";s:11:\"description\";s:157:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:568:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">For using the social sharing buttons, please install the social sharing add-on.<br><br></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"9\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:131;a:20:{s:2:\"id\";s:3:\"134\";s:5:\"title\";s:15:\"80s Style Intro\";s:5:\"alias\";s:3:\"80s\";s:3:\"zip\";s:7:\"80s.zip\";s:3:\"uid\";s:32:\"98881ab51f71b2fbdb220752d321b15a\";s:3:\"img\";s:14:\"80s/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/80s-style-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:139:\"<span class=\"ttm_content\">This intro hero block takes you back to the 80\'s with some funky effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:343:\"<span class=\"ttm_content\">This is a \"Default\" content hero slider. Just edit the slide to change the background image and text.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:132;a:20:{s:2:\"id\";s:3:\"135\";s:5:\"title\";s:18:\"Blur Effect Slider\";s:5:\"alias\";s:10:\"blurslider\";s:3:\"zip\";s:14:\"blurslider.zip\";s:3:\"uid\";s:32:\"83bd6e1ccef83f03c944fa05b0a2d879\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/blur-effect-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:147:\"<span class=\"ttm_content\">This slider makes use of the brand new blur effects available with version 5.3.1.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:341:\"<span class=\"ttm_content\">This is a \"Default\" content slider. Just edit the slides to change the background images and texts.<br/><br/></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:133;a:20:{s:2:\"id\";s:3:\"136\";s:5:\"title\";s:18:\"Coming Soon Add-On\";s:5:\"alias\";s:15:\"ComingSoonAddon\";s:3:\"zip\";s:19:\"ComingSoonAddon.zip\";s:3:\"uid\";s:32:\"51258492055b940099eb96ba52901fa9\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/coming-soon-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:133:\"<span class=\"ttm_content\">This slider template makes use of the brand new Coming Soon Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:197:\"[{\"path\":\"revslider-maintenance-addon\\/revslider-maintenance-addon.php\",\"name\":\"Coming Soon & Maintenance AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-coming-soon-maintenance\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:134;a:23:{s:2:\"id\";s:3:\"137\";s:5:\"title\";s:22:\"Nice And Clean Package\";s:5:\"alias\";s:22:\"nice-and-clean-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:22:\"nice-and-clean-package\";s:3:\"img\";s:38:\"packages/templatepack_niceandclean.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/nice-clean-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"800\";s:11:\"description\";s:242:\"<span class=\"ttm_content\">The Nice & Clean Website Template uses groups & rows for a fully responsive website experience. Elegant blur effects available since version 5.3.1 make this template stand out!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"Nice & Clean Template\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"6\";s:9:\"installed\";b:0;}i:135;a:20:{s:2:\"id\";s:3:\"138\";s:5:\"title\";s:18:\"Snow Effect Add-On\";s:5:\"alias\";s:9:\"snowaddon\";s:3:\"zip\";s:13:\"snowaddon.zip\";s:3:\"uid\";s:32:\"7408d8567b8af5716eaabd390422e51b\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";s:7:\"preview\";s:53:\"https://revolution.themepunch.com/snow-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.1\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:183:\"<span class=\"ttm_content\">Add a pleasant Snow Effect to your website with this slider template. Make sure to install the \"Holiday Snow\" Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:164:\"[{\"path\":\"revslider-snow-addon\\/revslider-snow-addon.php\",\"name\":\"Snow AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:136;a:20:{s:2:\"id\";s:3:\"139\";s:5:\"title\";s:19:\"Particle Effect One\";s:5:\"alias\";s:19:\"particle-effect-one\";s:3:\"zip\";s:23:\"particle-effect-one.zip\";s:3:\"uid\";s:32:\"a4611c906e35ca60f617da86217b5299\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/particle-effect-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:468:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND MODE IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:137;a:20:{s:2:\"id\";s:3:\"140\";s:5:\"title\";s:19:\"Particle Effect Two\";s:5:\"alias\";s:19:\"particle-effect-two\";s:3:\"zip\";s:23:\"particle-effect-two.zip\";s:3:\"uid\";s:32:\"b8ecbf43374a69e4ab329ea834862ef8\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/particle-effect-intro/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:138;a:20:{s:2:\"id\";s:3:\"141\";s:5:\"title\";s:21:\"Particle Effect Three\";s:5:\"alias\";s:21:\"particle-effect-three\";s:3:\"zip\";s:25:\"particle-effect-three.zip\";s:3:\"uid\";s:32:\"b33bc2c5655d8d51cd17c3740f72e748\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/particle-background-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:143:\"<span class=\"ttm_content\">A unique particle effect that can serve as a stunning intro for your website.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:463:\"<span class=\"ttm_content\">The blend mode effect is achieved through a layer image with CSS blend mode. If you want to customize this effect, select the \"BLEND IMAGE\" layer and go to \"advanced style -> filters -> blend mode\".</span>\r\n<span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:139;a:20:{s:2:\"id\";s:3:\"142\";s:5:\"title\";s:16:\"Portfolio Viewer\";s:5:\"alias\";s:15:\"portfolioviewer\";s:3:\"zip\";s:19:\"portfolioviewer.zip\";s:3:\"uid\";s:32:\"9ac7230ff5b880fb6c8f28fbbc123b3b\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-portfolio-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:207:\"<span class=\"ttm_content\">This slider template can be used to display your portfolio highlights in a stunning way, utilising out free particles add-on and blend modes.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:421:\"<span class=\"ttm_content\">The navigation for the slides is found in the <a href=\"https://www.themepunch.com/revslider-doc/second-steps/#staticlayers\" target=\"_blank\">Static Layers</a>.</span><span class=\"ttm_space\"></span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:140;a:20:{s:2:\"id\";s:3:\"143\";s:5:\"title\";s:12:\"App Showcase\";s:5:\"alias\";s:11:\"appshowcase\";s:3:\"zip\";s:15:\"appshowcase.zip\";s:3:\"uid\";s:32:\"082aef931b0369080bc30c3a2a0c331f\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/app-showcase-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.3.0\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:239:\"<span class=\"ttm_content\">This template shows off our new \"Polyfold Effects\" Add-On in form of an App product showcase module. Get started now and illustrate your Apps key features in a striking way!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:190:\"[{\"path\":\"revslider-polyfold-addon\\/revslider-polyfold-addon.php\",\"name\":\"Polyfold Scroll Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:141;a:20:{s:2:\"id\";s:3:\"144\";s:5:\"title\";s:19:\"Gravity Design Hero\";s:5:\"alias\";s:13:\"gravitydesign\";s:3:\"zip\";s:17:\"gravitydesign.zip\";s:3:\"uid\";s:32:\"7bdbe73a6e5bf290cb4412708ac4134d\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/best-wordpress-slider-plugin-2017/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.3.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:205:\"<span class=\"ttm_content\">This hero template shows a striking mouse-parallax scene and cool particle effects. Requires our \"Particle Effects\" Add-on to be installed.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:142;a:20:{s:2:\"id\";s:3:\"145\";s:5:\"title\";s:14:\"404 Error Page\";s:5:\"alias\";s:12:\"404errorpage\";s:3:\"zip\";s:16:\"404errorpage.zip\";s:3:\"uid\";s:32:\"2dc62d802b42b73088651cac17d0c486\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";s:7:\"preview\";s:58:\"https://revolution.themepunch.com/404-error-page-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.3.1.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:227:\"<span class=\"ttm_content\">This template can be used as a custom error page on your website with our new 404 page Add-On. Of course you can also use this template as a regular hero header.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:352:\"[{\"path\":\"revslider-404-addon\\/revslider-404-addon.php\",\"name\":\"404 Page Add-On\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"},{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:143;a:20:{s:2:\"id\";s:3:\"146\";s:5:\"title\";s:16:\"Carousel Gallery\";s:5:\"alias\";s:15:\"carouselgallery\";s:3:\"zip\";s:19:\"carouselgallery.zip\";s:3:\"uid\";s:32:\"041838fd32923c40e15c998f0ea19526\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/wordpress-carousel-gallery/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:159:\"<span class=\"ttm_content\">This carousel gallery features a subtle parallax effect, html5 video and a fullscreen button.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:144;a:20:{s:2:\"id\";s:3:\"147\";s:5:\"title\";s:16:\"Filmstrip Effect\";s:5:\"alias\";s:9:\"filmstrip\";s:3:\"zip\";s:13:\"filmstrip.zip\";s:3:\"uid\";s:32:\"7bd142f272cc15d86998a79520e9e581\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";s:7:\"preview\";s:61:\"https://revolution.themepunch.com/filmstrip-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">This template uses our Filmstrip Add-On to display a continuous scrolling set of images per slide.\r\n There is lots of customization options like animation speed and direction.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:191:\"[{\"path\":\"revslider-filmstrip-addon\\/revslider-filmstrip-addon.php\",\"name\":\"Background FilmStrip Add-On\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:145;a:20:{s:2:\"id\";s:3:\"148\";s:5:\"title\";s:11:\"Space Opera\";s:5:\"alias\";s:10:\"spaceopera\";s:3:\"zip\";s:14:\"spaceopera.zip\";s:3:\"uid\";s:32:\"a2c8bffcb138a86c0f373adebb6de046\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";s:7:\"preview\";s:59:\"https://revolution.themepunch.com/space-opera-presentation/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">The Space Opera template can be enjoyed as a slow paced, full-screen slider experience and is great to show your most prominent photos.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:146;a:20:{s:2:\"id\";s:3:\"149\";s:5:\"title\";s:13:\"Website Intro\";s:5:\"alias\";s:12:\"websiteintro\";s:3:\"zip\";s:16:\"websiteintro.zip\";s:3:\"uid\";s:32:\"348df76d999456aa19be58c9df56ae20\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/website-intro-wordpress-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:274:\"<span class=\"ttm_content\">Making use of our new Slicey Add-On, this slider show a really cool effect you just have to experience yourself! Just change the slides background images and the existing slices will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:182:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:147;a:20:{s:2:\"id\";s:3:\"150\";s:5:\"title\";s:13:\"Mask Showcase\";s:5:\"alias\";s:12:\"maskshowcase\";s:3:\"zip\";s:16:\"maskshowcase.zip\";s:3:\"uid\";s:32:\"fc943c31e2da9c63b252aeabf554d128\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";s:7:\"preview\";s:56:\"https://revolution.themepunch.com/minimal-mask-showcase/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:187:\"<span class=\"ttm_content\">The Mask Showcase template uses gradients and the amazing block layer animations. A minimal slider treat for any website!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:148;a:20:{s:2:\"id\";s:3:\"151\";s:5:\"title\";s:20:\"Parallax Zoom Slices\";s:5:\"alias\";s:18:\"parallaxzoomslices\";s:3:\"zip\";s:22:\"parallaxzoomslices.zip\";s:3:\"uid\";s:32:\"83537cae05709ddb9bcb7375470a5894\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";s:7:\"preview\";s:72:\"https://revolution.themepunch.com/parallax-zoom-slices-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:3:\"5.4\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:249:\"<span class=\"ttm_content\">This template uses the Slicey Add-On to add a unique effect to slide background images. You can simple change the background images and the slice effect will automatically be applied.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:182:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:149;a:20:{s:2:\"id\";s:3:\"152\";s:5:\"title\";s:22:\"Double Exposure Effect\";s:5:\"alias\";s:20:\"doubleexposureeffect\";s:3:\"zip\";s:24:\"doubleexposureeffect.zip\";s:3:\"uid\";s:32:\"8d9229b5cbcf5bda5fbdc6a8e01a2b8c\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/wordpress-double-exposure-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:175:\"<span class=\"ttm_content\">Make any website special with the double exposure effect slider. Use as a header module or anywhere you want!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:150;a:20:{s:2:\"id\";s:3:\"153\";s:5:\"title\";s:24:\"Mountain Parallax Header\";s:5:\"alias\";s:22:\"mountainparallaxheader\";s:3:\"zip\";s:26:\"mountainparallaxheader.zip\";s:3:\"uid\";s:32:\"8dc64663f317a2abdf179bbe341d016e\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";s:7:\"preview\";s:69:\"https://revolution.themepunch.com/mountain-wordpress-parallax-header/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:192:\"<span class=\"ttm_content\">This template is a cool intro for any page, featuring a striking parallax effect. Just change texts and links and you\'re done!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:151;a:23:{s:2:\"id\";s:3:\"154\";s:5:\"title\";s:26:\"GoodNews One-Pager Package\";s:5:\"alias\";s:26:\"goodnews-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"goodnews-one-pager-package\";s:3:\"img\";s:44:\"packages/templatepack_goodnews_one_pager.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:3:{i:0;s:8:\"carousel\";i:1;s:6:\"slider\";i:2;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:152;a:23:{s:2:\"id\";s:3:\"155\";s:5:\"title\";s:13:\"GoodNews Menu\";s:5:\"alias\";s:12:\"goodnewsmenu\";s:3:\"zip\";s:22:\"packs/goodnewsmenu.zip\";s:3:\"uid\";s:32:\"4cbc82501ff340fcdc0acf7eb3ba2640\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:158:\"<span class=\"ttm_content\">You can use this slider as a module on your website or install it as part of a slider pack. </span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:153;a:23:{s:2:\"id\";s:3:\"156\";s:5:\"title\";s:15:\"GoodNews Header\";s:5:\"alias\";s:14:\"goodnewsheader\";s:3:\"zip\";s:24:\"packs/goodnewsheader.zip\";s:3:\"uid\";s:32:\"c6660b6bdbf596f38466f569596f5259\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:154;a:23:{s:2:\"id\";s:3:\"157\";s:5:\"title\";s:18:\"GoodNews Whats Hot\";s:5:\"alias\";s:16:\"goodnewswhatshot\";s:3:\"zip\";s:26:\"packs/goodnewswhatshot.zip\";s:3:\"uid\";s:32:\"cb841ce64a99a6644adab049cf5405cd\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:155;a:23:{s:2:\"id\";s:3:\"158\";s:5:\"title\";s:17:\"GoodNews Featured\";s:5:\"alias\";s:16:\"goodnewsfeatured\";s:3:\"zip\";s:26:\"packs/goodnewsfeatured.zip\";s:3:\"uid\";s:32:\"00bde4b09e3700da7183999eaf137ccc\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:156;a:23:{s:2:\"id\";s:3:\"159\";s:5:\"title\";s:18:\"GoodNews Spotlight\";s:5:\"alias\";s:17:\"goodnewsspotlight\";s:3:\"zip\";s:27:\"packs/goodnewsspotlight.zip\";s:3:\"uid\";s:32:\"138076241a828e1c5764379944755f2b\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:157;a:23:{s:2:\"id\";s:3:\"160\";s:5:\"title\";s:17:\"GoodNews Carousel\";s:5:\"alias\";s:16:\"goodnewscarousel\";s:3:\"zip\";s:26:\"packs/goodnewscarousel.zip\";s:3:\"uid\";s:32:\"d29d4460a6015e30d08d2714232d3768\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:8:\"carousel\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:158;a:23:{s:2:\"id\";s:3:\"161\";s:5:\"title\";s:16:\"GoodNews Callout\";s:5:\"alias\";s:15:\"goodnewscallout\";s:3:\"zip\";s:25:\"packs/goodnewscallout.zip\";s:3:\"uid\";s:32:\"d9568b3193e96577fae630b3a6728785\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:159;a:23:{s:2:\"id\";s:3:\"162\";s:5:\"title\";s:15:\"GoodNews Footer\";s:5:\"alias\";s:14:\"goodnewsfooter\";s:3:\"zip\";s:24:\"packs/goodnewsfooter.zip\";s:3:\"uid\";s:32:\"34f43f891cb8d55375149dc4bbc38298\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"GoodNews One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"7\";s:9:\"installed\";b:0;}i:160;a:23:{s:2:\"id\";s:3:\"163\";s:5:\"title\";s:29:\"GoodNews Content Page Package\";s:5:\"alias\";s:29:\"goodnews-content-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:29:\"goodnews-content-page-package\";s:3:\"img\";s:55:\"packages/templatepack_goodnews_content_page_package.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:161;a:23:{s:2:\"id\";s:3:\"164\";s:5:\"title\";s:18:\"GoodNews Menu Back\";s:5:\"alias\";s:16:\"goodnewsmenuback\";s:3:\"zip\";s:26:\"packs/goodnewsmenuback.zip\";s:3:\"uid\";s:32:\"1340d1aeefba497a7d404d12a1fceed4\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:162;a:23:{s:2:\"id\";s:3:\"165\";s:5:\"title\";s:20:\"GoodNews Blog Header\";s:5:\"alias\";s:18:\"goodnewsblogheader\";s:3:\"zip\";s:28:\"packs/goodnewsblogheader.zip\";s:3:\"uid\";s:32:\"abc4d7c1e48475c6def05f1f6d8bf564\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:163;a:23:{s:2:\"id\";s:3:\"166\";s:5:\"title\";s:21:\"GoodNews Blog Content\";s:5:\"alias\";s:19:\"goodnewsblogcontent\";s:3:\"zip\";s:29:\"packs/goodnewsblogcontent.zip\";s:3:\"uid\";s:32:\"bbf34563da6db2779c29599b503b07e9\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:164;a:23:{s:2:\"id\";s:3:\"167\";s:5:\"title\";s:21:\"GoodNews Testimonials\";s:5:\"alias\";s:20:\"goodnewstestimonials\";s:3:\"zip\";s:30:\"packs/goodnewstestimonials.zip\";s:3:\"uid\";s:32:\"606b7336e86f69c567542d3f43712b56\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:165;a:23:{s:2:\"id\";s:3:\"168\";s:5:\"title\";s:20:\"GoodNews Blog Footer\";s:5:\"alias\";s:18:\"goodnewsblogfooter\";s:3:\"zip\";s:28:\"packs/goodnewsblogfooter.zip\";s:3:\"uid\";s:32:\"1fb88aecfb116fde67ce8d52bd3b5f05\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";s:7:\"preview\";s:78:\"https://revolution.themepunch.com/goodnews-responsive-wordpress-theme-content/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:268:\"<span class=\"ttm_content\">The GoodNews One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:21:\"GoodNews Content Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"8\";s:9:\"installed\";b:0;}i:166;a:20:{s:2:\"id\";s:3:\"169\";s:5:\"title\";s:19:\"Before After Slider\";s:5:\"alias\";s:17:\"beforeafterslider\";s:3:\"zip\";s:21:\"beforeafterslider.zip\";s:3:\"uid\";s:32:\"6e615091a1fc3037c24b985ce5136fb2\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";s:7:\"preview\";s:54:\"https://revolution.themepunch.com/before-after-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.3.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:201:\"<span class=\"ttm_content\">This is the example slider for our Before / After Add-On that allows you to create unique presentations with a comparing functionality.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:358:\"<span class=\"ttm_content\">How to install <a href=\"https://revolution.themepunch.com/direct-customer-benefits/#addoninstall\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-beforeafter-addon\\/revslider-beforeafter-addon.php\",\"name\":\"Before After AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:167;a:20:{s:2:\"id\";s:3:\"170\";s:5:\"title\";s:16:\"Product Showcase\";s:5:\"alias\";s:15:\"productshowcase\";s:3:\"zip\";s:19:\"productshowcase.zip\";s:3:\"uid\";s:32:\"a43447670260aaa7e8ff66cedfddb57a\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";s:7:\"preview\";s:68:\"https://revolution.themepunch.com/wordpress-product-showcase-slider/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:165:\"<span class=\"ttm_content\">Looking to sell products effectively? Our product showcase slider is just what you are looking for!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:168;a:20:{s:2:\"id\";s:3:\"171\";s:5:\"title\";s:23:\"Overexposure Transition\";s:5:\"alias\";s:22:\"overexposuretransition\";s:3:\"zip\";s:26:\"overexposuretransition.zip\";s:3:\"uid\";s:32:\"13f16bbe6c6d646c7d0cb817a0d3d181\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";s:7:\"preview\";s:65:\"https://revolution.themepunch.com/overexposure-transition-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">Subtle overexposure transitions and smooth color fade effects make this slider stand out.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:358:\"<span class=\"ttm_content\">How to install <a href=\"https://revolution.themepunch.com/direct-customer-benefits/#addoninstall\" target=\"_blank\">Add-Ons</a>.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:169;a:20:{s:2:\"id\";s:3:\"172\";s:5:\"title\";s:15:\"Parallax Scroll\";s:5:\"alias\";s:14:\"parallaxscroll\";s:3:\"zip\";s:18:\"parallaxscroll.zip\";s:3:\"uid\";s:32:\"82546ee2f6af6c6682852f495109b3c3\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";s:7:\"preview\";s:50:\"https://revolution.themepunch.com/parallax-scroll/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.5\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:148:\"<span class=\"ttm_content\">A strikingly colourful header for your website with super smooth parallax effects.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:170;a:23:{s:2:\"id\";s:3:\"173\";s:5:\"title\";s:24:\"TechCo One-Pager Package\";s:5:\"alias\";s:24:\"techco-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:24:\"techco-one-pager-package\";s:3:\"img\";s:28:\"packages/techco_overview.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:171;a:23:{s:2:\"id\";s:3:\"174\";s:5:\"title\";s:11:\"TechCo Menu\";s:5:\"alias\";s:11:\"techco-menu\";s:3:\"zip\";s:21:\"packs/techco-menu.zip\";s:3:\"uid\";s:32:\"55e5efee828cdf1ff7e2d3b90a301ea9\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:172;a:23:{s:2:\"id\";s:3:\"175\";s:5:\"title\";s:13:\"TechCo Header\";s:5:\"alias\";s:13:\"techco-header\";s:3:\"zip\";s:23:\"packs/techco-header.zip\";s:3:\"uid\";s:32:\"fb574d1376de9b1e408c91f51e6497d7\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:173;a:23:{s:2:\"id\";s:3:\"176\";s:5:\"title\";s:12:\"TechCo About\";s:5:\"alias\";s:12:\"techco-about\";s:3:\"zip\";s:22:\"packs/techco-about.zip\";s:3:\"uid\";s:32:\"ba216da8231e55118d87e37d2358812c\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:174;a:23:{s:2:\"id\";s:3:\"177\";s:5:\"title\";s:15:\"TechCo Services\";s:5:\"alias\";s:15:\"techco-services\";s:3:\"zip\";s:25:\"packs/techco-services.zip\";s:3:\"uid\";s:32:\"ef4a8ddbb5e1136133f7bc1227248e22\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:175;a:23:{s:2:\"id\";s:3:\"178\";s:5:\"title\";s:12:\"TechCo Video\";s:5:\"alias\";s:12:\"techco-video\";s:3:\"zip\";s:22:\"packs/techco-video.zip\";s:3:\"uid\";s:32:\"d7bb92281d05f39f9bc9eca71f90e402\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:176;a:23:{s:2:\"id\";s:3:\"179\";s:5:\"title\";s:13:\"TechCo Prices\";s:5:\"alias\";s:13:\"techco-prices\";s:3:\"zip\";s:23:\"packs/techco-prices.zip\";s:3:\"uid\";s:32:\"6291f404efbea12bb181352aba71ef11\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:177;a:23:{s:2:\"id\";s:3:\"180\";s:5:\"title\";s:19:\"TechCo Testimonials\";s:5:\"alias\";s:19:\"techco-testimonials\";s:3:\"zip\";s:29:\"packs/techco-testimonials.zip\";s:3:\"uid\";s:32:\"3460bd51f6b80599266fecb7fbb918be\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:178;a:23:{s:2:\"id\";s:3:\"181\";s:5:\"title\";s:13:\"TechCo Footer\";s:5:\"alias\";s:13:\"techco-footer\";s:3:\"zip\";s:23:\"packs/techco-footer.zip\";s:3:\"uid\";s:32:\"640abcd549137520461a4a71ff758a3b\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/techco-one-page-wordpress-theme/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:266:\"<span class=\"ttm_content\">The TechCo One-Pager template pack is a fantastic solution if you want to get a simple website going fast. Use all modules at once as seen in the preview or pick individual modules for usage anywhere!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:16:\"TechCo One-Pager\";s:13:\"package_order\";s:1:\"8\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:1:\"9\";s:9:\"installed\";b:0;}i:179;a:20:{s:2:\"id\";s:3:\"182\";s:5:\"title\";s:12:\"Live Weather\";s:5:\"alias\";s:7:\"weather\";s:3:\"zip\";s:11:\"weather.zip\";s:3:\"uid\";s:32:\"aab92e69374e4c7b8c6741fe02e574b9\";s:3:\"img\";s:18:\"weather/slide1.jpg\";s:7:\"preview\";s:64:\"https://revolution.themepunch.com/wordpress-live-weather-add-on/\";s:7:\"version\";s:5:\"1.0.1\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:173:\"<span class=\"ttm_content\">Showcasing our weather add-on, this slider show a different cities temperatures and forecast on each slide.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:179:\"[{\"path\":\"revslider-weather-addon\\/revslider-weather-addon.php\",\"name\":\"Live Weather Add-On\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:180;a:20:{s:2:\"id\";s:3:\"183\";s:5:\"title\";s:17:\"360 Panorama Tour\";s:5:\"alias\";s:11:\"360panorama\";s:3:\"zip\";s:15:\"360panorama.zip\";s:3:\"uid\";s:32:\"332720fdacdbb38f65e8327a2a96c52d\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/360-degree-real-estate-virtual-tour/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:7:\"5.4.5.2\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:155:\"<span class=\"ttm_content\">An example template for our Panorama 360 tour add-on, created for the real estate market.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:176:\"[{\"path\":\"revslider-panorama-addon\\/revslider-panorama-addon.php\",\"name\":\"Panorama AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:181;a:20:{s:2:\"id\";s:3:\"184\";s:5:\"title\";s:14:\"Duotone Add-on\";s:5:\"alias\";s:14:\"duotone-add-on\";s:3:\"zip\";s:18:\"duotone-add-on.zip\";s:3:\"uid\";s:32:\"a428c6f363b3146e96d20a6f44958922\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-duotone-effect-add-on/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:168:\"<span class=\"ttm_content\">This example template showcases 3 of the 30 Duotone filters available in our brand new Duotone Add-On.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:372:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"},{\"path\":\"revslider-duotonefilters-addon\\/revslider-duotonefilters-addon.php\",\"name\":\"Duotone AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:182;a:20:{s:2:\"id\";s:3:\"185\";s:5:\"title\";s:13:\"Reveal Add-on\";s:5:\"alias\";s:13:\"reveal-add-on\";s:3:\"zip\";s:17:\"reveal-add-on.zip\";s:3:\"uid\";s:32:\"7fa7525d8ff7fa7365cb98a437e88e32\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";s:7:\"preview\";s:66:\"https://revolution.themepunch.com/wordpress-content-reveal-effect/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:204:\"<span class=\"ttm_content\">An example template that uses our Reveal Add-On, which adds 14 new preloaders combined with reveal loading effects for any slider or hero.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:359:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:201;a:20:{s:2:\"id\";s:3:\"210\";s:5:\"title\";s:21:\"Cryptocurrency Prices\";s:5:\"alias\";s:12:\"cryptoslider\";s:3:\"zip\";s:16:\"cryptoslider.zip\";s:3:\"uid\";s:32:\"c4b02210387f11946223977e940d9e9e\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";s:7:\"preview\";s:95:\"https://revolution.themepunch.com/cryptocurrency-wordpress-price-api-bitcoin-ethereum-litecoin/\";s:7:\"version\";s:5:\"1.0.2\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"900\";s:11:\"description\";s:209:\"<span class=\"ttm_content\">This Template can show live, animated cryptocurrency prices. More than 1300 currencies are supported, getting prices via the cryptocompare API.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:436:\"<span class=\"ttm_content\">Please refer to the \"Custom JavaScript\" section of this sliders settings, for info on how to modify currencies. Provide a class to the row / column / group where the currency text elements are located in.</span>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:186:\"[{\"path\":\"revslider-particles-addon\\/revslider-particles-addon.php\",\"name\":\"Particles Effect AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:202;a:23:{s:2:\"id\";s:3:\"211\";s:5:\"title\";s:18:\"Immersion One Page\";s:5:\"alias\";s:26:\"immersion-one-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:26:\"immersion-one-page-package\";s:3:\"img\";s:31:\"packages/immersion_overview.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:2:{i:0;s:6:\"slider\";i:1;s:4:\"hero\";}s:14:\"plugin_require\";s:351:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-on-typewriter\\/\"},{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:203;a:23:{s:2:\"id\";s:3:\"212\";s:5:\"title\";s:16:\"Immersion Header\";s:5:\"alias\";s:16:\"immersion_header\";s:3:\"zip\";s:26:\"packs/immersion_header.zip\";s:3:\"uid\";s:32:\"853da51256308b341ecd030bd4883229\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:170:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-on-typewriter\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:204;a:23:{s:2:\"id\";s:3:\"213\";s:5:\"title\";s:19:\"Immersion Mountains\";s:5:\"alias\";s:19:\"immersion-mountains\";s:3:\"zip\";s:29:\"packs/immersion-mountains.zip\";s:3:\"uid\";s:32:\"817167eb3fe22b7e065ba210cbe6d53c\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:182:\"[{\"path\":\"revslider-slicey-addon\\/revslider-slicey-addon.php\",\"name\":\"Background Slicey Add-On\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:205;a:23:{s:2:\"id\";s:3:\"214\";s:5:\"title\";s:17:\"Immersion Product\";s:5:\"alias\";s:17:\"immersion-product\";s:3:\"zip\";s:27:\"packs/immersion-product.zip\";s:3:\"uid\";s:32:\"64134f263484d2bbcd7ef088ffbbfb4b\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:206;a:23:{s:2:\"id\";s:3:\"215\";s:5:\"title\";s:16:\"Immersion Design\";s:5:\"alias\";s:16:\"immersion-design\";s:3:\"zip\";s:26:\"packs/immersion-design.zip\";s:3:\"uid\";s:32:\"91e1d77c1a2826438763804f4d02bc26\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:207;a:23:{s:2:\"id\";s:3:\"216\";s:5:\"title\";s:22:\"Immersion Phototgraphy\";s:5:\"alias\";s:21:\"immersion-photography\";s:3:\"zip\";s:31:\"packs/immersion-photography.zip\";s:3:\"uid\";s:32:\"e3ddf0c577b09740f5cbf2e38ffd684d\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:208;a:23:{s:2:\"id\";s:3:\"217\";s:5:\"title\";s:14:\"Immersion Grid\";s:5:\"alias\";s:14:\"immersion-grid\";s:3:\"zip\";s:24:\"packs/immersion-grid.zip\";s:3:\"uid\";s:32:\"b6903868189bb83b2c7a852fde3a7dc3\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";s:7:\"preview\";s:74:\"https://revolution.themepunch.com/immersion-wordpress-one-page-theme-2018/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:292:\"<span class=\"ttm_content\">The Immersion WordPress one page theme is a great fit if you quickly want to setup a visually oriented one page website. Using the power of Slider Revolution, we added some interesting effects like slicing and smooth parallax.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:18:\"Immersion One Page\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"10\";s:9:\"installed\";b:0;}i:209;a:20:{s:2:\"id\";s:3:\"218\";s:5:\"title\";s:18:\"Funky Intro Slider\";s:5:\"alias\";s:11:\"funkyslider\";s:3:\"zip\";s:15:\"funkyslider.zip\";s:3:\"uid\";s:32:\"2d4187e3fdad19b976be335253c8925d\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";s:7:\"preview\";s:70:\"https://revolution.themepunch.com/funky-intro-slider-wordpress-plugin/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:200:\"<span class=\"ttm_content\">This funky intro slider fits just right if you need a striking introduction to your website! Sleek, beautiful and easily customizable!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:343:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-on-typewriter\\/\"},{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:210;a:23:{s:2:\"id\";s:3:\"219\";s:5:\"title\";s:19:\"Clear View Magazine\";s:5:\"alias\";s:27:\"clear-view-magazine-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:27:\"clear-view-magazine-package\";s:3:\"img\";s:41:\"packages/clear_view_magazine_overview.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:211;a:23:{s:2:\"id\";s:3:\"220\";s:5:\"title\";s:15:\"Clear View Menu\";s:5:\"alias\";s:14:\"clearview_menu\";s:3:\"zip\";s:24:\"packs/clearview_menu.zip\";s:3:\"uid\";s:32:\"eaecee5fa5f3c3a7f4d2a96c4616a353\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:212;a:23:{s:2:\"id\";s:3:\"221\";s:5:\"title\";s:17:\"Clear View Header\";s:5:\"alias\";s:16:\"clearview_header\";s:3:\"zip\";s:26:\"packs/clearview_header.zip\";s:3:\"uid\";s:32:\"25e3dd80ad130875d7438a07952cb0cd\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:213;a:23:{s:2:\"id\";s:3:\"222\";s:5:\"title\";s:18:\"Clear View Mission\";s:5:\"alias\";s:17:\"clearview_mission\";s:3:\"zip\";s:27:\"packs/clearview_mission.zip\";s:3:\"uid\";s:32:\"35b2092a49fd2beb549342e69097eb5b\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:214;a:23:{s:2:\"id\";s:3:\"223\";s:5:\"title\";s:17:\"Clear View Slider\";s:5:\"alias\";s:17:\"clear-view-slider\";s:3:\"zip\";s:27:\"packs/clear-view-slider.zip\";s:3:\"uid\";s:32:\"d2e17edffce16ed78c54b0ef23fd7e05\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:215;a:23:{s:2:\"id\";s:3:\"224\";s:5:\"title\";s:15:\"Clear View News\";s:5:\"alias\";s:15:\"clear-view-news\";s:3:\"zip\";s:25:\"packs/clear-view-news.zip\";s:3:\"uid\";s:32:\"5698d3131ba141e9afcfd2906739dd00\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:216;a:23:{s:2:\"id\";s:3:\"225\";s:5:\"title\";s:18:\"Clear View Clients\";s:5:\"alias\";s:18:\"clear-view-clients\";s:3:\"zip\";s:28:\"packs/clear-view-clients.zip\";s:3:\"uid\";s:32:\"b95616a94832e22bdfac5ce60232be1b\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"6\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:217;a:23:{s:2:\"id\";s:3:\"226\";s:5:\"title\";s:18:\"Clear View Contact\";s:5:\"alias\";s:18:\"clear-view-contact\";s:3:\"zip\";s:28:\"packs/clear-view-contact.zip\";s:3:\"uid\";s:32:\"0e0cc1d8f6f6500e5f8a2b091fa3b4cb\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-minimal-magazine-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:19:\"Clear View Magazine\";s:13:\"package_order\";s:1:\"7\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"11\";s:9:\"installed\";b:0;}i:218;a:23:{s:2:\"id\";s:3:\"227\";s:5:\"title\";s:20:\"Clear View Post Page\";s:5:\"alias\";s:28:\"clear-view-post-page-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:28:\"clear-view-post-page-package\";s:3:\"img\";s:42:\"packages/clear_view_post_page_overview.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:219;a:23:{s:2:\"id\";s:3:\"228\";s:5:\"title\";s:22:\"Clear View Single Menu\";s:5:\"alias\";s:22:\"clear-view-single-menu\";s:3:\"zip\";s:32:\"packs/clear-view-single-menu.zip\";s:3:\"uid\";s:32:\"1e80f81982f8a4ea763482d4fa99d321\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:220;a:23:{s:2:\"id\";s:3:\"229\";s:5:\"title\";s:24:\"Clear View Single Header\";s:5:\"alias\";s:24:\"clear-view-single-header\";s:3:\"zip\";s:34:\"packs/clear-view-single-header.zip\";s:3:\"uid\";s:32:\"c8d717627be6cd5e70922ab609694dbf\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:174:\"[{\"path\":\"revslider-revealer-addon\\/revslider-revealer-addon.php\",\"name\":\"Reveal AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:221;a:23:{s:2:\"id\";s:3:\"230\";s:5:\"title\";s:23:\"Clear View Single Media\";s:5:\"alias\";s:23:\"clear-view-single-media\";s:3:\"zip\";s:33:\"packs/clear-view-single-media.zip\";s:3:\"uid\";s:32:\"c480368ded2a64f0cdd44f1674213814\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:222;a:23:{s:2:\"id\";s:3:\"231\";s:5:\"title\";s:22:\"Clear View Single More\";s:5:\"alias\";s:22:\"clear-view-single-more\";s:3:\"zip\";s:32:\"packs/clear-view-single-more.zip\";s:3:\"uid\";s:32:\"9c693190df26218366d1f77e10cf550a\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:223;a:23:{s:2:\"id\";s:3:\"232\";s:5:\"title\";s:25:\"Clear View Single Contact\";s:5:\"alias\";s:25:\"clear-view-single-contact\";s:3:\"zip\";s:35:\"packs/clear-view-single-contact.zip\";s:3:\"uid\";s:32:\"73c0a889f2b654a87b5aba1ff76fbc5c\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";s:7:\"preview\";s:81:\"https://revolution.themepunch.com/clear-view-single-post-page-wordpress-template/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.6\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:196:\"<span class=\"ttm_content\">The Clear View Minimal Magazine WordPress Template is a full Slider Revolution module arrangement with fully customizable content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:20:\"Clear View Post Page\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"12\";s:9:\"installed\";b:0;}i:224;a:20:{s:2:\"id\";s:3:\"233\";s:5:\"title\";s:18:\"Clean Landing Page\";s:5:\"alias\";s:16:\"cleanlandingpage\";s:3:\"zip\";s:20:\"cleanlandingpage.zip\";s:3:\"uid\";s:32:\"727a3680d312f22c6a5998ebdb9afe52\";s:3:\"img\";s:27:\"cleanlandingpage/slide1.jpg\";s:7:\"preview\";s:67:\"https://revolution.themepunch.com/clean-landing-page-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:203:\"<span class=\"ttm_content\">The Clean Landing Page is a fullscreen Intro Module that is a striking introduction to any minimal website, with no unnecessary elements.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";s:170:\"[{\"path\":\"revslider-typewriter-addon\\/revslider-typewriter-addon.php\",\"name\":\"Typewriter AddOn\",\"url\":\"https:\\/\\/www.themepunch.com\\/revslider-doc\\/add-on-typewriter\\/\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:225;a:20:{s:2:\"id\";s:3:\"234\";s:5:\"title\";s:9:\"Clear Cut\";s:5:\"alias\";s:8:\"clearcut\";s:3:\"zip\";s:12:\"clearcut.zip\";s:3:\"uid\";s:32:\"07f43c00e9b4d3057a03cdb3385ad2b7\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";s:7:\"preview\";s:76:\"https://revolution.themepunch.com/clear-cut-portfolio-website-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:240:\"<span class=\"ttm_content\">The Clear Cut Template is an All-In-One Portfolio Website solution that works best for smaller portfolios. Highlight your best work in a striking and mobile friendly fashion!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}i:226;a:23:{s:2:\"id\";s:3:\"235\";s:5:\"title\";s:22:\"Wonderstruck One-Pager\";s:5:\"alias\";s:30:\"wonderstruck-one-pager-package\";s:3:\"zip\";s:0:\"\";s:3:\"uid\";s:30:\"wonderstruck-one-pager-package\";s:3:\"img\";s:44:\"packages/wonderstruck-one-pager-overview.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1024\";s:6:\"height\";s:3:\"768\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;N;}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"0\";s:14:\"package_parent\";s:4:\"true\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:227;a:23:{s:2:\"id\";s:3:\"236\";s:5:\"title\";s:17:\"Wonderstruck Menu\";s:5:\"alias\";s:17:\"wonderstruck_menu\";s:3:\"zip\";s:27:\"packs/wonderstruck_menu.zip\";s:3:\"uid\";s:32:\"0a976e9aaae59c4f795b38f59f5a08d8\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"1\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:228;a:23:{s:2:\"id\";s:3:\"237\";s:5:\"title\";s:19:\"Wonderstruck Header\";s:5:\"alias\";s:19:\"wonderstruck_header\";s:3:\"zip\";s:29:\"packs/wonderstruck_header.zip\";s:3:\"uid\";s:32:\"e1379f77a902960a0ce12d44d85a9e0a\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"2\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:229;a:23:{s:2:\"id\";s:3:\"238\";s:5:\"title\";s:18:\"Wonderstruck About\";s:5:\"alias\";s:18:\"wonderstruck_about\";s:3:\"zip\";s:28:\"packs/wonderstruck_about.zip\";s:3:\"uid\";s:32:\"d207fb140fd328acc3038300ea52082a\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"3\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:230;a:23:{s:2:\"id\";s:3:\"239\";s:5:\"title\";s:18:\"Wonderstruck Works\";s:5:\"alias\";s:18:\"wonderstruck-works\";s:3:\"zip\";s:28:\"packs/wonderstruck-works.zip\";s:3:\"uid\";s:32:\"4476935097e27d92454b0011b7700c1d\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"4\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:231;a:23:{s:2:\"id\";s:3:\"240\";s:5:\"title\";s:20:\"Wonderstruck Contact\";s:5:\"alias\";s:20:\"wonderstruck-contact\";s:3:\"zip\";s:30:\"packs/wonderstruck-contact.zip\";s:3:\"uid\";s:32:\"9e4911521f77bce2b8efa40f4c2adc22\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";s:7:\"preview\";s:77:\"https://revolution.themepunch.com/wonderstruck-one-page-website-for-wordpress\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:241:\"<span class=\"ttm_content\">The Wonderstruck One-Pager Template is a clean, colorful way to showcase your portfolio online. Just install, change the content and you have a mobile ready online experience!</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:446:\"<span class=\"ttm_content\">If you want to setup the full website example as seen in the preview, please follow the <a href=\"https://www.themepunch.com/faq/setup-content-blocks-template/\" target=\"_blank\">Content Blocks instructions here</a>.<br><br>\r\n<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:4:\"hero\";}s:14:\"plugin_require\";N;s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:7:\"package\";s:22:\"Wonderstruck One-Pager\";s:13:\"package_order\";s:1:\"5\";s:14:\"package_parent\";s:0:\"\";s:6:\"active\";s:1:\"1\";s:10:\"package_id\";s:2:\"13\";s:9:\"installed\";b:0;}i:232;a:20:{s:2:\"id\";s:3:\"241\";s:5:\"title\";s:12:\"Bubble Morph\";s:5:\"alias\";s:11:\"bubblemorph\";s:3:\"zip\";s:15:\"bubblemorph.zip\";s:3:\"uid\";s:32:\"1102d6f5460ab82cb612cbe9f1d9514b\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";s:7:\"preview\";s:75:\"https://revolution.themepunch.com/bubble-morph-effect-add-on-for-wordpress/\";s:7:\"version\";s:5:\"1.0.0\";s:8:\"required\";s:5:\"5.4.7\";s:5:\"width\";s:4:\"1240\";s:6:\"height\";s:3:\"868\";s:11:\"description\";s:188:\"<span class=\"ttm_content\">The Bubble Morph Add-On allows you to create interesting Lava-Lamp style effects on any of your Slider Revolution content.</span>\r\n<span class=\"ttm_space\"></span>\";s:11:\"setup_notes\";s:197:\"<span class=\"ttm_content\">Checkout our <a href=\"https://www.themepunch.com/revslider-doc/slider-revolution-documentation/\" target=\"_blank\">Documentation</a> for basic Slider Revolution help.</span>\";s:3:\"cat\";s:7:\"Premium\";s:6:\"filter\";a:1:{i:0;s:6:\"slider\";}s:14:\"plugin_require\";s:185:\"[{\"path\":\"revslider-bubblemorph-addon\\/revslider-bubblemorph-addon.php\",\"name\":\"BubbleMorph AddOn\",\"url\":\"https:\\/\\/revolution.themepunch.com\\/direct-customer-benefits\\/#addoninstall\"}]\";s:4:\"date\";s:19:\"0000-00-00 00:00:00\";s:13:\"package_order\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:9:\"installed\";b:0;}}s:6:\"slides\";a:220:{s:16:\"classic-carousel\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"classic-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"classic-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"classic-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"classic-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"classic-carousel/slide5.jpg\";}}s:13:\"classicslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"classicslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"classicslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"classicslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"classicslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:24:\"classicslider/slide5.jpg\";}}s:11:\"contenttabs\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contenttabs/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contenttabs/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contenttabs/slide3.jpg\";}}s:13:\"facebook-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"facebook-feed/slide1.jpg\";}}s:7:\"fashion\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"fashion/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"fashion/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"fashion/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"fashion/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"fashion/slide5.jpg\";}}s:14:\"flickr-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"flickr-gallery/slide1.jpg\";}}s:3:\"gym\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"gym/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:14:\"gym/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:14:\"gym/slide3.jpg\";}}s:18:\"highlight-carousel\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-carousel/slide4.jpg\";}}s:18:\"highlight-showcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"highlight-showcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"highlight-showcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"highlight-showcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"highlight-showcase/slide4.jpg\";}}s:10:\"image-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"imagehero/slide1.jpg\";}}s:13:\"insta-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"insta-gallery/slide1.jpg\";}}s:19:\"levanorestaurantbar\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"levanorestaurantbar/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"levanorestaurantbar/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"levanorestaurantbar/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:30:\"levanorestaurantbar/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:30:\"levanorestaurantbar/slide5.jpg\";}}s:11:\"mainfeature\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"mainfeature/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"mainfeature/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"mainfeature/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"mainfeature/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"mainfeature/slide7.jpg\";}}s:17:\"media-gallery-two\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"media-gallery-two/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"media-gallery-two/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"media-gallery-two/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"media-gallery-two/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"media-gallery-two/slide6.jpg\";}}s:23:\"media-carousel-autoplay\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:34:\"media-carousel-autoplay/slide6.jpg\";}}s:21:\"news-background-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"news-bg-video/slide1.jpg\";}}s:12:\"news-gallery\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"news-gallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"news-gallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"news-gallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"news-gallery/slide4.jpg\";}}s:23:\"news-gallery-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"news-gallery-post-based/slide1.jpg\";}}s:9:\"news-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"news-hero/slide1.jpg\";}}s:10:\"news-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"news-video/slide1.jpg\";}}s:15:\"newsletter-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"newsletter-hero/slide1.jpg\";}}s:10:\"notgeneric\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"notgeneric/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"notgeneric/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"notgeneric/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"notgeneric/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"notgeneric/slide5.jpg\";}}s:11:\"photography\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"photography/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"photography/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"photography/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:22:\"photography/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:22:\"photography/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:22:\"photography/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:22:\"photography/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:22:\"photography/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:22:\"photography/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:23:\"photography/slide10.jpg\";}}s:20:\"photography-carousel\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"photography-carousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"photography-carousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"photography-carousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:31:\"photography-carousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:31:\"photography-carousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:31:\"photography-carousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:31:\"photography-carousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:31:\"photography-carousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:31:\"photography-carousel/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:32:\"photography-carousel/slide10.jpg\";}}s:16:\"search-form-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"search-form-hero/slide1.jpg\";}}s:16:\"showcasecarousel\";a:9:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"showcasecarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"showcasecarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"showcasecarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"showcasecarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:27:\"showcasecarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:27:\"showcasecarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:27:\"showcasecarousel/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:27:\"showcasecarousel/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:27:\"showcasecarousel/slide9.jpg\";}}s:11:\"sports-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"sportshero/slide1.jpg\";}}s:12:\"twitter-feed\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"twitter-feed/slide1.jpg\";}}s:13:\"vimeo-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"vimeo-gallery/slide1.jpg\";}}s:9:\"vimeohero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"vimeohero/slide1.jpg\";}}s:16:\"web-product-dark\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"web-product-dark/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"web-product-dark/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"web-product-dark/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:27:\"web-product-dark/slide4.jpg\";}}s:21:\"web-product-dark-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"web-product-dark-hero/slide1.jpg\";}}s:22:\"web-product-light-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"web-product-light-hero/slide1.jpg\";}}s:15:\"webproductlight\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"webproductlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"webproductlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"webproductlight/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"webproductlight/slide4.jpg\";}}s:15:\"youtube-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"youtube-gallery/slide1.jpg\";}}s:11:\"youtubehero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"youtubehero/slide1.jpg\";}}s:13:\"scroll-effect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"scrolleffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"scrolleffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"scrolleffect/slide3.jpg\";}}s:12:\"content-zoom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"contentzoom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"contentzoom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"contentzoom/slide3.jpg\";}}s:13:\"food-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"foodcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"foodcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"foodcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"foodcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"foodcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"foodcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"foodcarousel/slide7.jpg\";}}s:14:\"rotating-words\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"rotatingwords/slide1.jpg\";}}s:22:\"travel-static-captions\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"travel-static-captions/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"travel-static-captions/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"travel-static-captions/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:33:\"travel-static-captions/slide4.jpg\";}}s:7:\"concept\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"concept/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"concept/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"concept/slide3.jpg\";}}s:17:\"fullscreen-button\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"fullscreen-button/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"fullscreen-button/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"fullscreen-button/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"fullscreen-button/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"fullscreen-button/slide5.jpg\";}}s:15:\"creativefreedom\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"creativefreedom/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"creativefreedom/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"creativefreedom/slide3.jpg\";}}s:13:\"parallaxscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"parallaxscene/slide1.jpg\";}}s:15:\"slidingoverlays\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"slidingoverlays/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"slidingoverlays/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"slidingoverlays/slide3.jpg\";}}s:25:\"web-product-light-hero-3d\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"web-product-light-hero-3d/slide1.jpg\";}}s:6:\"woobig\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"woobig/slide1.jpg\";}}s:16:\"woocommercesmall\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"woocommercesmall/slide1.jpg\";}}s:10:\"finedining\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"finedining/slide1.jpg\";}}s:12:\"agency-intro\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"agency-intro/slide1.jpg\";}}s:7:\"ourteam\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"ourteam/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"ourteam/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"ourteam/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"ourteam/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"ourteam/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"ourteam/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:18:\"ourteam/slide7.jpg\";}}s:17:\"our-team-carousel\";a:7:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ourteamcarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"ourteamcarousel/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"ourteamcarousel/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"ourteamcarousel/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"ourteamcarousel/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"ourteamcarousel/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:26:\"ourteamcarousel/slide7.jpg\";}}s:13:\"betteryoutube\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"betteryoutube/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"betteryoutube/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"betteryoutube/slide3.jpg\";}}s:19:\"agencywebsiteheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"agencywebsiteheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"agencywebsiteheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"agencywebsiteheader/slide3.jpg\";}}s:10:\"comingsoon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"comingsoon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"comingsoon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"comingsoon/slide3.jpg\";}}s:9:\"snowscene\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowscene/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowscene/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowscene/slide3.jpg\";}}s:8:\"rockband\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"rockband/slide1.jpg\";}}s:16:\"sleeklandingpage\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"sleeklandingpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"sleeklandingpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"sleeklandingpage/slide3.jpg\";}}s:14:\"applandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"applandingpage/slide1.jpg\";}}s:9:\"deskscene\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"deskscene/slide1.jpg\";}}s:15:\"cleannewsslider\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"cleannewsslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"cleannewsslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"cleannewsslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"cleannewsslider/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"cleannewsslider/slide5.jpg\";}}s:12:\"imagegallery\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"imagegallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"imagegallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"imagegallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"imagegallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:23:\"imagegallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:23:\"imagegallery/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:23:\"imagegallery/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:23:\"imagegallery/slide8.jpg\";}}s:19:\"standard-wp-gallery\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"standard-wp-gallery/slide1.jpg\";}}s:21:\"clean-news-post-based\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"clean-news-post-based/slide1.jpg\";}}s:21:\"interactivewhiteboard\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"interactivewhiteboard/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"interactivewhiteboard/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"interactivewhiteboard/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"interactivewhiteboard/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"interactivewhiteboard/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:32:\"interactivewhiteboard/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:32:\"interactivewhiteboard/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:32:\"interactivewhiteboard/slide8.jpg\";}}s:10:\"innovation\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"innovation/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"innovation/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"innovation/slide3.jpg\";}}s:24:\"dark-fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"dark-fullsite-block-menu/slide1.jpg\";}}s:21:\"dark-fullsite-block-1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"dark-fullsite-block-1/slide1.jpg\";}}s:27:\"dark-fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"dark-fullsite-block-2-about/slide2.jpg\";}}s:30:\"dark-fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-3-services/slide2.jpg\";}}s:30:\"dark-fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:41:\"dark-fullsite-block-4-products/slide5.jpg\";}}s:34:\"dark-fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:45:\"dark-fullsite-block-5-testimonials/slide1.jpg\";}}s:29:\"dark-fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"dark-fullsite-block-6-callout/slide1.jpg\";}}s:28:\"dark-fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:39:\"dark-fullsite-block-7-footer/slide1.jpg\";}}s:19:\"fullsite-block-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"fullsite-block-menu/slide1.jpg\";}}s:15:\"fullsite-block1\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"fullsite-block1/slide1.jpg\";}}s:22:\"fullsite-block-2-about\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"fullsite-block-2-about/slide2.jpg\";}}s:25:\"fullsite-block-3-services\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-3-services/slide2.jpg\";}}s:25:\"fullsite-block-4-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:36:\"fullsite-block-4-products/slide5.jpg\";}}s:29:\"fullsite-block-5-testimonials\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"fullsite-block-5-testimonials/slide1.jpg\";}}s:24:\"fullsite-block-6-callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"fullsite-block-6-callout/slide1.jpg\";}}s:23:\"fullsite-block-7-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"fullsite-block-7-footer/slide1.jpg\";}}s:11:\"techjournal\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techjournal/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"techjournal/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"techjournal/slide3.jpg\";}}s:13:\"cardealership\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"cardealership/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"cardealership/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"cardealership/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"cardealership/slide4.jpg\";}}s:14:\"fullscreenmenu\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"fullscreenmenu/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"fullscreenmenu/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"fullscreenmenu/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:25:\"fullscreenmenu/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:25:\"fullscreenmenu/slide5.jpg\";}}s:17:\"creativefrontpage\";a:8:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"creativefrontpage/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"creativefrontpage/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"creativefrontpage/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"creativefrontpage/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:28:\"creativefrontpage/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:28:\"creativefrontpage/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:28:\"creativefrontpage/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:28:\"creativefrontpage/slide8.jpg\";}}s:19:\"websitebuilder-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-menu/slide1.jpg\";}}s:19:\"websitebuilder-hero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"websitebuilder-hero/slide1.jpg\";}}s:22:\"websitebuilder-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"websitebuilder-clients/slide1.jpg\";}}s:23:\"websitebuilder-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-services/slide1.jpg\";}}s:23:\"websitebuilder-discover\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"websitebuilder-discover/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:34:\"websitebuilder-discover/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:34:\"websitebuilder-discover/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:34:\"websitebuilder-discover/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:34:\"websitebuilder-discover/slide5.jpg\";}}s:21:\"websitebuilder-slider\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"websitebuilder-slider/slide2.jpg\";}}s:27:\"websitebuilder-calltoaction\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"websitebuilder-calltoaction/slide1.jpg\";}}s:21:\"websitebuilder-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"websitebuilder-footer/slide1.jpg\";}}s:13:\"focusparallax\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"focusparallax/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"focusparallax/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"focusparallax/slide3.jpg\";}}s:7:\"duotone\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"duotone/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"duotone/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"duotone/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"duotone/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:18:\"duotone/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:18:\"duotone/slide6.jpg\";}}s:6:\"r_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_menu/slide1.jpg\";}}s:5:\"rhero\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_hero/slide1.jpg\";}}s:7:\"r_about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"r_about/slide1.jpg\";}}s:10:\"r_products\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"r_products/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"r_products/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"r_products/slide3.jpg\";}}s:6:\"r_info\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:17:\"r_info/slide1.jpg\";}}s:17:\"inspirationheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"inspirationheader/slide1.jpg\";}}s:13:\"magazineposts\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"magazineposts/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"magazineposts/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"magazineposts/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:24:\"magazineposts/slide4.jpg\";}}s:17:\"explorationheader\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"explorationheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"explorationheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"explorationheader/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:28:\"explorationheader/slide4.jpg\";}}s:16:\"typewritereffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"typewritereffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"typewritereffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:27:\"typewritereffect/slide3.jpg\";}}s:15:\"blendmodeheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"blendmodeheader/slide1.jpg\";}}s:17:\"themeplicity_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"themeplicity_menu/slide1.jpg\";}}s:19:\"themeplicity_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_header/slide1.jpg\";}}s:18:\"themeplicity_offer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"themeplicity_offer/slide1.jpg\";}}s:21:\"themeplicity_whatwedo\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_whatwedo/slide1.jpg\";}}s:21:\"themeplicity_projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"themeplicity_projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"themeplicity_projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"themeplicity_projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"themeplicity_projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:32:\"themeplicity_projects/slide5.jpg\";s:3:\"img\";s:7:\"Slide 5\";}}s:23:\"themeplicity_whatsgreat\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"themeplicity_whatsgreat/slide1.jpg\";}}s:19:\"themeplicity_tables\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_tables/slide1.jpg\";}}s:24:\"themeplicity_contactform\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"themeplicity_contactform/slide1.jpg\";}}s:19:\"themeplicity_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"themeplicity_footer/slide1.jpg\";}}s:17:\"NiceAndClean_Menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"NiceAndClean_Menu/slide1.jpg\";}}s:19:\"NiceAndClean_Header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"NiceAndClean_Header/slide1.jpg\";}}s:21:\"NiceAndClean_Services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Services/slide1.jpg\";}}s:18:\"NiceAndClean_About\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"NiceAndClean_About/slide1.jpg\";}}s:18:\"niceandclean_video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"niceandclean_video/slide1.jpg\";}}s:23:\"niceandclean_highlights\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_highlights/slide1.jpg\";}}s:21:\"NiceAndClean_Projects\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:32:\"NiceAndClean_Projects/slide5.jpg\";}}s:23:\"niceandclean_textblocks\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"niceandclean_textblocks/slide1.jpg\";}}s:20:\"niceandclean_callout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"niceandclean_callout/slide1.jpg\";}}s:19:\"niceandclean_footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"niceandclean_footer/slide1.jpg\";}}s:3:\"80s\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:14:\"80s/slide1.jpg\";}}s:10:\"blurslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"blurslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"blurslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"blurslider/slide3.jpg\";}}s:15:\"ComingSoonAddon\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"ComingSoonAddon/slide1.jpg\";}}s:9:\"snowaddon\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"snowaddon/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"snowaddon/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"snowaddon/slide3.jpg\";}}s:19:\"particle-effect-one\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-one/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"particle-effect-one/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"particle-effect-one/slide3.jpg\";}}s:19:\"particle-effect-two\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"particle-effect-two/slide1.jpg\";}}s:21:\"particle-effect-three\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"particle-effect-three/slide1.jpg\";}}s:15:\"portfolioviewer\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"portfolioviewer/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"portfolioviewer/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"portfolioviewer/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"portfolioviewer/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"portfolioviewer/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"portfolioviewer/slide6.jpg\";}}s:11:\"appshowcase\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"appshowcase/slide1.jpg\";}}s:13:\"gravitydesign\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"gravitydesign/slide1.jpg\";}}s:12:\"404errorpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"404errorpage/slide1.jpg\";}}s:15:\"carouselgallery\";a:6:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"carouselgallery/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"carouselgallery/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"carouselgallery/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:26:\"carouselgallery/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:26:\"carouselgallery/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:26:\"carouselgallery/slide6.jpg\";}}s:9:\"filmstrip\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:20:\"filmstrip/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:20:\"filmstrip/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:20:\"filmstrip/slide3.jpg\";}}s:10:\"spaceopera\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:21:\"spaceopera/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:21:\"spaceopera/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:21:\"spaceopera/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:21:\"spaceopera/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:21:\"spaceopera/slide5.jpg\";}}s:12:\"websiteintro\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"websiteintro/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"websiteintro/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"websiteintro/slide3.jpg\";}}s:12:\"maskshowcase\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"maskshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"maskshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"maskshowcase/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"maskshowcase/slide4.jpg\";}}s:18:\"parallaxzoomslices\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"parallaxzoomslices/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"parallaxzoomslices/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"parallaxzoomslices/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"parallaxzoomslices/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:29:\"parallaxzoomslices/slide5.jpg\";}}s:20:\"doubleexposureeffect\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"doubleexposureeffect/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"doubleexposureeffect/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:31:\"doubleexposureeffect/slide3.jpg\";}}s:22:\"mountainparallaxheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"mountainparallaxheader/slide1.jpg\";}}s:12:\"goodnewsmenu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"goodnewsmenu/slide1.jpg\";}}s:14:\"goodnewsheader\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsheader/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"goodnewsheader/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"goodnewsheader/slide3.jpg\";}}s:16:\"goodnewswhatshot\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewswhatshot/slide1.jpg\";}}s:16:\"goodnewsfeatured\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsfeatured/slide1.jpg\";}}s:17:\"goodnewsspotlight\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"goodnewsspotlight/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"goodnewsspotlight/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"goodnewsspotlight/slide3.jpg\";}}s:16:\"goodnewscarousel\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewscarousel/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:27:\"goodnewscarousel/slide2.jpg\";}}s:15:\"goodnewscallout\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"goodnewscallout/slide1.jpg\";}}s:14:\"goodnewsfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"goodnewsfooter/slide1.jpg\";}}s:16:\"goodnewsmenuback\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"goodnewsmenuback/slide1.jpg\";}}s:18:\"goodnewsblogheader\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogheader/slide1.jpg\";}}s:19:\"goodnewsblogcontent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"goodnewsblogcontent/slide1.jpg\";}}s:20:\"goodnewstestimonials\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"goodnewstestimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"goodnewstestimonials/slide2.jpg\";}}s:18:\"goodnewsblogfooter\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"goodnewsblogfooter/slide1.jpg\";}}s:17:\"beforeafterslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"beforeafterslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"beforeafterslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"beforeafterslider/slide3.jpg\";}}s:15:\"productshowcase\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"productshowcase/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:26:\"productshowcase/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:26:\"productshowcase/slide3.jpg\";}}s:22:\"overexposuretransition\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"overexposuretransition/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"overexposuretransition/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"overexposuretransition/slide3.jpg\";}}s:14:\"parallaxscroll\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"parallaxscroll/slide1.jpg\";}}s:11:\"techco-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"techco-menu/slide1.jpg\";}}s:13:\"techco-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-header/slide1.jpg\";}}s:12:\"techco-about\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-about/slide1.jpg\";}}s:15:\"techco-services\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"techco-services/slide1.jpg\";}}s:12:\"techco-video\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"techco-video/slide1.jpg\";}}s:13:\"techco-prices\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-prices/slide1.jpg\";}}s:19:\"techco-testimonials\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"techco-testimonials/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"techco-testimonials/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"techco-testimonials/slide3.jpg\";}}s:13:\"techco-footer\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"techco-footer/slide1.jpg\";}}s:7:\"weather\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:18:\"weather/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:18:\"weather/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:18:\"weather/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:18:\"weather/slide4.jpg\";}}s:11:\"360panorama\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"360panorama/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"360panorama/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"360panorama/slide3.jpg\";}}s:14:\"duotone-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"duotone-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:25:\"duotone-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:25:\"duotone-add-on/slide3.jpg\";}}s:13:\"reveal-add-on\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:24:\"reveal-add-on/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:24:\"reveal-add-on/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:24:\"reveal-add-on/slide3.jpg\";}}s:16:\"band-tour-poster\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/band-tour-poster/slide1.png\";}}s:14:\"brewery-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/brewery-slider/slide3.png\";}}s:9:\"burgerbar\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:33:\"smartcontent/burgerbar/slide3.png\";}}s:19:\"burger-bar-portrait\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:43:\"smartcontent/burger-bar-portrait/slide3.png\";}}s:8:\"car-rent\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"smartcontent/car-rent/slide1.png\";}}s:6:\"coffee\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"smartcontent/coffee/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:30:\"smartcontent/coffee/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:30:\"smartcontent/coffee/slide3.png\";}}s:14:\"holiday-advert\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/holiday-advert/slide1.png\";}}s:18:\"iphone-cases-light\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:42:\"smartcontent/iphone-cases-light/slide1.png\";}}s:7:\"medical\";a:2:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"smartcontent/medical/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:31:\"smartcontent/medical/slide2.png\";}}s:13:\"mexican-grill\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:37:\"smartcontent/mexican-grill/slide3.png\";}}s:20:\"mobile-retail-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/mobile-retail-slider/slide3.png\";}}s:14:\"money-exchange\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:38:\"smartcontent/money-exchange/slide3.png\";}}s:28:\"restaurant-menu-first-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-first-screen/slide1.png\";}}s:29:\"restaurant-menu-second-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:53:\"smartcontent/restaurant-menu-second-screen/slide1.png\";}}s:28:\"restaurant-menu-third-screen\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:52:\"smartcontent/restaurant-menu-third-screen/slide1.png\";}}s:11:\"shoes-store\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:35:\"smartcontent/shoes-store/slide3.png\";}}s:20:\"supermarket-products\";a:5:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide1.png\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide2.png\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide3.png\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide4.png\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:44:\"smartcontent/supermarket-products/slide5.png\";}}s:16:\"travel-insurance\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:40:\"smartcontent/travel-insurance/slide1.png\";}}s:12:\"cryptoslider\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:23:\"cryptoslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:23:\"cryptoslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:23:\"cryptoslider/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:23:\"cryptoslider/slide4.jpg\";}}s:16:\"immersion_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion_header/slide1.jpg\";}}s:19:\"immersion-mountains\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"immersion-mountains/slide1.jpg\";}}s:17:\"immersion-product\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"immersion-product/slide1.jpg\";}}s:16:\"immersion-design\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"immersion-design/slide1.jpg\";}}s:21:\"immersion-photography\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:32:\"immersion-photography/slide1.jpg\";}}s:14:\"immersion-grid\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"immersion-grid/slide1.jpg\";}}s:11:\"funkyslider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"funkyslider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"funkyslider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"funkyslider/slide3.jpg\";}}s:14:\"clearview_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:25:\"clearview_menu/slide1.jpg\";}}s:16:\"clearview_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:27:\"clearview_header/slide1.jpg\";}}s:17:\"clearview_mission\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clearview_mission/slide1.jpg\";}}s:17:\"clear-view-slider\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"clear-view-slider/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:28:\"clear-view-slider/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:28:\"clear-view-slider/slide3.jpg\";}}s:15:\"clear-view-news\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:26:\"clear-view-news/slide1.jpg\";}}s:18:\"clear-view-clients\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-clients/slide1.jpg\";}}s:18:\"clear-view-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"clear-view-contact/slide1.jpg\";}}s:22:\"clear-view-single-menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-menu/slide1.jpg\";}}s:24:\"clear-view-single-header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:35:\"clear-view-single-header/slide1.jpg\";}}s:23:\"clear-view-single-media\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:34:\"clear-view-single-media/slide1.jpg\";}}s:22:\"clear-view-single-more\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:33:\"clear-view-single-more/slide1.jpg\";}}s:25:\"clear-view-single-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:36:\"clear-view-single-contact/slide1.jpg\";}}s:16:\"cleanlandingpage\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"cleanlandingpage2/slide1.jpg\";}}s:8:\"clearcut\";a:10:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:19:\"clearcut/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:19:\"clearcut/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:19:\"clearcut/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:19:\"clearcut/slide4.jpg\";}i:4;a:2:{s:5:\"title\";s:7:\"Slide 5\";s:3:\"img\";s:19:\"clearcut/slide5.jpg\";}i:5;a:2:{s:5:\"title\";s:7:\"Slide 6\";s:3:\"img\";s:19:\"clearcut/slide6.jpg\";}i:6;a:2:{s:5:\"title\";s:7:\"Slide 7\";s:3:\"img\";s:19:\"clearcut/slide7.jpg\";}i:7;a:2:{s:5:\"title\";s:7:\"Slide 8\";s:3:\"img\";s:19:\"clearcut/slide8.jpg\";}i:8;a:2:{s:5:\"title\";s:7:\"Slide 9\";s:3:\"img\";s:19:\"clearcut/slide9.jpg\";}i:9;a:2:{s:5:\"title\";s:8:\"Slide 10\";s:3:\"img\";s:20:\"clearcut/slide10.jpg\";}}s:17:\"wonderstruck_menu\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:28:\"wonderstruck_menu/slide1.jpg\";}}s:19:\"wonderstruck_header\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:30:\"wonderstruck_header/slide1.jpg\";}}s:18:\"wonderstruck_about\";a:4:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck_about/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:29:\"wonderstruck_about/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:29:\"wonderstruck_about/slide3.jpg\";}i:3;a:2:{s:5:\"title\";s:7:\"Slide 4\";s:3:\"img\";s:29:\"wonderstruck_about/slide4.jpg\";}}s:18:\"wonderstruck-works\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:29:\"wonderstruck-works/slide1.jpg\";}}s:20:\"wonderstruck-contact\";a:1:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:31:\"wonderstruck-contact/slide1.jpg\";}}s:11:\"bubblemorph\";a:3:{i:0;a:2:{s:5:\"title\";s:7:\"Slide 1\";s:3:\"img\";s:22:\"bubblemorph/slide1.jpg\";}i:1;a:2:{s:5:\"title\";s:7:\"Slide 2\";s:3:\"img\";s:22:\"bubblemorph/slide2.jpg\";}i:2;a:2:{s:5:\"title\";s:7:\"Slide 3\";s:3:\"img\";s:22:\"bubblemorph/slide3.jpg\";}}}}','no'),(7562,'rs-templates-new','','no'),(7779,'_transient_doing_cron','1524640630.7227530479431152343750','yes');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) 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=MyISAM AUTO_INCREMENT=1288 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (1279,4411,'_wp_attachment_image_alt','Station Tyres Darwen'),(2,4,'_form','<label> Your Name (required)\n [text* your-name] </label>\n\n<label> Your Email (required)\n [email* your-email] </label>\n\n<label> Subject\n [text your-subject] </label>\n\n<label> Your Message\n [textarea your-message] </label>\n\n[submit \"Send\"]'),(3,4,'_mail','a:8:{s:7:\"subject\";s:34:\"ABS Station Tyres \"[your-subject]\"\";s:6:\"sender\";s:48:\"[your-name] <wordpress@stationtyresdarwen.co.uk>\";s:4:\"body\";s:191:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on ABS Station Tyres (http://stationtyresdarwen.co.uk)\";s:9:\"recipient\";s:29:\"bhoobal.webdesigner@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(4,4,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:34:\"ABS Station Tyres \"[your-subject]\"\";s:6:\"sender\";s:54:\"ABS Station Tyres <wordpress@stationtyresdarwen.co.uk>\";s:4:\"body\";s:133:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on ABS Station Tyres (http://stationtyresdarwen.co.uk)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:39:\"Reply-To: bhoobal.webdesigner@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(5,4,'_messages','a:8:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";}'),(6,4,'_additional_settings',NULL),(7,4,'_locale','en_GB'),(8,6,'_wp_attached_file','services-bg.png'),(9,6,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:638;s:4:\"file\";s:15:\"services-bg.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"services-bg-150x150.png\";s:5:\"width\";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:\"services-bg-300x128.png\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"services-bg-768x327.png\";s:5:\"width\";i:768;s:6:\"height\";i:327;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"services-bg-1024x436.png\";s:5:\"width\";i:1024;s:6:\"height\";i:436;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"stm-img-1110-577\";a:4:{s:4:\"file\";s:24:\"services-bg-1110x577.png\";s:5:\"width\";i:1110;s:6:\"height\";i:577;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-796-466\";a:4:{s:4:\"file\";s:23:\"services-bg-798x466.png\";s:5:\"width\";i:798;s:6:\"height\";i:466;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:23:\"services-bg-350x205.png\";s:5:\"width\";i:350;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-356\";a:4:{s:4:\"file\";s:23:\"services-bg-350x356.png\";s:5:\"width\";i:350;s:6:\"height\";i:356;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:23:\"services-bg-350x181.png\";s:5:\"width\";i:350;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:23:\"services-bg-398x206.png\";s:5:\"width\";i:398;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:23:\"services-bg-255x135.png\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:23:\"services-bg-190x132.png\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(10,7,'_wp_attached_file','slider.jpg'),(11,7,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:638;s:4:\"file\";s:10:\"slider.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"slider-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:\"slider-300x128.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:18:\"slider-768x327.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:327;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"slider-1024x436.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:436;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"stm-img-1110-577\";a:4:{s:4:\"file\";s:19:\"slider-1110x577.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:577;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-796-466\";a:4:{s:4:\"file\";s:18:\"slider-798x466.jpg\";s:5:\"width\";i:798;s:6:\"height\";i:466;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:18:\"slider-350x205.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-356\";a:4:{s:4:\"file\";s:18:\"slider-350x356.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:18:\"slider-350x181.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:18:\"slider-398x206.jpg\";s:5:\"width\";i:398;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:18:\"slider-255x135.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:18:\"slider-190x132.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12,8,'_wp_attached_file','station-tyres-logo.png'),(13,8,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:229;s:6:\"height\";i:51;s:4:\"file\";s:22:\"station-tyres-logo.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"station-tyres-logo-150x51.png\";s:5:\"width\";i:150;s:6:\"height\";i:51;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:29:\"station-tyres-logo-190x51.png\";s:5:\"width\";i:190;s:6:\"height\";i:51;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1038,4329,'_wp_attached_file','offer-1.png'),(1039,4329,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:141;s:6:\"height\";i:225;s:4:\"file\";s:11:\"offer-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"offer-1-141x150.png\";s:5:\"width\";i:141;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:19:\"offer-1-141x205.png\";s:5:\"width\";i:141;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:19:\"offer-1-141x181.png\";s:5:\"width\";i:141;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:19:\"offer-1-141x206.png\";s:5:\"width\";i:141;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:19:\"offer-1-141x135.png\";s:5:\"width\";i:141;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:19:\"offer-1-141x132.png\";s:5:\"width\";i:141;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(16,10,'_wp_attached_file','contact-us-bg.png'),(17,10,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:627;s:4:\"file\";s:17:\"contact-us-bg.png\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"contact-us-bg-150x150.png\";s:5:\"width\";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:\"contact-us-bg-300x125.png\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"contact-us-bg-768x321.png\";s:5:\"width\";i:768;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"contact-us-bg-1024x428.png\";s:5:\"width\";i:1024;s:6:\"height\";i:428;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"stm-img-1110-577\";a:4:{s:4:\"file\";s:26:\"contact-us-bg-1110x577.png\";s:5:\"width\";i:1110;s:6:\"height\";i:577;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-796-466\";a:4:{s:4:\"file\";s:25:\"contact-us-bg-798x466.png\";s:5:\"width\";i:798;s:6:\"height\";i:466;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:25:\"contact-us-bg-350x205.png\";s:5:\"width\";i:350;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-356\";a:4:{s:4:\"file\";s:25:\"contact-us-bg-350x356.png\";s:5:\"width\";i:350;s:6:\"height\";i:356;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:25:\"contact-us-bg-350x181.png\";s:5:\"width\";i:350;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:25:\"contact-us-bg-398x206.png\";s:5:\"width\";i:398;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:25:\"contact-us-bg-255x135.png\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:25:\"contact-us-bg-190x132.png\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(18,11,'_wp_attached_file','offers-bg.png'),(19,11,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1;s:6:\"height\";i:687;s:4:\"file\";s:13:\"offers-bg.png\";s:5:\"sizes\";a:10:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"offers-bg-1x150.png\";s:5:\"width\";i:1;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"offers-bg-1x300.png\";s:5:\"width\";i:1;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"stm-img-1110-577\";a:4:{s:4:\"file\";s:19:\"offers-bg-1x577.png\";s:5:\"width\";i:1;s:6:\"height\";i:577;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-796-466\";a:4:{s:4:\"file\";s:19:\"offers-bg-1x466.png\";s:5:\"width\";i:1;s:6:\"height\";i:466;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:19:\"offers-bg-1x205.png\";s:5:\"width\";i:1;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-356\";a:4:{s:4:\"file\";s:19:\"offers-bg-1x356.png\";s:5:\"width\";i:1;s:6:\"height\";i:356;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:19:\"offers-bg-1x181.png\";s:5:\"width\";i:1;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:19:\"offers-bg-1x206.png\";s:5:\"width\";i:1;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:19:\"offers-bg-1x135.png\";s:5:\"width\";i:1;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:19:\"offers-bg-1x132.png\";s:5:\"width\";i:1;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1164,4412,'_wp_attached_file','about-station-tyres-2.jpg'),(1165,4412,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:635;s:6:\"height\";i:510;s:4:\"file\";s:25:\"about-station-tyres-2.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"about-station-tyres-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:33:\"about-station-tyres-2-300x241.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-796-466\";a:4:{s:4:\"file\";s:33:\"about-station-tyres-2-635x466.jpg\";s:5:\"width\";i:635;s:6:\"height\";i:466;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:33:\"about-station-tyres-2-350x205.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-356\";a:4:{s:4:\"file\";s:33:\"about-station-tyres-2-350x356.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:33:\"about-station-tyres-2-350x181.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:33:\"about-station-tyres-2-398x206.jpg\";s:5:\"width\";i:398;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:33:\"about-station-tyres-2-255x135.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:33:\"about-station-tyres-2-190x132.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(67,1361,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(68,1361,'stm_genuine_price',''),(69,1361,'condition',''),(70,1361,'make','new'),(71,1362,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(72,1362,'stm_genuine_price',''),(73,1362,'condition',''),(74,1362,'make','old'),(75,1432,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(76,1432,'_mc4wp_settings','a:9:{s:3:\"css\";s:5:\"basic\";s:12:\"double_optin\";s:1:\"1\";s:8:\"redirect\";s:0:\"\";s:18:\"hide_after_success\";s:1:\"0\";s:5:\"lists\";a:1:{i:0;s:10:\"fe10092ef4\";}s:15:\"required_fields\";s:5:\"EMAIL\";s:12:\"send_welcome\";s:1:\"0\";s:15:\"update_existing\";s:1:\"0\";s:17:\"replace_interests\";s:1:\"1\";}'),(77,1432,'text_subscribed','Thank you, your sign-up request was successful! Please check your e-mail inbox.'),(78,1432,'text_error','Oops. Something went wrong. Please try again later.'),(79,1432,'text_invalid_email','Please provide a valid email address.'),(80,1432,'text_already_subscribed','Given email address is already subscribed, thank you!'),(81,1432,'text_required_field_missing','Please fill in the required fields.'),(82,1432,'text_unsubscribed','You were successfully unsubscribed.'),(83,1432,'text_not_subscribed','Given email address is not subscribed.'),(84,1432,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(85,1432,'text_no_lists_selected','Please select at least one list.'),(86,1432,'text_previously_unsubscribed','It seems that you have previously unsubscribed, so we can not automatically resubscribe you.'),(87,4140,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(88,4140,'stm_genuine_price',''),(89,4140,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(90,4238,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(91,4238,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(92,4238,'stm_genuine_price','43600'),(93,4238,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(94,4238,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(95,4238,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(96,4238,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(97,4238,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(98,4238,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(99,4238,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(100,4238,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(101,4238,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(102,4238,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(103,4238,'slide_template','default'),(104,4238,'alignment','left'),(105,4238,'title','show'),(106,4238,'breadcrumbs','show'),(107,4238,'stm_car_user','no'),(108,4238,'regular_price_label','Our Price'),(109,4238,'regular_price_description','Included Taxes & Checkup'),(110,4238,'special_price_label','Retail Price:'),(111,4238,'instant_savings_label','Instant Savings:'),(112,4238,'condition','new-cars'),(113,4238,'body','motorcycles'),(114,4238,'_wpb_vc_js_status','true'),(115,4238,'_thumbnail_id','4278'),(116,4238,'_wp_old_slug','yamaha-900'),(117,4238,'gallery','a:3:{i:0;s:4:\"4217\";i:1;s:4:\"4219\";i:2;s:4:\"4214\";}'),(118,4238,'price','43600'),(119,4238,'ca-year','2016'),(120,4238,'transmission','6-speed-manual'),(121,4238,'drive','fwd'),(122,4238,'exterior-color','red'),(123,4238,'interior-color','jet-black'),(124,4238,'gallery_video','https://www.youtube.com/embed/QeKFc3BNtU4'),(125,4238,'gallery_videos','a:1:{i:0;s:41:\"https://www.youtube.com/embed/QeKFc3BNtU4\";}'),(126,4238,'mileage','1000'),(127,4238,'category_type','sportbike'),(128,4238,'stm_car_views','8'),(129,4238,'title_box_custom_bg_image','4222'),(130,4238,'sub_title','Personal Bike'),(131,4238,'sub_title_instead','PowerSport'),(132,4238,'history_link','http://www.carfax.com/?partner=GCP_1&click=sem&gclid=CKi6oImRxc4CFVSXGQodlhAMgQ&gclsrc=ds'),(133,4238,'additional_features','Auxiliary heating,Bluetooth,CD player,Central locking,Airbags,Immobilizer,Particulate filter,ABS,Alloy wheels,Electric side mirror,Sports package,Sports suspension,MP3 interface,Navigation system,Panoramic roof'),(134,4238,'serie','jet-mate'),(135,4238,'engine','Jet Drive 5000'),(136,4238,'stock_number','NH-1551'),(137,4238,'_dp_original','4237'),(138,4238,'make','suzuki'),(139,4250,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(140,4250,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(141,4250,'stm_genuine_price','70000'),(142,4250,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(143,4250,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(144,4250,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(145,4250,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(146,4250,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(147,4250,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(148,4250,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(149,4250,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(150,4250,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(151,4250,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(152,4250,'slide_template','default'),(153,4250,'alignment','left'),(154,4250,'title','show'),(155,4250,'breadcrumbs','show'),(156,4250,'stm_car_user','no'),(157,4250,'regular_price_label','Our Price'),(158,4250,'regular_price_description','Included Taxes & Checkup'),(159,4250,'special_price_label','Retail Price:'),(160,4250,'instant_savings_label','Instant Savings:'),(161,4250,'condition','new-cars'),(162,4250,'body','watercraft'),(163,4250,'make','sea-doo'),(164,4250,'_wpb_vc_js_status','true'),(165,4250,'_wp_old_slug','yamaha-900'),(166,4250,'gallery','a:3:{i:0;s:4:\"4203\";i:1;s:4:\"4210\";i:2;s:4:\"4206\";}'),(167,4250,'price','70000'),(168,4250,'ca-year','2016'),(169,4250,'transmission','6-speed-manual'),(170,4250,'drive','fwd'),(171,4250,'exterior-color','white'),(172,4250,'interior-color','jet-black'),(173,4250,'gallery_video','https://www.youtube.com/embed/QeKFc3BNtU4'),(174,4250,'gallery_videos','a:2:{i:1;s:41:\"https://www.youtube.com/embed/QeKFc3BNtU4\";i:2;s:41:\"https://www.youtube.com/embed/QeKFc3BNtU4\";}'),(175,4250,'category_type','luxury'),(176,4250,'stm_car_views','7'),(177,4250,'title_box_custom_bg_image','4201'),(178,4250,'sub_title','Personal watercrafts'),(179,4250,'sub_title_instead','Ski serie'),(180,4250,'history_link','http://www.carfax.com/?partner=GCP_1&click=sem&gclid=CKi6oImRxc4CFVSXGQodlhAMgQ&gclsrc=ds'),(181,4250,'additional_features','Auxiliary heating,Bluetooth,CD player,Central locking,Airbags,Immobilizer,Particulate filter,ABS,Alloy wheels,Electric side mirror,Sports package,Sports suspension,MP3 interface,Navigation system,Panoramic roof'),(182,4250,'serie','jet-mate'),(183,4250,'engine','Mech i400'),(184,4250,'stock_number','NH-8000'),(185,4250,'special_car','on'),(186,4250,'badge_bg_color','#81d742'),(187,4250,'_thumbnail_id','4278'),(188,4250,'_dp_original','4247'),(189,4251,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(190,4251,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(191,4251,'stm_genuine_price','39999'),(192,4251,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(193,4251,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(194,4251,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(195,4251,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(196,4251,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(197,4251,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(198,4251,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(199,4251,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(200,4251,'slide_template','default'),(201,4251,'alignment','left'),(202,4251,'title','show'),(203,4251,'breadcrumbs','show'),(204,4251,'stm_car_user','no'),(205,4251,'regular_price_label','Our Price'),(206,4251,'regular_price_description','Included Taxes & Checkup'),(207,4251,'special_price_label','Retail Price:'),(208,4251,'instant_savings_label','Instant Savings:'),(209,4251,'condition','used-cars'),(210,4251,'body','motorcycles'),(211,4251,'make','honda'),(212,4251,'_wpb_vc_js_status','true'),(213,4251,'_thumbnail_id','4278'),(214,4251,'_wp_old_slug','yamaha-900'),(215,4251,'gallery','a:3:{i:0;s:4:\"4217\";i:1;s:4:\"4219\";i:2;s:4:\"4214\";}'),(216,4251,'price','43600'),(217,4251,'ca-year','2010'),(218,4251,'transmission','6-speed-manual'),(219,4251,'drive','fwd'),(220,4251,'exterior-color','white'),(221,4251,'interior-color','jet-black'),(222,4251,'gallery_video','https://www.youtube.com/embed/QeKFc3BNtU4'),(223,4251,'gallery_videos','a:3:{i:0;s:41:\"https://www.youtube.com/embed/QeKFc3BNtU4\";i:1;s:41:\"https://www.youtube.com/embed/QeKFc3BNtU4\";i:2;s:41:\"https://www.youtube.com/embed/QeKFc3BNtU4\";}'),(224,4251,'mileage','14400'),(225,4251,'category_type','sportbike'),(226,4251,'stm_car_views','6'),(227,4251,'title_box_custom_bg_image','4222'),(228,4251,'sub_title','Personal Bike'),(229,4251,'sub_title_instead','PowerSport'),(230,4251,'history_link','http://www.carfax.com/?partner=GCP_1&click=sem&gclid=CKi6oImRxc4CFVSXGQodlhAMgQ&gclsrc=ds'),(231,4251,'additional_features','Auxiliary heating,Bluetooth,CD player,Central locking,Airbags,Immobilizer,Particulate filter,ABS,Alloy wheels,Electric side mirror,Sports package,Sports suspension,MP3 interface,Navigation system,Panoramic roof'),(232,4251,'serie','cbr'),(233,4251,'engine','CBR 1000'),(234,4251,'stock_number','NH-6528'),(235,4251,'sale_price','39999'),(236,4251,'_dp_original','4212'),(237,4252,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(238,4252,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(239,4252,'stm_genuine_price','11000'),(240,4252,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(241,4252,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(242,4252,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(243,4252,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(244,4252,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(245,4252,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(246,4252,'slide_template','default'),(247,4252,'alignment','left'),(248,4252,'title','show'),(249,4252,'breadcrumbs','show'),(250,4252,'stm_car_user','no'),(251,4252,'regular_price_label','Our Price'),(252,4252,'regular_price_description','Included Taxes & Checkup'),(253,4252,'special_price_label','Retail Price:'),(254,4252,'instant_savings_label','Instant Savings:'),(255,4252,'condition','used-cars'),(256,4252,'body','atvs'),(257,4252,'make','kawasaki'),(258,4252,'_wpb_vc_js_status','true'),(259,4252,'_thumbnail_id','4278'),(260,4252,'_wp_old_slug','yamaha-900'),(261,4252,'gallery','a:5:{i:0;s:4:\"4148\";i:1;s:4:\"4149\";i:2;s:4:\"4143\";i:3;s:4:\"4141\";i:4;s:4:\"4142\";}'),(262,4252,'price','11000'),(263,4252,'ca-year','2009'),(264,4252,'transmission','6-speed-manual'),(265,4252,'drive','fwd'),(266,4252,'exterior-color','black'),(267,4252,'interior-color','jet-black'),(268,4252,'gallery_video','https://www.youtube.com/embed/QeKFc3BNtU4'),(269,4252,'gallery_videos','a:3:{i:0;s:41:\"https://www.youtube.com/embed/QeKFc3BNtU4\";i:1;s:41:\"https://www.youtube.com/embed/QeKFc3BNtU4\";i:2;s:41:\"https://www.youtube.com/embed/QeKFc3BNtU4\";}'),(270,4252,'mileage','12500'),(271,4252,'category_type','offroad'),(272,4252,'stm_car_views','8'),(273,4252,'title_box_custom_bg_image','4137'),(274,4252,'sub_title','All Terrain'),(275,4252,'sub_title_instead','ATV/UTV'),(276,4252,'history_link','http://www.carfax.com/?partner=GCP_1&click=sem&gclid=CKi6oImRxc4CFVSXGQodlhAMgQ&gclsrc=ds'),(277,4252,'additional_features','Auxiliary heating,Bluetooth,CD player,Central locking,Airbags,Immobilizer,Particulate filter,ABS,Alloy wheels,Electric side mirror,Sports package,Sports suspension,MP3 interface,Navigation system,Panoramic roof'),(278,4252,'serie','jtx-900'),(279,4252,'engine','Rotax V-Twin'),(280,4252,'stock_number','NH-6528'),(281,4252,'_dp_original','4151'),(282,4254,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(283,4254,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(284,4254,'stm_genuine_price','27000'),(285,4254,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(286,4254,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(287,4254,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(288,4254,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(289,4254,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(290,4254,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(291,4254,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(292,4254,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(293,4254,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(294,4254,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(295,4254,'slide_template','default'),(296,4254,'alignment','left'),(297,4254,'title','show'),(298,4254,'breadcrumbs','show'),(299,4254,'stm_car_user','no'),(300,4254,'regular_price_label','Our Price'),(301,4254,'regular_price_description','Included Taxes & Checkup'),(302,4254,'special_price_label','Retail Price:'),(303,4254,'instant_savings_label','Instant Savings:'),(304,4254,'condition','used-cars'),(305,4254,'body','motorcycles'),(306,4254,'make','yamaha'),(307,4254,'_wpb_vc_js_status','true'),(308,4254,'_thumbnail_id','4278'),(309,4254,'_wp_old_slug','yamaha-900'),(310,4254,'gallery','a:3:{i:0;s:4:\"4220\";i:1;s:4:\"4218\";i:2;s:4:\"4221\";}'),(311,4254,'price','29000'),(312,4254,'ca-year','2015'),(313,4254,'transmission','6-speed-manual'),(314,4254,'drive','fwd'),(315,4254,'exterior-color','black'),(316,4254,'interior-color','jet-black'),(317,4254,'gallery_video','https://www.youtube.com/embed/QeKFc3BNtU4'),(318,4254,'gallery_videos','a:3:{i:0;s:41:\"https://www.youtube.com/embed/QeKFc3BNtU4\";i:1;s:41:\"https://www.youtube.com/embed/QeKFc3BNtU4\";i:2;s:41:\"https://www.youtube.com/embed/QeKFc3BNtU4\";}'),(319,4254,'mileage','14400'),(320,4254,'category_type','sportbike'),(321,4254,'stm_car_views','9'),(322,4254,'title_box_custom_bg_image','4222'),(323,4254,'sub_title','Personal Bike'),(324,4254,'sub_title_instead','PowerSport'),(325,4254,'history_link','http://www.carfax.com/?partner=GCP_1&click=sem&gclid=CKi6oImRxc4CFVSXGQodlhAMgQ&gclsrc=ds'),(326,4254,'additional_features','Auxiliary heating,Bluetooth,CD player,Central locking,Airbags,Immobilizer,Particulate filter,ABS,Alloy wheels,Electric side mirror,Sports package,Sports suspension,MP3 interface,Navigation system,Panoramic roof'),(327,4254,'serie','px'),(328,4254,'engine','CBR 1000'),(329,4254,'stock_number','IL-1135'),(330,4254,'sale_price','27000'),(331,4254,'special_car','on'),(332,4254,'_dp_original','4224'),(333,4255,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(334,4255,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(335,4255,'stm_genuine_price','8500'),(336,4255,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(337,4255,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(338,4255,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(339,4255,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(340,4255,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(341,4255,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(342,4255,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(343,4255,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(344,4255,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(345,4255,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(346,4255,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(347,4255,'_wpb_shortcodes_custom_css','.vc_custom_1471409820267{margin-bottom: 20px !important;}.vc_custom_1471409826534{margin-bottom: 28px !important;}.vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}.vc_custom_1471417690138{margin-bottom: 19px !important;}.vc_custom_1471417697414{margin-bottom: 19px !important;}.vc_custom_1471417704255{margin-bottom: 19px !important;}.vc_custom_1471417710959{margin-bottom: 19px !important;}.vc_custom_1471411490321{margin-bottom: 20px !important;}.vc_custom_1471417741291{margin-bottom: 21px !important;}.vc_custom_1471411797815{margin-bottom: 25px !important;}.vc_custom_1471417849675{margin-bottom: 29px !important;}.vc_custom_1471417885824{margin-bottom: 20px !important;}.vc_custom_1471417891964{margin-bottom: 22px !important;}'),(348,4255,'slide_template','default'),(349,4255,'alignment','left'),(350,4255,'title','show'),(351,4255,'breadcrumbs','show'),(352,4255,'stm_car_user','no'),(353,4255,'regular_price_label','Our Price'),(354,4255,'regular_price_description','Included Taxes & Checkup'),(355,4255,'special_price_label','Retail Price:'),(356,4255,'instant_savings_label','Instant Savings:'),(357,4255,'condition','used-cars'),(358,4255,'body','scooters'),(359,4255,'make','star'),(360,4255,'_wpb_vc_js_status','true'),(361,4255,'_thumbnail_id','4278'),(362,4255,'_wp_old_slug','yamaha-900'),(363,4255,'gallery','a:3:{i:0;s:4:\"4226\";i:1;s:4:\"4228\";i:2;s:4:\"4231\";}'),(364,4255,'price','8500'),(365,4255,'ca-year','2016'),(366,4255,'transmission','6-speed-manual'),(367,4255,'drive','fwd'),(368,4255,'exterior-color','black'),(369,4255,'interior-color','jet-black'),(370,4255,'gallery_video','https://www.youtube.com/embed/QeKFc3BNtU4'),(371,4255,'mileage','12500'),(372,4255,'category_type','limited'),(373,4255,'stm_car_views','8'),(374,4255,'title_box_custom_bg_image','4232'),(375,4255,'sub_title','Personal Scooter'),(376,4255,'sub_title_instead','Modern'),(377,4255,'history_link','http://www.carfax.com/?partner=GCP_1&click=sem&gclid=CKi6oImRxc4CFVSXGQodlhAMgQ&gclsrc=ds'),(378,4255,'additional_features','Auxiliary heating,Bluetooth,CD player,Central locking,Airbags,Immobilizer,Particulate filter,ABS,Alloy wheels,Electric side mirror,Sports package,Sports suspension,MP3 interface,Navigation system,Panoramic roof'),(379,4255,'serie','650'),(380,4255,'engine','650k'),(381,4255,'stock_number','KX-6528'),(382,4255,'_dp_original','4249'),(383,4278,'_wp_attached_file','placeholder.gif'),(384,4278,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:728;s:4:\"file\";s:15:\"placeholder.gif\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"placeholder-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:23:\"placeholder-300x168.gif\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/gif\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"placeholder-768x430.gif\";s:5:\"width\";i:768;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/gif\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"placeholder-1024x573.gif\";s:5:\"width\";i:1024;s:6:\"height\";i:573;s:9:\"mime-type\";s:9:\"image/gif\";}s:16:\"stm-img-1110-577\";a:4:{s:4:\"file\";s:24:\"placeholder-1110x577.gif\";s:5:\"width\";i:1110;s:6:\"height\";i:577;s:9:\"mime-type\";s:9:\"image/gif\";}s:15:\"stm-img-796-466\";a:4:{s:4:\"file\";s:23:\"placeholder-798x466.gif\";s:5:\"width\";i:798;s:6:\"height\";i:466;s:9:\"mime-type\";s:9:\"image/gif\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:23:\"placeholder-350x205.gif\";s:5:\"width\";i:350;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/gif\";}s:15:\"stm-img-350-356\";a:4:{s:4:\"file\";s:23:\"placeholder-350x356.gif\";s:5:\"width\";i:350;s:6:\"height\";i:356;s:9:\"mime-type\";s:9:\"image/gif\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:23:\"placeholder-350x181.gif\";s:5:\"width\";i:350;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/gif\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:23:\"placeholder-398x206.gif\";s:5:\"width\";i:398;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/gif\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:23:\"placeholder-255x135.gif\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/gif\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:23:\"placeholder-190x132.gif\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/gif\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(385,4278,'_wp_attachment_image_alt','placeholder'),(1163,4411,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:400;s:4:\"file\";s:14:\"about-us-1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"about-us-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:22:\"about-us-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:22:\"about-us-1-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-356\";a:4:{s:4:\"file\";s:22:\"about-us-1-300x356.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:22:\"about-us-1-300x181.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:22:\"about-us-1-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:22:\"about-us-1-255x135.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:22:\"about-us-1-190x132.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1162,4411,'_wp_attached_file','about-us-1.jpg'),(413,4282,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(414,4282,'_menu_item_type','custom'),(415,4282,'_menu_item_menu_item_parent','0'),(416,4282,'_menu_item_object_id','4282'),(417,4282,'_menu_item_object','custom'),(418,4282,'_menu_item_target',''),(419,4282,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(420,4282,'_menu_item_xfn',''),(421,4282,'_menu_item_url','#'),(422,4283,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(423,4283,'_wpb_shortcodes_custom_css','.vc_custom_1448545243300{margin-bottom: 0px !important;}.vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}.vc_custom_1487951534610{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}.vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}.vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1487793519972{margin-bottom: 45px !important;}.vc_custom_1487791986596{margin-bottom: 40px !important;}.vc_custom_1487792085611{margin-top: 40px !important;}.vc_custom_1487793492820{margin-bottom: 45px !important;}.vc_custom_1487923972573{margin-top: 40px !important;}.vc_custom_1487951487445{background-position: 0 0 !important;background-repeat: repeat !important;}.vc_custom_1487793251376{margin-bottom: 40px !important;}.vc_custom_1487949699452{margin-bottom: 45px !important;}.vc_custom_1487793212435{margin-top: 40px !important;}.vc_custom_1487793217874{margin-top: 40px !important;}.vc_custom_1487793224653{margin-top: 40px !important;}.vc_custom_1487793229635{margin-top: 40px !important;}.vc_custom_1487793235215{margin-top: 40px !important;}.vc_custom_1487793240785{margin-top: 40px !important;}.vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1514973090966{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1514973106893{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1514973132074{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1514973146643{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1514973161269{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1514973175540{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487924011977{margin-top: 40px !important;}.vc_custom_1487793473661{margin-bottom: 45px !important;}'),(424,4283,'_wpb_vc_js_status','true'),(425,4283,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(426,4283,'slide_template','default'),(427,4283,'title','hide'),(428,4283,'title_box_bg_repeat','repeat'),(429,4283,'breadcrumbs','hide'),(430,4283,'transparent_header','on'),(431,4283,'_wpb_shortcodes_custom_css','.vc_custom_1448545243300{margin-bottom: 0px !important;}.vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}.vc_custom_1487951534610{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}.vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}.vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}.vc_custom_1487793519972{margin-bottom: 45px !important;}.vc_custom_1487791986596{margin-bottom: 40px !important;}.vc_custom_1487792085611{margin-top: 40px !important;}.vc_custom_1487793492820{margin-bottom: 45px !important;}.vc_custom_1487923972573{margin-top: 40px !important;}.vc_custom_1487951487445{background-position: 0 0 !important;background-repeat: repeat !important;}.vc_custom_1487793251376{margin-bottom: 40px !important;}.vc_custom_1487949699452{margin-bottom: 45px !important;}.vc_custom_1487793212435{margin-top: 40px !important;}.vc_custom_1487793217874{margin-top: 40px !important;}.vc_custom_1487793224653{margin-top: 40px !important;}.vc_custom_1487793229635{margin-top: 40px !important;}.vc_custom_1487793235215{margin-top: 40px !important;}.vc_custom_1487793240785{margin-top: 40px !important;}.vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1514973090966{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1514973106893{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1514973132074{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1514973146643{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1514973161269{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1514973175540{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487924011977{margin-top: 40px !important;}.vc_custom_1487793473661{margin-bottom: 45px !important;}'),(1036,4328,'_wp_attached_file','offer-6.png'),(1037,4328,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:141;s:6:\"height\";i:225;s:4:\"file\";s:11:\"offer-6.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"offer-6-141x150.png\";s:5:\"width\";i:141;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:19:\"offer-6-141x205.png\";s:5:\"width\";i:141;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:19:\"offer-6-141x181.png\";s:5:\"width\";i:141;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:19:\"offer-6-141x206.png\";s:5:\"width\";i:141;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:19:\"offer-6-141x135.png\";s:5:\"width\";i:141;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:19:\"offer-6-141x132.png\";s:5:\"width\";i:141;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(432,4283,'alignment','left'),(433,4283,'_wp_page_template','default'),(485,370,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:1:{s:10:\"shortcodes\";a:1:{s:48:\"1514974406262-55c35e0b238f63b0449db176204c6a00-6\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:4:{s:13:\"element_width\";s:1:\"3\";s:3:\"gap\";s:2:\"15\";s:7:\"grid_id\";s:55:\"vc_gid:1514974406262-55c35e0b238f63b0449db176204c6a00-6\";s:7:\"include\";s:19:\"4408,4409,4410,4411\";}s:7:\"content\";s:0:\"\";}}}}'),(486,370,'_wpb_shortcodes_custom_css','.vc_custom_1472016399122{margin-top: 30px !important;margin-bottom: 51px !important;}.vc_custom_1445594570930{margin-bottom: 83px !important;}.vc_custom_1488274456547{margin-bottom: 35px !important;}.vc_custom_1445496956815{margin-bottom: 23px !important;}.vc_custom_1445496980428{margin-bottom: 19px !important;}.vc_custom_1487920475807{margin-bottom: 24px !important;}.vc_custom_1445583787565{margin-bottom: 24px !important;}'),(487,370,'_wpb_vc_js_status','true'),(488,370,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:1:{s:10:\"shortcodes\";a:1:{s:48:\"1514974406262-55c35e0b238f63b0449db176204c6a00-6\";a:3:{s:3:\"tag\";s:13:\"vc_media_grid\";s:4:\"atts\";a:4:{s:13:\"element_width\";s:1:\"3\";s:3:\"gap\";s:2:\"15\";s:7:\"grid_id\";s:55:\"vc_gid:1514974406262-55c35e0b238f63b0449db176204c6a00-6\";s:7:\"include\";s:19:\"4408,4409,4410,4411\";}s:7:\"content\";s:0:\"\";}}}}'),(489,370,'slide_template','default'),(490,370,'title','show'),(491,370,'title_box_custom_bg_image','4345'),(492,370,'title_box_bg_repeat','repeat'),(493,370,'breadcrumbs','show'),(494,370,'title_box_subtitle_font_color','#ffffff'),(495,370,'_wpb_shortcodes_custom_css','.vc_custom_1472016399122{margin-top: 30px !important;margin-bottom: 51px !important;}.vc_custom_1445594570930{margin-bottom: 83px !important;}.vc_custom_1488274456547{margin-bottom: 35px !important;}.vc_custom_1445496956815{margin-bottom: 23px !important;}.vc_custom_1445496980428{margin-bottom: 19px !important;}.vc_custom_1487920475807{margin-bottom: 24px !important;}.vc_custom_1445583787565{margin-bottom: 24px !important;}'),(1076,370,'_edit_last','1'),(1077,4353,'_wp_attached_file','1e5044b5-e87f-496d-ba47-81eaa64be09b_image_jpeg-e1487919985691.jpg'),(1078,4353,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:331;s:6:\"height\";i:441;s:4:\"file\";s:66:\"1e5044b5-e87f-496d-ba47-81eaa64be09b_image_jpeg-e1487919985691.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:74:\"1e5044b5-e87f-496d-ba47-81eaa64be09b_image_jpeg-e1487919985691-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:74:\"1e5044b5-e87f-496d-ba47-81eaa64be09b_image_jpeg-e1487919985691-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:74:\"1e5044b5-e87f-496d-ba47-81eaa64be09b_image_jpeg-e1487919985691-331x205.jpg\";s:5:\"width\";i:331;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-356\";a:4:{s:4:\"file\";s:74:\"1e5044b5-e87f-496d-ba47-81eaa64be09b_image_jpeg-e1487919985691-331x356.jpg\";s:5:\"width\";i:331;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:74:\"1e5044b5-e87f-496d-ba47-81eaa64be09b_image_jpeg-e1487919985691-331x181.jpg\";s:5:\"width\";i:331;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:74:\"1e5044b5-e87f-496d-ba47-81eaa64be09b_image_jpeg-e1487919985691-331x206.jpg\";s:5:\"width\";i:331;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:74:\"1e5044b5-e87f-496d-ba47-81eaa64be09b_image_jpeg-e1487919985691-255x135.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:74:\"1e5044b5-e87f-496d-ba47-81eaa64be09b_image_jpeg-e1487919985691-190x132.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"6\";s:8:\"keywords\";a:0:{}}}'),(496,370,'alignment','left'),(497,370,'_wp_page_template','default'),(518,4285,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(519,4285,'_menu_item_type','post_type'),(520,4285,'_menu_item_menu_item_parent','0'),(521,4285,'_menu_item_object_id','370'),(522,4285,'_menu_item_object','page'),(523,4285,'_menu_item_target',''),(524,4285,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(525,4285,'_menu_item_xfn',''),(526,4285,'_menu_item_url',''),(536,546,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(537,546,'_wpb_shortcodes_custom_css','.vc_custom_1446724724284{margin-top: 33px !important;margin-bottom: 42px !important;}.vc_custom_1446724426854{margin-bottom: 0px !important;}.vc_custom_1446724718390{margin-bottom: 42px !important;}.vc_custom_1487916920576{margin-bottom: 24px !important;}.vc_custom_1514974500483{margin-bottom: 31px !important;padding-left: 2px !important;}.vc_custom_1446703859040{margin-bottom: 20px !important;}.vc_custom_1446703897866{margin-bottom: 30px !important;}.vc_custom_1446703904260{padding-left: 2px !important;}'),(1156,4408,'_wp_attached_file','about-us-2.jpg'),(1157,4408,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:400;s:4:\"file\";s:14:\"about-us-2.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"about-us-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:22:\"about-us-2-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:22:\"about-us-2-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-356\";a:4:{s:4:\"file\";s:22:\"about-us-2-300x356.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:22:\"about-us-2-300x181.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:22:\"about-us-2-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:22:\"about-us-2-255x135.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:22:\"about-us-2-190x132.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1070,4345,'_wp_attached_file','slide_1920x770.jpg'),(538,546,'_wpb_vc_js_status','true'),(539,546,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(540,546,'slide_template','default'),(541,546,'alignment','left'),(542,546,'title','hide'),(543,546,'breadcrumbs','show'),(544,546,'_wpb_shortcodes_custom_css','.vc_custom_1446724724284{margin-top: 33px !important;margin-bottom: 42px !important;}.vc_custom_1446724426854{margin-bottom: 0px !important;}.vc_custom_1446724718390{margin-bottom: 42px !important;}.vc_custom_1487916920576{margin-bottom: 24px !important;}.vc_custom_1514974500483{margin-bottom: 31px !important;padding-left: 2px !important;}.vc_custom_1446703859040{margin-bottom: 20px !important;}.vc_custom_1446703897866{margin-bottom: 30px !important;}.vc_custom_1446703904260{padding-left: 2px !important;}'),(1152,4406,'_wp_attached_file','about-station-tyres-1.jpg'),(1153,4406,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:635;s:6:\"height\";i:510;s:4:\"file\";s:25:\"about-station-tyres-1.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"about-station-tyres-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:33:\"about-station-tyres-1-300x241.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-796-466\";a:4:{s:4:\"file\";s:33:\"about-station-tyres-1-635x466.jpg\";s:5:\"width\";i:635;s:6:\"height\";i:466;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:33:\"about-station-tyres-1-350x205.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-356\";a:4:{s:4:\"file\";s:33:\"about-station-tyres-1-350x356.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:33:\"about-station-tyres-1-350x181.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:33:\"about-station-tyres-1-398x206.jpg\";s:5:\"width\";i:398;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:33:\"about-station-tyres-1-255x135.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:33:\"about-station-tyres-1-190x132.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1145,712,'title_box_custom_bg_image','10'),(1154,4407,'_wp_attached_file','about-us-4.jpg'),(1155,4407,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:400;s:4:\"file\";s:14:\"about-us-4.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"about-us-4-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:\"about-us-4-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:22:\"about-us-4-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-356\";a:4:{s:4:\"file\";s:22:\"about-us-4-300x356.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:22:\"about-us-4-300x181.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:22:\"about-us-4-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:22:\"about-us-4-255x135.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:22:\"about-us-4-190x132.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1068,546,'_edit_last','1'),(1069,370,'_edit_lock','1514974487:1'),(545,546,'_wp_page_template','default'),(567,712,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(568,712,'_wpb_shortcodes_custom_css','.vc_custom_1487950973825{margin-bottom: 64px !important;}.vc_custom_1452251533394{margin-bottom: 40px !important;}.vc_custom_1487923529721{padding-top: 30px !important;padding-right: 30px !important;padding-bottom: 30px !important;padding-left: 30px !important;background-color: #000000 !important;}.vc_custom_1487923284932{margin-bottom: 25px !important;padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1448867270861{margin-bottom: 25px !important;}.vc_custom_1487950918753{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}.vc_custom_1487950918754{margin-bottom: 28px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}.vc_custom_1505130518031{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}.vc_custom_1505130518033{margin-bottom: 27px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}.vc_custom_1514974632392{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}.vc_custom_1514974632396{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}'),(1141,587,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:4:\"body\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1142,587,'_config_errors','a:1:{s:11:\"mail.sender\";a:1:{i:0;a:2:{s:4:\"code\";i:102;s:4:\"args\";a:3:{s:7:\"message\";s:0:\"\";s:6:\"params\";a:0:{}s:4:\"link\";s:78:\"http://contactform7.com/configuration-errors/#mail.sender:error_invalid_syntax\";}}}}'),(569,712,'_wpb_vc_js_status','true'),(570,712,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(571,712,'slide_template','default'),(572,712,'alignment','left'),(573,712,'title','show'),(574,712,'breadcrumbs','show'),(575,712,'_wpb_shortcodes_custom_css','.vc_custom_1487950973825{margin-bottom: 64px !important;}.vc_custom_1452251533394{margin-bottom: 40px !important;}.vc_custom_1487923529721{padding-top: 30px !important;padding-right: 30px !important;padding-bottom: 30px !important;padding-left: 30px !important;background-color: #000000 !important;}.vc_custom_1487923284932{margin-bottom: 25px !important;padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}.vc_custom_1448867270861{margin-bottom: 25px !important;}.vc_custom_1487950918753{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}.vc_custom_1487950918754{margin-bottom: 28px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}.vc_custom_1505130518031{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}.vc_custom_1505130518033{margin-bottom: 27px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}.vc_custom_1514974632392{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}.vc_custom_1514974632396{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}'),(1111,4375,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1112,4375,'_menu_item_type','post_type'),(1113,4375,'_menu_item_menu_item_parent','0'),(1114,4375,'_menu_item_object_id','4361'),(1115,4375,'_menu_item_object','page'),(1116,4375,'_menu_item_target',''),(1117,4375,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1118,4375,'_menu_item_xfn',''),(1119,4375,'_menu_item_url',''),(1121,4376,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1122,4376,'_menu_item_type','post_type'),(1123,4376,'_menu_item_menu_item_parent','0'),(1124,4376,'_menu_item_object_id','4283'),(1125,4376,'_menu_item_object','page'),(1126,4376,'_menu_item_target',''),(1127,4376,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1128,4376,'_menu_item_xfn',''),(1129,4376,'_menu_item_url',''),(576,712,'page_bg_color','#000000'),(577,712,'_wp_page_template','default'),(580,748,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(581,748,'_wpb_shortcodes_custom_css','.vc_custom_1447927631427{margin-bottom: 0px !important;}.vc_custom_1447760445886{margin-bottom: 29px !important;}.vc_custom_1447764478346{margin-bottom: 42px !important;}.vc_custom_1447765013212{margin-bottom: 43px !important;}.vc_custom_1447766022587{margin-top: 38px !important;border-top-width: 1px !important;padding-top: 35px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1447760659263{margin-top: 4px !important;margin-bottom: 16px !important;}.vc_custom_1447760739186{margin-bottom: 16px !important;}.vc_custom_1447760763410{margin-bottom: 17px !important;}'),(582,748,'_wpb_vc_js_status','true'),(583,748,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(584,748,'slide_template','default'),(585,748,'alignment','left'),(586,748,'title','hide'),(587,748,'breadcrumbs','show'),(588,748,'_oembed_4a9df2e0aa07707a25d296da02c283ef','<iframe width=\"1170\" height=\"658\" src=\"https://www.youtube.com/embed/1kCG-WqpVnI?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),(589,748,'_oembed_time_4a9df2e0aa07707a25d296da02c283ef','1447849312'),(590,748,'_wpb_shortcodes_custom_css','.vc_custom_1447927631427{margin-bottom: 0px !important;}.vc_custom_1447760445886{margin-bottom: 29px !important;}.vc_custom_1447764478346{margin-bottom: 42px !important;}.vc_custom_1447765013212{margin-bottom: 43px !important;}.vc_custom_1447766022587{margin-top: 38px !important;border-top-width: 1px !important;padding-top: 35px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1447760659263{margin-top: 4px !important;margin-bottom: 16px !important;}.vc_custom_1447760739186{margin-bottom: 16px !important;}.vc_custom_1447760763410{margin-bottom: 17px !important;}'),(591,748,'_thumbnail_id','4278'),(645,1064,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(646,1064,'_wpb_shortcodes_custom_css','.vc_custom_1447927631427{margin-bottom: 0px !important;}.vc_custom_1447760445886{margin-bottom: 29px !important;}.vc_custom_1447764478346{margin-bottom: 42px !important;}.vc_custom_1447765013212{margin-bottom: 43px !important;}.vc_custom_1447766022587{margin-top: 38px !important;border-top-width: 1px !important;padding-top: 35px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1447760659263{margin-top: 4px !important;margin-bottom: 16px !important;}.vc_custom_1447760739186{margin-bottom: 16px !important;}.vc_custom_1447760763410{margin-bottom: 17px !important;}'),(647,1064,'_wpb_vc_js_status','true'),(648,1064,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(649,1064,'slide_template','default'),(650,1064,'alignment','left'),(651,1064,'title','hide'),(652,1064,'breadcrumbs','show'),(653,1064,'_oembed_4a9df2e0aa07707a25d296da02c283ef','<iframe width=\"1170\" height=\"658\" src=\"https://www.youtube.com/embed/1kCG-WqpVnI?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),(654,1064,'_oembed_time_4a9df2e0aa07707a25d296da02c283ef','1447849312'),(655,1064,'_wpb_shortcodes_custom_css','.vc_custom_1447927631427{margin-bottom: 0px !important;}.vc_custom_1447760445886{margin-bottom: 29px !important;}.vc_custom_1447764478346{margin-bottom: 42px !important;}.vc_custom_1447765013212{margin-bottom: 43px !important;}.vc_custom_1447766022587{margin-top: 38px !important;border-top-width: 1px !important;padding-top: 35px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}.vc_custom_1447760659263{margin-top: 4px !important;margin-bottom: 16px !important;}.vc_custom_1447760739186{margin-bottom: 16px !important;}.vc_custom_1447760763410{margin-bottom: 17px !important;}'),(656,1064,'_dp_original','748'),(657,1064,'_thumbnail_id','4278'),(660,1073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(661,1073,'_wpb_shortcodes_custom_css','.vc_custom_1448261910223{margin-top: -36px !important;margin-bottom: 70px !important;}.vc_custom_1447760324176{margin-bottom: 27px !important;}.vc_custom_1447760445886{margin-bottom: 29px !important;}.vc_custom_1447760507284{margin-bottom: 42px !important;}.vc_custom_1448262282453{margin-bottom: 44px !important;}.vc_custom_1447760659263{margin-top: 4px !important;margin-bottom: 16px !important;}.vc_custom_1447760739186{margin-bottom: 16px !important;}.vc_custom_1447760763410{margin-bottom: 17px !important;}'),(662,1073,'_wpb_shortcodes_custom_css','.vc_custom_1448261910223{margin-top: -36px !important;margin-bottom: 70px !important;}.vc_custom_1447760324176{margin-bottom: 27px !important;}.vc_custom_1447760445886{margin-bottom: 29px !important;}.vc_custom_1447760507284{margin-bottom: 42px !important;}.vc_custom_1448262282453{margin-bottom: 44px !important;}.vc_custom_1447760659263{margin-top: 4px !important;margin-bottom: 16px !important;}.vc_custom_1447760739186{margin-bottom: 16px !important;}.vc_custom_1447760763410{margin-bottom: 17px !important;}'),(663,1073,'_wpb_vc_js_status','true'),(664,1073,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(665,1073,'slide_template','default'),(666,1073,'alignment','left'),(667,1073,'title','hide'),(668,1073,'breadcrumbs','hide'),(669,1073,'_dp_original','1044'),(670,1073,'_thumbnail_id','4278'),(673,1074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(674,1074,'_wpb_shortcodes_custom_css','.vc_custom_1448261910223{margin-top: -36px !important;margin-bottom: 70px !important;}.vc_custom_1447760324176{margin-bottom: 27px !important;}.vc_custom_1447760445886{margin-bottom: 29px !important;}.vc_custom_1447760507284{margin-bottom: 42px !important;}.vc_custom_1448262282453{margin-bottom: 44px !important;}.vc_custom_1447760659263{margin-top: 4px !important;margin-bottom: 16px !important;}.vc_custom_1447760739186{margin-bottom: 16px !important;}.vc_custom_1447760763410{margin-bottom: 17px !important;}'),(675,1074,'_wpb_shortcodes_custom_css','.vc_custom_1448261910223{margin-top: -36px !important;margin-bottom: 70px !important;}.vc_custom_1447760324176{margin-bottom: 27px !important;}.vc_custom_1447760445886{margin-bottom: 29px !important;}.vc_custom_1447760507284{margin-bottom: 42px !important;}.vc_custom_1448262282453{margin-bottom: 44px !important;}.vc_custom_1447760659263{margin-top: 4px !important;margin-bottom: 16px !important;}.vc_custom_1447760739186{margin-bottom: 16px !important;}.vc_custom_1447760763410{margin-bottom: 17px !important;}'),(676,1074,'_wpb_vc_js_status','true'),(677,1074,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(678,1074,'slide_template','default'),(679,1074,'alignment','left'),(680,1074,'title','hide'),(681,1074,'breadcrumbs','hide'),(682,1074,'_dp_original','787'),(683,1074,'_thumbnail_id','4278'),(686,1386,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(687,1386,'_wpb_shortcodes_custom_css','.vc_custom_1450862372092{margin-top: -36px !important;}.vc_custom_1447760445886{margin-bottom: 29px !important;}.vc_custom_1447760507284{margin-bottom: 42px !important;}.vc_custom_1448262282453{margin-bottom: 44px !important;}.vc_custom_1447760659263{margin-top: 4px !important;margin-bottom: 16px !important;}.vc_custom_1447760739186{margin-bottom: 16px !important;}.vc_custom_1447760763410{margin-bottom: 17px !important;}'),(688,1386,'_wpb_vc_js_status','true'),(689,1386,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(690,1386,'slide_template','default'),(691,1386,'alignment','left'),(692,1386,'title','hide'),(693,1386,'breadcrumbs','hide'),(694,1386,'_wpb_shortcodes_custom_css','.vc_custom_1450862372092{margin-top: -36px !important;}.vc_custom_1447760445886{margin-bottom: 29px !important;}.vc_custom_1447760507284{margin-bottom: 42px !important;}.vc_custom_1448262282453{margin-bottom: 44px !important;}.vc_custom_1447760659263{margin-top: 4px !important;margin-bottom: 16px !important;}.vc_custom_1447760739186{margin-bottom: 16px !important;}.vc_custom_1447760763410{margin-bottom: 17px !important;}'),(695,1386,'_thumbnail_id','4278'),(696,1386,'_wp_old_slug','tumpanus'),(1286,4356,'_wp_attachment_image_alt','Station Tyres Darwen sign'),(707,4287,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(708,4287,'_form','<p>Your Name (required)<br />\n [text* your-name] </p>\n\n<p>Your Email (required)<br />\n [email* your-email] </p>\n\n<p>Subject<br />\n [text your-subject] </p>\n\n<p>Your Message<br />\n [textarea your-message] </p>\n\n<p>[submit \"Send\"]</p>'),(709,4287,'_messages','a:8:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";}'),(710,4287,'_additional_settings',''),(711,4287,'_locale','en_US'),(712,188,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(713,188,'name','Timmy!'),(714,188,'email','timmy@mail.ru'),(715,188,'phone','32432423423'),(716,188,'date','2015/10/16 13:00'),(717,500,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(718,500,'_form','<div class=\"row\">\n <div class=\"col-md-6 col-sm-6\">\n <div class=\"form-group\">\n <div class=\"form-label heading-font\">First Name*</div>\n [text* your-name]\n </div>\n <div class=\"form-group\">\n <div class=\"form-label heading-font\">Email*</div>\n [email* your-email]\n </div>\n </div>\n <div class=\"col-md-6 col-sm-6\">\n <div class=\"form-group\">\n <div class=\"form-label heading-font\">Last Name*</div>\n [text* your-name-2]\n </div>\n <div class=\"form-group\">\n <div class=\"form-label heading-font\">Phone*</div>\n [tel* your-tel]\n </div>\n </div>\n</div>\n<div class=\"row\">\n <div class=\"col-md-12\">\n <div class=\"form-group-textarea\">\n <div class=\"form-label heading-font\">Your Message</div>\n [textarea your-message \"I am interested in a price quote on this vehicle. Please contact me at your earliest convenience with your best price for this vehicle.\"]\n </div>\n [recaptcha theme:dark]\n [submit \"Send message\"]\n </div>\n</div>'),(719,500,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:4:\"body\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(720,500,'_messages','a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";}'),(721,500,'_additional_settings',''),(722,500,'_locale','en_US'),(723,500,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(724,651,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(725,651,'_wpb_shortcodes_custom_css','.vc_custom_1447763022196{margin-top: 4px !important;margin-bottom: 0px !important;}.vc_custom_1447756117494{margin-bottom: 0px !important;}.vc_custom_1447756207847{margin-bottom: 0px !important;}.vc_custom_1447756269507{margin-bottom: 0px !important;}.vc_custom_1447758057972{margin-bottom: 0px !important;}'),(726,651,'_wpb_vc_js_status','true'),(727,651,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(728,651,'slide_template','default'),(729,651,'_wpb_shortcodes_custom_css','.vc_custom_1447763022196{margin-top: 4px !important;margin-bottom: 0px !important;}.vc_custom_1447756117494{margin-bottom: 0px !important;}.vc_custom_1447756207847{margin-bottom: 0px !important;}.vc_custom_1447756269507{margin-bottom: 0px !important;}.vc_custom_1447758057972{margin-bottom: 0px !important;}'),(730,768,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(731,768,'_wpb_vc_js_status','true'),(732,768,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(733,768,'slide_template','default'),(734,930,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(735,930,'_wpb_vc_js_status','true'),(736,930,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(737,930,'slide_template','default'),(738,1324,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(739,1324,'name','sd'),(740,1324,'email','cds@mail.ru'),(741,1324,'phone','234234'),(742,1324,'date','2015/12/16 20:00'),(743,1370,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(744,1370,'_wpb_shortcodes_custom_css','.vc_custom_1471586811175{margin-bottom: 30px !important;}'),(745,1370,'_wpb_vc_js_status','true'),(746,1370,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(747,1370,'slide_template','default'),(748,1370,'_wpb_shortcodes_custom_css','.vc_custom_1471586811175{margin-bottom: 30px !important;}'),(749,1560,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(750,1560,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(751,1560,'name','Timmy'),(752,1560,'email','timma@mail.ru'),(753,1560,'phone','998906324'),(754,1560,'date','2016/05/26 12:08'),(755,1590,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(756,1590,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(757,1590,'name','tim'),(758,1590,'email','timma@mail.ru'),(759,1590,'phone','23432'),(760,1590,'date','2016/05/26 12:19'),(761,1591,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(762,1591,'name','ewfwe'),(763,1591,'email','fewfew@mail.ru'),(764,1591,'phone','23434'),(765,1591,'date','2016/05/30 12:00'),(771,4153,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(772,4153,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(773,4153,'slide_template','default'),(774,4153,'_wpb_vc_js_status','true'),(775,587,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(776,587,'_form','<div class=\"row stm-forms-sm\">\n <div class=\"col-md-4 col-sm-4\">\n <div class=\"form-group\">\n <div class=\"form-label-small\">Name</div>\n [text* your-name]\n </div>\n </div>\n <div class=\"col-md-4 col-sm-4\">\n <div class=\"form-group\">\n <div class=\"form-label-small\">Email</div>\n [email* your-email]\n </div>\n </div>\n <div class=\"col-md-4 col-sm-4\">\n <div class=\"form-group\">\n <div class=\"form-label-small\">Phone</div>\n [tel* your-tel]\n </div>\n </div>\n</div>\n<div class=\"row stm-forms-sm\">\n <div class=\"col-md-4 col-sm-4\">\n <div class=\"form-group\">\n <div class=\"form-label-small\">Make/Model</div>\n [text* make-model]\n </div>\n </div>\n <div class=\"col-md-4 col-sm-4\">\n <div class=\"form-group\">\n <div class=\"form-label-small\">Mileage (optional)</div>\n [text mileage]\n </div>\n </div>\n <div class=\"col-md-4 col-sm-4\">\n <div class=\"form-group\">\n <div class=\"form-label-small\">Best time</div>\n <div class=\"stm-datepicker-input-icon\">\n [text* time class:stm-date-timepicker]\n </div>\n </div>\n </div>\n</div>\n<hr class=\"form-hr\"/>\n<div class=\"row\">\n <div class=\"col-md-4 col-sm-4\">\n [submit class:button-fluid \"Request a service\"]\n </div>\n <div class=\"col-md-8 col-sm-8\">\n <div class=\"stm-form-alert\">\n By submitting this form you will be scheduling a service appointment at no obligation and will be contacted within 48 hours by a service advisor.\n </div>\n </div>\n</div>'),(777,587,'_messages','a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";}'),(778,587,'_additional_settings',''),(779,587,'_locale','en_US'),(780,587,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(781,717,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(782,717,'_form','<div class=\"row\">\n <div class=\"col-md-7 col-sm-7\">\n <div class=\"row\">\n <div class=\"col-md-6 col-sm-6\">\n <div class=\"form-group\">\n <div class=\"contact-us-label\">First Name*</div>\n [text* name placeholder \"Enter your first name\"]\n </div>\n </div>\n <div class=\"col-md-6 col-sm-6\">\n <div class=\"form-group\">\n <div class=\"contact-us-label\">Last Name*</div>\n [text* last-name placeholder \"Enter your last name\"]\n </div>\n </div>\n </div>\n <div class=\"row\">\n <div class=\"col-md-6 col-sm-6\">\n <div class=\"form-group\">\n <div class=\"contact-us-label\">Email*</div>\n [email* email placeholder \"email@domain.com\"]\n </div>\n </div>\n <div class=\"col-md-6 col-sm-6\">\n <div class=\"form-group\">\n <div class=\"contact-us-label\">Phone</div>\n [tel* phone placeholder \"Phone number\"]\n </div>\n </div>\n </div>\n\n \n </div>\n\n <div class=\"col-md-5 col-sm-5\">\n <div class=\"form-group\">\n <div class=\"form-group\">\n <div class=\"contact-us-label\">Comment</div>\n [textarea message placeholder x5 \"Enter your message...\"]\n </div>\n </div>\n \n </div>\n\n <div class=\"col-md-5 col-sm-5\">\n <div class=\"form-group\">\n <div class=\"form-group\">\n \n [recaptcha theme:dark]\n </div>\n </div>\n \n </div>\n\n <div class=\"row\">\n <div class=\"col-md-5\">\n<div class=\"contact-us-submit\">\n [submit class:contact-us-submit \"Submit\"]\n </div>\n</div>\n</div>\n</div>'),(783,717,'_messages','a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";}'),(784,717,'_additional_settings',''),(785,717,'_locale','en_US'),(786,717,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(787,785,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(788,785,'_form','<div class=\"stm-inline-form\">[email* your-email placeholder \"Enter your email...\"][submit \"Get Notified\"]</div>'),(789,785,'_messages','a:22:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";}'),(790,785,'_additional_settings',''),(791,785,'_locale','en_US'),(792,785,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(793,4288,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(794,4288,'_menu_item_type','post_type'),(795,4288,'_menu_item_menu_item_parent','0'),(796,4288,'_menu_item_object_id','370'),(797,4288,'_menu_item_object','page'),(798,4288,'_menu_item_target',''),(799,4288,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(800,4288,'_menu_item_xfn',''),(801,4288,'_menu_item_url',''),(811,4290,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(812,4290,'_menu_item_type','post_type'),(813,4290,'_menu_item_menu_item_parent','0'),(814,4290,'_menu_item_object_id','546'),(815,4290,'_menu_item_object','page'),(816,4290,'_menu_item_target',''),(817,4290,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(818,4290,'_menu_item_xfn',''),(819,4290,'_menu_item_url',''),(820,4291,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(821,4291,'_menu_item_type','post_type'),(822,4291,'_menu_item_menu_item_parent','0'),(823,4291,'_menu_item_object_id','712'),(824,4291,'_menu_item_object','page'),(825,4291,'_menu_item_target',''),(826,4291,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(827,4291,'_menu_item_xfn',''),(828,4291,'_menu_item_url',''),(1161,4410,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:400;s:4:\"file\";s:16:\"about-us-4-1.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"about-us-4-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:24:\"about-us-4-1-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:24:\"about-us-4-1-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-356\";a:4:{s:4:\"file\";s:24:\"about-us-4-1-300x356.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:24:\"about-us-4-1-300x181.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:24:\"about-us-4-1-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:24:\"about-us-4-1-255x135.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:24:\"about-us-4-1-190x132.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1160,4410,'_wp_attached_file','about-us-4-1.jpg'),(1159,4409,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:400;s:4:\"file\";s:14:\"about-us-3.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"about-us-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:22:\"about-us-3-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:22:\"about-us-3-300x205.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-356\";a:4:{s:4:\"file\";s:22:\"about-us-3-300x356.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:22:\"about-us-3-300x181.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:22:\"about-us-3-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:22:\"about-us-3-255x135.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:22:\"about-us-3-190x132.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1158,4409,'_wp_attached_file','about-us-3.jpg'),(1136,4381,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:40;s:6:\"height\";i:57;s:4:\"file\";s:14:\"map-icon-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1135,4381,'_wp_attached_file','map-icon-1.png'),(1132,4378,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:40;s:6:\"height\";i:57;s:4:\"file\";s:12:\"map-icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1131,4378,'_wp_attached_file','map-icon.png'),(937,4304,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(938,4304,'_menu_item_type','post_type'),(939,4304,'_menu_item_menu_item_parent','4282'),(940,4304,'_menu_item_object_id','712'),(941,4304,'_menu_item_object','page'),(942,4304,'_menu_item_target',''),(943,4304,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(944,4304,'_menu_item_xfn',''),(945,4304,'_menu_item_url',''),(946,4305,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(947,4305,'_menu_item_type','post_type'),(948,4305,'_menu_item_menu_item_parent','4282'),(949,4305,'_menu_item_object_id','370'),(950,4305,'_menu_item_object','page'),(951,4305,'_menu_item_target',''),(952,4305,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(953,4305,'_menu_item_xfn',''),(954,4305,'_menu_item_url',''),(1285,4358,'_wp_attachment_image_alt','Station Tyres Darwen sign'),(1284,4406,'_wp_attachment_image_alt','Station Tyres Darwen front entrance'),(1283,4409,'_wp_attachment_image_alt','Station Tyres in Darwen'),(1282,4353,'_wp_attachment_image_alt','Tyres in Darwen'),(1281,4355,'_wp_attachment_image_alt','Car Service in Darwen'),(982,4309,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(983,4309,'_menu_item_type','post_type'),(984,4309,'_menu_item_menu_item_parent','0'),(985,4309,'_menu_item_object_id','712'),(986,4309,'_menu_item_object','page'),(987,4309,'_menu_item_target',''),(988,4309,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(989,4309,'_menu_item_xfn',''),(990,4309,'_menu_item_url',''),(1009,4312,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1010,4312,'_menu_item_type','post_type'),(1011,4312,'_menu_item_menu_item_parent','0'),(1012,4312,'_menu_item_object_id','546'),(1013,4312,'_menu_item_object','page'),(1014,4312,'_menu_item_target',''),(1015,4312,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1016,4312,'_menu_item_xfn',''),(1017,4312,'_menu_item_url',''),(1018,4313,'_wp_attached_file','revslider/home_slider/moto_slider_img.jpg'),(1019,4313,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:760;s:4:\"file\";s:41:\"revslider/home_slider/moto_slider_img.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"moto_slider_img-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:\"moto_slider_img-300x119.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:119;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"moto_slider_img-768x304.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:304;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"moto_slider_img-1024x405.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:405;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"stm-img-1110-577\";a:4:{s:4:\"file\";s:28:\"moto_slider_img-1110x577.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:577;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-796-466\";a:4:{s:4:\"file\";s:27:\"moto_slider_img-798x466.jpg\";s:5:\"width\";i:798;s:6:\"height\";i:466;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:27:\"moto_slider_img-350x205.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-356\";a:4:{s:4:\"file\";s:27:\"moto_slider_img-350x356.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:27:\"moto_slider_img-350x181.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:27:\"moto_slider_img-398x206.jpg\";s:5:\"width\";i:398;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:27:\"moto_slider_img-255x135.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:27:\"moto_slider_img-190x132.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1020,4314,'_wp_attached_file','revslider/home_slider/yamaha-slider.png'),(1021,4314,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:314;s:6:\"height\";i:68;s:4:\"file\";s:39:\"revslider/home_slider/yamaha-slider.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"yamaha-slider-150x68.png\";s:5:\"width\";i:150;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"yamaha-slider-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:24:\"yamaha-slider-255x68.png\";s:5:\"width\";i:255;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:24:\"yamaha-slider-190x68.png\";s:5:\"width\";i:190;s:6:\"height\";i:68;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1028,4283,'_edit_lock','1514974098:1'),(1029,4283,'_edit_last','1'),(1032,4322,'_wp_attached_file','about-image-1.jpg'),(1033,4322,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:635;s:6:\"height\";i:510;s:4:\"file\";s:17:\"about-image-1.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"about-image-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:25:\"about-image-1-300x241.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-796-466\";a:4:{s:4:\"file\";s:25:\"about-image-1-635x466.jpg\";s:5:\"width\";i:635;s:6:\"height\";i:466;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:25:\"about-image-1-350x205.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-356\";a:4:{s:4:\"file\";s:25:\"about-image-1-350x356.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:25:\"about-image-1-350x181.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:25:\"about-image-1-398x206.jpg\";s:5:\"width\";i:398;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:25:\"about-image-1-255x135.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:25:\"about-image-1-190x132.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1040,4330,'_wp_attached_file','offer-2.png'),(1041,4330,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:141;s:6:\"height\";i:225;s:4:\"file\";s:11:\"offer-2.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"offer-2-141x150.png\";s:5:\"width\";i:141;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:19:\"offer-2-141x205.png\";s:5:\"width\";i:141;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:19:\"offer-2-141x181.png\";s:5:\"width\";i:141;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:19:\"offer-2-141x206.png\";s:5:\"width\";i:141;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:19:\"offer-2-141x135.png\";s:5:\"width\";i:141;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:19:\"offer-2-141x132.png\";s:5:\"width\";i:141;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1042,4331,'_wp_attached_file','offer-3.png'),(1043,4331,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:141;s:6:\"height\";i:225;s:4:\"file\";s:11:\"offer-3.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"offer-3-141x150.png\";s:5:\"width\";i:141;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:19:\"offer-3-141x205.png\";s:5:\"width\";i:141;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:19:\"offer-3-141x181.png\";s:5:\"width\";i:141;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:19:\"offer-3-141x206.png\";s:5:\"width\";i:141;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:19:\"offer-3-141x135.png\";s:5:\"width\";i:141;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:19:\"offer-3-141x132.png\";s:5:\"width\";i:141;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1044,4332,'_wp_attached_file','offer-4.png'),(1045,4332,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:141;s:6:\"height\";i:225;s:4:\"file\";s:11:\"offer-4.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"offer-4-141x150.png\";s:5:\"width\";i:141;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:19:\"offer-4-141x205.png\";s:5:\"width\";i:141;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:19:\"offer-4-141x181.png\";s:5:\"width\";i:141;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:19:\"offer-4-141x206.png\";s:5:\"width\";i:141;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:19:\"offer-4-141x135.png\";s:5:\"width\";i:141;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:19:\"offer-4-141x132.png\";s:5:\"width\";i:141;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1046,4333,'_wp_attached_file','offer-5.png'),(1047,4333,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:141;s:6:\"height\";i:225;s:4:\"file\";s:11:\"offer-5.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"offer-5-141x150.png\";s:5:\"width\";i:141;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:19:\"offer-5-141x205.png\";s:5:\"width\";i:141;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:19:\"offer-5-141x181.png\";s:5:\"width\";i:141;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:19:\"offer-5-141x206.png\";s:5:\"width\";i:141;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:19:\"offer-5-141x135.png\";s:5:\"width\";i:141;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:19:\"offer-5-141x132.png\";s:5:\"width\";i:141;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1067,546,'_edit_lock','1514974513:1'),(1071,4345,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:770;s:4:\"file\";s:18:\"slide_1920x770.jpg\";s:5:\"sizes\";a:12:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"slide_1920x770-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:\"slide_1920x770-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"slide_1920x770-768x308.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:308;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"slide_1920x770-1024x411.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:411;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"stm-img-1110-577\";a:4:{s:4:\"file\";s:27:\"slide_1920x770-1110x577.jpg\";s:5:\"width\";i:1110;s:6:\"height\";i:577;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-796-466\";a:4:{s:4:\"file\";s:26:\"slide_1920x770-798x466.jpg\";s:5:\"width\";i:798;s:6:\"height\";i:466;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:26:\"slide_1920x770-350x205.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-356\";a:4:{s:4:\"file\";s:26:\"slide_1920x770-350x356.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:26:\"slide_1920x770-350x181.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:26:\"slide_1920x770-398x206.jpg\";s:5:\"width\";i:398;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:26:\"slide_1920x770-255x135.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:26:\"slide_1920x770-190x132.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"2\";s:6:\"credit\";s:7:\"unknown\";s:6:\"camera\";s:22:\"Canon EOS 400D DIGITAL\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1385479114\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"28\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:4:\"0.04\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(1048,717,'_mail','a:8:{s:9:\"recipient\";s:28:\"abs-stationtyres@hotmail.com\";s:7:\"subject\";s:30:\"Contact Us Request From [name]\";s:6:\"sender\";s:7:\"[email]\";s:4:\"body\";s:86:\"Name: [name]\nLastname: [last-name]\nEmail id: [email]\nPhone: [phone]\nMessage: [message]\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1049,717,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:4:\"body\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1260,717,'_config_errors','a:1:{s:11:\"mail.sender\";a:1:{i:0;a:2:{s:4:\"code\";i:103;s:4:\"args\";a:3:{s:7:\"message\";s:0:\"\";s:6:\"params\";a:0:{}s:4:\"link\";s:88:\"http://contactform7.com/configuration-errors/#mail.sender:error_email_not_in_site_domain\";}}}}'),(1140,587,'_mail','a:8:{s:9:\"recipient\";s:29:\"bhoobal.webdesigner@gmail.com\";s:7:\"subject\";s:41:\"Schedule service Request From [your-name]\";s:6:\"sender\";s:28:\"<[your-name]> <[your-email]>\";s:4:\"body\";s:124:\"Name: [your-name]\nEmail: [your-email]\nTel: [your-tel]\nMake-Model: [make-model]\nMileage: [mileage]\nBest time to call : [time]\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1079,4354,'_wp_attached_file','933128d1-3812-4ddc-9973-421a4cdfd0c9_image_jpeg-e1487919973301.jpg'),(1080,4354,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:331;s:6:\"height\";i:441;s:4:\"file\";s:66:\"933128d1-3812-4ddc-9973-421a4cdfd0c9_image_jpeg-e1487919973301.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:74:\"933128d1-3812-4ddc-9973-421a4cdfd0c9_image_jpeg-e1487919973301-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:74:\"933128d1-3812-4ddc-9973-421a4cdfd0c9_image_jpeg-e1487919973301-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:74:\"933128d1-3812-4ddc-9973-421a4cdfd0c9_image_jpeg-e1487919973301-331x205.jpg\";s:5:\"width\";i:331;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-356\";a:4:{s:4:\"file\";s:74:\"933128d1-3812-4ddc-9973-421a4cdfd0c9_image_jpeg-e1487919973301-331x356.jpg\";s:5:\"width\";i:331;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:74:\"933128d1-3812-4ddc-9973-421a4cdfd0c9_image_jpeg-e1487919973301-331x181.jpg\";s:5:\"width\";i:331;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:74:\"933128d1-3812-4ddc-9973-421a4cdfd0c9_image_jpeg-e1487919973301-331x206.jpg\";s:5:\"width\";i:331;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:74:\"933128d1-3812-4ddc-9973-421a4cdfd0c9_image_jpeg-e1487919973301-255x135.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:74:\"933128d1-3812-4ddc-9973-421a4cdfd0c9_image_jpeg-e1487919973301-190x132.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"6\";s:8:\"keywords\";a:0:{}}}'),(1081,4355,'_wp_attached_file','1c575350-1e9d-420e-84ed-205c2fe66a77_image_jpeg-e1487919951714.jpg'),(1082,4355,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:331;s:6:\"height\";i:441;s:4:\"file\";s:66:\"1c575350-1e9d-420e-84ed-205c2fe66a77_image_jpeg-e1487919951714.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:74:\"1c575350-1e9d-420e-84ed-205c2fe66a77_image_jpeg-e1487919951714-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:74:\"1c575350-1e9d-420e-84ed-205c2fe66a77_image_jpeg-e1487919951714-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:74:\"1c575350-1e9d-420e-84ed-205c2fe66a77_image_jpeg-e1487919951714-331x205.jpg\";s:5:\"width\";i:331;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-356\";a:4:{s:4:\"file\";s:74:\"1c575350-1e9d-420e-84ed-205c2fe66a77_image_jpeg-e1487919951714-331x356.jpg\";s:5:\"width\";i:331;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:74:\"1c575350-1e9d-420e-84ed-205c2fe66a77_image_jpeg-e1487919951714-331x181.jpg\";s:5:\"width\";i:331;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:74:\"1c575350-1e9d-420e-84ed-205c2fe66a77_image_jpeg-e1487919951714-331x206.jpg\";s:5:\"width\";i:331;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:74:\"1c575350-1e9d-420e-84ed-205c2fe66a77_image_jpeg-e1487919951714-255x135.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:74:\"1c575350-1e9d-420e-84ed-205c2fe66a77_image_jpeg-e1487919951714-190x132.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"6\";s:8:\"keywords\";a:0:{}}}'),(1083,4356,'_wp_attached_file','95b1e83d-ba6f-4425-bc08-e672ada19715_image_jpeg.jpg'),(1084,4356,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:441;s:6:\"height\";i:331;s:4:\"file\";s:51:\"95b1e83d-ba6f-4425-bc08-e672ada19715_image_jpeg.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"95b1e83d-ba6f-4425-bc08-e672ada19715_image_jpeg-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:59:\"95b1e83d-ba6f-4425-bc08-e672ada19715_image_jpeg-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:59:\"95b1e83d-ba6f-4425-bc08-e672ada19715_image_jpeg-350x205.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-356\";a:4:{s:4:\"file\";s:59:\"95b1e83d-ba6f-4425-bc08-e672ada19715_image_jpeg-350x331.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:331;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:59:\"95b1e83d-ba6f-4425-bc08-e672ada19715_image_jpeg-350x181.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:59:\"95b1e83d-ba6f-4425-bc08-e672ada19715_image_jpeg-398x206.jpg\";s:5:\"width\";i:398;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:59:\"95b1e83d-ba6f-4425-bc08-e672ada19715_image_jpeg-255x135.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:59:\"95b1e83d-ba6f-4425-bc08-e672ada19715_image_jpeg-190x132.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1085,4355,'_wp_attachment_backup_sizes','a:9:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:441;s:6:\"height\";i:331;s:4:\"file\";s:51:\"1c575350-1e9d-420e-84ed-205c2fe66a77_image_jpeg.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:59:\"1c575350-1e9d-420e-84ed-205c2fe66a77_image_jpeg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:59:\"1c575350-1e9d-420e-84ed-205c2fe66a77_image_jpeg-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"stm-img-350-205-orig\";a:4:{s:4:\"file\";s:59:\"1c575350-1e9d-420e-84ed-205c2fe66a77_image_jpeg-350x205.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"stm-img-350-356-orig\";a:4:{s:4:\"file\";s:59:\"1c575350-1e9d-420e-84ed-205c2fe66a77_image_jpeg-350x331.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:331;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"stm-img-350-181-orig\";a:4:{s:4:\"file\";s:59:\"1c575350-1e9d-420e-84ed-205c2fe66a77_image_jpeg-350x181.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"stm-img-398-206-orig\";a:4:{s:4:\"file\";s:59:\"1c575350-1e9d-420e-84ed-205c2fe66a77_image_jpeg-398x206.jpg\";s:5:\"width\";i:398;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"stm-img-255-135-orig\";a:4:{s:4:\"file\";s:59:\"1c575350-1e9d-420e-84ed-205c2fe66a77_image_jpeg-255x135.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"stm-img-190-132-orig\";a:4:{s:4:\"file\";s:59:\"1c575350-1e9d-420e-84ed-205c2fe66a77_image_jpeg-190x132.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(1086,4354,'_wp_attachment_backup_sizes','a:9:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:441;s:6:\"height\";i:331;s:4:\"file\";s:51:\"933128d1-3812-4ddc-9973-421a4cdfd0c9_image_jpeg.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:59:\"933128d1-3812-4ddc-9973-421a4cdfd0c9_image_jpeg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:59:\"933128d1-3812-4ddc-9973-421a4cdfd0c9_image_jpeg-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"stm-img-350-205-orig\";a:4:{s:4:\"file\";s:59:\"933128d1-3812-4ddc-9973-421a4cdfd0c9_image_jpeg-350x205.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"stm-img-350-356-orig\";a:4:{s:4:\"file\";s:59:\"933128d1-3812-4ddc-9973-421a4cdfd0c9_image_jpeg-350x331.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:331;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"stm-img-350-181-orig\";a:4:{s:4:\"file\";s:59:\"933128d1-3812-4ddc-9973-421a4cdfd0c9_image_jpeg-350x181.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"stm-img-398-206-orig\";a:4:{s:4:\"file\";s:59:\"933128d1-3812-4ddc-9973-421a4cdfd0c9_image_jpeg-398x206.jpg\";s:5:\"width\";i:398;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"stm-img-255-135-orig\";a:4:{s:4:\"file\";s:59:\"933128d1-3812-4ddc-9973-421a4cdfd0c9_image_jpeg-255x135.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"stm-img-190-132-orig\";a:4:{s:4:\"file\";s:59:\"933128d1-3812-4ddc-9973-421a4cdfd0c9_image_jpeg-190x132.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(1087,4353,'_wp_attachment_backup_sizes','a:9:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:441;s:6:\"height\";i:331;s:4:\"file\";s:51:\"1e5044b5-e87f-496d-ba47-81eaa64be09b_image_jpeg.jpg\";}s:14:\"thumbnail-orig\";a:4:{s:4:\"file\";s:59:\"1e5044b5-e87f-496d-ba47-81eaa64be09b_image_jpeg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"medium-orig\";a:4:{s:4:\"file\";s:59:\"1e5044b5-e87f-496d-ba47-81eaa64be09b_image_jpeg-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"stm-img-350-205-orig\";a:4:{s:4:\"file\";s:59:\"1e5044b5-e87f-496d-ba47-81eaa64be09b_image_jpeg-350x205.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"stm-img-350-356-orig\";a:4:{s:4:\"file\";s:59:\"1e5044b5-e87f-496d-ba47-81eaa64be09b_image_jpeg-350x331.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:331;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"stm-img-350-181-orig\";a:4:{s:4:\"file\";s:59:\"1e5044b5-e87f-496d-ba47-81eaa64be09b_image_jpeg-350x181.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"stm-img-398-206-orig\";a:4:{s:4:\"file\";s:59:\"1e5044b5-e87f-496d-ba47-81eaa64be09b_image_jpeg-398x206.jpg\";s:5:\"width\";i:398;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"stm-img-255-135-orig\";a:4:{s:4:\"file\";s:59:\"1e5044b5-e87f-496d-ba47-81eaa64be09b_image_jpeg-255x135.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:20:\"stm-img-190-132-orig\";a:4:{s:4:\"file\";s:59:\"1e5044b5-e87f-496d-ba47-81eaa64be09b_image_jpeg-190x132.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}'),(1088,4358,'_wp_attached_file','about-station-tyres.jpg'),(1089,4358,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:635;s:6:\"height\";i:510;s:4:\"file\";s:23:\"about-station-tyres.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"about-station-tyres-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:\"about-station-tyres-300x241.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:241;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-796-466\";a:4:{s:4:\"file\";s:31:\"about-station-tyres-635x466.jpg\";s:5:\"width\";i:635;s:6:\"height\";i:466;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:31:\"about-station-tyres-350x205.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:205;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-356\";a:4:{s:4:\"file\";s:31:\"about-station-tyres-350x356.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:31:\"about-station-tyres-350x181.jpg\";s:5:\"width\";i:350;s:6:\"height\";i:181;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:31:\"about-station-tyres-398x206.jpg\";s:5:\"width\";i:398;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:31:\"about-station-tyres-255x135.jpg\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:31:\"about-station-tyres-190x132.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1090,4361,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1091,4361,'_edit_last','1'),(1092,4361,'_edit_lock','1514973954:1'),(1093,4361,'_wp_page_template','default'),(1094,4361,'slide_template','default'),(1095,4361,'alignment','left'),(1096,4361,'title','show'),(1097,4361,'breadcrumbs','show'),(1098,4361,'_wpb_vc_js_status','true'),(1099,4361,'_wpb_shortcodes_custom_css','.vc_custom_1487792709049{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}.vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}.vc_custom_1487793251376{margin-bottom: 40px !important;}.vc_custom_1487922520143{margin-top: 70px !important;margin-bottom: 40px !important;}.vc_custom_1487951870402{margin-bottom: 45px !important;}.vc_custom_1487793212435{margin-top: 40px !important;}.vc_custom_1487793217874{margin-top: 40px !important;}.vc_custom_1487793224653{margin-top: 40px !important;}.vc_custom_1487793229635{margin-top: 40px !important;}.vc_custom_1487793235215{margin-top: 40px !important;}.vc_custom_1487793240785{margin-top: 40px !important;}.vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1514973578523{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1514973590950{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1514973605573{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1514973620020{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1514973636652{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793212435{margin-top: 40px !important;}.vc_custom_1487793217874{margin-top: 40px !important;}.vc_custom_1487793224653{margin-top: 40px !important;}.vc_custom_1487793229635{margin-top: 40px !important;}.vc_custom_1487793235215{margin-top: 40px !important;}.vc_custom_1487793240785{margin-top: 40px !important;}.vc_custom_1487922349346{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487922354413{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1514973659837{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487922394733{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487922407507{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1514973676244{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487922436386{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487922443553{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1488273883162{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487922460170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487922464694{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1488273898398{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487922484035{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487922472493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1488273910323{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}.vc_custom_1487793473661{margin-bottom: 45px !important;}'),(1100,4366,'_wp_attached_file','offer-10.png'),(1101,4366,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:141;s:6:\"height\";i:225;s:4:\"file\";s:12:\"offer-10.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"offer-10-141x150.png\";s:5:\"width\";i:141;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:20:\"offer-10-141x205.png\";s:5:\"width\";i:141;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:20:\"offer-10-141x181.png\";s:5:\"width\";i:141;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:20:\"offer-10-141x206.png\";s:5:\"width\";i:141;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:20:\"offer-10-141x135.png\";s:5:\"width\";i:141;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:20:\"offer-10-141x132.png\";s:5:\"width\";i:141;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1102,4367,'_wp_attached_file','offer-7.png'),(1103,4367,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:141;s:6:\"height\";i:225;s:4:\"file\";s:11:\"offer-7.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"offer-7-141x150.png\";s:5:\"width\";i:141;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:19:\"offer-7-141x205.png\";s:5:\"width\";i:141;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:19:\"offer-7-141x181.png\";s:5:\"width\";i:141;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:19:\"offer-7-141x206.png\";s:5:\"width\";i:141;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:19:\"offer-7-141x135.png\";s:5:\"width\";i:141;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:19:\"offer-7-141x132.png\";s:5:\"width\";i:141;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1104,4368,'_wp_attached_file','offer-8.png'),(1105,4368,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:141;s:6:\"height\";i:225;s:4:\"file\";s:11:\"offer-8.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"offer-8-141x150.png\";s:5:\"width\";i:141;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:19:\"offer-8-141x205.png\";s:5:\"width\";i:141;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:19:\"offer-8-141x181.png\";s:5:\"width\";i:141;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:19:\"offer-8-141x206.png\";s:5:\"width\";i:141;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:19:\"offer-8-141x135.png\";s:5:\"width\";i:141;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:19:\"offer-8-141x132.png\";s:5:\"width\";i:141;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1106,4369,'_wp_attached_file','offer-9.png'),(1107,4369,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:141;s:6:\"height\";i:225;s:4:\"file\";s:11:\"offer-9.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"offer-9-141x150.png\";s:5:\"width\";i:141;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:19:\"offer-9-141x205.png\";s:5:\"width\";i:141;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:19:\"offer-9-141x181.png\";s:5:\"width\";i:141;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:19:\"offer-9-141x206.png\";s:5:\"width\";i:141;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:19:\"offer-9-141x135.png\";s:5:\"width\";i:141;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:19:\"offer-9-141x132.png\";s:5:\"width\";i:141;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1108,4361,'title_box_custom_bg_image','6'),(1109,712,'_edit_lock','1514974714:1'),(1110,712,'_edit_last','1'),(1166,4415,'_wp_attached_file','favicon-1.png'),(1167,4415,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:50;s:4:\"file\";s:13:\"favicon-1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1168,4416,'_wp_attached_file','cropped-favicon-1.png'),(1169,4416,'_wp_attachment_context','site-icon'),(1170,4416,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:21:\"cropped-favicon-1.png\";s:5:\"sizes\";a:13:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"cropped-favicon-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:29:\"cropped-favicon-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-796-466\";a:4:{s:4:\"file\";s:29:\"cropped-favicon-1-512x466.png\";s:5:\"width\";i:512;s:6:\"height\";i:466;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-205\";a:4:{s:4:\"file\";s:29:\"cropped-favicon-1-350x205.png\";s:5:\"width\";i:350;s:6:\"height\";i:205;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-356\";a:4:{s:4:\"file\";s:29:\"cropped-favicon-1-350x356.png\";s:5:\"width\";i:350;s:6:\"height\";i:356;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-350-181\";a:4:{s:4:\"file\";s:29:\"cropped-favicon-1-350x181.png\";s:5:\"width\";i:350;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-398-206\";a:4:{s:4:\"file\";s:29:\"cropped-favicon-1-398x206.png\";s:5:\"width\";i:398;s:6:\"height\";i:206;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-255-135\";a:4:{s:4:\"file\";s:29:\"cropped-favicon-1-255x135.png\";s:5:\"width\";i:255;s:6:\"height\";i:135;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"stm-img-190-132\";a:4:{s:4:\"file\";s:29:\"cropped-favicon-1-190x132.png\";s:5:\"width\";i:190;s:6:\"height\";i:132;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:29:\"cropped-favicon-1-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:29:\"cropped-favicon-1-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:29:\"cropped-favicon-1-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:27:\"cropped-favicon-1-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1280,4410,'_wp_attachment_image_alt','Station Tyres Darwen entrance'),(1287,4456,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(1277,8,'_wp_attachment_image_alt','Tyres in Darwen, Tyres Darwen'),(1278,4412,'_wp_attachment_image_alt','Station Tyres Darwen front');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext 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 `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=MyISAM AUTO_INCREMENT=4471 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_posts`
--
LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (1,1,'2017-02-22 18:28:53','2017-02-22 18:28:53','Welcome to WordPress. This is your first post. Edit or delete it, then start writing!','Hello world!','','publish','open','open','','hello-world','','','2017-02-22 18:28:53','2017-02-22 18:28:53','',0,'http://stationtyresdarwen.co.uk/?p=1',0,'post','',1),(4,1,'2017-02-22 18:41:20','2017-02-22 18:41:20','<label> Your Name (required)\n [text* your-name] </label>\n\n<label> Your Email (required)\n [email* your-email] </label>\n\n<label> Subject\n [text your-subject] </label>\n\n<label> Your Message\n [textarea your-message] </label>\n\n[submit \"Send\"]\nABS Station Tyres \"[your-subject]\"\n[your-name] <wordpress@stationtyresdarwen.co.uk>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on ABS Station Tyres (http://stationtyresdarwen.co.uk)\nbhoobal.webdesigner@gmail.com\nReply-To: [your-email]\n\n0\n0\n\nABS Station Tyres \"[your-subject]\"\nABS Station Tyres <wordpress@stationtyresdarwen.co.uk>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on ABS Station Tyres (http://stationtyresdarwen.co.uk)\n[your-email]\nReply-To: bhoobal.webdesigner@gmail.com\n\n0\n0\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2017-02-22 18:41:20','2017-02-22 18:41:20','',0,'http://stationtyresdarwen.co.uk/?post_type=wpcf7_contact_form&p=4',0,'wpcf7_contact_form','',0),(6,1,'2017-02-22 18:47:08','2017-02-22 18:47:08','','services-bg','','inherit','open','closed','','services-bg','','','2017-02-22 18:47:08','2017-02-22 18:47:08','',0,'http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png',0,'attachment','image/png',0),(7,1,'2017-02-22 18:47:13','2017-02-22 18:47:13','','slider','','inherit','open','closed','','slider','','','2017-02-22 18:47:13','2017-02-22 18:47:13','',0,'http://stationtyresdarwen.co.uk/wp-content/uploads/slider.jpg',0,'attachment','image/jpeg',0),(8,1,'2017-02-22 18:47:16','2017-02-22 18:47:16','Tyres in Darwen, Tyres Darwen','station-tyres-logo','Tyres in Darwen, Tyres Darwen','inherit','open','closed','','station-tyres-logo','','','2017-03-03 10:30:38','2017-03-03 10:30:38','',0,'http://stationtyresdarwen.co.uk/wp-content/uploads/station-tyres-logo.png',0,'attachment','image/png',0),(10,1,'2017-02-22 18:47:30','2017-02-22 18:47:30','','contact-us-bg','','inherit','open','closed','','contact-us-bg','','','2017-02-22 18:47:30','2017-02-22 18:47:30','',0,'http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png',0,'attachment','image/png',0),(11,1,'2017-02-22 18:47:33','2017-02-22 18:47:33','','offers-bg','','inherit','open','closed','','offers-bg','','','2017-02-22 18:47:33','2017-02-22 18:47:33','',0,'http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png',0,'attachment','image/png',0),(1361,1,'2015-12-22 11:25:28','2015-12-22 11:25:28','Pellentesque habitant morbi tristique ','Pellentesque habitant morbi','publish','bwmtestnew','open','closed','','pellentesque-habitant-morbi','','','2015-12-22 11:25:28','2015-12-22 11:25:28','',0,'http://bikes.loc/listings/pellentesque-habitant-morbi/',0,'listings','',0),(1362,1,'2015-12-22 11:25:29','2015-12-22 11:25:29','Pellentesque morbi tristique ','Pellentesque habitant','draft','bwmold','open','closed','','pellentesque-habitant','','','2015-12-22 11:25:29','2015-12-22 11:25:29','',0,'http://bikes.loc/listings/pellentesque-habitant/',0,'listings','',0),(1432,1,'2016-08-22 10:08:32','2016-08-22 10:08:32','<div class=\"stm-mc-unit\"><input type=\"text\" name=\"FNAME\" placeholder=\"Name\"></div>\n<div class=\"stm-mc-unit\"><input type=\"email\" name=\"EMAIL\" placeholder=\"Enter your email...\" required /><input type=\"submit\" value=\"Sign up\" /></div>\n<div class=\"stm-mc-label\">Get latest updates and offers.</div>\n<input type=\"submit\" class=\"heading-font\" value=\"Send message\">','Default sign-up form','','publish','closed','closed','','default-sign-up-form','','','2016-08-22 10:08:32','2016-08-22 10:08:32','',0,'http://bikes.loc/mc4wp-form/default-sign-up-form/',0,'mc4wp-form','',0),(4140,1,'2016-08-17 09:29:13','0000-00-00 00:00:00','','ATV Kawasaki Offroad 2005','','draft','open','closed','','','','','2016-08-17 09:29:13','0000-00-00 00:00:00','',0,'http://bikes.loc/?post_type=listings&p=4140',0,'listings','',0),(4238,1,'2016-08-23 12:17:45','2016-08-23 12:17:45','[vc_row][vc_column width=\"1/4\"][stm_sidebar sidebar=\"4153\"][/vc_column][vc_column width=\"3/4\"][stm_moto_top][vc_tta_tabs][vc_tta_section title=\"Overview\" tab_id=\"1471324819573-67a1584a-b8f1\"][vc_row_inner][vc_column_inner][vc_custom_heading text=\"Quisque imperdiet dignissim \" font_container=\"tag:h3|font_size:20|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1471409820267{margin-bottom: 20px !important;}\"][vc_separator css=\".vc_custom_1471409826534{margin-bottom: 28px !important;}\"][vc_column_text]<span style=\"line-height: 24px;\">Fusce viverra, ligula quis pellentesque interdum, leo felis congue dui, ac accumsan sem nulla id lorem. Praesent ut tristique dui, nec condimentum lacus. Maecenas lobortis ante id egestas placerat. Nullam at ultricies lacus. Nam in nulla consectetur, suscipit mauris eu, fringilla augue. Phasellus gravida, dui quis dignissim tempus, tortor orci tristique leo, ut congue diam ipsum at massa. Pellentesque ut vestibulum erat. Donec a felis eget tellus laoreet ultrice - See more at: <a href=\"http://motors.stylemixthemes.com\">motors.stylemixthemes.com</a></span>\n\n<span style=\"line-height: 24px;\">In iaculis imperdiet arcu, et malesuada purus viverra at. Nam ultrices, sem eget gravida tincidunt, nisl mauris dictum ipsum, et consequat leo erat vel mi. Nam nisl nibh, scelerisque non ultrices non, fringilla sit amet sapien. Cras lacinia augue tellus, vel sodales mi tincidunt et. Sed dui libero, tempus vel vestibulum id, lobortis vel felis. Aliquam semper dignissim malesuada. Duis fringilla fermentum consectetur.</span>[/vc_column_text][vc_separator color=\"black\" css=\".vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}\"][stm_car_listing_features title=\"Features\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Specifications\" tab_id=\"1471324819667-d9e6792f-1d44\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"2015 Kawasaki Ninja® 300 SE\"][stm_tech_info name=\"Location\" value=\"College Station, Texas\"][stm_tech_info name=\"Availability\" value=\"In Stock\"][stm_tech_info name=\"Stock Number\" value=\"NKS-1256\"][stm_tech_info name=\"Vin number\" value=\"JYAVP27E6BA013536\"][stm_tech_info name=\"Model type\" value=\"Reddish Copper\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417690138{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Performance\"][stm_tech_info name=\"Engine\" value=\"4-stroke, liquid-cooled, DOHC, Parallel Twin\"][stm_tech_info name=\"Displacement\" value=\"296cc\"][stm_tech_info name=\"Stroke\" value=\"49.0 mm\"][stm_tech_info name=\"Compression ratio\" value=\"10.6:1\"][stm_tech_info name=\"Fuel System\" value=\"DFI® with dual 32mm throttle bodies\"][stm_tech_info name=\"Ignition\" value=\"TCBI with digital advance\"][stm_tech_info name=\"Cooling System\" value=\"Liquid/Air\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417697414{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Drivetrain\"][stm_tech_info name=\"Transmission\" value=\"Six-speed with positive neutral finder\"][stm_tech_info name=\"Final Drive \" value=\"O-ring chain\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417704255{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Suspension\"][stm_tech_info name=\"Front Suspension\" value=\"Uni-Trak® with five-way adjustable preload\"][stm_tech_info name=\"Final Drive \" value=\"O-ring chain\"][stm_tech_info name=\"Front Travel (in./cm.)\" value=\"4.7 in\"][stm_tech_info name=\"Rear Travel (in./cm.)\" value=\"4.7 in\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417710959{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Brakes\"][stm_tech_info name=\"Front Braking system\" value=\"Single 290mm petal-type disc with two-piston hydraulic caliper\"][stm_tech_info name=\"Frame Type\" value=\"Semi-double cradle, high-tensile steel\"][stm_tech_info name=\"Rear Braking system\" value=\"Single 220mm petal-type disc with two-piston hydraulic caliper\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Media gallery\" tab_id=\"1471330947909-1131f098-2165\"][vc_custom_heading text=\"2017 Kawasaki KFX® 90 Images\" font_container=\"tag:h2|font_size:20|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1471411490321{margin-bottom: 20px !important;}\"][vc_separator css=\".vc_custom_1471417741291{margin-bottom: 21px !important;}\"][stm_boat_gallery css=\".vc_custom_1471411797815{margin-bottom: 25px !important;}\"][vc_separator color=\"black\" css=\".vc_custom_1471417849675{margin-bottom: 29px !important;}\"][vc_custom_heading text=\"Kawasaki H2R - World Record 400 km/h in 26 sec. HD\" font_container=\"tag:h2|font_size:20|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1471417885824{margin-bottom: 20px !important;}\"][vc_separator css=\".vc_custom_1471417891964{margin-bottom: 22px !important;}\"][vc_column_text]<iframe src=\"https://www.youtube.com/embed/rv8kT-3gG1U\" width=\"100%\" height=\"437\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Contact Us\" tab_id=\"1471332454395-0e51ff9f-8682\"][stm_contact_information title=\"Contact Information\" address=\"1840 E Garvey Ave South West Covina, CA 91791\" phone=\"888-694-5544\" mail=\"Sales@cardealer.com\"][vc_separator color=\"black\"][stm_contact_form form=\"500\" title=\"Request a Quote\"][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row]','2016 Suzuki JTX','','publish','open','closed','','2016-suzuki-jtx','','','2016-08-23 12:17:45','2016-08-23 12:17:45','',0,'http://bikes.loc/?post_type=listings&p=4238',0,'listings','',0),(4250,1,'2016-08-23 12:02:49','2016-08-23 12:02:49','[vc_row][vc_column width=\"1/4\"][stm_sidebar sidebar=\"4153\"][/vc_column][vc_column width=\"3/4\"][stm_moto_top][vc_tta_tabs][vc_tta_section title=\"Overview\" tab_id=\"1471324819573-67a1584a-b8f1\"][vc_row_inner][vc_column_inner][vc_custom_heading text=\"Quisque imperdiet dignissim \" font_container=\"tag:h3|font_size:20|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1471409820267{margin-bottom: 20px !important;}\"][vc_separator css=\".vc_custom_1471409826534{margin-bottom: 28px !important;}\"][vc_column_text]<span style=\"line-height: 24px;\">Fusce viverra, ligula quis pellentesque interdum, leo felis congue dui, ac accumsan sem nulla id lorem. Praesent ut tristique dui, nec condimentum lacus. Maecenas lobortis ante id egestas placerat. Nullam at ultricies lacus. Nam in nulla consectetur, suscipit mauris eu, fringilla augue. Phasellus gravida, dui quis dignissim tempus, tortor orci tristique leo, ut congue diam ipsum at massa. Pellentesque ut vestibulum erat. Donec a felis eget tellus laoreet ultrice - See more at: <a href=\"http://motors.stylemixthemes.com\">motors.stylemixthemes.com</a></span>\n\n<span style=\"line-height: 24px;\">In iaculis imperdiet arcu, et malesuada purus viverra at. Nam ultrices, sem eget gravida tincidunt, nisl mauris dictum ipsum, et consequat leo erat vel mi. Nam nisl nibh, scelerisque non ultrices non, fringilla sit amet sapien. Cras lacinia augue tellus, vel sodales mi tincidunt et. Sed dui libero, tempus vel vestibulum id, lobortis vel felis. Aliquam semper dignissim malesuada. Duis fringilla fermentum consectetur.</span>[/vc_column_text][vc_separator color=\"black\" css=\".vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}\"][stm_car_listing_features title=\"Features\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Specifications\" tab_id=\"1471324819667-d9e6792f-1d44\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"2015 Kawasaki Ninja® 300 SE\"][stm_tech_info name=\"Location\" value=\"College Station, Texas\"][stm_tech_info name=\"Availability\" value=\"In Stock\"][stm_tech_info name=\"Stock Number\" value=\"NKS-1256\"][stm_tech_info name=\"Vin number\" value=\"JYAVP27E6BA013536\"][stm_tech_info name=\"Model type\" value=\"Reddish Copper\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417690138{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Performance\"][stm_tech_info name=\"Engine\" value=\"4-stroke, liquid-cooled, DOHC, Parallel Twin\"][stm_tech_info name=\"Displacement\" value=\"296cc\"][stm_tech_info name=\"Stroke\" value=\"49.0 mm\"][stm_tech_info name=\"Compression ratio\" value=\"10.6:1\"][stm_tech_info name=\"Fuel System\" value=\"DFI® with dual 32mm throttle bodies\"][stm_tech_info name=\"Ignition\" value=\"TCBI with digital advance\"][stm_tech_info name=\"Cooling System\" value=\"Liquid/Air\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417697414{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Drivetrain\"][stm_tech_info name=\"Transmission\" value=\"Six-speed with positive neutral finder\"][stm_tech_info name=\"Final Drive \" value=\"O-ring chain\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417704255{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Suspension\"][stm_tech_info name=\"Front Suspension\" value=\"Uni-Trak® with five-way adjustable preload\"][stm_tech_info name=\"Final Drive \" value=\"O-ring chain\"][stm_tech_info name=\"Front Travel (in./cm.)\" value=\"4.7 in\"][stm_tech_info name=\"Rear Travel (in./cm.)\" value=\"4.7 in\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417710959{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Brakes\"][stm_tech_info name=\"Front Braking system\" value=\"Single 290mm petal-type disc with two-piston hydraulic caliper\"][stm_tech_info name=\"Frame Type\" value=\"Semi-double cradle, high-tensile steel\"][stm_tech_info name=\"Rear Braking system\" value=\"Single 220mm petal-type disc with two-piston hydraulic caliper\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Media gallery\" tab_id=\"1471330947909-1131f098-2165\"][vc_custom_heading text=\"2017 Kawasaki KFX® 90 Images\" font_container=\"tag:h2|font_size:20|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1471411490321{margin-bottom: 20px !important;}\"][vc_separator css=\".vc_custom_1471417741291{margin-bottom: 21px !important;}\"][stm_boat_gallery css=\".vc_custom_1471411797815{margin-bottom: 25px !important;}\"][vc_separator color=\"black\" css=\".vc_custom_1471417849675{margin-bottom: 29px !important;}\"][vc_custom_heading text=\"Kawasaki H2R - World Record 400 km/h in 26 sec. HD\" font_container=\"tag:h2|font_size:20|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1471417885824{margin-bottom: 20px !important;}\"][vc_separator css=\".vc_custom_1471417891964{margin-bottom: 22px !important;}\"][vc_column_text]<iframe src=\"https://www.youtube.com/embed/rv8kT-3gG1U\" width=\"100%\" height=\"437\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Contact Us\" tab_id=\"1471332454395-0e51ff9f-8682\"][stm_contact_information title=\"Contact Information\" address=\"1840 E Garvey Ave South West Covina, CA 91791\" phone=\"888-694-5544\" mail=\"Sales@cardealer.com\"][vc_separator color=\"black\"][stm_contact_form form=\"500\" title=\"Request a Quote\"][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row]','2016 Sea doo Jet','','publish','open','closed','','2016-sea-doo-jet-2','','','2016-08-23 12:02:49','2016-08-23 12:02:49','',0,'http://bikes.loc/?post_type=listings&p=4250',0,'listings','',0),(4251,1,'2016-08-23 12:06:55','2016-08-23 12:06:55','[vc_row][vc_column width=\"1/4\"][stm_sidebar sidebar=\"4153\"][/vc_column][vc_column width=\"3/4\"][stm_moto_top][vc_tta_tabs][vc_tta_section title=\"Overview\" tab_id=\"1471324819573-67a1584a-b8f1\"][vc_row_inner][vc_column_inner][vc_custom_heading text=\"Quisque imperdiet dignissim \" font_container=\"tag:h3|font_size:20|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1471409820267{margin-bottom: 20px !important;}\"][vc_separator css=\".vc_custom_1471409826534{margin-bottom: 28px !important;}\"][vc_column_text]<span style=\"line-height: 24px;\">Fusce viverra, ligula quis pellentesque interdum, leo felis congue dui, ac accumsan sem nulla id lorem. Praesent ut tristique dui, nec condimentum lacus. Maecenas lobortis ante id egestas placerat. Nullam at ultricies lacus. Nam in nulla consectetur, suscipit mauris eu, fringilla augue. Phasellus gravida, dui quis dignissim tempus, tortor orci tristique leo, ut congue diam ipsum at massa. Pellentesque ut vestibulum erat. Donec a felis eget tellus laoreet ultrice - See more at: <a href=\"http://motors.stylemixthemes.com\">motors.stylemixthemes.com</a></span>\n\n<span style=\"line-height: 24px;\">In iaculis imperdiet arcu, et malesuada purus viverra at. Nam ultrices, sem eget gravida tincidunt, nisl mauris dictum ipsum, et consequat leo erat vel mi. Nam nisl nibh, scelerisque non ultrices non, fringilla sit amet sapien. Cras lacinia augue tellus, vel sodales mi tincidunt et. Sed dui libero, tempus vel vestibulum id, lobortis vel felis. Aliquam semper dignissim malesuada. Duis fringilla fermentum consectetur.</span>[/vc_column_text][vc_separator color=\"black\" css=\".vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}\"][stm_car_listing_features title=\"Features\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Specifications\" tab_id=\"1471324819667-d9e6792f-1d44\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"2015 Kawasaki Ninja® 300 SE\"][stm_tech_info name=\"Location\" value=\"College Station, Texas\"][stm_tech_info name=\"Availability\" value=\"In Stock\"][stm_tech_info name=\"Stock Number\" value=\"NKS-1256\"][stm_tech_info name=\"Vin number\" value=\"JYAVP27E6BA013536\"][stm_tech_info name=\"Model type\" value=\"Reddish Copper\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417690138{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Performance\"][stm_tech_info name=\"Engine\" value=\"4-stroke, liquid-cooled, DOHC, Parallel Twin\"][stm_tech_info name=\"Displacement\" value=\"296cc\"][stm_tech_info name=\"Stroke\" value=\"49.0 mm\"][stm_tech_info name=\"Compression ratio\" value=\"10.6:1\"][stm_tech_info name=\"Fuel System\" value=\"DFI® with dual 32mm throttle bodies\"][stm_tech_info name=\"Ignition\" value=\"TCBI with digital advance\"][stm_tech_info name=\"Cooling System\" value=\"Liquid/Air\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417697414{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Drivetrain\"][stm_tech_info name=\"Transmission\" value=\"Six-speed with positive neutral finder\"][stm_tech_info name=\"Final Drive \" value=\"O-ring chain\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417704255{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Suspension\"][stm_tech_info name=\"Front Suspension\" value=\"Uni-Trak® with five-way adjustable preload\"][stm_tech_info name=\"Final Drive \" value=\"O-ring chain\"][stm_tech_info name=\"Front Travel (in./cm.)\" value=\"4.7 in\"][stm_tech_info name=\"Rear Travel (in./cm.)\" value=\"4.7 in\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417710959{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Brakes\"][stm_tech_info name=\"Front Braking system\" value=\"Single 290mm petal-type disc with two-piston hydraulic caliper\"][stm_tech_info name=\"Frame Type\" value=\"Semi-double cradle, high-tensile steel\"][stm_tech_info name=\"Rear Braking system\" value=\"Single 220mm petal-type disc with two-piston hydraulic caliper\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Media gallery\" tab_id=\"1471330947909-1131f098-2165\"][vc_custom_heading text=\"2017 Kawasaki KFX® 90 Images\" font_container=\"tag:h2|font_size:20|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1471411490321{margin-bottom: 20px !important;}\"][vc_separator css=\".vc_custom_1471417741291{margin-bottom: 21px !important;}\"][stm_boat_gallery css=\".vc_custom_1471411797815{margin-bottom: 25px !important;}\"][vc_separator color=\"black\" css=\".vc_custom_1471417849675{margin-bottom: 29px !important;}\"][vc_custom_heading text=\"Kawasaki H2R - World Record 400 km/h in 26 sec. HD\" font_container=\"tag:h2|font_size:20|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1471417885824{margin-bottom: 20px !important;}\"][vc_separator css=\".vc_custom_1471417891964{margin-bottom: 22px !important;}\"][vc_column_text]<iframe src=\"https://www.youtube.com/embed/rv8kT-3gG1U\" width=\"100%\" height=\"437\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Contact Us\" tab_id=\"1471332454395-0e51ff9f-8682\"][stm_contact_information title=\"Contact Information\" address=\"1840 E Garvey Ave South West Covina, CA 91791\" phone=\"888-694-5544\" mail=\"Sales@cardealer.com\"][vc_separator color=\"black\"][stm_contact_form form=\"500\" title=\"Request a Quote\"][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row]','2010 Honda CBR','','publish','open','closed','','2010-honda','','','2016-08-23 12:06:55','2016-08-23 12:06:55','',0,'http://bikes.loc/?post_type=listings&p=4251',0,'listings','',0),(4252,1,'2016-08-23 12:08:29','2016-08-23 12:08:29','[vc_row][vc_column width=\"1/4\"][stm_sidebar sidebar=\"4153\"][/vc_column][vc_column width=\"3/4\"][stm_moto_top][vc_tta_tabs][vc_tta_section title=\"Overview\" tab_id=\"1471324819573-67a1584a-b8f1\"][vc_row_inner][vc_column_inner][vc_custom_heading text=\"Quisque imperdiet dignissim \" font_container=\"tag:h3|font_size:20|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1471409820267{margin-bottom: 20px !important;}\"][vc_separator css=\".vc_custom_1471409826534{margin-bottom: 28px !important;}\"][vc_column_text]<span style=\"line-height: 24px;\">Fusce viverra, ligula quis pellentesque interdum, leo felis congue dui, ac accumsan sem nulla id lorem. Praesent ut tristique dui, nec condimentum lacus. Maecenas lobortis ante id egestas placerat. Nullam at ultricies lacus. Nam in nulla consectetur, suscipit mauris eu, fringilla augue. Phasellus gravida, dui quis dignissim tempus, tortor orci tristique leo, ut congue diam ipsum at massa. Pellentesque ut vestibulum erat. Donec a felis eget tellus laoreet ultrice - See more at: <a href=\"http://motors.stylemixthemes.com\">motors.stylemixthemes.com</a></span>\n\n<span style=\"line-height: 24px;\">In iaculis imperdiet arcu, et malesuada purus viverra at. Nam ultrices, sem eget gravida tincidunt, nisl mauris dictum ipsum, et consequat leo erat vel mi. Nam nisl nibh, scelerisque non ultrices non, fringilla sit amet sapien. Cras lacinia augue tellus, vel sodales mi tincidunt et. Sed dui libero, tempus vel vestibulum id, lobortis vel felis. Aliquam semper dignissim malesuada. Duis fringilla fermentum consectetur.</span>[/vc_column_text][vc_separator color=\"black\" css=\".vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}\"][stm_car_listing_features title=\"Features\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Specifications\" tab_id=\"1471324819667-d9e6792f-1d44\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"2015 Kawasaki Ninja® 300 SE\"][stm_tech_info name=\"Location\" value=\"College Station, Texas\"][stm_tech_info name=\"Availability\" value=\"In Stock\"][stm_tech_info name=\"Stock Number\" value=\"NKS-1256\"][stm_tech_info name=\"Vin number\" value=\"JYAVP27E6BA013536\"][stm_tech_info name=\"Model type\" value=\"Reddish Copper\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417690138{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Performance\"][stm_tech_info name=\"Engine\" value=\"4-stroke, liquid-cooled, DOHC, Parallel Twin\"][stm_tech_info name=\"Displacement\" value=\"296cc\"][stm_tech_info name=\"Stroke\" value=\"49.0 mm\"][stm_tech_info name=\"Compression ratio\" value=\"10.6:1\"][stm_tech_info name=\"Fuel System\" value=\"DFI® with dual 32mm throttle bodies\"][stm_tech_info name=\"Ignition\" value=\"TCBI with digital advance\"][stm_tech_info name=\"Cooling System\" value=\"Liquid/Air\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417697414{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Drivetrain\"][stm_tech_info name=\"Transmission\" value=\"Six-speed with positive neutral finder\"][stm_tech_info name=\"Final Drive \" value=\"O-ring chain\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417704255{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Suspension\"][stm_tech_info name=\"Front Suspension\" value=\"Uni-Trak® with five-way adjustable preload\"][stm_tech_info name=\"Final Drive \" value=\"O-ring chain\"][stm_tech_info name=\"Front Travel (in./cm.)\" value=\"4.7 in\"][stm_tech_info name=\"Rear Travel (in./cm.)\" value=\"4.7 in\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417710959{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Brakes\"][stm_tech_info name=\"Front Braking system\" value=\"Single 290mm petal-type disc with two-piston hydraulic caliper\"][stm_tech_info name=\"Frame Type\" value=\"Semi-double cradle, high-tensile steel\"][stm_tech_info name=\"Rear Braking system\" value=\"Single 220mm petal-type disc with two-piston hydraulic caliper\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Media gallery\" tab_id=\"1471330947909-1131f098-2165\"][vc_custom_heading text=\"2017 Kawasaki KFX® 90 Images\" font_container=\"tag:h2|font_size:20|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1471411490321{margin-bottom: 20px !important;}\"][vc_separator css=\".vc_custom_1471417741291{margin-bottom: 21px !important;}\"][stm_boat_gallery css=\".vc_custom_1471411797815{margin-bottom: 25px !important;}\"][vc_separator color=\"black\" css=\".vc_custom_1471417849675{margin-bottom: 29px !important;}\"][vc_custom_heading text=\"Kawasaki H2R - World Record 400 km/h in 26 sec. HD\" font_container=\"tag:h2|font_size:20|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1471417885824{margin-bottom: 20px !important;}\"][vc_separator css=\".vc_custom_1471417891964{margin-bottom: 22px !important;}\"][vc_column_text]<iframe src=\"https://www.youtube.com/embed/rv8kT-3gG1U\" width=\"100%\" height=\"437\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Contact Us\" tab_id=\"1471332454395-0e51ff9f-8682\"][stm_contact_information title=\"Contact Information\" address=\"1840 E Garvey Ave South West Covina, CA 91791\" phone=\"888-694-5544\" mail=\"Sales@cardealer.com\"][vc_separator color=\"black\"][stm_contact_form form=\"500\" title=\"Request a Quote\"][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row]','2015 Kawasaki JTX-900','','publish','open','closed','','2015-kawasaki-jtx','','','2016-08-23 12:08:29','2016-08-23 12:08:29','',0,'http://bikes.loc/?post_type=listings&p=4252',0,'listings','',0),(4254,1,'2016-08-23 12:10:33','2016-08-23 12:10:33','[vc_row][vc_column width=\"1/4\"][stm_sidebar sidebar=\"4153\"][/vc_column][vc_column width=\"3/4\"][stm_moto_top][vc_tta_tabs][vc_tta_section title=\"Overview\" tab_id=\"1471324819573-67a1584a-b8f1\"][vc_row_inner][vc_column_inner][vc_custom_heading text=\"Quisque imperdiet dignissim \" font_container=\"tag:h3|font_size:20|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1471409820267{margin-bottom: 20px !important;}\"][vc_separator css=\".vc_custom_1471409826534{margin-bottom: 28px !important;}\"][vc_column_text]<span style=\"line-height: 24px;\">Fusce viverra, ligula quis pellentesque interdum, leo felis congue dui, ac accumsan sem nulla id lorem. Praesent ut tristique dui, nec condimentum lacus. Maecenas lobortis ante id egestas placerat. Nullam at ultricies lacus. Nam in nulla consectetur, suscipit mauris eu, fringilla augue. Phasellus gravida, dui quis dignissim tempus, tortor orci tristique leo, ut congue diam ipsum at massa. Pellentesque ut vestibulum erat. Donec a felis eget tellus laoreet ultrice - See more at: <a href=\"http://motors.stylemixthemes.com\">motors.stylemixthemes.com</a></span>\n\n<span style=\"line-height: 24px;\">In iaculis imperdiet arcu, et malesuada purus viverra at. Nam ultrices, sem eget gravida tincidunt, nisl mauris dictum ipsum, et consequat leo erat vel mi. Nam nisl nibh, scelerisque non ultrices non, fringilla sit amet sapien. Cras lacinia augue tellus, vel sodales mi tincidunt et. Sed dui libero, tempus vel vestibulum id, lobortis vel felis. Aliquam semper dignissim malesuada. Duis fringilla fermentum consectetur.</span>[/vc_column_text][vc_separator color=\"black\" css=\".vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}\"][stm_car_listing_features title=\"Features\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Specifications\" tab_id=\"1471324819667-d9e6792f-1d44\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"2015 Kawasaki Ninja® 300 SE\"][stm_tech_info name=\"Location\" value=\"College Station, Texas\"][stm_tech_info name=\"Availability\" value=\"In Stock\"][stm_tech_info name=\"Stock Number\" value=\"NKS-1256\"][stm_tech_info name=\"Vin number\" value=\"JYAVP27E6BA013536\"][stm_tech_info name=\"Model type\" value=\"Reddish Copper\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417690138{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Performance\"][stm_tech_info name=\"Engine\" value=\"4-stroke, liquid-cooled, DOHC, Parallel Twin\"][stm_tech_info name=\"Displacement\" value=\"296cc\"][stm_tech_info name=\"Stroke\" value=\"49.0 mm\"][stm_tech_info name=\"Compression ratio\" value=\"10.6:1\"][stm_tech_info name=\"Fuel System\" value=\"DFI® with dual 32mm throttle bodies\"][stm_tech_info name=\"Ignition\" value=\"TCBI with digital advance\"][stm_tech_info name=\"Cooling System\" value=\"Liquid/Air\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417697414{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Drivetrain\"][stm_tech_info name=\"Transmission\" value=\"Six-speed with positive neutral finder\"][stm_tech_info name=\"Final Drive \" value=\"O-ring chain\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417704255{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Suspension\"][stm_tech_info name=\"Front Suspension\" value=\"Uni-Trak® with five-way adjustable preload\"][stm_tech_info name=\"Final Drive \" value=\"O-ring chain\"][stm_tech_info name=\"Front Travel (in./cm.)\" value=\"4.7 in\"][stm_tech_info name=\"Rear Travel (in./cm.)\" value=\"4.7 in\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417710959{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Brakes\"][stm_tech_info name=\"Front Braking system\" value=\"Single 290mm petal-type disc with two-piston hydraulic caliper\"][stm_tech_info name=\"Frame Type\" value=\"Semi-double cradle, high-tensile steel\"][stm_tech_info name=\"Rear Braking system\" value=\"Single 220mm petal-type disc with two-piston hydraulic caliper\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Media gallery\" tab_id=\"1471330947909-1131f098-2165\"][vc_custom_heading text=\"2017 Kawasaki KFX® 90 Images\" font_container=\"tag:h2|font_size:20|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1471411490321{margin-bottom: 20px !important;}\"][vc_separator css=\".vc_custom_1471417741291{margin-bottom: 21px !important;}\"][stm_boat_gallery css=\".vc_custom_1471411797815{margin-bottom: 25px !important;}\"][vc_separator color=\"black\" css=\".vc_custom_1471417849675{margin-bottom: 29px !important;}\"][vc_custom_heading text=\"Kawasaki H2R - World Record 400 km/h in 26 sec. HD\" font_container=\"tag:h2|font_size:20|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1471417885824{margin-bottom: 20px !important;}\"][vc_separator css=\".vc_custom_1471417891964{margin-bottom: 22px !important;}\"][vc_column_text]<iframe src=\"https://www.youtube.com/embed/rv8kT-3gG1U\" width=\"100%\" height=\"437\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Contact Us\" tab_id=\"1471332454395-0e51ff9f-8682\"][stm_contact_information title=\"Contact Information\" address=\"1840 E Garvey Ave South West Covina, CA 91791\" phone=\"888-694-5544\" mail=\"Sales@cardealer.com\"][vc_separator color=\"black\"][stm_contact_form form=\"500\" title=\"Request a Quote\"][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row]','2015 Yamaha PX','','publish','open','closed','','2015-yamaha-mt-s','','','2016-08-23 12:10:33','2016-08-23 12:10:33','',0,'http://bikes.loc/?post_type=listings&p=4254',0,'listings','',0),(4255,1,'2016-08-23 12:12:10','2016-08-23 12:12:10','[vc_row][vc_column width=\"1/4\"][stm_sidebar sidebar=\"4153\"][/vc_column][vc_column width=\"3/4\"][stm_moto_top][vc_tta_tabs][vc_tta_section title=\"Overview\" tab_id=\"1471324819573-67a1584a-b8f1\"][vc_row_inner][vc_column_inner][vc_custom_heading text=\"Quisque imperdiet dignissim \" font_container=\"tag:h3|font_size:20|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1471409820267{margin-bottom: 20px !important;}\"][vc_separator css=\".vc_custom_1471409826534{margin-bottom: 28px !important;}\"][vc_column_text]<span style=\"line-height: 24px;\">Fusce viverra, ligula quis pellentesque interdum, leo felis congue dui, ac accumsan sem nulla id lorem. Praesent ut tristique dui, nec condimentum lacus. Maecenas lobortis ante id egestas placerat. Nullam at ultricies lacus. Nam in nulla consectetur, suscipit mauris eu, fringilla augue. Phasellus gravida, dui quis dignissim tempus, tortor orci tristique leo, ut congue diam ipsum at massa. Pellentesque ut vestibulum erat. Donec a felis eget tellus laoreet ultrice - See more at: <a href=\"http://motors.stylemixthemes.com\">motors.stylemixthemes.com</a></span>\n\n<span style=\"line-height: 24px;\">In iaculis imperdiet arcu, et malesuada purus viverra at. Nam ultrices, sem eget gravida tincidunt, nisl mauris dictum ipsum, et consequat leo erat vel mi. Nam nisl nibh, scelerisque non ultrices non, fringilla sit amet sapien. Cras lacinia augue tellus, vel sodales mi tincidunt et. Sed dui libero, tempus vel vestibulum id, lobortis vel felis. Aliquam semper dignissim malesuada. Duis fringilla fermentum consectetur.</span>[/vc_column_text][vc_separator color=\"black\" css=\".vc_custom_1471417066409{margin-top: 27px !important;margin-bottom: 48px !important;}\"][stm_car_listing_features title=\"Features\"][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Specifications\" tab_id=\"1471324819667-d9e6792f-1d44\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"2015 Kawasaki Ninja® 300 SE\"][stm_tech_info name=\"Location\" value=\"College Station, Texas\"][stm_tech_info name=\"Availability\" value=\"In Stock\"][stm_tech_info name=\"Stock Number\" value=\"NKS-1256\"][stm_tech_info name=\"Vin number\" value=\"JYAVP27E6BA013536\"][stm_tech_info name=\"Model type\" value=\"Reddish Copper\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417690138{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Performance\"][stm_tech_info name=\"Engine\" value=\"4-stroke, liquid-cooled, DOHC, Parallel Twin\"][stm_tech_info name=\"Displacement\" value=\"296cc\"][stm_tech_info name=\"Stroke\" value=\"49.0 mm\"][stm_tech_info name=\"Compression ratio\" value=\"10.6:1\"][stm_tech_info name=\"Fuel System\" value=\"DFI® with dual 32mm throttle bodies\"][stm_tech_info name=\"Ignition\" value=\"TCBI with digital advance\"][stm_tech_info name=\"Cooling System\" value=\"Liquid/Air\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417697414{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Drivetrain\"][stm_tech_info name=\"Transmission\" value=\"Six-speed with positive neutral finder\"][stm_tech_info name=\"Final Drive \" value=\"O-ring chain\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417704255{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Suspension\"][stm_tech_info name=\"Front Suspension\" value=\"Uni-Trak® with five-way adjustable preload\"][stm_tech_info name=\"Final Drive \" value=\"O-ring chain\"][stm_tech_info name=\"Front Travel (in./cm.)\" value=\"4.7 in\"][stm_tech_info name=\"Rear Travel (in./cm.)\" value=\"4.7 in\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][vc_separator color=\"black\" css=\".vc_custom_1471417710959{margin-bottom: 19px !important;}\"][vc_row_inner][vc_column_inner][stm_tech_infos title=\"Brakes\"][stm_tech_info name=\"Front Braking system\" value=\"Single 290mm petal-type disc with two-piston hydraulic caliper\"][stm_tech_info name=\"Frame Type\" value=\"Semi-double cradle, high-tensile steel\"][stm_tech_info name=\"Rear Braking system\" value=\"Single 220mm petal-type disc with two-piston hydraulic caliper\"][/stm_tech_infos][/vc_column_inner][/vc_row_inner][/vc_tta_section][vc_tta_section title=\"Media gallery\" tab_id=\"1471330947909-1131f098-2165\"][vc_custom_heading text=\"2017 Kawasaki KFX® 90 Images\" font_container=\"tag:h2|font_size:20|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1471411490321{margin-bottom: 20px !important;}\"][vc_separator css=\".vc_custom_1471417741291{margin-bottom: 21px !important;}\"][stm_boat_gallery css=\".vc_custom_1471411797815{margin-bottom: 25px !important;}\"][vc_separator color=\"black\" css=\".vc_custom_1471417849675{margin-bottom: 29px !important;}\"][vc_custom_heading text=\"Kawasaki H2R - World Record 400 km/h in 26 sec. HD\" font_container=\"tag:h2|font_size:20|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1471417885824{margin-bottom: 20px !important;}\"][vc_separator css=\".vc_custom_1471417891964{margin-bottom: 22px !important;}\"][vc_column_text]<iframe src=\"https://www.youtube.com/embed/rv8kT-3gG1U\" width=\"100%\" height=\"437\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Contact Us\" tab_id=\"1471332454395-0e51ff9f-8682\"][stm_contact_information title=\"Contact Information\" address=\"1840 E Garvey Ave South West Covina, CA 91791\" phone=\"888-694-5544\" mail=\"Sales@cardealer.com\"][vc_separator color=\"black\"][stm_contact_form form=\"500\" title=\"Request a Quote\"][/vc_tta_section][/vc_tta_tabs][/vc_column][/vc_row]','2016 Star 650','','publish','open','closed','','2016-star-650','','','2016-08-23 12:12:10','2016-08-23 12:12:10','',0,'http://bikes.loc/?post_type=listings&p=4255',0,'listings','',0),(4278,1,'2016-08-24 07:21:04','2016-08-24 07:21:04','','placeholder','','inherit','open','closed','','placeholder','','','2016-08-24 07:21:04','2016-08-24 07:21:04','',0,'http://stationtyresdarwen.co.uk/wp-content/uploads/placeholder.gif',0,'attachment','image/gif',0),(4282,1,'2017-02-22 18:53:21','2017-02-22 18:53:21','','Pages','','publish','closed','closed','','pages-2','','','2017-02-22 18:53:21','2017-02-22 18:53:21','',0,'http://stationtyresdarwen.co.uk/2017/02/22/pages-2/',1,'nav_menu_item','',0),(4283,1,'2015-09-18 09:48:28','2015-09-18 08:48:28','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHO WE ARE\" font_container=\"tag:h2|font_size:45|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793519972{margin-bottom: 45px !important;}\"][vc_column_text]\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\nStation tyres are specialists in budget tyres in Darwen. We also provide a range of other services and have leading brand tyres in stock. Open 7 days a week we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\n\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fabout-us%2F|||\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793492820{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\nPremium And Budget Range\nCatalytic Converters\nAll Makes & Models\nSame Day Fitting Service\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\nExhaust systems\nWheels\nBrake pads and discs\nWheel balancing\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\nTyre Repairs\nTyre fitting\nExhaust fitting\nWinter tyres\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\nVan tyres\n4x4 tyres\nTrailer tyres\nPremium brand tyres\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487923972573{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fservice%2F|||\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1487951534610{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"offer-bg\"][vc_column css=\".vc_custom_1487951487445{background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OFFERS YOU LOOKING\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487949699452{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973090966{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973106893{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973132074{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973146643{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973161269{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973175540{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#090909\" shape=\"square\" align=\"center\" css=\".vc_custom_1487924011977{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Foffers%2F|||\"][vc_column_text]\n<h4 style=\"text-align: center;\">To be eligible for this offer, at least 4 tyres must be purchased. So take advantage of this <em>limited time offer</em> and purchase these superb tyres now!</h4>\n[/vc_column_text][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','publish','closed','closed','','front-page','','','2018-01-03 10:07:01','2018-01-03 10:07:01','',0,'http://bikes.loc/?page_id=5',0,'page','',0),(4320,1,'2017-02-22 19:00:02','2017-02-22 19:00:02','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1471237765688{border-top-width: 25px !important;padding-top: 42px !important;border-top-color: #080a0b !important;border-top-style: solid !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h4|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487789997300{margin-bottom: 45px !important;}\"][vc_custom_heading text=\"INVENTORY TYPES\" font_container=\"tag:h2|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1470913347701{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1471237968258{padding-top: 116px !important;padding-bottom: 26px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/placeholder.gif?id=4067) !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-icon-calendar\" title=\"ONLINE APPOINTMENT\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"49\" css_icon=\".vc_custom_1470896315340{margin-right: 20px !important;margin-left: 7px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-service-icon-cash_dollar\" title=\"BEST SERVICES PRICES\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"49\" css_icon=\".vc_custom_1470896403219{margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][/vc_column][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-service-icon-diagnostic_monitor\" title=\"FREE DIAGNOSIS & BRAKE CHECKS\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"44\" css_icon=\".vc_custom_1470896438410{margin-right: 24px !important;margin-left: 7px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-service-icon-like_it\" title=\"HIGHEST RATED REPAIR SHOP\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"43\" css_icon=\".vc_custom_1470896475475{margin-right: 24px !important;margin-left: 8px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][/vc_column][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-service-icon-award_blank\" title=\"CERTIFIED AUTO MECHANICS\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"46\" css_icon=\".vc_custom_1470896669644{margin-top: 3px !important;margin-right: 22px !important;margin-left: 8px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-service-icon-shield_check\" title=\"12 MONTH WARRANTY ON SERVICE\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"48\" css_icon=\".vc_custom_1470896663319{margin-right: 23px !important;margin-left: 8px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][/vc_column][/vc_row][vc_row css=\".vc_custom_1471239084548{padding-top: 37px !important;padding-bottom: 46px !important;}\"][vc_column][stm_listings_tabs_2 per_page=\"6\" featured=\"\" show_more=\"\" title=\"FEATURED HOT DEALS\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1470917841792{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/placeholder.gif?id=4085) !important;}\"][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1471239363431{border-top-width: 9px !important;border-right-width: 9px !important;border-bottom-width: 9px !important;border-left-width: 9px !important;padding-top: 59px !important;padding-bottom: 46px !important;border-left-color: #ffffff !important;border-left-style: solid !important;border-right-color: #ffffff !important;border-right-style: solid !important;border-top-color: #ffffff !important;border-top-style: solid !important;border-bottom-color: #ffffff !important;border-bottom-style: solid !important;}\"][vc_row_inner css=\".vc_custom_1470917862335{padding-right: 60px !important;padding-left: 60px !important;}\"][vc_column_inner][vc_custom_heading text=\"WELCOME TO THE MOTORS WORLD\" font_container=\"tag:h2|font_size:32px|text_align:left|color:%23ffffff|line_height:32px\" use_theme_fonts=\"yes\" css=\".vc_custom_1470918371167{margin-bottom: 21px !important;}\"][vc_column_text css=\".vc_custom_1470918407602{margin-bottom: 29px !important;}\"]Praesent consequat pharetra commodo. Vestibulum nec lectus nibh. Curabitur tellus leo, euismod sit amet gravida at, egestas sed lectus.[/vc_column_text][stm_icon_button link=\"url:http%3A%2F%2Fmotos.loc%2Fabout-us%2F|title:Read%20more||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1471239417907{padding-top: 86px !important;padding-bottom: 53px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1470978550446{margin-bottom: 30px !important;}\"][vc_custom_heading text=\"Excellence in Motorsport\r\nServices Since 1987\" font_container=\"tag:h2|font_size:32px|text_align:left|color:%23ffffff|line_height:36px\" use_theme_fonts=\"yes\" css=\".vc_custom_1470979544457{margin-bottom: 32px !important;}\"][stm_color_separator style=\"style_2\" css=\".vc_custom_1471948825099{margin-bottom: 13px !important;}\"][vc_column_text]<span style=\"font-size: 13px;\">No doubt you\'ve heard Los Angeles described as having a distinct \'car culture.\' Part of the joy of living in Southern California is owning a car so you can easily enjoy all</span>[/vc_column_text][vc_column_text]\r\n<ul class=\"list-style-1\" style=\"font-size: 13px;\">\r\n <li>Sed consectetur massa bibendum dui ultricies, bibendum lorem placerat.</li>\r\n <li>Etiam fermentum eu diam eu malesuada. Curabitur porttitor elementum fringilla.</li>\r\n <li>Vestibulum sit amet justo sed arcu dictum varius Imassa nec lectus.</li>\r\n <li>Integer rutrum, et lobortis posuere, commodo aliquam magna arcu id tortor.</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1470979592702{margin-top: 17px !important;}\"][stm_boats_video image=\"4278,4278,4278,4278\" height=\"321\" link=\"https://www.youtube.com/embed/EpydlUJIG6I?autoplay=true\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1470982903047{padding-top: 27px !important;padding-bottom: 12px !important;background-color: #243136 !important;}\"][vc_column][stm_row_icons filter_selected=\"make\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2017-02-22 19:00:02','2017-02-22 19:00:02','',4283,'http://stationtyresdarwen.co.uk/2017/02/22/4283-revision-v1/',0,'revision','',0),(370,1,'2015-10-22 04:04:43','2015-10-22 04:04:43','[vc_row css=\".vc_custom_1472016399122{margin-top: 30px !important;margin-bottom: 51px !important;}\"][vc_column width=\"1/2\" el_class=\"stm-col-pad-left\"][vc_column_text]\n<h3 style=\"margin-bottom: 18px;\">WELCOME TO THE <span style=\"color: #ffa500;\">STATION TYRES</span></h3>\n<h5 style=\"margin-bottom: 22px;\">Fast, friendly and great customer service - specialising in new and second-hand tyres!</h5>\n<p style=\"margin-bottom: 26px;\">Station tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 7 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).</p>\n<p style=\"margin-bottom: 26px;\">Established since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.</p>\n<p style=\"margin-bottom: 26px;\">If your car needs tracking, our Supertracker machine can effectively align your wheels - tracking prices starting from £20 up to £40!!</p>\n<p style=\"margin-bottom: 26px;\">While you wait for your vehicle to be ready, there is a warm and comfortable customer waiting area for you to sit and enjoy - with both toilets and refreshments if needed!</p>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"stm-col-pad-right\"][vc_single_image image=\"4406\" img_size=\"full\" stm_fancybox=\"yes\" css=\".vc_custom_1488274456547{margin-bottom: 35px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1445594570930{margin-bottom: 83px !important;}\"][vc_column width=\"1/2\" el_class=\"stm-col-pad-right\"][vc_column_text css=\".vc_custom_1445496956815{margin-bottom: 23px !important;}\"]\n<h3>CORE VALUES</h3>\n[/vc_column_text][vc_separator css=\".vc_custom_1445496980428{margin-bottom: 19px !important;}\"][vc_column_text css=\".vc_custom_1487920475807{margin-bottom: 24px !important;}\"]<span style=\"color: #fff; font-size: 13px;\">We go through extensive factory training so that we may provide you with the knowledge you need to make an educated decision in choosing the vehicle that is right for your lifestyle.</span>[/vc_column_text][vc_column_text]\n<ul class=\"list-style-1\">\n <li>Stress-free finance department.</li>\n <li>Robust selection of popular vehicles.</li>\n <li>350 offers on site, trusted by a community.</li>\n <li>Maintain your car to stay safe on the road</li>\n <li>We know how to handle a wide range of car services.</li>\n</ul>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"stm-col-pad-left\"][vc_custom_heading text=\"CUSTOMER TESTIMONIALS\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1445583787565{margin-bottom: 24px !important;}\"][stm_testimonials][stm_testimonial image=\"7\" author=\"JamesW28\" author_car=\"Requested for Tyres\"]\n<h4>Honest Service and Cheap Tyres</h4>\nWent to this tyre place for the first time expecting to need 4 tyres but the technician informed me I only needed one and the price was cheaper than others places I had been![/stm_testimonial][stm_testimonial image=\"7\" author=\"Yusuf\" author_car=\"Requested for Tyres\"]\n<h4>Great service, great price.</h4>\nWas recommended by friends and got not only exactly what I needed, it came with friendly, professional service at a very competitive price.[/stm_testimonial][/stm_testimonials][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"15\" grid_id=\"vc_gid:1514974406262-55c35e0b238f63b0449db176204c6a00-6\" include=\"4408,4409,4410,4411\"][/vc_column][/vc_row]','About us','','publish','closed','closed','','about-us','','','2018-01-03 10:14:46','2018-01-03 10:14:46','',0,'http://bikes.loc/?page_id=370',0,'page','',0),(4351,1,'2017-02-24 06:58:52','2017-02-24 06:58:52','[vc_row css=\".vc_custom_1472016399122{margin-top: 30px !important;margin-bottom: 51px !important;}\"][vc_column width=\"1/2\" el_class=\"stm-col-pad-left\"][vc_column_text]\r\n<h3 style=\"margin-bottom: 18px;\">WELCOME TO THE <span style=\"color: #ffa500;\">STATION TYRES</span></h3>\r\n<h5 style=\"margin-bottom: 22px;\">Fast, friendly and great customer service - specialising in new and second-hand tyres!</h5>\r\n<p style=\"margin-bottom: 26px;\">Station tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).</p>\r\n<p style=\"margin-bottom: 26px;\">Established since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.</p>\r\n<p style=\"margin-bottom: 26px;\">If your car needs tracking, our Supertracker machine can effectively align your wheels - tracking prices starting from £20 up to £40!!</p>\r\n<p style=\"margin-bottom: 26px;\">While you wait for your vehicle to be ready, there is a warm and comfortable customer waiting area for you to sit and enjoy - with both toilets and refreshments if needed!</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"stm-col-pad-right\"][vc_single_image image=\"4322\" img_size=\"full\" stm_fancybox=\"yes\" css=\".vc_custom_1487919165409{margin-bottom: 35px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1445594570930{margin-bottom: 83px !important;}\"][vc_column width=\"1/2\" el_class=\"stm-col-pad-right\"][vc_column_text css=\".vc_custom_1445496956815{margin-bottom: 23px !important;}\"]\r\n<h3>CORE VALUES</h3>\r\n[/vc_column_text][vc_separator css=\".vc_custom_1445496980428{margin-bottom: 19px !important;}\"][vc_column_text css=\".vc_custom_1448951164713{margin-bottom: 24px !important;}\"]<span style=\"color: #888888; font-size: 13px;\">We go through extensive factory training so that we may provide you with the knowledge you need to make an educated decision in choosing the vehicle that is right for your lifestyle.</span>[/vc_column_text][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Stress-free finance department.</li>\r\n <li>Robust selection of popular vehicles.</li>\r\n <li>350 offers on site, trusted by a community.</li>\r\n <li>Maintain your car to stay safe on the road</li>\r\n <li>We know how to handle a wide range of car services.</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"stm-col-pad-left\"][vc_custom_heading text=\"CUSTOMER TESTIMONIALS\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1445583787565{margin-bottom: 24px !important;}\"][stm_testimonials][stm_testimonial image=\"7\" author=\"JamesW28\" author_car=\"Requested for Tyres\"]\r\n<h5>Honest Service and Cheap Tyres</h5>\r\nWent to this tyre place for the first time expecting to need 4 tyres but the technician informed me I only needed one and the price was cheaper than others places I had been![/stm_testimonial][stm_testimonial image=\"7\" author=\"JamesW28\" author_car=\"Requested for Tyres\"]\r\n<h5>Honest Service and Cheap Tyres</h5>\r\nWent to this tyre place for the first time expecting to need 4 tyres but the technician informed me I only needed one and the price was cheaper than others places I had been![/stm_testimonial][/stm_testimonials][/vc_column][/vc_row]','About us','','inherit','closed','closed','','370-revision-v1','','','2017-02-24 06:58:52','2017-02-24 06:58:52','',370,'http://stationtyresdarwen.co.uk/2017/02/24/370-revision-v1/',0,'revision','',0),(4285,1,'2017-02-22 18:53:21','2017-02-22 18:53:21',' ','','','publish','closed','closed','','4285','','','2017-02-22 18:53:21','2017-02-22 18:53:21','',0,'http://stationtyresdarwen.co.uk/2017/02/22/',9,'nav_menu_item','',0),(546,1,'2015-11-05 06:03:59','2015-11-05 06:03:59','[vc_row css=\".vc_custom_1446724724284{margin-top: 33px !important;margin-bottom: 42px !important;}\"][vc_column css=\".vc_custom_1446724718390{margin-bottom: 42px !important;}\"][vc_column_text css=\".vc_custom_1487916920576{margin-bottom: 24px !important;}\"]\n<h2><span style=\"color: #ffa500;\">OUR</span> SERVICES</h2>\n[/vc_column_text][vc_column_text css=\".vc_custom_1514974500483{margin-bottom: 31px !important;padding-left: 2px !important;}\"]<strong>Fast, friendly and great customer service - specialising in new and second-hand tyres!</strong>\n\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 7 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).[/vc_column_text][vc_custom_heading text=\"OUR SERVICES INCLUDE\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1446703859040{margin-bottom: 20px !important;}\"][vc_row_inner css=\".vc_custom_1446703897866{margin-bottom: 30px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text]\n<ul class=\"list-style-1\">\n <li>Replacement Exhausts</li>\n <li>Premium And Budget Range</li>\n <li>Catalytic Converters</li>\n <li>All Makes & Models</li>\n <li>Same Day Fitting Service</li>\n <li>Battery suppliers</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\n<ul class=\"list-style-1\">\n <li>Car tyres</li>\n <li>Exhaust systems</li>\n <li>Wheels</li>\n <li>Brake pads and discs</li>\n <li>Wheel balancing</li>\n <li>New Tyres</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\n<ul class=\"list-style-1\">\n <li>Part worn tyres</li>\n <li>Tyre repairs</li>\n <li>Tyre fitting</li>\n <li>Exhaust fitting</li>\n <li>Wheel balancing</li>\n <li>Winter tyres</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\n<ul class=\"list-style-1\">\n <li>Wheel alignment</li>\n <li>Oil change</li>\n <li>Van tyres</li>\n <li>4x4 tyres</li>\n <li>Trailer tyres</li>\n <li>Premium brand tyres</li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1446703904260{padding-left: 2px !important;}\"]<span style=\"color: #888888; font-size: 13px;\">Save yourself some time by scheduling service right here. After you submit the form, we\'ll be in touch to confirm your service appointment. It doesn\'t get much easier than that.</span>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1446724426854{margin-bottom: 0px !important;}\"][vc_column][stm_call_to_action_2 call_to_action_icon=\"stm-icon-question\" call_to_action_icon_right=\"stm-icon-phone2\" call_to_action_color=\"#ffa500\" call_to_action_text_color=\"#000000\" call_to_action_label=\"Have a Questions? Call Today!\" call_to_action_label_right=\"01254 917248\"][/vc_column][/vc_row]','Service','','publish','closed','closed','','service','','','2018-01-03 10:15:12','2018-01-03 10:15:12','',0,'http://bikes.loc/?page_id=546',0,'page','',0),(4390,1,'2017-02-24 15:25:00','2017-02-24 15:25:00','[vc_row css=\".vc_custom_1446724724284{margin-top: 33px !important;margin-bottom: 42px !important;}\"][vc_column css=\".vc_custom_1446724718390{margin-bottom: 42px !important;}\"][vc_column_text css=\".vc_custom_1487916920576{margin-bottom: 24px !important;}\"]\r\n<h2><span style=\"color: #ffa500;\">OUR</span> SERVICES</h2>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1487916878863{margin-bottom: 31px !important;padding-left: 2px !important;}\"]<strong>Fast, friendly and great customer service - specialising in new and second-hand tyres!</strong>\r\n\r\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).[/vc_column_text][vc_custom_heading text=\"OUR SERVICES INCLUDE\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1446703859040{margin-bottom: 20px !important;}\"][vc_row_inner css=\".vc_custom_1446703897866{margin-bottom: 30px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Replacement Exhausts</li>\r\n <li>Premium And Budget Range</li>\r\n <li>Catalytic Converters</li>\r\n <li>All Makes & Models</li>\r\n <li>Same Day Fitting Service</li>\r\n <li>Battery suppliers</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Car tyres</li>\r\n <li>Exhaust systems</li>\r\n <li>Wheels</li>\r\n <li>Brake pads and discs</li>\r\n <li>Wheel balancing</li>\r\n <li>New Tyres</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Part worn tyres</li>\r\n <li>Tyre repairs</li>\r\n <li>Tyre fitting</li>\r\n <li>Exhaust fitting</li>\r\n <li>Wheel balancing</li>\r\n <li>Winter tyres</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Wheel alignment</li>\r\n <li>Oil change</li>\r\n <li>Van tyres</li>\r\n <li>4x4 tyres</li>\r\n <li>Trailer tyres</li>\r\n <li>Premium brand tyres</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1446703904260{padding-left: 2px !important;}\"]<span style=\"color: #888888; font-size: 13px;\">Save yourself some time by scheduling service right here. After you submit the form, we\'ll be in touch to confirm your service appointment. It doesn\'t get much easier than that.</span>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1446724426854{margin-bottom: 0px !important;}\"][vc_column][stm_call_to_action_2 call_to_action_icon=\"stm-icon-question\" call_to_action_icon_right=\"stm-icon-phone2\" call_to_action_color=\"#ffa500\" call_to_action_text_color=\"#000000\" call_to_action_label=\"Have a Questions? Call Today!\" call_to_action_label_right=\"01254 917248\"][/vc_column][/vc_row]','Service','','inherit','closed','closed','','546-revision-v1','','','2017-02-24 15:25:00','2017-02-24 15:25:00','',546,'http://stationtyresdarwen.co.uk/2017/02/24/546-revision-v1/',0,'revision','',0),(712,1,'2015-11-18 05:22:15','2015-11-18 05:22:15','[vc_row css=\".vc_custom_1487950973825{margin-bottom: 64px !important;}\"][vc_column][stm_contact_form form=\"717\" title=\"Contact Us\" css=\".vc_custom_1487923529721{padding-top: 30px !important;padding-right: 30px !important;padding-bottom: 30px !important;padding-left: 30px !important;background-color: #000000 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452251533394{margin-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1487923284932{margin-bottom: 25px !important;padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\" offset=\"vc_col-lg-4 vc_col-md-12\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-pin\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Address\" css=\".vc_custom_1487950918754{margin-bottom: 28px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487950918753{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">2-4 Kay St, Darwen, BB3 3BZ</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-phone\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Phone\" css=\".vc_custom_1505130518033{margin-bottom: 27px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1505130518031{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\"><a href=\"tel:01254705305\">01254 705 305</a> / <a href=\"tel:07713948270\">07713948270</a></span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-time\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Hours\" css=\".vc_custom_1514974632396{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1514974632392{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">Open 7 Days</span>\n<span style=\"color: #888888; font-size: 14px;\">Mon - Sat: 09:00AM - 05:30PM\nSunday: 10:00AM - 15:00PM</span>[/stm_icon_box][/vc_column][vc_column css=\".vc_custom_1448867270861{margin-bottom: 25px !important;}\" offset=\"vc_col-lg-8 vc_col-md-12\"][stm_gmap map_height=\"420px\" map_zoom=\"18\" disable_mouse_whell=\"disable\" lat=\"53.6970894\" lng=\"-2.4629212\" infowindow_text=\"2-4 Kay St, Darwen BB3 3BZ, UK\" image=\"4381\"][/vc_column][/vc_row]','Contact Us','','publish','closed','closed','','contact-us','','','2018-01-03 10:18:34','2018-01-03 10:18:34','',0,'http://bikes.loc/?page_id=712',0,'page','',0),(4384,1,'2017-02-24 08:33:33','2017-02-24 08:33:33','[vc_row full_width=\"stretch_row\" parallax=\"content-moving\" parallax_image=\"10\" css=\".vc_custom_1487925210825{margin-bottom: 0px !important;padding-top: 311px !important;background-color: #0a0a0a !important;}\"][vc_column][/vc_column][/vc_row][vc_row css=\".vc_custom_1447829274492{margin-top: -177px !important;margin-bottom: 64px !important;}\"][vc_column][stm_contact_form form=\"717\" title=\"Contact Us\" css=\".vc_custom_1487923529721{padding-top: 30px !important;padding-right: 30px !important;padding-bottom: 30px !important;padding-left: 30px !important;background-color: #000000 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452251533394{margin-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1487923284932{margin-bottom: 25px !important;padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\" offset=\"vc_col-lg-4 vc_col-md-12\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-pin\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Address\" css=\".vc_custom_1487924993001{margin-bottom: 28px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487924993000{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">2-4 Kay St, Darwen, BB3 3BZ</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-phone\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Phone\" css=\".vc_custom_1487925000668{margin-bottom: 27px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487925000667{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">01254 917248</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-time\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Hours\" css=\".vc_custom_1487925041421{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487925041419{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">Mon - Sat: 09:00AM - 05:30PM\r\nSunday: By Appointment</span>[/stm_icon_box][/vc_column][vc_column css=\".vc_custom_1448867270861{margin-bottom: 25px !important;}\" offset=\"vc_col-lg-8 vc_col-md-12\"][stm_gmap map_height=\"420px\" map_zoom=\"18\" disable_mouse_whell=\"disable\" lat=\"53.6970894\" lng=\"-2.4629212\" infowindow_text=\"2-4 Kay St, Darwen BB3 3BZ, UK\" image=\"4381\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','712-revision-v1','','','2017-02-24 08:33:33','2017-02-24 08:33:33','',712,'http://stationtyresdarwen.co.uk/2017/02/24/712-revision-v1/',0,'revision','',0),(4374,1,'2017-02-24 08:06:52','2017-02-24 08:06:52','[vc_row full_width=\"stretch_row\" parallax=\"content-moving\" parallax_image=\"10\" css=\".vc_custom_1487922949849{margin-bottom: 0px !important;padding-top: 311px !important;background: #0a0a0a url(http://stationtyresdarwen.co.uk/wp-content/uploads/placeholder.gif?id=4278);}\"][vc_column][/vc_column][/vc_row][vc_row css=\".vc_custom_1447829274492{margin-top: -177px !important;margin-bottom: 64px !important;}\"][vc_column][stm_contact_form form=\"717\" title=\"Contact Us\" css=\".vc_custom_1487923529721{padding-top: 30px !important;padding-right: 30px !important;padding-bottom: 30px !important;padding-left: 30px !important;background-color: #000000 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452251533394{margin-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1487923284932{margin-bottom: 25px !important;padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\" offset=\"vc_col-lg-4 vc_col-md-12\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-pin\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#cc6119\" icon_size=\"31\" title=\"Address\" css=\".vc_custom_1487922995967{margin-bottom: 28px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487922995966{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">2-4 Kay St, Darwen, BB3 3BZ</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-phone\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#cc6119\" icon_size=\"31\" title=\"Sales Phone\" css=\".vc_custom_1487923037515{margin-bottom: 27px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487923037514{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">01254 917248</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-time\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#cc6119\" icon_size=\"31\" title=\"Sales Hours\" css=\".vc_custom_1447840092359{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1447840092356{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">Mon - Fri: 09:00AM - 09:00PM\r\nSaturday: 09:00AM - 07:00PM\r\nSunday: Closed</span>[/stm_icon_box][/vc_column][vc_column css=\".vc_custom_1448867270861{margin-bottom: 25px !important;}\" offset=\"vc_col-lg-8 vc_col-md-12\"][stm_gmap map_height=\"420px\" map_zoom=\"18\" disable_mouse_whell=\"disable\" lat=\"53.6970894\" lng=\"-2.4629212\" infowindow_text=\"2-4 Kay St, Darwen BB3 3BZ, UK\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','712-revision-v1','','','2017-02-24 08:06:52','2017-02-24 08:06:52','',712,'http://stationtyresdarwen.co.uk/2017/02/24/712-revision-v1/',0,'revision','',0),(4375,1,'2017-02-24 08:11:33','2017-02-24 08:11:33',' ','','','publish','closed','closed','','4375','','','2017-03-01 18:00:03','2017-03-01 18:00:03','',0,'http://stationtyresdarwen.co.uk/?p=4375',4,'nav_menu_item','',0),(4376,1,'2017-02-24 08:11:33','2017-02-24 08:11:33',' ','','','publish','closed','closed','','4376','','','2017-03-01 18:00:03','2017-03-01 18:00:03','',0,'http://stationtyresdarwen.co.uk/?p=4376',1,'nav_menu_item','',0),(748,1,'2015-11-18 12:19:19','2015-11-18 12:19:19','[vc_row][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][stm_post_title][vc_column_text css=\".vc_custom_1447927631427{margin-bottom: 0px !important;}\"]<iframe src=\"https://www.youtube.com/embed/1kCG-WqpVnI\" width=\"560\" height=\"429\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][stm_post_info][vc_separator color=\"black\" border_width=\"4\" css=\".vc_custom_1447760445886{margin-bottom: 29px !important;}\"][vc_column_text css=\".vc_custom_1447764478346{margin-bottom: 42px !important;}\"]\n<blockquote>Suspendisse vitae tellus non turpis suscipit pellentesque sed quis tortor. Sed auctor elit et felis varius eleifend. Cras gravida, ligula in imperdiet imperdiet, nisl justo iaculis nulla, non tincidunt purus neque sit amet turpis.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1447765013212{margin-bottom: 43px !important;}\"]Vivamus mollis, elit vitae maximus imperdiet, nisi nulla fermentum nisi, sed luctus metus dolor ac eros. Nulla cursus venenatis enim, vitae tincidunt justo vulputate a. Sed elementum elit ultrices tellus elementum, et molestie nulla pharetra.[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"4278,4278,4278,4278\" img_size=\"398x235\" stm_fancybox=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"LOREM IPSUM QUISQUE SED EST AC ANTE\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1447760659263{margin-top: 4px !important;margin-bottom: 16px !important;}\"][vc_separator css=\".vc_custom_1447760739186{margin-bottom: 16px !important;}\"][vc_column_text css=\".vc_custom_1447760763410{margin-bottom: 17px !important;}\"]Suspendisse aliquam finibus fringilla. Sed interd imperdiet. Morbi nec velit ut nunc posuere dapibus vel ut odio.[/vc_column_text][vc_column_text]\n<ul class=\"list-style-1\">\n <li>Pellentesque lacus urna, feugiat non consectetur</li>\n <li>Aliquam sem neque, efficitur atero lectus vitae</li>\n <li>Pellentesque erat libero, eleifend sit amet felis</li>\n <li>Maecenas eget consectetur quam.</li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_post_meta_bottom css=\".vc_custom_1447766022587{margin-top: 38px !important;border-top-width: 1px !important;padding-top: 35px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}\"][stm_post_author_box][stm_post_comments][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"651\"][/vc_column][/vc_row]','Tesla Model S: Top Secret Car Collector\'s Garage','The Tesla Model S isn’t the first truly autonomous car on the road and available for sale to the public. We’re not there yet, just as a society.','publish','open','open','','post-format-video','','','2015-11-18 12:19:19','2015-11-18 12:19:19','',0,'http://bikes.loc/?p=748',0,'post','',0),(1064,1,'2015-12-01 09:55:52','2015-12-01 09:55:52','[vc_row][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][stm_post_title][vc_column_text css=\".vc_custom_1447927631427{margin-bottom: 0px !important;}\"]<iframe src=\"https://www.youtube.com/embed/1kCG-WqpVnI\" width=\"560\" height=\"429\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][stm_post_info][vc_separator color=\"black\" border_width=\"4\" css=\".vc_custom_1447760445886{margin-bottom: 29px !important;}\"][vc_column_text css=\".vc_custom_1447764478346{margin-bottom: 42px !important;}\"]\n<blockquote>Suspendisse vitae tellus non turpis suscipit pellentesque sed quis tortor. Sed auctor elit et felis varius eleifend. Cras gravida, ligula in imperdiet imperdiet, nisl justo iaculis nulla, non tincidunt purus neque sit amet turpis.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1447765013212{margin-bottom: 43px !important;}\"]Vivamus mollis, elit vitae maximus imperdiet, nisi nulla fermentum nisi, sed luctus metus dolor ac eros. Nulla cursus venenatis enim, vitae tincidunt justo vulputate a. Sed elementum elit ultrices tellus elementum, et molestie nulla pharetra.[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"4278,4278,4278,4278\" img_size=\"398x235\" stm_fancybox=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"LOREM IPSUM QUISQUE SED EST AC ANTE\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1447760659263{margin-top: 4px !important;margin-bottom: 16px !important;}\"][vc_separator css=\".vc_custom_1447760739186{margin-bottom: 16px !important;}\"][vc_column_text css=\".vc_custom_1447760763410{margin-bottom: 17px !important;}\"]Suspendisse aliquam finibus fringilla. Sed interd imperdiet. Morbi nec velit ut nunc posuere dapibus vel ut odio.[/vc_column_text][vc_column_text]\n<ul class=\"list-style-1\">\n <li>Pellentesque lacus urna, feugiat non consectetur</li>\n <li>Aliquam sem neque, efficitur atero lectus vitae</li>\n <li>Pellentesque erat libero, eleifend sit amet felis</li>\n <li>Maecenas eget consectetur quam.</li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_post_meta_bottom css=\".vc_custom_1447766022587{margin-top: 38px !important;border-top-width: 1px !important;padding-top: 35px !important;border-top-color: #dddddd !important;border-top-style: solid !important;}\"][stm_post_author_box][stm_post_comments][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"651\"][/vc_column][/vc_row]','Nissan vehicles are distributed throughout the United States','The Tesla Model S isn’t the first truly autonomous car on the road and available for sale to the public. We’re not there yet, just as a society.','publish','open','open','','nissan-vehicles-are-distributed-throughout-the-united-states','','','2015-12-01 09:55:52','2015-12-01 09:55:52','',0,'http://bikes.loc/?p=1064',0,'post','',0),(1073,1,'2015-12-01 10:18:25','2015-12-01 10:18:25','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448261910223{margin-top: -36px !important;margin-bottom: 70px !important;}\"][vc_column][stm_post_fullwidth_info][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_custom_heading text=\"The Tesla Model S isn’t the first truly autonomous car on the road and available for sale to the public. We’re not there yet, just as a society.\" font_container=\"tag:h4|text_align:left|line_height:22px\" use_theme_fonts=\"yes\" css=\".vc_custom_1447760324176{margin-bottom: 27px !important;}\"][vc_column_text]Cras condimentum a elit eget sagittis. Ut dignissim sapien feugiat purus tristique, vitae aliquet arcu tempor. Nulla facilisi. Integer maximus mi non nulla posuere consectetur. Phasellus erat lectus, ullamcorper nec erat vel, hendrerit hendrerit urna. Curabitur ut tempor lacus. Vivamus mollis, elit vitae <a href=\"#anchor\">maximus imperdiet</a>, nisi nulla fermentum nisi, sed luctus metus dolor ac eros. Nulla cursus venenatis enim, vitae tincidunt justo vulputate a. Sed elementum elit ultrices tellus elementum, et molestie nulla pharetra.[/vc_column_text][vc_separator color=\"black\" border_width=\"4\" css=\".vc_custom_1447760445886{margin-bottom: 29px !important;}\"][vc_column_text css=\".vc_custom_1447760507284{margin-bottom: 42px !important;}\"]\n<blockquote>Suspendisse vitae tellus non turpis suscipit pellentesque sed quis tortor. Sed auctor elit et felis varius eleifend. Cras gravida, ligula in imperdiet imperdiet, nisl justo iaculis nulla, non tincidunt purus neque sit amet turpis.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1448262282453{margin-bottom: 44px !important;}\"]Vivamus mollis, elit vitae maximus imperdiet, nisi nulla fermentum nisi, sed luctus metus dolor ac eros. Nulla cursus venenatis enim, vitae tincidunt justo vulputate a. Sed elementum elit ultrices tellus elementum, et molestie nulla pharetra.[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text]<iframe src=\"https://www.youtube.com/embed/4VUavpHXPB8\" width=\"560\" height=\"235\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"LOREM IPSUM QUISQUE SED EST AC ANTE\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1447760659263{margin-top: 4px !important;margin-bottom: 16px !important;}\"][vc_separator css=\".vc_custom_1447760739186{margin-bottom: 16px !important;}\"][vc_column_text css=\".vc_custom_1447760763410{margin-bottom: 17px !important;}\"]Suspendisse aliquam finibus fringilla. Sed interd imperdiet. Morbi nec velit ut nunc posuere dapibus vel ut odio.[/vc_column_text][vc_column_text]\n<ul class=\"list-style-1\">\n <li>Pellentesque lacus urna, feugiat non consectetur</li>\n <li>Aliquam sem neque, efficitur atero lectus vitae</li>\n <li>Pellentesque erat libero, eleifend sit amet felis</li>\n <li>Maecenas eget consectetur quam.</li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_post_meta_bottom][stm_post_author_box][stm_post_comments][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"651\"][/vc_column][/vc_row]','How The New Mercedes-Benz SLS AMG on the track','The Tesla Model S isn’t the first truly autonomous car on the road and available for sale to the public. We’re not there yet, just as a society.','publish','open','open','','how-the-new-mercedes-benz-sls-amg-on-the-track','','','2015-12-01 10:18:25','2015-12-01 10:18:25','',0,'http://bikes.loc/?p=1073',0,'post','',0),(1074,1,'2015-12-01 10:01:34','2015-12-01 10:01:34','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448261910223{margin-top: -36px !important;margin-bottom: 70px !important;}\"][vc_column][stm_post_fullwidth_info][/vc_column][/vc_row][vc_row][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_custom_heading text=\"The Tesla Model S isn’t the first truly autonomous car on the road and available for sale to the public. We’re not there yet, just as a society.\" font_container=\"tag:h4|text_align:left|line_height:22px\" use_theme_fonts=\"yes\" css=\".vc_custom_1447760324176{margin-bottom: 27px !important;}\"][vc_column_text]Cras condimentum a elit eget sagittis. Ut dignissim sapien feugiat purus tristique, vitae aliquet arcu tempor. Nulla facilisi. Integer maximus mi non nulla posuere consectetur. Phasellus erat lectus, ullamcorper nec erat vel, hendrerit hendrerit urna. Curabitur ut tempor lacus. Vivamus mollis, elit vitae <a href=\"#anchor\">maximus imperdiet</a>, nisi nulla fermentum nisi, sed luctus metus dolor ac eros. Nulla cursus venenatis enim, vitae tincidunt justo vulputate a. Sed elementum elit ultrices tellus elementum, et molestie nulla pharetra.[/vc_column_text][vc_separator color=\"black\" border_width=\"4\" css=\".vc_custom_1447760445886{margin-bottom: 29px !important;}\"][vc_column_text css=\".vc_custom_1447760507284{margin-bottom: 42px !important;}\"]\n<blockquote>Suspendisse vitae tellus non turpis suscipit pellentesque sed quis tortor. Sed auctor elit et felis varius eleifend. Cras gravida, ligula in imperdiet imperdiet, nisl justo iaculis nulla, non tincidunt purus neque sit amet turpis.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1448262282453{margin-bottom: 44px !important;}\"]Vivamus mollis, elit vitae maximus imperdiet, nisi nulla fermentum nisi, sed luctus metus dolor ac eros. Nulla cursus venenatis enim, vitae tincidunt justo vulputate a. Sed elementum elit ultrices tellus elementum, et molestie nulla pharetra.[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"4278,4278,4278,4278\" img_size=\"398x235\" stm_fancybox=\"yes\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"LOREM IPSUM QUISQUE SED EST AC ANTE\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1447760659263{margin-top: 4px !important;margin-bottom: 16px !important;}\"][vc_separator css=\".vc_custom_1447760739186{margin-bottom: 16px !important;}\"][vc_column_text css=\".vc_custom_1447760763410{margin-bottom: 17px !important;}\"]Suspendisse aliquam finibus fringilla. Sed interd imperdiet. Morbi nec velit ut nunc posuere dapibus vel ut odio.[/vc_column_text][vc_column_text]\n<ul class=\"list-style-1\">\n <li>Pellentesque lacus urna, feugiat non consectetur</li>\n <li>Aliquam sem neque, efficitur atero lectus vitae</li>\n <li>Pellentesque erat libero, eleifend sit amet felis</li>\n <li>Maecenas eget consectetur quam.</li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_post_meta_bottom][stm_post_author_box][stm_post_comments][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"651\"][/vc_column][/vc_row]','We believe the cars we offer are the highest quality','The Tesla Model S isn’t the first truly autonomous car on the road and available for sale to the public. We’re not there yet, just as a society.','publish','open','open','','we-believe-the-cars-we-offer-are-the-highest-quality','','','2015-12-01 10:01:34','2015-12-01 10:01:34','',0,'http://bikes.loc/?p=1074',0,'post','',0),(1386,1,'2015-12-23 07:45:38','2015-12-23 07:45:38','[vc_row full_width=\"stretch_row_content_no_spaces\" css=\".vc_custom_1450862372092{margin-top: -36px !important;}\"][vc_column][stm_post_animated_image][/vc_column][/vc_row][vc_row el_id=\"blog-animated-content\"][vc_column offset=\"vc_col-lg-9 vc_col-md-9\"][vc_column_text]Cras condimentum a elit eget sagittis. Ut dignissim sapien feugiat purus tristique, vitae aliquet arcu tempor. Nulla facilisi. Integer maximus mi non nulla posuere consectetur. Phasellus erat lectus, ullamcorper nec erat vel, hendrerit hendrerit urna. Curabitur ut tempor lacus. Vivamus mollis, elit vitae <a href=\"#anchor\">maximus imperdiet</a>, nisi nulla fermentum nisi, sed luctus metus dolor ac eros. Nulla cursus venenatis enim, vitae tincidunt justo vulputate a. Sed elementum elit ultrices tellus elementum, et molestie nulla pharetra.[/vc_column_text][vc_separator color=\"black\" border_width=\"4\" css=\".vc_custom_1447760445886{margin-bottom: 29px !important;}\"][vc_column_text css=\".vc_custom_1447760507284{margin-bottom: 42px !important;}\"]\n<blockquote>Suspendisse vitae tellus non turpis suscipit pellentesque sed quis tortor. Sed auctor elit et felis varius eleifend. Cras gravida, ligula in imperdiet imperdiet, nisl justo iaculis nulla, non tincidunt purus neque sit amet turpis.</blockquote>\n[/vc_column_text][vc_column_text css=\".vc_custom_1448262282453{margin-bottom: 44px !important;}\"]Vivamus mollis, elit vitae maximus imperdiet, nisi nulla fermentum nisi, sed luctus metus dolor ac eros. Nulla cursus venenatis enim, vitae tincidunt justo vulputate a. Sed elementum elit ultrices tellus elementum, et molestie nulla pharetra.[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_column_text]<iframe src=\"https://www.youtube.com/embed/4VUavpHXPB8\" width=\"560\" height=\"235\" frameborder=\"0\" allowfullscreen=\"allowfullscreen\"></iframe>[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"LOREM IPSUM QUISQUE SED EST AC ANTE\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1447760659263{margin-top: 4px !important;margin-bottom: 16px !important;}\"][vc_separator css=\".vc_custom_1447760739186{margin-bottom: 16px !important;}\"][vc_column_text css=\".vc_custom_1447760763410{margin-bottom: 17px !important;}\"]Suspendisse aliquam finibus fringilla. Sed interd imperdiet. Morbi nec velit ut nunc posuere dapibus vel ut odio.[/vc_column_text][vc_column_text]\n<ul class=\"list-style-1\">\n <li>Pellentesque lacus urna, feugiat non consectetur</li>\n <li>Aliquam sem neque, efficitur atero lectus vitae</li>\n <li>Pellentesque erat libero, eleifend sit amet felis</li>\n <li>Maecenas eget consectetur quam.</li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][stm_post_meta_bottom][stm_post_author_box][stm_post_comments][/vc_column][vc_column width=\"1/4\" offset=\"vc_hidden-sm vc_hidden-xs\"][stm_sidebar sidebar=\"651\"][/vc_column][/vc_row]','Tap yourself on the back for being a savvy car shopper','','publish','open','open','','tap-yourself','','','2015-12-23 07:45:38','2015-12-23 07:45:38','',0,'http://bikes.loc/?p=1386',0,'post','',0),(4287,1,'2015-09-18 04:03:17','2015-09-18 04:03:17','<p>Your Name (required)<br />\n [text* your-name] </p>\n\n<p>Your Email (required)<br />\n [email* your-email] </p>\n\n<p>Subject<br />\n [text your-subject] </p>\n\n<p>Your Message<br />\n [textarea your-message] </p>\n\n<p>[submit \"Send\"]</p>\n[your-subject]\n[your-name]\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nReply-To: [your-email]\n\n0\n0\n\n[your-subject]\nMotors\nMessage Body:\n[your-message]\n\n--\n[your-email]\n\n0\n0\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.','Contact form 1','','publish','closed','closed','','contact-form-1-2','','','2015-09-18 04:03:17','2015-09-18 04:03:17','',0,'http://bikes.loc/?post_type=wpcf7_contact_form&p=4',0,'wpcf7_contact_form','',0),(188,1,'2015-10-05 05:36:30','0000-00-00 00:00:00','','New request for test drive Acura Coupe Red 2015 200 5-serie','','draft','closed','closed','','','','','2015-10-05 05:36:30','0000-00-00 00:00:00','',0,'http://bikes.loc/?post_type=test_drive_request&p=188',0,'test_drive_request','',0),(500,1,'2015-10-27 10:26:01','2015-10-27 10:26:01','<div class=\"row\">\n <div class=\"col-md-6 col-sm-6\">\n <div class=\"form-group\">\n <div class=\"form-label heading-font\">First Name*</div>\n [text* your-name]\n </div>\n <div class=\"form-group\">\n <div class=\"form-label heading-font\">Email*</div>\n [email* your-email]\n </div>\n </div>\n <div class=\"col-md-6 col-sm-6\">\n <div class=\"form-group\">\n <div class=\"form-label heading-font\">Last Name*</div>\n [text* your-name-2]\n </div>\n <div class=\"form-group\">\n <div class=\"form-label heading-font\">Phone*</div>\n [tel* your-tel]\n </div>\n </div>\n</div>\n<div class=\"row\">\n <div class=\"col-md-12\">\n <div class=\"form-group-textarea\">\n <div class=\"form-label heading-font\">Your Message</div>\n [textarea your-message \"I am interested in a price quote on this vehicle. Please contact me at your earliest convenience with your best price for this vehicle.\"]\n </div>\n [recaptcha theme:dark]\n [submit \"Send message\"]\n </div>\n</div>\nCar Page Feedback\n[your-name] <wordpress@motos.loc>\nFrom: [your-name] [your-name-2] <[your-email]>\nPhone: [your-tel]\n\nMessage Body:\n[your-message]\nReply-To: [your-email]\n\n\n\n\n\n\n\n\n\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour entered code is incorrect.','Single Car Form','','publish','closed','closed','','untitled','','','2015-10-27 10:26:01','2015-10-27 10:26:01','',0,'http://bikes.loc/?post_type=wpcf7_contact_form&p=500',0,'wpcf7_contact_form','',0),(651,1,'2015-11-17 06:46:16','2015-11-17 06:46:16','[vc_row css=\".vc_custom_1447763022196{margin-top: 4px !important;margin-bottom: 0px !important;}\"][vc_column][vc_wp_search][/vc_column][/vc_row][vc_row css=\".vc_custom_1447756117494{margin-bottom: 0px !important;}\"][vc_column][vc_wp_text title=\"Text Widget\"]<span class=\"stm-small-text\">We know there isn’t much more frustrating than being without your vehicle while it gets repaired.</span>Are you ready to give your car the service it is asking for? Schedule car maintenance or repair right here. Our top-notch <a href=\"/service/\">service staff</a> can get your car or truck in and out quickly.[/vc_wp_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1447756207847{margin-bottom: 0px !important;}\"][vc_column][vc_wp_tagcloud title=\"Tag Widget\" taxonomy=\"post_tag\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1447756269507{margin-bottom: 0px !important;}\"][vc_column][vc_wp_archives title=\"Archive\" options=\"dropdown\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1447758057972{margin-bottom: 0px !important;}\"][vc_column][stm_media_library title=\"Media library\" images=\"4278,4278,4278,4278\"][/vc_column][/vc_row][vc_row][vc_column][stm_recent_posts title=\"Recent posts\" number_of_posts=\"2\"][/vc_column][/vc_row]','Blog sidebar','','publish','closed','closed','','blog-sidebar','','','2015-11-17 06:46:16','2015-11-17 06:46:16','',0,'http://bikes.loc/?post_type=sidebar&p=651',0,'sidebar','',0),(768,1,'2015-11-20 05:04:56','2015-11-20 05:04:56','[vc_row][vc_column][vc_widget_sidebar sidebar_id=\"shop\"][/vc_column][/vc_row]','Shop Sidebar','','publish','closed','closed','','shop-sidebar','','','2015-11-20 05:04:56','2015-11-20 05:04:56','',0,'http://bikes.loc/?post_type=sidebar&p=768',0,'sidebar','',0),(930,1,'2015-11-27 07:51:10','2015-11-27 07:51:10','[vc_row][vc_column][stm_media_library title=\"Media Library\" images=\"4278,4278,4278,4278\"][/vc_column][/vc_row]','Page sidebar','','publish','closed','closed','','page-sidebar','','','2015-11-27 07:51:10','2015-11-27 07:51:10','',0,'http://bikes.loc/?post_type=sidebar&p=930',0,'sidebar','',0),(1324,1,'2015-12-14 12:16:03','0000-00-00 00:00:00','','New request for test drive Nissan Altima 2.5 SL, LEATHER, SUNROOF','','draft','closed','closed','','','','','2015-12-14 12:16:03','0000-00-00 00:00:00','',0,'http://bikes.loc/?post_type=test_drive_request&p=1324',0,'test_drive_request','',0),(1370,1,'2015-12-23 04:35:40','2015-12-23 04:35:40','[vc_row][vc_column][stm_sidebar_call_to_action image_size=\"255x227\" link=\"url:http%3A%2F%2Fmotos.loc%2Flistings%2F2015-kawasaki-jtx-900%2F|title:Compact%20sidebar|target:%20_blank|\" text_image=\"4278\" image=\"4278,4278,4278,4278\" css=\".vc_custom_1471586811175{margin-bottom: 30px !important;}\" text_image_width=\"65\"]\n<h4><span style=\"color: #0e1315;\">OFF-ROAD MOTORCYCLES</span> <span style=\"color: #e71919;\">BY HONDA</span></h4>\n[/stm_sidebar_call_to_action][/vc_column][/vc_row]','Page sidebar 2','','publish','closed','closed','','page-sidebar-2','','','2015-12-23 04:35:40','2015-12-23 04:35:40','',0,'http://bikes.loc/?post_type=sidebar&p=1370',0,'sidebar','',0),(1560,1,'2016-05-12 07:10:31','0000-00-00 00:00:00','','New request for test drive Nissan Altima 2.5 SL, LEATHER, SUNROOF','','draft','closed','closed','','','','','2016-05-12 07:10:31','0000-00-00 00:00:00','',0,'http://bikes.loc/?post_type=test_drive_request&p=1560',0,'test_drive_request','',0),(1590,1,'2016-05-24 07:20:30','0000-00-00 00:00:00','','New request for test drive Mercedes-Benz E-Class E350','','draft','closed','closed','','','','','2016-05-24 07:20:30','0000-00-00 00:00:00','',0,'http://bikes.loc/?post_type=test_drive_request&p=1590',0,'test_drive_request','',0),(1591,1,'2016-05-27 04:52:27','0000-00-00 00:00:00','','New request for test drive Mercedes-Benz E-Class E350','','draft','closed','closed','','','','','2016-05-27 04:52:27','0000-00-00 00:00:00','',0,'http://bikes.loc/?post_type=test_drive_request&p=1591',0,'test_drive_request','',0),(4153,1,'2016-08-17 09:46:44','2016-08-17 09:46:44','[vc_row][vc_column][stm_moto_data][stm_moto_links][stm_sidebar_call_to_action image_size=\"255x227\" text_image=\"4278\" image=\"4278,4278,4278,4278\"]\n<h4><span style=\"color: #0e1315;\">OFF-ROAD MOTORCYCLES</span> <span style=\"color: #e71919;\">BY HONDA</span></h4>\n[/stm_sidebar_call_to_action][/vc_column][/vc_row]','Vehicle sidebar','','publish','closed','closed','','vehicle-sidebar','','','2016-08-17 09:46:44','2016-08-17 09:46:44','',0,'http://bikes.loc/?post_type=sidebar&p=4153',0,'sidebar','',0),(587,1,'2015-11-05 09:52:56','2015-11-05 09:52:56','<div class=\"row stm-forms-sm\">\r\n <div class=\"col-md-4 col-sm-4\">\r\n <div class=\"form-group\">\r\n <div class=\"form-label-small\">Name</div>\r\n [text* your-name]\r\n </div>\r\n </div>\r\n <div class=\"col-md-4 col-sm-4\">\r\n <div class=\"form-group\">\r\n <div class=\"form-label-small\">Email</div>\r\n [email* your-email]\r\n </div>\r\n </div>\r\n <div class=\"col-md-4 col-sm-4\">\r\n <div class=\"form-group\">\r\n <div class=\"form-label-small\">Phone</div>\r\n [tel* your-tel]\r\n </div>\r\n </div>\r\n</div>\r\n<div class=\"row stm-forms-sm\">\r\n <div class=\"col-md-4 col-sm-4\">\r\n <div class=\"form-group\">\r\n <div class=\"form-label-small\">Make/Model</div>\r\n [text* make-model]\r\n </div>\r\n </div>\r\n <div class=\"col-md-4 col-sm-4\">\r\n <div class=\"form-group\">\r\n <div class=\"form-label-small\">Mileage (optional)</div>\r\n [text mileage]\r\n </div>\r\n </div>\r\n <div class=\"col-md-4 col-sm-4\">\r\n <div class=\"form-group\">\r\n <div class=\"form-label-small\">Best time</div>\r\n <div class=\"stm-datepicker-input-icon\">\r\n [text* time class:stm-date-timepicker]\r\n </div>\r\n </div>\r\n </div>\r\n</div>\r\n<hr class=\"form-hr\"/>\r\n<div class=\"row\">\r\n <div class=\"col-md-4 col-sm-4\">\r\n [submit class:button-fluid \"Request a service\"]\r\n </div>\r\n <div class=\"col-md-8 col-sm-8\">\r\n <div class=\"stm-form-alert\">\r\n By submitting this form you will be scheduling a service appointment at no obligation and will be contacted within 48 hours by a service advisor.\r\n </div>\r\n </div>\r\n</div>\nbhoobal.webdesigner@gmail.com\nSchedule service Request From [your-name]\n<[your-name]> <[your-email]>\nName: [your-name]\r\nEmail: [your-email]\r\nTel: [your-tel]\r\nMake-Model: [make-model]\r\nMileage: [mileage]\r\nBest time to call : [time]\n\n\n\n\n\n\n\n\n\n\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour entered code is incorrect.','Schedule service','','publish','closed','closed','','single-car-form_copy','','','2017-02-24 08:40:53','2017-02-24 08:40:53','',0,'http://bikes.loc/?post_type=wpcf7_contact_form&p=587',0,'wpcf7_contact_form','',0),(717,1,'2015-11-18 06:00:40','2015-11-18 06:00:40','<div class=\"row\">\r\n <div class=\"col-md-7 col-sm-7\">\r\n <div class=\"row\">\r\n <div class=\"col-md-6 col-sm-6\">\r\n <div class=\"form-group\">\r\n <div class=\"contact-us-label\">First Name*</div>\r\n [text* name placeholder \"Enter your first name\"]\r\n </div>\r\n </div>\r\n <div class=\"col-md-6 col-sm-6\">\r\n <div class=\"form-group\">\r\n <div class=\"contact-us-label\">Last Name*</div>\r\n [text* last-name placeholder \"Enter your last name\"]\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"row\">\r\n <div class=\"col-md-6 col-sm-6\">\r\n <div class=\"form-group\">\r\n <div class=\"contact-us-label\">Email*</div>\r\n [email* email placeholder \"email@domain.com\"]\r\n </div>\r\n </div>\r\n <div class=\"col-md-6 col-sm-6\">\r\n <div class=\"form-group\">\r\n <div class=\"contact-us-label\">Phone</div>\r\n [tel* phone placeholder \"Phone number\"]\r\n </div>\r\n </div>\r\n </div>\r\n\r\n \r\n </div>\r\n\r\n <div class=\"col-md-5 col-sm-5\">\r\n <div class=\"form-group\">\r\n <div class=\"form-group\">\r\n <div class=\"contact-us-label\">Comment</div>\r\n [textarea message placeholder x5 \"Enter your message...\"]\r\n </div>\r\n </div>\r\n \r\n </div>\r\n\r\n <div class=\"col-md-5 col-sm-5\">\r\n <div class=\"form-group\">\r\n <div class=\"form-group\">\r\n \r\n [recaptcha theme:dark]\r\n </div>\r\n </div>\r\n \r\n </div>\r\n\r\n <div class=\"row\">\r\n <div class=\"col-md-5\">\r\n<div class=\"contact-us-submit\">\r\n [submit class:contact-us-submit \"Submit\"]\r\n </div>\r\n</div>\r\n</div>\r\n</div>\nabs-stationtyres@hotmail.com\nContact Us Request From [name]\n[email]\nName: [name]\r\nLastname: [last-name]\r\nEmail id: [email]\r\nPhone: [phone]\r\nMessage: [message]\n\n\n\n\n\n\n\n\n\n\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour entered code is incorrect.','Contact Us','','publish','closed','closed','','contact-us','','','2017-03-02 09:56:52','2017-03-02 09:56:52','',0,'http://bikes.loc/?post_type=wpcf7_contact_form&p=717',0,'wpcf7_contact_form','',0),(785,1,'2015-11-23 05:49:04','2015-11-23 05:49:04','<div class=\"stm-inline-form\">[email* your-email placeholder \"Enter your email...\"][submit \"Get Notified\"]</div>\nComing soon page\n<[your-email]>\n\nComing soon page notification\n\n--\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nMotors\nMessage Body:\n[your-message]\n\n--\n[your-email]\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.','Coming soon','','publish','closed','closed','','coming-soon','','','2015-11-23 05:49:04','2015-11-23 05:49:04','',0,'http://bikes.loc/?post_type=wpcf7_contact_form&p=785',0,'wpcf7_contact_form','',0),(4288,1,'2017-02-22 18:53:22','2017-02-22 18:53:22','','About Us','','publish','closed','closed','','about-us','','','2017-03-01 18:00:03','2017-03-01 18:00:03','',0,'http://stationtyresdarwen.co.uk/2017/02/22/about-us/',2,'nav_menu_item','',0),(4290,1,'2017-02-22 18:53:22','2017-02-22 18:53:22','','Services','','publish','closed','closed','','services','','','2017-03-01 18:00:03','2017-03-01 18:00:03','',0,'http://stationtyresdarwen.co.uk/2017/02/22/services/',3,'nav_menu_item','',0),(4291,1,'2017-02-22 18:53:22','2017-02-22 18:53:22','','Contact','','publish','closed','closed','','contact','','','2017-03-01 18:00:03','2017-03-01 18:00:03','',0,'http://stationtyresdarwen.co.uk/2017/02/22/contact/',5,'nav_menu_item','',0),(4377,1,'2017-02-24 08:13:36','2017-02-24 08:13:36','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHO WE ARE\" font_container=\"tag:h2|font_size:45|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793519972{margin-bottom: 45px !important;}\"][vc_column_text]\r\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\r\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\r\n\r\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.\r\n\r\n[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fabout-us%2F|||\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793492820{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\r\nPremium And Budget Range\r\nCatalytic Converters\r\nAll Makes & Models\r\nSame Day Fitting Service\r\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\r\nExhaust systems\r\nWheels\r\nBrake pads and discs\r\nWheel balancing\r\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\r\nTyre Repairs\r\nTyre fitting\r\nExhaust fitting\r\nWinter tyres\r\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\r\nVan tyres\r\n4x4 tyres\r\nTrailer tyres\r\nPremium brand tyres\r\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487923972573{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fservice%2F|||\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1487792709049{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793484681{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793101333{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#090909\" shape=\"square\" align=\"center\" css=\".vc_custom_1487924011977{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Foffers%2F|||\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"FOR OFFERS & SERVICE\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2017-02-24 08:13:36','2017-02-24 08:13:36','',4283,'http://stationtyresdarwen.co.uk/2017/02/24/4283-revision-v1/',0,'revision','',0),(4387,1,'2017-02-24 15:22:26','2017-02-24 15:22:26','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHO WE ARE\" font_container=\"tag:h2|font_size:45|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793519972{margin-bottom: 45px !important;}\"][vc_column_text]\r\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\r\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\r\n\r\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.\r\n\r\n[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fabout-us%2F|||\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793492820{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\r\nPremium And Budget Range\r\nCatalytic Converters\r\nAll Makes & Models\r\nSame Day Fitting Service\r\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\r\nExhaust systems\r\nWheels\r\nBrake pads and discs\r\nWheel balancing\r\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\r\nTyre Repairs\r\nTyre fitting\r\nExhaust fitting\r\nWinter tyres\r\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\r\nVan tyres\r\n4x4 tyres\r\nTrailer tyres\r\nPremium brand tyres\r\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487923972573{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fservice%2F|||\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1487949716102{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OFFERS YOU LOOKING\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487949699452{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793101333{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#090909\" shape=\"square\" align=\"center\" css=\".vc_custom_1487924011977{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Foffers%2F|||\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2017-02-24 15:22:26','2017-02-24 15:22:26','',4283,'http://stationtyresdarwen.co.uk/2017/02/24/4283-revision-v1/',0,'revision','',0),(4391,1,'2017-02-24 15:27:23','2017-02-24 15:27:23','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHO WE ARE\" font_container=\"tag:h2|font_size:45|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793519972{margin-bottom: 45px !important;}\"][vc_column_text]\r\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\r\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\r\n\r\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.\r\n\r\n[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fabout-us%2F|||\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793492820{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\r\nPremium And Budget Range\r\nCatalytic Converters\r\nAll Makes & Models\r\nSame Day Fitting Service\r\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\r\nExhaust systems\r\nWheels\r\nBrake pads and discs\r\nWheel balancing\r\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\r\nTyre Repairs\r\nTyre fitting\r\nExhaust fitting\r\nWinter tyres\r\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\r\nVan tyres\r\n4x4 tyres\r\nTrailer tyres\r\nPremium brand tyres\r\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487923972573{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fservice%2F|||\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1487950036757{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OFFERS YOU LOOKING\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487949699452{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793101333{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#090909\" shape=\"square\" align=\"center\" css=\".vc_custom_1487924011977{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Foffers%2F|||\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2017-02-24 15:27:23','2017-02-24 15:27:23','',4283,'http://stationtyresdarwen.co.uk/2017/02/24/4283-revision-v1/',0,'revision','',0),(4304,1,'2017-02-22 18:53:22','2017-02-22 18:53:22',' ','','','publish','closed','closed','','4304','','','2017-02-22 18:53:22','2017-02-22 18:53:22','',0,'http://stationtyresdarwen.co.uk/2017/02/22/4304/',3,'nav_menu_item','',0),(4305,1,'2017-02-22 18:53:22','2017-02-22 18:53:22',' ','','','publish','closed','closed','','4305','','','2017-02-22 18:53:22','2017-02-22 18:53:22','',0,'http://stationtyresdarwen.co.uk/2017/02/22/4305/',2,'nav_menu_item','',0),(4309,1,'2017-02-22 18:53:22','2017-02-22 18:53:22',' ','','','publish','closed','closed','','4309','','','2017-02-22 18:53:22','2017-02-22 18:53:22','',0,'http://stationtyresdarwen.co.uk/2017/02/22/4309/',4,'nav_menu_item','',0),(4312,1,'2017-02-22 18:53:22','2017-02-22 18:53:22',' ','','','publish','closed','closed','','4312','','','2017-02-22 18:53:22','2017-02-22 18:53:22','',0,'http://stationtyresdarwen.co.uk/2017/02/22/4312/',7,'nav_menu_item','',0),(4313,1,'2017-02-22 18:53:23','2017-02-22 18:53:23','','moto_slider_img.jpg','','inherit','closed','closed','','moto-slider-img-jpg','','','2017-02-22 18:53:23','2017-02-22 18:53:23','',0,'http://stationtyresdarwen.co.uk/wp-content/uploads/revslider/home_slider/moto_slider_img.jpg',0,'attachment','image/jpeg',0),(4314,1,'2017-02-22 18:53:23','2017-02-22 18:53:23','','yamaha-slider.png','','inherit','closed','closed','','yamaha-slider-png','','','2017-02-22 18:53:23','2017-02-22 18:53:23','',0,'http://stationtyresdarwen.co.uk/wp-content/uploads/revslider/home_slider/yamaha-slider.png',0,'attachment','image/png',0),(4319,1,'2017-03-03 10:27:19','2017-03-03 10:27:19','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHO WE ARE\" font_container=\"tag:h2|font_size:45|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793519972{margin-bottom: 45px !important;}\"][vc_column_text]\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\nStation tyres are specialists in budget tyres in Darwen. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\n\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fabout-us%2F|||\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793492820{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\nPremium And Budget Range\nCatalytic Converters\nAll Makes & Models\nSame Day Fitting Service\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\nExhaust systems\nWheels\nBrake pads and discs\nWheel balancing\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\nTyre Repairs\nTyre fitting\nExhaust fitting\nWinter tyres\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\nVan tyres\n4x4 tyres\nTrailer tyres\nPremium brand tyres\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487923972573{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fservice%2F|||\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1487951534610{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"offer-bg\"][vc_column css=\".vc_custom_1487951487445{background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OFFERS YOU LOOKING\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487949699452{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793101333{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#090909\" shape=\"square\" align=\"center\" css=\".vc_custom_1487924011977{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Foffers%2F|||\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-autosave-v1','','','2017-03-03 10:27:19','2017-03-03 10:27:19','',4283,'http://stationtyresdarwen.co.uk/2017/02/22/4283-autosave-v1/',0,'revision','',0),(4322,1,'2017-02-22 19:13:53','2017-02-22 19:13:53','','about-image','','inherit','open','closed','','about-image-2','','','2017-02-22 19:13:53','2017-02-22 19:13:53','',4283,'http://stationtyresdarwen.co.uk/wp-content/uploads/about-image-1.jpg',0,'attachment','image/jpeg',0),(4323,1,'2017-02-22 19:17:22','2017-02-22 19:17:22','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487790864298{padding-top: 50px !important;padding-bottom: 50px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h4|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"INVENTORY TYPES\" font_container=\"tag:h2|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1470913347701{margin-bottom: 45px !important;}\"][vc_column_text]\r\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\r\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\r\n\r\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.\r\n\r\n[/vc_column_text][vc_btn title=\"Read More\" style=\"flat\" shape=\"square\" color=\"warning\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1471237968258{padding-top: 116px !important;padding-bottom: 26px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/placeholder.gif?id=4067) !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-icon-calendar\" title=\"ONLINE APPOINTMENT\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"49\" css_icon=\".vc_custom_1470896315340{margin-right: 20px !important;margin-left: 7px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-service-icon-cash_dollar\" title=\"BEST SERVICES PRICES\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"49\" css_icon=\".vc_custom_1470896403219{margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][/vc_column][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-service-icon-diagnostic_monitor\" title=\"FREE DIAGNOSIS & BRAKE CHECKS\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"44\" css_icon=\".vc_custom_1470896438410{margin-right: 24px !important;margin-left: 7px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-service-icon-like_it\" title=\"HIGHEST RATED REPAIR SHOP\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"43\" css_icon=\".vc_custom_1470896475475{margin-right: 24px !important;margin-left: 8px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][/vc_column][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-service-icon-award_blank\" title=\"CERTIFIED AUTO MECHANICS\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"46\" css_icon=\".vc_custom_1470896669644{margin-top: 3px !important;margin-right: 22px !important;margin-left: 8px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-service-icon-shield_check\" title=\"12 MONTH WARRANTY ON SERVICE\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"48\" css_icon=\".vc_custom_1470896663319{margin-right: 23px !important;margin-left: 8px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][/vc_column][/vc_row][vc_row css=\".vc_custom_1471239084548{padding-top: 37px !important;padding-bottom: 46px !important;}\"][vc_column][stm_listings_tabs_2 per_page=\"6\" featured=\"\" show_more=\"\" title=\"FEATURED HOT DEALS\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1470917841792{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/placeholder.gif?id=4085) !important;}\"][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1471239363431{border-top-width: 9px !important;border-right-width: 9px !important;border-bottom-width: 9px !important;border-left-width: 9px !important;padding-top: 59px !important;padding-bottom: 46px !important;border-left-color: #ffffff !important;border-left-style: solid !important;border-right-color: #ffffff !important;border-right-style: solid !important;border-top-color: #ffffff !important;border-top-style: solid !important;border-bottom-color: #ffffff !important;border-bottom-style: solid !important;}\"][vc_row_inner css=\".vc_custom_1470917862335{padding-right: 60px !important;padding-left: 60px !important;}\"][vc_column_inner][vc_custom_heading text=\"WELCOME TO THE MOTORS WORLD\" font_container=\"tag:h2|font_size:32px|text_align:left|color:%23ffffff|line_height:32px\" use_theme_fonts=\"yes\" css=\".vc_custom_1470918371167{margin-bottom: 21px !important;}\"][vc_column_text css=\".vc_custom_1470918407602{margin-bottom: 29px !important;}\"]Praesent consequat pharetra commodo. Vestibulum nec lectus nibh. Curabitur tellus leo, euismod sit amet gravida at, egestas sed lectus.[/vc_column_text][stm_icon_button link=\"url:http%3A%2F%2Fmotos.loc%2Fabout-us%2F|title:Read%20more||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1471239417907{padding-top: 86px !important;padding-bottom: 53px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1470978550446{margin-bottom: 30px !important;}\"][vc_custom_heading text=\"Excellence in Motorsport\r\nServices Since 1987\" font_container=\"tag:h2|font_size:32px|text_align:left|color:%23ffffff|line_height:36px\" use_theme_fonts=\"yes\" css=\".vc_custom_1470979544457{margin-bottom: 32px !important;}\"][stm_color_separator style=\"style_2\" css=\".vc_custom_1471948825099{margin-bottom: 13px !important;}\"][vc_column_text]<span style=\"font-size: 13px;\">No doubt you\'ve heard Los Angeles described as having a distinct \'car culture.\' Part of the joy of living in Southern California is owning a car so you can easily enjoy all</span>[/vc_column_text][vc_column_text]\r\n<ul class=\"list-style-1\" style=\"font-size: 13px;\">\r\n <li>Sed consectetur massa bibendum dui ultricies, bibendum lorem placerat.</li>\r\n <li>Etiam fermentum eu diam eu malesuada. Curabitur porttitor elementum fringilla.</li>\r\n <li>Vestibulum sit amet justo sed arcu dictum varius Imassa nec lectus.</li>\r\n <li>Integer rutrum, et lobortis posuere, commodo aliquam magna arcu id tortor.</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1470979592702{margin-top: 17px !important;}\"][stm_boats_video image=\"4278,4278,4278,4278\" height=\"321\" link=\"https://www.youtube.com/embed/EpydlUJIG6I?autoplay=true\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1470982903047{padding-top: 27px !important;padding-bottom: 12px !important;background-color: #243136 !important;}\"][vc_column][stm_row_icons filter_selected=\"make\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2017-02-22 19:17:22','2017-02-22 19:17:22','',4283,'http://stationtyresdarwen.co.uk/2017/02/22/4283-revision-v1/',0,'revision','',0),(4327,1,'2017-02-22 19:38:24','2017-02-22 19:38:24','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"INVENTORY TYPES\" font_container=\"tag:h2|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1470913347701{margin-bottom: 45px !important;}\"][vc_column_text]\r\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\r\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\r\n\r\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.\r\n\r\n[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487791819284{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\r\nPremium And Budget Range\r\nCatalytic Converters\r\nAll Makes & Models\r\nSame Day Fitting Service\r\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\r\nExhaust systems\r\nWheels\r\nBrake pads and discs\r\nWheel balancing\r\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\r\nTyre Repairs\r\nTyre fitting\r\nExhaust fitting\r\nWinter tyres\r\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\r\nVan tyres\r\n4x4 tyres\r\nTrailer tyres\r\nPremium brand tyres\r\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487792020068{margin-top: 40px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1471239084548{padding-top: 37px !important;padding-bottom: 46px !important;}\"][vc_column][stm_listings_tabs_2 per_page=\"6\" featured=\"\" show_more=\"\" title=\"FEATURED HOT DEALS\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1470917841792{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/placeholder.gif?id=4085) !important;}\"][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1471239363431{border-top-width: 9px !important;border-right-width: 9px !important;border-bottom-width: 9px !important;border-left-width: 9px !important;padding-top: 59px !important;padding-bottom: 46px !important;border-left-color: #ffffff !important;border-left-style: solid !important;border-right-color: #ffffff !important;border-right-style: solid !important;border-top-color: #ffffff !important;border-top-style: solid !important;border-bottom-color: #ffffff !important;border-bottom-style: solid !important;}\"][vc_row_inner css=\".vc_custom_1470917862335{padding-right: 60px !important;padding-left: 60px !important;}\"][vc_column_inner][vc_custom_heading text=\"WELCOME TO THE MOTORS WORLD\" font_container=\"tag:h2|font_size:32px|text_align:left|color:%23ffffff|line_height:32px\" use_theme_fonts=\"yes\" css=\".vc_custom_1470918371167{margin-bottom: 21px !important;}\"][vc_column_text css=\".vc_custom_1470918407602{margin-bottom: 29px !important;}\"]Praesent consequat pharetra commodo. Vestibulum nec lectus nibh. Curabitur tellus leo, euismod sit amet gravida at, egestas sed lectus.[/vc_column_text][stm_icon_button link=\"url:http%3A%2F%2Fmotos.loc%2Fabout-us%2F|title:Read%20more||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1471239417907{padding-top: 86px !important;padding-bottom: 53px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1470978550446{margin-bottom: 30px !important;}\"][vc_custom_heading text=\"Excellence in Motorsport\r\nServices Since 1987\" font_container=\"tag:h2|font_size:32px|text_align:left|color:%23ffffff|line_height:36px\" use_theme_fonts=\"yes\" css=\".vc_custom_1470979544457{margin-bottom: 32px !important;}\"][stm_color_separator style=\"style_2\" css=\".vc_custom_1471948825099{margin-bottom: 13px !important;}\"][vc_column_text]<span style=\"font-size: 13px;\">No doubt you\'ve heard Los Angeles described as having a distinct \'car culture.\' Part of the joy of living in Southern California is owning a car so you can easily enjoy all</span>[/vc_column_text][vc_column_text]\r\n<ul class=\"list-style-1\" style=\"font-size: 13px;\">\r\n <li>Sed consectetur massa bibendum dui ultricies, bibendum lorem placerat.</li>\r\n <li>Etiam fermentum eu diam eu malesuada. Curabitur porttitor elementum fringilla.</li>\r\n <li>Vestibulum sit amet justo sed arcu dictum varius Imassa nec lectus.</li>\r\n <li>Integer rutrum, et lobortis posuere, commodo aliquam magna arcu id tortor.</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1470979592702{margin-top: 17px !important;}\"][stm_boats_video image=\"4278,4278,4278,4278\" height=\"321\" link=\"https://www.youtube.com/embed/EpydlUJIG6I?autoplay=true\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1470982903047{padding-top: 27px !important;padding-bottom: 12px !important;background-color: #243136 !important;}\"][vc_column][stm_row_icons filter_selected=\"make\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2017-02-22 19:38:24','2017-02-22 19:38:24','',4283,'http://stationtyresdarwen.co.uk/2017/02/22/4283-revision-v1/',0,'revision','',0),(4325,1,'2017-02-22 19:23:12','2017-02-22 19:23:12','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h4|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"INVENTORY TYPES\" font_container=\"tag:h2|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1470913347701{margin-bottom: 45px !important;}\"][vc_column_text]\r\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\r\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\r\n\r\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.\r\n\r\n[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#ffa500\" shape=\"square\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1471237968258{padding-top: 116px !important;padding-bottom: 26px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/placeholder.gif?id=4067) !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-icon-calendar\" title=\"ONLINE APPOINTMENT\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"49\" css_icon=\".vc_custom_1470896315340{margin-right: 20px !important;margin-left: 7px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-service-icon-cash_dollar\" title=\"BEST SERVICES PRICES\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"49\" css_icon=\".vc_custom_1470896403219{margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][/vc_column][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-service-icon-diagnostic_monitor\" title=\"FREE DIAGNOSIS & BRAKE CHECKS\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"44\" css_icon=\".vc_custom_1470896438410{margin-right: 24px !important;margin-left: 7px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-service-icon-like_it\" title=\"HIGHEST RATED REPAIR SHOP\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"43\" css_icon=\".vc_custom_1470896475475{margin-right: 24px !important;margin-left: 8px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][/vc_column][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-service-icon-award_blank\" title=\"CERTIFIED AUTO MECHANICS\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"46\" css_icon=\".vc_custom_1470896669644{margin-top: 3px !important;margin-right: 22px !important;margin-left: 8px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-service-icon-shield_check\" title=\"12 MONTH WARRANTY ON SERVICE\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"48\" css_icon=\".vc_custom_1470896663319{margin-right: 23px !important;margin-left: 8px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][/vc_column][/vc_row][vc_row css=\".vc_custom_1471239084548{padding-top: 37px !important;padding-bottom: 46px !important;}\"][vc_column][stm_listings_tabs_2 per_page=\"6\" featured=\"\" show_more=\"\" title=\"FEATURED HOT DEALS\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1470917841792{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/placeholder.gif?id=4085) !important;}\"][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1471239363431{border-top-width: 9px !important;border-right-width: 9px !important;border-bottom-width: 9px !important;border-left-width: 9px !important;padding-top: 59px !important;padding-bottom: 46px !important;border-left-color: #ffffff !important;border-left-style: solid !important;border-right-color: #ffffff !important;border-right-style: solid !important;border-top-color: #ffffff !important;border-top-style: solid !important;border-bottom-color: #ffffff !important;border-bottom-style: solid !important;}\"][vc_row_inner css=\".vc_custom_1470917862335{padding-right: 60px !important;padding-left: 60px !important;}\"][vc_column_inner][vc_custom_heading text=\"WELCOME TO THE MOTORS WORLD\" font_container=\"tag:h2|font_size:32px|text_align:left|color:%23ffffff|line_height:32px\" use_theme_fonts=\"yes\" css=\".vc_custom_1470918371167{margin-bottom: 21px !important;}\"][vc_column_text css=\".vc_custom_1470918407602{margin-bottom: 29px !important;}\"]Praesent consequat pharetra commodo. Vestibulum nec lectus nibh. Curabitur tellus leo, euismod sit amet gravida at, egestas sed lectus.[/vc_column_text][stm_icon_button link=\"url:http%3A%2F%2Fmotos.loc%2Fabout-us%2F|title:Read%20more||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1471239417907{padding-top: 86px !important;padding-bottom: 53px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1470978550446{margin-bottom: 30px !important;}\"][vc_custom_heading text=\"Excellence in Motorsport\r\nServices Since 1987\" font_container=\"tag:h2|font_size:32px|text_align:left|color:%23ffffff|line_height:36px\" use_theme_fonts=\"yes\" css=\".vc_custom_1470979544457{margin-bottom: 32px !important;}\"][stm_color_separator style=\"style_2\" css=\".vc_custom_1471948825099{margin-bottom: 13px !important;}\"][vc_column_text]<span style=\"font-size: 13px;\">No doubt you\'ve heard Los Angeles described as having a distinct \'car culture.\' Part of the joy of living in Southern California is owning a car so you can easily enjoy all</span>[/vc_column_text][vc_column_text]\r\n<ul class=\"list-style-1\" style=\"font-size: 13px;\">\r\n <li>Sed consectetur massa bibendum dui ultricies, bibendum lorem placerat.</li>\r\n <li>Etiam fermentum eu diam eu malesuada. Curabitur porttitor elementum fringilla.</li>\r\n <li>Vestibulum sit amet justo sed arcu dictum varius Imassa nec lectus.</li>\r\n <li>Integer rutrum, et lobortis posuere, commodo aliquam magna arcu id tortor.</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1470979592702{margin-top: 17px !important;}\"][stm_boats_video image=\"4278,4278,4278,4278\" height=\"321\" link=\"https://www.youtube.com/embed/EpydlUJIG6I?autoplay=true\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1470982903047{padding-top: 27px !important;padding-bottom: 12px !important;background-color: #243136 !important;}\"][vc_column][stm_row_icons filter_selected=\"make\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2017-02-22 19:23:12','2017-02-22 19:23:12','',4283,'http://stationtyresdarwen.co.uk/2017/02/22/4283-revision-v1/',0,'revision','',0),(4326,1,'2017-02-22 19:24:15','2017-02-22 19:24:15','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h4|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"INVENTORY TYPES\" font_container=\"tag:h2|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1470913347701{margin-bottom: 45px !important;}\"][vc_column_text]\r\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\r\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\r\n\r\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.\r\n\r\n[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1471237968258{padding-top: 116px !important;padding-bottom: 26px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/placeholder.gif?id=4067) !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-icon-calendar\" title=\"ONLINE APPOINTMENT\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"49\" css_icon=\".vc_custom_1470896315340{margin-right: 20px !important;margin-left: 7px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-service-icon-cash_dollar\" title=\"BEST SERVICES PRICES\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"49\" css_icon=\".vc_custom_1470896403219{margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][/vc_column][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-service-icon-diagnostic_monitor\" title=\"FREE DIAGNOSIS & BRAKE CHECKS\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"44\" css_icon=\".vc_custom_1470896438410{margin-right: 24px !important;margin-left: 7px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-service-icon-like_it\" title=\"HIGHEST RATED REPAIR SHOP\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"43\" css_icon=\".vc_custom_1470896475475{margin-right: 24px !important;margin-left: 8px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][/vc_column][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-service-icon-award_blank\" title=\"CERTIFIED AUTO MECHANICS\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"46\" css_icon=\".vc_custom_1470896669644{margin-top: 3px !important;margin-right: 22px !important;margin-left: 8px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" style_layout=\"boats\" icon=\"stm-service-icon-shield_check\" title=\"12 MONTH WARRANTY ON SERVICE\" box_text_color=\"#ffffff\" line_height=\"20\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color_hover=\"#ffffff\" icon_size=\"48\" css_icon=\".vc_custom_1470896663319{margin-right: 23px !important;margin-left: 8px !important;}\"]<span style=\"color: rgba(255,255,255,0.8);\">Duis arcu velit, accumsan nec turpis sed, iaculis interdum nunc. Morbi non tristique urna, at feugiat nunc.</span>[/stm_icon_box][/vc_column][/vc_row][vc_row css=\".vc_custom_1471239084548{padding-top: 37px !important;padding-bottom: 46px !important;}\"][vc_column][stm_listings_tabs_2 per_page=\"6\" featured=\"\" show_more=\"\" title=\"FEATURED HOT DEALS\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1470917841792{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/placeholder.gif?id=4085) !important;}\"][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1471239363431{border-top-width: 9px !important;border-right-width: 9px !important;border-bottom-width: 9px !important;border-left-width: 9px !important;padding-top: 59px !important;padding-bottom: 46px !important;border-left-color: #ffffff !important;border-left-style: solid !important;border-right-color: #ffffff !important;border-right-style: solid !important;border-top-color: #ffffff !important;border-top-style: solid !important;border-bottom-color: #ffffff !important;border-bottom-style: solid !important;}\"][vc_row_inner css=\".vc_custom_1470917862335{padding-right: 60px !important;padding-left: 60px !important;}\"][vc_column_inner][vc_custom_heading text=\"WELCOME TO THE MOTORS WORLD\" font_container=\"tag:h2|font_size:32px|text_align:left|color:%23ffffff|line_height:32px\" use_theme_fonts=\"yes\" css=\".vc_custom_1470918371167{margin-bottom: 21px !important;}\"][vc_column_text css=\".vc_custom_1470918407602{margin-bottom: 29px !important;}\"]Praesent consequat pharetra commodo. Vestibulum nec lectus nibh. Curabitur tellus leo, euismod sit amet gravida at, egestas sed lectus.[/vc_column_text][stm_icon_button link=\"url:http%3A%2F%2Fmotos.loc%2Fabout-us%2F|title:Read%20more||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1471239417907{padding-top: 86px !important;padding-bottom: 53px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1470978550446{margin-bottom: 30px !important;}\"][vc_custom_heading text=\"Excellence in Motorsport\r\nServices Since 1987\" font_container=\"tag:h2|font_size:32px|text_align:left|color:%23ffffff|line_height:36px\" use_theme_fonts=\"yes\" css=\".vc_custom_1470979544457{margin-bottom: 32px !important;}\"][stm_color_separator style=\"style_2\" css=\".vc_custom_1471948825099{margin-bottom: 13px !important;}\"][vc_column_text]<span style=\"font-size: 13px;\">No doubt you\'ve heard Los Angeles described as having a distinct \'car culture.\' Part of the joy of living in Southern California is owning a car so you can easily enjoy all</span>[/vc_column_text][vc_column_text]\r\n<ul class=\"list-style-1\" style=\"font-size: 13px;\">\r\n <li>Sed consectetur massa bibendum dui ultricies, bibendum lorem placerat.</li>\r\n <li>Etiam fermentum eu diam eu malesuada. Curabitur porttitor elementum fringilla.</li>\r\n <li>Vestibulum sit amet justo sed arcu dictum varius Imassa nec lectus.</li>\r\n <li>Integer rutrum, et lobortis posuere, commodo aliquam magna arcu id tortor.</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1470979592702{margin-top: 17px !important;}\"][stm_boats_video image=\"4278,4278,4278,4278\" height=\"321\" link=\"https://www.youtube.com/embed/EpydlUJIG6I?autoplay=true\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1470982903047{padding-top: 27px !important;padding-bottom: 12px !important;background-color: #243136 !important;}\"][vc_column][stm_row_icons filter_selected=\"make\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2017-02-22 19:24:15','2017-02-22 19:24:15','',4283,'http://stationtyresdarwen.co.uk/2017/02/22/4283-revision-v1/',0,'revision','',0),(4328,1,'2017-02-22 19:42:31','2017-02-22 19:42:31','','offer-6','','inherit','open','closed','','offer-6','','','2017-02-22 19:42:31','2017-02-22 19:42:31','',4283,'http://stationtyresdarwen.co.uk/wp-content/uploads/offer-6.png',0,'attachment','image/png',0),(4329,1,'2017-02-22 19:42:33','2017-02-22 19:42:33','','offer-1','','inherit','open','closed','','offer-1','','','2017-02-22 19:42:33','2017-02-22 19:42:33','',4283,'http://stationtyresdarwen.co.uk/wp-content/uploads/offer-1.png',0,'attachment','image/png',0),(4330,1,'2017-02-22 19:42:34','2017-02-22 19:42:34','','offer-2','','inherit','open','closed','','offer-2','','','2017-02-22 19:42:34','2017-02-22 19:42:34','',4283,'http://stationtyresdarwen.co.uk/wp-content/uploads/offer-2.png',0,'attachment','image/png',0),(4331,1,'2017-02-22 19:42:35','2017-02-22 19:42:35','','offer-3','','inherit','open','closed','','offer-3','','','2017-02-22 19:42:35','2017-02-22 19:42:35','',4283,'http://stationtyresdarwen.co.uk/wp-content/uploads/offer-3.png',0,'attachment','image/png',0),(4332,1,'2017-02-22 19:42:36','2017-02-22 19:42:36','','offer-4','','inherit','open','closed','','offer-4','','','2017-02-22 19:42:36','2017-02-22 19:42:36','',4283,'http://stationtyresdarwen.co.uk/wp-content/uploads/offer-4.png',0,'attachment','image/png',0),(4333,1,'2017-02-22 19:42:37','2017-02-22 19:42:37','','offer-5','','inherit','open','closed','','offer-5','','','2017-02-22 19:42:37','2017-02-22 19:42:37','',4283,'http://stationtyresdarwen.co.uk/wp-content/uploads/offer-5.png',0,'attachment','image/png',0),(4336,1,'2017-02-22 20:09:39','2017-02-22 20:09:39','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHO WE ARE\" font_container=\"tag:h2|font_size:45|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793519972{margin-bottom: 45px !important;}\"][vc_column_text]\r\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\r\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\r\n\r\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.\r\n\r\n[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793492820{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\r\nPremium And Budget Range\r\nCatalytic Converters\r\nAll Makes & Models\r\nSame Day Fitting Service\r\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\r\nExhaust systems\r\nWheels\r\nBrake pads and discs\r\nWheel balancing\r\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\r\nTyre Repairs\r\nTyre fitting\r\nExhaust fitting\r\nWinter tyres\r\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\r\nVan tyres\r\n4x4 tyres\r\nTrailer tyres\r\nPremium brand tyres\r\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487792020068{margin-top: 40px !important;}\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1487792709049{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793484681{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793101333{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#090909\" shape=\"square\" align=\"center\" css=\".vc_custom_1487794176522{margin-top: 40px !important;}\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"FOR OFFERS & SERVICE\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2017-02-22 20:09:39','2017-02-22 20:09:39','',4283,'http://stationtyresdarwen.co.uk/2017/02/22/4283-revision-v1/',0,'revision','',0),(4335,1,'2017-02-22 20:01:04','2017-02-22 20:01:04','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHO WE ARE\" font_container=\"tag:h2|font_size:45|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793519972{margin-bottom: 45px !important;}\"][vc_column_text]\r\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\r\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\r\n\r\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.\r\n\r\n[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793492820{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\r\nPremium And Budget Range\r\nCatalytic Converters\r\nAll Makes & Models\r\nSame Day Fitting Service\r\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\r\nExhaust systems\r\nWheels\r\nBrake pads and discs\r\nWheel balancing\r\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\r\nTyre Repairs\r\nTyre fitting\r\nExhaust fitting\r\nWinter tyres\r\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\r\nVan tyres\r\n4x4 tyres\r\nTrailer tyres\r\nPremium brand tyres\r\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487792020068{margin-top: 40px !important;}\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1487792709049{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793484681{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793101333{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487793152528{margin-top: 40px !important;}\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"FOR OFFERS & SERVICE\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2017-02-22 20:01:04','2017-02-22 20:01:04','',4283,'http://stationtyresdarwen.co.uk/2017/02/22/4283-revision-v1/',0,'revision','',0),(4334,1,'2017-02-22 19:54:52','2017-02-22 19:54:52','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"INVENTORY TYPES\" font_container=\"tag:h2|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1470913347701{margin-bottom: 45px !important;}\"][vc_column_text]\r\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\r\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\r\n\r\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.\r\n\r\n[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487791819284{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\r\nPremium And Budget Range\r\nCatalytic Converters\r\nAll Makes & Models\r\nSame Day Fitting Service\r\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\r\nExhaust systems\r\nWheels\r\nBrake pads and discs\r\nWheel balancing\r\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\r\nTyre Repairs\r\nTyre fitting\r\nExhaust fitting\r\nWinter tyres\r\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\r\nVan tyres\r\n4x4 tyres\r\nTrailer tyres\r\nPremium brand tyres\r\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487792020068{margin-top: 40px !important;}\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1487792709049{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487791819284{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793101333{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487793152528{margin-top: 40px !important;}\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1470917841792{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/placeholder.gif?id=4085) !important;}\"][vc_column width=\"1/2\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1471239363431{border-top-width: 9px !important;border-right-width: 9px !important;border-bottom-width: 9px !important;border-left-width: 9px !important;padding-top: 59px !important;padding-bottom: 46px !important;border-left-color: #ffffff !important;border-left-style: solid !important;border-right-color: #ffffff !important;border-right-style: solid !important;border-top-color: #ffffff !important;border-top-style: solid !important;border-bottom-color: #ffffff !important;border-bottom-style: solid !important;}\"][vc_row_inner css=\".vc_custom_1470917862335{padding-right: 60px !important;padding-left: 60px !important;}\"][vc_column_inner][vc_custom_heading text=\"WELCOME TO THE MOTORS WORLD\" font_container=\"tag:h2|font_size:32px|text_align:left|color:%23ffffff|line_height:32px\" use_theme_fonts=\"yes\" css=\".vc_custom_1470918371167{margin-bottom: 21px !important;}\"][vc_column_text css=\".vc_custom_1470918407602{margin-bottom: 29px !important;}\"]Praesent consequat pharetra commodo. Vestibulum nec lectus nibh. Curabitur tellus leo, euismod sit amet gravida at, egestas sed lectus.[/vc_column_text][stm_icon_button link=\"url:http%3A%2F%2Fmotos.loc%2Fabout-us%2F|title:Read%20more||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1471239417907{padding-top: 86px !important;padding-bottom: 53px !important;}\"][vc_column width=\"1/2\" css=\".vc_custom_1470978550446{margin-bottom: 30px !important;}\"][vc_custom_heading text=\"Excellence in Motorsport\r\nServices Since 1987\" font_container=\"tag:h2|font_size:32px|text_align:left|color:%23ffffff|line_height:36px\" use_theme_fonts=\"yes\" css=\".vc_custom_1470979544457{margin-bottom: 32px !important;}\"][stm_color_separator style=\"style_2\" css=\".vc_custom_1471948825099{margin-bottom: 13px !important;}\"][vc_column_text]<span style=\"font-size: 13px;\">No doubt you\'ve heard Los Angeles described as having a distinct \'car culture.\' Part of the joy of living in Southern California is owning a car so you can easily enjoy all</span>[/vc_column_text][vc_column_text]\r\n<ul class=\"list-style-1\" style=\"font-size: 13px;\">\r\n <li>Sed consectetur massa bibendum dui ultricies, bibendum lorem placerat.</li>\r\n <li>Etiam fermentum eu diam eu malesuada. Curabitur porttitor elementum fringilla.</li>\r\n <li>Vestibulum sit amet justo sed arcu dictum varius Imassa nec lectus.</li>\r\n <li>Integer rutrum, et lobortis posuere, commodo aliquam magna arcu id tortor.</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1470979592702{margin-top: 17px !important;}\"][stm_boats_video image=\"4278,4278,4278,4278\" height=\"321\" link=\"https://www.youtube.com/embed/EpydlUJIG6I?autoplay=true\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1470982903047{padding-top: 27px !important;padding-bottom: 12px !important;background-color: #243136 !important;}\"][vc_column][stm_row_icons filter_selected=\"make\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2017-02-22 19:54:52','2017-02-22 19:54:52','',4283,'http://stationtyresdarwen.co.uk/2017/02/22/4283-revision-v1/',0,'revision','',0),(4460,1,'2017-09-11 12:48:39','2017-09-11 11:48:39','[vc_row css=\".vc_custom_1487950973825{margin-bottom: 64px !important;}\"][vc_column][stm_contact_form form=\"717\" title=\"Contact Us\" css=\".vc_custom_1487923529721{padding-top: 30px !important;padding-right: 30px !important;padding-bottom: 30px !important;padding-left: 30px !important;background-color: #000000 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452251533394{margin-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1487923284932{margin-bottom: 25px !important;padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\" offset=\"vc_col-lg-4 vc_col-md-12\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-pin\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Address\" css=\".vc_custom_1487950918754{margin-bottom: 28px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487950918753{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">2-4 Kay St, Darwen, BB3 3BZ</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-phone\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Phone\" css=\".vc_custom_1505130518033{margin-bottom: 27px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1505130518031{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\"><a href=\"tel:01254705305\">01254 705 305</a> / <a href=\"tel:07713948270\">07713948270</a></span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-time\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Hours\" css=\".vc_custom_1505130401930{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1505130401929{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">Open 7 Days</span>\r\n<span style=\"color: #888888; font-size: 14px;\">Mon - Sat: 09:00AM - 05:30PM\r\nSunday: 10:00AM - 02:30PM</span>[/stm_icon_box][/vc_column][vc_column css=\".vc_custom_1448867270861{margin-bottom: 25px !important;}\" offset=\"vc_col-lg-8 vc_col-md-12\"][stm_gmap map_height=\"420px\" map_zoom=\"18\" disable_mouse_whell=\"disable\" lat=\"53.6970894\" lng=\"-2.4629212\" infowindow_text=\"2-4 Kay St, Darwen BB3 3BZ, UK\" image=\"4381\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','712-revision-v1','','','2017-09-11 12:48:39','2017-09-11 11:48:39','',712,'http://stationtyresdarwen.co.uk/712-revision-v1/',0,'revision','',0),(4343,1,'2017-02-24 06:26:19','2017-02-24 06:26:19','[vc_row css=\".vc_custom_1446724724284{margin-top: 33px !important;margin-bottom: 42px !important;}\"][vc_column css=\".vc_custom_1446724718390{margin-bottom: 42px !important;}\"][vc_column_text css=\".vc_custom_1487916920576{margin-bottom: 24px !important;}\"]\n<h2><span style=\"color: #ffa500;\">OUR</span> SERVICES</h2>\n[/vc_column_text][vc_column_text css=\".vc_custom_1487916878863{margin-bottom: 31px !important;padding-left: 2px !important;}\"]<strong>Fast, friendly and great customer service - specialising in new and second-hand tyres!</strong>\n\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).[/vc_column_text][vc_custom_heading text=\"OUR SERVICES INCLUDE\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1446703859040{margin-bottom: 20px !important;}\"][vc_row_inner css=\".vc_custom_1446703897866{margin-bottom: 30px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text]\n<ul class=\"list-style-1\">\n <li>Replacement Exhausts</li>\n <li>Premium And Budget Range</li>\n <li>Catalytic Converters</li>\n <li>All Makes & Models</li>\n <li>Same Day Fitting Service</li>\n <li>Battery suppliers</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\n<ul class=\"list-style-1\">\n <li>Car tyres</li>\n <li>Exhaust systems</li>\n <li>Wheels</li>\n <li>Brake pads and discs</li>\n <li>Wheel balancing</li>\n <li>New Tyres</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\n<ul class=\"list-style-1\">\n <li>Part worn tyres</li>\n <li>Tyre repairs</li>\n <li>Tyre fitting</li>\n <li>Exhaust fitting</li>\n <li>Wheel balancing</li>\n <li>Winter tyres</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\n<ul class=\"list-style-1\">\n <li>Wheel alignment</li>\n <li>Oil change</li>\n <li>Van tyres</li>\n <li>4x4 tyres</li>\n <li>Trailer tyres</li>\n <li>Premium brand tyres</li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1446703904260{padding-left: 2px !important;}\"]<span style=\"color: #888888; font-size: 13px;\">Save yourself some time by scheduling service right here. After you submit the form, we\'ll be in touch to confirm your service appointment. It doesn\'t get much easier than that.</span>[/vc_column_text][/vc_column][/vc_row][vc_row stm_fullwidth=\"yes\" blackout_opacity=\"80\" css=\".vc_custom_1487916957124{margin-bottom: 75px !important;padding-top: 39px !important;padding-bottom: 68px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-oil-add\" title=\"OIL CHANGES\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"20\" css=\".vc_custom_1449203747555{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203747553{margin-top: 1px !important;margin-right: 21px !important;padding-top: 18px !important;padding-right: 4px !important;padding-bottom: 15px !important;padding-left: 6px !important;}\" icon_bg_color=\"#f2b930\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-brake\" title=\"BRAKE SERVICE\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"36\" css=\".vc_custom_1449203394183{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203394182{margin-top: 1px !important;margin-right: 21px !important;padding-top: 10px !important;padding-right: 10px !important;padding-bottom: 10px !important;padding-left: 11px !important;}\" icon_bg_color=\"#ef2929\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][/vc_column][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-air_conditioning\" title=\"AIR CONDITIONING\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"36\" css=\".vc_custom_1449203379782{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203379781{margin-top: 1px !important;margin-right: 21px !important;padding-top: 10px !important;padding-right: 12px !important;padding-bottom: 10px !important;padding-left: 12px !important;}\" icon_bg_color=\"#6c98e1\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-transmission\" title=\"TRANSMISSION\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"36\" css=\".vc_custom_1449203401435{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203401434{margin-top: 1px !important;margin-right: 21px !important;padding-top: 10px !important;padding-right: 9px !important;padding-bottom: 10px !important;padding-left: 11px !important;}\" icon_bg_color=\"#44a8b4\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][/vc_column][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-auto_electric\" title=\"AUTO ELECTRIC\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"37\" css=\".vc_custom_1449203386483{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203386482{margin-top: 1px !important;margin-right: 21px !important;padding-top: 7px !important;padding-right: 12px !important;padding-bottom: 13px !important;padding-left: 12px !important;}\" icon_bg_color=\"#d93ad0\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-Tire_Wheel\" title=\"TIRE & WHEEL SERVICE\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"34\" css=\".vc_custom_1449203411563{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203411562{margin-top: 1px !important;margin-right: 21px !important;padding-top: 11px !important;padding-right: 6px !important;padding-bottom: 11px !important;padding-left: 7px !important;}\" icon_bg_color=\"#17c655\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][/vc_column][/vc_row][vc_row css=\".vc_custom_1446724488622{margin-bottom: 28px !important;}\"][vc_column width=\"2/3\" css=\".vc_custom_1446723952022{margin-bottom: 45px !important;}\"][vc_custom_heading text=\"SCHEDULE SERVICE\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\"][vc_separator css=\".vc_custom_1446719521258{margin-top: 24px !important;margin-bottom: 24px !important;}\"][contact-form-7 id=\"587\" title=\"Schedule service\"][/vc_column][vc_column width=\"1/3\"][stm_working_days title=\"HOURS OF OPERATION\" monday=\"9:00 am - 5:30 pm\" tuesday=\"9:00 am - 5:30 pm\" wednesday=\"9:00 am - 5:30 pm\" thursday=\"9:00 am - 5:30 pm\" friday=\"9:00 am - 5:30 pm\" saturday=\"9:00 am - 5:30 pm\" css=\".vc_custom_1487917378013{margin-top: 6px !important;}\" sunday=\"Appointment only \"][/vc_column][/vc_row][vc_row css=\".vc_custom_1446724426854{margin-bottom: 0px !important;}\"][vc_column][stm_call_to_action_2 call_to_action_icon=\"stm-icon-question\" call_to_action_icon_right=\"stm-icon-phone2\" call_to_action_color=\"#ffa500\" call_to_action_text_color=\"#000000\" call_to_action_label=\"Have a Questions? Call Today!\" call_to_action_label_right=\"888-694-5544\"][/vc_column][/vc_row]','Service','','inherit','closed','closed','','546-autosave-v1','','','2017-02-24 06:26:19','2017-02-24 06:26:19','',546,'http://stationtyresdarwen.co.uk/2017/02/24/546-autosave-v1/',0,'revision','',0),(4389,1,'2017-02-24 15:24:29','2017-02-24 15:24:29','[vc_row css=\".vc_custom_1446724724284{margin-top: 33px !important;margin-bottom: 42px !important;}\"][vc_column css=\".vc_custom_1446724718390{margin-bottom: 42px !important;}\"][vc_column_text css=\".vc_custom_1487916920576{margin-bottom: 24px !important;}\"]\r\n<h2><span style=\"color: #ffa500;\">OUR</span> SERVICES</h2>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1487916878863{margin-bottom: 31px !important;padding-left: 2px !important;}\"]<strong>Fast, friendly and great customer service - specialising in new and second-hand tyres!</strong>\r\n\r\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).[/vc_column_text][vc_custom_heading text=\"OUR SERVICES INCLUDE\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1446703859040{margin-bottom: 20px !important;}\"][vc_row_inner css=\".vc_custom_1446703897866{margin-bottom: 30px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Replacement Exhausts</li>\r\n <li>Premium And Budget Range</li>\r\n <li>Catalytic Converters</li>\r\n <li>All Makes & Models</li>\r\n <li>Same Day Fitting Service</li>\r\n <li>Battery suppliers</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Car tyres</li>\r\n <li>Exhaust systems</li>\r\n <li>Wheels</li>\r\n <li>Brake pads and discs</li>\r\n <li>Wheel balancing</li>\r\n <li>New Tyres</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Part worn tyres</li>\r\n <li>Tyre repairs</li>\r\n <li>Tyre fitting</li>\r\n <li>Exhaust fitting</li>\r\n <li>Wheel balancing</li>\r\n <li>Winter tyres</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Wheel alignment</li>\r\n <li>Oil change</li>\r\n <li>Van tyres</li>\r\n <li>4x4 tyres</li>\r\n <li>Trailer tyres</li>\r\n <li>Premium brand tyres</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1446703904260{padding-left: 2px !important;}\"]<span style=\"color: #888888; font-size: 13px;\">Save yourself some time by scheduling service right here. After you submit the form, we\'ll be in touch to confirm your service appointment. It doesn\'t get much easier than that.</span>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1446724488622{margin-bottom: 28px !important;}\"][vc_column width=\"2/3\" css=\".vc_custom_1446723952022{margin-bottom: 45px !important;}\"][vc_custom_heading text=\"SCHEDULE SERVICE\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\"][vc_separator css=\".vc_custom_1446719521258{margin-top: 24px !important;margin-bottom: 24px !important;}\"][contact-form-7 id=\"587\" title=\"Schedule service\"][/vc_column][vc_column width=\"1/3\"][stm_working_days title=\"HOURS OF OPERATION\" monday=\"9:00 am - 5:30 pm\" tuesday=\"9:00 am - 5:30 pm\" wednesday=\"9:00 am - 5:30 pm\" thursday=\"9:00 am - 5:30 pm\" friday=\"9:00 am - 5:30 pm\" saturday=\"9:00 am - 5:30 pm\" css=\".vc_custom_1487917378013{margin-top: 6px !important;}\" sunday=\"Appointment only \"][/vc_column][/vc_row][vc_row css=\".vc_custom_1446724426854{margin-bottom: 0px !important;}\"][vc_column][stm_call_to_action_2 call_to_action_icon=\"stm-icon-question\" call_to_action_icon_right=\"stm-icon-phone2\" call_to_action_color=\"#ffa500\" call_to_action_text_color=\"#000000\" call_to_action_label=\"Have a Questions? Call Today!\" call_to_action_label_right=\"01254 917248\"][/vc_column][/vc_row]','Service','','inherit','closed','closed','','546-revision-v1','','','2017-02-24 15:24:29','2017-02-24 15:24:29','',546,'http://stationtyresdarwen.co.uk/2017/02/24/546-revision-v1/',0,'revision','',0),(4344,1,'2017-02-24 06:26:24','2017-02-24 06:26:24','[vc_row css=\".vc_custom_1446724724284{margin-top: 33px !important;margin-bottom: 42px !important;}\"][vc_column css=\".vc_custom_1446724718390{margin-bottom: 42px !important;}\"][vc_column_text css=\".vc_custom_1487916920576{margin-bottom: 24px !important;}\"]\r\n<h2><span style=\"color: #ffa500;\">OUR</span> SERVICES</h2>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1487916878863{margin-bottom: 31px !important;padding-left: 2px !important;}\"]<strong>Fast, friendly and great customer service - specialising in new and second-hand tyres!</strong>\r\n\r\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).[/vc_column_text][vc_custom_heading text=\"OUR SERVICES INCLUDE\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1446703859040{margin-bottom: 20px !important;}\"][vc_row_inner css=\".vc_custom_1446703897866{margin-bottom: 30px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Replacement Exhausts</li>\r\n <li>Premium And Budget Range</li>\r\n <li>Catalytic Converters</li>\r\n <li>All Makes & Models</li>\r\n <li>Same Day Fitting Service</li>\r\n <li>Battery suppliers</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Car tyres</li>\r\n <li>Exhaust systems</li>\r\n <li>Wheels</li>\r\n <li>Brake pads and discs</li>\r\n <li>Wheel balancing</li>\r\n <li>New Tyres</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Part worn tyres</li>\r\n <li>Tyre repairs</li>\r\n <li>Tyre fitting</li>\r\n <li>Exhaust fitting</li>\r\n <li>Wheel balancing</li>\r\n <li>Winter tyres</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Wheel alignment</li>\r\n <li>Oil change</li>\r\n <li>Van tyres</li>\r\n <li>4x4 tyres</li>\r\n <li>Trailer tyres</li>\r\n <li>Premium brand tyres</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1446703904260{padding-left: 2px !important;}\"]<span style=\"color: #888888; font-size: 13px;\">Save yourself some time by scheduling service right here. After you submit the form, we\'ll be in touch to confirm your service appointment. It doesn\'t get much easier than that.</span>[/vc_column_text][/vc_column][/vc_row][vc_row stm_fullwidth=\"yes\" blackout_opacity=\"80\" css=\".vc_custom_1487916957124{margin-bottom: 75px !important;padding-top: 39px !important;padding-bottom: 68px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-oil-add\" title=\"OIL CHANGES\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"20\" css=\".vc_custom_1449203747555{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203747553{margin-top: 1px !important;margin-right: 21px !important;padding-top: 18px !important;padding-right: 4px !important;padding-bottom: 15px !important;padding-left: 6px !important;}\" icon_bg_color=\"#f2b930\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-brake\" title=\"BRAKE SERVICE\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"36\" css=\".vc_custom_1449203394183{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203394182{margin-top: 1px !important;margin-right: 21px !important;padding-top: 10px !important;padding-right: 10px !important;padding-bottom: 10px !important;padding-left: 11px !important;}\" icon_bg_color=\"#ef2929\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][/vc_column][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-air_conditioning\" title=\"AIR CONDITIONING\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"36\" css=\".vc_custom_1449203379782{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203379781{margin-top: 1px !important;margin-right: 21px !important;padding-top: 10px !important;padding-right: 12px !important;padding-bottom: 10px !important;padding-left: 12px !important;}\" icon_bg_color=\"#6c98e1\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-transmission\" title=\"TRANSMISSION\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"36\" css=\".vc_custom_1449203401435{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203401434{margin-top: 1px !important;margin-right: 21px !important;padding-top: 10px !important;padding-right: 9px !important;padding-bottom: 10px !important;padding-left: 11px !important;}\" icon_bg_color=\"#44a8b4\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][/vc_column][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-auto_electric\" title=\"AUTO ELECTRIC\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"37\" css=\".vc_custom_1449203386483{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203386482{margin-top: 1px !important;margin-right: 21px !important;padding-top: 7px !important;padding-right: 12px !important;padding-bottom: 13px !important;padding-left: 12px !important;}\" icon_bg_color=\"#d93ad0\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-Tire_Wheel\" title=\"TIRE & WHEEL SERVICE\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"34\" css=\".vc_custom_1449203411563{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203411562{margin-top: 1px !important;margin-right: 21px !important;padding-top: 11px !important;padding-right: 6px !important;padding-bottom: 11px !important;padding-left: 7px !important;}\" icon_bg_color=\"#17c655\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][/vc_column][/vc_row][vc_row css=\".vc_custom_1446724488622{margin-bottom: 28px !important;}\"][vc_column width=\"2/3\" css=\".vc_custom_1446723952022{margin-bottom: 45px !important;}\"][vc_custom_heading text=\"SCHEDULE SERVICE\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\"][vc_separator css=\".vc_custom_1446719521258{margin-top: 24px !important;margin-bottom: 24px !important;}\"][contact-form-7 id=\"587\" title=\"Schedule service\"][/vc_column][vc_column width=\"1/3\"][stm_working_days title=\"HOURS OF OPERATION\" monday=\"9:00 am - 5:30 pm\" tuesday=\"9:00 am - 5:30 pm\" wednesday=\"9:00 am - 5:30 pm\" thursday=\"9:00 am - 5:30 pm\" friday=\"9:00 am - 5:30 pm\" saturday=\"9:00 am - 5:30 pm\" css=\".vc_custom_1487917378013{margin-top: 6px !important;}\" sunday=\"Appointment only \"][/vc_column][/vc_row][vc_row css=\".vc_custom_1446724426854{margin-bottom: 0px !important;}\"][vc_column][stm_call_to_action_2 call_to_action_icon=\"stm-icon-question\" call_to_action_icon_right=\"stm-icon-phone2\" call_to_action_color=\"#ffa500\" call_to_action_text_color=\"#000000\" call_to_action_label=\"Have a Questions? Call Today!\" call_to_action_label_right=\"888-694-5544\"][/vc_column][/vc_row]','Service','','inherit','closed','closed','','546-revision-v1','','','2017-02-24 06:26:24','2017-02-24 06:26:24','',546,'http://stationtyresdarwen.co.uk/2017/02/24/546-revision-v1/',0,'revision','',0),(4345,1,'2017-02-24 06:50:05','2017-02-24 06:50:05','','slide_1920x770','','inherit','open','closed','','slide_1920x770','','','2017-02-24 06:50:05','2017-02-24 06:50:05','',0,'http://stationtyresdarwen.co.uk/wp-content/uploads/slide_1920x770.jpg',0,'attachment','image/jpeg',0),(4350,1,'2017-02-24 06:56:27','2017-02-24 06:56:27','[vc_row css=\".vc_custom_1446724724284{margin-top: 33px !important;margin-bottom: 42px !important;}\"][vc_column css=\".vc_custom_1446724718390{margin-bottom: 42px !important;}\"][vc_column_text css=\".vc_custom_1487916920576{margin-bottom: 24px !important;}\"]\r\n<h2><span style=\"color: #ffa500;\">OUR</span> SERVICES</h2>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1487916878863{margin-bottom: 31px !important;padding-left: 2px !important;}\"]<strong>Fast, friendly and great customer service - specialising in new and second-hand tyres!</strong>\r\n\r\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).[/vc_column_text][vc_custom_heading text=\"OUR SERVICES INCLUDE\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1446703859040{margin-bottom: 20px !important;}\"][vc_row_inner css=\".vc_custom_1446703897866{margin-bottom: 30px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Replacement Exhausts</li>\r\n <li>Premium And Budget Range</li>\r\n <li>Catalytic Converters</li>\r\n <li>All Makes & Models</li>\r\n <li>Same Day Fitting Service</li>\r\n <li>Battery suppliers</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Car tyres</li>\r\n <li>Exhaust systems</li>\r\n <li>Wheels</li>\r\n <li>Brake pads and discs</li>\r\n <li>Wheel balancing</li>\r\n <li>New Tyres</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Part worn tyres</li>\r\n <li>Tyre repairs</li>\r\n <li>Tyre fitting</li>\r\n <li>Exhaust fitting</li>\r\n <li>Wheel balancing</li>\r\n <li>Winter tyres</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Wheel alignment</li>\r\n <li>Oil change</li>\r\n <li>Van tyres</li>\r\n <li>4x4 tyres</li>\r\n <li>Trailer tyres</li>\r\n <li>Premium brand tyres</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1446703904260{padding-left: 2px !important;}\"]<span style=\"color: #888888; font-size: 13px;\">Save yourself some time by scheduling service right here. After you submit the form, we\'ll be in touch to confirm your service appointment. It doesn\'t get much easier than that.</span>[/vc_column_text][/vc_column][/vc_row][vc_row stm_fullwidth=\"yes\" blackout_opacity=\"80\" css=\".vc_custom_1487916957124{margin-bottom: 75px !important;padding-top: 39px !important;padding-bottom: 68px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-oil-add\" title=\"OIL CHANGES\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"20\" css=\".vc_custom_1449203747555{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203747553{margin-top: 1px !important;margin-right: 21px !important;padding-top: 18px !important;padding-right: 4px !important;padding-bottom: 15px !important;padding-left: 6px !important;}\" icon_bg_color=\"#f2b930\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-brake\" title=\"BRAKE SERVICE\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"36\" css=\".vc_custom_1449203394183{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203394182{margin-top: 1px !important;margin-right: 21px !important;padding-top: 10px !important;padding-right: 10px !important;padding-bottom: 10px !important;padding-left: 11px !important;}\" icon_bg_color=\"#ef2929\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][/vc_column][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-air_conditioning\" title=\"AIR CONDITIONING\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"36\" css=\".vc_custom_1449203379782{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203379781{margin-top: 1px !important;margin-right: 21px !important;padding-top: 10px !important;padding-right: 12px !important;padding-bottom: 10px !important;padding-left: 12px !important;}\" icon_bg_color=\"#6c98e1\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-transmission\" title=\"TRANSMISSION\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"36\" css=\".vc_custom_1449203401435{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203401434{margin-top: 1px !important;margin-right: 21px !important;padding-top: 10px !important;padding-right: 9px !important;padding-bottom: 10px !important;padding-left: 11px !important;}\" icon_bg_color=\"#44a8b4\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][/vc_column][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-auto_electric\" title=\"AUTO ELECTRIC\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"37\" css=\".vc_custom_1449203386483{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203386482{margin-top: 1px !important;margin-right: 21px !important;padding-top: 7px !important;padding-right: 12px !important;padding-bottom: 13px !important;padding-left: 12px !important;}\" icon_bg_color=\"#d93ad0\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-Tire_Wheel\" title=\"TIRE & WHEEL SERVICE\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"34\" css=\".vc_custom_1449203411563{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203411562{margin-top: 1px !important;margin-right: 21px !important;padding-top: 11px !important;padding-right: 6px !important;padding-bottom: 11px !important;padding-left: 7px !important;}\" icon_bg_color=\"#17c655\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][/vc_column][/vc_row][vc_row css=\".vc_custom_1446724488622{margin-bottom: 28px !important;}\"][vc_column width=\"2/3\" css=\".vc_custom_1446723952022{margin-bottom: 45px !important;}\"][vc_custom_heading text=\"SCHEDULE SERVICE\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\"][vc_separator css=\".vc_custom_1446719521258{margin-top: 24px !important;margin-bottom: 24px !important;}\"][contact-form-7 id=\"587\" title=\"Schedule service\"][/vc_column][vc_column width=\"1/3\"][stm_working_days title=\"HOURS OF OPERATION\" monday=\"9:00 am - 5:30 pm\" tuesday=\"9:00 am - 5:30 pm\" wednesday=\"9:00 am - 5:30 pm\" thursday=\"9:00 am - 5:30 pm\" friday=\"9:00 am - 5:30 pm\" saturday=\"9:00 am - 5:30 pm\" css=\".vc_custom_1487917378013{margin-top: 6px !important;}\" sunday=\"Appointment only \"][/vc_column][/vc_row][vc_row css=\".vc_custom_1446724426854{margin-bottom: 0px !important;}\"][vc_column][stm_call_to_action_2 call_to_action_icon=\"stm-icon-question\" call_to_action_icon_right=\"stm-icon-phone2\" call_to_action_color=\"#ffa500\" call_to_action_text_color=\"#000000\" call_to_action_label=\"Have a Questions? Call Today!\" call_to_action_label_right=\"01254 917248\"][/vc_column][/vc_row]','Service','','inherit','closed','closed','','546-revision-v1','','','2017-02-24 06:56:27','2017-02-24 06:56:27','',546,'http://stationtyresdarwen.co.uk/2017/02/24/546-revision-v1/',0,'revision','',0),(4347,1,'2017-02-24 06:50:33','2017-02-24 06:50:33','[vc_row css=\".vc_custom_1446724724284{margin-top: 33px !important;margin-bottom: 42px !important;}\"][vc_column css=\".vc_custom_1446724718390{margin-bottom: 42px !important;}\"][vc_column_text css=\".vc_custom_1487916920576{margin-bottom: 24px !important;}\"]\r\n<h2><span style=\"color: #ffa500;\">OUR</span> SERVICES</h2>\r\n[/vc_column_text][vc_column_text css=\".vc_custom_1487916878863{margin-bottom: 31px !important;padding-left: 2px !important;}\"]<strong>Fast, friendly and great customer service - specialising in new and second-hand tyres!</strong>\r\n\r\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).[/vc_column_text][vc_custom_heading text=\"OUR SERVICES INCLUDE\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1446703859040{margin-bottom: 20px !important;}\"][vc_row_inner css=\".vc_custom_1446703897866{margin-bottom: 30px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Replacement Exhausts</li>\r\n <li>Premium And Budget Range</li>\r\n <li>Catalytic Converters</li>\r\n <li>All Makes & Models</li>\r\n <li>Same Day Fitting Service</li>\r\n <li>Battery suppliers</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Car tyres</li>\r\n <li>Exhaust systems</li>\r\n <li>Wheels</li>\r\n <li>Brake pads and discs</li>\r\n <li>Wheel balancing</li>\r\n <li>New Tyres</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Part worn tyres</li>\r\n <li>Tyre repairs</li>\r\n <li>Tyre fitting</li>\r\n <li>Exhaust fitting</li>\r\n <li>Wheel balancing</li>\r\n <li>Winter tyres</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Wheel alignment</li>\r\n <li>Oil change</li>\r\n <li>Van tyres</li>\r\n <li>4x4 tyres</li>\r\n <li>Trailer tyres</li>\r\n <li>Premium brand tyres</li>\r\n</ul>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1446703904260{padding-left: 2px !important;}\"]<span style=\"color: #888888; font-size: 13px;\">Save yourself some time by scheduling service right here. After you submit the form, we\'ll be in touch to confirm your service appointment. It doesn\'t get much easier than that.</span>[/vc_column_text][/vc_column][/vc_row][vc_row stm_fullwidth=\"yes\" blackout_opacity=\"80\" css=\".vc_custom_1487916957124{margin-bottom: 75px !important;padding-top: 39px !important;padding-bottom: 68px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-oil-add\" title=\"OIL CHANGES\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"20\" css=\".vc_custom_1449203747555{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203747553{margin-top: 1px !important;margin-right: 21px !important;padding-top: 18px !important;padding-right: 4px !important;padding-bottom: 15px !important;padding-left: 6px !important;}\" icon_bg_color=\"#f2b930\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-brake\" title=\"BRAKE SERVICE\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"36\" css=\".vc_custom_1449203394183{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203394182{margin-top: 1px !important;margin-right: 21px !important;padding-top: 10px !important;padding-right: 10px !important;padding-bottom: 10px !important;padding-left: 11px !important;}\" icon_bg_color=\"#ef2929\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][/vc_column][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-air_conditioning\" title=\"AIR CONDITIONING\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"36\" css=\".vc_custom_1449203379782{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203379781{margin-top: 1px !important;margin-right: 21px !important;padding-top: 10px !important;padding-right: 12px !important;padding-bottom: 10px !important;padding-left: 12px !important;}\" icon_bg_color=\"#6c98e1\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-transmission\" title=\"TRANSMISSION\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"36\" css=\".vc_custom_1449203401435{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203401434{margin-top: 1px !important;margin-right: 21px !important;padding-top: 10px !important;padding-right: 9px !important;padding-bottom: 10px !important;padding-left: 11px !important;}\" icon_bg_color=\"#44a8b4\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][/vc_column][vc_column width=\"1/3\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-auto_electric\" title=\"AUTO ELECTRIC\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"37\" css=\".vc_custom_1449203386483{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203386482{margin-top: 1px !important;margin-right: 21px !important;padding-top: 7px !important;padding-right: 12px !important;padding-bottom: 13px !important;padding-left: 12px !important;}\" icon_bg_color=\"#d93ad0\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-Tire_Wheel\" title=\"TIRE & WHEEL SERVICE\" box_text_color=\"#ffffff\" box_bg_color=\"rgba(255,255,255,0.01)\" icon_size=\"34\" css=\".vc_custom_1449203411563{padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" css_icon=\".vc_custom_1449203411562{margin-top: 1px !important;margin-right: 21px !important;padding-top: 11px !important;padding-right: 6px !important;padding-bottom: 11px !important;padding-left: 7px !important;}\" icon_bg_color=\"#17c655\" box_text_color_hover=\"#ffffff\" icon_color=\"#ffffff\"]<span style=\"color: #aaaaaa;\">Lorem ipsum dolor sit amet, adipiscing elit. Interdum et malesuada fames ac ante ipsum primis in faucibus. </span>[/stm_icon_box][/vc_column][/vc_row][vc_row css=\".vc_custom_1446724488622{margin-bottom: 28px !important;}\"][vc_column width=\"2/3\" css=\".vc_custom_1446723952022{margin-bottom: 45px !important;}\"][vc_custom_heading text=\"SCHEDULE SERVICE\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\"][vc_separator css=\".vc_custom_1446719521258{margin-top: 24px !important;margin-bottom: 24px !important;}\"][contact-form-7 id=\"587\" title=\"Schedule service\"][/vc_column][vc_column width=\"1/3\"][stm_working_days title=\"HOURS OF OPERATION\" monday=\"9:00 am - 5:30 pm\" tuesday=\"9:00 am - 5:30 pm\" wednesday=\"9:00 am - 5:30 pm\" thursday=\"9:00 am - 5:30 pm\" friday=\"9:00 am - 5:30 pm\" saturday=\"9:00 am - 5:30 pm\" css=\".vc_custom_1487917378013{margin-top: 6px !important;}\" sunday=\"Appointment only \"][/vc_column][/vc_row][vc_row css=\".vc_custom_1446724426854{margin-bottom: 0px !important;}\"][vc_column][stm_call_to_action_2 call_to_action_icon=\"stm-icon-question\" call_to_action_icon_right=\"stm-icon-phone2\" call_to_action_color=\"#ffa500\" call_to_action_text_color=\"#000000\" call_to_action_label=\"Have a Questions? Call Today!\" call_to_action_label_right=\" 01254 705305\"][/vc_column][/vc_row]','Service','','inherit','closed','closed','','546-revision-v1','','','2017-02-24 06:50:33','2017-02-24 06:50:33','',546,'http://stationtyresdarwen.co.uk/2017/02/24/546-revision-v1/',0,'revision','',0),(4348,1,'2017-02-24 07:08:11','2017-02-24 07:08:11','[vc_row css=\".vc_custom_1472016399122{margin-top: 30px !important;margin-bottom: 51px !important;}\"][vc_column width=\"1/2\" el_class=\"stm-col-pad-left\"][vc_column_text]\n<h3 style=\"margin-bottom: 18px;\">WELCOME TO THE <span style=\"color: #ffa500;\">STATION TYRES</span></h3>\n<h5 style=\"margin-bottom: 22px;\">Fast, friendly and great customer service - specialising in new and second-hand tyres!</h5>\n<p style=\"margin-bottom: 26px;\">Station tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).</p>\n<p style=\"margin-bottom: 26px;\">Established since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.</p>\n<p style=\"margin-bottom: 26px;\">If your car needs tracking, our Supertracker machine can effectively align your wheels - tracking prices starting from £20 up to £40!!</p>\n<p style=\"margin-bottom: 26px;\">While you wait for your vehicle to be ready, there is a warm and comfortable customer waiting area for you to sit and enjoy - with both toilets and refreshments if needed!</p>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"stm-col-pad-right\"][vc_single_image image=\"4322\" img_size=\"full\" stm_fancybox=\"yes\" css=\".vc_custom_1487919165409{margin-bottom: 35px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1445594570930{margin-bottom: 83px !important;}\"][vc_column width=\"1/2\" el_class=\"stm-col-pad-right\"][vc_column_text css=\".vc_custom_1445496956815{margin-bottom: 23px !important;}\"]\n<h3>CORE VALUES</h3>\n[/vc_column_text][vc_separator css=\".vc_custom_1445496980428{margin-bottom: 19px !important;}\"][vc_column_text css=\".vc_custom_1448951164713{margin-bottom: 24px !important;}\"]<span style=\"color: #888888; font-size: 13px;\">We go through extensive factory training so that we may provide you with the knowledge you need to make an educated decision in choosing the vehicle that is right for your lifestyle.</span>[/vc_column_text][vc_column_text]\n<ul class=\"list-style-1\">\n <li>Stress-free finance department.</li>\n <li>Robust selection of popular vehicles.</li>\n <li>350 offers on site, trusted by a community.</li>\n <li>Maintain your car to stay safe on the road</li>\n <li>We know how to handle a wide range of car services.</li>\n</ul>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"stm-col-pad-left\"][vc_custom_heading text=\"CUSTOMER TESTIMONIALS\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1445583787565{margin-bottom: 24px !important;}\"][stm_testimonials][stm_testimonial image=\"7\" author=\"JamesW28\" author_car=\"Requested for Tyres\"]\n<h4>Honest Service and Cheap Tyres</h4>\nWent to this tyre place for the first time expecting to need 4 tyres but the technician informed me I only needed one and the price was cheaper than others places I had been![/stm_testimonial][stm_testimonial image=\"7\" author=\"JamesW28\" author_car=\"Requested for Tyres\"]\n<h4>Honest Service and Cheap Tyres</h4>\nWent to this tyre place for the first time expecting to need 4 tyres but the technician informed me I only needed one and the price was cheaper than others places I had been![/stm_testimonial][/stm_testimonials][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"15\" grid_id=\"vc_gid:1487920056540-84438648-8918-3\" include=\"4356,4355,4354,4353\"][/vc_column][/vc_row]','About us','','inherit','closed','closed','','370-autosave-v1','','','2017-02-24 07:08:11','2017-02-24 07:08:11','',370,'http://stationtyresdarwen.co.uk/2017/02/24/370-autosave-v1/',0,'revision','',0),(4353,1,'2017-02-24 07:03:33','2017-02-24 07:03:33','Tyres in Darwen','1e5044b5-e87f-496d-ba47-81eaa64be09b_image_jpeg','Tyres in Darwen','inherit','open','closed','','1e5044b5-e87f-496d-ba47-81eaa64be09b_image_jpeg','','','2017-03-03 10:31:59','2017-03-03 10:31:59','',370,'http://stationtyresdarwen.co.uk/wp-content/uploads/1e5044b5-e87f-496d-ba47-81eaa64be09b_image_jpeg.jpg',0,'attachment','image/jpeg',0),(4352,1,'2017-02-24 06:59:56','2017-02-24 06:59:56','[vc_row css=\".vc_custom_1472016399122{margin-top: 30px !important;margin-bottom: 51px !important;}\"][vc_column width=\"1/2\" el_class=\"stm-col-pad-left\"][vc_column_text]\r\n<h3 style=\"margin-bottom: 18px;\">WELCOME TO THE <span style=\"color: #ffa500;\">STATION TYRES</span></h3>\r\n<h5 style=\"margin-bottom: 22px;\">Fast, friendly and great customer service - specialising in new and second-hand tyres!</h5>\r\n<p style=\"margin-bottom: 26px;\">Station tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).</p>\r\n<p style=\"margin-bottom: 26px;\">Established since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.</p>\r\n<p style=\"margin-bottom: 26px;\">If your car needs tracking, our Supertracker machine can effectively align your wheels - tracking prices starting from £20 up to £40!!</p>\r\n<p style=\"margin-bottom: 26px;\">While you wait for your vehicle to be ready, there is a warm and comfortable customer waiting area for you to sit and enjoy - with both toilets and refreshments if needed!</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"stm-col-pad-right\"][vc_single_image image=\"4322\" img_size=\"full\" stm_fancybox=\"yes\" css=\".vc_custom_1487919165409{margin-bottom: 35px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1445594570930{margin-bottom: 83px !important;}\"][vc_column width=\"1/2\" el_class=\"stm-col-pad-right\"][vc_column_text css=\".vc_custom_1445496956815{margin-bottom: 23px !important;}\"]\r\n<h3>CORE VALUES</h3>\r\n[/vc_column_text][vc_separator css=\".vc_custom_1445496980428{margin-bottom: 19px !important;}\"][vc_column_text css=\".vc_custom_1448951164713{margin-bottom: 24px !important;}\"]<span style=\"color: #888888; font-size: 13px;\">We go through extensive factory training so that we may provide you with the knowledge you need to make an educated decision in choosing the vehicle that is right for your lifestyle.</span>[/vc_column_text][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Stress-free finance department.</li>\r\n <li>Robust selection of popular vehicles.</li>\r\n <li>350 offers on site, trusted by a community.</li>\r\n <li>Maintain your car to stay safe on the road</li>\r\n <li>We know how to handle a wide range of car services.</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"stm-col-pad-left\"][vc_custom_heading text=\"CUSTOMER TESTIMONIALS\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1445583787565{margin-bottom: 24px !important;}\"][stm_testimonials][stm_testimonial image=\"7\" author=\"JamesW28\" author_car=\"Requested for Tyres\"]\r\n<h4>Honest Service and Cheap Tyres</h4>\r\nWent to this tyre place for the first time expecting to need 4 tyres but the technician informed me I only needed one and the price was cheaper than others places I had been![/stm_testimonial][stm_testimonial image=\"7\" author=\"JamesW28\" author_car=\"Requested for Tyres\"]\r\n<h4>Honest Service and Cheap Tyres</h4>\r\nWent to this tyre place for the first time expecting to need 4 tyres but the technician informed me I only needed one and the price was cheaper than others places I had been![/stm_testimonial][/stm_testimonials][/vc_column][/vc_row]','About us','','inherit','closed','closed','','370-revision-v1','','','2017-02-24 06:59:56','2017-02-24 06:59:56','',370,'http://stationtyresdarwen.co.uk/2017/02/24/370-revision-v1/',0,'revision','',0),(4354,1,'2017-02-24 07:03:35','2017-02-24 07:03:35','','933128d1-3812-4ddc-9973-421a4cdfd0c9_image_jpeg','','inherit','open','closed','','933128d1-3812-4ddc-9973-421a4cdfd0c9_image_jpeg','','','2017-02-24 07:03:35','2017-02-24 07:03:35','',370,'http://stationtyresdarwen.co.uk/wp-content/uploads/933128d1-3812-4ddc-9973-421a4cdfd0c9_image_jpeg.jpg',0,'attachment','image/jpeg',0),(4355,1,'2017-02-24 07:03:36','2017-02-24 07:03:36','Car Service in Darwen','1c575350-1e9d-420e-84ed-205c2fe66a77_image_jpeg','Car Service in Darwen','inherit','open','closed','','1c575350-1e9d-420e-84ed-205c2fe66a77_image_jpeg','','','2017-03-03 10:31:46','2017-03-03 10:31:46','',370,'http://stationtyresdarwen.co.uk/wp-content/uploads/1c575350-1e9d-420e-84ed-205c2fe66a77_image_jpeg.jpg',0,'attachment','image/jpeg',0),(4356,1,'2017-02-24 07:03:38','2017-02-24 07:03:38','Station Tyres Darwen sign','95b1e83d-ba6f-4425-bc08-e672ada19715_image_jpeg','Station Tyres Darwen sign','inherit','open','closed','','95b1e83d-ba6f-4425-bc08-e672ada19715_image_jpeg','','','2017-03-03 10:31:41','2017-03-03 10:31:41','',370,'http://stationtyresdarwen.co.uk/wp-content/uploads/95b1e83d-ba6f-4425-bc08-e672ada19715_image_jpeg.jpg',0,'attachment','image/jpeg',0),(4357,1,'2017-02-24 07:09:40','2017-02-24 07:09:40','[vc_row css=\".vc_custom_1472016399122{margin-top: 30px !important;margin-bottom: 51px !important;}\"][vc_column width=\"1/2\" el_class=\"stm-col-pad-left\"][vc_column_text]\r\n<h3 style=\"margin-bottom: 18px;\">WELCOME TO THE <span style=\"color: #ffa500;\">STATION TYRES</span></h3>\r\n<h5 style=\"margin-bottom: 22px;\">Fast, friendly and great customer service - specialising in new and second-hand tyres!</h5>\r\n<p style=\"margin-bottom: 26px;\">Station tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).</p>\r\n<p style=\"margin-bottom: 26px;\">Established since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.</p>\r\n<p style=\"margin-bottom: 26px;\">If your car needs tracking, our Supertracker machine can effectively align your wheels - tracking prices starting from £20 up to £40!!</p>\r\n<p style=\"margin-bottom: 26px;\">While you wait for your vehicle to be ready, there is a warm and comfortable customer waiting area for you to sit and enjoy - with both toilets and refreshments if needed!</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"stm-col-pad-right\"][vc_single_image image=\"4322\" img_size=\"full\" stm_fancybox=\"yes\" css=\".vc_custom_1487919165409{margin-bottom: 35px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1445594570930{margin-bottom: 83px !important;}\"][vc_column width=\"1/2\" el_class=\"stm-col-pad-right\"][vc_column_text css=\".vc_custom_1445496956815{margin-bottom: 23px !important;}\"]\r\n<h3>CORE VALUES</h3>\r\n[/vc_column_text][vc_separator css=\".vc_custom_1445496980428{margin-bottom: 19px !important;}\"][vc_column_text css=\".vc_custom_1448951164713{margin-bottom: 24px !important;}\"]<span style=\"color: #888888; font-size: 13px;\">We go through extensive factory training so that we may provide you with the knowledge you need to make an educated decision in choosing the vehicle that is right for your lifestyle.</span>[/vc_column_text][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Stress-free finance department.</li>\r\n <li>Robust selection of popular vehicles.</li>\r\n <li>350 offers on site, trusted by a community.</li>\r\n <li>Maintain your car to stay safe on the road</li>\r\n <li>We know how to handle a wide range of car services.</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"stm-col-pad-left\"][vc_custom_heading text=\"CUSTOMER TESTIMONIALS\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1445583787565{margin-bottom: 24px !important;}\"][stm_testimonials][stm_testimonial image=\"7\" author=\"JamesW28\" author_car=\"Requested for Tyres\"]\r\n<h4>Honest Service and Cheap Tyres</h4>\r\nWent to this tyre place for the first time expecting to need 4 tyres but the technician informed me I only needed one and the price was cheaper than others places I had been![/stm_testimonial][stm_testimonial image=\"7\" author=\"Yusuf\" author_car=\"Requested for Tyres\"]\r\n<h4>Great service, great price.</h4>\r\nWas recommended by friends and got not only exactly what I needed, it came with friendly, professional service at a very competitive price.[/stm_testimonial][/stm_testimonials][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"15\" grid_id=\"vc_gid:1487920056540-84438648-8918-3\" include=\"4356,4355,4354,4353\"][/vc_column][/vc_row]','About us','','inherit','closed','closed','','370-revision-v1','','','2017-02-24 07:09:40','2017-02-24 07:09:40','',370,'http://stationtyresdarwen.co.uk/2017/02/24/370-revision-v1/',0,'revision','',0),(4358,1,'2017-02-24 07:13:16','2017-02-24 07:13:16','Station Tyres Darwen sign','about-station-tyres','Station Tyres Darwen sign','inherit','open','closed','','about-station-tyres','','','2017-03-03 10:31:38','2017-03-03 10:31:38','',370,'http://stationtyresdarwen.co.uk/wp-content/uploads/about-station-tyres.jpg',0,'attachment','image/jpeg',0),(4359,1,'2017-02-24 07:13:23','2017-02-24 07:13:23','[vc_row css=\".vc_custom_1472016399122{margin-top: 30px !important;margin-bottom: 51px !important;}\"][vc_column width=\"1/2\" el_class=\"stm-col-pad-left\"][vc_column_text]\r\n<h3 style=\"margin-bottom: 18px;\">WELCOME TO THE <span style=\"color: #ffa500;\">STATION TYRES</span></h3>\r\n<h5 style=\"margin-bottom: 22px;\">Fast, friendly and great customer service - specialising in new and second-hand tyres!</h5>\r\n<p style=\"margin-bottom: 26px;\">Station tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).</p>\r\n<p style=\"margin-bottom: 26px;\">Established since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.</p>\r\n<p style=\"margin-bottom: 26px;\">If your car needs tracking, our Supertracker machine can effectively align your wheels - tracking prices starting from £20 up to £40!!</p>\r\n<p style=\"margin-bottom: 26px;\">While you wait for your vehicle to be ready, there is a warm and comfortable customer waiting area for you to sit and enjoy - with both toilets and refreshments if needed!</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"stm-col-pad-right\"][vc_single_image image=\"4358\" img_size=\"full\" stm_fancybox=\"yes\" css=\".vc_custom_1487920402370{margin-bottom: 35px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1445594570930{margin-bottom: 83px !important;}\"][vc_column width=\"1/2\" el_class=\"stm-col-pad-right\"][vc_column_text css=\".vc_custom_1445496956815{margin-bottom: 23px !important;}\"]\r\n<h3>CORE VALUES</h3>\r\n[/vc_column_text][vc_separator css=\".vc_custom_1445496980428{margin-bottom: 19px !important;}\"][vc_column_text css=\".vc_custom_1448951164713{margin-bottom: 24px !important;}\"]<span style=\"color: #888888; font-size: 13px;\">We go through extensive factory training so that we may provide you with the knowledge you need to make an educated decision in choosing the vehicle that is right for your lifestyle.</span>[/vc_column_text][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Stress-free finance department.</li>\r\n <li>Robust selection of popular vehicles.</li>\r\n <li>350 offers on site, trusted by a community.</li>\r\n <li>Maintain your car to stay safe on the road</li>\r\n <li>We know how to handle a wide range of car services.</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"stm-col-pad-left\"][vc_custom_heading text=\"CUSTOMER TESTIMONIALS\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1445583787565{margin-bottom: 24px !important;}\"][stm_testimonials][stm_testimonial image=\"7\" author=\"JamesW28\" author_car=\"Requested for Tyres\"]\r\n<h4>Honest Service and Cheap Tyres</h4>\r\nWent to this tyre place for the first time expecting to need 4 tyres but the technician informed me I only needed one and the price was cheaper than others places I had been![/stm_testimonial][stm_testimonial image=\"7\" author=\"Yusuf\" author_car=\"Requested for Tyres\"]\r\n<h4>Great service, great price.</h4>\r\nWas recommended by friends and got not only exactly what I needed, it came with friendly, professional service at a very competitive price.[/stm_testimonial][/stm_testimonials][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"15\" grid_id=\"vc_gid:1487920186677-668bcf0d-b306-9\" include=\"4356,4355,4354,4353\"][/vc_column][/vc_row]','About us','','inherit','closed','closed','','370-revision-v1','','','2017-02-24 07:13:23','2017-02-24 07:13:23','',370,'http://stationtyresdarwen.co.uk/2017/02/24/370-revision-v1/',0,'revision','',0),(4360,1,'2017-02-24 07:14:37','2017-02-24 07:14:37','[vc_row css=\".vc_custom_1472016399122{margin-top: 30px !important;margin-bottom: 51px !important;}\"][vc_column width=\"1/2\" el_class=\"stm-col-pad-left\"][vc_column_text]\r\n<h3 style=\"margin-bottom: 18px;\">WELCOME TO THE <span style=\"color: #ffa500;\">STATION TYRES</span></h3>\r\n<h5 style=\"margin-bottom: 22px;\">Fast, friendly and great customer service - specialising in new and second-hand tyres!</h5>\r\n<p style=\"margin-bottom: 26px;\">Station tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).</p>\r\n<p style=\"margin-bottom: 26px;\">Established since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.</p>\r\n<p style=\"margin-bottom: 26px;\">If your car needs tracking, our Supertracker machine can effectively align your wheels - tracking prices starting from £20 up to £40!!</p>\r\n<p style=\"margin-bottom: 26px;\">While you wait for your vehicle to be ready, there is a warm and comfortable customer waiting area for you to sit and enjoy - with both toilets and refreshments if needed!</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"stm-col-pad-right\"][vc_single_image image=\"4358\" img_size=\"full\" stm_fancybox=\"yes\" css=\".vc_custom_1487920402370{margin-bottom: 35px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1445594570930{margin-bottom: 83px !important;}\"][vc_column width=\"1/2\" el_class=\"stm-col-pad-right\"][vc_column_text css=\".vc_custom_1445496956815{margin-bottom: 23px !important;}\"]\r\n<h3>CORE VALUES</h3>\r\n[/vc_column_text][vc_separator css=\".vc_custom_1445496980428{margin-bottom: 19px !important;}\"][vc_column_text css=\".vc_custom_1487920475807{margin-bottom: 24px !important;}\"]<span style=\"color: #fff; font-size: 13px;\">We go through extensive factory training so that we may provide you with the knowledge you need to make an educated decision in choosing the vehicle that is right for your lifestyle.</span>[/vc_column_text][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Stress-free finance department.</li>\r\n <li>Robust selection of popular vehicles.</li>\r\n <li>350 offers on site, trusted by a community.</li>\r\n <li>Maintain your car to stay safe on the road</li>\r\n <li>We know how to handle a wide range of car services.</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"stm-col-pad-left\"][vc_custom_heading text=\"CUSTOMER TESTIMONIALS\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1445583787565{margin-bottom: 24px !important;}\"][stm_testimonials][stm_testimonial image=\"7\" author=\"JamesW28\" author_car=\"Requested for Tyres\"]\r\n<h4>Honest Service and Cheap Tyres</h4>\r\nWent to this tyre place for the first time expecting to need 4 tyres but the technician informed me I only needed one and the price was cheaper than others places I had been![/stm_testimonial][stm_testimonial image=\"7\" author=\"Yusuf\" author_car=\"Requested for Tyres\"]\r\n<h4>Great service, great price.</h4>\r\nWas recommended by friends and got not only exactly what I needed, it came with friendly, professional service at a very competitive price.[/stm_testimonial][/stm_testimonials][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"15\" grid_id=\"vc_gid:1487920408673-f77bb25c-0411-3\" include=\"4356,4355,4354,4353\"][/vc_column][/vc_row]','About us','','inherit','closed','closed','','370-revision-v1','','','2017-02-24 07:14:37','2017-02-24 07:14:37','',370,'http://stationtyresdarwen.co.uk/2017/02/24/370-revision-v1/',0,'revision','',0),(4361,1,'2017-02-24 07:17:00','2017-02-24 07:17:00','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1487792709049{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OUR OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487951870402{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/12\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973578523{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973590950{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973605573{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973620020{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973636652{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487922520143{margin-top: 70px !important;margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/12\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922349346{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922354413{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973659837{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4367\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922394733{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"205/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922407507{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973676244{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4368\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922436386{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"205/50 R17\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922443553{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £45.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1488273883162{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4369\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922460170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"225/45 R17\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922464694{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £45.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1488273898398{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4366\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922484035{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"225/40 R18\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922472493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £45.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1488273910323{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][vc_column_text]\n<h4 style=\"text-align: center;\">To be eligible for this offer, at least 4 tyres must be purchased. So take advantage of this <em>limited time offer</em> and purchase these superb tyres now!</h4>\n[/vc_column_text][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Offers','','publish','closed','closed','','offers','','','2018-01-03 10:05:54','2018-01-03 10:05:54','',0,'http://stationtyresdarwen.co.uk/?page_id=4361',0,'page','',0),(4362,1,'2017-02-24 07:17:00','2017-02-24 07:17:00','[vc_row css=\".vc_custom_1472016399122{margin-top: 30px !important;margin-bottom: 51px !important;}\"][vc_column width=\"1/2\" el_class=\"stm-col-pad-left\"][vc_column_text]\r\n<h3 style=\"margin-bottom: 18px;\">WELCOME TO THE <span style=\"color: #ffa500;\">STATION TYRES</span></h3>\r\n<h5 style=\"margin-bottom: 22px;\">Fast, friendly and great customer service - specialising in new and second-hand tyres!</h5>\r\n<p style=\"margin-bottom: 26px;\">Station tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).</p>\r\n<p style=\"margin-bottom: 26px;\">Established since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.</p>\r\n<p style=\"margin-bottom: 26px;\">If your car needs tracking, our Supertracker machine can effectively align your wheels - tracking prices starting from £20 up to £40!!</p>\r\n<p style=\"margin-bottom: 26px;\">While you wait for your vehicle to be ready, there is a warm and comfortable customer waiting area for you to sit and enjoy - with both toilets and refreshments if needed!</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"stm-col-pad-right\"][vc_single_image image=\"4358\" img_size=\"full\" stm_fancybox=\"yes\" css=\".vc_custom_1487920402370{margin-bottom: 35px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1445594570930{margin-bottom: 83px !important;}\"][vc_column width=\"1/2\" el_class=\"stm-col-pad-right\"][vc_column_text css=\".vc_custom_1445496956815{margin-bottom: 23px !important;}\"]\r\n<h3>CORE VALUES</h3>\r\n[/vc_column_text][vc_separator css=\".vc_custom_1445496980428{margin-bottom: 19px !important;}\"][vc_column_text css=\".vc_custom_1487920475807{margin-bottom: 24px !important;}\"]<span style=\"color: #fff; font-size: 13px;\">We go through extensive factory training so that we may provide you with the knowledge you need to make an educated decision in choosing the vehicle that is right for your lifestyle.</span>[/vc_column_text][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Stress-free finance department.</li>\r\n <li>Robust selection of popular vehicles.</li>\r\n <li>350 offers on site, trusted by a community.</li>\r\n <li>Maintain your car to stay safe on the road</li>\r\n <li>We know how to handle a wide range of car services.</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"stm-col-pad-left\"][vc_custom_heading text=\"CUSTOMER TESTIMONIALS\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1445583787565{margin-bottom: 24px !important;}\"][stm_testimonials][stm_testimonial image=\"7\" author=\"JamesW28\" author_car=\"Requested for Tyres\"]\r\n<h4>Honest Service and Cheap Tyres</h4>\r\nWent to this tyre place for the first time expecting to need 4 tyres but the technician informed me I only needed one and the price was cheaper than others places I had been![/stm_testimonial][stm_testimonial image=\"7\" author=\"Yusuf\" author_car=\"Requested for Tyres\"]\r\n<h4>Great service, great price.</h4>\r\nWas recommended by friends and got not only exactly what I needed, it came with friendly, professional service at a very competitive price.[/stm_testimonial][/stm_testimonials][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"15\" grid_id=\"vc_gid:1487920408673-f77bb25c-0411-3\" include=\"4356,4355,4354,4353\"][/vc_column][/vc_row]','Offers','','inherit','closed','closed','','4361-revision-v1','','','2017-02-24 07:17:00','2017-02-24 07:17:00','',4361,'http://stationtyresdarwen.co.uk/2017/02/24/4361-revision-v1/',0,'revision','',0),(4365,1,'2017-02-28 09:25:14','2017-02-28 09:25:14','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1487792709049{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OUR OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487951870402{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/12\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487922520143{margin-top: 70px !important;margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/12\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922349346{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922354413{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922363374{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4367\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922394733{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"205/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922407507{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922415046{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4368\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922436386{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"205/50 R17\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922443553{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £45.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1488273883162{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4369\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922460170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"225/45 R17\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922464694{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £45.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1488273898398{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4366\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922484035{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"225/40 R18\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922472493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Offers','','inherit','closed','closed','','4361-autosave-v1','','','2017-02-28 09:25:14','2017-02-28 09:25:14','',4361,'http://stationtyresdarwen.co.uk/2017/02/24/4361-autosave-v1/',0,'revision','',0),(4364,1,'2017-02-24 07:20:54','2017-02-24 07:20:54','[vc_row css=\".vc_custom_1472016399122{margin-top: 30px !important;margin-bottom: 51px !important;}\"][vc_column width=\"1/2\" el_class=\"stm-col-pad-left\"][vc_column_text]\r\n<h3 style=\"margin-bottom: 18px;\">WELCOME TO THE <span style=\"color: #ffa500;\">STATION TYRES</span></h3>\r\n<h5 style=\"margin-bottom: 22px;\">Fast, friendly and great customer service - specialising in new and second-hand tyres!</h5>\r\n<p style=\"margin-bottom: 26px;\">Station tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).</p>\r\n<p style=\"margin-bottom: 26px;\">Established since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.</p>\r\n<p style=\"margin-bottom: 26px;\">If your car needs tracking, our Supertracker machine can effectively align your wheels - tracking prices starting from £20 up to £40!!</p>\r\n<p style=\"margin-bottom: 26px;\">While you wait for your vehicle to be ready, there is a warm and comfortable customer waiting area for you to sit and enjoy - with both toilets and refreshments if needed!</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"stm-col-pad-right\"][vc_single_image image=\"4358\" img_size=\"full\" stm_fancybox=\"yes\" css=\".vc_custom_1487920402370{margin-bottom: 35px !important;}\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1487792709049{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793484681{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793101333{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#090909\" shape=\"square\" align=\"center\" css=\".vc_custom_1487794176522{margin-top: 40px !important;}\"][/vc_column][/vc_row]','Offers','','inherit','closed','closed','','4361-revision-v1','','','2017-02-24 07:20:54','2017-02-24 07:20:54','',4361,'http://stationtyresdarwen.co.uk/2017/02/24/4361-revision-v1/',0,'revision','',0),(4401,1,'2017-02-24 15:58:25','2017-02-24 15:58:25','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1487792709049{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OUR OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487951870402{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/12\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487922520143{margin-top: 70px !important;margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/12\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922349346{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922354413{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922363374{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4367\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922394733{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"205/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922407507{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922415046{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4368\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922436386{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"205/50 R17\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922443553{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4369\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922460170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"225/45 R17\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922464694{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4366\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922484035{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"225/40 R18\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922472493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Offers','','inherit','closed','closed','','4361-revision-v1','','','2017-02-24 15:58:25','2017-02-24 15:58:25','',4361,'http://stationtyresdarwen.co.uk/2017/02/24/4361-revision-v1/',0,'revision','',0),(4400,1,'2017-02-24 15:57:59','2017-02-24 15:57:59','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1487792709049{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OUR OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487951870402{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/12\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487922520143{margin-top: 70px !important;margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/12\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922349346{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922354413{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922363374{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4367\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922394733{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"205/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922407507{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922415046{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4368\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922436386{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"205/50 R17\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922443553{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4369\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922460170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"225/45 R17\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922464694{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4366\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922484035{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"225/40 R18\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922472493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"FOR OFFERS & SERVICE\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Offers','','inherit','closed','closed','','4361-revision-v1','','','2017-02-24 15:57:59','2017-02-24 15:57:59','',4361,'http://stationtyresdarwen.co.uk/2017/02/24/4361-revision-v1/',0,'revision','',0),(4371,1,'2017-02-24 07:51:01','2017-02-24 07:51:01','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1487792709049{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793484681{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/12\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487922520143{margin-top: 70px !important;margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/12\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922349346{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922354413{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922363374{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4367\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922394733{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"205/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922407507{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922415046{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4368\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922436386{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"205/50 R17\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922443553{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4369\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922460170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"225/45 R17\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922464694{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4366\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922484035{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"225/40 R18\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922472493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"FOR OFFERS & SERVICE\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Offers','','inherit','closed','closed','','4361-revision-v1','','','2017-02-24 07:51:01','2017-02-24 07:51:01','',4361,'http://stationtyresdarwen.co.uk/2017/02/24/4361-revision-v1/',0,'revision','',0),(4366,1,'2017-02-24 07:46:13','2017-02-24 07:46:13','','offer-10','','inherit','open','closed','','offer-10','','','2017-02-24 07:46:13','2017-02-24 07:46:13','',4361,'http://stationtyresdarwen.co.uk/wp-content/uploads/offer-10.png',0,'attachment','image/png',0),(4367,1,'2017-02-24 07:46:15','2017-02-24 07:46:15','','offer-7','','inherit','open','closed','','offer-7','','','2017-02-24 07:46:15','2017-02-24 07:46:15','',4361,'http://stationtyresdarwen.co.uk/wp-content/uploads/offer-7.png',0,'attachment','image/png',0),(4368,1,'2017-02-24 07:46:16','2017-02-24 07:46:16','','offer-8','','inherit','open','closed','','offer-8','','','2017-02-24 07:46:16','2017-02-24 07:46:16','',4361,'http://stationtyresdarwen.co.uk/wp-content/uploads/offer-8.png',0,'attachment','image/png',0),(4369,1,'2017-02-24 07:46:18','2017-02-24 07:46:18','','offer-9','','inherit','open','closed','','offer-9','','','2017-02-24 07:46:18','2017-02-24 07:46:18','',4361,'http://stationtyresdarwen.co.uk/wp-content/uploads/offer-9.png',0,'attachment','image/png',0),(4370,1,'2017-02-24 07:49:15','2017-02-24 07:49:15','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1487792709049{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793484681{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/12\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487922520143{margin-top: 70px !important;margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/12\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922349346{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922354413{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922363374{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4367\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922394733{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"205/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922407507{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922415046{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4368\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922436386{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"205/50 R17\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922443553{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4369\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922460170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"225/45 R17\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922464694{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4366\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922484035{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"225/40 R18\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922472493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#090909\" shape=\"square\" align=\"center\" css=\".vc_custom_1487794176522{margin-top: 40px !important;}\"][/vc_column][/vc_row]','Offers','','inherit','closed','closed','','4361-revision-v1','','','2017-02-24 07:49:15','2017-02-24 07:49:15','',4361,'http://stationtyresdarwen.co.uk/2017/02/24/4361-revision-v1/',0,'revision','',0),(4372,1,'2017-02-28 07:58:21','2017-02-28 07:58:21','[vc_row css=\".vc_custom_1487950973825{margin-bottom: 64px !important;}\"][vc_column][stm_contact_form form=\"717\" title=\"Contact Us\" css=\".vc_custom_1487923529721{padding-top: 30px !important;padding-right: 30px !important;padding-bottom: 30px !important;padding-left: 30px !important;background-color: #000000 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452251533394{margin-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1487923284932{margin-bottom: 25px !important;padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\" offset=\"vc_col-lg-4 vc_col-md-12\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-pin\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Address\" css=\".vc_custom_1487950918754{margin-bottom: 28px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487950918753{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">2-4 Kay St, Darwen, BB3 3BZ</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-phone\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Phone\" css=\".vc_custom_1488268693328{margin-bottom: 27px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1488268693327{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">01254705305</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-time\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Hours\" css=\".vc_custom_1487950941730{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487950941729{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">Mon - Sat: 09:00AM - 05:30PM\nSunday: By Appointment</span>[/stm_icon_box][/vc_column][vc_column css=\".vc_custom_1448867270861{margin-bottom: 25px !important;}\" offset=\"vc_col-lg-8 vc_col-md-12\"][stm_gmap map_height=\"420px\" map_zoom=\"18\" disable_mouse_whell=\"disable\" lat=\"53.6970894\" lng=\"-2.4629212\" infowindow_text=\"2-4 Kay St, Darwen BB3 3BZ, UK\" image=\"4381\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','712-autosave-v1','','','2017-02-28 07:58:21','2017-02-28 07:58:21','',712,'http://stationtyresdarwen.co.uk/2017/02/24/712-autosave-v1/',0,'revision','',0),(4373,1,'2017-02-24 07:57:55','2017-02-24 07:57:55','[vc_row full_width=\"stretch_row\" parallax=\"content-moving\" parallax_image=\"10\" css=\".vc_custom_1487922949849{margin-bottom: 0px !important;padding-top: 311px !important;background: #0a0a0a url(http://stationtyresdarwen.co.uk/wp-content/uploads/placeholder.gif?id=4278);}\"][vc_column][/vc_column][/vc_row][vc_row css=\".vc_custom_1447829274492{margin-top: -177px !important;margin-bottom: 64px !important;}\"][vc_column][stm_contact_form form=\"717\" title=\"Contact Us\" css=\".vc_custom_1471607310886{padding: 30px !important;background-color: #2f3c40 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452251533394{margin-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1448867253895{margin-bottom: 25px !important;}\" offset=\"vc_col-lg-4 vc_col-md-12\"][vc_tabs interval=\"0\" vc_tabs_style_2=\"yes\"][vc_tab title=\"Parts\" tab_id=\"309debce-b3e3-6\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-pin\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#cc6119\" icon_size=\"31\" title=\"Address\" css=\".vc_custom_1487922995967{margin-bottom: 28px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487922995966{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">2-4 Kay St, Darwen, BB3 3BZ</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-phone\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#cc6119\" icon_size=\"31\" title=\"Sales Phone\" css=\".vc_custom_1487923037515{margin-bottom: 27px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487923037514{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">01254 917248</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-time\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#cc6119\" icon_size=\"31\" title=\"Sales Hours\" css=\".vc_custom_1447840092359{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1447840092356{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">Mon - Fri: 09:00AM - 09:00PM\r\nSaturday: 09:00AM - 07:00PM\r\nSunday: Closed</span>[/stm_icon_box][/vc_tab][vc_tab title=\"Sales\" tab_id=\"309debce-b3e3-6\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-pin\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#cc6119\" icon_size=\"31\" title=\"Address\" css=\".vc_custom_1447842696775{margin-bottom: 28px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1447842696774{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">1840 E Garvey Ave South West Covina, CA 91791</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-phone\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#cc6119\" icon_size=\"31\" title=\"Sales Phone\" css=\".vc_custom_1447842703995{margin-bottom: 27px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1447842703990{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">(888) 354-1781</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-time\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#cc6119\" icon_size=\"31\" title=\"Sales Hours\" css=\".vc_custom_1447840092359{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1447840092356{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">Mon - Fri: 09:00AM - 09:00PM\r\nSaturday: 09:00AM - 07:00PM\r\nSunday: Closed</span>[/stm_icon_box][/vc_tab][vc_tab title=\"Sales\" tab_id=\"309debce-b3e3-6\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-pin\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#cc6119\" icon_size=\"31\" title=\"Address\" css=\".vc_custom_1447842696775{margin-bottom: 28px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1447842696774{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">1840 E Garvey Ave South West Covina, CA 91791</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-phone\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#cc6119\" icon_size=\"31\" title=\"Sales Phone\" css=\".vc_custom_1447842703995{margin-bottom: 27px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1447842703990{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">(888) 354-1781</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-time\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#cc6119\" icon_size=\"31\" title=\"Sales Hours\" css=\".vc_custom_1447840092359{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1447840092356{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">Mon - Fri: 09:00AM - 09:00PM\r\nSaturday: 09:00AM - 07:00PM\r\nSunday: Closed</span>[/stm_icon_box][/vc_tab][/vc_tabs][/vc_column][vc_column css=\".vc_custom_1448867270861{margin-bottom: 25px !important;}\" offset=\"vc_col-lg-8 vc_col-md-12\"][stm_gmap map_height=\"420px\" map_zoom=\"18\" lat=\"34.062718\" lng=\"-118.059534\" infowindow_text=\"1840 E Garvey Ave South West Covina, CA 91791\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','712-revision-v1','','','2017-02-24 07:57:55','2017-02-24 07:57:55','',712,'http://stationtyresdarwen.co.uk/2017/02/24/712-revision-v1/',0,'revision','',0),(4378,1,'2017-02-24 08:22:36','2017-02-24 08:22:36','','map-icon','','inherit','open','closed','','map-icon','','','2017-02-24 08:22:36','2017-02-24 08:22:36','',712,'http://stationtyresdarwen.co.uk/wp-content/uploads/map-icon.png',0,'attachment','image/png',0),(4379,1,'2017-02-24 08:23:25','2017-02-24 08:23:25','[vc_row full_width=\"stretch_row\" parallax=\"content-moving\" parallax_image=\"10\" css=\".vc_custom_1487922949849{margin-bottom: 0px !important;padding-top: 311px !important;background: #0a0a0a url(http://stationtyresdarwen.co.uk/wp-content/uploads/placeholder.gif?id=4278);}\"][vc_column][/vc_column][/vc_row][vc_row css=\".vc_custom_1447829274492{margin-top: -177px !important;margin-bottom: 64px !important;}\"][vc_column][stm_contact_form form=\"717\" title=\"Contact Us\" css=\".vc_custom_1487923529721{padding-top: 30px !important;padding-right: 30px !important;padding-bottom: 30px !important;padding-left: 30px !important;background-color: #000000 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452251533394{margin-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1487923284932{margin-bottom: 25px !important;padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\" offset=\"vc_col-lg-4 vc_col-md-12\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-pin\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#cc6119\" icon_size=\"31\" title=\"Address\" css=\".vc_custom_1487922995967{margin-bottom: 28px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487922995966{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">2-4 Kay St, Darwen, BB3 3BZ</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-phone\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#cc6119\" icon_size=\"31\" title=\"Sales Phone\" css=\".vc_custom_1487923037515{margin-bottom: 27px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487923037514{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">01254 917248</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-time\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#cc6119\" icon_size=\"31\" title=\"Sales Hours\" css=\".vc_custom_1447840092359{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1447840092356{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">Mon - Fri: 09:00AM - 09:00PM\r\nSaturday: 09:00AM - 07:00PM\r\nSunday: Closed</span>[/stm_icon_box][/vc_column][vc_column css=\".vc_custom_1448867270861{margin-bottom: 25px !important;}\" offset=\"vc_col-lg-8 vc_col-md-12\"][stm_gmap map_height=\"420px\" map_zoom=\"18\" disable_mouse_whell=\"disable\" lat=\"53.6970894\" lng=\"-2.4629212\" infowindow_text=\"2-4 Kay St, Darwen BB3 3BZ, UK\" image=\"4378\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','712-revision-v1','','','2017-02-24 08:23:25','2017-02-24 08:23:25','',712,'http://stationtyresdarwen.co.uk/2017/02/24/712-revision-v1/',0,'revision','',0),(4381,1,'2017-02-24 08:29:13','2017-02-24 08:29:13','','map-icon','','inherit','open','closed','','map-icon-2','','','2017-02-24 08:29:13','2017-02-24 08:29:13','',712,'http://stationtyresdarwen.co.uk/wp-content/uploads/map-icon-1.png',0,'attachment','image/png',0),(4382,1,'2017-02-24 08:29:27','2017-02-24 08:29:27','[vc_row full_width=\"stretch_row\" parallax=\"content-moving\" parallax_image=\"10\" css=\".vc_custom_1487922949849{margin-bottom: 0px !important;padding-top: 311px !important;background: #0a0a0a url(http://stationtyresdarwen.co.uk/wp-content/uploads/placeholder.gif?id=4278);}\"][vc_column][/vc_column][/vc_row][vc_row css=\".vc_custom_1447829274492{margin-top: -177px !important;margin-bottom: 64px !important;}\"][vc_column][stm_contact_form form=\"717\" title=\"Contact Us\" css=\".vc_custom_1487923529721{padding-top: 30px !important;padding-right: 30px !important;padding-bottom: 30px !important;padding-left: 30px !important;background-color: #000000 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452251533394{margin-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1487923284932{margin-bottom: 25px !important;padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\" offset=\"vc_col-lg-4 vc_col-md-12\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-pin\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#cc6119\" icon_size=\"31\" title=\"Address\" css=\".vc_custom_1487922995967{margin-bottom: 28px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487922995966{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">2-4 Kay St, Darwen, BB3 3BZ</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-phone\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#cc6119\" icon_size=\"31\" title=\"Sales Phone\" css=\".vc_custom_1487923037515{margin-bottom: 27px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487923037514{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">01254 917248</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-time\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#cc6119\" icon_size=\"31\" title=\"Sales Hours\" css=\".vc_custom_1447840092359{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1447840092356{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">Mon - Fri: 09:00AM - 09:00PM\r\nSaturday: 09:00AM - 07:00PM\r\nSunday: Closed</span>[/stm_icon_box][/vc_column][vc_column css=\".vc_custom_1448867270861{margin-bottom: 25px !important;}\" offset=\"vc_col-lg-8 vc_col-md-12\"][stm_gmap map_height=\"420px\" map_zoom=\"18\" disable_mouse_whell=\"disable\" lat=\"53.6970894\" lng=\"-2.4629212\" infowindow_text=\"2-4 Kay St, Darwen BB3 3BZ, UK\" image=\"4381\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','712-revision-v1','','','2017-02-24 08:29:27','2017-02-24 08:29:27','',712,'http://stationtyresdarwen.co.uk/2017/02/24/712-revision-v1/',0,'revision','',0),(4383,1,'2017-02-24 08:30:43','2017-02-24 08:30:43','[vc_row full_width=\"stretch_row\" parallax=\"content-moving\" parallax_image=\"10\" css=\".vc_custom_1487922949849{margin-bottom: 0px !important;padding-top: 311px !important;background: #0a0a0a url(http://stationtyresdarwen.co.uk/wp-content/uploads/placeholder.gif?id=4278);}\"][vc_column][/vc_column][/vc_row][vc_row css=\".vc_custom_1447829274492{margin-top: -177px !important;margin-bottom: 64px !important;}\"][vc_column][stm_contact_form form=\"717\" title=\"Contact Us\" css=\".vc_custom_1487923529721{padding-top: 30px !important;padding-right: 30px !important;padding-bottom: 30px !important;padding-left: 30px !important;background-color: #000000 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452251533394{margin-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1487923284932{margin-bottom: 25px !important;padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\" offset=\"vc_col-lg-4 vc_col-md-12\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-pin\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Address\" css=\".vc_custom_1487924993001{margin-bottom: 28px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487924993000{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">2-4 Kay St, Darwen, BB3 3BZ</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-phone\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Phone\" css=\".vc_custom_1487925000668{margin-bottom: 27px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487925000667{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">01254 917248</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-time\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Hours\" css=\".vc_custom_1487925041421{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487925041419{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">Mon - Sat: 09:00AM - 05:30PM\r\nSunday: By Appointment</span>[/stm_icon_box][/vc_column][vc_column css=\".vc_custom_1448867270861{margin-bottom: 25px !important;}\" offset=\"vc_col-lg-8 vc_col-md-12\"][stm_gmap map_height=\"420px\" map_zoom=\"18\" disable_mouse_whell=\"disable\" lat=\"53.6970894\" lng=\"-2.4629212\" infowindow_text=\"2-4 Kay St, Darwen BB3 3BZ, UK\" image=\"4381\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','712-revision-v1','','','2017-02-24 08:30:43','2017-02-24 08:30:43','',712,'http://stationtyresdarwen.co.uk/2017/02/24/712-revision-v1/',0,'revision','',0),(4398,1,'2017-02-24 15:46:23','2017-02-24 15:46:23','[vc_row css=\".vc_custom_1487950973825{margin-bottom: 64px !important;}\"][vc_column][stm_contact_form form=\"717\" title=\"Contact Us\" css=\".vc_custom_1487923529721{padding-top: 30px !important;padding-right: 30px !important;padding-bottom: 30px !important;padding-left: 30px !important;background-color: #000000 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452251533394{margin-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1487923284932{margin-bottom: 25px !important;padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\" offset=\"vc_col-lg-4 vc_col-md-12\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-pin\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Address\" css=\".vc_custom_1487950918754{margin-bottom: 28px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487950918753{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">2-4 Kay St, Darwen, BB3 3BZ</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-phone\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Phone\" css=\".vc_custom_1487950933186{margin-bottom: 27px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487950933185{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">01254 917248</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-time\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Hours\" css=\".vc_custom_1487950941730{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487950941729{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">Mon - Sat: 09:00AM - 05:30PM\r\nSunday: By Appointment</span>[/stm_icon_box][/vc_column][vc_column css=\".vc_custom_1448867270861{margin-bottom: 25px !important;}\" offset=\"vc_col-lg-8 vc_col-md-12\"][stm_gmap map_height=\"420px\" map_zoom=\"18\" disable_mouse_whell=\"disable\" lat=\"53.6970894\" lng=\"-2.4629212\" infowindow_text=\"2-4 Kay St, Darwen BB3 3BZ, UK\" image=\"4381\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','712-revision-v1','','','2017-02-24 15:46:23','2017-02-24 15:46:23','',712,'http://stationtyresdarwen.co.uk/2017/02/24/712-revision-v1/',0,'revision','',0),(4385,1,'2017-02-24 08:34:13','2017-02-24 08:34:13','[vc_row full_width=\"stretch_row\" parallax=\"content-moving\" css=\".vc_custom_1487925251243{margin-bottom: 0px !important;padding-top: 311px !important;background: #0a0a0a url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10);}\"][vc_column][/vc_column][/vc_row][vc_row css=\".vc_custom_1447829274492{margin-top: -177px !important;margin-bottom: 64px !important;}\"][vc_column][stm_contact_form form=\"717\" title=\"Contact Us\" css=\".vc_custom_1487923529721{padding-top: 30px !important;padding-right: 30px !important;padding-bottom: 30px !important;padding-left: 30px !important;background-color: #000000 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452251533394{margin-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1487923284932{margin-bottom: 25px !important;padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\" offset=\"vc_col-lg-4 vc_col-md-12\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-pin\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Address\" css=\".vc_custom_1487924993001{margin-bottom: 28px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487924993000{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">2-4 Kay St, Darwen, BB3 3BZ</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-phone\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Phone\" css=\".vc_custom_1487925000668{margin-bottom: 27px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487925000667{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">01254 917248</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-time\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#232628\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Hours\" css=\".vc_custom_1487925041421{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487925041419{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">Mon - Sat: 09:00AM - 05:30PM\r\nSunday: By Appointment</span>[/stm_icon_box][/vc_column][vc_column css=\".vc_custom_1448867270861{margin-bottom: 25px !important;}\" offset=\"vc_col-lg-8 vc_col-md-12\"][stm_gmap map_height=\"420px\" map_zoom=\"18\" disable_mouse_whell=\"disable\" lat=\"53.6970894\" lng=\"-2.4629212\" infowindow_text=\"2-4 Kay St, Darwen BB3 3BZ, UK\" image=\"4381\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','712-revision-v1','','','2017-02-24 08:34:13','2017-02-24 08:34:13','',712,'http://stationtyresdarwen.co.uk/2017/02/24/712-revision-v1/',0,'revision','',0),(4395,1,'2017-02-24 15:36:13','2017-02-24 15:36:13','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHO WE ARE\" font_container=\"tag:h2|font_size:45|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793519972{margin-bottom: 45px !important;}\"][vc_column_text]\r\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\r\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\r\n\r\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.\r\n\r\n[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fabout-us%2F|||\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793492820{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\r\nPremium And Budget Range\r\nCatalytic Converters\r\nAll Makes & Models\r\nSame Day Fitting Service\r\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\r\nExhaust systems\r\nWheels\r\nBrake pads and discs\r\nWheel balancing\r\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\r\nTyre Repairs\r\nTyre fitting\r\nExhaust fitting\r\nWinter tyres\r\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\r\nVan tyres\r\n4x4 tyres\r\nTrailer tyres\r\nPremium brand tyres\r\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487923972573{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fservice%2F|||\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1487950553658{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"offer-bg\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OFFERS YOU LOOKING\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487949699452{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793101333{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#090909\" shape=\"square\" align=\"center\" css=\".vc_custom_1487924011977{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Foffers%2F|||\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2017-02-24 15:36:13','2017-02-24 15:36:13','',4283,'http://stationtyresdarwen.co.uk/2017/02/24/4283-revision-v1/',0,'revision','',0),(4388,1,'2017-02-24 15:23:55','2017-02-24 15:23:55','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHO WE ARE\" font_container=\"tag:h2|font_size:45|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793519972{margin-bottom: 45px !important;}\"][vc_column_text]\r\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\r\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\r\n\r\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.\r\n\r\n[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fabout-us%2F|||\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793492820{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\r\nPremium And Budget Range\r\nCatalytic Converters\r\nAll Makes & Models\r\nSame Day Fitting Service\r\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\r\nExhaust systems\r\nWheels\r\nBrake pads and discs\r\nWheel balancing\r\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\r\nTyre Repairs\r\nTyre fitting\r\nExhaust fitting\r\nWinter tyres\r\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\r\nVan tyres\r\n4x4 tyres\r\nTrailer tyres\r\nPremium brand tyres\r\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487923972573{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fservice%2F|||\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1487949832740{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OFFERS YOU LOOKING\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487949699452{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793101333{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#090909\" shape=\"square\" align=\"center\" css=\".vc_custom_1487924011977{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Foffers%2F|||\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2017-02-24 15:23:55','2017-02-24 15:23:55','',4283,'http://stationtyresdarwen.co.uk/2017/02/24/4283-revision-v1/',0,'revision','',0),(4392,1,'2017-02-24 15:28:56','2017-02-24 15:28:56','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHO WE ARE\" font_container=\"tag:h2|font_size:45|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793519972{margin-bottom: 45px !important;}\"][vc_column_text]\r\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\r\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\r\n\r\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.\r\n\r\n[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fabout-us%2F|||\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793492820{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\r\nPremium And Budget Range\r\nCatalytic Converters\r\nAll Makes & Models\r\nSame Day Fitting Service\r\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\r\nExhaust systems\r\nWheels\r\nBrake pads and discs\r\nWheel balancing\r\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\r\nTyre Repairs\r\nTyre fitting\r\nExhaust fitting\r\nWinter tyres\r\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\r\nVan tyres\r\n4x4 tyres\r\nTrailer tyres\r\nPremium brand tyres\r\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487923972573{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fservice%2F|||\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1487950133672{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OFFERS YOU LOOKING\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487949699452{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793101333{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#090909\" shape=\"square\" align=\"center\" css=\".vc_custom_1487924011977{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Foffers%2F|||\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2017-02-24 15:28:56','2017-02-24 15:28:56','',4283,'http://stationtyresdarwen.co.uk/2017/02/24/4283-revision-v1/',0,'revision','',0),(4393,1,'2017-02-24 15:30:49','2017-02-24 15:30:49','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHO WE ARE\" font_container=\"tag:h2|font_size:45|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793519972{margin-bottom: 45px !important;}\"][vc_column_text]\r\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\r\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\r\n\r\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.\r\n\r\n[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fabout-us%2F|||\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793492820{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\r\nPremium And Budget Range\r\nCatalytic Converters\r\nAll Makes & Models\r\nSame Day Fitting Service\r\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\r\nExhaust systems\r\nWheels\r\nBrake pads and discs\r\nWheel balancing\r\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\r\nTyre Repairs\r\nTyre fitting\r\nExhaust fitting\r\nWinter tyres\r\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\r\nVan tyres\r\n4x4 tyres\r\nTrailer tyres\r\nPremium brand tyres\r\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487923972573{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fservice%2F|||\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1487950246407{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"offer-bg\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OFFERS YOU LOOKING\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487949699452{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793101333{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#090909\" shape=\"square\" align=\"center\" css=\".vc_custom_1487924011977{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Foffers%2F|||\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2017-02-24 15:30:49','2017-02-24 15:30:49','',4283,'http://stationtyresdarwen.co.uk/2017/02/24/4283-revision-v1/',0,'revision','',0),(4394,1,'2017-02-24 15:34:44','2017-02-24 15:34:44','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHO WE ARE\" font_container=\"tag:h2|font_size:45|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793519972{margin-bottom: 45px !important;}\"][vc_column_text]\r\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\r\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\r\n\r\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.\r\n\r\n[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fabout-us%2F|||\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793492820{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\r\nPremium And Budget Range\r\nCatalytic Converters\r\nAll Makes & Models\r\nSame Day Fitting Service\r\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\r\nExhaust systems\r\nWheels\r\nBrake pads and discs\r\nWheel balancing\r\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\r\nTyre Repairs\r\nTyre fitting\r\nExhaust fitting\r\nWinter tyres\r\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\r\nVan tyres\r\n4x4 tyres\r\nTrailer tyres\r\nPremium brand tyres\r\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487923972573{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fservice%2F|||\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1487950482874{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"offer-bg\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OFFERS YOU LOOKING\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487949699452{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793101333{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#090909\" shape=\"square\" align=\"center\" css=\".vc_custom_1487924011977{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Foffers%2F|||\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2017-02-24 15:34:44','2017-02-24 15:34:44','',4283,'http://stationtyresdarwen.co.uk/2017/02/24/4283-revision-v1/',0,'revision','',0),(4399,1,'2017-02-24 15:56:09','2017-02-24 15:56:09','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHO WE ARE\" font_container=\"tag:h2|font_size:45|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793519972{margin-bottom: 45px !important;}\"][vc_column_text]\r\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\r\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\r\n\r\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.\r\n\r\n[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fabout-us%2F|||\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793492820{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\r\nPremium And Budget Range\r\nCatalytic Converters\r\nAll Makes & Models\r\nSame Day Fitting Service\r\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\r\nExhaust systems\r\nWheels\r\nBrake pads and discs\r\nWheel balancing\r\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\r\nTyre Repairs\r\nTyre fitting\r\nExhaust fitting\r\nWinter tyres\r\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\r\nVan tyres\r\n4x4 tyres\r\nTrailer tyres\r\nPremium brand tyres\r\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487923972573{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fservice%2F|||\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1487951534610{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"offer-bg\"][vc_column css=\".vc_custom_1487951487445{background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OFFERS YOU LOOKING\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487949699452{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793101333{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#090909\" shape=\"square\" align=\"center\" css=\".vc_custom_1487924011977{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Foffers%2F|||\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2017-02-24 15:56:09','2017-02-24 15:56:09','',4283,'http://stationtyresdarwen.co.uk/2017/02/24/4283-revision-v1/',0,'revision','',0),(4402,1,'2017-02-28 07:58:47','2017-02-28 07:58:47','[vc_row css=\".vc_custom_1487950973825{margin-bottom: 64px !important;}\"][vc_column][stm_contact_form form=\"717\" title=\"Contact Us\" css=\".vc_custom_1487923529721{padding-top: 30px !important;padding-right: 30px !important;padding-bottom: 30px !important;padding-left: 30px !important;background-color: #000000 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452251533394{margin-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1487923284932{margin-bottom: 25px !important;padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\" offset=\"vc_col-lg-4 vc_col-md-12\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-pin\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Address\" css=\".vc_custom_1487950918754{margin-bottom: 28px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487950918753{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">2-4 Kay St, Darwen, BB3 3BZ</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-phone\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Phone\" css=\".vc_custom_1488268722911{margin-bottom: 27px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1488268722910{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">01254705305 / 07713948270</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-time\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Hours\" css=\".vc_custom_1487950941730{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487950941729{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">Mon - Sat: 09:00AM - 05:30PM\r\nSunday: By Appointment</span>[/stm_icon_box][/vc_column][vc_column css=\".vc_custom_1448867270861{margin-bottom: 25px !important;}\" offset=\"vc_col-lg-8 vc_col-md-12\"][stm_gmap map_height=\"420px\" map_zoom=\"18\" disable_mouse_whell=\"disable\" lat=\"53.6970894\" lng=\"-2.4629212\" infowindow_text=\"2-4 Kay St, Darwen BB3 3BZ, UK\" image=\"4381\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','712-revision-v1','','','2017-02-28 07:58:47','2017-02-28 07:58:47','',712,'http://stationtyresdarwen.co.uk/712-revision-v1/',0,'revision','',0),(4403,1,'2017-02-28 08:00:47','2017-02-28 08:00:47','[vc_row css=\".vc_custom_1487950973825{margin-bottom: 64px !important;}\"][vc_column][stm_contact_form form=\"717\" title=\"Contact Us\" css=\".vc_custom_1487923529721{padding-top: 30px !important;padding-right: 30px !important;padding-bottom: 30px !important;padding-left: 30px !important;background-color: #000000 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452251533394{margin-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1487923284932{margin-bottom: 25px !important;padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\" offset=\"vc_col-lg-4 vc_col-md-12\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-pin\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Address\" css=\".vc_custom_1487950918754{margin-bottom: 28px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487950918753{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">2-4 Kay St, Darwen, BB3 3BZ</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-phone\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Phone\" css=\".vc_custom_1488268843313{margin-bottom: 27px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1488268843311{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">01254 705 305 / 07713948270</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-time\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Hours\" css=\".vc_custom_1487950941730{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487950941729{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">Mon - Sat: 09:00AM - 05:30PM\r\nSunday: By Appointment</span>[/stm_icon_box][/vc_column][vc_column css=\".vc_custom_1448867270861{margin-bottom: 25px !important;}\" offset=\"vc_col-lg-8 vc_col-md-12\"][stm_gmap map_height=\"420px\" map_zoom=\"18\" disable_mouse_whell=\"disable\" lat=\"53.6970894\" lng=\"-2.4629212\" infowindow_text=\"2-4 Kay St, Darwen BB3 3BZ, UK\" image=\"4381\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','712-revision-v1','','','2017-02-28 08:00:47','2017-02-28 08:00:47','',712,'http://stationtyresdarwen.co.uk/712-revision-v1/',0,'revision','',0),(4405,1,'2017-02-28 09:25:17','2017-02-28 09:25:17','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1487792709049{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OUR OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487951870402{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/12\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487922520143{margin-top: 70px !important;margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/12\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922349346{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922354413{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922363374{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4367\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922394733{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"205/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922407507{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922415046{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4368\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922436386{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"205/50 R17\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922443553{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £45.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1488273883162{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4369\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922460170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"225/45 R17\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922464694{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £45.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1488273898398{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4366\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922484035{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"225/40 R18\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922472493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £45.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1488273910323{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Offers','','inherit','closed','closed','','4361-revision-v1','','','2017-02-28 09:25:17','2017-02-28 09:25:17','',4361,'http://stationtyresdarwen.co.uk/4361-revision-v1/',0,'revision','',0),(4406,1,'2017-02-28 09:32:01','2017-02-28 09:32:01','Station Tyres Darwen front entrance','about-station-tyres','Station Tyres Darwen front entrance','inherit','open','closed','','about-station-tyres-2','','','2017-03-03 10:31:26','2017-03-03 10:31:26','',370,'http://stationtyresdarwen.co.uk/wp-content/uploads/about-station-tyres-1.jpg',0,'attachment','image/jpeg',0),(4407,1,'2017-02-28 09:32:35','2017-02-28 09:32:35','','about-us-4','','inherit','open','closed','','about-us-4','','','2017-02-28 09:32:35','2017-02-28 09:32:35','',370,'http://stationtyresdarwen.co.uk/wp-content/uploads/about-us-4.jpg',0,'attachment','image/jpeg',0),(4408,1,'2017-02-28 09:32:51','2017-02-28 09:32:51','','about-us-2','','inherit','open','closed','','about-us-2','','','2017-02-28 09:32:51','2017-02-28 09:32:51','',0,'http://stationtyresdarwen.co.uk/wp-content/uploads/about-us-2.jpg',0,'attachment','image/jpeg',0),(4409,1,'2017-02-28 09:33:01','2017-02-28 09:33:01','Station Tyres in Darwen','about-us-3','Station Tyres in Darwen','inherit','open','closed','','about-us-3','','','2017-03-03 10:31:14','2017-03-03 10:31:14','',0,'http://stationtyresdarwen.co.uk/wp-content/uploads/about-us-3.jpg',0,'attachment','image/jpeg',0),(4410,1,'2017-02-28 09:33:18','2017-02-28 09:33:18','Station Tyres Darwen entrance','about-us-4','Station Tyres Darwen entrance','inherit','open','closed','','about-us-4-2','','','2017-03-03 10:30:53','2017-03-03 10:30:53','',0,'http://stationtyresdarwen.co.uk/wp-content/uploads/about-us-4-1.jpg',0,'attachment','image/jpeg',0),(4411,1,'2017-02-28 09:33:28','2017-02-28 09:33:28','Station Tyres Darwen','about-us-1','Station Tyres Darwen','inherit','open','closed','','about-us-1','','','2017-03-03 10:30:47','2017-03-03 10:30:47','',0,'http://stationtyresdarwen.co.uk/wp-content/uploads/about-us-1.jpg',0,'attachment','image/jpeg',0),(4412,1,'2017-02-28 09:33:47','2017-02-28 09:33:47','Station Tyres Darwen front','about-station-tyres','Station Tyres Darwen front','inherit','open','closed','','about-station-tyres-3','','','2017-03-03 10:30:43','2017-03-03 10:30:43','',0,'http://stationtyresdarwen.co.uk/wp-content/uploads/about-station-tyres-2.jpg',0,'attachment','image/jpeg',0),(4413,1,'2017-02-28 09:34:20','2017-02-28 09:34:20','[vc_row css=\".vc_custom_1472016399122{margin-top: 30px !important;margin-bottom: 51px !important;}\"][vc_column width=\"1/2\" el_class=\"stm-col-pad-left\"][vc_column_text]\r\n<h3 style=\"margin-bottom: 18px;\">WELCOME TO THE <span style=\"color: #ffa500;\">STATION TYRES</span></h3>\r\n<h5 style=\"margin-bottom: 22px;\">Fast, friendly and great customer service - specialising in new and second-hand tyres!</h5>\r\n<p style=\"margin-bottom: 26px;\">Station tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).</p>\r\n<p style=\"margin-bottom: 26px;\">Established since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.</p>\r\n<p style=\"margin-bottom: 26px;\">If your car needs tracking, our Supertracker machine can effectively align your wheels - tracking prices starting from £20 up to £40!!</p>\r\n<p style=\"margin-bottom: 26px;\">While you wait for your vehicle to be ready, there is a warm and comfortable customer waiting area for you to sit and enjoy - with both toilets and refreshments if needed!</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"stm-col-pad-right\"][vc_single_image image=\"4406\" img_size=\"full\" stm_fancybox=\"yes\" css=\".vc_custom_1488274456547{margin-bottom: 35px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1445594570930{margin-bottom: 83px !important;}\"][vc_column width=\"1/2\" el_class=\"stm-col-pad-right\"][vc_column_text css=\".vc_custom_1445496956815{margin-bottom: 23px !important;}\"]\r\n<h3>CORE VALUES</h3>\r\n[/vc_column_text][vc_separator css=\".vc_custom_1445496980428{margin-bottom: 19px !important;}\"][vc_column_text css=\".vc_custom_1487920475807{margin-bottom: 24px !important;}\"]<span style=\"color: #fff; font-size: 13px;\">We go through extensive factory training so that we may provide you with the knowledge you need to make an educated decision in choosing the vehicle that is right for your lifestyle.</span>[/vc_column_text][vc_column_text]\r\n<ul class=\"list-style-1\">\r\n <li>Stress-free finance department.</li>\r\n <li>Robust selection of popular vehicles.</li>\r\n <li>350 offers on site, trusted by a community.</li>\r\n <li>Maintain your car to stay safe on the road</li>\r\n <li>We know how to handle a wide range of car services.</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"stm-col-pad-left\"][vc_custom_heading text=\"CUSTOMER TESTIMONIALS\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1445583787565{margin-bottom: 24px !important;}\"][stm_testimonials][stm_testimonial image=\"7\" author=\"JamesW28\" author_car=\"Requested for Tyres\"]\r\n<h4>Honest Service and Cheap Tyres</h4>\r\nWent to this tyre place for the first time expecting to need 4 tyres but the technician informed me I only needed one and the price was cheaper than others places I had been![/stm_testimonial][stm_testimonial image=\"7\" author=\"Yusuf\" author_car=\"Requested for Tyres\"]\r\n<h4>Great service, great price.</h4>\r\nWas recommended by friends and got not only exactly what I needed, it came with friendly, professional service at a very competitive price.[/stm_testimonial][/stm_testimonials][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"15\" grid_id=\"vc_gid:1488274360158-817cf3f5-54b3-9\" include=\"4408,4409,4410,4411\"][/vc_column][/vc_row]','About us','','inherit','closed','closed','','370-revision-v1','','','2017-02-28 09:34:20','2017-02-28 09:34:20','',370,'http://stationtyresdarwen.co.uk/370-revision-v1/',0,'revision','',0),(4415,1,'2017-03-01 17:49:12','2017-03-01 17:49:12','','favicon','','inherit','open','closed','','favicon','','','2017-03-01 17:49:12','2017-03-01 17:49:12','',0,'http://stationtyresdarwen.co.uk/wp-content/uploads/favicon-1.png',0,'attachment','image/png',0),(4416,1,'2017-03-01 17:49:17','2017-03-01 17:49:17','http://stationtyresdarwen.co.uk/wp-content/uploads/cropped-favicon-1.png','cropped-favicon-1.png','','inherit','open','closed','','cropped-favicon-1-png','','','2017-03-01 17:49:17','2017-03-01 17:49:17','',0,'http://stationtyresdarwen.co.uk/wp-content/uploads/cropped-favicon-1.png',0,'attachment','image/png',0),(4459,1,'2017-09-11 12:48:11','2017-09-11 11:48:11','[vc_row css=\".vc_custom_1487950973825{margin-bottom: 64px !important;}\"][vc_column][stm_contact_form form=\"717\" title=\"Contact Us\" css=\".vc_custom_1487923529721{padding-top: 30px !important;padding-right: 30px !important;padding-bottom: 30px !important;padding-left: 30px !important;background-color: #000000 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452251533394{margin-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1487923284932{margin-bottom: 25px !important;padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\" offset=\"vc_col-lg-4 vc_col-md-12\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-pin\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Address\" css=\".vc_custom_1487950918754{margin-bottom: 28px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487950918753{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">2-4 Kay St, Darwen, BB3 3BZ</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-phone\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Phone\" css=\".vc_custom_1505130489296{margin-bottom: 27px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1505130489295{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\"><a href=\"tel:01254705305\">01254 705 305</a> / 07713948270</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-time\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Hours\" css=\".vc_custom_1505130401930{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1505130401929{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">Open 7 Days</span>\r\n<span style=\"color: #888888; font-size: 14px;\">Mon - Sat: 09:00AM - 05:30PM\r\nSunday: 10:00AM - 02:30PM</span>[/stm_icon_box][/vc_column][vc_column css=\".vc_custom_1448867270861{margin-bottom: 25px !important;}\" offset=\"vc_col-lg-8 vc_col-md-12\"][stm_gmap map_height=\"420px\" map_zoom=\"18\" disable_mouse_whell=\"disable\" lat=\"53.6970894\" lng=\"-2.4629212\" infowindow_text=\"2-4 Kay St, Darwen BB3 3BZ, UK\" image=\"4381\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','712-revision-v1','','','2017-09-11 12:48:11','2017-09-11 11:48:11','',712,'http://stationtyresdarwen.co.uk/712-revision-v1/',0,'revision','',0),(4458,1,'2017-09-11 12:46:44','2017-09-11 11:46:44','[vc_row css=\".vc_custom_1487950973825{margin-bottom: 64px !important;}\"][vc_column][stm_contact_form form=\"717\" title=\"Contact Us\" css=\".vc_custom_1487923529721{padding-top: 30px !important;padding-right: 30px !important;padding-bottom: 30px !important;padding-left: 30px !important;background-color: #000000 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452251533394{margin-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1487923284932{margin-bottom: 25px !important;padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\" offset=\"vc_col-lg-4 vc_col-md-12\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-pin\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Address\" css=\".vc_custom_1487950918754{margin-bottom: 28px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487950918753{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">2-4 Kay St, Darwen, BB3 3BZ</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-phone\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Phone\" css=\".vc_custom_1488268843313{margin-bottom: 27px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1488268843311{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">01254 705 305 / 07713948270</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-time\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Hours\" css=\".vc_custom_1505130401930{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1505130401929{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">Open 7 Days</span>\r\n<span style=\"color: #888888; font-size: 14px;\">Mon - Sat: 09:00AM - 05:30PM\r\nSunday: 10:00AM - 02:30PM</span>[/stm_icon_box][/vc_column][vc_column css=\".vc_custom_1448867270861{margin-bottom: 25px !important;}\" offset=\"vc_col-lg-8 vc_col-md-12\"][stm_gmap map_height=\"420px\" map_zoom=\"18\" disable_mouse_whell=\"disable\" lat=\"53.6970894\" lng=\"-2.4629212\" infowindow_text=\"2-4 Kay St, Darwen BB3 3BZ, UK\" image=\"4381\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','712-revision-v1','','','2017-09-11 12:46:44','2017-09-11 11:46:44','',712,'http://stationtyresdarwen.co.uk/712-revision-v1/',0,'revision','',0),(4456,1,'2017-09-11 12:39:07','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2017-09-11 12:39:07','0000-00-00 00:00:00','',0,'http://stationtyresdarwen.co.uk/?p=4456',0,'post','',0),(4457,1,'2017-09-11 12:41:39','2017-09-11 11:41:39','[vc_row css=\".vc_custom_1487950973825{margin-bottom: 64px !important;}\"][vc_column][stm_contact_form form=\"717\" title=\"Contact Us\" css=\".vc_custom_1487923529721{padding-top: 30px !important;padding-right: 30px !important;padding-bottom: 30px !important;padding-left: 30px !important;background-color: #000000 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452251533394{margin-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1487923284932{margin-bottom: 25px !important;padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\" offset=\"vc_col-lg-4 vc_col-md-12\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-pin\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Address\" css=\".vc_custom_1487950918754{margin-bottom: 28px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487950918753{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">2-4 Kay St, Darwen, BB3 3BZ</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-phone\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Phone\" css=\".vc_custom_1488268843313{margin-bottom: 27px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1488268843311{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">01254 705 305 / 07713948270</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-time\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Hours\" css=\".vc_custom_1505130097276{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1505130097275{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">Mon - Sat: 09:00AM - 05:30PM\r\nSunday: 10:00AM - 02:30PM</span>[/stm_icon_box][/vc_column][vc_column css=\".vc_custom_1448867270861{margin-bottom: 25px !important;}\" offset=\"vc_col-lg-8 vc_col-md-12\"][stm_gmap map_height=\"420px\" map_zoom=\"18\" disable_mouse_whell=\"disable\" lat=\"53.6970894\" lng=\"-2.4629212\" infowindow_text=\"2-4 Kay St, Darwen BB3 3BZ, UK\" image=\"4381\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','712-revision-v1','','','2017-09-11 12:41:39','2017-09-11 11:41:39','',712,'http://stationtyresdarwen.co.uk/712-revision-v1/',0,'revision','',0),(4453,1,'2017-03-03 10:27:29','2017-03-03 10:27:29','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHO WE ARE\" font_container=\"tag:h2|font_size:45|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793519972{margin-bottom: 45px !important;}\"][vc_column_text]\r\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\r\nStation tyres are specialists in budget tyres in Darwen. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\r\n\r\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fabout-us%2F|||\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793492820{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\r\nPremium And Budget Range\r\nCatalytic Converters\r\nAll Makes & Models\r\nSame Day Fitting Service\r\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\r\nExhaust systems\r\nWheels\r\nBrake pads and discs\r\nWheel balancing\r\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\r\nTyre Repairs\r\nTyre fitting\r\nExhaust fitting\r\nWinter tyres\r\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\r\nVan tyres\r\n4x4 tyres\r\nTrailer tyres\r\nPremium brand tyres\r\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487923972573{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fservice%2F|||\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1487951534610{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"offer-bg\"][vc_column css=\".vc_custom_1487951487445{background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OFFERS YOU LOOKING\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487949699452{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793101333{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#090909\" shape=\"square\" align=\"center\" css=\".vc_custom_1487924011977{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Foffers%2F|||\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2017-03-03 10:27:29','2017-03-03 10:27:29','',4283,'http://stationtyresdarwen.co.uk/4283-revision-v1/',0,'revision','',0),(4455,1,'2017-03-03 10:42:54','2017-03-03 10:42:54','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHO WE ARE\" font_container=\"tag:h2|font_size:45|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793519972{margin-bottom: 45px !important;}\"][vc_column_text]\r\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\r\nStation tyres are specialists in budget tyres in Darwen. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\r\n\r\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fabout-us%2F|||\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793492820{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\r\nPremium And Budget Range\r\nCatalytic Converters\r\nAll Makes & Models\r\nSame Day Fitting Service\r\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\r\nExhaust systems\r\nWheels\r\nBrake pads and discs\r\nWheel balancing\r\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\r\nTyre Repairs\r\nTyre fitting\r\nExhaust fitting\r\nWinter tyres\r\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\r\nVan tyres\r\n4x4 tyres\r\nTrailer tyres\r\nPremium brand tyres\r\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487923972573{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fservice%2F|||\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1487951534610{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"offer-bg\"][vc_column css=\".vc_custom_1487951487445{background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OFFERS YOU LOOKING\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487949699452{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793101333{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#090909\" shape=\"square\" align=\"center\" css=\".vc_custom_1487924011977{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Foffers%2F|||\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2017-03-03 10:42:54','2017-03-03 10:42:54','',4283,'http://stationtyresdarwen.co.uk/4283-revision-v1/',0,'revision','',0),(4454,1,'2017-03-03 10:35:32','2017-03-03 10:35:32','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHO WE ARE\" font_container=\"tag:h2|font_size:45|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793519972{margin-bottom: 45px !important;}\"][vc_column_text]\r\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\r\nStation tyres are specialists in budget tyres in Darwen. We also provide a range of other services and have leading brand tyres in stock. Open 6 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\r\n\r\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fabout-us%2F|||\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793492820{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\r\nPremium And Budget Range\r\nCatalytic Converters\r\nAll Makes & Models\r\nSame Day Fitting Service\r\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\r\nExhaust systems\r\nWheels\r\nBrake pads and discs\r\nWheel balancing\r\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\r\nTyre Repairs\r\nTyre fitting\r\nExhaust fitting\r\nWinter tyres\r\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\r\nVan tyres\r\n4x4 tyres\r\nTrailer tyres\r\nPremium brand tyres\r\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487923972573{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fservice%2F|||\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1487951534610{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"offer-bg\"][vc_column css=\".vc_custom_1487951487445{background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OFFERS YOU LOOKING\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487949699452{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793101333{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#090909\" shape=\"square\" align=\"center\" css=\".vc_custom_1487924011977{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Foffers%2F|||\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Tyres in Darwen, Tyres Darwen','','inherit','closed','closed','','4283-revision-v1','','','2017-03-03 10:35:32','2017-03-03 10:35:32','',4283,'http://stationtyresdarwen.co.uk/4283-revision-v1/',0,'revision','',0),(4461,1,'2018-01-03 09:41:55','2018-01-03 09:41:55','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHO WE ARE\" font_container=\"tag:h2|font_size:45|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793519972{margin-bottom: 45px !important;}\"][vc_column_text]\r\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\r\nStation tyres are specialists in budget tyres in Darwen. We also provide a range of other services and have leading brand tyres in stock. Open 7 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\r\n\r\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fabout-us%2F|||\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793492820{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\r\nPremium And Budget Range\r\nCatalytic Converters\r\nAll Makes & Models\r\nSame Day Fitting Service\r\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\r\nExhaust systems\r\nWheels\r\nBrake pads and discs\r\nWheel balancing\r\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\r\nTyre Repairs\r\nTyre fitting\r\nExhaust fitting\r\nWinter tyres\r\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\r\nVan tyres\r\n4x4 tyres\r\nTrailer tyres\r\nPremium brand tyres\r\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487923972573{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fservice%2F|||\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1487951534610{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"offer-bg\"][vc_column css=\".vc_custom_1487951487445{background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OFFERS YOU LOOKING\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487949699452{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793101333{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#090909\" shape=\"square\" align=\"center\" css=\".vc_custom_1487924011977{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Foffers%2F|||\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2018-01-03 09:41:55','2018-01-03 09:41:55','',4283,'http://stationtyresdarwen.co.uk/4283-revision-v1/',0,'revision','',0),(4462,1,'2018-01-03 09:46:49','2018-01-03 09:46:49','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHO WE ARE\" font_container=\"tag:h2|font_size:45|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793519972{margin-bottom: 45px !important;}\"][vc_column_text]\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\nStation tyres are specialists in budget tyres in Darwen. We also provide a range of other services and have leading brand tyres in stock. Open 7 days a week - on Sunday 10:00 to 15:00, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\n\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fabout-us%2F|||\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793492820{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\nPremium And Budget Range\nCatalytic Converters\nAll Makes & Models\nSame Day Fitting Service\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\nExhaust systems\nWheels\nBrake pads and discs\nWheel balancing\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\nTyre Repairs\nTyre fitting\nExhaust fitting\nWinter tyres\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\nVan tyres\n4x4 tyres\nTrailer tyres\nPremium brand tyres\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487923972573{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fservice%2F|||\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1487951534610{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"offer-bg\"][vc_column css=\".vc_custom_1487951487445{background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OFFERS YOU LOOKING\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487949699452{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792976564{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £30.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792989446{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793025744{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793052206{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793077198{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793101333{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#090909\" shape=\"square\" align=\"center\" css=\".vc_custom_1487924011977{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Foffers%2F|||\"][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2018-01-03 09:46:49','2018-01-03 09:46:49','',4283,'http://stationtyresdarwen.co.uk/4283-revision-v1/',0,'revision','',0),(4463,1,'2018-01-03 09:57:53','2018-01-03 09:57:53','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHO WE ARE\" font_container=\"tag:h2|font_size:45|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793519972{margin-bottom: 45px !important;}\"][vc_column_text]\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\nStation tyres are specialists in budget tyres in Darwen. We also provide a range of other services and have leading brand tyres in stock. Open 7 days a week - on Sunday 10:00 to 15:00, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\n\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fabout-us%2F|||\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793492820{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\nPremium And Budget Range\nCatalytic Converters\nAll Makes & Models\nSame Day Fitting Service\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\nExhaust systems\nWheels\nBrake pads and discs\nWheel balancing\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\nTyre Repairs\nTyre fitting\nExhaust fitting\nWinter tyres\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\nVan tyres\n4x4 tyres\nTrailer tyres\nPremium brand tyres\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487923972573{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fservice%2F|||\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1487951534610{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"offer-bg\"][vc_column css=\".vc_custom_1487951487445{background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OFFERS YOU LOOKING\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487949699452{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973090966{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973106893{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973132074{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973146643{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973161269{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973175540{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#090909\" shape=\"square\" align=\"center\" css=\".vc_custom_1487924011977{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Foffers%2F|||\"][vc_column_text]\n<h5 style=\"text-align: center;\">To be eligible for this offer, at least 4 tyres must be purchased. So take advantage of this <em>limited time offer</em> and purchase these superb tyres now.</h5>\n[/vc_column_text][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2018-01-03 09:57:53','2018-01-03 09:57:53','',4283,'http://stationtyresdarwen.co.uk/4283-revision-v1/',0,'revision','',0),(4464,1,'2018-01-03 10:02:11','2018-01-03 10:02:11','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1487792709049{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OUR OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487951870402{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/12\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973578523{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973590950{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973605573{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973620020{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973636652{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487922520143{margin-top: 70px !important;margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/12\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922349346{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922354413{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973659837{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4367\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922394733{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"205/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922407507{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973676244{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4368\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922436386{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"205/50 R17\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922443553{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £45.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1488273883162{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4369\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922460170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"225/45 R17\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922464694{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £45.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1488273898398{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4366\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922484035{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"225/40 R18\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922472493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £45.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1488273910323{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Offers','','inherit','closed','closed','','4361-revision-v1','','','2018-01-03 10:02:11','2018-01-03 10:02:11','',4361,'http://stationtyresdarwen.co.uk/4361-revision-v1/',0,'revision','',0),(4465,1,'2018-01-03 10:03:14','2018-01-03 10:03:14','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHO WE ARE\" font_container=\"tag:h2|font_size:45|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793519972{margin-bottom: 45px !important;}\"][vc_column_text]\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\nStation tyres are specialists in budget tyres in Darwen. We also provide a range of other services and have leading brand tyres in stock. Open 7 days a week we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\n\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fabout-us%2F|||\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793492820{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\nPremium And Budget Range\nCatalytic Converters\nAll Makes & Models\nSame Day Fitting Service\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\nExhaust systems\nWheels\nBrake pads and discs\nWheel balancing\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\nTyre Repairs\nTyre fitting\nExhaust fitting\nWinter tyres\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\nVan tyres\n4x4 tyres\nTrailer tyres\nPremium brand tyres\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487923972573{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fservice%2F|||\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1487951534610{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"offer-bg\"][vc_column css=\".vc_custom_1487951487445{background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OFFERS YOU LOOKING\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487949699452{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973090966{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973106893{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973132074{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973146643{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973161269{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973175540{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#090909\" shape=\"square\" align=\"center\" css=\".vc_custom_1487924011977{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Foffers%2F|||\"][vc_column_text]\n<h5 style=\"text-align: center;\">To be eligible for this offer, at least 4 tyres must be purchased. So take advantage of this <em>limited time offer</em> and purchase these superb tyres now.</h5>\n[/vc_column_text][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2018-01-03 10:03:14','2018-01-03 10:03:14','',4283,'http://stationtyresdarwen.co.uk/4283-revision-v1/',0,'revision','',0),(4466,1,'2018-01-03 10:05:54','2018-01-03 10:05:54','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1487792709049{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OUR OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487951870402{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/12\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973578523{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973590950{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973605573{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973620020{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973636652{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487922520143{margin-top: 70px !important;margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/12\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922349346{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922354413{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973659837{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4367\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922394733{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"205/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922407507{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973676244{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4368\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922436386{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"205/50 R17\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922443553{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £45.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1488273883162{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4369\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922460170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"225/45 R17\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922464694{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £45.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1488273898398{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"2/12\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4366\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487922484035{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"225/40 R18\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487922472493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £45.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1488273910323{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/12\"][/vc_column_inner][/vc_row_inner][vc_column_text]\n<h4 style=\"text-align: center;\">To be eligible for this offer, at least 4 tyres must be purchased. So take advantage of this <em>limited time offer</em> and purchase these superb tyres now!</h4>\n[/vc_column_text][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Offers','','inherit','closed','closed','','4361-revision-v1','','','2018-01-03 10:05:54','2018-01-03 10:05:54','',4361,'http://stationtyresdarwen.co.uk/4361-revision-v1/',0,'revision','',0),(4467,1,'2018-01-03 10:06:46','2018-01-03 10:06:46','[vc_row full_width=\"stretch_row\" css=\".vc_custom_1448545243300{margin-bottom: 0px !important;}\" el_class=\"stm-slider-nice-height\"][vc_column][rev_slider_vc alias=\"home_slider\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" equal_height=\"yes\" css=\".vc_custom_1487791063915{padding-top: 70px !important;padding-bottom: 70px !important;background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_column][vc_row_inner][vc_column_inner width=\"1/2\"][vc_custom_heading text=\"ABOUT US\" font_container=\"tag:h5|font_size:24|text_align:left|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"WHO WE ARE\" font_container=\"tag:h2|font_size:45|text_align:left|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793519972{margin-bottom: 45px !important;}\"][vc_column_text]\n<h4>Fast, Friendly and Great Customer Service - Specialising in new and second-hand tyres!</h4>\nStation tyres are specialists in budget tyres in Darwen. We also provide a range of other services and have leading brand tyres in stock. Open 7 days a week we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).\n\nEstablished since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.[/vc_column_text][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fabout-us%2F|||\"][/vc_column_inner][vc_column_inner width=\"1/2\" css=\".vc_custom_1487790287540{background-position: 0 0 !important;background-repeat: no-repeat !important;}\"][vc_single_image image=\"4322\" img_size=\"full\" alignment=\"right\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row equal_height=\"yes\" css=\".vc_custom_1487791949737{padding-top: 116px !important;padding-bottom: 116px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/services-bg.png?id=6) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"stm-fullwidth-with-parallax\"][vc_column css=\".vc_custom_1487791986596{margin-bottom: 40px !important;}\"][vc_custom_heading text=\"FEW OF OUR SERVICES\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OUR SERVICES\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793492820{margin-bottom: 45px !important;}\"][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Replacement Exhausts\nPremium And Budget Range\nCatalytic Converters\nAll Makes & Models\nSame Day Fitting Service\nBattery suppliers[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Car Tyres\nExhaust systems\nWheels\nBrake pads and discs\nWheel balancing\nNew Tyres[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Part worn tyres\nTyre Repairs\nTyre fitting\nExhaust fitting\nWinter tyres\nWheel alignment[/vc_column_text][/vc_column][vc_column width=\"1/4\"][vc_column_text el_class=\"services-p\"]Oil change\nVan tyres\n4x4 tyres\nTrailer tyres\nPremium brand tyres\nKey dealer of Jinyu tyres.[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1487792085611{margin-top: 40px !important;}\"][vc_btn title=\"Read More\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#020202\" shape=\"square\" align=\"center\" css=\".vc_custom_1487923972573{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Fservice%2F|||\"][/vc_column][/vc_row][vc_row full_width=\"stretch_row\" css=\".vc_custom_1487951534610{padding-top: 70px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/offers-bg.png?id=11) !important;background-position: 0 0 !important;background-repeat: repeat !important;}\" el_class=\"offer-bg\"][vc_column css=\".vc_custom_1487951487445{background-position: 0 0 !important;background-repeat: repeat !important;}\"][vc_row_inner][vc_column_inner][vc_custom_heading text=\"OFFERS YOU LOOKING\" font_container=\"tag:h5|font_size:24|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\"][vc_custom_heading text=\"OFFERS\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487949699452{margin-bottom: 45px !important;}\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1487793251376{margin-bottom: 40px !important;}\"][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793212435{margin-top: 40px !important;}\"][vc_single_image image=\"4329\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487792807493{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"155/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792773920{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973090966{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793217874{margin-top: 40px !important;}\"][vc_single_image image=\"4330\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793001631{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"175/65 R14\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487792981616{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £35.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973106893{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793224653{margin-top: 40px !important;}\"][vc_single_image image=\"4331\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793014864{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/60 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793019081{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973132074{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793229635{margin-top: 40px !important;}\"][vc_single_image image=\"4332\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793041473{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"185/55 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793046101{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973146643{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793235215{margin-top: 40px !important;}\"][vc_single_image image=\"4333\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793065873{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/65 R15\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793070170{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973161269{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][vc_column_inner width=\"1/6\" css=\".vc_custom_1487793240785{margin-top: 40px !important;}\"][vc_single_image image=\"4328\" img_size=\"full\" alignment=\"center\" css=\".vc_custom_1487793089383{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\"195/55 R16\" font_container=\"tag:h3|font_size:20|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793094008{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][vc_custom_heading text=\" £40.00\" font_container=\"tag:h3|font_size:16|text_align:center|color:%23ffa500\" use_theme_fonts=\"yes\" css=\".vc_custom_1514973175540{margin-top: 0px !important;margin-bottom: 0px !important;border-top-width: 0px !important;border-bottom-width: 0px !important;padding-top: 0px !important;padding-bottom: 0px !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column][vc_btn title=\"VIEW MORE OFFERS\" style=\"custom\" custom_background=\"#ffa500\" custom_text=\"#090909\" shape=\"square\" align=\"center\" css=\".vc_custom_1487924011977{margin-top: 40px !important;}\" link=\"url:http%3A%2F%2Fstationtyresdarwen.co.uk%2Foffers%2F|||\"][vc_column_text]\n<h4 style=\"text-align: center;\">To be eligible for this offer, at least 4 tyres must be purchased. So take advantage of this <em>limited time offer</em> and purchase these superb tyres now!</h4>\n[/vc_column_text][/vc_column][/vc_row][vc_row el_class=\"stm-fullwidth-with-parallax\" css=\".vc_custom_1487793368178{padding-top: 91px !important;padding-bottom: 70px !important;background-image: url(http://stationtyresdarwen.co.uk/wp-content/uploads/contact-us-bg.png?id=10) !important;}\"][vc_column][vc_row_inner][vc_column_inner][vc_custom_heading text=\"CONTACT US\" font_container=\"tag:h2|font_size:45|text_align:center|color:%23ffffff\" use_theme_fonts=\"yes\" css=\".vc_custom_1487793473661{margin-bottom: 45px !important;}\"][contact-form-7 id=\"717\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Home','','inherit','closed','closed','','4283-revision-v1','','','2018-01-03 10:06:46','2018-01-03 10:06:46','',4283,'http://stationtyresdarwen.co.uk/4283-revision-v1/',0,'revision','',0),(4468,1,'2018-01-03 10:14:16','2018-01-03 10:14:16','[vc_row css=\".vc_custom_1472016399122{margin-top: 30px !important;margin-bottom: 51px !important;}\"][vc_column width=\"1/2\" el_class=\"stm-col-pad-left\"][vc_column_text]\n<h3 style=\"margin-bottom: 18px;\">WELCOME TO THE <span style=\"color: #ffa500;\">STATION TYRES</span></h3>\n<h5 style=\"margin-bottom: 22px;\">Fast, friendly and great customer service - specialising in new and second-hand tyres!</h5>\n<p style=\"margin-bottom: 26px;\">Station tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 7 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).</p>\n<p style=\"margin-bottom: 26px;\">Established since 1999, we are a family run business having built up a reputation of being honest and transparent with our services. We stock all ranges of tyres starting from 13\" to 21\" inclusive.</p>\n<p style=\"margin-bottom: 26px;\">If your car needs tracking, our Supertracker machine can effectively align your wheels - tracking prices starting from £20 up to £40!!</p>\n<p style=\"margin-bottom: 26px;\">While you wait for your vehicle to be ready, there is a warm and comfortable customer waiting area for you to sit and enjoy - with both toilets and refreshments if needed!</p>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"stm-col-pad-right\"][vc_single_image image=\"4406\" img_size=\"full\" stm_fancybox=\"yes\" css=\".vc_custom_1488274456547{margin-bottom: 35px !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1445594570930{margin-bottom: 83px !important;}\"][vc_column width=\"1/2\" el_class=\"stm-col-pad-right\"][vc_column_text css=\".vc_custom_1445496956815{margin-bottom: 23px !important;}\"]\n<h3>CORE VALUES</h3>\n[/vc_column_text][vc_separator css=\".vc_custom_1445496980428{margin-bottom: 19px !important;}\"][vc_column_text css=\".vc_custom_1487920475807{margin-bottom: 24px !important;}\"]<span style=\"color: #fff; font-size: 13px;\">We go through extensive factory training so that we may provide you with the knowledge you need to make an educated decision in choosing the vehicle that is right for your lifestyle.</span>[/vc_column_text][vc_column_text]\n<ul class=\"list-style-1\">\n <li>Stress-free finance department.</li>\n <li>Robust selection of popular vehicles.</li>\n <li>350 offers on site, trusted by a community.</li>\n <li>Maintain your car to stay safe on the road</li>\n <li>We know how to handle a wide range of car services.</li>\n</ul>\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" el_class=\"stm-col-pad-left\"][vc_custom_heading text=\"CUSTOMER TESTIMONIALS\" font_container=\"tag:h3|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1445583787565{margin-bottom: 24px !important;}\"][stm_testimonials][stm_testimonial image=\"7\" author=\"JamesW28\" author_car=\"Requested for Tyres\"]\n<h4>Honest Service and Cheap Tyres</h4>\nWent to this tyre place for the first time expecting to need 4 tyres but the technician informed me I only needed one and the price was cheaper than others places I had been![/stm_testimonial][stm_testimonial image=\"7\" author=\"Yusuf\" author_car=\"Requested for Tyres\"]\n<h4>Great service, great price.</h4>\nWas recommended by friends and got not only exactly what I needed, it came with friendly, professional service at a very competitive price.[/stm_testimonial][/stm_testimonials][/vc_column][/vc_row][vc_row][vc_column][vc_media_grid element_width=\"3\" gap=\"15\" grid_id=\"vc_gid:1514974406262-55c35e0b238f63b0449db176204c6a00-6\" include=\"4408,4409,4410,4411\"][/vc_column][/vc_row]','About us','','inherit','closed','closed','','370-revision-v1','','','2018-01-03 10:14:16','2018-01-03 10:14:16','',370,'http://stationtyresdarwen.co.uk/370-revision-v1/',0,'revision','',0),(4469,1,'2018-01-03 10:15:12','2018-01-03 10:15:12','[vc_row css=\".vc_custom_1446724724284{margin-top: 33px !important;margin-bottom: 42px !important;}\"][vc_column css=\".vc_custom_1446724718390{margin-bottom: 42px !important;}\"][vc_column_text css=\".vc_custom_1487916920576{margin-bottom: 24px !important;}\"]\n<h2><span style=\"color: #ffa500;\">OUR</span> SERVICES</h2>\n[/vc_column_text][vc_column_text css=\".vc_custom_1514974500483{margin-bottom: 31px !important;padding-left: 2px !important;}\"]<strong>Fast, friendly and great customer service - specialising in new and second-hand tyres!</strong>\n\nStation tyres are specialists in budget tyres. We also provide a range of other services and have leading brand tyres in stock. Open 7 days a week, we offer a fast and friendly service from our garage on Kay Street, Darwen (near the train station).[/vc_column_text][vc_custom_heading text=\"OUR SERVICES INCLUDE\" font_container=\"tag:h4|text_align:left\" use_theme_fonts=\"yes\" css=\".vc_custom_1446703859040{margin-bottom: 20px !important;}\"][vc_row_inner css=\".vc_custom_1446703897866{margin-bottom: 30px !important;}\"][vc_column_inner width=\"1/4\"][vc_column_text]\n<ul class=\"list-style-1\">\n <li>Replacement Exhausts</li>\n <li>Premium And Budget Range</li>\n <li>Catalytic Converters</li>\n <li>All Makes & Models</li>\n <li>Same Day Fitting Service</li>\n <li>Battery suppliers</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\n<ul class=\"list-style-1\">\n <li>Car tyres</li>\n <li>Exhaust systems</li>\n <li>Wheels</li>\n <li>Brake pads and discs</li>\n <li>Wheel balancing</li>\n <li>New Tyres</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\n<ul class=\"list-style-1\">\n <li>Part worn tyres</li>\n <li>Tyre repairs</li>\n <li>Tyre fitting</li>\n <li>Exhaust fitting</li>\n <li>Wheel balancing</li>\n <li>Winter tyres</li>\n</ul>\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/4\"][vc_column_text]\n<ul class=\"list-style-1\">\n <li>Wheel alignment</li>\n <li>Oil change</li>\n <li>Van tyres</li>\n <li>4x4 tyres</li>\n <li>Trailer tyres</li>\n <li>Premium brand tyres</li>\n</ul>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_column_text css=\".vc_custom_1446703904260{padding-left: 2px !important;}\"]<span style=\"color: #888888; font-size: 13px;\">Save yourself some time by scheduling service right here. After you submit the form, we\'ll be in touch to confirm your service appointment. It doesn\'t get much easier than that.</span>[/vc_column_text][/vc_column][/vc_row][vc_row css=\".vc_custom_1446724426854{margin-bottom: 0px !important;}\"][vc_column][stm_call_to_action_2 call_to_action_icon=\"stm-icon-question\" call_to_action_icon_right=\"stm-icon-phone2\" call_to_action_color=\"#ffa500\" call_to_action_text_color=\"#000000\" call_to_action_label=\"Have a Questions? Call Today!\" call_to_action_label_right=\"01254 917248\"][/vc_column][/vc_row]','Service','','inherit','closed','closed','','546-revision-v1','','','2018-01-03 10:15:12','2018-01-03 10:15:12','',546,'http://stationtyresdarwen.co.uk/546-revision-v1/',0,'revision','',0),(4470,1,'2018-01-03 10:17:45','2018-01-03 10:17:45','[vc_row css=\".vc_custom_1487950973825{margin-bottom: 64px !important;}\"][vc_column][stm_contact_form form=\"717\" title=\"Contact Us\" css=\".vc_custom_1487923529721{padding-top: 30px !important;padding-right: 30px !important;padding-bottom: 30px !important;padding-left: 30px !important;background-color: #000000 !important;}\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1452251533394{margin-bottom: 40px !important;}\"][vc_column css=\".vc_custom_1487923284932{margin-bottom: 25px !important;padding-top: 40px !important;padding-right: 40px !important;padding-bottom: 40px !important;padding-left: 40px !important;}\" offset=\"vc_col-lg-4 vc_col-md-12\"][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-pin\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Address\" css=\".vc_custom_1487950918754{margin-bottom: 28px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1487950918753{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">2-4 Kay St, Darwen, BB3 3BZ</span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-phone\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Phone\" css=\".vc_custom_1505130518033{margin-bottom: 27px !important;padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1505130518031{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\"><a href=\"tel:01254705305\">01254 705 305</a> / <a href=\"tel:07713948270\">07713948270</a></span>[/stm_icon_box][stm_icon_box title_holder=\"h4\" icon=\"stm-icon-time\" box_bg_color=\"rgba(255,255,255,0.01)\" box_text_color=\"#ffffff\" icon_color=\"#ffa500\" icon_size=\"31\" title=\"Sales Hours\" css=\".vc_custom_1514974632396{padding-top: 0px !important;padding-right: 0px !important;padding-bottom: 0px !important;padding-left: 0px !important;}\" line_height=\"18\" css_icon=\".vc_custom_1514974632392{margin-top: 2px !important;margin-right: 23px !important;margin-left: 4px !important;}\"]<span style=\"color: #888888; font-size: 14px;\">Open 7 Days</span>\n<span style=\"color: #888888; font-size: 14px;\">Mon - Sat: 09:00AM - 05:30PM\nSunday: 10:00AM - 15:00PM</span>[/stm_icon_box][/vc_column][vc_column css=\".vc_custom_1448867270861{margin-bottom: 25px !important;}\" offset=\"vc_col-lg-8 vc_col-md-12\"][stm_gmap map_height=\"420px\" map_zoom=\"18\" disable_mouse_whell=\"disable\" lat=\"53.6970894\" lng=\"-2.4629212\" infowindow_text=\"2-4 Kay St, Darwen BB3 3BZ, UK\" image=\"4381\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','712-revision-v1','','','2018-01-03 10:17:45','2018-01-03 10:17:45','',712,'http://stationtyresdarwen.co.uk/712-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_revslider_css`
--
DROP TABLE IF EXISTS `wp_revslider_css`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_css` (
`id` int(9) NOT NULL AUTO_INCREMENT,
`handle` text NOT NULL,
`settings` longtext,
`hover` longtext,
`params` longtext NOT NULL,
`advanced` longtext,
UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=110 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_revslider_css`
--
LOCK TABLES `wp_revslider_css` WRITE;
/*!40000 ALTER TABLE `wp_revslider_css` DISABLE KEYS */;
INSERT INTO `wp_revslider_css` VALUES (1,'.tp-caption.medium_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(2,'.tp-caption.small_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(3,'.tp-caption.medium_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(4,'.tp-caption.large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(5,'.tp-caption.very_large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"},\"hover\":\"\"}'),(6,'.tp-caption.very_big_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#000\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}'),(7,'.tp-caption.very_big_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#000\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#fff\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}'),(8,'.tp-caption.modern_medium_fat','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#000\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(9,'.tp-caption.modern_medium_fat_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(10,'.tp-caption.modern_medium_light','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(11,'.tp-caption.modern_big_bluebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"letter-spacing\":\"0\"},\"hover\":\"\"}'),(12,'.tp-caption.modern_big_redbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"padding-top\":\"1px\",\"letter-spacing\":\"0\"},\"hover\":\"\"}'),(13,'.tp-caption.modern_small_text_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#555\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}'),(14,'.tp-caption.boxshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','[]','{\"idle\":{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"},\"hover\":\"\"}'),(15,'.tp-caption.black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#000\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(16,'.tp-caption.noshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','[]','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(17,'.tp-caption.thinheadline_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}'),(18,'.tp-caption.thintext_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}'),(19,'.tp-caption.largeblackbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}'),(20,'.tp-caption.largepinkbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}'),(21,'.tp-caption.largewhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}'),(22,'.tp-caption.largegreenbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}'),(23,'.tp-caption.excerpt','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px 4px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"-1.5px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\"},\"hover\":\"\"}'),(24,'.tp-caption.large_bold_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(25,'.tp-caption.medium_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(26,'.tp-caption.small_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(27,'.tp-caption.lightgrey_divider','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}','{\"idle\":{\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\"},\"hover\":\"\"}'),(28,'.tp-caption.large_bold_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(29,'.tp-caption.medium_bg_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(30,'.tp-caption.medium_bold_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(31,'.tp-caption.medium_light_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(32,'.tp-caption.medium_bg_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(33,'.tp-caption.medium_bold_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(34,'.tp-caption.medium_bg_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(35,'.tp-caption.grassfloor','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}','{\"idle\":{\"width\":\"4000px\",\"height\":\"150px\"},\"hover\":\"\"}'),(36,'.tp-caption.large_bold_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(37,'.tp-caption.medium_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(38,'.tp-caption.mediumlarge_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(39,'.tp-caption.mediumlarge_light_white_center','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(40,'.tp-caption.medium_bg_asbestos','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(41,'.tp-caption.medium_light_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(42,'.tp-caption.large_bold_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(43,'.tp-caption.mediumlarge_light_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(44,'.tp-caption.small_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(45,'.tp-caption.roundedimage','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(46,'.tp-caption.large_bg_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"idle\":[],\"hover\":\"\"}'),(47,'.tp-caption.mediumwhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(48,'.tp-caption.MarkerDisplay','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ff0000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"font-style\":\"normal\",\"font-family\":\"Permanent Marker\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(49,'.tp-caption.Restaurant-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"color\":\"#ffffff\",\"font-size\":\"120px\",\"line-height\":\"120px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(50,'.tp-caption.Restaurant-Cursive','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Nothing you could do\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(51,'.tp-caption.Restaurant-ScrollDownText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"color\":\"#ffffff\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(52,'.tp-caption.Restaurant-Description','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"color\":\"#ffffff\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(53,'.tp-caption.Restaurant-Price','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(54,'.tp-caption.Restaurant-Menuitem','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"Power2.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(55,'.tp-caption.Furniture-LogoText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"160px\",\"line-height\":\"150px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(56,'.tp-caption.Furniture-Plus','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0.5\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"6px\",\"7px\",\"4px\",\"7px\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\",\"box-shadow\":\"rgba(0,0,0,0.1) 0 1px 3px\"},\"hover\":\"\"}'),(57,'.tp-caption.Furniture-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(58,'.tp-caption.Furniture-Subtitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(59,'.tp-caption.Gym-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(60,'.tp-caption.Gym-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}'),(61,'.tp-caption.Gym-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"22\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(62,'.tp-caption.Fashion-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"20px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(63,'.tp-caption.Fashion-BigDisplay','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(64,'.tp-caption.Fashion-TextBlock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"40px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(65,'.tp-caption.Sports-Display','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"13px\"},\"hover\":\"\"}'),(66,'.tp-caption.Sports-DisplayFat','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":[\"\"],\"hover\":\"\"}'),(67,'.tp-caption.Sports-Subline','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"32px\",\"line-height\":\"32px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"4px\"},\"hover\":\"\"}'),(68,'.tp-caption.Instagram-Caption','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(69,'.tp-caption.News-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"60px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(70,'.tp-caption.News-Subtitle','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0px\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"300\",\"easing\":\"Power3.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"24px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(71,'.tp-caption.Photography-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}'),(72,'.tp-caption.Photography-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#777777\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(73,'.tp-caption.Photography-ImageHover','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"1000\",\"easing\":\"Power3.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(74,'.tp-caption.Photography-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#00ffde\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(75,'.tp-caption.Photography-Textblock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(76,'.tp-caption.Photography-Subline-2','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(77,'.tp-caption.Photography-ImageHover2','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"Back.easeOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Arial\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(78,'.tp-caption.WebProduct-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(79,'.tp-caption.WebProduct-SubTitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(80,'.tp-caption.WebProduct-Content','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}','{\"idle\":\"\",\"hover\":\"\"}'),(81,'.tp-caption.WebProduct-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(82,'.tp-caption.WebProduct-Title-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(83,'.tp-caption.WebProduct-SubTitle-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(84,'.tp-caption.WebProduct-Content-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(85,'.tp-caption.FatRounded','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"20px\",\"22px\",\"20px\",\"25px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.5\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}'),(86,'.tp-caption.NotGeneric-Title','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"70px\",\"font-weight\":\"800\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 0px 10px 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"[object Object]\",\"hover\":\"\"}'),(87,'.tp-caption.NotGeneric-SubTitle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}'),(88,'.tp-caption.NotGeneric-CallToAction','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 30px 10px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}'),(89,'.tp-caption.NotGeneric-Icon','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"default\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}'),(90,'.tp-caption.NotGeneric-Menuitem','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"27px 30px 27px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}'),(91,'.tp-caption.MarkerStyle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Permanent Marker\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"text-align\":\"left\",\"0\":\"\"},\"hover\":\"\"}'),(92,'.tp-caption.Gym-Menuitem','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(93,'.tp-caption.Newspaper-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#FFFFFF\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"17px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(94,'.tp-caption.Newspaper-Subtitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#a8d8ee\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(95,'.tp-caption.Newspaper-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(96,'.tp-caption.Newspaper-Title-Centered','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"center\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(97,'.tp-caption.Hero-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(98,'.tp-caption.Video-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(99,'.tp-caption.Video-SubTitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"12px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.35\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(100,'.tp-caption.NotGeneric-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}'),(101,'.tp-caption.NotGeneric-BigButton','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"27px\",\"30px\",\"27px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(102,'.tp-caption.WebProduct-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"48px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0px\",\"40px\",\"0px\",\"40px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}'),(103,'.tp-caption.Restaurant-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffe081\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#0a0a0a\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}'),(104,'.tp-caption.Gym-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power1.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#8bc027\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}'),(105,'.tp-caption.Gym-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"0\",\"border-color\":\"#8bc027\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Power2.easeInOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}'),(106,'.tp-caption.Sports-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(107,'.tp-caption.Sports-Button-Red','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#db1c22\",\"background-transparency\":\"1\",\"border-color\":\"#db1c22\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}'),(108,'.tp-caption.Photography-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"Power3.easeOut\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}'),(109,'.tp-caption.Newspaper-Button-2','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"Linear.easeNone\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}','{\"idle\":\"\",\"hover\":\"\"}');
/*!40000 ALTER TABLE `wp_revslider_css` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_revslider_layer_animations`
--
DROP TABLE IF EXISTS `wp_revslider_layer_animations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_layer_animations` (
`id` int(9) NOT NULL AUTO_INCREMENT,
`handle` text NOT NULL,
`params` text NOT NULL,
`settings` text,
UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_revslider_layer_animations`
--
LOCK TABLES `wp_revslider_layer_animations` WRITE;
/*!40000 ALTER TABLE `wp_revslider_layer_animations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_revslider_layer_animations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_revslider_navigations`
--
DROP TABLE IF EXISTS `wp_revslider_navigations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_navigations` (
`id` int(9) NOT NULL AUTO_INCREMENT,
`name` varchar(191) NOT NULL,
`handle` varchar(191) NOT NULL,
`css` longtext NOT NULL,
`markup` longtext NOT NULL,
`settings` longtext,
UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_revslider_navigations`
--
LOCK TABLES `wp_revslider_navigations` WRITE;
/*!40000 ALTER TABLE `wp_revslider_navigations` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_revslider_navigations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_revslider_sliders`
--
DROP TABLE IF EXISTS `wp_revslider_sliders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_sliders` (
`id` int(9) NOT NULL AUTO_INCREMENT,
`title` tinytext NOT NULL,
`alias` tinytext,
`params` longtext NOT NULL,
`settings` text,
`type` varchar(191) NOT NULL DEFAULT '',
UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_revslider_sliders`
--
LOCK TABLES `wp_revslider_sliders` WRITE;
/*!40000 ALTER TABLE `wp_revslider_sliders` DISABLE KEYS */;
INSERT INTO `wp_revslider_sliders` VALUES (1,'Home slider','home_slider','{\"hero_active\":\"-1\",\"source_type\":\"gallery\",\"instagram-count\":\"\",\"instagram-transient\":\"1200\",\"instagram-type\":\"user\",\"instagram-user-id\":\"\",\"flickr-count\":\"\",\"flickr-transient\":\"1200\",\"flickr-api-key\":\"\",\"flickr-type\":\"publicphotos\",\"flickr-user-url\":\"\",\"flickr-photoset\":\"\",\"flickr-photoset-select\":\"\",\"flickr-gallery-url\":\"\",\"flickr-group-url\":\"\",\"facebook-count\":\"\",\"facebook-transient\":\"1200\",\"facebook-page-url\":\"\",\"facebook-type-source\":\"album\",\"facebook-album\":\"\",\"facebook-album-select\":\"\",\"facebook-app-id\":\"\",\"facebook-app-secret\":\"\",\"twitter-count\":\"\",\"twitter-transient\":\"1200\",\"twitter-user-id\":\"\",\"twitter-image-only\":\"off\",\"twitter-include-retweets\":\"off\",\"twitter-exclude-replies\":\"off\",\"twitter-consumer-key\":\"\",\"twitter-consumer-secret\":\"\",\"twitter-access-token\":\"\",\"twitter-access-secret\":\"\",\"youtube-count\":\"\",\"youtube-transient\":\"1200\",\"youtube-api\":\"\",\"youtube-channel-id\":\"\",\"youtube-type-source\":\"channel\",\"youtube-playlist\":\"\",\"youtube-playlist-select\":\"\",\"vimeo-count\":\"\",\"vimeo-transient\":\"1200\",\"vimeo-type-source\":\"user\",\"vimeo-username\":\"\",\"vimeo-groupname\":\"\",\"vimeo-albumid\":\"\",\"vimeo-channelname\":\"\",\"product_types\":\"product\",\"product_category\":\"\",\"posts_list\":\"\",\"fetch_type\":\"cat_tag\",\"post_types\":\"post\",\"post_category\":\"\",\"product_sortby\":\"ID\",\"product_sort_direction\":\"DESC\",\"max_slider_products\":\"30\",\"excerpt_limit_product\":\"55\",\"reg_price_from\":\"\",\"reg_price_to\":\"\",\"sale_price_from\":\"\",\"sale_price_to\":\"\",\"instock_only\":\"off\",\"featured_only\":\"off\",\"post_sortby\":\"ID\",\"posts_sort_direction\":\"DESC\",\"max_slider_posts\":\"30\",\"excerpt_limit\":\"55\",\"title\":\"Home slider\",\"alias\":\"home_slider\",\"shortcode\":\"[rev_slider alias=\\\\\\\"home_slider\\\\\\\"]\",\"slider-type\":\"standard\",\"slider_type\":\"fullwidth\",\"width\":\"1240\",\"height\":\"757\",\"width_notebook\":\"1024\",\"height_notebook\":\"757\",\"enable_custom_size_notebook\":\"on\",\"width_tablet\":\"778\",\"height_tablet\":\"757\",\"enable_custom_size_tablet\":\"on\",\"width_mobile\":\"480\",\"height_mobile\":\"757\",\"enable_custom_size_iphone\":\"on\",\"full_screen_align_force\":\"off\",\"fullscreen_min_height\":\"\",\"autowidth_force\":\"off\",\"fullscreen_offset_container\":\"\",\"fullscreen_offset_size\":\"\",\"main_overflow_hidden\":\"off\",\"auto_height\":\"off\",\"min_height\":\"757\",\"max_width\":\"\",\"force_full_width\":\"on\",\"next_slide_on_window_focus\":\"off\",\"disable_focus_listener\":\"off\",\"def-layer_selection\":\"off\",\"slider_id\":\"\",\"delay\":\"5000\",\"start_js_after_delay\":\"0\",\"def-slide_transition\":\"fade\",\"def-transition_duration\":\"300\",\"def-image_source_type\":\"full\",\"def-background_fit\":\"cover\",\"def-bg_fit_x\":\"100\",\"def-bg_fit_y\":\"100\",\"def-bg_position\":\"center center\",\"def-bg_position_x\":\"0\",\"def-bg_position_y\":\"0\",\"def-bg_repeat\":\"no-repeat\",\"def-kenburn_effect\":\"off\",\"def-kb_start_fit\":\"100\",\"def-kb_easing\":\"Linear.easeNone\",\"def-kb_end_fit\":\"100\",\"def-kb_start_offset_x\":\"0\",\"def-kb_start_offset_y\":\"0\",\"def-kb_end_offset_x\":\"0\",\"def-kb_end_offset_y\":\"0\",\"def-kb_start_rotate\":\"0\",\"def-kb_end_rotate\":\"0\",\"def-kb_duration\":\"10000\",\"0\":\"blank\",\"start_with_slide_enable\":\"off\",\"start_with_slide\":\"1\",\"first_transition_active\":\"off\",\"first_transition_type\":\"fade\",\"first_transition_duration\":\"300\",\"first_transition_slot_amount\":\"7\",\"stop_on_hover\":\"off\",\"stop_slider\":\"off\",\"stop_after_loops\":\"0\",\"stop_at_slide\":\"2\",\"shuffle\":\"off\",\"loop_slide\":\"off\",\"label_viewport\":\"off\",\"viewport_start\":\"wait\",\"viewport_area\":\"80\",\"label_presetheight\":\"off\",\"waitforinit\":\"off\",\"enable_progressbar\":\"off\",\"show_timerbar\":\"top\",\"progress_height\":\"5\",\"progress_opa\":\"15\",\"progressbar_color\":\"#000000\",\"disable_on_mobile\":\"off\",\"disable_kenburns_on_mobile\":\"off\",\"hide_slider_under\":\"0\",\"hide_defined_layers_under\":\"0\",\"hide_all_layers_under\":\"0\",\"shadow_type\":\"0\",\"background_dotted_overlay\":\"none\",\"background_color\":\"transparent\",\"padding\":\"0\",\"show_background_image\":\"off\",\"background_image\":\"http:\\/\\/stationtyresdarwen.co.uk\\/wp-content\\/\",\"bg_fit\":\"cover\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center center\",\"position\":\"center\",\"margin_top\":\"0\",\"margin_bottom\":\"0\",\"margin_left\":\"0\",\"margin_right\":\"0\",\"use_spinner\":\"2\",\"spinner_color\":\"#e32121\",\"enable_arrows\":\"on\",\"rtl_arrows\":\"off\",\"navigation_arrow_style\":\"round\",\"navigation_arrows_preset\":\"default\",\"ph-round-arrows-hover-bg-color-color-rgba-def\":\"off\",\"ph-round-arrows-hover-bg-color-color-rgba\":\"#000000\",\"ph-round-arrows-arrow-size-custom-def\":\"off\",\"ph-round-arrows-arrow-size-custom\":\"20\",\"ph-round-arrows-arrow-color-color-def\":\"off\",\"ph-round-arrows-arrow-color-color\":\"#ffffff\",\"ph-round-arrows-bg-size-custom-def\":\"off\",\"ph-round-arrows-bg-size-custom\":\"40\",\"ph-round-arrows-bg-color-custom-def\":\"off\",\"ph-round-arrows-bg-color-custom\":\"0,0,0,0.5\",\"arrows_always_on\":\"false\",\"hide_arrows\":\"200\",\"hide_arrows_mobile\":\"1200\",\"hide_arrows_on_mobile\":\"off\",\"arrows_under_hidden\":\"0\",\"hide_arrows_over\":\"off\",\"arrows_over_hidden\":\"0\",\"leftarrow_align_hor\":\"left\",\"leftarrow_align_vert\":\"center\",\"leftarrow_offset_hor\":\"20\",\"leftarrow_offset_vert\":\"0\",\"leftarrow_position\":\"slider\",\"rightarrow_align_hor\":\"right\",\"rightarrow_align_vert\":\"center\",\"rightarrow_offset_hor\":\"20\",\"rightarrow_offset_vert\":\"0\",\"rightarrow_position\":\"slider\",\"enable_bullets\":\"off\",\"rtl_bullets\":\"off\",\"navigation_bullets_style\":\"round\",\"navigation_bullets_preset\":\"default\",\"ph-round-bullets-hover-bullet-bg-color-def\":\"off\",\"ph-round-bullets-hover-bullet-bg-color\":\"#666666\",\"ph-round-bullets-border-size-custom-def\":\"off\",\"ph-round-bullets-border-size-custom\":\"3\",\"ph-round-bullets-border-color-color-def\":\"off\",\"ph-round-bullets-border-color-color\":\"#e5e5e5\",\"ph-round-bullets-bullet-bg-bottom-color-def\":\"off\",\"ph-round-bullets-bullet-bg-bottom-color\":\"#e1e1e1\",\"ph-round-bullets-bullet-bg-top-color-def\":\"off\",\"ph-round-bullets-bullet-bg-top-color\":\"#999999\",\"ph-round-bullets-bullet-size-custom-def\":\"off\",\"ph-round-bullets-bullet-size-custom\":\"12\",\"bullets_space\":\"5\",\"bullets_direction\":\"horizontal\",\"bullets_always_on\":\"false\",\"hide_bullets\":\"200\",\"hide_bullets_mobile\":\"1200\",\"hide_bullets_on_mobile\":\"off\",\"bullets_under_hidden\":\"0\",\"hide_bullets_over\":\"off\",\"bullets_over_hidden\":\"0\",\"bullets_align_hor\":\"center\",\"bullets_align_vert\":\"bottom\",\"bullets_offset_hor\":\"0\",\"bullets_offset_vert\":\"20\",\"bullets_position\":\"slider\",\"enable_thumbnails\":\"off\",\"rtl_thumbnails\":\"off\",\"thumbnails_padding\":\"5\",\"span_thumbnails_wrapper\":\"off\",\"thumbnails_wrapper_color\":\"transparent\",\"thumbnails_wrapper_opacity\":\"100\",\"thumbnails_style\":\"round\",\"navigation_thumbs_preset\":\"default\",\"ph-round-thumbs-title-font-size-custom-def\":\"off\",\"ph-round-thumbs-title-font-size-custom\":\"12\",\"ph-round-thumbs-title-color-color-rgba-def\":\"off\",\"ph-round-thumbs-title-color-color-rgba\":\"#ffffff\",\"ph-round-thumbs-title-bg-color-rgba-def\":\"off\",\"ph-round-thumbs-title-bg-color-rgba\":\"rgba(0,0,0,0.85)\",\"thumb_amount\":\"5\",\"thumbnails_space\":\"5\",\"thumbnail_direction\":\"horizontal\",\"thumb_width\":\"100\",\"thumb_height\":\"50\",\"thumb_width_min\":\"100\",\"thumbs_always_on\":\"false\",\"hide_thumbs\":\"200\",\"hide_thumbs_mobile\":\"1200\",\"hide_thumbs_on_mobile\":\"off\",\"thumbs_under_hidden\":\"0\",\"hide_thumbs_over\":\"off\",\"thumbs_over_hidden\":\"0\",\"thumbnails_inner_outer\":\"inner\",\"thumbnails_align_hor\":\"center\",\"thumbnails_align_vert\":\"bottom\",\"thumbnails_offset_hor\":\"0\",\"thumbnails_offset_vert\":\"20\",\"thumbnails_position\":\"slider\",\"enable_tabs\":\"off\",\"rtl_tabs\":\"off\",\"tabs_padding\":\"5\",\"span_tabs_wrapper\":\"off\",\"tabs_wrapper_color\":\"transparent\",\"tabs_wrapper_opacity\":\"5\",\"tabs_style\":\"round\",\"navigation_tabs_preset\":\"default\",\"ph-round-tabs-param2-size-custom-def\":\"off\",\"ph-round-tabs-param2-size-custom\":\"14\",\"ph-round-tabs-param2-color-color-rgba-def\":\"off\",\"ph-round-tabs-param2-color-color-rgba\":\"0,0,0,0\",\"ph-round-tabs-contentcolor-color-rgba-def\":\"off\",\"ph-round-tabs-contentcolor-color-rgba\":\"#333333\",\"ph-round-tabs-bgcolor-color-rgba-def\":\"off\",\"ph-round-tabs-bgcolor-color-rgba\":\"rgba(0,0,0,0)\",\"ph-round-tabs-hover-bg-color-color-rgba-def\":\"off\",\"ph-round-tabs-hover-bg-color-color-rgba\":\"#eeeeee\",\"ph-round-tabs-param1-size-custom-def\":\"off\",\"ph-round-tabs-param1-size-custom\":\"12\",\"ph-round-tabs-param1-color-color-rgba-def\":\"off\",\"ph-round-tabs-param1-color-color-rgba\":\"rgba(51,51,51,0.5)\",\"ph-round-tabs-image-size-custom-def\":\"off\",\"ph-round-tabs-image-size-custom\":\"60\",\"ph-round-tabs-border-size-custom-def\":\"off\",\"ph-round-tabs-border-size-custom\":\"1\",\"ph-round-tabs-border-color-color-rgba-def\":\"off\",\"ph-round-tabs-border-color-color-rgba\":\"#e5e5e5\",\"ph-round-tabs-font-family-font_family-def\":\"off\",\"ph-round-tabs-font-family-font_family\":\"Roboto\",\"tabs_amount\":\"5\",\"tabs_space\":\"5\",\"tabs_direction\":\"horizontal\",\"tabs_width\":\"100\",\"tabs_height\":\"50\",\"tabs_width_min\":\"100\",\"tabs_always_on\":\"false\",\"hide_tabs\":\"200\",\"hide_tabs_mobile\":\"1200\",\"hide_tabs_on_mobile\":\"off\",\"tabs_under_hidden\":\"0\",\"hide_tabs_over\":\"off\",\"tabs_over_hidden\":\"0\",\"tabs_inner_outer\":\"inner\",\"tabs_align_hor\":\"center\",\"tabs_align_vert\":\"bottom\",\"tabs_offset_hor\":\"0\",\"tabs_offset_vert\":\"20\",\"tabs_position\":\"slider\",\"touchenabled\":\"off\",\"drag_block_vertical\":\"off\",\"swipe_velocity\":\"75\",\"swipe_min_touches\":\"1\",\"swipe_direction\":\"horizontal\",\"keyboard_navigation\":\"off\",\"keyboard_direction\":\"horizontal\",\"mousescroll_navigation\":\"off\",\"mousescroll_navigation_reverse\":\"default\",\"previewimage_width\":\"100\",\"previewimage_height\":\"50\",\"carousel_infinity\":\"off\",\"carousel_space\":\"0\",\"carousel_borderr\":\"0\",\"carousel_borderr_unit\":\"px\",\"carousel_padding_top\":\"0\",\"carousel_padding_bottom\":\"0\",\"carousel_maxitems\":\"3\",\"carousel_stretch\":\"off\",\"showalllayers_carousel\":\"off\",\"carousel_easing\":\"Power3.easeInOut\",\"carousel_speed\":\"800\",\"carousel_fadeout\":\"on\",\"carousel_varyfade\":\"off\",\"carousel_rotation\":\"off\",\"carousel_varyrotate\":\"off\",\"carousel_maxrotation\":\"0\",\"carousel_scale\":\"off\",\"carousel_varyscale\":\"off\",\"carousel_scaledown\":\"50\",\"carousel_hposition\":\"center\",\"carousel_vposition\":\"center\",\"use_parallax\":\"on\",\"disable_parallax_mobile\":\"on\",\"ddd_parallax\":\"off\",\"ddd_parallax_shadow\":\"off\",\"ddd_parallax_bgfreeze\":\"off\",\"ddd_parallax_overflow\":\"off\",\"ddd_parallax_layer_overflow\":\"off\",\"ddd_parallax_zcorrection\":\"65\",\"parallax_type\":\"mouse+scroll\",\"parallax_origo\":\"enterpoint\",\"parallax_speed\":\"400\",\"parallax_level_16\":\"55\",\"parallax_level_1\":\"5\",\"parallax_level_2\":\"10\",\"parallax_level_3\":\"15\",\"parallax_level_4\":\"20\",\"parallax_level_5\":\"25\",\"parallax_level_6\":\"30\",\"parallax_level_7\":\"35\",\"parallax_level_8\":\"40\",\"parallax_level_9\":\"45\",\"parallax_level_10\":\"46\",\"parallax_level_11\":\"47\",\"parallax_level_12\":\"48\",\"parallax_level_13\":\"49\",\"parallax_level_14\":\"50\",\"parallax_level_15\":\"51\",\"fade_scrolleffect\":\"off\",\"blur_scrolleffect\":\"off\",\"grayscale_scrolleffect\":\"off\",\"scrolleffect_maxblur\":\"10\",\"scrolleffect_bg\":\"off\",\"scrolleffect_layers\":\"off\",\"scrolleffect_parallax_layers\":\"off\",\"scrolleffect_static_layers\":\"off\",\"scrolleffect_static_parallax_layers\":\"off\",\"scrolleffect_direction\":\"both\",\"scrolleffect_tilt\":\"30\",\"scrolleffect_multiplicator\":\"1.3\",\"scrolleffect_multiplicator_layers\":\"1.3\",\"scrolleffect_off_mobile\":\"on\",\"lazy_load_type\":\"none\",\"simplify_ie8_ios4\":\"off\",\"show_alternative_type\":\"off\",\"show_alternate_image\":\"\",\"ignore_height_changes\":\"off\",\"ignore_height_changes_px\":\"0\",\"jquery_noconflict\":\"off\",\"js_to_body\":\"false\",\"output_type\":\"none\",\"jquery_debugmode\":\"off\",\"custom_css\":\"\",\"custom_javascript\":\"\"}','{\"version\":5}',''),(2,'about','about','{\"hero_active\":\"-1\",\"source_type\":\"gallery\",\"instagram-count\":\"\",\"instagram-transient\":\"1200\",\"instagram-type\":\"user\",\"instagram-user-id\":\"\",\"flickr-count\":\"\",\"flickr-transient\":\"1200\",\"flickr-api-key\":\"\",\"flickr-type\":\"publicphotos\",\"flickr-user-url\":\"\",\"flickr-photoset\":\"\",\"flickr-photoset-select\":\"\",\"flickr-gallery-url\":\"\",\"flickr-group-url\":\"\",\"facebook-count\":\"\",\"facebook-transient\":\"1200\",\"facebook-page-url\":\"\",\"facebook-type-source\":\"album\",\"facebook-album\":\"\",\"facebook-album-select\":\"\",\"facebook-app-id\":\"\",\"facebook-app-secret\":\"\",\"twitter-count\":\"\",\"twitter-transient\":\"1200\",\"twitter-user-id\":\"\",\"twitter-image-only\":\"off\",\"twitter-include-retweets\":\"off\",\"twitter-exclude-replies\":\"off\",\"twitter-consumer-key\":\"\",\"twitter-consumer-secret\":\"\",\"twitter-access-token\":\"\",\"twitter-access-secret\":\"\",\"youtube-count\":\"\",\"youtube-transient\":\"1200\",\"youtube-api\":\"\",\"youtube-channel-id\":\"\",\"youtube-type-source\":\"channel\",\"youtube-playlist\":\"\",\"youtube-playlist-select\":\"\",\"vimeo-count\":\"\",\"vimeo-transient\":\"1200\",\"vimeo-type-source\":\"user\",\"vimeo-username\":\"\",\"vimeo-groupname\":\"\",\"vimeo-albumid\":\"\",\"vimeo-channelname\":\"\",\"product_types\":\"product\",\"product_category\":\"\",\"posts_list\":\"\",\"fetch_type\":\"cat_tag\",\"post_types\":\"post\",\"post_category\":\"\",\"product_sortby\":\"ID\",\"product_sort_direction\":\"DESC\",\"max_slider_products\":\"30\",\"excerpt_limit_product\":\"55\",\"reg_price_from\":\"\",\"reg_price_to\":\"\",\"sale_price_from\":\"\",\"sale_price_to\":\"\",\"instock_only\":\"off\",\"featured_only\":\"off\",\"post_sortby\":\"ID\",\"posts_sort_direction\":\"DESC\",\"max_slider_posts\":\"30\",\"excerpt_limit\":\"55\",\"title\":\"about\",\"alias\":\"about\",\"shortcode\":\"[rev_slider alias=\\\"about\\\"]\",\"slider-type\":\"standard\",\"slider_type\":\"fullwidth\",\"width\":\"1240\",\"height\":\"757\",\"width_notebook\":\"1024\",\"height_notebook\":\"757\",\"enable_custom_size_notebook\":\"on\",\"width_tablet\":\"778\",\"height_tablet\":\"757\",\"enable_custom_size_tablet\":\"on\",\"width_mobile\":\"480\",\"height_mobile\":\"757\",\"enable_custom_size_iphone\":\"on\",\"full_screen_align_force\":\"off\",\"fullscreen_min_height\":\"\",\"autowidth_force\":\"off\",\"fullscreen_offset_container\":\"\",\"fullscreen_offset_size\":\"\",\"main_overflow_hidden\":\"off\",\"auto_height\":\"off\",\"min_height\":\"757\",\"max_width\":\"\",\"force_full_width\":\"on\",\"use_wpml\":\"off\",\"next_slide_on_window_focus\":\"off\",\"disable_focus_listener\":\"off\",\"def-layer_selection\":\"off\",\"slider_id\":\"\",\"delay\":\"5000\",\"start_js_after_delay\":\"0\",\"def-slide_transition\":\"fade\",\"def-transition_duration\":\"300\",\"def-image_source_type\":\"full\",\"def-background_fit\":\"cover\",\"def-bg_fit_x\":\"100\",\"def-bg_fit_y\":\"100\",\"def-bg_position\":\"center center\",\"def-bg_position_x\":\"0\",\"def-bg_position_y\":\"0\",\"def-bg_repeat\":\"no-repeat\",\"def-kenburn_effect\":\"off\",\"def-kb_start_fit\":\"100\",\"def-kb_easing\":\"Linear.easeNone\",\"def-kb_end_fit\":\"100\",\"def-kb_start_offset_x\":\"0\",\"def-kb_start_offset_y\":\"0\",\"def-kb_end_offset_x\":\"0\",\"def-kb_end_offset_y\":\"0\",\"def-kb_start_rotate\":\"0\",\"def-kb_end_rotate\":\"0\",\"def-kb_duration\":\"10000\",\"0\":\"Clear\",\"start_with_slide_enable\":\"off\",\"start_with_slide\":\"1\",\"first_transition_active\":\"off\",\"first_transition_type\":\"fade\",\"first_transition_duration\":\"300\",\"first_transition_slot_amount\":\"7\",\"stop_on_hover\":\"off\",\"stop_slider\":\"off\",\"stop_after_loops\":\"0\",\"stop_at_slide\":\"2\",\"shuffle\":\"off\",\"loop_slide\":\"off\",\"label_viewport\":\"off\",\"viewport_start\":\"wait\",\"viewport_area\":\"80\",\"waitforinit\":\"off\",\"enable_progressbar\":\"off\",\"show_timerbar\":\"top\",\"progress_height\":\"5\",\"progress_opa\":\"15\",\"progressbar_color\":\"#000000\",\"disable_on_mobile\":\"off\",\"disable_kenburns_on_mobile\":\"off\",\"hide_slider_under\":\"0\",\"hide_defined_layers_under\":\"0\",\"hide_all_layers_under\":\"0\",\"shadow_type\":\"0\",\"background_dotted_overlay\":\"none\",\"background_color\":\"transparent\",\"padding\":\"0\",\"show_background_image\":\"off\",\"background_image\":\"http:\\/\\/stationtyresdarwen.co.uk\\/wp-content\\/\",\"bg_fit\":\"cover\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center center\",\"position\":\"center\",\"margin_top\":\"0\",\"margin_bottom\":\"0\",\"margin_left\":\"0\",\"margin_right\":\"0\",\"use_spinner\":\"2\",\"spinner_color\":\"#e32121\",\"enable_arrows\":\"off\",\"rtl_arrows\":\"off\",\"navigation_arrow_style\":\"round\",\"navigation_arrows_preset\":\"default\",\"ph-round-arrows-hover-bg-color-color-rgba-def\":\"off\",\"ph-round-arrows-hover-bg-color-color-rgba\":\"#000000\",\"ph-round-arrows-arrow-size-custom-def\":\"off\",\"ph-round-arrows-arrow-size-custom\":\"20\",\"ph-round-arrows-arrow-color-color-def\":\"off\",\"ph-round-arrows-arrow-color-color\":\"#ffffff\",\"ph-round-arrows-bg-size-custom-def\":\"off\",\"ph-round-arrows-bg-size-custom\":\"40\",\"ph-round-arrows-bg-color-custom-def\":\"off\",\"ph-round-arrows-bg-color-custom\":\"0,0,0,0.5\",\"arrows_always_on\":\"false\",\"hide_arrows\":\"200\",\"hide_arrows_mobile\":\"1200\",\"hide_arrows_on_mobile\":\"off\",\"arrows_under_hidden\":\"0\",\"hide_arrows_over\":\"off\",\"arrows_over_hidden\":\"0\",\"leftarrow_align_hor\":\"left\",\"leftarrow_align_vert\":\"center\",\"leftarrow_offset_hor\":\"20\",\"leftarrow_offset_vert\":\"0\",\"leftarrow_position\":\"slider\",\"rightarrow_align_hor\":\"right\",\"rightarrow_align_vert\":\"center\",\"rightarrow_offset_hor\":\"20\",\"rightarrow_offset_vert\":\"0\",\"rightarrow_position\":\"slider\",\"enable_bullets\":\"off\",\"rtl_bullets\":\"off\",\"navigation_bullets_style\":\"round\",\"navigation_bullets_preset\":\"default\",\"ph-round-bullets-hover-bullet-bg-color-def\":\"off\",\"ph-round-bullets-hover-bullet-bg-color\":\"#666666\",\"ph-round-bullets-border-size-custom-def\":\"off\",\"ph-round-bullets-border-size-custom\":\"3\",\"ph-round-bullets-border-color-color-def\":\"off\",\"ph-round-bullets-border-color-color\":\"#e5e5e5\",\"ph-round-bullets-bullet-bg-bottom-color-def\":\"off\",\"ph-round-bullets-bullet-bg-bottom-color\":\"#e1e1e1\",\"ph-round-bullets-bullet-bg-top-color-def\":\"off\",\"ph-round-bullets-bullet-bg-top-color\":\"#999999\",\"ph-round-bullets-bullet-size-custom-def\":\"off\",\"ph-round-bullets-bullet-size-custom\":\"12\",\"bullets_space\":\"5\",\"bullets_direction\":\"horizontal\",\"bullets_always_on\":\"false\",\"hide_bullets\":\"200\",\"hide_bullets_mobile\":\"1200\",\"hide_bullets_on_mobile\":\"off\",\"bullets_under_hidden\":\"0\",\"hide_bullets_over\":\"off\",\"bullets_over_hidden\":\"0\",\"bullets_align_hor\":\"center\",\"bullets_align_vert\":\"bottom\",\"bullets_offset_hor\":\"0\",\"bullets_offset_vert\":\"20\",\"bullets_position\":\"slider\",\"enable_thumbnails\":\"off\",\"rtl_thumbnails\":\"off\",\"thumbnails_padding\":\"5\",\"span_thumbnails_wrapper\":\"off\",\"thumbnails_wrapper_color\":\"transparent\",\"thumbnails_wrapper_opacity\":\"100\",\"thumbnails_style\":\"round\",\"navigation_thumbs_preset\":\"default\",\"ph-round-thumbs-title-font-size-custom-def\":\"off\",\"ph-round-thumbs-title-font-size-custom\":\"12\",\"ph-round-thumbs-title-color-color-rgba-def\":\"off\",\"ph-round-thumbs-title-color-color-rgba\":\"#ffffff\",\"ph-round-thumbs-title-bg-color-rgba-def\":\"off\",\"ph-round-thumbs-title-bg-color-rgba\":\"rgba(0,0,0,0.85)\",\"thumb_amount\":\"5\",\"thumbnails_space\":\"5\",\"thumbnail_direction\":\"horizontal\",\"thumb_width\":\"100\",\"thumb_height\":\"50\",\"thumb_width_min\":\"100\",\"thumbs_always_on\":\"false\",\"hide_thumbs\":\"200\",\"hide_thumbs_mobile\":\"1200\",\"hide_thumbs_on_mobile\":\"off\",\"thumbs_under_hidden\":\"0\",\"hide_thumbs_over\":\"off\",\"thumbs_over_hidden\":\"0\",\"thumbnails_inner_outer\":\"inner\",\"thumbnails_align_hor\":\"center\",\"thumbnails_align_vert\":\"bottom\",\"thumbnails_offset_hor\":\"0\",\"thumbnails_offset_vert\":\"20\",\"thumbnails_position\":\"slider\",\"enable_tabs\":\"off\",\"rtl_tabs\":\"off\",\"tabs_padding\":\"5\",\"span_tabs_wrapper\":\"off\",\"tabs_wrapper_color\":\"transparent\",\"tabs_wrapper_opacity\":\"5\",\"tabs_style\":\"round\",\"navigation_tabs_preset\":\"default\",\"ph-round-tabs-param2-size-custom-def\":\"off\",\"ph-round-tabs-param2-size-custom\":\"14\",\"ph-round-tabs-param2-color-color-rgba-def\":\"off\",\"ph-round-tabs-param2-color-color-rgba\":\"0,0,0,0\",\"ph-round-tabs-contentcolor-color-rgba-def\":\"off\",\"ph-round-tabs-contentcolor-color-rgba\":\"#333333\",\"ph-round-tabs-bgcolor-color-rgba-def\":\"off\",\"ph-round-tabs-bgcolor-color-rgba\":\"rgba(0,0,0,0)\",\"ph-round-tabs-hover-bg-color-color-rgba-def\":\"off\",\"ph-round-tabs-hover-bg-color-color-rgba\":\"#eeeeee\",\"ph-round-tabs-param1-size-custom-def\":\"off\",\"ph-round-tabs-param1-size-custom\":\"12\",\"ph-round-tabs-param1-color-color-rgba-def\":\"off\",\"ph-round-tabs-param1-color-color-rgba\":\"rgba(51,51,51,0.5)\",\"ph-round-tabs-image-size-custom-def\":\"off\",\"ph-round-tabs-image-size-custom\":\"60\",\"ph-round-tabs-border-size-custom-def\":\"off\",\"ph-round-tabs-border-size-custom\":\"1\",\"ph-round-tabs-border-color-color-rgba-def\":\"off\",\"ph-round-tabs-border-color-color-rgba\":\"#e5e5e5\",\"ph-round-tabs-font-family-font_family-def\":\"off\",\"ph-round-tabs-font-family-font_family\":\"Roboto\",\"tabs_amount\":\"5\",\"tabs_space\":\"5\",\"tabs_direction\":\"horizontal\",\"tabs_width\":\"100\",\"tabs_height\":\"50\",\"tabs_width_min\":\"100\",\"tabs_always_on\":\"false\",\"hide_tabs\":\"200\",\"hide_tabs_mobile\":\"1200\",\"hide_tabs_on_mobile\":\"off\",\"tabs_under_hidden\":\"0\",\"hide_tabs_over\":\"off\",\"tabs_over_hidden\":\"0\",\"tabs_inner_outer\":\"inner\",\"tabs_align_hor\":\"center\",\"tabs_align_vert\":\"bottom\",\"tabs_offset_hor\":\"0\",\"tabs_offset_vert\":\"20\",\"tabs_position\":\"slider\",\"touchenabled\":\"off\",\"drag_block_vertical\":\"off\",\"swipe_velocity\":\"75\",\"swipe_min_touches\":\"1\",\"swipe_direction\":\"horizontal\",\"keyboard_navigation\":\"off\",\"keyboard_direction\":\"horizontal\",\"mousescroll_navigation\":\"off\",\"mousescroll_navigation_reverse\":\"default\",\"previewimage_width\":\"100\",\"previewimage_height\":\"50\",\"carousel_infinity\":\"off\",\"carousel_space\":\"0\",\"carousel_borderr\":\"0\",\"carousel_borderr_unit\":\"px\",\"carousel_padding_top\":\"0\",\"carousel_padding_bottom\":\"0\",\"carousel_maxitems\":\"3\",\"carousel_stretch\":\"off\",\"carousel_fadeout\":\"on\",\"carousel_varyfade\":\"off\",\"carousel_rotation\":\"off\",\"carousel_varyrotate\":\"off\",\"carousel_maxrotation\":\"0\",\"carousel_scale\":\"off\",\"carousel_varyscale\":\"off\",\"carousel_scaledown\":\"50\",\"carousel_hposition\":\"center\",\"carousel_vposition\":\"center\",\"use_parallax\":\"on\",\"disable_parallax_mobile\":\"on\",\"ddd_parallax\":\"off\",\"ddd_parallax_shadow\":\"off\",\"ddd_parallax_bgfreeze\":\"off\",\"ddd_parallax_overflow\":\"off\",\"ddd_parallax_layer_overflow\":\"off\",\"ddd_parallax_zcorrection\":\"65\",\"parallax_type\":\"mouse+scroll\",\"parallax_origo\":\"enterpoint\",\"parallax_speed\":\"400\",\"parallax_level_16\":\"55\",\"parallax_level_1\":\"5\",\"parallax_level_2\":\"10\",\"parallax_level_3\":\"15\",\"parallax_level_4\":\"20\",\"parallax_level_5\":\"25\",\"parallax_level_6\":\"30\",\"parallax_level_7\":\"35\",\"parallax_level_8\":\"40\",\"parallax_level_9\":\"45\",\"parallax_level_10\":\"46\",\"parallax_level_11\":\"47\",\"parallax_level_12\":\"48\",\"parallax_level_13\":\"49\",\"parallax_level_14\":\"50\",\"parallax_level_15\":\"51\",\"lazy_load_type\":\"none\",\"simplify_ie8_ios4\":\"off\",\"show_alternative_type\":\"off\",\"show_alternate_image\":\"\",\"ignore_height_changes\":\"off\",\"ignore_height_changes_px\":\"0\",\"jquery_noconflict\":\"off\",\"js_to_body\":\"false\",\"output_type\":\"none\",\"jquery_debugmode\":\"off\",\"custom_css\":\"\",\"custom_javascript\":\"\",\"version\":\"\"}',NULL,'');
/*!40000 ALTER TABLE `wp_revslider_sliders` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_revslider_slides`
--
DROP TABLE IF EXISTS `wp_revslider_slides`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_slides` (
`id` int(9) NOT NULL AUTO_INCREMENT,
`slider_id` int(9) NOT NULL,
`slide_order` int(11) NOT NULL,
`params` longtext NOT NULL,
`layers` longtext NOT NULL,
`settings` text NOT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_revslider_slides`
--
LOCK TABLES `wp_revslider_slides` WRITE;
/*!40000 ALTER TABLE `wp_revslider_slides` DISABLE KEYS */;
INSERT INTO `wp_revslider_slides` VALUES (1,1,2,'{\"background_type\":\"image\",\"rs-gallery-type\":\"gallery\",\"bg_external\":\"\",\"bg_color\":\"#E7E7E7\",\"0\":\"Clear\",\"slide_bg_youtube\":\"\",\"slide_bg_vimeo\":\"\",\"slide_bg_html_mpeg\":\"\",\"slide_bg_html_webm\":\"\",\"slide_bg_html_ogv\":\"\",\"image_source_type\":\"full\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920\",\"ext_height\":\"1080\",\"title_option\":\"media_library\",\"title_attr\":\"\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"video_arguments\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"video_arguments_vim\":\"title=0&byline=0&portrait=0&api=1\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_position\":\"center center\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_repeat\":\"no-repeat\",\"kenburn_effect\":\"on\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"110\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"140\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"kb_easing\":\"Power0.easeInOut\",\"kb_duration\":\"5000\",\"title\":\"Slide\",\"delay\":\"\",\"stoponpurpose\":\"false\",\"invisibleslide\":\"false\",\"state\":\"published\",\"hideslideafter\":\"0\",\"hideslideonmobile\":\"off\",\"date_from\":\"\",\"date_to\":\"\",\"save_performance\":\"off\",\"slide_thumb\":\"http:\\/\\/stationtyresdarwen.co.uk\\/wp-content\\/\",\"thumb_dimension\":\"slider\",\"thumb_for_admin\":\"off\",\"slide_transition\":[\"fade\"],\"slot_amount\":[\"default\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"300\"],\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"ph-round-arrows-bg-color-custom-slide\":\"off\",\"ph-round-arrows-bg-color-custom\":\"0,0,0,0.5\",\"ph-round-arrows-bg-size-custom-slide\":\"off\",\"ph-round-arrows-bg-size-custom\":\"40\",\"ph-round-arrows-arrow-color-color-slide\":\"off\",\"ph-round-arrows-arrow-color-color\":\"#ffffff\",\"ph-round-arrows-arrow-size-custom-slide\":\"off\",\"ph-round-arrows-arrow-size-custom\":\"20\",\"ph-round-arrows-hover-bg-color-color-rgba-slide\":\"off\",\"ph-round-arrows-hover-bg-color-color-rgba\":\"#000000\",\"ph-round-bullets-bullet-size-custom-slide\":\"off\",\"ph-round-bullets-bullet-size-custom\":\"12\",\"ph-round-bullets-bullet-bg-top-color-slide\":\"off\",\"ph-round-bullets-bullet-bg-top-color\":\"#999999\",\"ph-round-bullets-bullet-bg-bottom-color-slide\":\"off\",\"ph-round-bullets-bullet-bg-bottom-color\":\"#e1e1e1\",\"ph-round-bullets-border-color-color-slide\":\"off\",\"ph-round-bullets-border-color-color\":\"#e5e5e5\",\"ph-round-bullets-border-size-custom-slide\":\"off\",\"ph-round-bullets-border-size-custom\":\"3\",\"ph-round-bullets-hover-bullet-bg-color-slide\":\"off\",\"ph-round-bullets-hover-bullet-bg-color\":\"#666666\",\"ph-round-tabs-font-family-font_family-slide\":\"off\",\"ph-round-tabs-font-family-font_family\":\"Roboto\",\"ph-round-tabs-border-color-color-rgba-slide\":\"off\",\"ph-round-tabs-border-color-color-rgba\":\"#e5e5e5\",\"ph-round-tabs-border-size-custom-slide\":\"off\",\"ph-round-tabs-border-size-custom\":\"1\",\"ph-round-tabs-image-size-custom-slide\":\"off\",\"ph-round-tabs-image-size-custom\":\"60\",\"ph-round-tabs-param1-color-color-rgba-slide\":\"off\",\"ph-round-tabs-param1-color-color-rgba\":\"rgba(51,51,51,0.5)\",\"ph-round-tabs-param1-size-custom-slide\":\"off\",\"ph-round-tabs-param1-size-custom\":\"12\",\"ph-round-tabs-hover-bg-color-color-rgba-slide\":\"off\",\"ph-round-tabs-hover-bg-color-color-rgba\":\"#eeeeee\",\"ph-round-tabs-bgcolor-color-rgba-slide\":\"off\",\"ph-round-tabs-bgcolor-color-rgba\":\"rgba(0,0,0,0)\",\"ph-round-tabs-contentcolor-color-rgba-slide\":\"off\",\"ph-round-tabs-contentcolor-color-rgba\":\"#333333\",\"ph-round-tabs-param2-color-color-rgba-slide\":\"off\",\"ph-round-tabs-param2-color-color-rgba\":\"0,0,0,0\",\"ph-round-tabs-param2-size-custom-slide\":\"off\",\"ph-round-tabs-param2-size-custom\":\"14\",\"ph-round-thumbs-title-bg-color-rgba-slide\":\"off\",\"ph-round-thumbs-title-bg-color-rgba\":\"rgba(0,0,0,0.85)\",\"ph-round-thumbs-title-color-color-rgba-slide\":\"off\",\"ph-round-thumbs-title-color-color-rgba\":\"#ffffff\",\"ph-round-thumbs-title-font-size-custom-slide\":\"off\",\"ph-round-thumbs-title-font-size-custom\":\"12\",\"params_1\":\"\",\"params_1_chars\":\"10\",\"params_2\":\"\",\"params_2_chars\":\"10\",\"params_3\":\"\",\"params_3_chars\":\"10\",\"params_4\":\"\",\"params_4_chars\":\"10\",\"params_5\":\"\",\"params_5_chars\":\"10\",\"params_6\":\"\",\"params_6_chars\":\"10\",\"params_7\":\"\",\"params_7_chars\":\"10\",\"params_8\":\"\",\"params_8_chars\":\"10\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"data_attr\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"image\":\"http:\\/\\/stationtyresdarwen.co.uk\\/wp-content\\/uploads\\/slide_1920x770.jpg\",\"slide_parallax_level\":\"10\",\"media-filter-type\":\"none\",\"image_id\":\"4345\",\"0\":\"Clear\"}','[{\"text\":\"<h2>Tyre Repairs<\\/h2>\",\"type\":\"text\",\"special_type\":null,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":650,\"delay\":0,\"split\":\"none\",\"splitdelay\":\"10\",\"split_extratime\":0,\"speed\":300,\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"time_relative\":650},\"frame_999\":{\"time\":4680,\"delay\":0,\"split\":\"none\",\"splitdelay\":\"10\",\"split_extratime\":0,\"speed\":300,\"animation\":\"\",\"easing\":\"Power3.easeInOut\",\"time_relative\":3730}},\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":6,\"left\":{\"desktop\":282},\"top\":{\"desktop\":198},\"isDemo\":false,\"internal_class\":\"\",\"hover\":false,\"alias\":\"caption text5\",\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"loop_animation\":\"none\",\"loop_easing\":\"\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\":\"\",\"max_height\":{\"desktop\":\"auto\"},\"min_height\":\"40px\",\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"display\":\"block\",\"static_end\":\"last\",\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"\",\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"css-position\":\"relative\",\"width\":156,\"height\":74,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"20\"},\"line-height\":{\"desktop\":\"22\"},\"font-weight\":{\"desktop\":\"400\"},\"color\":{\"desktop\":\"#ffffff\"}},\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"inherit\"},\"x_start\":\"inherit\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"x_rotate_start\":\"inherit\",\"y_rotate_start\":\"inherit\",\"z_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"deformation\":{\"font-family\":\"Open Sans\",\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-transform\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"vertical-align\":\"top\"},\"svg\":{\"svgstroke-color\":\"transparent\",\"svgstroke-transparency\":\"1\",\"svgstroke-dasharray\":\"0\",\"svgstroke-dashoffset\":\"0\",\"svgstroke-width\":\"0\",\"svgstroke-hover-color\":\"transparent\",\"svgstroke-hover-transparency\":\"1\",\"svgstroke-hover-dasharray\":\"0\",\"svgstroke-hover-dashoffset\":\"0\",\"svgstroke-hover-width\":\"0\"},\"deformation-hover\":{\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":0,\"endWithSlide\":false,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"displaymode\":true,\"scaleProportional\":false,\"attrID\":\"\",\"attrWrapperID\":\"\",\"attrClasses\":\"stm_trapeze stm_trapeze_img\",\"attrWrapperClasses\":\"\",\"attrTitle\":\"\",\"attrTabindex\":\"\",\"attrRel\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"p_uid\":-1,\"zIndex\":5,\"positionLeftReset\":472,\"addedToStage\":true,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"parallax_layer_ddd_zlevel\":\"front\",\"static_start\":\"1\"},{\"text\":\"THE RIGHT TYRES\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":2,\"left\":{\"desktop\":210,\"mobile\":50},\"top\":{\"desktop\":357,\"mobile\":356},\"internal_class\":\"\",\"hover\":false,\"alias\":\"YZF-R1 2001\",\"loop_animation\":\"none\",\"loop_easing\":\"\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"html_tag\":\"div\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\":\"\",\"max_height\":{\"desktop\":\"auto\",\"mobile\":\"auto\"},\"max_width\":{\"desktop\":\"auto\",\"mobile\":\"auto\"},\"video_width\":{\"desktop\":\"480px\",\"mobile\":\"480\"},\"video_height\":{\"desktop\":\"360px\",\"mobile\":\"360\"},\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\",\"mobile\":\"nowrap\"},\"static_end\":\"last\",\"align_hor\":{\"desktop\":\"left\",\"mobile\":\"left\"},\"align_vert\":{\"desktop\":\"bottom\",\"mobile\":\"bottom\"},\"hiddenunder\":false,\"resizeme\":false,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"\",\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":false,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":false,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"width\":229,\"height\":34,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"32px\",\"mobile\":\"32px\"},\"line-height\":{\"desktop\":\"34px\",\"mobile\":\"34px\"},\"font-weight\":{\"desktop\":\"700\",\"mobile\":\"700\"},\"color\":{\"desktop\":\"#0e1315\",\"mobile\":\"#0e1315\"}},\"x_start\":\"-50px\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"50px\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"x_rotate_start\":\"inherit\",\"y_rotate_start\":\"inherit\",\"z_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"deformation\":{\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"text-transform\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"vertical-align\":\"top\"},\"svg\":{\"svgstroke-color\":\"transparent\",\"svgstroke-transparency\":\"1\",\"svgstroke-dasharray\":\"0\",\"svgstroke-dashoffset\":\"0\",\"svgstroke-width\":\"0\",\"svgstroke-hover-color\":\"transparent\",\"svgstroke-hover-transparency\":\"1\",\"svgstroke-hover-dasharray\":\"0\",\"svgstroke-hover-dashoffset\":\"0\",\"svgstroke-hover-width\":\"0\"},\"deformation-hover\":{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":1,\"split_in_extratime\":-10,\"split_out_extratime\":-10,\"endWithSlide\":false,\"toggle\":false,\"toggle_use_hover\":false,\"texttoggle\":\"\",\"scaleX\":{\"desktop\":\"\",\"mobile\":\"\"},\"scaleY\":{\"desktop\":\"\",\"mobile\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"stm_trapeze stm_trapeze_white heading-font\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer-selectable\":\"default\",\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":800,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":600,\"animation\":\"sfl\",\"easing\":\"Power2.easeInOut\",\"time_relative\":800},\"frame_999\":{\"time\":4690,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"str\",\"easing\":\"nothing\",\"time_relative\":3290}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"min_height\":\"40px\",\"display\":\"block\",\"link\":\"\",\"link_open_in\":\"same\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"p_uid\":-1,\"zIndex\":6,\"toggle_inverse_content\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"positionLeftReset\":460,\"parallax_layer_ddd_zlevel\":\"front\",\"static_start\":\"1\"},{\"text\":\" FOR YOUR VEHICLE\\n\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":3,\"left\":{\"desktop\":283,\"mobile\":70},\"top\":{\"desktop\":312,\"mobile\":309},\"internal_class\":\"\",\"hover\":false,\"alias\":\"$ 7999\",\"loop_animation\":\"none\",\"loop_easing\":\"\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"html_tag\":\"div\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\":\"\",\"max_height\":{\"desktop\":\"auto\",\"mobile\":\"auto\"},\"max_width\":{\"desktop\":\"auto\",\"mobile\":\"auto\"},\"video_width\":{\"desktop\":\"480px\",\"mobile\":\"480\"},\"video_height\":{\"desktop\":\"360px\",\"mobile\":\"360\"},\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\",\"mobile\":\"nowrap\"},\"static_end\":\"last\",\"align_hor\":{\"desktop\":\"left\",\"mobile\":\"left\"},\"align_vert\":{\"desktop\":\"bottom\",\"mobile\":\"bottom\"},\"hiddenunder\":false,\"resizeme\":false,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"\",\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":false,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":false,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"width\":223,\"height\":22,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"28px\",\"mobile\":\"20\"},\"line-height\":{\"desktop\":\"22\",\"mobile\":\"22\"},\"font-weight\":{\"desktop\":\"700\",\"mobile\":\"700\"},\"color\":{\"desktop\":\"#ffffff\",\"mobile\":\"#ffffff\"}},\"x_start\":\"-50px\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"50px\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"x_rotate_start\":\"inherit\",\"y_rotate_start\":\"inherit\",\"z_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"deformation\":{\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"text-transform\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"vertical-align\":\"top\"},\"svg\":{\"svgstroke-color\":\"transparent\",\"svgstroke-transparency\":\"1\",\"svgstroke-dasharray\":\"0\",\"svgstroke-dashoffset\":\"0\",\"svgstroke-width\":\"0\",\"svgstroke-hover-color\":\"transparent\",\"svgstroke-hover-transparency\":\"1\",\"svgstroke-hover-dasharray\":\"0\",\"svgstroke-hover-dashoffset\":\"0\",\"svgstroke-hover-width\":\"0\"},\"deformation-hover\":{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":2,\"split_in_extratime\":-10,\"split_out_extratime\":-10,\"endWithSlide\":false,\"toggle\":false,\"toggle_use_hover\":false,\"texttoggle\":\"\",\"scaleX\":{\"desktop\":\"\",\"mobile\":\"\"},\"scaleY\":{\"desktop\":\"\",\"mobile\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"stm_trapeze stm_trapeze_red heading-font\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer-selectable\":\"default\",\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":900,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":600,\"animation\":\"sfl\",\"easing\":\"Power2.easeInOut\",\"time_relative\":900},\"frame_999\":{\"time\":4680,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"str\",\"easing\":\"nothing\",\"time_relative\":3180}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"min_height\":\"40px\",\"display\":\"block\",\"link\":\"\",\"link_open_in\":\"same\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"p_uid\":-1,\"zIndex\":7,\"toggle_inverse_content\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"positionLeftReset\":450,\"parallax_layer_ddd_zlevel\":\"front\",\"static_start\":\"1\"},{\"text\":\"<h3>No matter what type of vehicle you drive<\\/h3>\",\"type\":\"text\",\"special_type\":null,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":990,\"delay\":0,\"split\":\"none\",\"splitdelay\":\"10\",\"split_extratime\":0,\"speed\":300,\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"time_relative\":990},\"frame_999\":{\"time\":4680,\"delay\":0,\"split\":\"none\",\"splitdelay\":\"10\",\"split_extratime\":0,\"speed\":300,\"animation\":\"\",\"easing\":\"Power3.easeInOut\",\"time_relative\":3390}},\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":5,\"left\":{\"desktop\":188,\"tablet\":81,\"mobile\":26},\"top\":{\"desktop\":461,\"tablet\":461,\"mobile\":484},\"isDemo\":false,\"internal_class\":\"\",\"hover\":false,\"alias\":\"No matter what type ...\",\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"loop_animation\":\"none\",\"loop_easing\":\"\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\":\"\",\"max_height\":{\"desktop\":\"auto\",\"tablet\":\"auto\",\"mobile\":\"87px\"},\"min_height\":\"40px\",\"max_width\":{\"desktop\":\"auto\",\"tablet\":\"auto\",\"mobile\":\"415px\"},\"video_width\":{\"desktop\":\"480px\",\"tablet\":\"480px\",\"mobile\":\"480px\"},\"video_height\":{\"desktop\":\"360px\",\"tablet\":\"360px\",\"mobile\":\"360px\"},\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\",\"tablet\":\"nowrap\",\"mobile\":\"nowrap\"},\"display\":\"block\",\"static_end\":\"last\",\"align_hor\":{\"desktop\":\"left\",\"tablet\":\"left\",\"mobile\":\"left\"},\"align_vert\":{\"desktop\":\"top\",\"tablet\":\"top\",\"mobile\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"\",\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"css-position\":\"relative\",\"width\":407,\"height\":84,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"24px\",\"tablet\":\"24px\",\"mobile\":\"24px\"},\"line-height\":{\"desktop\":\"22\",\"tablet\":\"22\",\"mobile\":\"22\"},\"font-weight\":{\"desktop\":\"400\",\"tablet\":\"400\",\"mobile\":\"400\"},\"color\":{\"desktop\":\"#ffffff\",\"tablet\":\"#ffffff\",\"mobile\":\"#ffffff\"}},\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"],\"tablet\":[\"0\",\"0\",\"0\",\"0\"],\"mobile\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"],\"tablet\":[\"0\",\"0\",\"0\",\"0\"],\"mobile\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"inherit\",\"tablet\":\"inherit\",\"mobile\":\"inherit\"},\"x_start\":\"inherit\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"x_rotate_start\":\"inherit\",\"y_rotate_start\":\"inherit\",\"z_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"deformation\":{\"font-family\":\"Exo 2\",\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-transform\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"vertical-align\":\"top\"},\"svg\":{\"svgstroke-color\":\"transparent\",\"svgstroke-transparency\":\"1\",\"svgstroke-dasharray\":\"0\",\"svgstroke-dashoffset\":\"0\",\"svgstroke-width\":\"0\",\"svgstroke-hover-color\":\"transparent\",\"svgstroke-hover-transparency\":\"1\",\"svgstroke-hover-dasharray\":\"0\",\"svgstroke-hover-dashoffset\":\"0\",\"svgstroke-hover-width\":\"0\"},\"deformation-hover\":{\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":3,\"endWithSlide\":false,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"scaleX\":{\"desktop\":\"\",\"tablet\":\"\",\"mobile\":\"\"},\"scaleY\":{\"desktop\":\"\",\"tablet\":\"\",\"mobile\":\"\"},\"autolinebreak\":false,\"displaymode\":true,\"scaleProportional\":false,\"attrID\":\"\",\"attrWrapperID\":\"\",\"attrClasses\":\"\",\"attrWrapperClasses\":\"\",\"attrTitle\":\"\",\"attrTabindex\":\"\",\"attrRel\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"p_uid\":-1,\"zIndex\":8,\"positionLeftReset\":500,\"addedToStage\":true,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"parallax_layer_ddd_zlevel\":\"front\",\"static_start\":\"1\"}]','\"\"'),(3,2,1,'{\"background_type\":\"image\",\"rs-gallery-type\":\"gallery\",\"bg_external\":\"\",\"bg_color\":\"#E7E7E7\",\"0\":\"Clear\",\"slide_bg_youtube\":\"\",\"slide_bg_vimeo\":\"\",\"slide_bg_html_mpeg\":\"\",\"slide_bg_html_webm\":\"\",\"slide_bg_html_ogv\":\"\",\"image_source_type\":\"full\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920\",\"ext_height\":\"1080\",\"title_option\":\"media_library\",\"title_attr\":\"\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"video_arguments\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"video_arguments_vim\":\"title=0&byline=0&portrait=0&api=1\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_position\":\"center center\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_repeat\":\"no-repeat\",\"kenburn_effect\":\"on\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"110\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"140\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"kb_easing\":\"Power0.easeInOut\",\"kb_duration\":\"5000\",\"title\":\"Slide\",\"delay\":\"\",\"stoponpurpose\":\"false\",\"invisibleslide\":\"false\",\"state\":\"published\",\"hideslideafter\":\"0\",\"hideslideonmobile\":\"off\",\"date_from\":\"\",\"date_to\":\"\",\"save_performance\":\"off\",\"slide_thumb\":\"http:\\/\\/stationtyresdarwen.co.uk\\/wp-content\\/\",\"thumb_dimension\":\"slider\",\"thumb_for_admin\":\"off\",\"slide_transition\":[\"fade\"],\"slot_amount\":[\"default\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"300\"],\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"ph-round-arrows-bg-color-custom-slide\":\"off\",\"ph-round-arrows-bg-color-custom\":\"0,0,0,0.5\",\"ph-round-arrows-bg-size-custom-slide\":\"off\",\"ph-round-arrows-bg-size-custom\":\"40\",\"ph-round-arrows-arrow-color-color-slide\":\"off\",\"ph-round-arrows-arrow-color-color\":\"#ffffff\",\"ph-round-arrows-arrow-size-custom-slide\":\"off\",\"ph-round-arrows-arrow-size-custom\":\"20\",\"ph-round-arrows-hover-bg-color-color-rgba-slide\":\"off\",\"ph-round-arrows-hover-bg-color-color-rgba\":\"#000000\",\"ph-round-bullets-bullet-size-custom-slide\":\"off\",\"ph-round-bullets-bullet-size-custom\":\"12\",\"ph-round-bullets-bullet-bg-top-color-slide\":\"off\",\"ph-round-bullets-bullet-bg-top-color\":\"#999999\",\"ph-round-bullets-bullet-bg-bottom-color-slide\":\"off\",\"ph-round-bullets-bullet-bg-bottom-color\":\"#e1e1e1\",\"ph-round-bullets-border-color-color-slide\":\"off\",\"ph-round-bullets-border-color-color\":\"#e5e5e5\",\"ph-round-bullets-border-size-custom-slide\":\"off\",\"ph-round-bullets-border-size-custom\":\"3\",\"ph-round-bullets-hover-bullet-bg-color-slide\":\"off\",\"ph-round-bullets-hover-bullet-bg-color\":\"#666666\",\"ph-round-tabs-font-family-font_family-slide\":\"off\",\"ph-round-tabs-font-family-font_family\":\"Roboto\",\"ph-round-tabs-border-color-color-rgba-slide\":\"off\",\"ph-round-tabs-border-color-color-rgba\":\"#e5e5e5\",\"ph-round-tabs-border-size-custom-slide\":\"off\",\"ph-round-tabs-border-size-custom\":\"1\",\"ph-round-tabs-image-size-custom-slide\":\"off\",\"ph-round-tabs-image-size-custom\":\"60\",\"ph-round-tabs-param1-color-color-rgba-slide\":\"off\",\"ph-round-tabs-param1-color-color-rgba\":\"rgba(51,51,51,0.5)\",\"ph-round-tabs-param1-size-custom-slide\":\"off\",\"ph-round-tabs-param1-size-custom\":\"12\",\"ph-round-tabs-hover-bg-color-color-rgba-slide\":\"off\",\"ph-round-tabs-hover-bg-color-color-rgba\":\"#eeeeee\",\"ph-round-tabs-bgcolor-color-rgba-slide\":\"off\",\"ph-round-tabs-bgcolor-color-rgba\":\"rgba(0,0,0,0)\",\"ph-round-tabs-contentcolor-color-rgba-slide\":\"off\",\"ph-round-tabs-contentcolor-color-rgba\":\"#333333\",\"ph-round-tabs-param2-color-color-rgba-slide\":\"off\",\"ph-round-tabs-param2-color-color-rgba\":\"0,0,0,0\",\"ph-round-tabs-param2-size-custom-slide\":\"off\",\"ph-round-tabs-param2-size-custom\":\"14\",\"ph-round-thumbs-title-bg-color-rgba-slide\":\"off\",\"ph-round-thumbs-title-bg-color-rgba\":\"rgba(0,0,0,0.85)\",\"ph-round-thumbs-title-color-color-rgba-slide\":\"off\",\"ph-round-thumbs-title-color-color-rgba\":\"#ffffff\",\"ph-round-thumbs-title-font-size-custom-slide\":\"off\",\"ph-round-thumbs-title-font-size-custom\":\"12\",\"params_1\":\"\",\"params_1_chars\":\"10\",\"params_2\":\"\",\"params_2_chars\":\"10\",\"params_3\":\"\",\"params_3_chars\":\"10\",\"params_4\":\"\",\"params_4_chars\":\"10\",\"params_5\":\"\",\"params_5_chars\":\"10\",\"params_6\":\"\",\"params_6_chars\":\"10\",\"params_7\":\"\",\"params_7_chars\":\"10\",\"params_8\":\"\",\"params_8_chars\":\"10\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"data_attr\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"image\":\"http:\\/\\/stationtyresdarwen.co.uk\\/wp-content\\/uploads\\/services-bg.png\",\"slide_parallax_level\":\"10\",\"media-filter-type\":\"none\",\"image_id\":\"6\",\"0\":\"Clear\"}','[{\"text\":\"<h2>Tyre Repairs<\\/h2>\",\"type\":\"text\",\"special_type\":null,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":650,\"delay\":0,\"split\":\"none\",\"splitdelay\":\"10\",\"split_extratime\":0,\"speed\":300,\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"time_relative\":650},\"frame_999\":{\"time\":4680,\"delay\":0,\"split\":\"none\",\"splitdelay\":\"10\",\"split_extratime\":0,\"speed\":300,\"animation\":\"\",\"easing\":\"Power3.easeInOut\",\"time_relative\":3730}},\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":6,\"left\":{\"desktop\":282},\"top\":{\"desktop\":198},\"isDemo\":false,\"internal_class\":\"\",\"hover\":false,\"alias\":\"caption text5\",\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"loop_animation\":\"none\",\"loop_easing\":\"\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\":\"\",\"max_height\":{\"desktop\":\"auto\"},\"min_height\":\"40px\",\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"display\":\"block\",\"static_end\":\"last\",\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"\",\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"css-position\":\"relative\",\"width\":156,\"height\":74,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"20\"},\"line-height\":{\"desktop\":\"22\"},\"font-weight\":{\"desktop\":\"400\"},\"color\":{\"desktop\":\"#ffffff\"}},\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"inherit\"},\"x_start\":\"inherit\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"x_rotate_start\":\"inherit\",\"y_rotate_start\":\"inherit\",\"z_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"deformation\":{\"font-family\":\"Open Sans\",\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-transform\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"vertical-align\":\"top\"},\"svg\":{\"svgstroke-color\":\"transparent\",\"svgstroke-transparency\":\"1\",\"svgstroke-dasharray\":\"0\",\"svgstroke-dashoffset\":\"0\",\"svgstroke-width\":\"0\",\"svgstroke-hover-color\":\"transparent\",\"svgstroke-hover-transparency\":\"1\",\"svgstroke-hover-dasharray\":\"0\",\"svgstroke-hover-dashoffset\":\"0\",\"svgstroke-hover-width\":\"0\"},\"deformation-hover\":{\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":0,\"endWithSlide\":false,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"displaymode\":true,\"scaleProportional\":false,\"attrID\":\"\",\"attrWrapperID\":\"\",\"attrClasses\":\"stm_trapeze stm_trapeze_img\",\"attrWrapperClasses\":\"\",\"attrTitle\":\"\",\"attrTabindex\":\"\",\"attrRel\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"p_uid\":-1,\"zIndex\":5,\"positionLeftReset\":472,\"addedToStage\":true,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"parallax_layer_ddd_zlevel\":\"front\"},{\"text\":\"THE RIGHT TYRES\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":2,\"left\":{\"desktop\":210,\"mobile\":50},\"top\":{\"desktop\":357,\"mobile\":356},\"internal_class\":\"\",\"hover\":false,\"alias\":\"YZF-R1 2001\",\"loop_animation\":\"none\",\"loop_easing\":\"\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"html_tag\":\"div\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\":\"\",\"max_height\":{\"desktop\":\"auto\",\"mobile\":\"auto\"},\"max_width\":{\"desktop\":\"auto\",\"mobile\":\"auto\"},\"video_width\":{\"desktop\":\"480px\",\"mobile\":\"480\"},\"video_height\":{\"desktop\":\"360px\",\"mobile\":\"360\"},\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\",\"mobile\":\"nowrap\"},\"static_end\":\"last\",\"align_hor\":{\"desktop\":\"left\",\"mobile\":\"left\"},\"align_vert\":{\"desktop\":\"bottom\",\"mobile\":\"bottom\"},\"hiddenunder\":false,\"resizeme\":false,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"\",\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":false,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":false,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"width\":229,\"height\":34,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"32px\",\"mobile\":\"32px\"},\"line-height\":{\"desktop\":\"34px\",\"mobile\":\"34px\"},\"font-weight\":{\"desktop\":\"700\",\"mobile\":\"700\"},\"color\":{\"desktop\":\"#0e1315\",\"mobile\":\"#0e1315\"}},\"x_start\":\"-50px\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"50px\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"x_rotate_start\":\"inherit\",\"y_rotate_start\":\"inherit\",\"z_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"deformation\":{\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"text-transform\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"vertical-align\":\"top\"},\"svg\":{\"svgstroke-color\":\"transparent\",\"svgstroke-transparency\":\"1\",\"svgstroke-dasharray\":\"0\",\"svgstroke-dashoffset\":\"0\",\"svgstroke-width\":\"0\",\"svgstroke-hover-color\":\"transparent\",\"svgstroke-hover-transparency\":\"1\",\"svgstroke-hover-dasharray\":\"0\",\"svgstroke-hover-dashoffset\":\"0\",\"svgstroke-hover-width\":\"0\"},\"deformation-hover\":{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":1,\"split_in_extratime\":-10,\"split_out_extratime\":-10,\"endWithSlide\":false,\"toggle\":false,\"toggle_use_hover\":false,\"texttoggle\":\"\",\"scaleX\":{\"desktop\":\"\",\"mobile\":\"\"},\"scaleY\":{\"desktop\":\"\",\"mobile\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"stm_trapeze stm_trapeze_white heading-font\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer-selectable\":\"default\",\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":800,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":600,\"animation\":\"sfl\",\"easing\":\"Power2.easeInOut\",\"time_relative\":800},\"frame_999\":{\"time\":4690,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"str\",\"easing\":\"nothing\",\"time_relative\":3290}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"min_height\":\"40px\",\"display\":\"block\",\"link\":\"\",\"link_open_in\":\"same\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"p_uid\":-1,\"zIndex\":6,\"toggle_inverse_content\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"positionLeftReset\":460,\"parallax_layer_ddd_zlevel\":\"front\"},{\"text\":\" FOR YOUR VEHICLE\\n\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":3,\"left\":{\"desktop\":283,\"mobile\":70},\"top\":{\"desktop\":312,\"mobile\":309},\"internal_class\":\"\",\"hover\":false,\"alias\":\"$ 7999\",\"loop_animation\":\"none\",\"loop_easing\":\"\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"html_tag\":\"div\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\":\"\",\"max_height\":{\"desktop\":\"auto\",\"mobile\":\"auto\"},\"max_width\":{\"desktop\":\"auto\",\"mobile\":\"auto\"},\"video_width\":{\"desktop\":\"480px\",\"mobile\":\"480\"},\"video_height\":{\"desktop\":\"360px\",\"mobile\":\"360\"},\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\",\"mobile\":\"nowrap\"},\"static_end\":\"last\",\"align_hor\":{\"desktop\":\"left\",\"mobile\":\"left\"},\"align_vert\":{\"desktop\":\"bottom\",\"mobile\":\"bottom\"},\"hiddenunder\":false,\"resizeme\":false,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"\",\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":false,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":false,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"width\":223,\"height\":22,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"28px\",\"mobile\":\"20\"},\"line-height\":{\"desktop\":\"22\",\"mobile\":\"22\"},\"font-weight\":{\"desktop\":\"700\",\"mobile\":\"700\"},\"color\":{\"desktop\":\"#ffffff\",\"mobile\":\"#ffffff\"}},\"x_start\":\"-50px\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"50px\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"x_rotate_start\":\"inherit\",\"y_rotate_start\":\"inherit\",\"z_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"deformation\":{\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"text-transform\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"vertical-align\":\"top\"},\"svg\":{\"svgstroke-color\":\"transparent\",\"svgstroke-transparency\":\"1\",\"svgstroke-dasharray\":\"0\",\"svgstroke-dashoffset\":\"0\",\"svgstroke-width\":\"0\",\"svgstroke-hover-color\":\"transparent\",\"svgstroke-hover-transparency\":\"1\",\"svgstroke-hover-dasharray\":\"0\",\"svgstroke-hover-dashoffset\":\"0\",\"svgstroke-hover-width\":\"0\"},\"deformation-hover\":{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":2,\"split_in_extratime\":-10,\"split_out_extratime\":-10,\"endWithSlide\":false,\"toggle\":false,\"toggle_use_hover\":false,\"texttoggle\":\"\",\"scaleX\":{\"desktop\":\"\",\"mobile\":\"\"},\"scaleY\":{\"desktop\":\"\",\"mobile\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"stm_trapeze stm_trapeze_red heading-font\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer-selectable\":\"default\",\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":900,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":600,\"animation\":\"sfl\",\"easing\":\"Power2.easeInOut\",\"time_relative\":900},\"frame_999\":{\"time\":4680,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"str\",\"easing\":\"nothing\",\"time_relative\":3180}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"min_height\":\"40px\",\"display\":\"block\",\"link\":\"\",\"link_open_in\":\"same\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"p_uid\":-1,\"zIndex\":7,\"toggle_inverse_content\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"positionLeftReset\":450,\"parallax_layer_ddd_zlevel\":\"front\"},{\"text\":\"<h3>No matter what type of vehicle you drive<\\/h3>\",\"type\":\"text\",\"special_type\":null,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":990,\"delay\":0,\"split\":\"none\",\"splitdelay\":\"10\",\"split_extratime\":0,\"speed\":300,\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"time_relative\":990},\"frame_999\":{\"time\":4680,\"delay\":0,\"split\":\"none\",\"splitdelay\":\"10\",\"split_extratime\":0,\"speed\":300,\"animation\":\"\",\"easing\":\"Power3.easeInOut\",\"time_relative\":3390}},\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":5,\"left\":{\"desktop\":188,\"tablet\":100,\"mobile\":13},\"top\":{\"desktop\":461,\"tablet\":468,\"mobile\":474},\"isDemo\":false,\"internal_class\":\"\",\"hover\":false,\"alias\":\"No matter what type ...\",\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"loop_animation\":\"none\",\"loop_easing\":\"\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\":\"\",\"max_height\":{\"desktop\":\"auto\",\"tablet\":\"auto\",\"mobile\":\"auto\"},\"min_height\":\"40px\",\"max_width\":{\"desktop\":\"auto\",\"tablet\":\"auto\",\"mobile\":\"440px\"},\"video_width\":{\"desktop\":\"480px\",\"tablet\":\"480px\",\"mobile\":\"480px\"},\"video_height\":{\"desktop\":\"360px\",\"tablet\":\"360px\",\"mobile\":\"360px\"},\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\",\"tablet\":\"nowrap\",\"mobile\":\"nowrap\"},\"display\":\"block\",\"static_end\":\"last\",\"align_hor\":{\"desktop\":\"left\",\"tablet\":\"left\",\"mobile\":\"left\"},\"align_vert\":{\"desktop\":\"top\",\"tablet\":\"top\",\"mobile\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"\",\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"css-position\":\"relative\",\"width\":440,\"height\":84,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"24px\",\"tablet\":\"24px\",\"mobile\":\"24px\"},\"line-height\":{\"desktop\":\"22\",\"tablet\":\"22\",\"mobile\":\"22\"},\"font-weight\":{\"desktop\":\"400\",\"tablet\":\"400\",\"mobile\":\"400\"},\"color\":{\"desktop\":\"#ffffff\",\"tablet\":\"#ffffff\",\"mobile\":\"#ffffff\"}},\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"],\"tablet\":[\"0\",\"0\",\"0\",\"0\"],\"mobile\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"],\"tablet\":[\"0\",\"0\",\"0\",\"0\"],\"mobile\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"inherit\",\"tablet\":\"inherit\",\"mobile\":\"inherit\"},\"x_start\":\"inherit\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"x_rotate_start\":\"inherit\",\"y_rotate_start\":\"inherit\",\"z_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"deformation\":{\"font-family\":\"Exo 2\",\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-transform\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\"},\"svg\":{\"svgstroke-color\":\"transparent\",\"svgstroke-transparency\":\"1\",\"svgstroke-dasharray\":\"0\",\"svgstroke-dashoffset\":\"0\",\"svgstroke-width\":\"0\",\"svgstroke-hover-color\":\"transparent\",\"svgstroke-hover-transparency\":\"1\",\"svgstroke-hover-dasharray\":\"0\",\"svgstroke-hover-dashoffset\":\"0\",\"svgstroke-hover-width\":\"0\"},\"deformation-hover\":{\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":3,\"endWithSlide\":false,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"scaleX\":{\"desktop\":\"\",\"tablet\":\"\",\"mobile\":\"\"},\"scaleY\":{\"desktop\":\"\",\"tablet\":\"\",\"mobile\":\"\"},\"autolinebreak\":false,\"displaymode\":true,\"scaleProportional\":false,\"attrID\":\"\",\"attrWrapperID\":\"\",\"attrClasses\":\"\",\"attrWrapperClasses\":\"\",\"attrTitle\":\"\",\"attrTabindex\":\"\",\"attrRel\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"p_uid\":-1,\"zIndex\":8,\"positionLeftReset\":500,\"addedToStage\":true,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}}]','\"\"'),(4,1,1,'{\"background_type\":\"image\",\"rs-gallery-type\":\"gallery\",\"bg_external\":\"\",\"bg_color\":\"#E7E7E7\",\"0\":\"Clear\",\"slide_bg_youtube\":\"\",\"slide_bg_vimeo\":\"\",\"slide_bg_html_mpeg\":\"\",\"slide_bg_html_webm\":\"\",\"slide_bg_html_ogv\":\"\",\"image_source_type\":\"full\",\"alt_option\":\"media_library\",\"alt_attr\":\"\",\"ext_width\":\"1920\",\"ext_height\":\"1080\",\"title_option\":\"media_library\",\"title_attr\":\"\",\"video_force_cover\":\"on\",\"video_dotted_overlay\":\"none\",\"video_ratio\":\"16:9\",\"video_start_at\":\"\",\"video_end_at\":\"\",\"video_loop\":\"none\",\"video_nextslide\":\"off\",\"video_force_rewind\":\"on\",\"video_mute\":\"on\",\"video_volume\":\"\",\"video_speed\":\"1\",\"video_arguments\":\"hd=1&wmode=opaque&showinfo=0&rel=0;\",\"video_arguments_vim\":\"title=0&byline=0&portrait=0&api=1\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_position\":\"center center\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_repeat\":\"no-repeat\",\"kenburn_effect\":\"on\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"110\",\"kb_start_offset_x\":\"0\",\"kb_end_offset_x\":\"140\",\"kb_start_offset_y\":\"0\",\"kb_end_offset_y\":\"0\",\"kb_start_rotate\":\"0\",\"kb_end_rotate\":\"0\",\"kb_easing\":\"Power0.easeInOut\",\"kb_duration\":\"5000\",\"title\":\"Slide\",\"delay\":\"\",\"stoponpurpose\":\"false\",\"invisibleslide\":\"false\",\"state\":\"published\",\"hideslideafter\":\"0\",\"hideslideonmobile\":\"off\",\"date_from\":\"\",\"date_to\":\"\",\"save_performance\":\"off\",\"slide_thumb\":\"http:\\/\\/stationtyresdarwen.co.uk\\/wp-content\\/\",\"thumb_dimension\":\"slider\",\"thumb_for_admin\":\"off\",\"slide_transition\":[\"fade\"],\"slot_amount\":[\"default\"],\"transition_rotation\":[\"0\"],\"transition_duration\":[\"300\"],\"transition_ease_in\":[\"default\"],\"transition_ease_out\":[\"default\"],\"ph-round-arrows-bg-color-custom-slide\":\"off\",\"ph-round-arrows-bg-color-custom\":\"0,0,0,0.5\",\"ph-round-arrows-bg-size-custom-slide\":\"off\",\"ph-round-arrows-bg-size-custom\":\"40\",\"ph-round-arrows-arrow-color-color-slide\":\"off\",\"ph-round-arrows-arrow-color-color\":\"#ffffff\",\"ph-round-arrows-arrow-size-custom-slide\":\"off\",\"ph-round-arrows-arrow-size-custom\":\"20\",\"ph-round-arrows-hover-bg-color-color-rgba-slide\":\"off\",\"ph-round-arrows-hover-bg-color-color-rgba\":\"#000000\",\"ph-round-bullets-bullet-size-custom-slide\":\"off\",\"ph-round-bullets-bullet-size-custom\":\"12\",\"ph-round-bullets-bullet-bg-top-color-slide\":\"off\",\"ph-round-bullets-bullet-bg-top-color\":\"#999999\",\"ph-round-bullets-bullet-bg-bottom-color-slide\":\"off\",\"ph-round-bullets-bullet-bg-bottom-color\":\"#e1e1e1\",\"ph-round-bullets-border-color-color-slide\":\"off\",\"ph-round-bullets-border-color-color\":\"#e5e5e5\",\"ph-round-bullets-border-size-custom-slide\":\"off\",\"ph-round-bullets-border-size-custom\":\"3\",\"ph-round-bullets-hover-bullet-bg-color-slide\":\"off\",\"ph-round-bullets-hover-bullet-bg-color\":\"#666666\",\"ph-round-tabs-font-family-font_family-slide\":\"off\",\"ph-round-tabs-font-family-font_family\":\"Roboto\",\"ph-round-tabs-border-color-color-rgba-slide\":\"off\",\"ph-round-tabs-border-color-color-rgba\":\"#e5e5e5\",\"ph-round-tabs-border-size-custom-slide\":\"off\",\"ph-round-tabs-border-size-custom\":\"1\",\"ph-round-tabs-image-size-custom-slide\":\"off\",\"ph-round-tabs-image-size-custom\":\"60\",\"ph-round-tabs-param1-color-color-rgba-slide\":\"off\",\"ph-round-tabs-param1-color-color-rgba\":\"rgba(51,51,51,0.5)\",\"ph-round-tabs-param1-size-custom-slide\":\"off\",\"ph-round-tabs-param1-size-custom\":\"12\",\"ph-round-tabs-hover-bg-color-color-rgba-slide\":\"off\",\"ph-round-tabs-hover-bg-color-color-rgba\":\"#eeeeee\",\"ph-round-tabs-bgcolor-color-rgba-slide\":\"off\",\"ph-round-tabs-bgcolor-color-rgba\":\"rgba(0,0,0,0)\",\"ph-round-tabs-contentcolor-color-rgba-slide\":\"off\",\"ph-round-tabs-contentcolor-color-rgba\":\"#333333\",\"ph-round-tabs-param2-color-color-rgba-slide\":\"off\",\"ph-round-tabs-param2-color-color-rgba\":\"0,0,0,0\",\"ph-round-tabs-param2-size-custom-slide\":\"off\",\"ph-round-tabs-param2-size-custom\":\"14\",\"ph-round-thumbs-title-bg-color-rgba-slide\":\"off\",\"ph-round-thumbs-title-bg-color-rgba\":\"rgba(0,0,0,0.85)\",\"ph-round-thumbs-title-color-color-rgba-slide\":\"off\",\"ph-round-thumbs-title-color-color-rgba\":\"#ffffff\",\"ph-round-thumbs-title-font-size-custom-slide\":\"off\",\"ph-round-thumbs-title-font-size-custom\":\"12\",\"params_1\":\"\",\"params_1_chars\":\"10\",\"params_2\":\"\",\"params_2_chars\":\"10\",\"params_3\":\"\",\"params_3_chars\":\"10\",\"params_4\":\"\",\"params_4_chars\":\"10\",\"params_5\":\"\",\"params_5_chars\":\"10\",\"params_6\":\"\",\"params_6_chars\":\"10\",\"params_7\":\"\",\"params_7_chars\":\"10\",\"params_8\":\"\",\"params_8_chars\":\"10\",\"params_9\":\"\",\"params_9_chars\":\"10\",\"params_10\":\"\",\"params_10_chars\":\"10\",\"slide_description\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"data_attr\":\"\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"image\":\"http:\\/\\/stationtyresdarwen.co.uk\\/wp-content\\/uploads\\/slider.jpg\",\"slide_parallax_level\":\"10\",\"media-filter-type\":\"none\",\"image_id\":\"7\",\"0\":\"Clear\"}','[{\"text\":\"<h2>Tyre Repairs<\\/h2>\",\"type\":\"text\",\"special_type\":null,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":650,\"delay\":0,\"split\":\"none\",\"splitdelay\":\"10\",\"split_extratime\":0,\"speed\":300,\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"time_relative\":650},\"frame_999\":{\"time\":4680,\"delay\":0,\"split\":\"none\",\"splitdelay\":\"10\",\"split_extratime\":0,\"speed\":300,\"animation\":\"\",\"easing\":\"Power3.easeInOut\",\"time_relative\":3730}},\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":6,\"left\":{\"desktop\":282},\"top\":{\"desktop\":198},\"isDemo\":false,\"internal_class\":\"\",\"hover\":false,\"alias\":\"caption text5\",\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"loop_animation\":\"none\",\"loop_easing\":\"\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\":\"\",\"max_height\":{\"desktop\":\"auto\"},\"min_height\":\"40px\",\"max_width\":{\"desktop\":\"auto\"},\"video_width\":{\"desktop\":\"480px\"},\"video_height\":{\"desktop\":\"360px\"},\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\"},\"display\":\"block\",\"static_end\":\"last\",\"align_hor\":{\"desktop\":\"left\"},\"align_vert\":{\"desktop\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"\",\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"css-position\":\"relative\",\"width\":156,\"height\":74,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"20\"},\"line-height\":{\"desktop\":\"22\"},\"font-weight\":{\"desktop\":\"400\"},\"color\":{\"desktop\":\"#ffffff\"}},\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"inherit\"},\"x_start\":\"inherit\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"x_rotate_start\":\"inherit\",\"y_rotate_start\":\"inherit\",\"z_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"deformation\":{\"font-family\":\"Open Sans\",\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-transform\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"vertical-align\":\"top\"},\"svg\":{\"svgstroke-color\":\"transparent\",\"svgstroke-transparency\":\"1\",\"svgstroke-dasharray\":\"0\",\"svgstroke-dashoffset\":\"0\",\"svgstroke-width\":\"0\",\"svgstroke-hover-color\":\"transparent\",\"svgstroke-hover-transparency\":\"1\",\"svgstroke-hover-dasharray\":\"0\",\"svgstroke-hover-dashoffset\":\"0\",\"svgstroke-hover-width\":\"0\"},\"deformation-hover\":{\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":0,\"endWithSlide\":false,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"scaleX\":{\"desktop\":\"\"},\"scaleY\":{\"desktop\":\"\"},\"autolinebreak\":false,\"displaymode\":true,\"scaleProportional\":false,\"attrID\":\"\",\"attrWrapperID\":\"\",\"attrClasses\":\"stm_trapeze stm_trapeze_img\",\"attrWrapperClasses\":\"\",\"attrTitle\":\"\",\"attrTabindex\":\"\",\"attrRel\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"p_uid\":-1,\"zIndex\":5,\"positionLeftReset\":472,\"addedToStage\":true,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"parallax_layer_ddd_zlevel\":\"front\",\"static_start\":\"1\"},{\"text\":\"THE RIGHT TYRES\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":2,\"left\":{\"desktop\":210,\"mobile\":50},\"top\":{\"desktop\":357,\"mobile\":356},\"internal_class\":\"\",\"hover\":false,\"alias\":\"YZF-R1 2001\",\"loop_animation\":\"none\",\"loop_easing\":\"\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"html_tag\":\"div\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\":\"\",\"max_height\":{\"desktop\":\"auto\",\"mobile\":\"auto\"},\"max_width\":{\"desktop\":\"auto\",\"mobile\":\"auto\"},\"video_width\":{\"desktop\":\"480px\",\"mobile\":\"480\"},\"video_height\":{\"desktop\":\"360px\",\"mobile\":\"360\"},\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\",\"mobile\":\"nowrap\"},\"static_end\":\"last\",\"align_hor\":{\"desktop\":\"left\",\"mobile\":\"left\"},\"align_vert\":{\"desktop\":\"bottom\",\"mobile\":\"bottom\"},\"hiddenunder\":false,\"resizeme\":false,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"\",\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":false,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":false,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"width\":229,\"height\":34,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"32px\",\"mobile\":\"32px\"},\"line-height\":{\"desktop\":\"34px\",\"mobile\":\"34px\"},\"font-weight\":{\"desktop\":\"700\",\"mobile\":\"700\"},\"color\":{\"desktop\":\"#0e1315\",\"mobile\":\"#0e1315\"}},\"x_start\":\"-50px\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"50px\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"x_rotate_start\":\"inherit\",\"y_rotate_start\":\"inherit\",\"z_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"deformation\":{\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"text-transform\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"vertical-align\":\"top\"},\"svg\":{\"svgstroke-color\":\"transparent\",\"svgstroke-transparency\":\"1\",\"svgstroke-dasharray\":\"0\",\"svgstroke-dashoffset\":\"0\",\"svgstroke-width\":\"0\",\"svgstroke-hover-color\":\"transparent\",\"svgstroke-hover-transparency\":\"1\",\"svgstroke-hover-dasharray\":\"0\",\"svgstroke-hover-dashoffset\":\"0\",\"svgstroke-hover-width\":\"0\"},\"deformation-hover\":{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":1,\"split_in_extratime\":-10,\"split_out_extratime\":-10,\"endWithSlide\":false,\"toggle\":false,\"toggle_use_hover\":false,\"texttoggle\":\"\",\"scaleX\":{\"desktop\":\"\",\"mobile\":\"\"},\"scaleY\":{\"desktop\":\"\",\"mobile\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"stm_trapeze stm_trapeze_white heading-font\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer-selectable\":\"default\",\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":800,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":600,\"animation\":\"sfl\",\"easing\":\"Power2.easeInOut\",\"time_relative\":800},\"frame_999\":{\"time\":4690,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"str\",\"easing\":\"nothing\",\"time_relative\":3290}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"min_height\":\"40px\",\"display\":\"block\",\"link\":\"\",\"link_open_in\":\"same\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"p_uid\":-1,\"zIndex\":6,\"toggle_inverse_content\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"positionLeftReset\":460,\"parallax_layer_ddd_zlevel\":\"front\",\"static_start\":\"1\"},{\"text\":\" FOR YOUR VEHICLE\\n\",\"type\":\"text\",\"special_type\":null,\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":3,\"left\":{\"desktop\":283,\"mobile\":70},\"top\":{\"desktop\":312,\"mobile\":309},\"internal_class\":\"\",\"hover\":false,\"alias\":\"$ 7999\",\"loop_animation\":\"none\",\"loop_easing\":\"\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"html_tag\":\"div\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\":\"\",\"max_height\":{\"desktop\":\"auto\",\"mobile\":\"auto\"},\"max_width\":{\"desktop\":\"auto\",\"mobile\":\"auto\"},\"video_width\":{\"desktop\":\"480px\",\"mobile\":\"480\"},\"video_height\":{\"desktop\":\"360px\",\"mobile\":\"360\"},\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\",\"mobile\":\"nowrap\"},\"static_end\":\"last\",\"align_hor\":{\"desktop\":\"left\",\"mobile\":\"left\"},\"align_vert\":{\"desktop\":\"bottom\",\"mobile\":\"bottom\"},\"hiddenunder\":false,\"resizeme\":false,\"seo-optimized\":false,\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"\",\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":false,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":false,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"width\":223,\"height\":22,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"28px\",\"mobile\":\"20\"},\"line-height\":{\"desktop\":\"22\",\"mobile\":\"22\"},\"font-weight\":{\"desktop\":\"700\",\"mobile\":\"700\"},\"color\":{\"desktop\":\"#ffffff\",\"mobile\":\"#ffffff\"}},\"x_start\":\"-50px\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"50px\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"x_rotate_start\":\"inherit\",\"y_rotate_start\":\"inherit\",\"z_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"deformation\":{\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-align\":\"left\",\"text-transform\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\",\"vertical-align\":\"top\"},\"svg\":{\"svgstroke-color\":\"transparent\",\"svgstroke-transparency\":\"1\",\"svgstroke-dasharray\":\"0\",\"svgstroke-dashoffset\":\"0\",\"svgstroke-width\":\"0\",\"svgstroke-hover-color\":\"transparent\",\"svgstroke-hover-transparency\":\"1\",\"svgstroke-hover-dasharray\":\"0\",\"svgstroke-hover-dashoffset\":\"0\",\"svgstroke-hover-width\":\"0\"},\"deformation-hover\":{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":2,\"split_in_extratime\":-10,\"split_out_extratime\":-10,\"endWithSlide\":false,\"toggle\":false,\"toggle_use_hover\":false,\"texttoggle\":\"\",\"scaleX\":{\"desktop\":\"\",\"mobile\":\"\"},\"scaleY\":{\"desktop\":\"\",\"mobile\":\"\"},\"autolinebreak\":false,\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"stm_trapeze stm_trapeze_red heading-font\",\"attrTitle\":\"\",\"attrRel\":\"\",\"layer-selectable\":\"default\",\"addedToStage\":true,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":900,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":600,\"animation\":\"sfl\",\"easing\":\"Power2.easeInOut\",\"time_relative\":900},\"frame_999\":{\"time\":4680,\"delay\":0,\"split\":\"none\",\"split_extratime\":0,\"splitdelay\":\"10\",\"speed\":300,\"animation\":\"str\",\"easing\":\"nothing\",\"time_relative\":3180}},\"isDemo\":false,\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"layer_blend_mode\":\"normal\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"min_height\":\"40px\",\"display\":\"block\",\"link\":\"\",\"link_open_in\":\"same\",\"css-position\":\"relative\",\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"left\"},\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"p_uid\":-1,\"zIndex\":7,\"toggle_inverse_content\":false,\"displaymode\":true,\"attrWrapperID\":\"\",\"attrWrapperClasses\":\"\",\"attrTabindex\":\"\",\"column_break_at\":\"mobile\",\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]},\"positionLeftReset\":450,\"parallax_layer_ddd_zlevel\":\"front\",\"static_start\":\"1\"},{\"text\":\"<h3>No matter what type of vehicle you drive<\\/h3>\",\"type\":\"text\",\"special_type\":null,\"version\":\"530\",\"frames\":{\"frame_0\":{\"time\":990,\"delay\":0,\"split\":\"none\",\"splitdelay\":\"10\",\"split_extratime\":0,\"speed\":300,\"animation\":\"tp-fade\",\"easing\":\"Power3.easeInOut\",\"time_relative\":990},\"frame_999\":{\"time\":4680,\"delay\":0,\"split\":\"none\",\"splitdelay\":\"10\",\"split_extratime\":0,\"speed\":300,\"animation\":\"\",\"easing\":\"Power3.easeInOut\",\"time_relative\":3390}},\"subtype\":\"\",\"specialsettings\":{},\"unique_id\":5,\"left\":{\"desktop\":188,\"tablet\":94,\"mobile\":17},\"top\":{\"desktop\":461,\"tablet\":478,\"mobile\":490},\"isDemo\":false,\"internal_class\":\"\",\"hover\":false,\"alias\":\"No matter what type ...\",\"layer_bg_position\":\"center center\",\"layer_bg_size\":\"cover\",\"layer_bg_repeat\":\"no-repeat\",\"loop_animation\":\"none\",\"loop_easing\":\"\",\"loop_speed\":\"2\",\"loop_startdeg\":-20,\"loop_enddeg\":20,\"loop_xorigin\":50,\"loop_yorigin\":50,\"loop_xstart\":0,\"loop_xend\":0,\"loop_ystart\":0,\"loop_yend\":0,\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"layer_blend_mode\":\"normal\",\"html_tag\":\"div\",\"mask_start\":false,\"mask_end\":false,\"x_start_reverse\":false,\"y_start_reverse\":false,\"x_end_reverse\":false,\"y_end_reverse\":false,\"x_rotate_start_reverse\":false,\"y_rotate_start_reverse\":false,\"z_rotate_start_reverse\":false,\"x_rotate_end_reverse\":false,\"y_rotate_end_reverse\":false,\"z_rotate_end_reverse\":false,\"scale_x_start_reverse\":false,\"scale_y_start_reverse\":false,\"scale_x_end_reverse\":false,\"scale_y_end_reverse\":false,\"skew_x_start_reverse\":false,\"skew_y_start_reverse\":false,\"skew_x_end_reverse\":false,\"skew_y_end_reverse\":false,\"mask_x_start_reverse\":false,\"mask_y_start_reverse\":false,\"mask_x_end_reverse\":false,\"mask_y_end_reverse\":false,\"mask_x_start\":\"0\",\"mask_y_start\":\"0\",\"mask_speed_start\":\"inherit\",\"mask_ease_start\":\"inherit\",\"mask_x_end\":\"0\",\"mask_y_end\":\"0\",\"mask_speed_end\":\"inherit\",\"mask_ease_end\":\"inherit\",\"alt_option\":\"media_library\",\"alt\":\"\",\"max_height\":{\"desktop\":\"auto\",\"tablet\":\"auto\",\"mobile\":\"auto\"},\"min_height\":\"40px\",\"max_width\":{\"desktop\":\"auto\",\"tablet\":\"auto\",\"mobile\":\"441px\"},\"video_width\":{\"desktop\":\"480px\",\"tablet\":\"480px\",\"mobile\":\"480px\"},\"video_height\":{\"desktop\":\"360px\",\"tablet\":\"360px\",\"mobile\":\"360px\"},\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"whitespace\":{\"desktop\":\"nowrap\",\"tablet\":\"nowrap\",\"mobile\":\"nowrap\"},\"display\":\"block\",\"static_start\":\"1\",\"static_end\":\"last\",\"align_hor\":{\"desktop\":\"left\",\"tablet\":\"left\",\"mobile\":\"left\"},\"align_vert\":{\"desktop\":\"top\",\"tablet\":\"top\",\"mobile\":\"top\"},\"hiddenunder\":false,\"resizeme\":true,\"seo-optimized\":false,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"\",\"visible-desktop\":true,\"visible-notebook\":true,\"visible-tablet\":true,\"visible-mobile\":true,\"resize-full\":true,\"show-on-hover\":false,\"basealign\":\"grid\",\"responsive_offset\":true,\"lazy-load\":\"auto\",\"image-size\":\"auto\",\"css-position\":\"relative\",\"width\":441,\"height\":84,\"cover_mode\":\"custom\",\"static_styles\":{\"font-size\":{\"desktop\":\"24px\",\"tablet\":\"24px\",\"mobile\":\"24px\"},\"line-height\":{\"desktop\":\"22\",\"tablet\":\"22\",\"mobile\":\"22\"},\"font-weight\":{\"desktop\":\"400\",\"tablet\":\"400\",\"mobile\":\"400\"},\"color\":{\"desktop\":\"#ffffff\",\"tablet\":\"#ffffff\",\"mobile\":\"#ffffff\"}},\"margin\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"],\"tablet\":[\"0\",\"0\",\"0\",\"0\"],\"mobile\":[\"0\",\"0\",\"0\",\"0\"]},\"padding\":{\"desktop\":[\"0\",\"0\",\"0\",\"0\"],\"tablet\":[\"0\",\"0\",\"0\",\"0\"],\"mobile\":[\"0\",\"0\",\"0\",\"0\"]},\"text-align\":{\"desktop\":\"inherit\",\"tablet\":\"inherit\",\"mobile\":\"inherit\"},\"x_start\":\"inherit\",\"y_start\":\"inherit\",\"z_start\":\"inherit\",\"x_end\":\"inherit\",\"y_end\":\"inherit\",\"z_end\":\"inherit\",\"opacity_start\":\"0\",\"opacity_end\":\"0\",\"blurfilter_start\":\"0\",\"blurfilter_end\":\"0\",\"grayscalefilter_start\":\"0\",\"grayscalefilter_end\":\"0\",\"x_rotate_start\":\"inherit\",\"y_rotate_start\":\"inherit\",\"z_rotate_start\":\"inherit\",\"x_rotate_end\":\"inherit\",\"y_rotate_end\":\"inherit\",\"z_rotate_end\":\"inherit\",\"scale_x_start\":\"inherit\",\"scale_y_start\":\"inherit\",\"scale_x_end\":\"inherit\",\"scale_y_end\":\"inherit\",\"skew_x_start\":\"inherit\",\"skew_y_start\":\"inherit\",\"skew_x_end\":\"inherit\",\"skew_y_end\":\"inherit\",\"pers_start\":\"inherit\",\"pers_end\":\"inherit\",\"deformation\":{\"font-family\":\"Exo 2\",\"font-style\":\"normal\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"text-transform\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0\",\"0\",\"0\",\"0\"],\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\",\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"overflow\":\"visible\"},\"svg\":{\"svgstroke-color\":\"transparent\",\"svgstroke-transparency\":\"1\",\"svgstroke-dasharray\":\"0\",\"svgstroke-dashoffset\":\"0\",\"svgstroke-width\":\"0\",\"svgstroke-hover-color\":\"transparent\",\"svgstroke-hover-transparency\":\"1\",\"svgstroke-hover-dasharray\":\"0\",\"svgstroke-hover-dashoffset\":\"0\",\"svgstroke-hover-width\":\"0\"},\"deformation-hover\":{\"blurfilter\":\"0\",\"grayscalefilter\":\"0\",\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"x\":0,\"y\":0,\"z\":0,\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":0,\"yrotate\":0,\"2d_rotation\":0,\"2d_origin_x\":50,\"2d_origin_y\":50,\"speed\":\"0\",\"zindex\":\"auto\",\"easing\":\"Linear.easeNone\",\"css_cursor\":\"auto\"},\"visible\":true,\"animation_overwrite\":\"wait\",\"trigger_memory\":\"keep\",\"serial\":3,\"endWithSlide\":false,\"toggle\":false,\"toggle_use_hover\":false,\"toggle_inverse_content\":false,\"texttoggle\":\"\",\"scaleX\":{\"desktop\":\"\",\"tablet\":\"\",\"mobile\":\"\"},\"scaleY\":{\"desktop\":\"\",\"tablet\":\"\",\"mobile\":\"\"},\"autolinebreak\":false,\"displaymode\":true,\"scaleProportional\":false,\"attrID\":\"\",\"attrWrapperID\":\"\",\"attrClasses\":\"\",\"attrWrapperClasses\":\"\",\"attrTitle\":\"\",\"attrTabindex\":\"\",\"attrRel\":\"\",\"layer-selectable\":\"default\",\"column_break_at\":\"mobile\",\"p_uid\":-1,\"zIndex\":8,\"positionLeftReset\":500,\"addedToStage\":true,\"layer_action\":{\"tooltip_event\":[],\"action\":[],\"image_link\":[],\"link_open_in\":[],\"jump_to_slide\":[],\"scrollunder_offset\":[],\"actioncallback\":[],\"layer_target\":[],\"link_type\":[],\"action_delay\":[],\"toggle_layer_type\":[],\"toggle_class\":[]}}]','\"\"');
/*!40000 ALTER TABLE `wp_revslider_slides` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_revslider_static_slides`
--
DROP TABLE IF EXISTS `wp_revslider_static_slides`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_revslider_static_slides` (
`id` int(9) NOT NULL AUTO_INCREMENT,
`slider_id` int(9) NOT NULL,
`params` longtext NOT NULL,
`layers` longtext NOT NULL,
`settings` text NOT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_revslider_static_slides`
--
LOCK TABLES `wp_revslider_static_slides` WRITE;
/*!40000 ALTER TABLE `wp_revslider_static_slides` DISABLE KEYS */;
INSERT INTO `wp_revslider_static_slides` VALUES (1,2,'{\"background_type\":\"trans\"}','','');
/*!40000 ALTER TABLE `wp_revslider_static_slides` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`term_order` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (1,1,0),(4238,58,0),(4238,107,0),(4238,110,0),(4238,113,0),(4238,115,0),(4238,122,0),(4250,58,0),(4250,107,0),(4250,113,0),(4250,117,0),(4250,124,0),(4250,125,0),(4251,52,0),(4251,102,0),(4251,106,0),(4251,110,0),(4251,123,0),(4251,125,0),(4252,51,0),(4252,99,0),(4252,100,0),(4252,108,0),(4252,109,0),(4252,123,0),(4254,57,0),(4254,100,0),(4254,110,0),(4254,114,0),(4254,123,0),(4254,126,0),(4255,58,0),(4255,91,0),(4255,100,0),(4255,116,0),(4255,121,0),(4255,123,0),(4282,129,0),(4285,127,0),(748,1,0),(748,130,0),(748,4,0),(1064,1,0),(1064,130,0),(1064,4,0),(1073,1,0),(1073,5,0),(1073,9,0),(1073,2,0),(1073,3,0),(1074,1,0),(1074,5,0),(1074,9,0),(1074,2,0),(1074,3,0),(1386,1,0),(1386,4,0),(4288,128,0),(4290,128,0),(4291,128,0),(4304,129,0),(4305,129,0),(4309,127,0),(4312,127,0),(4376,128,0),(4375,128,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) 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=MyISAM AUTO_INCREMENT=131 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_taxonomy`
--
LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,6),(2,2,'category','',0,2),(3,3,'category','',0,2),(4,4,'category','',0,3),(5,5,'post_tag','',0,2),(6,6,'post_tag','',0,0),(7,7,'post_tag','',0,0),(8,8,'post_tag','',0,0),(9,9,'post_tag','',0,2),(10,10,'post_tag','',0,0),(11,11,'post_tag','',0,0),(12,12,'post_tag','',0,0),(13,13,'post_tag','',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,'engine','',0,0),(20,20,'engine','',0,0),(21,21,'engine','',0,0),(22,22,'mileage','',0,0),(23,23,'price','',0,0),(24,24,'serie','',0,0),(25,25,'engine','',0,0),(26,26,'price','',0,0),(27,27,'engine','',0,0),(28,28,'ca-year','',0,0),(29,29,'ca-year','',0,0),(30,30,'ca-year','',0,0),(31,31,'ca-year','',0,0),(32,32,'engine','',0,0),(33,33,'engine','',0,0),(34,34,'engine','',0,0),(35,35,'engine','',0,0),(36,36,'engine','',0,0),(37,37,'engine','',0,0),(38,38,'engine','',0,0),(39,39,'engine','',0,0),(40,40,'engine','',0,0),(41,41,'engine','',0,0),(42,42,'ca-year','',0,0),(43,43,'price','',0,0),(44,44,'price','',0,0),(45,45,'ca-year','',0,0),(46,46,'ca-year','',0,0),(47,47,'ca-year','',0,0),(48,48,'ca-year','',0,0),(49,49,'ca-year','',0,0),(50,50,'ca-year','',0,0),(51,51,'ca-year','',0,1),(52,52,'ca-year','',0,1),(53,53,'ca-year','',0,0),(54,54,'ca-year','',0,0),(55,55,'ca-year','',0,0),(56,56,'ca-year','',0,0),(57,57,'ca-year','',0,1),(58,58,'ca-year','',0,3),(59,59,'engine','',0,0),(60,60,'mileage','',0,0),(61,61,'price','',0,0),(62,62,'engine','',0,0),(63,63,'engine','',0,0),(64,64,'engine','',0,0),(65,65,'engine','',0,0),(66,66,'engine','',0,0),(67,67,'engine','',0,0),(68,68,'engine','',0,0),(69,69,'engine','',0,0),(70,70,'engine','',0,0),(71,71,'engine','',0,0),(72,72,'engine','',0,0),(73,73,'engine','',0,0),(74,74,'price','',0,0),(75,75,'engine','',0,0),(76,76,'price','',0,0),(77,77,'engine','',0,0),(78,78,'engine','',0,0),(79,79,'engine','',0,0),(80,80,'engine','',0,0),(81,81,'engine','',0,0),(82,82,'engine','',0,0),(83,83,'price','',0,0),(84,84,'engine','',0,0),(85,85,'price','',0,0),(86,86,'engine','',0,0),(87,87,'engine','',0,0),(88,88,'engine','',0,0),(89,89,'price','',0,0),(90,90,'price','',0,0),(91,91,'serie','',0,1),(92,92,'price','',0,0),(93,93,'mileage','',0,0),(94,94,'price','',0,0),(95,95,'mileage','',0,0),(96,96,'mileage','',0,0),(97,97,'mileage','',0,0),(98,98,'mileage','',0,0),(99,99,'body','',0,1),(100,100,'exterior-color','',0,3),(101,101,'exterior-color','',0,0),(102,102,'serie','',0,1),(103,103,'make','',0,0),(104,104,'exterior-color','',0,0),(105,105,'exterior-color','',0,0),(106,106,'make','',0,1),(107,107,'serie','',0,2),(108,108,'serie','',0,1),(109,109,'make','',0,1),(110,110,'body','',0,3),(111,111,'serie','',0,0),(112,112,'ca-year','',0,0),(113,113,'condition','',0,2),(114,114,'serie','',0,1),(115,115,'exterior-color','',0,1),(116,116,'body','',0,1),(117,117,'make','',0,1),(118,118,'exterior-color','',0,0),(119,119,'exterior-color','',0,0),(120,120,'exterior-color','',0,0),(121,121,'make','',0,1),(122,122,'make','',0,1),(123,123,'condition','',0,4),(124,124,'body','',0,1),(125,125,'exterior-color','',0,2),(126,126,'make','',0,1),(127,127,'nav_menu','',0,3),(128,128,'nav_menu','',0,5),(129,129,'nav_menu','',0,3),(130,130,'post_format','',0,2);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_termmeta`
--
DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_termmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) 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=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_termmeta`
--
LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) 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=MyISAM AUTO_INCREMENT=131 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorised','uncategorised',0),(2,'Motors','motors',0),(3,'Tesla','tesla',0),(4,'Uncategorized','uncategorized',0),(5,'Autopilot','autopilot',0),(6,'Awards','awards',0),(7,'de','dede',0),(8,'Dealer','dealer',0),(9,'Future','future',0),(10,'Light','light',0),(11,'Management','management',0),(12,'Marketing plan','marketing-plan',0),(13,'Motors','motors',0),(14,'Project','project',0),(15,'Rock','rock',0),(16,'Rock 2','rock-2',0),(17,'Teslamotors','teslamotors',0),(18,'Vehicles','vehicles',0),(19,'1.8L Hybrid I4 134hp','1-8l-hybrid-i4-134hp',0),(20,'1.8L I4 140hp 128ft. lbs.','1-8l-i4-140hp-128ft-lbs',0),(21,'100','100',0),(22,'10000','10000',0),(23,'10000','10000',0),(24,'125i','125i',0),(25,'150','150',0),(26,'15000','15000',0),(27,'1832CC','1832cc',0),(28,'1967','1967',0),(29,'1980','1980',0),(30,'1990','1990',0),(31,'1992','1992',0),(32,'2.0L I4','2-0l-i4',0),(33,'2.0L I4 150hp 140ft. lbs.','2-0l-i4-150hp-140ft-lbs',0),(34,'2.2L I4','2-2l-i4',0),(35,'2.3L I4','2-3l-i4',0),(36,'2.4L I4','2-4l-i4',0),(37,'2.5L I4','2-5l-i4',0),(38,'2.5L I5','2-5l-i5',0),(39,'2.5L Turbocharged H4 305hp 290ft. lbs.','2-5l-turbocharged-h4-305hp-290ft-lbs',0),(40,'2.7L V6','2-7l-v6',0),(41,'200','200',0),(42,'2000','2000',0),(43,'2000','2000',0),(44,'20000','20000',0),(45,'2001','2001',0),(46,'2004','2004',0),(47,'2005','2005',0),(48,'2006','2006',0),(49,'2007','2007',0),(50,'2008','2008',0),(51,'2009','2009',0),(52,'2010','2010',0),(53,'2011','2011',0),(54,'2012','2012',0),(55,'2013','2013',0),(56,'2014','2014',0),(57,'2015','2015',0),(58,'2016','2016',0),(59,'250','250',0),(60,'25000','25000',0),(61,'25000','25000',0),(62,'3.0L Diesel Twin Turbo I6 265hp 425ft. lbs.','3-0l-diesel-twin-turbo-i6-265hp-425ft-lbs',0),(63,'3.0L NA V6 single overhead cam (SOHC) 24V','3-0l-na-v6-single-overhead-cam-sohc-24v',0),(64,'3.0L V6','3-0l-v6',0),(65,'3.3L Hybrid V6 268hp','3-3l-hybrid-v6-268hp',0),(66,'3.3L V6','3-3l-v6',0),(67,'3.5L V6','3-5l-v6',0),(68,'3.5L V6 double overhead camshaft 24V','3-5l-v6-double-overhead-camshaft-24v',0),(69,'3.6L V6','3-6l-v6',0),(70,'3.7L I5','3-7l-i5',0),(71,'3.7L V6 300hp 270ft. lbs.','3-7l-v6-300hp-270ft-lbs',0),(72,'3.7L V6 300hp 275ft. lbs.','3-7l-v6-300hp-275ft-lbs',0),(73,'300','300',0),(74,'30000','30000',0),(75,'350','350',0),(76,'35000','35000',0),(77,'3L NA V6 double overhead cam (DOHC) 24V','3l-na-v6-double-overhead-cam-dohc-24v',0),(78,'4.0L V6 239hp 278ft. lbs.','4-0l-v6-239hp-278ft-lbs',0),(79,'4.6L V8','4-6l-v8',0),(80,'4.7L V8','4-7l-v8',0),(81,'4.7L V8 DOHC 32V FI Engine','4-7l-v8-dohc-32v-fi-engine',0),(82,'400','400',0),(83,'40000','40000',0),(84,'450','450',0),(85,'45000','45000',0),(86,'5.7L V8','5-7l-v8',0),(87,'50','50',0),(88,'500','500',0),(89,'50000','50000',0),(90,'6000','6000',0),(91,'650','650',0),(92,'70000','70000',0),(93,'79777','79777',0),(94,'80000','80000',0),(95,'82557','82557',0),(96,'88297','88297',0),(97,'92549','92549',0),(98,'95100','95100',0),(99,'ATVS','atvs',0),(100,'Black','black',0),(101,'Blue','blue',0),(102,'CBR','cbr',0),(103,'Ducati','ducati',0),(104,'Gray','gray',0),(105,'Green','green',0),(106,'Honda','honda',0),(107,'Jet','jet-mate',0),(108,'JTX','jtx-900',0),(109,'Kawasaki','kawasaki',0),(110,'Motorcycles','motorcycles',0),(111,'MT-S','mt-s',0),(112,'N/A','na',0),(113,'New','new-cars',0),(114,'PX','px',0),(115,'Red','red',0),(116,'Scooters','scooters',0),(117,'Sea doo','sea-doo',0),(118,'Silver','silver',0),(119,'Solid Black','solid-black',0),(120,'Solid White','solid-white',0),(121,'Star','star',0),(122,'Suzuki','suzuki',0),(123,'Used','used-cars',0),(124,'Watercraft','watercraft',0),(125,'White','white',0),(126,'Yamaha','yamaha',0),(127,'Bottom menu','bottom-menu',0),(128,'Primary menu','primary-menu',0),(129,'Top right menu','top-right-menu',0),(130,'Video','post-format-video',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','stat'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers','vc_pointers_backend_editor'),(13,1,'show_welcome_panel','1'),(15,1,'wp_dashboard_quick_press_last_post_id','4456'),(16,1,'sb_instagram_ignore_notice_2016','true'),(17,1,'wp_user-settings','libraryContent=browse&editor=tinymce&edit_element_vcUIPanelWidth=650&edit_element_vcUIPanelLeft=833px&edit_element_vcUIPanelTop=75px'),(18,1,'wp_user-settings-time','1514974660'),(19,1,'closedpostboxes_page','a:0:{}'),(20,1,'metaboxhidden_page','a:7:{i:0;s:12:\"revisionsdiv\";i:1;s:11:\"postexcerpt\";i:2;s:10:\"postcustom\";i:3;s:16:\"commentstatusdiv\";i:4;s:11:\"commentsdiv\";i:5;s:7:\"slugdiv\";i:6;s:9:\"authordiv\";}'),(21,1,'nav_menu_recently_edited','128'),(22,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(23,1,'metaboxhidden_nav-menus','a:3:{i:0;s:22:\"add-post-type-listings\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";}'),(24,1,'tgmpa_dismissed_notice_tgm_message_update_new','1');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT '0',
`display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'stat','$P$Bh5u79UEZQzpbuiAIbYJL8fRAiI3Z3.','stat','bhoobal.webdesigner@gmail.com','','2017-02-22 18:28:53','',0,'stat');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2018-04-25 23:04:00