-- MySQL dump 10.13  Distrib 5.7.44, for Linux (x86_64)
--
-- Host: localhost    Database: surpro_try
-- ------------------------------------------------------
-- Server version	5.7.44

/*!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 `address_book`
--

DROP TABLE IF EXISTS `address_book`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `address_book` (
  `address_book_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_id` int(11) NOT NULL DEFAULT '0',
  `entry_gender` char(1) NOT NULL DEFAULT '',
  `entry_company` varchar(64) DEFAULT NULL,
  `entry_firstname` varchar(32) NOT NULL DEFAULT '',
  `entry_lastname` varchar(32) NOT NULL DEFAULT '',
  `entry_street_address` varchar(64) NOT NULL DEFAULT '',
  `entry_suburb` varchar(32) DEFAULT NULL,
  `entry_postcode` varchar(10) NOT NULL DEFAULT '',
  `entry_city` varchar(32) NOT NULL DEFAULT '',
  `entry_state` varchar(32) DEFAULT NULL,
  `entry_country_id` int(11) NOT NULL DEFAULT '0',
  `entry_zone_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`address_book_id`),
  KEY `idx_address_book_customers_id_zen` (`customers_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `address_book`
--

LOCK TABLES `address_book` WRITE;
/*!40000 ALTER TABLE `address_book` DISABLE KEYS */;
INSERT INTO `address_book` VALUES (1,1,'m','AAA Testing','JACK','Brake','4120 W Haslett Rd','','48872','Perry','',223,33);
/*!40000 ALTER TABLE `address_book` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `address_format`
--

DROP TABLE IF EXISTS `address_format`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `address_format` (
  `address_format_id` int(11) NOT NULL AUTO_INCREMENT,
  `address_format` varchar(128) NOT NULL DEFAULT '',
  `address_summary` varchar(48) NOT NULL DEFAULT '',
  PRIMARY KEY (`address_format_id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `address_format`
--

LOCK TABLES `address_format` WRITE;
/*!40000 ALTER TABLE `address_format` DISABLE KEYS */;
INSERT INTO `address_format` VALUES (1,'$firstname $lastname$cr$streets$cr$city, $postcode$cr$statecomma$country','$city / $country'),(2,'$firstname $lastname$cr$streets$cr$city, $state    $postcode$cr$country','$city, $state / $country'),(3,'$firstname $lastname$cr$streets$cr$city$cr$postcode - $statecomma$country','$state / $country'),(4,'$firstname $lastname$cr$streets$cr$city ($postcode)$cr$country','$postcode / $country'),(5,'$firstname $lastname$cr$streets$cr$postcode $city$cr$country','$city / $country'),(6,'$firstname $lastname$cr$streets$cr$city$cr$state$cr$postcode$cr$country','$postcode / $country'),(7,'$firstname $lastname$cr$streets$cr$city $state $postcode$cr$country','$city $state / $country');
/*!40000 ALTER TABLE `address_format` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin`
--

DROP TABLE IF EXISTS `admin`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin` (
  `admin_id` int(11) NOT NULL AUTO_INCREMENT,
  `admin_name` varchar(32) NOT NULL DEFAULT '',
  `admin_email` varchar(96) NOT NULL DEFAULT '',
  `admin_profile` int(11) NOT NULL DEFAULT '0',
  `admin_pass` varchar(255) NOT NULL DEFAULT '',
  `prev_pass1` varchar(255) NOT NULL DEFAULT '',
  `prev_pass2` varchar(255) NOT NULL DEFAULT '',
  `prev_pass3` varchar(255) NOT NULL DEFAULT '',
  `pwd_last_change_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `reset_token` varchar(255) NOT NULL DEFAULT '',
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `last_login_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `last_login_ip` varchar(45) NOT NULL DEFAULT '',
  `failed_logins` smallint(4) unsigned NOT NULL DEFAULT '0',
  `lockout_expires` int(11) NOT NULL DEFAULT '0',
  `last_failed_attempt` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `last_failed_ip` varchar(45) NOT NULL DEFAULT '',
  PRIMARY KEY (`admin_id`),
  KEY `idx_admin_name_zen` (`admin_name`),
  KEY `idx_admin_email_zen` (`admin_email`),
  KEY `idx_admin_profile_zen` (`admin_profile`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin`
--

LOCK TABLES `admin` WRITE;
/*!40000 ALTER TABLE `admin` DISABLE KEYS */;
INSERT INTO `admin` VALUES (1,'Eagle','jhbrake@comcast.net',1,'$2y$10$17yeCzsTzOW.h4yNoE6.3ucxeN5X2EwSzBf0xtfwRnUw4IyaLNSG.','$2y$10$8YGDqU9o27bLPg3VFcX44ufrBDwRmVrT9n69bgcDVH9.xmBI0a5Ua','','','2018-04-19 20:42:36','','2018-04-19 20:31:27','2018-06-17 13:08:10','24.72.164.167',0,0,'2018-05-30 13:41:47','174.235.150.93');
/*!40000 ALTER TABLE `admin` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_activity_log`
--

DROP TABLE IF EXISTS `admin_activity_log`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_activity_log` (
  `log_id` bigint(15) NOT NULL AUTO_INCREMENT,
  `access_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `admin_id` int(11) NOT NULL DEFAULT '0',
  `page_accessed` varchar(80) NOT NULL DEFAULT '',
  `page_parameters` text,
  `ip_address` varchar(45) NOT NULL DEFAULT '',
  `flagged` tinyint(4) NOT NULL DEFAULT '0',
  `attention` varchar(255) NOT NULL DEFAULT '',
  `gzpost` mediumblob,
  `logmessage` mediumtext NOT NULL,
  `severity` varchar(9) NOT NULL DEFAULT 'info',
  PRIMARY KEY (`log_id`),
  KEY `idx_page_accessed_zen` (`page_accessed`),
  KEY `idx_access_date_zen` (`access_date`),
  KEY `idx_flagged_zen` (`flagged`),
  KEY `idx_ip_zen` (`ip_address`)
) ENGINE=MyISAM AUTO_INCREMENT=5199 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_activity_log`
--

LOCK TABLES `admin_activity_log` WRITE;
/*!40000 ALTER TABLE `admin_activity_log` DISABLE KEYS */;
INSERT INTO `admin_activity_log` VALUES (1,'2018-04-19 20:40:45',0,'Log found to be empty. Logging started.','','174.235.148.57',0,'','','Log found to be empty. Logging started.','notice'),(2,'2018-04-19 20:40:45',0,'login.php ','camefrom=index.php','174.235.148.57',0,'',_binary '\0','Accessed page [login.php]','info'),(3,'2018-04-19 20:41:56',0,'login.php Eagle','camefrom=index.php','174.235.148.57',0,'',_binary 'VJL.\\\SRJ\7L2NLL6O14K40IN1IK05HI22I400T\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do09b3a9b9c7d16a04cd4fe850db24a001. Review page_parameters and postdata for details.','info'),(4,'2018-04-19 20:42:35',0,'login.php ','','174.235.148.57',0,'',_binary 'VJL.\\\SR**6L2NLL6O14K40IN1IK05HI22I400T\QJL\\̋\K\M\%\J\51=\'U\0','Accessed page [login.php] with action=rs09b3a9b9c7d16a04cd4fe850db24a001. Review page_parameters and postdata for details.','info'),(5,'2018-04-19 20:42:36',0,'login.php ','','174.235.148.57',1,'',_binary 'VJL.\\\SR**6L2NLL6O14K40IN1IK05HI22I400T\QJL\\̋\K\M\%\J\51=\'U\0','Account password change saved.','warning'),(6,'2018-04-19 20:42:36',1,'index.php','','174.235.148.57',0,'',_binary '\0','Accessed page [index.php]','info'),(7,'2018-04-19 20:44:59',1,'index.php','action=update','174.235.148.57',0,'',_binary ']\n\0D%\li!VOփ(EeM\D6⿛J\̛a\yKX\Zx\h\/pb+U\W9#\*}\n!\0\\0\\Wv\\\!tKe\\V\*D$\\_d\n*B\\͌\\ֈ$&b\\[c\=6]4lu\'\h8\0%\0','Accessed page [index.php] with action=update. Review page_parameters and postdata for details.','info'),(8,'2018-04-19 20:45:00',1,'index.php','','174.235.148.57',0,'',_binary '\0','Accessed page [index.php]','info'),(9,'2018-04-19 20:46:34',1,'modules.php','set=payment','174.235.148.57',0,'',_binary '\0','Accessed page [modules.php]','info'),(10,'2018-04-19 20:47:54',1,'template_select.php','','174.235.148.57',0,'',_binary '\0','Accessed page [template_select.php]','info'),(11,'2018-04-19 20:48:21',1,'layout_controller.php','','174.235.148.57',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(12,'2018-04-19 21:16:39',0,'login.php ','camefrom=banner_manager.php','174.235.148.57',0,'',_binary '\0','Accessed page [login.php]','info'),(13,'2018-04-19 21:17:07',0,'login.php Eagle','camefrom=banner_manager.php','174.235.148.57',0,'',_binary 'VJL.\\\SRJ\704KLN1OHJ36N177I3KK6N2K1553K6R\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do3816acd7d8bf33d774f6fc3b6d5566c2. Review page_parameters and postdata for details.','info'),(14,'2018-04-19 21:17:08',1,'banner_manager.php','','174.235.148.57',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(15,'2018-04-19 21:17:45',1,'modules.php','set=shipping','174.235.148.57',0,'',_binary '\0','Accessed page [modules.php]','info'),(16,'2018-04-19 21:18:06',1,'configuration.php','gID=17','174.235.148.57',0,'',_binary '\0','Accessed page [configuration.php]','info'),(17,'2018-04-19 21:18:15',1,'configuration.php','gID=2','174.235.148.57',0,'',_binary '\0','Accessed page [configuration.php]','info'),(18,'2018-04-19 21:18:39',1,'configuration.php','gID=3','174.235.148.57',0,'',_binary '\0','Accessed page [configuration.php]','info'),(19,'2018-04-19 21:18:56',1,'configuration.php','gID=7','174.235.148.57',0,'',_binary '\0','Accessed page [configuration.php]','info'),(20,'2018-04-19 21:19:14',1,'configuration.php','gID=7&vcheck=yes','174.235.148.57',0,'',_binary '\0','Accessed page [configuration.php]','info'),(21,'2018-04-19 21:19:37',1,'configuration.php','gID=7','174.235.148.57',0,'',_binary '\0','Accessed page [configuration.php]','info'),(22,'2018-04-19 21:19:40',1,'configuration.php','gID=3','174.235.148.57',0,'',_binary '\0','Accessed page [configuration.php]','info'),(23,'2018-04-19 21:19:44',1,'configuration.php','gID=3&cID=64&action=edit','174.235.148.57',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(24,'2018-04-19 21:20:08',1,'downloads_manager.php','','174.235.148.57',0,'',_binary '\0','Accessed page [downloads_manager.php]','info'),(25,'2018-04-20 13:19:16',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(26,'2018-04-20 13:19:53',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\7L136H2O67050H31LJL4MMIMJJ4H62U\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do1d630b7c705048f439baa5edebba0c25. Review page_parameters and postdata for details.','info'),(27,'2018-04-20 13:19:54',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(28,'2018-04-20 13:20:03',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(29,'2018-04-20 13:20:47',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(30,'2018-04-20 13:20:52',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(31,'2018-04-20 13:21:40',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(32,'2018-04-20 13:21:44',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(33,'2018-04-20 13:25:16',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(34,'2018-04-20 13:25:32',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(35,'2018-04-20 13:26:32',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(36,'2018-04-20 13:54:24',0,'login.php ','camefrom=template_select.php','174.235.152.65',0,'',_binary '\0','Accessed page [login.php]','info'),(37,'2018-04-20 13:54:24',0,'login.php ','camefrom=template_select.php','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(38,'2018-04-20 13:54:44',0,'login.php Eagle','camefrom=template_select.php','174.235.152.65',0,'',_binary 'VJL.\\\SRJ\74J0K2NKJ3J33JJ3LIJ36767IK60U\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do12c99986b3fbf2f62bf1dbf37374fc05. Review page_parameters and postdata for details.','info'),(39,'2018-04-20 13:54:44',0,'login.php Eagle','camefrom=template_select.php','174.235.152.65',1,'',_binary 'VJL.\\\SRJ\74J0K2NKJ3J33JJ3LIJ36767IK60U\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(40,'2018-04-20 13:54:45',1,'template_select.php','','174.235.152.65',0,'',_binary '\0','Accessed page [template_select.php]','info'),(41,'2018-04-20 13:54:45',1,'template_select.php','','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(42,'2018-04-20 13:54:59',1,'template_select.php','','174.235.152.65',0,'',_binary '\0','Accessed page [template_select.php]','info'),(43,'2018-04-20 13:55:00',1,'template_select.php','','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(44,'2018-04-20 13:55:09',1,'template_select.php','page=1&tID=1&action=edit','174.235.152.65',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(45,'2018-04-20 13:55:10',1,'template_select.php','page=1&tID=1&action=edit','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(46,'2018-04-20 13:55:36',1,'template_select.php','page=1&tID=1&action=save','174.235.152.65',0,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(47,'2018-04-20 13:55:36',1,'template_select.php','page=1&tID=1&action=save','174.235.152.65',1,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(48,'2018-04-20 13:58:23',1,'layout_controller.php','','174.235.152.65',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(49,'2018-04-20 13:58:24',1,'layout_controller.php','','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(50,'2018-04-20 13:58:53',1,'layout_controller.php','cID=102&action=reset_defaults','174.235.152.65',0,'',_binary '\0','Accessed page [layout_controller.php] with action=reset_defaults. Review page_parameters and postdata for details.','info'),(51,'2018-04-20 13:58:53',1,'layout_controller.php','cID=102&action=reset_defaults','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(52,'2018-04-20 13:58:54',1,'layout_controller.php','','174.235.152.65',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(53,'2018-04-20 13:58:54',1,'layout_controller.php','','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(54,'2018-04-20 19:02:12',0,'login.php ','camefrom=banner_manager.php','174.235.152.65',0,'',_binary '\0','Accessed page [login.php]','info'),(55,'2018-04-20 19:02:13',0,'login.php ','camefrom=banner_manager.php','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(56,'2018-04-20 19:02:33',0,'login.php Eagle','camefrom=banner_manager.php','174.235.152.65',0,'',_binary 'VJL.\\\SRJ\O51KM40MKH260J415N200112M5N40S\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=doe46ea05fe8b302a453b0284425e3a906. Review page_parameters and postdata for details.','info'),(57,'2018-04-20 19:02:34',0,'login.php Eagle','camefrom=banner_manager.php','174.235.152.65',1,'',_binary 'VJL.\\\SRJ\O51KM40MKH260J415N200112M5N40S\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(58,'2018-04-20 19:02:34',0,'login.php Eagle','camefrom=banner_manager.php','174.235.152.65',1,'',_binary 'VJL.\\\SRJ\O51KM40MKH260J415N200112M5N40S\QJL\\̋\K\M\pML\IU\0','Failed admin login attempt:  Eagle','warning'),(59,'2018-04-20 19:02:52',0,'login.php Eagle','camefrom=banner_manager.php','174.235.152.65',0,'',_binary 'VJL.\\\SRJ\O51KM40MKH260J415N200112M5N40S\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=doe46ea05fe8b302a453b0284425e3a906. Review page_parameters and postdata for details.','info'),(60,'2018-04-20 19:02:52',0,'login.php Eagle','camefrom=banner_manager.php','174.235.152.65',1,'',_binary 'VJL.\\\SRJ\O51KM40MKH260J415N200112M5N40S\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(61,'2018-04-20 19:02:53',1,'banner_manager.php','','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(62,'2018-04-20 19:02:53',1,'banner_manager.php','','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(63,'2018-04-20 19:36:47',0,'login.php ','camefrom=banner_manager.php&page=1&bID=11','174.235.152.65',0,'',_binary '\0','Accessed page [login.php]','info'),(64,'2018-04-20 19:36:47',0,'login.php ','camefrom=banner_manager.php&page=1&bID=11','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(65,'2018-04-20 19:37:08',0,'login.php Eagle','camefrom=banner_manager.php&page=1&bID=11','174.235.152.65',0,'',_binary 'VJL.\\\SRJ\O4LMMH6210MJLIJKN2164N5440LT\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=doa789eef8c2405badbfcb4313e59101e9. Review page_parameters and postdata for details.','info'),(66,'2018-04-20 19:37:08',0,'login.php Eagle','camefrom=banner_manager.php&page=1&bID=11','174.235.152.65',1,'',_binary 'VJL.\\\SRJ\O4LMMH6210MJLIJKN2164N5440LT\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(67,'2018-04-20 19:37:09',1,'banner_manager.php','page=1&bID=11','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(68,'2018-04-20 19:37:09',1,'banner_manager.php','page=1&bID=11','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(69,'2018-04-20 19:37:14',1,'banner_manager.php','page=1&bID=11&action=new','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(70,'2018-04-20 19:37:14',1,'banner_manager.php','page=1&bID=11&action=new','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(71,'2018-04-20 19:37:18',1,'banner_manager.php','page=1&bID=11','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(72,'2018-04-20 19:37:18',1,'banner_manager.php','page=1&bID=11','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(73,'2018-04-20 19:37:23',1,'banner_manager.php','page=1&bID=11&action=new','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(74,'2018-04-20 19:37:23',1,'banner_manager.php','page=1&bID=11&action=new','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(75,'2018-04-20 19:40:57',1,'banner_manager.php','page=1&action=upd','174.235.152.65',0,'',_binary 'e\n!Eb]\4RV.	\\P1\&D\>\\d|Ϲ\p5\\\\\\و\S~1eL6a5$O\'+wز7P\䅻\\4Ncu\0\0)|g\28Z7\^3\(1xl\w66\Fr\\I}<|\V\O\\*^:}\rx6!VK쑛ql/rxɁQlg\vH\\\\','Accessed page [banner_manager.php] with action=upd. Review page_parameters and postdata for details.','info'),(76,'2018-04-20 19:40:57',1,'banner_manager.php','page=1&action=upd','174.235.152.65',1,'',_binary 'e\n!Eb]\4RV.	\\P1\&D\>\\d|Ϲ\p5\\\\\\و\S~1eL6a5$O\'+wز7P\䅻\\4Ncu\0\0)|g\28Z7\^3\(1xl\w66\Fr\\I}<|\V\O\\*^:}\rx6!VK쑛ql/rxɁQlg\vH\\\\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(77,'2018-04-20 19:40:57',1,'banner_manager.php','page=1&bID=11','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(78,'2018-04-20 19:40:58',1,'banner_manager.php','page=1&bID=11','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(79,'2018-04-20 19:42:46',1,'banner_manager.php','page=1&bID=11&action=new','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(80,'2018-04-20 19:42:46',1,'banner_manager.php','page=1&bID=11&action=new','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(81,'2018-04-20 19:42:47',1,'banner_manager.php','page=1&bID=11&action=new','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(82,'2018-04-20 19:42:47',1,'banner_manager.php','page=1&bID=11&action=new','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(83,'2018-04-20 19:43:02',1,'banner_manager.php','page=1&action=upd','174.235.152.65',0,'',_binary 'eMn\ R49D]GB.	`daw/Gʤ+\\{\W\Yl\bN\'hDA7\nf\6\g+\r\Zk/\+\Z.˼̭	\05\\!&_\\(\B+S-#F	(1x\|\\\\B\^\\.wLez/\?s6M\*ކ>\SB\#wǹV܆F?\V\J/(Ӛ\/','Accessed page [banner_manager.php] with action=upd. Review page_parameters and postdata for details.','info'),(84,'2018-04-20 19:43:03',1,'banner_manager.php','page=1&action=upd','174.235.152.65',1,'',_binary 'eMn\ R49D]GB.	`daw/Gʤ+\\{\W\Yl\bN\'hDA7\nf\6\g+\r\Zk/\+\Z.˼̭	\05\\!&_\\(\B+S-#F	(1x\|\\\\B\^\\.wLez/\?s6M\*ކ>\SB\#wǹV܆F?\V\J/(Ӛ\/','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(85,'2018-04-20 19:43:03',1,'banner_manager.php','page=1&bID=11','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(86,'2018-04-20 19:43:04',1,'banner_manager.php','page=1&bID=11','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(87,'2018-04-20 19:45:05',1,'banner_manager.php','page=1&bID=11&action=new','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(88,'2018-04-20 19:45:06',1,'banner_manager.php','page=1&bID=11&action=new','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(89,'2018-04-20 19:45:10',1,'banner_manager.php','page=1&bID=11','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(90,'2018-04-20 19:45:10',1,'banner_manager.php','page=1&bID=11','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(91,'2018-04-20 19:45:14',1,'banner_manager.php','page=1&bID=11&action=new','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(92,'2018-04-20 19:45:15',1,'banner_manager.php','page=1&bID=11&action=new','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(93,'2018-04-20 19:46:25',1,'banner_manager.php','page=1&action=upd','174.235.152.65',0,'',_binary 'eMn\ R49D]GB.	`daw/Gʤ+\\{\W\Yl\bN\'hDA7\nf\6\g+\r\Zk/\+\Z.˼̭	\05\\!&_\\(\B+S-#F	(1x\|\\\\B\^\\.wLez/\?s6M\*ކ>\SB\#wǹV܆F?\V\J/(Ӛ\/','Accessed page [banner_manager.php] with action=upd. Review page_parameters and postdata for details.','info'),(94,'2018-04-20 19:46:25',1,'banner_manager.php','page=1&action=upd','174.235.152.65',1,'',_binary 'eMn\ R49D]GB.	`daw/Gʤ+\\{\W\Yl\bN\'hDA7\nf\6\g+\r\Zk/\+\Z.˼̭	\05\\!&_\\(\B+S-#F	(1x\|\\\\B\^\\.wLez/\?s6M\*ކ>\SB\#wǹV܆F?\V\J/(Ӛ\/','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(95,'2018-04-20 19:46:25',1,'banner_manager.php','page=1&bID=11','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(96,'2018-04-20 19:46:26',1,'banner_manager.php','page=1&bID=11','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(97,'2018-04-20 19:50:58',1,'banner_manager.php','page=1&bID=11&action=new','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(98,'2018-04-20 19:50:58',1,'banner_manager.php','page=1&bID=11&action=new','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(99,'2018-04-20 19:50:58',1,'banner_manager.php','page=1&bID=11&action=new','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(100,'2018-04-20 19:50:59',1,'banner_manager.php','page=1&bID=11&action=new','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(101,'2018-04-20 19:52:24',1,'banner_manager.php','page=1&action=upd','174.235.152.65',0,'',_binary 'ej\0_e<v\C\sh\Hr\\({ڴ4;	\Kn\bDKޜ\\dލ(h޵\\FRv\ъCFI6\.*;pw.<\Xk\0@\noAȜ|q*K\.4s*\Ҋf@\o:zv1Z׆\\|\\=SvC\a˿Ϩ\]Uv\oXmb\\rxP\%L\k&F*\VR\6w','Accessed page [banner_manager.php] with action=upd. Review page_parameters and postdata for details.','info'),(102,'2018-04-20 19:52:25',1,'banner_manager.php','page=1&action=upd','174.235.152.65',1,'',_binary 'ej\0_e<v\C\sh\Hr\\({ڴ4;	\Kn\bDKޜ\\dލ(h޵\\FRv\ъCFI6\.*;pw.<\Xk\0@\noAȜ|q*K\.4s*\Ҋf@\o:zv1Z׆\\|\\=SvC\a˿Ϩ\]Uv\oXmb\\rxP\%L\k&F*\VR\6w','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(103,'2018-04-20 19:52:25',1,'banner_manager.php','page=1&bID=11','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(104,'2018-04-20 19:52:26',1,'banner_manager.php','page=1&bID=11','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(105,'2018-04-20 19:54:09',1,'banner_manager.php','page=1&bID=11','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(106,'2018-04-20 19:54:09',1,'banner_manager.php','page=1&bID=11','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(107,'2018-04-20 19:54:23',1,'banner_manager.php','page=1&bID=11&action=new','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(108,'2018-04-20 19:54:24',1,'banner_manager.php','page=1&bID=11&action=new','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(109,'2018-04-20 19:54:44',1,'banner_manager.php','page=1&action=upd','174.235.152.65',0,'',_binary 'eM\02x=$f\Ct1\\\j\"\\}lځ4]	}\=\\\@\bə9̧-һ\\)c]or\"\0\cc\pU\\ݹ\4Ncu\0\0)\>sreV\vS\=fXP<9lz\ѳQh^\\}\Nc\L\\rEo!^P_ǭ\ZUu|?7I6Cn&8P2\GLbJ(\VR\6','Accessed page [banner_manager.php] with action=upd. Review page_parameters and postdata for details.','info'),(110,'2018-04-20 19:54:44',1,'banner_manager.php','page=1&action=upd','174.235.152.65',1,'',_binary 'eM\02x=$f\Ct1\\\j\"\\}lځ4]	}\=\\\@\bə9̧-һ\\)c]or\"\0\cc\pU\\ݹ\4Ncu\0\0)\>sreV\vS\=fXP<9lz\ѳQh^\\}\Nc\L\\rEo!^P_ǭ\ZUu|?7I6Cn&8P2\GLbJ(\VR\6','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(111,'2018-04-20 19:54:44',1,'banner_manager.php','page=1&bID=11','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(112,'2018-04-20 19:54:45',1,'banner_manager.php','page=1&bID=11','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(113,'2018-04-20 19:54:52',1,'banner_manager.php','page=1&bID=11&action=new','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(114,'2018-04-20 19:54:52',1,'banner_manager.php','page=1&bID=11&action=new','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(115,'2018-04-20 19:56:06',1,'banner_manager.php','page=1&action=upd','174.235.152.65',0,'',_binary 'e\j\0E\\#~ƞB\D\Xƒ\Bٿ\f\ѹX\1RV`\\rqN\rh\K*T^\[A5j\o^rof\:\XkQK\yǐ2li\RR\di`O-\o:w\ZoAf\;t\Z۾;\r\\$ü^\\~\*\@\g<\Z\+\\8B\^	o\_','Accessed page [banner_manager.php] with action=upd. Review page_parameters and postdata for details.','info'),(116,'2018-04-20 19:56:06',1,'banner_manager.php','page=1&action=upd','174.235.152.65',1,'',_binary 'e\j\0E\\#~ƞB\D\Xƒ\Bٿ\f\ѹX\1RV`\\rqN\rh\K*T^\[A5j\o^rof\:\XkQK\yǐ2li\RR\di`O-\o:w\ZoAf\;t\Z۾;\r\\$ü^\\~\*\@\g<\Z\+\\8B\^	o\_','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(117,'2018-04-20 19:56:07',1,'banner_manager.php','page=1&bID=11','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(118,'2018-04-20 19:56:07',1,'banner_manager.php','page=1&bID=11','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(119,'2018-04-20 19:57:34',1,'banner_manager.php','page=1&bID=11&action=new','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(120,'2018-04-20 19:57:35',1,'banner_manager.php','page=1&bID=11&action=new','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(121,'2018-04-20 19:59:54',1,'banner_manager.php','page=1&action=upd','174.235.152.65',0,'',_binary 'e\j\0E\\#~ƞB\D\Xƒ\Bٿ\f\ѹX\1RV`\\rqN\rh\K*T^\[A5j\o^rof\:\XkQK\yǐ2li\RR\di`O-\o:w\ZoAf\;t\Z۾;\r\\$ü^\\~\*\@\g<\Z\+\\8B\^	o\_','Accessed page [banner_manager.php] with action=upd. Review page_parameters and postdata for details.','info'),(122,'2018-04-20 19:59:55',1,'banner_manager.php','page=1&action=upd','174.235.152.65',1,'',_binary 'e\j\0E\\#~ƞB\D\Xƒ\Bٿ\f\ѹX\1RV`\\rqN\rh\K*T^\[A5j\o^rof\:\XkQK\yǐ2li\RR\di`O-\o:w\ZoAf\;t\Z۾;\r\\$ü^\\~\*\@\g<\Z\+\\8B\^	o\_','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(123,'2018-04-20 19:59:55',1,'banner_manager.php','page=1&bID=11','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(124,'2018-04-20 19:59:55',1,'banner_manager.php','page=1&bID=11','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(125,'2018-04-20 20:00:23',1,'banner_manager.php','page=1&bID=14','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(126,'2018-04-20 20:00:24',1,'banner_manager.php','page=1&bID=14','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(127,'2018-04-20 20:00:31',1,'banner_manager.php','page=1&bID=14&action=new','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(128,'2018-04-20 20:00:31',1,'banner_manager.php','page=1&bID=14&action=new','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(129,'2018-04-20 20:00:54',1,'banner_manager.php','page=1&bID=14','174.235.152.65',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(130,'2018-04-20 20:00:55',1,'banner_manager.php','page=1&bID=14','174.235.152.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(131,'2018-04-22 09:24:03',0,'login.php ','camefrom=index.php','174.235.143.88',0,'',_binary '\0','Accessed page [login.php]','info'),(132,'2018-04-22 09:24:05',0,'login.php ','camefrom=index.php','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(133,'2018-04-22 09:24:24',0,'login.php Eagle','camefrom=index.php','174.235.143.88',0,'',_binary 'VJL.\\\SRJ\7J3HIL2H3LJ60N3K33J67HLK4L46HI27V\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do2f0dab0f1bc03f6f62c70afa1a30db73. Review page_parameters and postdata for details.','info'),(134,'2018-04-22 09:24:25',0,'login.php Eagle','camefrom=index.php','174.235.143.88',1,'',_binary 'VJL.\\\SRJ\7J3HIL2H3LJ60N3K33J67HLK4L46HI27V\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(135,'2018-04-22 09:24:25',1,'index.php','','174.235.143.88',0,'',_binary '\0','Accessed page [index.php]','info'),(136,'2018-04-22 09:24:26',1,'index.php','','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(137,'2018-04-22 09:24:48',1,'banner_manager.php','','174.235.143.88',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(138,'2018-04-22 09:24:49',1,'banner_manager.php','','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(139,'2018-04-22 09:25:07',1,'developers_tool_kit.php','','174.235.143.88',0,'',_binary '\0','Accessed page [developers_tool_kit.php]','info'),(140,'2018-04-22 09:25:07',1,'developers_tool_kit.php','','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(141,'2018-04-22 09:25:27',1,'developers_tool_kit.php','action=locate_function','174.235.143.88',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR\*,M-\K\I(\\LI-\\*V\Q*O\\I-0T\0','Accessed page [developers_tool_kit.php] with action=locate_function. Review page_parameters and postdata for details.','info'),(142,'2018-04-22 09:25:27',1,'developers_tool_kit.php','action=locate_function','174.235.143.88',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR\*,M-\K\I(\\LI-\\*V\Q*O\\I-0T\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(143,'2018-04-22 09:26:13',1,'developers_tool_kit.php','action=locate_all_files','174.235.143.88',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR\*,M-\K\I(\\LI-\\*V\Q*O\\I-0D\TLB@\JR+J\s2\j','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(144,'2018-04-22 09:26:14',1,'developers_tool_kit.php','action=locate_all_files','174.235.143.88',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR\*,M-\K\I(\\LI-\\*V\Q*O\\I-0D\TLB@\JR+J\s2\j','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(145,'2018-04-22 09:26:32',1,'developers_tool_kit.php','action=locate_all_files','174.235.143.88',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR\*,M-\K\I(\\LI-\\*V\Q*O\\I-0D\T̀B@\JR+J\s2\j','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(146,'2018-04-22 09:26:33',1,'developers_tool_kit.php','action=locate_all_files','174.235.143.88',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR\*,M-\K\I(\\LI-\\*V\Q*O\\I-0D\T̀B@\JR+J\s2\j','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(147,'2018-04-22 09:28:01',1,'developers_tool_kit.php','action=locate_function','174.235.143.88',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR\*,M-\K\I(\\LI-\\*V\Q*O\\I-0T\0','Accessed page [developers_tool_kit.php] with action=locate_function. Review page_parameters and postdata for details.','info'),(148,'2018-04-22 09:28:01',1,'developers_tool_kit.php','action=locate_function','174.235.143.88',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR\*,M-\K\I(\\LI-\\*V\Q*O\\I-0T\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(149,'2018-04-22 09:39:13',1,'developers_tool_kit.php','action=locate_all_files','174.235.143.88',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR\+\\LI-R\Q*O\\I-\n\Z\"qK*RB\@!Ԋ\<2Z\0','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(150,'2018-04-22 09:39:13',1,'developers_tool_kit.php','action=locate_all_files','174.235.143.88',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR\+\\LI-R\Q*O\\I-\n\Z\"qK*RB\@!Ԋ\<2Z\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(151,'2018-04-22 09:39:40',1,'developers_tool_kit.php','action=locate_all_files','174.235.143.88',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR*\\LI-R\Q*O\\I-\"qK*RBf@!Ԋ\<2Z\0','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(152,'2018-04-22 09:39:41',1,'developers_tool_kit.php','action=locate_all_files','174.235.143.88',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR*\\LI-R\Q*O\\I-\"qK*RBf@!Ԋ\<2Z\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(153,'2018-04-22 10:07:00',0,'login.php ','camefrom=index.php','174.235.143.88',0,'',_binary '\0','Accessed page [login.php]','info'),(154,'2018-04-22 10:07:01',0,'login.php ','camefrom=index.php','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(155,'2018-04-22 10:07:23',0,'login.php Eagle','camefrom=index.php','174.235.143.88',0,'',_binary 'VJL.\\\SRJ\74LL203O3OL40K326HL1KKLJJ17OIR\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do591ab067f7aa06f2328e9d6fabbd77db. Review page_parameters and postdata for details.','info'),(156,'2018-04-22 10:07:23',0,'login.php Eagle','camefrom=index.php','174.235.143.88',1,'',_binary 'VJL.\\\SRJ\74LL203O3OL40K326HL1KKLJJ17OIR\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(157,'2018-04-22 10:07:24',1,'index.php','','174.235.143.88',0,'',_binary '\0','Accessed page [index.php]','info'),(158,'2018-04-22 10:07:24',1,'index.php','','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(159,'2018-04-22 10:08:43',1,'banner_manager.php','','174.235.143.88',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(160,'2018-04-22 10:08:43',1,'banner_manager.php','','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(161,'2018-04-22 10:09:25',1,'banner_manager.php','page=1&bID=14&action=setflag&flag=0','174.235.143.88',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(162,'2018-04-22 10:09:25',1,'banner_manager.php','page=1&bID=14&action=setflag&flag=0','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(163,'2018-04-22 10:09:26',1,'banner_manager.php','page=1&bID=14','174.235.143.88',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(164,'2018-04-22 10:09:26',1,'banner_manager.php','page=1&bID=14','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(165,'2018-04-22 10:27:59',0,'login.php ','camefrom=banner_manager.php&page=1&bID=14&action=setflag&flag=1','174.235.143.88',0,'',_binary '\0','Accessed page [login.php] with action=setflag. Review page_parameters and postdata for details.','info'),(166,'2018-04-22 10:27:59',0,'login.php ','camefrom=banner_manager.php&page=1&bID=14&action=setflag&flag=1','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(167,'2018-04-22 10:28:26',0,'login.php Eagle','camefrom=banner_manager.php&page=1&bID=14&action=setflag&flag=1','174.235.143.88',0,'',_binary 'VJL.\\\SRJ\O3O1J1K0Iɉ\斖FƩI\\\J:J)yy@\9J\0','Accessed page [login.php] with action=dof7d2d6f84c6f81ca071799e23e8b703c. Review page_parameters and postdata for details.','info'),(168,'2018-04-22 10:28:27',0,'login.php Eagle','camefrom=banner_manager.php&page=1&bID=14&action=setflag&flag=1','174.235.143.88',1,'',_binary 'VJL.\\\SRJ\O3O1J1K0Iɉ\斖FƩI\\\J:J)yy@\9J\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(169,'2018-04-22 10:28:27',1,'banner_manager.php','page=1&bID=14&action=setflag&flag=1','174.235.143.88',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(170,'2018-04-22 10:28:27',1,'banner_manager.php','page=1&bID=14&action=setflag&flag=1','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(171,'2018-04-22 10:28:28',1,'banner_manager.php','page=1&bID=14','174.235.143.88',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(172,'2018-04-22 10:28:28',1,'banner_manager.php','page=1&bID=14','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(173,'2018-04-22 10:28:42',1,'banner_manager.php','page=1&bID=8','174.235.143.88',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(174,'2018-04-22 10:28:42',1,'banner_manager.php','page=1&bID=8&action=setflag&flag=0','174.235.143.88',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(175,'2018-04-22 10:28:43',1,'banner_manager.php','page=1&bID=8','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(176,'2018-04-22 10:28:43',1,'banner_manager.php','page=1&bID=8&action=setflag&flag=0','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(177,'2018-04-22 10:28:43',1,'banner_manager.php','page=1&bID=8','174.235.143.88',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(178,'2018-04-22 10:28:44',1,'banner_manager.php','page=1&bID=8','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(179,'2018-04-22 10:28:59',1,'banner_manager.php','page=1&bID=3&action=setflag&flag=0','174.235.143.88',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(180,'2018-04-22 10:29:00',1,'banner_manager.php','page=1&bID=3&action=setflag&flag=0','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(181,'2018-04-22 10:29:00',1,'banner_manager.php','page=1&bID=3','174.235.143.88',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(182,'2018-04-22 10:29:01',1,'banner_manager.php','page=1&bID=3','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(183,'2018-04-22 10:29:06',1,'banner_manager.php','page=1&bID=2&action=setflag&flag=0','174.235.143.88',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(184,'2018-04-22 10:29:07',1,'banner_manager.php','page=1&bID=2&action=setflag&flag=0','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(185,'2018-04-22 10:29:07',1,'banner_manager.php','page=1&bID=2','174.235.143.88',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(186,'2018-04-22 10:29:07',1,'banner_manager.php','page=1&bID=2','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(187,'2018-04-22 10:47:25',0,'login.php ','camefrom=banner_manager.php&page=1&bID=8&action=setflag&flag=1','174.235.143.88',0,'',_binary '\0','Accessed page [login.php] with action=setflag. Review page_parameters and postdata for details.','info'),(188,'2018-04-22 10:47:26',0,'login.php ','camefrom=banner_manager.php&page=1&bID=8&action=setflag&flag=1','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(189,'2018-04-22 10:47:47',0,'login.php Eagle','camefrom=banner_manager.php&page=1&bID=8&action=setflag&flag=1','174.235.143.88',0,'',_binary 'VJL.\\\SRJ\71145K3MNL3I432M5L4301J3H16IT\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do44156f5ce9f4e989625e1a6042f0d34a. Review page_parameters and postdata for details.','info'),(190,'2018-04-22 10:47:47',0,'login.php Eagle','camefrom=banner_manager.php&page=1&bID=8&action=setflag&flag=1','174.235.143.88',1,'',_binary 'VJL.\\\SRJ\71145K3MNL3I432M5L4301J3H16IT\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(191,'2018-04-22 10:47:48',1,'banner_manager.php','page=1&bID=8&action=setflag&flag=1','174.235.143.88',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(192,'2018-04-22 10:47:48',1,'banner_manager.php','page=1&bID=8&action=setflag&flag=1','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(193,'2018-04-22 10:47:49',1,'banner_manager.php','page=1&bID=8','174.235.143.88',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(194,'2018-04-22 10:47:49',1,'banner_manager.php','page=1&bID=8','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(195,'2018-04-22 10:49:48',1,'layout_controller.php','','174.235.143.88',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(196,'2018-04-22 10:49:48',1,'layout_controller.php','','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(197,'2018-04-22 10:50:54',1,'layout_controller.php','cID=111','174.235.143.88',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(198,'2018-04-22 10:50:54',1,'layout_controller.php','cID=111','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(199,'2018-04-22 10:51:24',1,'define_pages_editor.php','','174.235.143.88',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(200,'2018-04-22 10:51:25',1,'define_pages_editor.php','','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(201,'2018-04-22 10:51:49',1,'layout_controller.php','','174.235.143.88',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(202,'2018-04-22 10:51:49',1,'layout_controller.php','','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(203,'2018-04-22 10:53:03',1,'layout_controller.php','cID=125','174.235.143.88',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(204,'2018-04-22 10:53:03',1,'layout_controller.php','cID=125','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(205,'2018-04-22 10:53:33',1,'layout_controller.php','cID=125&action=edit','174.235.143.88',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(206,'2018-04-22 10:53:33',1,'layout_controller.php','cID=125&action=edit','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(207,'2018-04-22 10:53:46',1,'layout_controller.php','cID=125&action=save&layout_box_name=search_header.php','174.235.143.88',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\ᓋ/\\K\IŢl!B\ZdoqF~9X273/<3$,Q\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(208,'2018-04-22 10:53:47',1,'layout_controller.php','cID=125&action=save&layout_box_name=search_header.php','174.235.143.88',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\ᓋ/\\K\IŢl!B\ZdoqF~9X273/<3$,Q\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(209,'2018-04-22 10:53:47',1,'layout_controller.php','cID=125','174.235.143.88',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(210,'2018-04-22 10:53:48',1,'layout_controller.php','cID=125','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(211,'2018-04-22 10:55:27',1,'layout_controller.php','cID=125&action=edit','174.235.143.88',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(212,'2018-04-22 10:55:28',1,'layout_controller.php','cID=125&action=edit','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(213,'2018-04-22 10:55:39',1,'layout_controller.php','cID=125&action=save&layout_box_name=search_header.php','174.235.143.88',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\Ô)\/*\/JI-\\'_E	\B!P8#,_R\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(214,'2018-04-22 10:55:39',1,'layout_controller.php','cID=125&action=save&layout_box_name=search_header.php','174.235.143.88',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\Ô)\/*\/JI-\\'_E	\B!P8#,_R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(215,'2018-04-22 10:55:40',1,'layout_controller.php','cID=125','174.235.143.88',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(216,'2018-04-22 10:55:40',1,'layout_controller.php','cID=125','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(217,'2018-04-22 18:30:02',0,'login.php ','camefrom=template_select.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(218,'2018-04-22 18:30:03',0,'login.php ','camefrom=template_select.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(219,'2018-04-22 18:30:25',0,'login.php Eagle','camefrom=template_select.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\72424NJ54L04223L2H40L16H503T\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do21213be491c8122649b68a01d30e0679. Review page_parameters and postdata for details.','info'),(220,'2018-04-22 18:30:26',0,'login.php Eagle','camefrom=template_select.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\72424NJ54L04223L2H40L16H503T\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(221,'2018-04-22 18:30:26',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(222,'2018-04-22 18:30:27',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(223,'2018-04-22 18:30:33',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(224,'2018-04-22 18:30:34',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(225,'2018-04-22 18:30:45',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SRJ\I,.\LV\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(226,'2018-04-22 18:30:46',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SRJ\I,.\LV\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(227,'2018-04-22 18:30:53',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(228,'2018-04-22 18:30:54',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(229,'2018-04-22 18:31:00',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR*J-.\\+\,KO\I,.\LV\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(230,'2018-04-22 18:31:00',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR*J-.\\+\,KO\I,.\LV\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(231,'2018-04-22 18:40:17',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(232,'2018-04-22 18:40:17',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(233,'2018-04-22 18:40:46',1,'layout_controller.php','cID=94','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(234,'2018-04-22 18:40:47',1,'layout_controller.php','cID=94','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(235,'2018-04-22 18:40:55',1,'layout_controller.php','cID=130&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(236,'2018-04-22 18:40:55',1,'layout_controller.php','cID=130&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(237,'2018-04-22 18:41:15',1,'layout_controller.php','cID=130&layout_box_name=currencies_header.php','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(238,'2018-04-22 18:41:15',1,'layout_controller.php','cID=130&layout_box_name=currencies_header.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(239,'2018-04-22 18:41:37',1,'layout_controller.php','cID=130&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(240,'2018-04-22 18:41:38',1,'layout_controller.php','cID=130&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(241,'2018-04-22 18:41:48',1,'layout_controller.php','cID=130&action=reset_defaults','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=reset_defaults. Review page_parameters and postdata for details.','info'),(242,'2018-04-22 18:41:49',1,'layout_controller.php','cID=130&action=reset_defaults','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(243,'2018-04-22 18:41:49',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(244,'2018-04-22 18:41:50',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(245,'2018-04-22 18:41:57',1,'layout_controller.php','cID=130&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(246,'2018-04-22 18:41:58',1,'layout_controller.php','cID=130&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(247,'2018-04-22 18:42:19',1,'layout_controller.php','cID=130&layout_box_name=currencies_header.php','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(248,'2018-04-22 18:42:19',1,'layout_controller.php','cID=130&layout_box_name=currencies_header.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(249,'2018-04-22 18:43:34',1,'layout_controller.php','cID=93','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(250,'2018-04-22 18:43:35',1,'layout_controller.php','cID=93','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(251,'2018-04-22 18:44:15',1,'layout_controller.php','cID=81&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(252,'2018-04-22 18:44:16',1,'layout_controller.php','cID=81&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(253,'2018-04-22 18:44:35',1,'layout_controller.php','cID=81&layout_box_name=ezpages.php','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(254,'2018-04-22 18:44:35',1,'layout_controller.php','cID=81&layout_box_name=ezpages.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(255,'2018-04-22 18:45:10',1,'configuration.php','gID=20','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(256,'2018-04-22 18:45:11',1,'configuration.php','gID=20','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(257,'2018-04-22 18:45:24',1,'categories.php','','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(258,'2018-04-22 18:45:24',1,'categories.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(259,'2018-04-22 18:48:05',1,'banner_manager.php','','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(260,'2018-04-22 18:48:05',1,'banner_manager.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(261,'2018-04-22 18:48:59',1,'store_manager.php','','24.72.164.167',0,'',_binary '\0','Accessed page [store_manager.php]','info'),(262,'2018-04-22 18:48:59',1,'store_manager.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(263,'2018-04-22 18:49:17',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(264,'2018-04-22 18:49:17',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(265,'2018-04-22 18:49:29',1,'define_pages_editor.php','define_it=0&action=new_page','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php] with action=new_page. Review page_parameters and postdata for details.','info'),(266,'2018-04-22 18:49:29',1,'define_pages_editor.php','define_it=0&action=new_page','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(267,'2018-04-22 18:49:50',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(268,'2018-04-22 18:49:51',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(269,'2018-04-22 19:26:55',0,'login.php ','camefrom=layout_controller.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(270,'2018-04-22 19:26:56',0,'login.php ','camefrom=layout_controller.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(271,'2018-04-22 19:27:12',0,'login.php Eagle','camefrom=layout_controller.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\7H20131HN60K1H5720JM5260HLK6U\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do0b04640cc06d0e727982ee23380a9fc5. Review page_parameters and postdata for details.','info'),(272,'2018-04-22 19:27:12',0,'login.php Eagle','camefrom=layout_controller.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\7H20131HN60K1H5720JM5260HLK6U\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(273,'2018-04-22 19:27:13',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(274,'2018-04-22 19:27:13',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(275,'2018-04-22 19:27:40',1,'layout_controller.php','cID=131&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(276,'2018-04-22 19:27:40',1,'layout_controller.php','cID=131&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(277,'2018-04-22 19:27:41',1,'layout_controller.php','cID=131&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(278,'2018-04-22 19:27:42',1,'layout_controller.php','cID=131&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(279,'2018-04-22 19:27:59',1,'layout_controller.php','cID=131&action=save&layout_box_name=languages_header.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\ᓋ/\\K\IŢl!B\ZdoqF~9X273/<3$,Q\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(280,'2018-04-22 19:27:59',1,'layout_controller.php','cID=131&action=save&layout_box_name=languages_header.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\ᓋ/\\K\IŢl!B\ZdoqF~9X273/<3$,Q\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(281,'2018-04-22 19:28:00',1,'layout_controller.php','cID=131','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(282,'2018-04-22 19:28:00',1,'layout_controller.php','cID=131','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(283,'2018-04-22 19:28:48',1,'layout_controller.php','cID=80','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(284,'2018-04-22 19:28:48',1,'layout_controller.php','cID=80','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(285,'2018-04-22 19:28:57',1,'layout_controller.php','cID=80&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(286,'2018-04-22 19:28:58',1,'layout_controller.php','cID=80&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(287,'2018-04-22 19:29:19',1,'layout_controller.php','cID=80&action=save&layout_box_name=document_categories.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\ᓋ/\\K\IŢl!B\ZdoqF~9X273/<3$\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(288,'2018-04-22 19:29:20',1,'layout_controller.php','cID=80&action=save&layout_box_name=document_categories.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\ᓋ/\\K\IŢl!B\ZdoqF~9X273/<3$\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(289,'2018-04-22 19:29:20',1,'layout_controller.php','cID=80','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(290,'2018-04-22 19:29:20',1,'layout_controller.php','cID=80','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(291,'2018-04-22 19:30:02',1,'layout_controller.php','cID=85','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(292,'2018-04-22 19:30:04',1,'layout_controller.php','cID=85','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(293,'2018-04-22 19:30:07',1,'layout_controller.php','cID=85&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(294,'2018-04-22 19:30:08',1,'layout_controller.php','cID=85&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(295,'2018-04-22 19:30:16',1,'layout_controller.php','cID=85&action=save&layout_box_name=manufacturers.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\Ô)\/*\/JI-\㔌/\\K\I1BW!o.\\/K\f\ŗgd-\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(296,'2018-04-22 19:30:17',1,'layout_controller.php','cID=85&action=save&layout_box_name=manufacturers.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\Ô)\/*\/JI-\㔌/\\K\I1BW!o.\\/K\f\ŗgd-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(297,'2018-04-22 19:30:17',1,'layout_controller.php','cID=85','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(298,'2018-04-22 19:30:17',1,'layout_controller.php','cID=85','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(299,'2018-04-22 19:30:46',1,'layout_controller.php','cID=78','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(300,'2018-04-22 19:30:46',1,'layout_controller.php','cID=78&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(301,'2018-04-22 19:30:47',1,'layout_controller.php','cID=78','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(302,'2018-04-22 19:30:47',1,'layout_controller.php','cID=78&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(303,'2018-04-22 19:31:06',1,'layout_controller.php','cID=78&action=save&layout_box_name=categories.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\Ô)\/*\/JI-\┌/\\K\IŦl%<P8#,_R\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(304,'2018-04-22 19:31:06',1,'layout_controller.php','cID=78&action=save&layout_box_name=categories.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\Ô)\/*\/JI-\┌/\\K\IŦl%<P8#,_R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(305,'2018-04-22 19:31:07',1,'layout_controller.php','cID=78','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(306,'2018-04-22 19:31:07',1,'layout_controller.php','cID=78','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(307,'2018-04-22 19:31:24',1,'layout_controller.php','cID=131','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(308,'2018-04-22 19:31:24',1,'layout_controller.php','cID=131','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(309,'2018-04-22 19:31:29',1,'layout_controller.php','cID=131&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(310,'2018-04-22 19:31:29',1,'layout_controller.php','cID=131&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(311,'2018-04-22 19:31:42',1,'layout_controller.php','cID=131&action=save&layout_box_name=languages_header.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\ᓋ/\\K\IŢl!tqF~9X273/<3$\Z\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(312,'2018-04-22 19:31:42',1,'layout_controller.php','cID=131&action=save&layout_box_name=languages_header.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\ᓋ/\\K\IŢl!tqF~9X273/<3$\Z\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(313,'2018-04-22 19:31:42',1,'layout_controller.php','cID=131','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(314,'2018-04-22 19:31:43',1,'layout_controller.php','cID=131','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(315,'2018-04-22 19:32:31',1,'layout_controller.php','cID=97','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(316,'2018-04-22 19:32:32',1,'layout_controller.php','cID=97','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(317,'2018-04-22 19:32:34',1,'layout_controller.php','cID=97&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(318,'2018-04-22 19:32:35',1,'layout_controller.php','cID=97&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(319,'2018-04-22 19:32:58',1,'layout_controller.php','cID=97&action=save&layout_box_name=whats_new.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\\pJ\g\\b\!\r8#,_R\W\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(320,'2018-04-22 19:32:59',1,'layout_controller.php','cID=97&action=save&layout_box_name=whats_new.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\\pJ\g\\b\!\r8#,_R\W\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(321,'2018-04-22 19:32:59',1,'layout_controller.php','cID=97','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(322,'2018-04-22 19:33:00',1,'layout_controller.php','cID=97','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(323,'2018-04-22 19:33:17',1,'layout_controller.php','cID=80','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(324,'2018-04-22 19:33:17',1,'layout_controller.php','cID=80','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(325,'2018-04-22 19:33:21',1,'layout_controller.php','cID=80&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(326,'2018-04-22 19:33:22',1,'layout_controller.php','cID=80&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(327,'2018-04-22 19:33:38',1,'layout_controller.php','cID=80&action=save&layout_box_name=document_categories.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\ᓋ/\\K\IŢl!tqF~9X273/<3$,Q\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(328,'2018-04-22 19:33:39',1,'layout_controller.php','cID=80&action=save&layout_box_name=document_categories.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\ᓋ/\\K\IŢl!tqF~9X273/<3$,Q\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(329,'2018-04-22 19:33:39',1,'layout_controller.php','cID=80','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(330,'2018-04-22 19:33:40',1,'layout_controller.php','cID=80','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(331,'2018-04-22 19:33:44',1,'layout_controller.php','cID=80','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(332,'2018-04-22 19:33:45',1,'layout_controller.php','cID=80','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(333,'2018-04-22 19:34:24',1,'layout_controller.php','cID=130','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(334,'2018-04-22 19:34:24',1,'layout_controller.php','cID=130&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(335,'2018-04-22 19:34:24',1,'layout_controller.php','cID=130','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(336,'2018-04-22 19:34:24',1,'layout_controller.php','cID=130&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(337,'2018-04-22 19:34:32',1,'layout_controller.php','cID=130&action=save&layout_box_name=currencies_header.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\Ô)\/*\/JI-\\'_E	\B!P8#,_R\W\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(338,'2018-04-22 19:34:32',1,'layout_controller.php','cID=130&action=save&layout_box_name=currencies_header.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\Ô)\/*\/JI-\\'_E	\B!P8#,_R\W\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(339,'2018-04-22 19:34:33',1,'layout_controller.php','cID=130','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(340,'2018-04-22 19:34:33',1,'layout_controller.php','cID=130','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(341,'2018-04-22 19:34:58',1,'layout_controller.php','cID=130&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(342,'2018-04-22 19:34:58',1,'layout_controller.php','cID=130&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(343,'2018-04-22 19:35:06',1,'layout_controller.php','cID=130&action=save&layout_box_name=currencies_header.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\Ô)\/*\/JI-\\'_E	\BT\\rdnf^|yfJIX\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(344,'2018-04-22 19:35:07',1,'layout_controller.php','cID=130&action=save&layout_box_name=currencies_header.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\Ô)\/*\/JI-\\'_E	\BT\\rdnf^|yfJIX\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(345,'2018-04-22 19:35:07',1,'layout_controller.php','cID=130','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(346,'2018-04-22 19:35:08',1,'layout_controller.php','cID=130','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(347,'2018-04-22 19:35:23',1,'layout_controller.php','cID=94&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(348,'2018-04-22 19:35:23',1,'layout_controller.php','cID=94','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(349,'2018-04-22 19:35:23',1,'layout_controller.php','cID=94&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(350,'2018-04-22 19:35:23',1,'layout_controller.php','cID=94','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(351,'2018-04-22 19:35:31',1,'layout_controller.php','cID=94&action=save&layout_box_name=search_header.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\Ô)\/*\/JI-\\'_E	\BT\\rdnf^|yfJIP\P\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(352,'2018-04-22 19:35:31',1,'layout_controller.php','cID=94&action=save&layout_box_name=search_header.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\Ô)\/*\/JI-\\'_E	\BT\\rdnf^|yfJIP\P\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(353,'2018-04-22 19:35:32',1,'layout_controller.php','cID=94','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(354,'2018-04-22 19:35:32',1,'layout_controller.php','cID=94','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(355,'2018-04-22 19:35:53',1,'layout_controller.php','cID=78','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(356,'2018-04-22 19:35:53',1,'layout_controller.php','cID=78&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(357,'2018-04-22 19:35:53',1,'layout_controller.php','cID=78','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(358,'2018-04-22 19:35:53',1,'layout_controller.php','cID=78&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(359,'2018-04-22 19:36:14',1,'layout_controller.php','cID=78&action=save&layout_box_name=categories.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\tᔌ/\\K\IŦl%B$]_\\̋/\L)\\0K\\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(360,'2018-04-22 19:36:15',1,'layout_controller.php','cID=78&action=save&layout_box_name=categories.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\tᔌ/\\K\IŦl%B$]_\\̋/\L)\\0K\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(361,'2018-04-22 19:36:15',1,'layout_controller.php','cID=78','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(362,'2018-04-22 19:36:15',1,'layout_controller.php','cID=78','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(363,'2018-04-22 19:36:40',1,'layout_controller.php','cID=131&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(364,'2018-04-22 19:36:41',1,'layout_controller.php','cID=131&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(365,'2018-04-22 19:36:49',1,'layout_controller.php','cID=131&action=save&layout_box_name=languages_header.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\ᓋ/\\K\IŢl!tqF~9X273/<3$,Q\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(366,'2018-04-22 19:36:49',1,'layout_controller.php','cID=131&action=save&layout_box_name=languages_header.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\ᓋ/\\K\IŢl!tqF~9X273/<3$,Q\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(367,'2018-04-22 19:36:49',1,'layout_controller.php','cID=131','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(368,'2018-04-22 19:36:50',1,'layout_controller.php','cID=131','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(369,'2018-04-22 19:37:18',1,'layout_controller.php','cID=131&action=reset_defaults','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=reset_defaults. Review page_parameters and postdata for details.','info'),(370,'2018-04-22 19:37:18',1,'layout_controller.php','cID=131&action=reset_defaults','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(371,'2018-04-22 19:37:18',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(372,'2018-04-22 19:37:19',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(373,'2018-04-22 19:37:49',1,'layout_controller.php','cID=78','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(374,'2018-04-22 19:37:49',1,'layout_controller.php','cID=78&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(375,'2018-04-22 19:37:50',1,'layout_controller.php','cID=78','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(376,'2018-04-22 19:37:50',1,'layout_controller.php','cID=78&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(377,'2018-04-22 19:38:17',1,'layout_controller.php','cID=78&action=save&layout_box_name=categories.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\Ô)\/*\/JI-\┌/\\K\IŦl%<P8#,_R\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(378,'2018-04-22 19:38:17',1,'layout_controller.php','cID=78&action=save&layout_box_name=categories.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\Ô)\/*\/JI-\┌/\\K\IŦl%<P8#,_R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(379,'2018-04-22 19:38:17',1,'layout_controller.php','cID=78','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(380,'2018-04-22 19:38:18',1,'layout_controller.php','cID=78','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(381,'2018-04-22 19:38:50',1,'layout_controller.php','cID=78&action=edit','174.235.143.88',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(382,'2018-04-22 19:38:50',1,'layout_controller.php','cID=78&action=edit','174.235.143.88',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(383,'2018-04-22 19:39:07',1,'layout_controller.php','cID=78&action=save&layout_box_name=categories.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\tᔌ/\\K\IŦl%<P8#,_R\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(384,'2018-04-22 19:39:08',1,'layout_controller.php','cID=78&action=save&layout_box_name=categories.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\tᔌ/\\K\IŦl%<P8#,_R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(385,'2018-04-22 19:39:08',1,'layout_controller.php','cID=78','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(386,'2018-04-22 19:39:08',1,'layout_controller.php','cID=78','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(387,'2018-04-26 18:21:04',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(388,'2018-04-26 18:21:07',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(389,'2018-04-26 18:21:38',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\O4H6KLMJJ4317L\DKS4C\TSS%Ĕ\̼\\T\\TZ\0','Accessed page [login.php] with action=doa28c6aebbc96471d71dea952f13e557d. Review page_parameters and postdata for details.','info'),(390,'2018-04-26 18:21:39',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\O4H6KLMJJ4317L\DKS4C\TSS%Ĕ\̼\\T\\TZ\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(391,'2018-04-26 18:21:39',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(392,'2018-04-26 18:21:40',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(393,'2018-04-26 18:22:19',1,'categories.php','','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(394,'2018-04-26 18:22:19',1,'categories.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(395,'2018-04-29 21:11:30',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(396,'2018-04-29 21:11:31',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(397,'2018-04-29 21:11:54',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\7026M3L53545H010311M6606M55365V\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do0235f1e655950f8406445c3035e56353. Review page_parameters and postdata for details.','info'),(398,'2018-04-29 21:11:54',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\7026M3L53545H010311M6606M55365V\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(399,'2018-04-29 21:11:54',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\7026M3L53545H010311M6606M55365V\QJL\\̋\K\M\pML\IU\0','Failed admin login attempt:  Eagle','warning'),(400,'2018-04-29 21:12:19',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\7026M3L53545H010311M6606M55365V\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do0235f1e655950f8406445c3035e56353. Review page_parameters and postdata for details.','info'),(401,'2018-04-29 21:12:19',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\7026M3L53545H010311M6606M55365V\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(402,'2018-04-29 21:12:20',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(403,'2018-04-29 21:12:20',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(404,'2018-05-10 18:56:35',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(405,'2018-05-10 18:56:36',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(406,'2018-05-10 18:58:36',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\O1L304322IJI37L54KL4607NH5IU\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=dod59f016224bdf729e16aa339873e8e4e. Review page_parameters and postdata for details.','info'),(407,'2018-05-10 18:58:36',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\O1L304322IJI37L54KL4607NH5IU\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(408,'2018-05-10 18:58:36',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\O1L304322IJI37L54KL4607NH5IU\QJL\\̋\K\M\pML\IU\0','Failed admin login attempt:  Eagle','warning'),(409,'2018-05-10 18:59:00',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\O1L304322IJI37L54KL4607NH5IU\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=dod59f016224bdf729e16aa339873e8e4e. Review page_parameters and postdata for details.','info'),(410,'2018-05-10 18:59:00',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\O1L304322IJI37L54KL4607NH5IU\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(411,'2018-05-10 18:59:00',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(412,'2018-05-10 18:59:01',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(413,'2018-05-10 19:00:04',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(414,'2018-05-10 19:00:05',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(415,'2018-05-10 19:00:58',1,'configuration.php','gID=19&cID=423&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(416,'2018-05-10 19:00:59',1,'configuration.php','gID=19&cID=423&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(417,'2018-05-10 19:01:04',1,'configuration.php','gID=19&cID=423&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	wvqut\rw	w\0*21\"\B\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(418,'2018-05-10 19:01:04',1,'configuration.php','gID=19&cID=423&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	wvqut\rw	w\0*21\"\B\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(419,'2018-05-10 19:01:04',1,'configuration.php','gID=19&cID=423&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	wvqut\rw	w\0*21\"\B\0','Configuration setting changed for SHOW_CATEGORIES_ALWAYS: 1','warning'),(420,'2018-05-10 19:01:05',1,'configuration.php','gID=19&cID=423','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(421,'2018-05-10 19:01:05',1,'configuration.php','gID=19&cID=423','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(422,'2018-05-10 19:02:22',1,'categories.php','','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(423,'2018-05-10 19:02:22',1,'categories.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(424,'2018-05-10 19:02:26',1,'categories.php','action=new_category','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php] with action=new_category. Review page_parameters and postdata for details.','info'),(425,'2018-05-10 19:02:26',1,'categories.php','action=new_category','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(426,'2018-05-10 19:03:10',1,'categories.php','action=insert_category','24.72.164.167',0,'',_binary 'VJN,IM\/\L-\K\MUV2TR\ntqw\rQ\AVZ\\YP.37=>%(\b@fnbzj|nb^ibP!P8$>(%Q\0','Accessed page [categories.php] with action=insert_category. Review page_parameters and postdata for details.','info'),(427,'2018-05-10 19:03:10',1,'categories.php','action=insert_category','24.72.164.167',1,'',_binary 'VJN,IM\/\L-\K\MUV2TR\ntqw\rQ\AVZ\\YP.37=>%(\b@fnbzj|nb^ibP!P8$>(%Q\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(428,'2018-05-10 19:03:10',1,'categories.php','action=insert_category','24.72.164.167',1,'',_binary 'VJN,IM\/\L-\K\MUV2TR\ntqw\rQ\AVZ\\YP.37=>%(\b@fnbzj|nb^ibP!P8$>(%Q\0','Success: File upload saved successfully DATREX_INFANT_VEST.jpg','notice'),(429,'2018-05-10 19:03:11',1,'categories.php','cID=1','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(430,'2018-05-10 19:03:11',1,'categories.php','cID=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(431,'2018-05-10 19:41:15',0,'login.php ','camefrom=categories.php&cPath=1','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(432,'2018-05-10 19:41:16',0,'login.php ','camefrom=categories.php&cPath=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(433,'2018-05-10 19:46:58',0,'login.php Eagle','camefrom=categories.php&cPath=1','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\75J46H002442JML4650140JI474JT\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do52a30c80213922eb9a35484102da712a. Review page_parameters and postdata for details.','info'),(434,'2018-05-10 19:46:59',0,'login.php Eagle','camefrom=categories.php&cPath=1','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\75J46H002442JML4650140JI474JT\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(435,'2018-05-10 19:46:59',1,'categories.php','cPath=1','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(436,'2018-05-10 19:47:00',1,'categories.php','cPath=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(437,'2018-05-10 19:47:15',1,'configuration.php','gID=8','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(438,'2018-05-10 19:47:16',1,'configuration.php','gID=8','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(439,'2018-05-10 19:47:32',1,'configuration.php','gID=12','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(440,'2018-05-10 19:47:33',1,'configuration.php','gID=12','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(441,'2018-05-10 19:47:57',1,'configuration.php','gID=11','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(442,'2018-05-10 19:47:58',1,'configuration.php','gID=11','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(443,'2018-05-10 19:48:16',1,'configuration.php','gID=16','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(444,'2018-05-10 19:48:17',1,'configuration.php','gID=16','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(445,'2018-05-10 19:48:21',1,'configuration.php','gID=17','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(446,'2018-05-10 19:48:22',1,'configuration.php','gID=17','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(447,'2018-05-10 19:48:30',1,'configuration.php','gID=18','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(448,'2018-05-10 19:48:30',1,'configuration.php','gID=18','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(449,'2018-05-10 19:48:52',1,'configuration.php','gID=18&cID=393&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(450,'2018-05-10 19:48:53',1,'configuration.php','gID=18&cID=393&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(451,'2018-05-10 19:49:02',1,'configuration.php','gID=18&cID=393','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(452,'2018-05-10 19:49:02',1,'configuration.php','gID=18&cID=393','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(453,'2018-05-10 19:50:01',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(454,'2018-05-10 19:50:01',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(455,'2018-05-12 15:08:35',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(456,'2018-05-12 15:08:36',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(457,'2018-05-12 15:08:57',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\770O3H50KMML0H42300L05I6HT\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do707f0e06eeab808d92678181d8854c0a. Review page_parameters and postdata for details.','info'),(458,'2018-05-12 15:08:57',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\770O3H50KMML0H42300L05I6HT\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(459,'2018-05-12 15:08:58',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(460,'2018-05-12 15:08:58',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(461,'2018-05-12 15:09:43',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(462,'2018-05-12 15:09:44',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(463,'2018-05-12 15:09:54',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(464,'2018-05-12 15:09:54',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(465,'2018-05-12 15:10:01',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(466,'2018-05-12 15:10:02',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(467,'2018-05-12 15:11:04',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(468,'2018-05-12 15:11:04',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(469,'2018-05-12 15:12:10',1,'configuration.php','gID=19&cID=423&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(470,'2018-05-12 15:12:11',1,'configuration.php','gID=19&cID=423&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(471,'2018-05-12 15:12:11',1,'configuration.php','gID=19&cID=423&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(472,'2018-05-12 15:12:12',1,'configuration.php','gID=19&cID=423&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(473,'2018-05-12 15:12:18',1,'configuration.php','gID=19&cID=423&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	wvqut\rw	w\0)2&\@\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(474,'2018-05-12 15:12:18',1,'configuration.php','gID=19&cID=423&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	wvqut\rw	w\0)2&\@\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(475,'2018-05-12 15:12:18',1,'configuration.php','gID=19&cID=423&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	wvqut\rw	w\0)2&\@\0','Configuration setting changed for SHOW_CATEGORIES_ALWAYS: 1','warning'),(476,'2018-05-12 15:12:18',1,'configuration.php','gID=19&cID=423','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(477,'2018-05-12 15:12:19',1,'configuration.php','gID=19&cID=423','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(478,'2018-05-12 15:13:19',1,'configuration.php','gID=19&cID=442&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(479,'2018-05-12 15:13:19',1,'configuration.php','gID=19&cID=442&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(480,'2018-05-12 15:13:46',1,'configuration.php','gID=19&cID=440&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(481,'2018-05-12 15:13:46',1,'configuration.php','gID=19&cID=440&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(482,'2018-05-12 15:14:03',1,'configuration.php','gID=19&cID=440&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,qvqut\rqt\nq	\r\0*22 dR-\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(483,'2018-05-12 15:14:03',1,'configuration.php','gID=19&cID=440&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,qvqut\rqt\nq	\r\0*22 dR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(484,'2018-05-12 15:14:03',1,'configuration.php','gID=19&cID=440&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,qvqut\rqt\nq	\r\0*22 dR-\0','Configuration setting changed for CATEGORIES_TABS_STATUS: 1','warning'),(485,'2018-05-12 15:14:04',1,'configuration.php','gID=19&cID=440','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(486,'2018-05-12 15:14:04',1,'configuration.php','gID=19&cID=440','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(487,'2018-05-12 15:15:01',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(488,'2018-05-12 15:15:02',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(489,'2018-05-12 15:15:25',1,'configuration.php','gID=19&cID=440','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(490,'2018-05-12 15:15:25',1,'configuration.php','gID=19&cID=440','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(491,'2018-05-12 15:15:35',1,'configuration.php','gID=19&cID=424&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(492,'2018-05-12 15:15:36',1,'configuration.php','gID=19&cID=424&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(493,'2018-05-12 15:17:03',1,'configuration.php','gID=19&cID=440&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(494,'2018-05-12 15:17:04',1,'configuration.php','gID=19&cID=440&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(495,'2018-05-12 15:18:06',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(496,'2018-05-12 15:18:06',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(497,'2018-05-12 15:18:17',1,'define_pages_editor.php','define_it=5&action=new_page','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php] with action=new_page. Review page_parameters and postdata for details.','info'),(498,'2018-05-12 15:18:17',1,'define_pages_editor.php','define_it=5&action=new_page','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(499,'2018-05-12 15:31:13',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(500,'2018-05-12 15:31:13',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(501,'2018-05-12 15:31:18',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(502,'2018-05-12 15:31:18',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(503,'2018-05-12 15:31:28',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR*J-.\\+\,KO\I,.\LV\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(504,'2018-05-12 15:31:29',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR*J-.\\+\,KO\I,.\LV\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(505,'2018-05-12 15:32:28',1,'categories.php','','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(506,'2018-05-12 15:32:28',1,'categories.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(507,'2018-05-12 15:32:32',1,'categories.php','action=new_category','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php] with action=new_category. Review page_parameters and postdata for details.','info'),(508,'2018-05-12 15:32:33',1,'categories.php','action=new_category','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(509,'2018-05-12 15:33:09',1,'categories.php','action=insert_category','24.72.164.167',0,'',_binary 'VJN,IM\/\L-\K\MUV2TRrtww\rRtqw\rQ\AVZ\\YPImfnz|JfP+F_	Ő\\\\\ļ\\Bdq~QI|~QJ*HR-\0','Accessed page [categories.php] with action=insert_category. Review page_parameters and postdata for details.','info'),(510,'2018-05-12 15:33:10',1,'categories.php','action=insert_category','24.72.164.167',1,'',_binary 'VJN,IM\/\L-\K\MUV2TRrtww\rRtqw\rQ\AVZ\\YPImfnz|JfP+F_	Ő\\\\\ļ\\Bdq~QI|~QJ*HR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(511,'2018-05-12 15:33:10',1,'categories.php','action=insert_category','24.72.164.167',1,'',_binary 'VJN,IM\/\L-\K\MUV2TRrtww\rRtqw\rQ\AVZ\\YPImfnz|JfP+F_	Ő\\\\\ļ\\Bdq~QI|~QJ*HR-\0','Success: File upload saved successfully fourman_01.gif','notice'),(512,'2018-05-12 15:33:10',1,'categories.php','cID=2','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(513,'2018-05-12 15:33:10',1,'categories.php','cID=2','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(514,'2018-05-12 15:45:27',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(515,'2018-05-12 15:45:28',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(516,'2018-05-12 15:45:31',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(517,'2018-05-12 15:45:32',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(518,'2018-05-12 15:45:38',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(519,'2018-05-12 15:45:38',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(520,'2018-05-12 15:46:48',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(521,'2018-05-12 15:46:48',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(522,'2018-05-12 15:47:00',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR*J-.\\+\,KO\I,.\LV\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(523,'2018-05-12 15:47:00',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR*J-.\\+\,KO\I,.\LV\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(524,'2018-05-12 15:47:05',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(525,'2018-05-12 15:47:05',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(526,'2018-05-12 15:48:36',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(527,'2018-05-12 15:48:36',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(528,'2018-05-12 15:49:12',1,'sqlpatch.php','','24.72.164.167',0,'',_binary '\0','Accessed page [sqlpatch.php]','info'),(529,'2018-05-12 15:49:12',1,'sqlpatch.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(530,'2018-05-12 15:53:51',1,'sqlpatch.php','vcheck=yes','24.72.164.167',0,'',_binary '\0','Accessed page [sqlpatch.php]','info'),(531,'2018-05-12 15:53:52',1,'sqlpatch.php','vcheck=yes','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(532,'2018-05-12 15:58:00',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(533,'2018-05-12 15:58:00',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(534,'2018-05-12 15:58:06',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(535,'2018-05-12 15:58:06',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(536,'2018-05-12 15:58:11',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(537,'2018-05-12 15:58:11',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(538,'2018-05-12 15:59:29',1,'banner_manager.php','','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(539,'2018-05-12 15:59:29',1,'banner_manager.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(540,'2018-05-12 16:05:37',1,'banner_manager.php','','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(541,'2018-05-12 16:05:38',1,'banner_manager.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(542,'2018-05-13 11:05:38',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(543,'2018-05-13 11:05:38',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(544,'2018-05-13 11:05:55',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\7HK01741O643LM2474M675IJ42HJ22JU\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do0fa847147c161eb1715c754ba20bb22e. Review page_parameters and postdata for details.','info'),(545,'2018-05-13 11:05:56',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\7HK01741O643LM2474M675IJ42HJ22JU\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(546,'2018-05-13 11:05:56',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(547,'2018-05-13 11:05:57',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(548,'2018-05-13 11:06:02',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(549,'2018-05-13 11:06:02',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(550,'2018-05-13 11:06:06',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(551,'2018-05-13 11:06:07',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(552,'2018-05-13 11:06:13',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR\\LKU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(553,'2018-05-13 11:06:14',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR\\LKU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(554,'2018-05-13 11:07:28',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(555,'2018-05-13 11:07:28',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(556,'2018-05-13 11:07:41',1,'layout_controller.php','cID=132&action=reset_defaults','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=reset_defaults. Review page_parameters and postdata for details.','info'),(557,'2018-05-13 11:07:41',1,'layout_controller.php','cID=132&action=reset_defaults','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(558,'2018-05-13 11:07:41',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(559,'2018-05-13 11:07:42',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(560,'2018-05-13 11:40:17',0,'login.php ','camefrom=template_select.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(561,'2018-05-13 11:40:18',0,'login.php ','camefrom=template_select.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(562,'2018-05-13 11:40:43',0,'login.php Eagle','camefrom=template_select.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\76N2140J44056HKLJM6HLIIMM64H3JV\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do33b4102a4905358fabec0addeec10f2c. Review page_parameters and postdata for details.','info'),(563,'2018-05-13 11:40:43',0,'login.php Eagle','camefrom=template_select.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\76N2140J44056HKLJM6HLIIMM64H3JV\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(564,'2018-05-13 11:40:44',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(565,'2018-05-13 11:40:44',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(566,'2018-05-13 11:41:11',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(567,'2018-05-13 11:41:12',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(568,'2018-05-13 11:41:25',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR\\LKU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(569,'2018-05-13 11:41:26',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR\\LKU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(570,'2018-05-13 11:41:32',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(571,'2018-05-13 11:41:32',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(572,'2018-05-13 11:46:46',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(573,'2018-05-13 11:46:46',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(574,'2018-05-13 11:46:49',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(575,'2018-05-13 11:46:49',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(576,'2018-05-13 11:47:00',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR\\LKU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(577,'2018-05-13 11:47:00',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR\\LKU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(578,'2018-05-13 11:47:07',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(579,'2018-05-13 11:47:07',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(580,'2018-05-13 11:47:43',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(581,'2018-05-13 11:47:44',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(582,'2018-05-13 11:47:56',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(583,'2018-05-13 11:47:56',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(584,'2018-05-13 11:48:38',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(585,'2018-05-13 11:48:38',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(586,'2018-05-13 11:50:54',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(587,'2018-05-13 11:50:54',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(588,'2018-05-13 11:51:00',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR\\LKU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(589,'2018-05-13 11:51:01',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR\\LKU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(590,'2018-05-13 11:51:05',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(591,'2018-05-13 11:51:05',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(592,'2018-05-13 11:54:19',1,'layout_controller.php','cID=144&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(593,'2018-05-13 11:54:19',1,'layout_controller.php','cID=144&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(594,'2018-05-13 11:54:25',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(595,'2018-05-13 11:54:25',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(596,'2018-05-13 11:54:28',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(597,'2018-05-13 11:54:28',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(598,'2018-05-13 11:54:35',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR*J-.\\+\,KO\I,.\LV\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(599,'2018-05-13 11:54:36',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR*J-.\\+\,KO\I,.\LV\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(600,'2018-05-13 11:54:41',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(601,'2018-05-13 11:54:41',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(602,'2018-05-13 12:10:43',0,'login.php ','camefrom=template_select.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(603,'2018-05-13 12:10:43',0,'login.php ','camefrom=template_select.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(604,'2018-05-13 12:11:07',0,'login.php Eagle','camefrom=template_select.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\7162N32H1J4LM5IL6KL1LIKJI153I4NP\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do4323f20d2a1ee4ac6ad1dfbdd564a3d8. Review page_parameters and postdata for details.','info'),(605,'2018-05-13 12:11:08',0,'login.php Eagle','camefrom=template_select.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\7162N32H1J4LM5IL6KL1LIKJI153I4NP\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(606,'2018-05-13 12:11:08',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(607,'2018-05-13 12:11:09',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(608,'2018-05-13 12:11:15',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(609,'2018-05-13 12:11:15',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(610,'2018-05-13 12:11:22',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR\\LKU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(611,'2018-05-13 12:11:23',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR\\LKU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(612,'2018-05-13 12:11:27',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(613,'2018-05-13 12:11:27',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(614,'2018-05-13 12:11:36',1,'layout_controller.php','cID=144&action=reset_defaults','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=reset_defaults. Review page_parameters and postdata for details.','info'),(615,'2018-05-13 12:11:36',1,'layout_controller.php','cID=144&action=reset_defaults','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(616,'2018-05-13 12:11:37',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(617,'2018-05-13 12:11:37',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(618,'2018-05-13 12:19:57',1,'layout_controller.php','cID=158','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(619,'2018-05-13 12:19:57',1,'layout_controller.php','cID=158&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(620,'2018-05-13 12:19:57',1,'layout_controller.php','cID=158','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(621,'2018-05-13 12:19:57',1,'layout_controller.php','cID=158&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(622,'2018-05-13 12:20:21',1,'layout_controller.php','cID=158&action=save&layout_box_name=whos_online.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\p\\g\\bU\0dCqF~9X273/<3$\Z\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(623,'2018-05-13 12:20:21',1,'layout_controller.php','cID=158&action=save&layout_box_name=whos_online.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\p\\g\\bU\0dCqF~9X273/<3$\Z\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(624,'2018-05-13 12:20:22',1,'layout_controller.php','cID=158','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(625,'2018-05-13 12:20:22',1,'layout_controller.php','cID=158','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(626,'2018-05-13 12:21:02',1,'layout_controller.php','cID=153&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(627,'2018-05-13 12:21:02',1,'layout_controller.php','cID=153&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(628,'2018-05-13 12:21:10',1,'layout_controller.php','cID=153&action=save&layout_box_name=search.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\pI\g\\bU8#,_R\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(629,'2018-05-13 12:21:11',1,'layout_controller.php','cID=153&action=save&layout_box_name=search.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\pI\g\\bU8#,_R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(630,'2018-05-13 12:21:11',1,'layout_controller.php','cID=153','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(631,'2018-05-13 12:21:12',1,'layout_controller.php','cID=153','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(632,'2018-05-13 12:21:59',1,'layout_controller.php','cID=133&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(633,'2018-05-13 12:22:00',1,'layout_controller.php','cID=133&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(634,'2018-05-13 12:22:06',1,'layout_controller.php','cID=133&action=save&layout_box_name=banner_box2.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\LqI\g\\b\U8#,_RvQ-\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(635,'2018-05-13 12:22:06',1,'layout_controller.php','cID=133&action=save&layout_box_name=banner_box2.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\LqI\g\\b\U8#,_RvQ-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(636,'2018-05-13 12:22:07',1,'layout_controller.php','cID=133','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(637,'2018-05-13 12:22:07',1,'layout_controller.php','cID=133','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(638,'2018-05-13 12:22:40',1,'layout_controller.php','cID=151','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(639,'2018-05-13 12:22:40',1,'layout_controller.php','cID=151&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(640,'2018-05-13 12:22:40',1,'layout_controller.php','cID=151','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(641,'2018-05-13 12:22:40',1,'layout_controller.php','cID=151&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(642,'2018-05-13 12:22:48',1,'layout_controller.php','cID=151&action=save&layout_box_name=record_companies.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\a\B\\g\\bQU8#,_R\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(643,'2018-05-13 12:22:48',1,'layout_controller.php','cID=151&action=save&layout_box_name=record_companies.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\a\B\\g\\bQU8#,_R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(644,'2018-05-13 12:22:49',1,'layout_controller.php','cID=151','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(645,'2018-05-13 12:22:49',1,'layout_controller.php','cID=151','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(646,'2018-05-13 12:22:55',1,'layout_controller.php','cID=148','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(647,'2018-05-13 12:22:55',1,'layout_controller.php','cID=148','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(648,'2018-05-13 12:22:55',1,'layout_controller.php','cID=148','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(649,'2018-05-13 12:22:56',1,'layout_controller.php','cID=148','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(650,'2018-05-13 12:22:59',1,'layout_controller.php','cID=148&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(651,'2018-05-13 12:22:59',1,'layout_controller.php','cID=148&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(652,'2018-05-13 12:23:05',1,'layout_controller.php','cID=148&action=save&layout_box_name=music_genres.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\a\B\\g\\bQU8#,_R\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(653,'2018-05-13 12:23:06',1,'layout_controller.php','cID=148&action=save&layout_box_name=music_genres.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\a\B\\g\\bQU8#,_R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(654,'2018-05-13 12:23:06',1,'layout_controller.php','cID=148','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(655,'2018-05-13 12:23:06',1,'layout_controller.php','cID=148','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(656,'2018-05-13 12:23:14',1,'layout_controller.php','cID=149&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(657,'2018-05-13 12:23:15',1,'layout_controller.php','cID=149&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(658,'2018-05-13 12:23:24',1,'layout_controller.php','cID=149&action=save&layout_box_name=order_history.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\a\B\\g\\bQU8#,_R\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(659,'2018-05-13 12:23:24',1,'layout_controller.php','cID=149&action=save&layout_box_name=order_history.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\a\B\\g\\bQU8#,_R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(660,'2018-05-13 12:23:25',1,'layout_controller.php','cID=149','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(661,'2018-05-13 12:23:25',1,'layout_controller.php','cID=149','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(662,'2018-05-13 12:23:31',1,'layout_controller.php','cID=134&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(663,'2018-05-13 12:23:31',1,'layout_controller.php','cID=134&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(664,'2018-05-13 12:23:40',1,'layout_controller.php','cID=134&action=save&layout_box_name=banner_box_all.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\Lq\\g\\b\ZU8#,_R\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(665,'2018-05-13 12:23:40',1,'layout_controller.php','cID=134&action=save&layout_box_name=banner_box_all.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\Lq\\g\\b\ZU8#,_R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(666,'2018-05-13 12:23:41',1,'layout_controller.php','cID=134','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(667,'2018-05-13 12:23:41',1,'layout_controller.php','cID=134','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(668,'2018-05-13 12:23:48',1,'layout_controller.php','cID=155&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(669,'2018-05-13 12:23:48',1,'layout_controller.php','cID=155&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(670,'2018-05-13 12:24:16',1,'layout_controller.php','cID=155&action=save&layout_box_name=shopping_cart.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-\\/\\K\I1FW!28#,_R0P\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(671,'2018-05-13 12:24:16',1,'layout_controller.php','cID=155&action=save&layout_box_name=shopping_cart.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-\\/\\K\I1FW!28#,_R0P\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(672,'2018-05-13 12:24:17',1,'layout_controller.php','cID=155','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(673,'2018-05-13 12:24:17',1,'layout_controller.php','cID=155','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(674,'2018-05-13 12:24:27',1,'layout_controller.php','cID=135','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(675,'2018-05-13 12:24:28',1,'layout_controller.php','cID=135&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(676,'2018-05-13 12:24:28',1,'layout_controller.php','cID=135','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(677,'2018-05-13 12:24:28',1,'layout_controller.php','cID=135&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(678,'2018-05-13 12:24:40',1,'layout_controller.php','cID=135&action=save&layout_box_name=best_sellers.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-\\/\\K\I1GW!28#,_R0P\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(679,'2018-05-13 12:24:41',1,'layout_controller.php','cID=135&action=save&layout_box_name=best_sellers.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-\\/\\K\I1GW!28#,_R0P\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(680,'2018-05-13 12:24:41',1,'layout_controller.php','cID=135','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(681,'2018-05-13 12:24:42',1,'layout_controller.php','cID=135','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(682,'2018-05-13 12:24:50',1,'layout_controller.php','cID=145','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(683,'2018-05-13 12:24:50',1,'layout_controller.php','cID=145&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(684,'2018-05-13 12:24:51',1,'layout_controller.php','cID=145','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(685,'2018-05-13 12:24:51',1,'layout_controller.php','cID=145&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(686,'2018-05-13 12:27:31',1,'layout_controller.php','cID=156&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(687,'2018-05-13 12:27:32',1,'layout_controller.php','cID=156&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(688,'2018-05-13 12:27:40',1,'layout_controller.php','cID=156&action=save&layout_box_name=specials.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\LLqI\g\\bU8#,_R\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(689,'2018-05-13 12:27:40',1,'layout_controller.php','cID=156&action=save&layout_box_name=specials.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\LLqI\g\\bU8#,_R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(690,'2018-05-13 12:27:41',1,'layout_controller.php','cID=156','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(691,'2018-05-13 12:27:41',1,'layout_controller.php','cID=156','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(692,'2018-05-13 12:27:57',1,'layout_controller.php','cID=158&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(693,'2018-05-13 12:27:57',1,'layout_controller.php','cID=158','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(694,'2018-05-13 12:27:57',1,'layout_controller.php','cID=158&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(695,'2018-05-13 12:27:57',1,'layout_controller.php','cID=158','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(696,'2018-05-13 12:28:03',1,'layout_controller.php','cID=158&layout_box_name=whos_online.php','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(697,'2018-05-13 12:28:04',1,'layout_controller.php','cID=158&layout_box_name=whos_online.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(698,'2018-05-13 12:28:12',1,'layout_controller.php','cID=140','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(699,'2018-05-13 12:28:12',1,'layout_controller.php','cID=140&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(700,'2018-05-13 12:28:12',1,'layout_controller.php','cID=140','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(701,'2018-05-13 12:28:12',1,'layout_controller.php','cID=140&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(702,'2018-05-13 12:28:20',1,'layout_controller.php','cID=140&action=save&layout_box_name=ezpages.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\tqJ\g\\\)ۈP_\\̋/\L)\\0\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(703,'2018-05-13 12:28:20',1,'layout_controller.php','cID=140&action=save&layout_box_name=ezpages.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\tqJ\g\\\)ۈP_\\̋/\L)\\0\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(704,'2018-05-13 12:28:21',1,'layout_controller.php','cID=140','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(705,'2018-05-13 12:28:21',1,'layout_controller.php','cID=140','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(706,'2018-05-13 12:28:45',1,'layout_controller.php','cID=135','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(707,'2018-05-13 12:28:45',1,'layout_controller.php','cID=135','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(708,'2018-05-13 12:28:49',1,'layout_controller.php','cID=135&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(709,'2018-05-13 12:28:49',1,'layout_controller.php','cID=135&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(710,'2018-05-13 12:28:57',1,'layout_controller.php','cID=135&action=save&layout_box_name=best_sellers.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\\rpI\g\\՘[__\\̋/\L)\\0;\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(711,'2018-05-13 12:28:58',1,'layout_controller.php','cID=135&action=save&layout_box_name=best_sellers.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\\rpI\g\\՘[__\\̋/\L)\\0;\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(712,'2018-05-13 12:28:58',1,'layout_controller.php','cID=135','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(713,'2018-05-13 12:28:58',1,'layout_controller.php','cID=135','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(714,'2018-05-13 12:29:09',1,'layout_controller.php','cID=150','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(715,'2018-05-13 12:29:09',1,'layout_controller.php','cID=150&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(716,'2018-05-13 12:29:09',1,'layout_controller.php','cID=150','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(717,'2018-05-13 12:29:09',1,'layout_controller.php','cID=150&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(718,'2018-05-13 12:29:19',1,'layout_controller.php','cID=150&action=save&layout_box_name=product_notifications.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\LMqI\g\\\X[__\\̋/\L)\\0;\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(719,'2018-05-13 12:29:19',1,'layout_controller.php','cID=150&action=save&layout_box_name=product_notifications.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\LMqI\g\\\X[__\\̋/\L)\\0;\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(720,'2018-05-13 12:29:20',1,'layout_controller.php','cID=150','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(721,'2018-05-13 12:29:20',1,'layout_controller.php','cID=150','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(722,'2018-05-13 12:29:29',1,'layout_controller.php','cID=145','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(723,'2018-05-13 12:29:29',1,'layout_controller.php','cID=145&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(724,'2018-05-13 12:29:29',1,'layout_controller.php','cID=145','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(725,'2018-05-13 12:29:29',1,'layout_controller.php','cID=145&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(726,'2018-05-13 12:29:38',1,'layout_controller.php','cID=145&action=save&layout_box_name=manufacturer_info.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\MqI\g\\\X[__\\̋/\L)\\0;\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(727,'2018-05-13 12:29:38',1,'layout_controller.php','cID=145&action=save&layout_box_name=manufacturer_info.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\MqI\g\\\X[__\\̋/\L)\\0;\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(728,'2018-05-13 12:29:38',1,'layout_controller.php','cID=145','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(729,'2018-05-13 12:29:39',1,'layout_controller.php','cID=145','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(730,'2018-05-13 12:29:56',1,'layout_controller.php','cID=155','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(731,'2018-05-13 12:29:56',1,'layout_controller.php','cID=155&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(732,'2018-05-13 12:29:57',1,'layout_controller.php','cID=155','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(733,'2018-05-13 12:29:57',1,'layout_controller.php','cID=155&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(734,'2018-05-13 12:30:05',1,'layout_controller.php','cID=155&action=save&layout_box_name=shopping_cart.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\pI\g\\\[__\\̋/\L)\\0;\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(735,'2018-05-13 12:30:06',1,'layout_controller.php','cID=155&action=save&layout_box_name=shopping_cart.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\pI\g\\\[__\\̋/\L)\\0;\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(736,'2018-05-13 12:30:06',1,'layout_controller.php','cID=155','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(737,'2018-05-13 12:30:07',1,'layout_controller.php','cID=155','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(738,'2018-05-13 16:12:12',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(739,'2018-05-13 16:12:13',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(740,'2018-05-13 16:12:28',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\714II1042MILML541M6676LLNJ3P\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do414dd06925da9eb9e145c3731acbf098. Review page_parameters and postdata for details.','info'),(741,'2018-05-13 16:12:29',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\714II1042MILML541M6676LLNJ3P\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(742,'2018-05-13 16:12:29',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(743,'2018-05-13 16:12:30',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(744,'2018-05-13 16:13:48',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(745,'2018-05-13 16:13:48',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(746,'2018-05-13 16:14:01',1,'layout_controller.php','cID=136','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(747,'2018-05-13 16:14:01',1,'layout_controller.php','cID=136&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(748,'2018-05-13 16:14:01',1,'layout_controller.php','cID=136','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(749,'2018-05-13 16:14:01',1,'layout_controller.php','cID=136&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(750,'2018-05-13 16:14:14',1,'layout_controller.php','cID=136&action=save&layout_box_name=categories.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\Ô)\/*\/JI-\┌/\\K\IŦl%<P8#,_R\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(751,'2018-05-13 16:14:14',1,'layout_controller.php','cID=136&action=save&layout_box_name=categories.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\Ô)\/*\/JI-\┌/\\K\IŦl%<P8#,_R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(752,'2018-05-13 16:14:15',1,'layout_controller.php','cID=136','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(753,'2018-05-13 16:14:15',1,'layout_controller.php','cID=136','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(754,'2018-05-13 16:15:07',1,'layout_controller.php','cID=152','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(755,'2018-05-13 16:15:08',1,'layout_controller.php','cID=152&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(756,'2018-05-13 16:15:08',1,'layout_controller.php','cID=152','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(757,'2018-05-13 16:15:08',1,'layout_controller.php','cID=152&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(758,'2018-05-13 16:15:16',1,'layout_controller.php','cID=152&action=save&layout_box_name=reviews.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\Ô)\/*\/JI-ʙ\/\\K\IŢl#tqF~9X273/<3$,Q\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(759,'2018-05-13 16:15:16',1,'layout_controller.php','cID=152&action=save&layout_box_name=reviews.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\Ô)\/*\/JI-ʙ\/\\K\IŢl#tqF~9X273/<3$,Q\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(760,'2018-05-13 16:15:17',1,'layout_controller.php','cID=152','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(761,'2018-05-13 16:15:17',1,'layout_controller.php','cID=152','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(762,'2018-05-13 16:26:15',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(763,'2018-05-13 16:26:15',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(764,'2018-05-13 16:26:25',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(765,'2018-05-13 16:26:26',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(766,'2018-05-13 16:26:35',1,'define_pages_editor.php','define_it=5&action=new_page','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php] with action=new_page. Review page_parameters and postdata for details.','info'),(767,'2018-05-13 16:26:36',1,'define_pages_editor.php','define_it=5&action=new_page','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(768,'2018-05-13 16:27:02',1,'define_pages_editor.php','lngdir=english&filename=define_main_page.php&action=save','24.72.164.167',0,'',_binary 'VJ\\IO\\+I\+)VRR\0','Accessed page [define_pages_editor.php] with action=save. Review page_parameters and postdata for details.','info'),(769,'2018-05-13 16:27:03',1,'define_pages_editor.php','lngdir=english&filename=define_main_page.php&action=save','24.72.164.167',1,'',_binary 'VJ\\IO\\+I\+)VRR\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(770,'2018-05-13 16:27:03',1,'define_pages_editor.php','lngdir=english&filename=define_main_page.php&action=save','24.72.164.167',0,'',_binary 'VJ\\IO\\+I\+)VRR\0','Define-Page-Editor was used to save changes to file /home/surpro/public_html/surpro8/includes/languages/english/html_includes/define_main_page.php','info'),(771,'2018-05-13 16:27:03',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(772,'2018-05-13 16:27:03',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(773,'2018-05-13 16:28:45',1,'banner_manager.php','','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(774,'2018-05-13 16:28:45',1,'banner_manager.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(775,'2018-05-13 16:31:59',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(776,'2018-05-13 16:31:59',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(777,'2018-05-13 16:33:19',1,'configuration.php','gID=19&cID=424&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(778,'2018-05-13 16:33:19',1,'configuration.php','gID=19&cID=424&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(779,'2018-05-13 16:33:26',1,'configuration.php','gID=19&cID=424&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,qvqut\rq\nu\012\"\\T\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(780,'2018-05-13 16:33:26',1,'configuration.php','gID=19&cID=424&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,qvqut\rq\nu\012\"\\T\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(781,'2018-05-13 16:33:26',1,'configuration.php','gID=19&cID=424&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,qvqut\rq\nu\012\"\\T\0','Configuration setting changed for CATEGORIES_START_MAIN: 0','warning'),(782,'2018-05-13 16:33:27',1,'configuration.php','gID=19&cID=424','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(783,'2018-05-13 16:33:27',1,'configuration.php','gID=19&cID=424','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(784,'2018-05-13 16:34:00',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(785,'2018-05-13 16:34:00',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(786,'2018-05-13 16:34:13',1,'banner_manager.php','','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(787,'2018-05-13 16:34:14',1,'banner_manager.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(788,'2018-05-13 16:34:48',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(789,'2018-05-13 16:34:48',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(790,'2018-05-13 16:34:56',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(791,'2018-05-13 16:34:56',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(792,'2018-05-13 16:35:11',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0 \\D\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(793,'2018-05-13 16:35:12',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0 \\D\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(794,'2018-05-13 16:35:12',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0 \\D\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET2: homepageslide','warning'),(795,'2018-05-13 16:35:12',1,'configuration.php','gID=19&cID=427','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(796,'2018-05-13 16:35:12',1,'configuration.php','gID=19&cID=427','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(797,'2018-05-13 16:36:52',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(798,'2018-05-13 16:36:53',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(799,'2018-05-13 16:37:00',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0 \R\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(800,'2018-05-13 16:37:00',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0 \R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(801,'2018-05-13 16:37:00',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0 \R\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET1: homepageslide','warning'),(802,'2018-05-13 16:37:01',1,'configuration.php','gID=19&cID=426','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(803,'2018-05-13 16:37:01',1,'configuration.php','gID=19&cID=426','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(804,'2018-05-13 16:37:49',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(805,'2018-05-13 16:37:49',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(806,'2018-05-13 16:37:50',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(807,'2018-05-13 16:37:50',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(808,'2018-05-13 16:37:56',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*26\"\\X\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(809,'2018-05-13 16:37:56',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*26\"\\X\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(810,'2018-05-13 16:37:56',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*26\"\\X\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET1: ','warning'),(811,'2018-05-13 16:37:56',1,'configuration.php','gID=19&cID=426','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(812,'2018-05-13 16:37:57',1,'configuration.php','gID=19&cID=426','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(813,'2018-05-13 16:38:05',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(814,'2018-05-13 16:38:06',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(815,'2018-05-13 16:38:10',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0 \0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(816,'2018-05-13 16:38:10',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0 \0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(817,'2018-05-13 16:38:10',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0 \0','Configuration setting changed for SHOW_BANNERS_GROUP_SET2: homepageslide','warning'),(818,'2018-05-13 16:38:11',1,'configuration.php','gID=19&cID=427','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(819,'2018-05-13 16:38:11',1,'configuration.php','gID=19&cID=427','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(820,'2018-05-13 16:38:17',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(821,'2018-05-13 16:38:18',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(822,'2018-05-13 16:38:23',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*2 \\X\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(823,'2018-05-13 16:38:24',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*2 \\X\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(824,'2018-05-13 16:38:24',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*2 \\X\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET2: ','warning'),(825,'2018-05-13 16:38:24',1,'configuration.php','gID=19&cID=427','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(826,'2018-05-13 16:38:24',1,'configuration.php','gID=19&cID=427','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(827,'2018-05-13 16:38:31',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(828,'2018-05-13 16:38:32',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(829,'2018-05-13 16:38:38',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0 \\L\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(830,'2018-05-13 16:38:39',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0 \\L\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(831,'2018-05-13 16:38:39',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0 \\L\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET3: homepageslide','warning'),(832,'2018-05-13 16:38:39',1,'configuration.php','gID=19&cID=428','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(833,'2018-05-13 16:38:40',1,'configuration.php','gID=19&cID=428','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(834,'2018-05-13 17:01:22',0,'login.php ','camefrom=configuration.php&gID=19&cID=428','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(835,'2018-05-13 17:01:23',0,'login.php ','camefrom=configuration.php&gID=19&cID=428','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(836,'2018-05-13 17:01:43',0,'login.php eagle','camefrom=configuration.php&gID=19&cID=428','24.72.164.167',0,'',_binary '\r\10\00;\VJ3LK7\\{@t.\R有%\\v0hot\y','Accessed page [login.php] with action=doe54a595ff95a312279e70705f6593bd6. Review page_parameters and postdata for details.','info'),(837,'2018-05-13 17:01:43',0,'login.php eagle','camefrom=configuration.php&gID=19&cID=428','24.72.164.167',1,'',_binary '\r\10\00;\VJ3LK7\\{@t.\R有%\\v0hot\y','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(838,'2018-05-13 17:01:43',0,'login.php eagle','camefrom=configuration.php&gID=19&cID=428','24.72.164.167',1,'',_binary '\r\10\00;\VJ3LK7\\{@t.\R有%\\v0hot\y','Failed admin login attempt:  eagle','warning'),(839,'2018-05-13 17:02:03',0,'login.php Eagle','camefrom=configuration.php&gID=19&cID=428','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\O55I44MK4M46422L57070M334NJ1S\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=doe54a595ff95a312279e70705f6593bd6. Review page_parameters and postdata for details.','info'),(840,'2018-05-13 17:02:04',0,'login.php Eagle','camefrom=configuration.php&gID=19&cID=428','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\O55I44MK4M46422L57070M334NJ1S\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(841,'2018-05-13 17:02:04',1,'configuration.php','gID=19&cID=428','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(842,'2018-05-13 17:02:04',1,'configuration.php','gID=19&cID=428','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(843,'2018-05-13 17:02:54',1,'banner_manager.php','','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(844,'2018-05-13 17:02:54',1,'banner_manager.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(845,'2018-05-13 17:03:57',1,'banner_manager.php','','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(846,'2018-05-13 17:03:58',1,'banner_manager.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(847,'2018-05-13 17:04:32',1,'configuration.php','gID=31','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(848,'2018-05-13 17:04:32',1,'configuration.php','gID=31','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(849,'2018-05-13 17:04:40',1,'configuration.php','gID=31&cID=547&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(850,'2018-05-13 17:04:41',1,'configuration.php','gID=31&cID=547&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(851,'2018-05-13 17:04:50',1,'configuration.php','gID=31&cID=547&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR*)R:JťI%AN>.A!!@%ƦxT+\\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(852,'2018-05-13 17:04:50',1,'configuration.php','gID=31&cID=547&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR*)R:JťI%AN>.A!!@%ƦxT+\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(853,'2018-05-13 17:04:50',1,'configuration.php','gID=31&cID=547&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR*)R:JťI%AN>.A!!@%ƦxT+\\0','Configuration setting changed for RSB_SLIDER_STATUS: true','warning'),(854,'2018-05-13 17:04:51',1,'configuration.php','gID=31&cID=547','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(855,'2018-05-13 17:04:51',1,'configuration.php','gID=31&cID=547','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(856,'2018-05-13 17:06:25',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(857,'2018-05-13 17:06:26',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(858,'2018-05-13 17:07:22',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(859,'2018-05-13 17:07:23',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(860,'2018-05-13 17:07:27',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(861,'2018-05-13 17:07:27',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(862,'2018-05-13 17:07:33',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(863,'2018-05-13 17:07:34',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(864,'2018-05-13 17:08:41',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(865,'2018-05-13 17:08:42',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(866,'2018-05-13 17:08:48',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR\\LKU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(867,'2018-05-13 17:08:49',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR\\LKU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(868,'2018-05-13 17:18:55',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(869,'2018-05-13 17:18:56',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(870,'2018-05-13 17:19:02',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(871,'2018-05-13 17:19:03',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(872,'2018-05-13 17:19:38',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(873,'2018-05-13 17:19:39',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(874,'2018-05-13 17:19:53',1,'configuration.php','gID=19&cID=440&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(875,'2018-05-13 17:19:54',1,'configuration.php','gID=19&cID=440&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(876,'2018-05-13 17:19:58',1,'configuration.php','gID=19&cID=440&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,qvqut\rqt\nq	\r\0)2\'\H\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(877,'2018-05-13 17:19:59',1,'configuration.php','gID=19&cID=440&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,qvqut\rqt\nq	\r\0)2\'\H\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(878,'2018-05-13 17:19:59',1,'configuration.php','gID=19&cID=440&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,qvqut\rqt\nq	\r\0)2\'\H\0','Configuration setting changed for CATEGORIES_TABS_STATUS: 1','warning'),(879,'2018-05-13 17:19:59',1,'configuration.php','gID=19&cID=440','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(880,'2018-05-13 17:19:59',1,'configuration.php','gID=19&cID=440','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(881,'2018-05-13 17:20:21',1,'configuration.php','gID=19&cID=424&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(882,'2018-05-13 17:20:22',1,'configuration.php','gID=19&cID=424&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(883,'2018-05-13 17:20:27',1,'configuration.php','gID=19&cID=424&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,qvqut\rq\nu\01$\R\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(884,'2018-05-13 17:20:28',1,'configuration.php','gID=19&cID=424&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,qvqut\rq\nu\01$\R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(885,'2018-05-13 17:20:28',1,'configuration.php','gID=19&cID=424&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,qvqut\rq\nu\01$\R\0','Configuration setting changed for CATEGORIES_START_MAIN: 0','warning'),(886,'2018-05-13 17:20:28',1,'configuration.php','gID=19&cID=424','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(887,'2018-05-13 17:20:29',1,'configuration.php','gID=19&cID=424','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(888,'2018-05-13 17:20:39',1,'categories.php','','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(889,'2018-05-13 17:20:39',1,'categories.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(890,'2018-05-13 17:21:01',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(891,'2018-05-13 17:21:02',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(892,'2018-05-13 17:22:38',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(893,'2018-05-13 17:22:44',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(894,'2018-05-13 17:22:48',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(895,'2018-05-13 17:22:53',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(896,'2018-05-13 17:23:55',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(897,'2018-05-13 17:23:58',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(898,'2018-05-13 17:24:16',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(899,'2018-05-13 17:24:17',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(900,'2018-05-13 17:24:21',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*22$\\T\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(901,'2018-05-13 17:24:21',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*22$\\T\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(902,'2018-05-13 17:24:21',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*22$\\T\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET2: ','warning'),(903,'2018-05-13 17:24:21',1,'configuration.php','gID=19&cID=427','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(904,'2018-05-13 17:24:22',1,'configuration.php','gID=19&cID=427','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(905,'2018-05-13 17:24:37',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(906,'2018-05-13 17:24:38',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(907,'2018-05-13 17:24:43',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*24#\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(908,'2018-05-13 17:24:43',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*24#\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(909,'2018-05-13 17:24:43',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*24#\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET1: ','warning'),(910,'2018-05-13 17:24:43',1,'configuration.php','gID=19&cID=426','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(911,'2018-05-13 17:24:44',1,'configuration.php','gID=19&cID=426','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(912,'2018-05-13 17:24:55',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(913,'2018-05-13 17:24:55',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(914,'2018-05-13 17:25:00',1,'configuration.php','gID=19&cID=427','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(915,'2018-05-13 17:25:00',1,'configuration.php','gID=19&cID=427','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(916,'2018-05-13 17:25:13',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(917,'2018-05-13 17:25:13',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(918,'2018-05-13 17:25:19',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\02&\L\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(919,'2018-05-13 17:25:19',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\02&\L\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(920,'2018-05-13 17:25:19',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\02&\L\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET3: homepageslide','warning'),(921,'2018-05-13 17:25:19',1,'configuration.php','gID=19&cID=428','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(922,'2018-05-13 17:25:20',1,'configuration.php','gID=19&cID=428','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(923,'2018-05-13 17:25:53',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(924,'2018-05-13 17:25:53',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(925,'2018-05-13 17:25:57',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(926,'2018-05-13 17:25:57',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(927,'2018-05-13 17:25:58',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(928,'2018-05-13 17:25:59',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(929,'2018-05-13 17:26:06',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR\\LKU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(930,'2018-05-13 17:26:07',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR\\LKU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(931,'2018-05-13 17:27:55',1,'developers_tool_kit.php','','24.72.164.167',0,'',_binary '\0','Accessed page [developers_tool_kit.php]','info'),(932,'2018-05-13 17:27:55',1,'developers_tool_kit.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(933,'2018-05-13 17:28:09',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',0,'',_binary 'M!DeVõ\/Ҙ\I\c\r\\\\\r^&o\<GɮFNM\\4v #\\݌P\{,%QJuDxƒ\	\,Z;\4a&j\r\/\v\\*>V\','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(934,'2018-05-13 17:28:09',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',1,'',_binary 'M!DeVõ\/Ҙ\I\c\r\\\\\r^&o\<GɮFNM\\4v #\\݌P\{,%QJuDxƒ\	\,Z;\4a&j\r\/\v\\*>V\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(935,'2018-05-13 19:28:43',0,'login.php ','camefrom=layout_controller.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(936,'2018-05-13 19:28:43',0,'login.php ','camefrom=layout_controller.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(937,'2018-05-13 19:29:01',0,'login.php Eagle','camefrom=layout_controller.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\OJK313307N14N67J4M43JJ5I2M4302U\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=dobff466073d793c72a5a962be4b5a6025. Review page_parameters and postdata for details.','info'),(938,'2018-05-13 19:29:02',0,'login.php Eagle','camefrom=layout_controller.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\OJK313307N14N67J4M43JJ5I2M4302U\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(939,'2018-05-13 19:29:02',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(940,'2018-05-13 19:29:02',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(941,'2018-05-14 17:18:13',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(942,'2018-05-14 17:18:14',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(943,'2018-05-14 19:46:47',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(944,'2018-05-14 19:46:47',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(945,'2018-05-14 19:47:07',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJɷH53NNN4IIM15246366440M57MJN3U\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do8e63cca4ded52493633139185e75bcf5. Review page_parameters and postdata for details.','info'),(946,'2018-05-14 19:47:07',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJɷH53NNN4IIM15246366440M57MJN3U\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(947,'2018-05-14 19:47:07',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJɷH53NNN4IIM15246366440M57MJN3U\QJL\\̋\K\M\pML\IU\0','Failed admin login attempt:  Eagle','warning'),(948,'2018-05-14 19:47:27',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJɷH53NNN4IIM15246366440M57MJN3U\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do8e63cca4ded52493633139185e75bcf5. Review page_parameters and postdata for details.','info'),(949,'2018-05-14 19:47:27',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJɷH53NNN4IIM15246366440M57MJN3U\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(950,'2018-05-14 19:47:28',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(951,'2018-05-14 19:47:28',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(952,'2018-05-14 19:47:52',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(953,'2018-05-14 19:47:52',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(954,'2018-05-14 19:48:36',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(955,'2018-05-14 19:48:37',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(956,'2018-05-14 19:48:46',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(957,'2018-05-14 19:48:47',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(958,'2018-05-14 19:49:49',1,'banner_manager.php','','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(959,'2018-05-14 19:49:50',1,'banner_manager.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(960,'2018-05-14 19:50:07',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(961,'2018-05-14 19:50:08',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(962,'2018-05-14 19:50:25',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(963,'2018-05-14 19:50:26',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(964,'2018-05-14 19:50:30',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(965,'2018-05-14 19:50:30',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(966,'2018-05-14 19:50:34',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(967,'2018-05-14 19:50:34',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(968,'2018-05-14 19:50:45',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(969,'2018-05-14 19:50:46',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(970,'2018-05-14 19:50:51',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(971,'2018-05-14 19:50:52',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(972,'2018-05-14 19:50:59',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*24#\P\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(973,'2018-05-14 19:50:59',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*24#\P\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(974,'2018-05-14 19:50:59',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*24#\P\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET3: ','warning'),(975,'2018-05-14 19:51:00',1,'configuration.php','gID=19&cID=428','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(976,'2018-05-14 19:51:00',1,'configuration.php','gID=19&cID=428','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(977,'2018-05-14 19:56:31',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(978,'2018-05-14 19:56:31',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(979,'2018-05-14 19:56:32',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(980,'2018-05-14 19:56:32',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(981,'2018-05-14 19:56:38',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0 \X\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(982,'2018-05-14 19:56:39',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0 \X\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(983,'2018-05-14 19:56:39',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0 \X\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET3: homepageslide','warning'),(984,'2018-05-14 19:56:39',1,'configuration.php','gID=19&cID=428','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(985,'2018-05-14 19:56:39',1,'configuration.php','gID=19&cID=428','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(986,'2018-05-14 19:57:06',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(987,'2018-05-14 19:57:07',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(988,'2018-05-14 19:57:13',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*21%\\T\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(989,'2018-05-14 19:57:13',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*21%\\T\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(990,'2018-05-14 19:57:13',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*21%\\T\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET3: ','warning'),(991,'2018-05-14 19:57:14',1,'configuration.php','gID=19&cID=428','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(992,'2018-05-14 19:57:14',1,'configuration.php','gID=19&cID=428','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(993,'2018-05-14 20:28:28',0,'login.php ','camefrom=configuration.php&gID=19&cID=431&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [login.php] with action=edit. Review page_parameters and postdata for details.','info'),(994,'2018-05-14 20:28:29',0,'login.php ','camefrom=configuration.php&gID=19&cID=431&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(995,'2018-05-14 20:28:47',0,'login.php Eagle','camefrom=configuration.php&gID=19&cID=431&action=edit','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\O65NL6N424L3014234M4HI4L62Q\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=doc53ac3a2591f5884126695a18df91c24. Review page_parameters and postdata for details.','info'),(996,'2018-05-14 20:28:47',0,'login.php Eagle','camefrom=configuration.php&gID=19&cID=431&action=edit','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\O65NL6N424L3014234M4HI4L62Q\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(997,'2018-05-14 20:28:48',1,'configuration.php','gID=19&cID=431&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(998,'2018-05-14 20:28:48',1,'configuration.php','gID=19&cID=431&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(999,'2018-05-14 20:57:12',0,'login.php ','camefrom=developers_tool_kit.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(1000,'2018-05-14 20:57:12',0,'login.php ','camefrom=developers_tool_kit.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1001,'2018-05-14 20:57:37',0,'login.php Eagle','camefrom=developers_tool_kit.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\7MK15J6M3145IJ667MIIN35761HKJKT\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do5fd52c5f469954bc375ddcf57340fbfa. Review page_parameters and postdata for details.','info'),(1002,'2018-05-14 20:57:37',0,'login.php Eagle','camefrom=developers_tool_kit.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\7MK15J6M3145IJ667MIIN35761HKJKT\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1003,'2018-05-14 20:57:38',1,'developers_tool_kit.php','','24.72.164.167',0,'',_binary '\0','Accessed page [developers_tool_kit.php]','info'),(1004,'2018-05-14 20:57:38',1,'developers_tool_kit.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1005,'2018-05-14 20:58:02',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NTRR.\\LI-R\Q*O\\I-\n\Z\"qK*RBF@!Ԋ\<2Z\0','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(1006,'2018-05-14 20:58:02',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NTRR.\\LI-R\Q*O\\I-\n\Z\"qK*RBF@!Ԋ\<2Z\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1007,'2018-05-14 20:58:58',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NTRR.\\LI-R\\T\Q*O\\I-\"qK*RB\@!%%9y`eJ\0','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(1008,'2018-05-14 20:58:59',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NTRR.\\LI-R\\T\Q*O\\I-\"qK*RB\@!%%9y`eJ\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1009,'2018-05-14 20:59:34',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(1010,'2018-05-14 20:59:34',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1011,'2018-05-14 20:59:42',1,'define_pages_editor.php','define_it=5&action=new_page','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php] with action=new_page. Review page_parameters and postdata for details.','info'),(1012,'2018-05-14 20:59:42',1,'define_pages_editor.php','define_it=5&action=new_page','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1013,'2018-05-14 21:00:17',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(1014,'2018-05-14 21:00:18',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1015,'2018-05-14 21:02:50',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(1016,'2018-05-14 21:02:51',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1017,'2018-05-14 21:02:55',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(1018,'2018-05-14 21:02:55',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1019,'2018-05-14 21:03:16',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR*J-.\\+\,KO\I,.\LV\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(1020,'2018-05-14 21:03:17',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR*J-.\\+\,KO\I,.\LV\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1021,'2018-05-14 21:03:58',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(1022,'2018-05-14 21:03:59',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1023,'2018-05-14 21:04:03',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(1024,'2018-05-14 21:04:03',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1025,'2018-05-14 21:04:11',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR\\LKU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(1026,'2018-05-14 21:04:11',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR\\LKU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1027,'2018-05-14 21:05:35',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1028,'2018-05-14 21:05:36',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1029,'2018-05-14 21:06:07',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1030,'2018-05-14 21:06:08',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1031,'2018-05-14 21:06:19',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1032,'2018-05-14 21:06:20',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1033,'2018-05-14 21:06:26',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\04&\L\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(1034,'2018-05-14 21:06:26',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\04&\L\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1035,'2018-05-14 21:06:26',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\04&\L\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET3: homepageslide','warning'),(1036,'2018-05-14 21:06:26',1,'configuration.php','gID=19&cID=428','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1037,'2018-05-14 21:06:27',1,'configuration.php','gID=19&cID=428','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1038,'2018-05-14 21:28:50',0,'login.php ','camefrom=define_pages_editor.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(1039,'2018-05-14 21:28:50',0,'login.php ','camefrom=define_pages_editor.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1040,'2018-05-14 21:29:10',0,'login.php Eagle','camefrom=define_pages_editor.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\76LIH3654L4KIL54170J5N4MLNU\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do31dc8f35169a6df9e094702e3f995ace. Review page_parameters and postdata for details.','info'),(1041,'2018-05-14 21:29:10',0,'login.php Eagle','camefrom=define_pages_editor.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\76LIH3654L4KIL54170J5N4MLNU\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1042,'2018-05-14 21:29:11',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(1043,'2018-05-14 21:29:11',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1044,'2018-05-14 21:29:21',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(1045,'2018-05-14 21:29:21',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1046,'2018-05-14 21:32:55',1,'developers_tool_kit.php','','24.72.164.167',0,'',_binary '\0','Accessed page [developers_tool_kit.php]','info'),(1047,'2018-05-14 21:32:55',1,'developers_tool_kit.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1048,'2018-05-14 21:33:07',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NTRputq\rwt	P\Q*O\\I-J\"qK*RB@JR+J\s2\j','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(1049,'2018-05-14 21:33:07',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NTRputq\rwt	P\Q*O\\I-J\"qK*RB@JR+J\s2\j','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1050,'2018-05-14 21:58:26',0,'login.php ','camefrom=layout_controller.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(1051,'2018-05-14 21:58:28',0,'login.php ','camefrom=layout_controller.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1052,'2018-05-14 21:58:54',0,'login.php Eagle','camefrom=layout_controller.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJɷH5HL3275000O40K2NM55HHM644U\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do8e788af27502807a286b3ee50b8ec115. Review page_parameters and postdata for details.','info'),(1053,'2018-05-14 21:58:55',0,'login.php Eagle','camefrom=layout_controller.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJɷH5HL3275000O40K2NM55HHM644U\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1054,'2018-05-14 21:58:55',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1055,'2018-05-14 21:58:55',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1056,'2018-05-14 21:59:59',1,'layout_controller.php','cID=154','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1057,'2018-05-14 22:00:00',1,'layout_controller.php','cID=154','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1058,'2018-05-14 22:00:06',1,'layout_controller.php','cID=154&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(1059,'2018-05-14 22:00:07',1,'layout_controller.php','cID=154&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1060,'2018-05-14 22:00:49',1,'layout_controller.php','cID=154&action=save&layout_box_name=search_header.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\ᓋ/\\K\IŢl!tqF~9X273/<3$\Z\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(1061,'2018-05-14 22:00:50',1,'layout_controller.php','cID=154&action=save&layout_box_name=search_header.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\ᓋ/\\K\IŢl!tqF~9X273/<3$\Z\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1062,'2018-05-14 22:00:50',1,'layout_controller.php','cID=154','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1063,'2018-05-14 22:00:50',1,'layout_controller.php','cID=154','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1064,'2018-05-14 22:01:44',1,'layout_controller.php','cID=154&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(1065,'2018-05-14 22:01:44',1,'layout_controller.php','cID=154&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1066,'2018-05-14 22:02:03',1,'layout_controller.php','cID=154&action=save&layout_box_name=search_header.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-\\/\\K\IŢl!B\ZdzqF~9X273/<3$,Q\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(1067,'2018-05-14 22:02:03',1,'layout_controller.php','cID=154&action=save&layout_box_name=search_header.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-\\/\\K\IŢl!B\ZdzqF~9X273/<3$,Q\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1068,'2018-05-14 22:02:04',1,'layout_controller.php','cID=154','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1069,'2018-05-14 22:02:04',1,'layout_controller.php','cID=154','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1070,'2018-05-14 22:02:11',1,'layout_controller.php','cID=154','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1071,'2018-05-14 22:02:11',1,'layout_controller.php','cID=154','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1072,'2018-05-14 22:03:02',1,'layout_controller.php','cID=154&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(1073,'2018-05-14 22:03:03',1,'layout_controller.php','cID=154&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1074,'2018-05-14 22:03:14',1,'layout_controller.php','cID=154&action=save&layout_box_name=search_header.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-\\/\\K\IŢl!B\ZdzqF~9X273/<3$\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(1075,'2018-05-14 22:03:14',1,'layout_controller.php','cID=154&action=save&layout_box_name=search_header.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-\\/\\K\IŢl!B\ZdzqF~9X273/<3$\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1076,'2018-05-14 22:03:15',1,'layout_controller.php','cID=154','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1077,'2018-05-14 22:03:15',1,'layout_controller.php','cID=154','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1078,'2018-05-14 22:03:48',1,'layout_controller.php','cID=154&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(1079,'2018-05-14 22:03:48',1,'layout_controller.php','cID=154&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1080,'2018-05-14 22:03:56',1,'layout_controller.php','cID=154&action=save&layout_box_name=search_header.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-\\/\\K\IŢl!B\ZdzqF~9X273/<3$,Q\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(1081,'2018-05-14 22:03:56',1,'layout_controller.php','cID=154&action=save&layout_box_name=search_header.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-\\/\\K\IŢl!B\ZdzqF~9X273/<3$,Q\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1082,'2018-05-14 22:03:56',1,'layout_controller.php','cID=154','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1083,'2018-05-14 22:03:57',1,'layout_controller.php','cID=154','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1084,'2018-05-14 22:08:36',1,'layout_controller.php','cID=154','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1085,'2018-05-14 22:08:37',1,'layout_controller.php','cID=154','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1086,'2018-05-15 08:03:34',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(1087,'2018-05-15 08:03:35',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1088,'2018-05-15 08:03:57',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\7LINM4O307N2740044LMMM35K36Q\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do69dced97f2873b710013959eeef56f34. Review page_parameters and postdata for details.','info'),(1089,'2018-05-15 08:03:57',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\7LINM4O307N2740044LMMM35K36Q\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1090,'2018-05-15 08:03:58',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(1091,'2018-05-15 08:03:58',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1092,'2018-05-15 08:04:06',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1093,'2018-05-15 08:04:06',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1094,'2018-05-15 08:07:13',1,'layout_controller.php','cID=153','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1095,'2018-05-15 08:07:14',1,'layout_controller.php','cID=153','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1096,'2018-05-15 08:07:17',1,'layout_controller.php','cID=153&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(1097,'2018-05-15 08:07:18',1,'layout_controller.php','cID=153&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1098,'2018-05-15 08:07:41',1,'layout_controller.php','cID=153&action=save&layout_box_name=search.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\pI\g\\b!\r28#,_R\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(1099,'2018-05-15 08:07:41',1,'layout_controller.php','cID=153&action=save&layout_box_name=search.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\pI\g\\b!\r28#,_R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1100,'2018-05-15 08:07:41',1,'layout_controller.php','cID=153','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1101,'2018-05-15 08:07:42',1,'layout_controller.php','cID=153','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1102,'2018-05-15 08:08:55',1,'layout_controller.php','cID=154&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(1103,'2018-05-15 08:08:56',1,'layout_controller.php','cID=154&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1104,'2018-05-15 08:09:13',1,'layout_controller.php','cID=154&action=save&layout_box_name=search_header.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\a\B\\g\\bQ!\r28#,_R\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(1105,'2018-05-15 08:09:13',1,'layout_controller.php','cID=154&action=save&layout_box_name=search_header.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\a\B\\g\\bQ!\r28#,_R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1106,'2018-05-15 08:09:13',1,'layout_controller.php','cID=154','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1107,'2018-05-15 08:09:14',1,'layout_controller.php','cID=154','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1108,'2018-05-15 08:12:54',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1109,'2018-05-15 08:12:55',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1110,'2018-05-15 10:47:54',0,'login.php ','camefrom=template_select.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(1111,'2018-05-15 10:47:55',0,'login.php ','camefrom=template_select.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1112,'2018-05-15 10:48:12',0,'login.php Eagle','camefrom=template_select.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\7O41O2M4M10L63K2I62041310M126P\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do7a47b5c95d01c66b4c2582946405d230. Review page_parameters and postdata for details.','info'),(1113,'2018-05-15 10:48:13',0,'login.php Eagle','camefrom=template_select.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\7O41O2M4M10L63K2I62041310M126P\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1114,'2018-05-15 10:48:13',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(1115,'2018-05-15 10:48:14',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1116,'2018-05-15 10:48:17',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(1117,'2018-05-15 10:48:18',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1118,'2018-05-15 10:48:23',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(1119,'2018-05-15 10:48:24',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1120,'2018-05-15 13:18:24',0,'login.php ','camefrom=template_select.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(1121,'2018-05-15 13:18:24',0,'login.php ','camefrom=template_select.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1122,'2018-05-15 13:18:52',0,'login.php Eagle','camefrom=template_select.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\7IL363J4L45520H43L	Y[\Z\'(\(%\f\\\%\u&\*\\0','Accessed page [login.php] with action=do4c9f362a1a55200a679cc9f3287937c4. Review page_parameters and postdata for details.','info'),(1123,'2018-05-15 13:18:52',0,'login.php Eagle','camefrom=template_select.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\7IL363J4L45520H43L	Y[\Z\'(\(%\f\\\%\u&\*\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1124,'2018-05-15 13:18:53',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(1125,'2018-05-15 13:18:53',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1126,'2018-05-15 13:19:48',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(1127,'2018-05-15 13:19:48',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1128,'2018-05-15 13:21:01',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR\\LKU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(1129,'2018-05-15 13:21:02',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR\\LKU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1130,'2018-05-15 16:35:56',0,'login.php ','camefrom=configuration.php&gID=20','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(1131,'2018-05-15 16:35:56',0,'login.php ','camefrom=configuration.php&gID=20','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1132,'2018-05-15 16:36:13',0,'login.php Eagle','camefrom=configuration.php&gID=20','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\ON66L1KN30L04M3K215441K6M5NKJR\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=docc339d6cf01b815f6b4559146c5e3fbb. Review page_parameters and postdata for details.','info'),(1133,'2018-05-15 16:36:14',0,'login.php Eagle','camefrom=configuration.php&gID=20','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\ON66L1KN30L04M3K215441K6M5NKJR\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1134,'2018-05-15 16:36:14',0,'login.php Eagle','camefrom=configuration.php&gID=20','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\ON66L1KN30L04M3K215441K6M5NKJR\QJL\\̋\K\M\pML\IU\0','Failed admin login attempt:  Eagle','warning'),(1135,'2018-05-15 16:36:31',0,'login.php Eagle','camefrom=configuration.php&gID=20','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\ON66L1KN30L04M3K215441K6M5NKJR\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=docc339d6cf01b815f6b4559146c5e3fbb. Review page_parameters and postdata for details.','info'),(1136,'2018-05-15 16:36:32',0,'login.php Eagle','camefrom=configuration.php&gID=20','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\ON66L1KN30L04M3K215441K6M5NKJR\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1137,'2018-05-15 16:36:32',1,'configuration.php','gID=20','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1138,'2018-05-15 16:36:33',1,'configuration.php','gID=20','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1139,'2018-05-15 16:36:58',1,'downloads_manager.php','','24.72.164.167',0,'',_binary '\0','Accessed page [downloads_manager.php]','info'),(1140,'2018-05-15 16:36:58',1,'downloads_manager.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1141,'2018-05-15 16:37:22',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1142,'2018-05-15 16:37:22',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1143,'2018-05-15 16:37:42',1,'configuration.php','gID=8','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1144,'2018-05-15 16:37:42',1,'configuration.php','gID=8','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1145,'2018-05-15 17:07:25',0,'login.php ','camefrom=categories.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(1146,'2018-05-15 17:07:26',0,'login.php ','camefrom=categories.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1147,'2018-05-15 17:07:44',0,'login.php Eagle','camefrom=categories.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\O232L4N60371K32INIJ3L342LMIL6KR\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=dob621d93c286746f24cdbf1f121edac6b. Review page_parameters and postdata for details.','info'),(1148,'2018-05-15 17:07:44',0,'login.php Eagle','camefrom=categories.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\O232L4N60371K32INIJ3L342LMIL6KR\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1149,'2018-05-15 17:07:45',1,'categories.php','','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(1150,'2018-05-15 17:07:45',1,'categories.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1151,'2018-05-15 18:36:43',0,'login.php ','camefrom=categories.php&cID=2&action=delete_category','24.72.164.167',0,'',_binary '\0','Accessed page [login.php] with action=delete_category. Review page_parameters and postdata for details.','info'),(1152,'2018-05-15 18:36:44',0,'login.php ','camefrom=categories.php&cID=2&action=delete_category','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1153,'2018-05-15 18:37:33',0,'login.php Eagle','camefrom=categories.php&cID=2&action=delete_category','24.72.164.167',0,'',_binary 'VJL.\\\SRJɷL52L52L3505#3#cs\D$KD%Ĕ\̼\\T\\TZ\0','Accessed page [login.php] with action=do9e21e209f505405405862371a6b8944a. Review page_parameters and postdata for details.','info'),(1154,'2018-05-15 18:37:34',0,'login.php Eagle','camefrom=categories.php&cID=2&action=delete_category','24.72.164.167',1,'',_binary 'VJL.\\\SRJɷL52L52L3505#3#cs\D$KD%Ĕ\̼\\T\\TZ\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1155,'2018-05-15 18:37:34',1,'categories.php','cID=2&action=delete_category','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php] with action=delete_category. Review page_parameters and postdata for details.','info'),(1156,'2018-05-15 18:37:34',1,'categories.php','cID=2&action=delete_category','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1157,'2018-05-15 18:37:49',1,'categories.php','action=delete_category_confirm','24.72.164.167',0,'',_binary 'VJN,IM\/\L-\LQ2\0','Accessed page [categories.php] with action=delete_category_confirm. Review page_parameters and postdata for details.','info'),(1158,'2018-05-15 18:37:49',1,'categories.php','action=delete_category_confirm','24.72.164.167',1,'',_binary 'VJN,IM\/\L-\LQ2\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1159,'2018-05-15 18:37:49',1,'categories.php','action=delete_category_confirm','24.72.164.167',1,'',_binary 'VJN,IM\/\L-\LQ2\0','Deleted category 2 from database via admin console.','warning'),(1160,'2018-05-15 18:37:49',1,'categories.php','','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(1161,'2018-05-15 18:37:50',1,'categories.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1162,'2018-05-15 18:37:56',1,'categories.php','cID=1&action=delete_category','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php] with action=delete_category. Review page_parameters and postdata for details.','info'),(1163,'2018-05-15 18:37:56',1,'categories.php','cID=1&action=delete_category','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1164,'2018-05-15 18:38:00',1,'categories.php','action=delete_category_confirm','24.72.164.167',0,'',_binary 'VJN,IM\/\L-\LQ2\0','Accessed page [categories.php] with action=delete_category_confirm. Review page_parameters and postdata for details.','info'),(1165,'2018-05-15 18:38:00',1,'categories.php','action=delete_category_confirm','24.72.164.167',1,'',_binary 'VJN,IM\/\L-\LQ2\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1166,'2018-05-15 18:38:00',1,'categories.php','action=delete_category_confirm','24.72.164.167',1,'',_binary 'VJN,IM\/\L-\LQ2\0','Deleted category 1 from database via admin console.','warning'),(1167,'2018-05-15 18:38:00',1,'categories.php','','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(1168,'2018-05-15 18:38:01',1,'categories.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1169,'2018-05-15 19:01:08',0,'login.php ','camefrom=configuration.php&gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(1170,'2018-05-15 19:01:08',0,'login.php ','camefrom=configuration.php&gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1171,'2018-05-15 19:01:26',0,'login.php Eagle','camefrom=configuration.php&gID=19','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\70L6O14H3246O1MIJI6263MMI30\0J)\(%\f\\\%\u&\*\\0','Accessed page [login.php] with action=do01c7d490f2137d5dbdc2365edf007d42. Review page_parameters and postdata for details.','info'),(1172,'2018-05-15 19:01:26',0,'login.php Eagle','camefrom=configuration.php&gID=19','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\70L6O14H3246O1MIJI6263MMI30\0J)\(%\f\\\%\u&\*\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1173,'2018-05-15 19:01:27',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1174,'2018-05-15 19:01:27',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1175,'2018-05-15 19:03:46',1,'configuration.php','gID=19&cID=440&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1176,'2018-05-15 19:03:47',1,'configuration.php','gID=19&cID=440&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1177,'2018-05-15 19:03:58',1,'configuration.php','gID=19&cID=440&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,qvqut\rqt\nq	\r\0*26!\R\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(1178,'2018-05-15 19:03:58',1,'configuration.php','gID=19&cID=440&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,qvqut\rqt\nq	\r\0*26!\R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1179,'2018-05-15 19:03:58',1,'configuration.php','gID=19&cID=440&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,qvqut\rqt\nq	\r\0*26!\R\0','Configuration setting changed for CATEGORIES_TABS_STATUS: 1','warning'),(1180,'2018-05-15 19:03:58',1,'configuration.php','gID=19&cID=440','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1181,'2018-05-15 19:03:59',1,'configuration.php','gID=19&cID=440&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,qvqut\rqt\nq	\r\0*26!\R\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(1182,'2018-05-15 19:03:59',1,'configuration.php','gID=19&cID=440','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1183,'2018-05-15 19:03:59',1,'configuration.php','gID=19&cID=440&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,qvqut\rqt\nq	\r\0*26!\R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1184,'2018-05-15 19:03:59',1,'configuration.php','gID=19&cID=440&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,qvqut\rqt\nq	\r\0*26!\R\0','Configuration setting changed for CATEGORIES_TABS_STATUS: 1','warning'),(1185,'2018-05-15 19:03:59',1,'configuration.php','gID=19&cID=440','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1186,'2018-05-15 19:04:00',1,'configuration.php','gID=19&cID=440','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1187,'2018-05-15 19:16:38',1,'configuration.php','gID=19&cID=440','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1188,'2018-05-15 19:16:39',1,'configuration.php','gID=19&cID=440','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1189,'2018-05-15 22:52:03',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(1190,'2018-05-15 22:52:04',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1191,'2018-05-15 22:52:24',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJɷ0N111O300J1HM24I5HIKK6KN65P\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do83d447f78182d0eb494e18dffc6cc508. Review page_parameters and postdata for details.','info'),(1192,'2018-05-15 22:52:24',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJɷ0N111O300J1HM24I5HIKK6KN65P\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1193,'2018-05-15 22:52:25',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(1194,'2018-05-15 22:52:26',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1195,'2018-05-15 22:52:35',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(1196,'2018-05-15 22:52:35',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1197,'2018-05-15 22:52:39',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(1198,'2018-05-15 22:52:39',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1199,'2018-05-15 22:52:45',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(1200,'2018-05-15 22:52:46',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1201,'2018-05-15 22:54:09',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(1202,'2018-05-15 22:54:09',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1203,'2018-05-15 22:54:14',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR*J-.\\+\,KO\I,.\LV\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(1204,'2018-05-15 22:54:15',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR*J-.\\+\,KO\I,.\LV\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1205,'2018-05-15 22:55:19',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(1206,'2018-05-15 22:55:20',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1207,'2018-05-15 22:55:27',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SRJ\I,.\LV\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(1208,'2018-05-15 22:55:27',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SRJ\I,.\LV\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1209,'2018-05-15 22:56:40',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(1210,'2018-05-15 22:56:41',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1211,'2018-05-15 22:56:46',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR\\LKU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(1212,'2018-05-15 22:56:46',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR\\LKU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1213,'2018-05-16 10:49:40',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(1214,'2018-05-16 10:49:42',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1215,'2018-05-16 10:50:09',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\O1ML367NM03I57JKI571430K4H2Q\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=dod5af373eb9864e72fde74696386a18b4. Review page_parameters and postdata for details.','info'),(1216,'2018-05-16 10:50:09',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\O1ML367NM03I57JKI571430K4H2Q\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1217,'2018-05-16 10:50:10',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(1218,'2018-05-16 10:50:10',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1219,'2018-05-16 10:50:45',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1220,'2018-05-16 10:50:45',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1221,'2018-05-16 10:53:20',1,'configuration.php','gID=19&cID=414&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1222,'2018-05-16 10:53:20',1,'configuration.php','gID=19&cID=414&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1223,'2018-05-16 10:53:38',1,'configuration.php','gID=19&cID=414','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1224,'2018-05-16 10:53:39',1,'configuration.php','gID=19&cID=414','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1225,'2018-05-16 10:54:45',1,'configuration.php','gID=19&cID=424&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1226,'2018-05-16 10:54:46',1,'configuration.php','gID=19&cID=424&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1227,'2018-05-16 10:55:01',1,'configuration.php','gID=19&cID=424','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1228,'2018-05-16 10:55:01',1,'configuration.php','gID=19&cID=424','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1229,'2018-05-16 10:55:17',1,'configuration.php','gID=19&cID=407&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1230,'2018-05-16 10:55:17',1,'configuration.php','gID=19&cID=407&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1231,'2018-05-16 10:55:22',1,'configuration.php','gID=19&cID=407&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	wvqut\rwwsu	\rruw	u	\0\36 QS%PR-\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(1232,'2018-05-16 10:55:23',1,'configuration.php','gID=19&cID=407&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	wvqut\rwwsu	\rruw	u	\0\36 QS%PR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1233,'2018-05-16 10:55:23',1,'configuration.php','gID=19&cID=407&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	wvqut\rwwsu	\rruw	u	\0\36 QS%PR-\0','Configuration setting changed for SHOW_CATEGORIES_BOX_FEATURED_PRODUCTS: false','warning'),(1234,'2018-05-16 10:55:23',1,'configuration.php','gID=19&cID=407','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1235,'2018-05-16 10:55:24',1,'configuration.php','gID=19&cID=407','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1236,'2018-05-16 20:33:37',0,'login.php ','camefrom=developers_tool_kit.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(1237,'2018-05-16 20:33:38',0,'login.php ','camefrom=developers_tool_kit.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1238,'2018-05-16 20:33:54',0,'login.php Eagle','camefrom=developers_tool_kit.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJɷL3I2O22JI4H61JM322H20N4M2L6IP\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do9f4b7b22da48c42ef220b03a5b59c4c8. Review page_parameters and postdata for details.','info'),(1239,'2018-05-16 20:33:55',0,'login.php Eagle','camefrom=developers_tool_kit.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJɷL3I2O22JI4H61JM322H20N4M2L6IP\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1240,'2018-05-16 20:33:55',1,'developers_tool_kit.php','','24.72.164.167',0,'',_binary '\0','Accessed page [developers_tool_kit.php]','info'),(1241,'2018-05-16 20:33:55',1,'developers_tool_kit.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1242,'2018-05-16 20:34:09',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR*.\IQ*\L)ɰR040(QR\Q*O\\I-1D\TBƕV\\d恕(\\0','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(1243,'2018-05-16 20:34:09',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR*.\IQ*\L)ɰR040(QR\Q*O\\I-1D\TBƕV\\d恕(\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1244,'2018-05-16 20:41:13',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR*.\IQ*\L)ɰR040(QR\Q*O\\I-1D\TBƕV\\d恕(\\0','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(1245,'2018-05-16 20:41:13',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR*.\IQ*\L)ɰR040(QR\Q*O\\I-1D\TBƕV\\d恕(\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1246,'2018-05-16 21:17:43',0,'login.php ','camefrom=developers_tool_kit.php&action=locate_all_files&vcheck=yes','24.72.164.167',0,'',_binary '\0','Accessed page [login.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(1247,'2018-05-16 21:17:44',0,'login.php ','camefrom=developers_tool_kit.php&action=locate_all_files&vcheck=yes','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1248,'2018-05-16 21:18:04',0,'login.php Eagle','camefrom=developers_tool_kit.php&action=locate_all_files&vcheck=yes','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\7M6J4171OJLLH4400J504O43P\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do5c2e94747bd9ad8a118782e2817f9648. Review page_parameters and postdata for details.','info'),(1249,'2018-05-16 21:18:05',0,'login.php Eagle','camefrom=developers_tool_kit.php&action=locate_all_files&vcheck=yes','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\7M6J4171OJLLH4400J504O43P\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1250,'2018-05-16 21:18:05',1,'developers_tool_kit.php','action=locate_all_files&vcheck=yes','24.72.164.167',0,'',_binary '\0','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(1251,'2018-05-16 21:18:06',1,'developers_tool_kit.php','action=locate_all_files&vcheck=yes','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1252,'2018-05-16 21:34:13',0,'login.php ','camefrom=configuration.php&gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(1253,'2018-05-16 21:34:14',0,'login.php ','camefrom=configuration.php&gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1254,'2018-05-16 21:34:29',0,'login.php Eagle','camefrom=configuration.php&gID=19','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\7M52LK10L566042I431O2707605I50T\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do5e21fd01e330124a647b70731854e581. Review page_parameters and postdata for details.','info'),(1255,'2018-05-16 21:34:29',0,'login.php Eagle','camefrom=configuration.php&gID=19','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\7M52LK10L566042I431O2707605I50T\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1256,'2018-05-16 21:34:30',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1257,'2018-05-16 21:34:30',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1258,'2018-05-16 21:35:06',1,'configuration.php','gID=19&cID=405&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1259,'2018-05-16 21:35:06',1,'configuration.php','gID=19&cID=405&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1260,'2018-05-16 21:35:12',1,'configuration.php','gID=19&cID=405&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	wvqut\rww	u	s\r\0j1$^}%HR-\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(1261,'2018-05-16 21:35:12',1,'configuration.php','gID=19&cID=405&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	wvqut\rww	u	s\r\0j1$^}%HR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1262,'2018-05-16 21:35:12',1,'configuration.php','gID=19&cID=405&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	wvqut\rww	u	s\r\0j1$^}%HR-\0','Configuration setting changed for SHOW_CATEGORIES_BOX_PRODUCTS_NEW: false','warning'),(1263,'2018-05-16 21:35:13',1,'configuration.php','gID=19&cID=405','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1264,'2018-05-16 21:35:13',1,'configuration.php','gID=19&cID=405','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1265,'2018-05-16 21:35:19',1,'configuration.php','gID=19&cID=404&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1266,'2018-05-16 21:35:19',1,'configuration.php','gID=19&cID=404&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1267,'2018-05-16 21:35:24',1,'configuration.php','gID=19&cID=404','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1268,'2018-05-16 21:35:24',1,'configuration.php','gID=19&cID=404','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1269,'2018-05-16 21:38:17',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1270,'2018-05-16 21:38:17',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1271,'2018-05-16 21:38:23',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*21 \\@\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(1272,'2018-05-16 21:38:23',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*21 \\@\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1273,'2018-05-16 21:38:23',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*21 \\@\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET3: ','warning'),(1274,'2018-05-16 21:38:24',1,'configuration.php','gID=19&cID=428','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1275,'2018-05-16 21:38:24',1,'configuration.php','gID=19&cID=428','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1276,'2018-05-16 21:38:58',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1277,'2018-05-16 21:38:59',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1278,'2018-05-16 21:39:06',1,'layout_controller.php','cID=136','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1279,'2018-05-16 21:39:07',1,'layout_controller.php','cID=136','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1280,'2018-05-16 21:39:11',1,'layout_controller.php','cID=136&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(1281,'2018-05-16 21:39:12',1,'layout_controller.php','cID=136&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1282,'2018-05-16 21:39:23',1,'layout_controller.php','cID=136&action=save&layout_box_name=categories.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\tᔌ/\\K\IŦl%<P8#,_R\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(1283,'2018-05-16 21:39:24',1,'layout_controller.php','cID=136&action=save&layout_box_name=categories.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\tᔌ/\\K\IŦl%<P8#,_R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1284,'2018-05-16 21:39:24',1,'layout_controller.php','cID=136','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1285,'2018-05-16 21:39:25',1,'layout_controller.php','cID=136','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1286,'2018-05-16 21:41:20',1,'layout_controller.php','cID=138','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1287,'2018-05-16 21:41:21',1,'layout_controller.php','cID=138','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1288,'2018-05-16 21:41:24',1,'layout_controller.php','cID=138&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(1289,'2018-05-16 21:41:24',1,'layout_controller.php','cID=138&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1290,'2018-05-16 21:41:34',1,'layout_controller.php','cID=138&action=save&layout_box_name=currencies_header.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\ᓋ/\\K\IŢl!B\ZdoqF~9X273/<3$,Q\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(1291,'2018-05-16 21:41:34',1,'layout_controller.php','cID=138&action=save&layout_box_name=currencies_header.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\ᓋ/\\K\IŢl!B\ZdoqF~9X273/<3$,Q\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1292,'2018-05-16 21:41:34',1,'layout_controller.php','cID=138','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1293,'2018-05-16 21:41:35',1,'layout_controller.php','cID=138','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1294,'2018-05-16 21:41:42',1,'layout_controller.php','cID=157','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1295,'2018-05-16 21:41:42',1,'layout_controller.php','cID=157','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1296,'2018-05-16 21:41:45',1,'layout_controller.php','cID=157&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(1297,'2018-05-16 21:41:46',1,'layout_controller.php','cID=157&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1298,'2018-05-16 21:41:53',1,'layout_controller.php','cID=157&action=save&layout_box_name=whats_new.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\Ô)\/*\/JI-\ᔌ/\\K\IŢl#tqF~9X273/<3$,Q\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(1299,'2018-05-16 21:41:53',1,'layout_controller.php','cID=157&action=save&layout_box_name=whats_new.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\Ô)\/*\/JI-\ᔌ/\\K\IŢl#tqF~9X273/<3$,Q\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1300,'2018-05-16 21:41:53',1,'layout_controller.php','cID=157','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1301,'2018-05-16 21:41:54',1,'layout_controller.php','cID=157','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1302,'2018-05-16 21:42:19',1,'layout_controller.php','cID=145','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1303,'2018-05-16 21:42:20',1,'layout_controller.php','cID=145','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1304,'2018-05-16 21:42:22',1,'layout_controller.php','cID=145&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(1305,'2018-05-16 21:42:23',1,'layout_controller.php','cID=145&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1306,'2018-05-16 21:42:32',1,'layout_controller.php','cID=145&action=save&layout_box_name=manufacturer_info.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\\MqI\g\\\X[\\\_\\̋/\L)\\0[\\\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(1307,'2018-05-16 21:42:33',1,'layout_controller.php','cID=145&action=save&layout_box_name=manufacturer_info.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\\MqI\g\\\X[\\\_\\̋/\L)\\0[\\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1308,'2018-05-16 21:42:33',1,'layout_controller.php','cID=145','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1309,'2018-05-16 21:42:33',1,'layout_controller.php','cID=145','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1310,'2018-05-16 21:43:08',1,'layout_controller.php','cID=138','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1311,'2018-05-16 21:43:08',1,'layout_controller.php','cID=138','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1312,'2018-05-16 21:43:11',1,'layout_controller.php','cID=138&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(1313,'2018-05-16 21:43:12',1,'layout_controller.php','cID=138&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1314,'2018-05-16 21:43:18',1,'layout_controller.php','cID=138&action=save&layout_box_name=currencies_header.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\Ô)\/*\/JI-\\'_E	\B!P8#,_R\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(1315,'2018-05-16 21:43:18',1,'layout_controller.php','cID=138&action=save&layout_box_name=currencies_header.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\Ô)\/*\/JI-\\'_E	\B!P8#,_R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1316,'2018-05-16 21:43:18',1,'layout_controller.php','cID=138','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1317,'2018-05-16 21:43:19',1,'layout_controller.php','cID=138','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1318,'2018-05-16 21:47:05',1,'configuration.php','gID=1','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1319,'2018-05-16 21:47:06',1,'configuration.php','gID=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1320,'2018-05-16 21:47:12',1,'configuration.php','gID=1&cID=34&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1321,'2018-05-16 21:47:12',1,'configuration.php','gID=1&cID=34&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1322,'2018-05-16 21:47:16',1,'configuration.php','gID=1&cID=14&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1323,'2018-05-16 21:47:17',1,'configuration.php','gID=1&cID=14&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1324,'2018-05-16 21:47:21',1,'configuration.php','gID=1&cID=14&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	w	\0ʚcJ\Z*\\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(1325,'2018-05-16 21:47:22',1,'configuration.php','gID=1&cID=14&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	w	\0ʚcJ\Z*\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1326,'2018-05-16 21:47:22',1,'configuration.php','gID=1&cID=14&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	w	\0ʚcJ\Z*\\0','Configuration setting changed for SHOW_COUNTS: false','warning'),(1327,'2018-05-16 21:47:22',1,'configuration.php','gID=1&cID=14','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1328,'2018-05-16 21:47:23',1,'configuration.php','gID=1&cID=14','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1329,'2018-05-19 18:31:21',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(1330,'2018-05-19 18:31:23',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1331,'2018-05-19 19:26:22',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(1332,'2018-05-19 19:26:23',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1333,'2018-05-19 19:26:45',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\ONL2KK1041OJ5724N344\0r\MtSr3\sS:\\\sRj','Accessed page [login.php] with action=docf9b6fd686947be7213f119047b6ab34. Review page_parameters and postdata for details.','info'),(1334,'2018-05-19 19:26:45',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\ONL2KK1041OJ5724N344\0r\MtSr3\sS:\\\sRj','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1335,'2018-05-19 19:26:45',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(1336,'2018-05-19 19:26:46',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1337,'2018-05-19 19:27:04',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(1338,'2018-05-19 19:27:04',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1339,'2018-05-19 19:27:56',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(1340,'2018-05-19 19:27:57',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1341,'2018-05-19 19:28:03',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(1342,'2018-05-19 19:28:03',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1343,'2018-05-19 19:28:07',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(1344,'2018-05-19 19:28:08',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1345,'2018-05-19 19:28:15',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(1346,'2018-05-19 19:28:16',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1347,'2018-05-19 20:00:13',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(1348,'2018-05-19 20:00:14',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1349,'2018-05-19 20:00:41',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\O27423L5NIK4J41L16304HN50KKT\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=dob71261e3dfc92d9449d360108ce286fa. Review page_parameters and postdata for details.','info'),(1350,'2018-05-19 20:00:41',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\O27423L5NIK4J41L16304HN50KKT\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1351,'2018-05-19 20:00:42',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(1352,'2018-05-19 20:00:42',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1353,'2018-05-19 20:01:00',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1354,'2018-05-19 20:01:01',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1355,'2018-05-19 20:01:10',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(1356,'2018-05-19 20:01:10',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1357,'2018-05-19 20:01:25',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1358,'2018-05-19 20:01:25',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1359,'2018-05-19 20:01:38',1,'banner_manager.php','','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(1360,'2018-05-19 20:01:38',1,'banner_manager.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1361,'2018-05-19 20:11:35',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(1362,'2018-05-19 20:11:35',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1363,'2018-05-19 20:11:49',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(1364,'2018-05-19 20:11:50',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1365,'2018-05-19 20:12:01',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR\\LKU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(1366,'2018-05-19 20:12:01',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR\\LKU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1367,'2018-05-19 20:55:43',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(1368,'2018-05-19 20:55:44',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1369,'2018-05-19 20:56:02',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\7MLKL1N6N650NM040107IN3JN572HT\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do5afc9d3c3c5483ea8104074cf2ce720a. Review page_parameters and postdata for details.','info'),(1370,'2018-05-19 20:56:03',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\7MLKL1N6N650NM040107IN3JN572HT\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1371,'2018-05-19 20:56:03',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(1372,'2018-05-19 20:56:04',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1373,'2018-05-19 20:56:42',1,'banner_manager.php','','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(1374,'2018-05-19 20:56:42',1,'banner_manager.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1375,'2018-05-19 20:57:20',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1376,'2018-05-19 20:57:21',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1377,'2018-05-19 20:57:35',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1378,'2018-05-19 20:57:36',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1379,'2018-05-19 20:57:46',1,'configuration.php','gID=19&cID=426','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1380,'2018-05-19 20:57:47',1,'configuration.php','gID=19&cID=426','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1381,'2018-05-19 20:58:05',1,'configuration.php','gID=19&cID=434&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1382,'2018-05-19 20:58:05',1,'configuration.php','gID=19&cID=434&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1383,'2018-05-19 20:58:17',1,'configuration.php','gID=19&cID=434&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\rw\0j24#Fe%PR-\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(1384,'2018-05-19 20:58:18',1,'configuration.php','gID=19&cID=434&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\rw\0j24#Fe%PR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1385,'2018-05-19 20:58:18',1,'configuration.php','gID=19&cID=434&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\rw\0j24#Fe%PR-\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET_ALL: homepageslide','warning'),(1386,'2018-05-19 20:58:18',1,'configuration.php','gID=19&cID=434','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1387,'2018-05-19 20:58:18',1,'configuration.php','gID=19&cID=434','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1388,'2018-05-19 20:59:09',1,'configuration.php','gID=19&cID=434&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1389,'2018-05-19 20:59:09',1,'configuration.php','gID=19&cID=434&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1390,'2018-05-19 20:59:28',1,'configuration.php','gID=19&cID=434&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURrJ\\K-*v\\Q\Q*.M\\,	wrs\r\nw\rv\rw\0\01\"Fe%PR-\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(1391,'2018-05-19 20:59:28',1,'configuration.php','gID=19&cID=434&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURrJ\\K-*v\\Q\Q*.M\\,	wrs\r\nw\rv\rw\0\01\"Fe%PR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1392,'2018-05-19 20:59:28',1,'configuration.php','gID=19&cID=434&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURrJ\\K-*v\\Q\Q*.M\\,	wrs\r\nw\rv\rw\0\01\"Fe%PR-\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET_ALL: BannersAll','warning'),(1393,'2018-05-19 20:59:28',1,'configuration.php','gID=19&cID=434','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1394,'2018-05-19 20:59:29',1,'configuration.php','gID=19&cID=434','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1395,'2018-05-19 20:59:37',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1396,'2018-05-19 20:59:37',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1397,'2018-05-19 20:59:45',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\01%\\P\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(1398,'2018-05-19 20:59:45',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\01%\\P\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1399,'2018-05-19 20:59:45',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\01%\\P\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET1: homepageslide','warning'),(1400,'2018-05-19 20:59:46',1,'configuration.php','gID=19&cID=426','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1401,'2018-05-19 20:59:46',1,'configuration.php','gID=19&cID=426','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1402,'2018-05-19 21:00:23',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1403,'2018-05-19 21:00:23',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1404,'2018-05-19 21:00:30',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0* \\P\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(1405,'2018-05-19 21:00:30',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0* \\P\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1406,'2018-05-19 21:00:30',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0* \\P\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET1: ','warning'),(1407,'2018-05-19 21:00:30',1,'configuration.php','gID=19&cID=426','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1408,'2018-05-19 21:00:31',1,'configuration.php','gID=19&cID=426','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1409,'2018-05-19 21:00:36',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1410,'2018-05-19 21:00:36',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1411,'2018-05-19 21:00:42',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\01$\\B\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(1412,'2018-05-19 21:00:42',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\01$\\B\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1413,'2018-05-19 21:00:42',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\01$\\B\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET2: homepageslide','warning'),(1414,'2018-05-19 21:00:43',1,'configuration.php','gID=19&cID=427','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1415,'2018-05-19 21:00:43',1,'configuration.php','gID=19&cID=427','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1416,'2018-05-19 21:01:59',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1417,'2018-05-19 21:01:59',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1418,'2018-05-19 21:02:07',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*2 \\\\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(1419,'2018-05-19 21:02:08',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*2 \\\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1420,'2018-05-19 21:02:08',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*2 \\\\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET2: ','warning'),(1421,'2018-05-19 21:02:08',1,'configuration.php','gID=19&cID=427','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1422,'2018-05-19 21:02:09',1,'configuration.php','gID=19&cID=427','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1423,'2018-05-19 21:02:15',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1424,'2018-05-19 21:02:16',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1425,'2018-05-19 21:02:25',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0$\B\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(1426,'2018-05-19 21:02:25',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0$\B\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1427,'2018-05-19 21:02:25',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0$\B\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET3: homepageslide','warning'),(1428,'2018-05-19 21:02:26',1,'configuration.php','gID=19&cID=428','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1429,'2018-05-19 21:02:26',1,'configuration.php','gID=19&cID=428','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1430,'2018-05-20 13:02:42',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(1431,'2018-05-20 13:02:42',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1432,'2018-05-20 13:02:58',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJɷH4664KH1M20I1IT\\$c$%Ĕ\̼\\T\\TZ\0','Accessed page [login.php] with action=do8a3316c988d5b04d4eeee2e2fbcab32b. Review page_parameters and postdata for details.','info'),(1433,'2018-05-20 13:02:58',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJɷH4664KH1M20I1IT\\$c$%Ĕ\̼\\T\\TZ\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1434,'2018-05-20 13:02:58',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(1435,'2018-05-20 13:02:59',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1436,'2018-05-20 13:07:43',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(1437,'2018-05-20 13:07:44',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1438,'2018-05-20 13:10:45',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1439,'2018-05-20 13:10:45',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1440,'2018-05-20 13:10:53',1,'ezpages.php','page=1&ezID=12','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1441,'2018-05-20 13:10:53',1,'ezpages.php','page=1&ezID=12','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1442,'2018-05-20 13:10:58',1,'ezpages.php','page=1&ezID=12&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1443,'2018-05-20 13:10:59',1,'ezpages.php','page=1&ezID=12&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1444,'2018-05-20 13:11:28',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1445,'2018-05-20 13:11:28',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1446,'2018-05-20 13:11:44',1,'ezpages.php','page=1&ezID=10','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1447,'2018-05-20 13:11:44',1,'ezpages.php','ezID=10&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1448,'2018-05-20 13:11:44',1,'ezpages.php','page=1&ezID=10','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1449,'2018-05-20 13:11:44',1,'ezpages.php','ezID=10&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1450,'2018-05-20 13:11:55',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1451,'2018-05-20 13:11:56',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1452,'2018-05-20 13:12:05',1,'ezpages.php','page=1&ezID=11','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1453,'2018-05-20 13:12:05',1,'ezpages.php','page=1&ezID=12&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1454,'2018-05-20 13:12:06',1,'ezpages.php','page=1&ezID=12&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1455,'2018-05-20 13:12:06',1,'ezpages.php','page=1&ezID=11','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1456,'2018-05-20 13:12:19',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(1457,'2018-05-20 13:12:19',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1458,'2018-05-20 13:12:33',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1459,'2018-05-20 13:12:34',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1460,'2018-05-20 13:12:40',1,'ezpages.php','action=status_toc&current=1&ezID=7&page=1','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_toc. Review page_parameters and postdata for details.','info'),(1461,'2018-05-20 13:12:40',1,'ezpages.php','action=status_toc&current=1&ezID=7&page=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1462,'2018-05-20 13:12:40',1,'ezpages.php','action=status_toc&current=1&ezID=7&page=1','24.72.164.167',0,'',_binary '\0','EZ-Page ID 7 [status_toc] changed to 0','info'),(1463,'2018-05-20 13:12:40',1,'ezpages.php','page=1&ezID=7','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1464,'2018-05-20 13:12:41',1,'ezpages.php','page=1&ezID=7','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1465,'2018-05-20 13:12:43',1,'ezpages.php','page=1&ezID=7&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1466,'2018-05-20 13:12:43',1,'ezpages.php','page=1&ezID=7&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1467,'2018-05-20 13:15:18',1,'ezpages.php','page=1&action=update','24.72.164.167',0,'',_binary 'uA\n\0E\"Yԕ\\Ma\\\N4\"\ݩVCxv;q\\kKFJL\$\5pz\Z`}̓yūbl3z\\	M\"\̳}MGN/8Ylml\nrUa2skvt\xF]JI\Ej\r\nz\dn0`:I\\','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1468,'2018-05-20 13:15:19',1,'ezpages.php','page=1&action=update','24.72.164.167',1,'',_binary 'uA\n\0E\"Yԕ\\Ma\\\N4\"\ݩVCxv;q\\kKFJL\$\5pz\Z`}̓yūbl3z\\	M\"\̳}MGN/8Ylml\nrUa2skvt\xF]JI\Ej\r\nz\dn0`:I\\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1469,'2018-05-20 13:15:19',1,'ezpages.php','page=1&action=update','24.72.164.167',0,'',_binary 'uA\n\0E\"Yԕ\\Ma\\\N4\"\ݩVCxv;q\\kKFJL\$\5pz\Z`}̓yūbl3z\\	M\"\̳}MGN/8Ylml\nrUa2skvt\xF]JI\Ej\r\nz\dn0`:I\\','EZ-Page with ID 7 updated.','info'),(1470,'2018-05-20 13:15:19',1,'ezpages.php','page=1&ezID=7','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1471,'2018-05-20 13:15:19',1,'ezpages.php','page=1&ezID=7','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1472,'2018-05-20 13:15:26',1,'ezpages.php','page=1&ezID=6','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1473,'2018-05-20 13:15:26',1,'ezpages.php','ezID=6&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1474,'2018-05-20 13:15:26',1,'ezpages.php','page=1&ezID=6','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1475,'2018-05-20 13:15:26',1,'ezpages.php','ezID=6&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1476,'2018-05-20 13:16:03',1,'ezpages.php','ezID=6','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1477,'2018-05-20 13:16:03',1,'ezpages.php','ezID=6','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1478,'2018-05-20 13:16:07',1,'ezpages.php','ezID=13&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1479,'2018-05-20 13:16:08',1,'ezpages.php','ezID=13&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1480,'2018-05-20 13:18:40',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'X\o\6W?d)\\-!\8\hΐ\Y$)g\EٴM\\Kc\}ǏwT4PR|r=\[f8E\|\0)\7&~jNeCE*\&\0\\r\>\r*Sh\iE!\\E2T{\jӕ|\N\	\!\'_Hiv{ӽ\Ҭ\\L\SC_\rJoV,Z\n6Jr\nE!Umw:\%䆳ٜ\&OK\}&7@*Eʘ\z9]N7M\I&\\h)_Nf`\\\p/LE\gpMOJhN5qF~\\4	z\qc\\\\'wd\\uMf\@prwS1\"\T\ZcI\%\Z8\;f\e\'T\\pd\x\vG4\y^30\\2\P\0xnf \'4?h\rS8K2U{t\Hκ a\NNࡿ[Y\\rs\\lɭG-^yAEbo^l$f*Ѥ7(\NZH0vқmɣ节<٢z31U\;3\\'pn̯3_NA\\\\\")őc$O\n/Ȣ\l<\:\,y;\^rew9^Gyz\\.H\:-Yf=u\r\"?\a]庋51h?{\s8Ó\\)\'\O)(y\\\ĎLM\Z\,\'5\JO` ހ,$vn\q\$LTה4ő\U\\FF~o\\\I\\k!;\H\Z\\|PC\*z6|!X-\O;X}:z8]D\	{\^uA-ɃR\n\\\\Z4H\qs8\=(+5]1wu\ \0Z\'	3%X|]\8o[\\E{/W1\At\z9<+gzzo[\ryY%$\6\Wf\\y\'4Z\v\\"p;\\nA\?E\Z#{޺u6j\|H7\0\\'5\v-:\Qdé,sؒ\+ňO\0\Q\\g# \&r\!\8h\i\O42ڿ\{<(\\0뾇B.\g :ݑ*-\c\'R0|MaTE*\a\^CD48n\Vu_\\\"+','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1481,'2018-05-20 13:18:40',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary 'X\o\6W?d)\\-!\8\hΐ\Y$)g\EٴM\\Kc\}ǏwT4PR|r=\[f8E\|\0)\7&~jNeCE*\&\0\\r\>\r*Sh\iE!\\E2T{\jӕ|\N\	\!\'_Hiv{ӽ\Ҭ\\L\SC_\rJoV,Z\n6Jr\nE!Umw:\%䆳ٜ\&OK\}&7@*Eʘ\z9]N7M\I&\\h)_Nf`\\\p/LE\gpMOJhN5qF~\\4	z\qc\\\\'wd\\uMf\@prwS1\"\T\ZcI\%\Z8\;f\e\'T\\pd\x\vG4\y^30\\2\P\0xnf \'4?h\rS8K2U{t\Hκ a\NNࡿ[Y\\rs\\lɭG-^yAEbo^l$f*Ѥ7(\NZH0vқmɣ节<٢z31U\;3\\'pn̯3_NA\\\\\")őc$O\n/Ȣ\l<\:\,y;\^rew9^Gyz\\.H\:-Yf=u\r\"?\a]庋51h?{\s8Ó\\)\'\O)(y\\\ĎLM\Z\,\'5\JO` ހ,$vn\q\$LTה4ő\U\\FF~o\\\I\\k!;\H\Z\\|PC\*z6|!X-\O;X}:z8]D\	{\^uA-ɃR\n\\\\Z4H\qs8\=(+5]1wu\ \0Z\'	3%X|]\8o[\\E{/W1\At\z9<+gzzo[\ryY%$\6\Wf\\y\'4Z\v\\"p;\\nA\?E\Z#{޺u6j\|H7\0\\'5\v-:\Qdé,sؒ\+ňO\0\Q\\g# \&r\!\8h\i\O42ڿ\{<(\\0뾇B.\g :ݑ*-\c\'R0|MaTE*\a\^CD48n\Vu_\\\"+','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1482,'2018-05-20 13:18:40',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'X\o\6W?d)\\-!\8\hΐ\Y$)g\EٴM\\Kc\}ǏwT4PR|r=\[f8E\|\0)\7&~jNeCE*\&\0\\r\>\r*Sh\iE!\\E2T{\jӕ|\N\	\!\'_Hiv{ӽ\Ҭ\\L\SC_\rJoV,Z\n6Jr\nE!Umw:\%䆳ٜ\&OK\}&7@*Eʘ\z9]N7M\I&\\h)_Nf`\\\p/LE\gpMOJhN5qF~\\4	z\qc\\\\'wd\\uMf\@prwS1\"\T\ZcI\%\Z8\;f\e\'T\\pd\x\vG4\y^30\\2\P\0xnf \'4?h\rS8K2U{t\Hκ a\NNࡿ[Y\\rs\\lɭG-^yAEbo^l$f*Ѥ7(\NZH0vқmɣ节<٢z31U\;3\\'pn̯3_NA\\\\\")őc$O\n/Ȣ\l<\:\,y;\^rew9^Gyz\\.H\:-Yf=u\r\"?\a]庋51h?{\s8Ó\\)\'\O)(y\\\ĎLM\Z\,\'5\JO` ހ,$vn\q\$LTה4ő\U\\FF~o\\\I\\k!;\H\Z\\|PC\*z6|!X-\O;X}:z8]D\	{\^uA-ɃR\n\\\\Z4H\qs8\=(+5]1wu\ \0Z\'	3%X|]\8o[\\E{/W1\At\z9<+gzzo[\ryY%$\6\Wf\\y\'4Z\v\\"p;\\nA\?E\Z#{޺u6j\|H7\0\\'5\v-:\Qdé,sؒ\+ňO\0\Q\\g# \&r\!\8h\i\O42ڿ\{<(\\0뾇B.\g :ݑ*-\c\'R0|MaTE*\a\^CD48n\Vu_\\\"+','EZ-Page with ID 13 updated.','info'),(1483,'2018-05-20 13:18:40',1,'ezpages.php','ezID=13','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1484,'2018-05-20 13:18:41',1,'ezpages.php','ezID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1485,'2018-05-20 13:19:38',1,'ezpages.php','ezID=11&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1486,'2018-05-20 13:19:38',1,'ezpages.php','ezID=11&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1487,'2018-05-20 13:20:43',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\]YoI+~Y	hl%G>K3]0UI\\*NՋ\GFU̲=1bVfdd\gk}k\Y\&Fs5^\fꝹms\deQۿ,צXY\)?\unݴǥѩ\w\c]V\ǲ\\g\,53N\O\,7\ܔ\\d\M\>\hr舱lV\\|n\\\N%\\ó\&A\L~P}(\.\ZW\\*\\E\y><߼4>\]\\\\=:˪ҋF\Y\O\\\.KL\{]/\)8.x29\\G\v\MYtOr\\Ӈ\'_\\ۃC=R._x7{ys޽ˋwחzfo.d7o\?\\\׻Q\ L\\$\ȓ\FRU\\\wH\O\/:\Y5\\Sٛ\\a?W\J]j(\&V\!oYܼe\\\j]:U4jeG_\2:<-\VIgij\FiTSQp\\nd/Y\KBnpe>\\ߪaS\$aP:I\\\܀\LL\\"\WmK\',\!Ro\z%M\\nN\ꍹW25y\r\/I`nvu\\\0b4-.\VV\nF0S2;R\%F@\e\'T\\e4&#\M\p|I08ހ\+Y6\r1]Į/*]	|,̀h\xme\\w Re`\xvˠ+\7\XMMfD\T}x2=\\\\sӱ~ͬkgs	L\?\0{1#ˠr\\\ٻ}=<\gȍg{\ڛ\\7#>2hѮ\\ZsT\n{\.{Ew\Kʘ^\Vej9@r\n7\=,>K\#\v\"\\\\kS\\\*}\%%\@J\Z6#AƖ\2*\d\\ltIWuE[abaZ\ae\XѾ]?ڛp>G d[S\Vz$nAedGY\3 \D~\\\9qZ8F?ނi\(Y+h	\\\DǕN>}\ *fֹ~OIǭJA3R̄\4:ˍ\\H	\\n\\\vxL\I\70~d8\Qf2..o\]\˷o\\G5;xz\׽\\ϗ/&\\lt\\\\\\\p\\\_\L*y\R\\N\\}\ߡL{sO7s\Xd_\<h\Re5B|uS\\1AAkx87\sV\QF酀\\j[\I\Ңn\\sʊ\$BW~/\U\뚭Sg]7x˶\vOtY\rǟ6,bru\\Z$4\@H\<o=M\LQLf!|*\SF\wpX-\ž͟2iC?Dt\0J\rCN\Z!]\ZAgP\x\K$x2D5j+i\0}6\0S\6nW8	y\r\'0\XW_5+ic\n\w~\\\^\-|	\\|\e5Rqo\\p)\0gq\rjEm9g=\9Uif\n$\ܭ{׶Af2X8d\0\\G#u싯\0\U\0\k\\\#\\\rS\(8Im\\A\7I<\Ȓn\m6nm\\\\"]Am\p\03TDx\\"\\Ȉ+v\'\'\\X]3\ʝ>K\Z|\\B=\r\\^(\>o..}\\Ż\+P3Djv\rBx}3{s1{w^}\.n\8!|\V\6]&(\\\\\\FRgjﾣS\5\\Iд\iam6cߛz.Ձz	H\\nmA\-Dm9w1\Rq~\\G\xe@g\}Y}]\0=\\\r\βD\\C1Ay\p\)4\\H^\@i\\rQ*]mKnMh\Kz^eI\62jXԬ@!2Tw>rڠf\& 1\"\Z0\{\"hl*ѯNY:\QĻ 6}j8AlG=Ȇ-\\"d}h8]\o\Z\V\}61Ji\5o4}y	Zжc2g\\\Qf\\0\\X\;,	_e\^>\lW j*4=|N,\ﴝ\\\M\{5l{&^N\\6v.Z?`IgMm6\0@	}D\֩I>\\5]<Bvz͐\\\ع\l>x\|\]&G\C;``(&y\;1K^Vt8:m\r\Z\G6\\\55{l\\rP`dQ2][\\w佮ր́!˶\0s\	\ο~\_\n;\n\^f)\DSسD\=\;]\1;;d]1 \=U\ZP\\TĊ~g\n\CN6yrC^\J\yן\ph\'5\쐼	\\܂ޮ\K`s\;>AwL\\SJn\9 ̝gw觯13\ahSL#Dln,\e؎ˊEՅ%\\ރX||/F\o\\'\\@:Yk-hЛȨP\cqYֳ3O\zDex\tM\[R\)\SǓ\Q0ɠlκ\\n{u@tt̴NOƋU	%[2,{dا@\K\\ZgύSj\P\-\B\`(.ٖ\/\{\H|e\|5@N\"\\9ܐGOHxJܝ\Ncccn9a\n\p_@j\\P\Q\Z\\u2\u{H2:jr\K\\?\<\\-Bh\gg)nL,>v\y!:.\\VMO\\!xTp-1?\y8|\rđs\\s\XѸ\\\2μ2\z0\Q޼A\"w\1T_)y8V~\\\"ϼ\rE\jܑI0\|\0Ư>Q6\v\ɰF.ʵ\N}2]AbFӁ\	\\ͰH(\~[\"\K];	O10[Xz\L*zG\GWB:\r\TPD\>Wf;lD\qݰE\Ĉjyq\`V瓆KljVd\ikR:3M|B\af\]\'SLA\f\t\0\k}c\'FKDL\\si\n^c*\\*\0Lo\\\\)ʪ^b<}\QŞw(%Dh_}lLUrվ_ŤQ\\b5<KN\OO|z	}\G\\L{\r\'\\ɳ)A9]pbo@]*N?0Lr\\t\7\\Ƨ(_\QfpVcSޝҩvU\\^.\@\Ij<y\4\\v\HC\2Nb\	\\/ FuVO,m\5\\"\c\3O\\GUم;y9\n喽\\qS\z\\9,<3\i<FEgs\\qAFAoǺ\\\0?\"Ƃq\d\\H>yjݵ\;ZM]n׿La\nxwPÍ;q)\\]\w\Wz#:YeД\-\0H\&mK?d\}7h6ԙ$rHP8\'\"zp\6)]\M$\F?\0a\\jUr)3k\\1\'%(d\[ag3y\g$\4o\]$0vn\}\Zl>LaI,6\9\\Zp9\۞\\D`dIq\"<O#h8\\'g؈L#>O-RP\\v\\`\{\\䩺\\\\fwf9z\\b\\:;u竫\nvɿz\ݱ\.\k\\\\i^_^$)\=OM\{R:cINBC-\Y_\_\\7hP\r\\NEX8&Q6\J03*]VJE\I<ƸG\.EN\S\w\\[MG>>h\\\\\9Ҭs`\%i|v\\"\nb\\'a7\_k\N\p-b@QL\X`{_\\W<7\\#\^\̻Bs\\\*\M$$o\\S\\\[́rbP92EA-\M\E_B\0 <xi1Vʮ@\5\0mn\=\*5ZPb\\9Xɝ2+\8D\bǴ\	U,+\8`\؝3Fj\V(됸q\nڹ\K\\2<fD5MݶU\5z\\c-u\\\\mr\9Wv1\{OmɐEb-\0؂\w\"D\Q\\4Sε%:O\\#IirL2\&hJO\	V\\A\\\A)\\&-\u@\Ӄy*_X&Q\Òbl7E(4Ar>\\\%.\9zRa&\"/K<G7\\'\\1\~E\0gV\Đ`a[vk9#\@g_T\\K\(YDyL^\tE/~4F\\R[dP\ \2dne\\m(\\\֡\ \U fd\Z\.щw7\!d\\NEd\k+b7a?\c}\n`\\|sDCٝL\\?aUUi\v\R\@{\qD\3f]\;\V#}\\{ti+ \Z>X\\r \\/RPb\88<\C\e\79\.\O~Pu\"\tU\\\O.\\6\߳@.20R\T`@\6\'U^ X\j	XF\&wgfMhM&)3LNAuHbd?,a!d\|\G\v	Gϓ\b\h\먪\h6S{\\\#=9{:>:\\Ȑgt={|z\u}tH\S]{>b\\`\\.wbx&)|4bLh#K\z\$\\rr\'Fi\5\l\n\(\Y(`\zcԁ\gϡȊr \zt薔J(xܝ7O82M)Rq\\ƣs\K\Ѝ\\Q8ʧu\rB|wق\WYV\0\~si(\Ы}=-zb\\0\#\Nɀ(Di/MhMA\w\n{V\;-/\?bòd\oH6:\\\qQ*J<p^\gZ9\T\%\Y\BPɀ-mX[\\Z@h׿AAGUR%C\q \X&O}֍F!?V.\.:&)\\%©7~۸&\LXpSls\a\y\\K\B)Βlk\5U!\\_~e2*,T\7	J\"\j\rx,\p\w`\'#W7c \\\r%\"Ve8\n\]\\~(\gڄ\rT\Y\X\N\ {x&Nl\\p&ŏ\AV OK8TGA>+b\0P\'v\ʍ\bĦj.`4\eƖ_\__\"\2FJFYZ\d\\\M\\\gcʡ3)00\gFZآ\(3=ԜƷ;U^4ՃG\k\u=\\>U³&[:p=\mf/1즘EvX8c:;\[θ\u_:\`\֘\p\\\Ȫ]Q$\"i4)~r(!I9q;d\\\ҼPB\\`;2B\2!6AmDJ]=X\\|2E`>D0+7mL9Z;]\γ\8k-\ѝۿ)\ƺTC^VRl]([)\l>8<\9LPS$YE\e\vu`\\t\\Z\\Yg @	\k\&\Ԟ	\Zi\@!|ʉ)\\!LĜq\\8cc\{\.[\n7(p}(Lޜ*IBQ|\NN\yM^\JX\Nwc\ZiH\6\\EdHwwt\\14\j߿	MWH:O\9g0w#\\)`1.01@	B60М,Kvpq[-M\ &SVY{|<0\74\A\&l_О\S8er\\0\ x\t3h\r\\:q03K\N\e[,\0&ݜogQp걓\tp\"<\czq*L4\rBwv5&	\0}^BDҜ(G6\\\\i\,jne:҅avט\`<%j4sXu[\\\CT\\ [\Eaz\ \\\\Z[w\!.F\|\\w+\\r\,zN{\>=\\Ơmr\E;t\;\2y%\g\ˑpAh\\L$N\\'smt\\2JI\t\\fSB\x\5gI\K\z\\nDE\Z\:ot*\#(;A\d=^\ĂUTu?Aӕ\0P&E#:h\)\\\xƖ5.@7`v>I\eICڂV,d\\!\ŠqR֣c\Z;#8tzS\A\Z\\r^J޻6 \r\\}\\d\:F \"ŗaB\\\\|HQsWQR\'o\n3\\ cnXtX~rq¹K\4alep\\W\\!T!\{ƣZMa-Ǉd\A+\	\Z>\U\aEi@i8\\֫\\;OJKhR!Yb\\lRƽ϶쩱]0UҲ\\$\9+7jA\#lJ%}\\l\,Rҟ\.B;EX\"\[w`\`1|r\\]\\\r\˘TlM`\\Ĝhi`6^1yػ]R,I\r\\\F`&ψ\}]$3]c\\[V\BmI\\Hi%ڹ`DDp\\\r57M+P\lM+Cϕ\#wm*lsI\\p0Yfc/UR۲md^\HqB	2\6l\z7\qV\e]\4X\\r:\\ώ`\6*q\\\'=BNM\'aU\ȖժH(go\\\0W\W6\\\\\]m_ISW\v i\\n\\\\n\0\\0rH!\2%\àK8*\HHFN&m\ߦUƚp0BC\'nrF_Q3\j0jK_#\or$\'	`Iñ\+`\oust!_\\ruZ&HX#ӖGBlo\􁗊1ÊN\Q\|\\*z}v~5\g\\\\V\'^\\\ةgI\ 4Z\"b,\0\Y\Sr7\\6\\aA\\?j/}pSe\\\ڂH%	\D._0\rW$ZT\H\\\P\"\p{^\"N)-\'z\=z{\nw}k\;-\ZY\\\\\\ܐy\X\\!\\l\Nvϸu3y61oڣ^ dGS\\TL\<2\T^pnD`/m-Țfu\)\9@[\#j[-?mrzR-ZR@մ\\ʭycjȭ\:V\\w\/\Zsrjڪt\0\\61y\ů\\~l\n\ijÜc\\9l\ Km*\\gX\R^@;~\nj\ZkI\"[>N#y\/:\;\59\ XrPk#7۶PVr\1\A#\LZ\\I\g\մ{\\	Sû,F\$U8\C\\ \'t2H7/\\׫2\\AI#Eƃ\l^d{0\\<S%&;5\at\)\"#,\v`Y27q玡^AQ\!1{c2EyEX8n\f8Vf{Y\Z\\y\A`\X\\0?hzIxJ\A4\WdݐH_c\E\5\r$`\\\C|G]b~\-\\ݚ\Y{f#kl2F\\\	\\]([\ܦ\(\\PT\Sx^(d\\\w6U\:/l\'\K\@\B00\\nm/Ucs]<\'bA\!\"R\0:,\OԇL557\P\"[j`?\l\$pi9\d=Ѱ!\\uIr9\\\my\9=\(a	 L\\C\I\&|\\\ƿ9\Gz]\\\Kb\\g\\'\&xI9\\\\	F\\a*\\Ǩ+\\\\\\\\\uG?C8\`m\\)l \r(H닐\ab[0\%X\G\þf\n\n7_8\G/\qw88\E.jms7=xF\wM\Z\|\\\#9|\N`:{\\y\\	\'Dâ;+~Z\ ~\m-_#\[4`\\\\[\Ñs\\\.\\73=\]w9+\c\tEX\<y\n@g;M\n\'k/q\\v\[5\ZN\{{\6\$a?d\lc\lp/n\"~N\*\\֑{A\?\^\$ǽ%l\w\)fg	2\:\\x`\y~v#㾩\\\+_\V\9\`;a&_\8x	=*m	V\Ҙ\\A̾_Oҷz\ۛ\aw\^k,\\rA\p.hj\'*(\;(\S\\4\K\l\ivTѭ\r\<\I\^[n꼡\a\[-\\7p<UH\4}L,9\\wcY閦Mn)\r<\L{,Ejvb_\ֵϬ2,W.\\I\	}\˂ㄷh\qB:=RT\'\hG`ݕf\&LtW/ GQR.vA*L\Y\;\B<ϩ\\넯i\1\T6еv\ڦrp[%\Z$kk:L\Wc0FN\Q]y\TqKp\ށ\掠1Է\\#°ۧ\6\n&\Uܷ\UASP5K\e_\1؏{%-1ޙv?SA\\Z==J1\\R\c\n\o&-\\\\l}gm o\\\\\`T㯰\ԃ)\\\\\\RvW?\:a莵\\h \p\\\O❊цSiɄ=\D!f\\z蹽 \'\\*\\"\h	\T\r\e\$\.\؄^΀i@E\`[\`,L˯߅Oi2\J\Zw\"\|IA̇w\'\ Q*\Ky\bo}\\f\:\r2 ̀K/(c\\w\\\#~\|(\\˥K\\\"WF\r|\0ro륀h\\r{%\"~-]\~r\zy!l\r\y\,\\\\})\^`\se7M\NHᛟ\\\\\I8\b\\Tk\\rD,^7g\t_\m\\\mM7]CVF攎\[˦\6m.B£]Ix\A<F\ʶԡw\\nᢡ;|g!\0\"9h\	t\!Ԕqꠠe\k8(-;\\\\qj\\=}\{]\OVL8\QnS+0\\eFIF\ynX&&\\nCn\>\%\۸Lj@\\«J\j\\!\Y+0\'S\k\߭f\ҧRr^\r\o^\!ۧ\pW`\yV4({\+\n\/;l\~y+	}\\\\'\\G_ӈxL\e\_Lȸ٠\9vyܣU+2\&r/容\\<؋a(\e\l<e\0sټ\\}\"\"VQZqm|ip]M]oD7\\ܦ2\Ӆ]\6\&\`\!-\n`\uG\;@	o@:${\w*`\\\ཙR5c~\Ul;\\,qR>[`M\*$\\}B\tA.t\\Ԍ\wX\tF\]tQ\-@\\v ??rf\Y}Fl޲T\r\\pB?n\hn~ߨ\M\VE\\Ҹn\\0\')\\&|9\.\I\\\\脺ٺ5O\r\XƢ͆+JA,\\`\'&\\v\TzN\0\.S\kVs\㮰grpvpUmGGeG\D\.s3\\\{\\0\ibK}d\M\V\-\(Mt\\0I\\3\ \Ik2d[\6*@\>BB\9XnWGUvQf=jJ/\ޚsS\ʤo1j(74\9\B\uo\ە1,Ӱ\\u\qsD\\\7n\"ѭ\Rq\6G$\Т=d}{wea.:\\AJ\xQcW2zpn\\\u\0kܸ>5SK*Z\jZ\ƲtIs\ f+nG\^652ݹ~rӬ4l\\b2\r\\\6\v-m+=9r\\#B\\"!RۅSRk;\\5u\0@\7\qk,p>k5o$\ӽ\0\u\rt\'\zL\ݔ(\qG<BZ\p<\F2T\Q\ \\\-	msXG\>o\زA\'\\*Y\Ѭ\\ZʹM\IW\^$+H(0\m\mm\w\3ܭvM@\zC\ZD΢y\9\\4:8RIb۞/\\x2llpCP7\"~>\ac\'+؂~%\?1\\\͵@E&u\0\D201_|s\Ѧ\Ѵ2\)tg\[<kT!d\0\\#,!&\9$\\~aΛm\#{]\_','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1488,'2018-05-20 13:20:43',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary '\]YoI+~Y	hl%G>K3]0UI\\*NՋ\GFU̲=1bVfdd\gk}k\Y\&Fs5^\fꝹms\deQۿ,צXY\)?\unݴǥѩ\w\c]V\ǲ\\g\,53N\O\,7\ܔ\\d\M\>\hr舱lV\\|n\\\N%\\ó\&A\L~P}(\.\ZW\\*\\E\y><߼4>\]\\\\=:˪ҋF\Y\O\\\.KL\{]/\)8.x29\\G\v\MYtOr\\Ӈ\'_\\ۃC=R._x7{ys޽ˋwחzfo.d7o\?\\\׻Q\ L\\$\ȓ\FRU\\\wH\O\/:\Y5\\Sٛ\\a?W\J]j(\&V\!oYܼe\\\j]:U4jeG_\2:<-\VIgij\FiTSQp\\nd/Y\KBnpe>\\ߪaS\$aP:I\\\܀\LL\\"\WmK\',\!Ro\z%M\\nN\ꍹW25y\r\/I`nvu\\\0b4-.\VV\nF0S2;R\%F@\e\'T\\e4&#\M\p|I08ހ\+Y6\r1]Į/*]	|,̀h\xme\\w Re`\xvˠ+\7\XMMfD\T}x2=\\\\sӱ~ͬkgs	L\?\0{1#ˠr\\\ٻ}=<\gȍg{\ڛ\\7#>2hѮ\\ZsT\n{\.{Ew\Kʘ^\Vej9@r\n7\=,>K\#\v\"\\\\kS\\\*}\%%\@J\Z6#AƖ\2*\d\\ltIWuE[abaZ\ae\XѾ]?ڛp>G d[S\Vz$nAedGY\3 \D~\\\9qZ8F?ނi\(Y+h	\\\DǕN>}\ *fֹ~OIǭJA3R̄\4:ˍ\\H	\\n\\\vxL\I\70~d8\Qf2..o\]\˷o\\G5;xz\׽\\ϗ/&\\lt\\\\\\\p\\\_\L*y\R\\N\\}\ߡL{sO7s\Xd_\<h\Re5B|uS\\1AAkx87\sV\QF酀\\j[\I\Ңn\\sʊ\$BW~/\U\뚭Sg]7x˶\vOtY\rǟ6,bru\\Z$4\@H\<o=M\LQLf!|*\SF\wpX-\ž͟2iC?Dt\0J\rCN\Z!]\ZAgP\x\K$x2D5j+i\0}6\0S\6nW8	y\r\'0\XW_5+ic\n\w~\\\^\-|	\\|\e5Rqo\\p)\0gq\rjEm9g=\9Uif\n$\ܭ{׶Af2X8d\0\\G#u싯\0\U\0\k\\\#\\\rS\(8Im\\A\7I<\Ȓn\m6nm\\\\"]Am\p\03TDx\\"\\Ȉ+v\'\'\\X]3\ʝ>K\Z|\\B=\r\\^(\>o..}\\Ż\+P3Djv\rBx}3{s1{w^}\.n\8!|\V\6]&(\\\\\\FRgjﾣS\5\\Iд\iam6cߛz.Ձz	H\\nmA\-Dm9w1\Rq~\\G\xe@g\}Y}]\0=\\\r\βD\\C1Ay\p\)4\\H^\@i\\rQ*]mKnMh\Kz^eI\62jXԬ@!2Tw>rڠf\& 1\"\Z0\{\"hl*ѯNY:\QĻ 6}j8AlG=Ȇ-\\"d}h8]\o\Z\V\}61Ji\5o4}y	Zжc2g\\\Qf\\0\\X\;,	_e\^>\lW j*4=|N,\ﴝ\\\M\{5l{&^N\\6v.Z?`IgMm6\0@	}D\֩I>\\5]<Bvz͐\\\ع\l>x\|\]&G\C;``(&y\;1K^Vt8:m\r\Z\G6\\\55{l\\rP`dQ2][\\w佮ր́!˶\0s\	\ο~\_\n;\n\^f)\DSسD\=\;]\1;;d]1 \=U\ZP\\TĊ~g\n\CN6yrC^\J\yן\ph\'5\쐼	\\܂ޮ\K`s\;>AwL\\SJn\9 ̝gw觯13\ahSL#Dln,\e؎ˊEՅ%\\ރX||/F\o\\'\\@:Yk-hЛȨP\cqYֳ3O\zDex\tM\[R\)\SǓ\Q0ɠlκ\\n{u@tt̴NOƋU	%[2,{dا@\K\\ZgύSj\P\-\B\`(.ٖ\/\{\H|e\|5@N\"\\9ܐGOHxJܝ\Ncccn9a\n\p_@j\\P\Q\Z\\u2\u{H2:jr\K\\?\<\\-Bh\gg)nL,>v\y!:.\\VMO\\!xTp-1?\y8|\rđs\\s\XѸ\\\2μ2\z0\Q޼A\"w\1T_)y8V~\\\"ϼ\rE\jܑI0\|\0Ư>Q6\v\ɰF.ʵ\N}2]AbFӁ\	\\ͰH(\~[\"\K];	O10[Xz\L*zG\GWB:\r\TPD\>Wf;lD\qݰE\Ĉjyq\`V瓆KljVd\ikR:3M|B\af\]\'SLA\f\t\0\k}c\'FKDL\\si\n^c*\\*\0Lo\\\\)ʪ^b<}\QŞw(%Dh_}lLUrվ_ŤQ\\b5<KN\OO|z	}\G\\L{\r\'\\ɳ)A9]pbo@]*N?0Lr\\t\7\\Ƨ(_\QfpVcSޝҩvU\\^.\@\Ij<y\4\\v\HC\2Nb\	\\/ FuVO,m\5\\"\c\3O\\GUم;y9\n喽\\qS\z\\9,<3\i<FEgs\\qAFAoǺ\\\0?\"Ƃq\d\\H>yjݵ\;ZM]n׿La\nxwPÍ;q)\\]\w\Wz#:YeД\-\0H\&mK?d\}7h6ԙ$rHP8\'\"zp\6)]\M$\F?\0a\\jUr)3k\\1\'%(d\[ag3y\g$\4o\]$0vn\}\Zl>LaI,6\9\\Zp9\۞\\D`dIq\"<O#h8\\'g؈L#>O-RP\\v\\`\{\\䩺\\\\fwf9z\\b\\:;u竫\nvɿz\ݱ\.\k\\\\i^_^$)\=OM\{R:cINBC-\Y_\_\\7hP\r\\NEX8&Q6\J03*]VJE\I<ƸG\.EN\S\w\\[MG>>h\\\\\9Ҭs`\%i|v\\"\nb\\'a7\_k\N\p-b@QL\X`{_\\W<7\\#\^\̻Bs\\\*\M$$o\\S\\\[́rbP92EA-\M\E_B\0 <xi1Vʮ@\5\0mn\=\*5ZPb\\9Xɝ2+\8D\bǴ\	U,+\8`\؝3Fj\V(됸q\nڹ\K\\2<fD5MݶU\5z\\c-u\\\\mr\9Wv1\{OmɐEb-\0؂\w\"D\Q\\4Sε%:O\\#IirL2\&hJO\	V\\A\\\A)\\&-\u@\Ӄy*_X&Q\Òbl7E(4Ar>\\\%.\9zRa&\"/K<G7\\'\\1\~E\0gV\Đ`a[vk9#\@g_T\\K\(YDyL^\tE/~4F\\R[dP\ \2dne\\m(\\\֡\ \U fd\Z\.щw7\!d\\NEd\k+b7a?\c}\n`\\|sDCٝL\\?aUUi\v\R\@{\qD\3f]\;\V#}\\{ti+ \Z>X\\r \\/RPb\88<\C\e\79\.\O~Pu\"\tU\\\O.\\6\߳@.20R\T`@\6\'U^ X\j	XF\&wgfMhM&)3LNAuHbd?,a!d\|\G\v	Gϓ\b\h\먪\h6S{\\\#=9{:>:\\Ȑgt={|z\u}tH\S]{>b\\`\\.wbx&)|4bLh#K\z\$\\rr\'Fi\5\l\n\(\Y(`\zcԁ\gϡȊr \zt薔J(xܝ7O82M)Rq\\ƣs\K\Ѝ\\Q8ʧu\rB|wق\WYV\0\~si(\Ы}=-zb\\0\#\Nɀ(Di/MhMA\w\n{V\;-/\?bòd\oH6:\\\qQ*J<p^\gZ9\T\%\Y\BPɀ-mX[\\Z@h׿AAGUR%C\q \X&O}֍F!?V.\.:&)\\%©7~۸&\LXpSls\a\y\\K\B)Βlk\5U!\\_~e2*,T\7	J\"\j\rx,\p\w`\'#W7c \\\r%\"Ve8\n\]\\~(\gڄ\rT\Y\X\N\ {x&Nl\\p&ŏ\AV OK8TGA>+b\0P\'v\ʍ\bĦj.`4\eƖ_\__\"\2FJFYZ\d\\\M\\\gcʡ3)00\gFZآ\(3=ԜƷ;U^4ՃG\k\u=\\>U³&[:p=\mf/1즘EvX8c:;\[θ\u_:\`\֘\p\\\Ȫ]Q$\"i4)~r(!I9q;d\\\ҼPB\\`;2B\2!6AmDJ]=X\\|2E`>D0+7mL9Z;]\γ\8k-\ѝۿ)\ƺTC^VRl]([)\l>8<\9LPS$YE\e\vu`\\t\\Z\\Yg @	\k\&\Ԟ	\Zi\@!|ʉ)\\!LĜq\\8cc\{\.[\n7(p}(Lޜ*IBQ|\NN\yM^\JX\Nwc\ZiH\6\\EdHwwt\\14\j߿	MWH:O\9g0w#\\)`1.01@	B60М,Kvpq[-M\ &SVY{|<0\74\A\&l_О\S8er\\0\ x\t3h\r\\:q03K\N\e[,\0&ݜogQp걓\tp\"<\czq*L4\rBwv5&	\0}^BDҜ(G6\\\\i\,jne:҅avט\`<%j4sXu[\\\CT\\ [\Eaz\ \\\\Z[w\!.F\|\\w+\\r\,zN{\>=\\Ơmr\E;t\;\2y%\g\ˑpAh\\L$N\\'smt\\2JI\t\\fSB\x\5gI\K\z\\nDE\Z\:ot*\#(;A\d=^\ĂUTu?Aӕ\0P&E#:h\)\\\xƖ5.@7`v>I\eICڂV,d\\!\ŠqR֣c\Z;#8tzS\A\Z\\r^J޻6 \r\\}\\d\:F \"ŗaB\\\\|HQsWQR\'o\n3\\ cnXtX~rq¹K\4alep\\W\\!T!\{ƣZMa-Ǉd\A+\	\Z>\U\aEi@i8\\֫\\;OJKhR!Yb\\lRƽ϶쩱]0UҲ\\$\9+7jA\#lJ%}\\l\,Rҟ\.B;EX\"\[w`\`1|r\\]\\\r\˘TlM`\\Ĝhi`6^1yػ]R,I\r\\\F`&ψ\}]$3]c\\[V\BmI\\Hi%ڹ`DDp\\\r57M+P\lM+Cϕ\#wm*lsI\\p0Yfc/UR۲md^\HqB	2\6l\z7\qV\e]\4X\\r:\\ώ`\6*q\\\'=BNM\'aU\ȖժH(go\\\0W\W6\\\\\]m_ISW\v i\\n\\\\n\0\\0rH!\2%\àK8*\HHFN&m\ߦUƚp0BC\'nrF_Q3\j0jK_#\or$\'	`Iñ\+`\oust!_\\ruZ&HX#ӖGBlo\􁗊1ÊN\Q\|\\*z}v~5\g\\\\V\'^\\\ةgI\ 4Z\"b,\0\Y\Sr7\\6\\aA\\?j/}pSe\\\ڂH%	\D._0\rW$ZT\H\\\P\"\p{^\"N)-\'z\=z{\nw}k\;-\ZY\\\\\\ܐy\X\\!\\l\Nvϸu3y61oڣ^ dGS\\TL\<2\T^pnD`/m-Țfu\)\9@[\#j[-?mrzR-ZR@մ\\ʭycjȭ\:V\\w\/\Zsrjڪt\0\\61y\ů\\~l\n\ijÜc\\9l\ Km*\\gX\R^@;~\nj\ZkI\"[>N#y\/:\;\59\ XrPk#7۶PVr\1\A#\LZ\\I\g\մ{\\	Sû,F\$U8\C\\ \'t2H7/\\׫2\\AI#Eƃ\l^d{0\\<S%&;5\at\)\"#,\v`Y27q玡^AQ\!1{c2EyEX8n\f8Vf{Y\Z\\y\A`\X\\0?hzIxJ\A4\WdݐH_c\E\5\r$`\\\C|G]b~\-\\ݚ\Y{f#kl2F\\\	\\]([\ܦ\(\\PT\Sx^(d\\\w6U\:/l\'\K\@\B00\\nm/Ucs]<\'bA\!\"R\0:,\OԇL557\P\"[j`?\l\$pi9\d=Ѱ!\\uIr9\\\my\9=\(a	 L\\C\I\&|\\\ƿ9\Gz]\\\Kb\\g\\'\&xI9\\\\	F\\a*\\Ǩ+\\\\\\\\\uG?C8\`m\\)l \r(H닐\ab[0\%X\G\þf\n\n7_8\G/\qw88\E.jms7=xF\wM\Z\|\\\#9|\N`:{\\y\\	\'Dâ;+~Z\ ~\m-_#\[4`\\\\[\Ñs\\\.\\73=\]w9+\c\tEX\<y\n@g;M\n\'k/q\\v\[5\ZN\{{\6\$a?d\lc\lp/n\"~N\*\\֑{A\?\^\$ǽ%l\w\)fg	2\:\\x`\y~v#㾩\\\+_\V\9\`;a&_\8x	=*m	V\Ҙ\\A̾_Oҷz\ۛ\aw\^k,\\rA\p.hj\'*(\;(\S\\4\K\l\ivTѭ\r\<\I\^[n꼡\a\[-\\7p<UH\4}L,9\\wcY閦Mn)\r<\L{,Ejvb_\ֵϬ2,W.\\I\	}\˂ㄷh\qB:=RT\'\hG`ݕf\&LtW/ GQR.vA*L\Y\;\B<ϩ\\넯i\1\T6еv\ڦrp[%\Z$kk:L\Wc0FN\Q]y\TqKp\ށ\掠1Է\\#°ۧ\6\n&\Uܷ\UASP5K\e_\1؏{%-1ޙv?SA\\Z==J1\\R\c\n\o&-\\\\l}gm o\\\\\`T㯰\ԃ)\\\\\\RvW?\:a莵\\h \p\\\O❊цSiɄ=\D!f\\z蹽 \'\\*\\"\h	\T\r\e\$\.\؄^΀i@E\`[\`,L˯߅Oi2\J\Zw\"\|IA̇w\'\ Q*\Ky\bo}\\f\:\r2 ̀K/(c\\w\\\#~\|(\\˥K\\\"WF\r|\0ro륀h\\r{%\"~-]\~r\zy!l\r\y\,\\\\})\^`\se7M\NHᛟ\\\\\I8\b\\Tk\\rD,^7g\t_\m\\\mM7]CVF攎\[˦\6m.B£]Ix\A<F\ʶԡw\\nᢡ;|g!\0\"9h\	t\!Ԕqꠠe\k8(-;\\\\qj\\=}\{]\OVL8\QnS+0\\eFIF\ynX&&\\nCn\>\%\۸Lj@\\«J\j\\!\Y+0\'S\k\߭f\ҧRr^\r\o^\!ۧ\pW`\yV4({\+\n\/;l\~y+	}\\\\'\\G_ӈxL\e\_Lȸ٠\9vyܣU+2\&r/容\\<؋a(\e\l<e\0sټ\\}\"\"VQZqm|ip]M]oD7\\ܦ2\Ӆ]\6\&\`\!-\n`\uG\;@	o@:${\w*`\\\ཙR5c~\Ul;\\,qR>[`M\*$\\}B\tA.t\\Ԍ\wX\tF\]tQ\-@\\v ??rf\Y}Fl޲T\r\\pB?n\hn~ߨ\M\VE\\Ҹn\\0\')\\&|9\.\I\\\\脺ٺ5O\r\XƢ͆+JA,\\`\'&\\v\TzN\0\.S\kVs\㮰grpvpUmGGeG\D\.s3\\\{\\0\ibK}d\M\V\-\(Mt\\0I\\3\ \Ik2d[\6*@\>BB\9XnWGUvQf=jJ/\ޚsS\ʤo1j(74\9\B\uo\ە1,Ӱ\\u\qsD\\\7n\"ѭ\Rq\6G$\Т=d}{wea.:\\AJ\xQcW2zpn\\\u\0kܸ>5SK*Z\jZ\ƲtIs\ f+nG\^652ݹ~rӬ4l\\b2\r\\\6\v-m+=9r\\#B\\"!RۅSRk;\\5u\0@\7\qk,p>k5o$\ӽ\0\u\rt\'\zL\ݔ(\qG<BZ\p<\F2T\Q\ \\\-	msXG\>o\زA\'\\*Y\Ѭ\\ZʹM\IW\^$+H(0\m\mm\w\3ܭvM@\zC\ZD΢y\9\\4:8RIb۞/\\x2llpCP7\"~>\ac\'+؂~%\?1\\\͵@E&u\0\D201_|s\Ѧ\Ѵ2\)tg\[<kT!d\0\\#,!&\9$\\~aΛm\#{]\_','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1489,'2018-05-20 13:20:43',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\]YoI+~Y	hl%G>K3]0UI\\*NՋ\GFU̲=1bVfdd\gk}k\Y\&Fs5^\fꝹms\deQۿ,צXY\)?\unݴǥѩ\w\c]V\ǲ\\g\,53N\O\,7\ܔ\\d\M\>\hr舱lV\\|n\\\N%\\ó\&A\L~P}(\.\ZW\\*\\E\y><߼4>\]\\\\=:˪ҋF\Y\O\\\.KL\{]/\)8.x29\\G\v\MYtOr\\Ӈ\'_\\ۃC=R._x7{ys޽ˋwחzfo.d7o\?\\\׻Q\ L\\$\ȓ\FRU\\\wH\O\/:\Y5\\Sٛ\\a?W\J]j(\&V\!oYܼe\\\j]:U4jeG_\2:<-\VIgij\FiTSQp\\nd/Y\KBnpe>\\ߪaS\$aP:I\\\܀\LL\\"\WmK\',\!Ro\z%M\\nN\ꍹW25y\r\/I`nvu\\\0b4-.\VV\nF0S2;R\%F@\e\'T\\e4&#\M\p|I08ހ\+Y6\r1]Į/*]	|,̀h\xme\\w Re`\xvˠ+\7\XMMfD\T}x2=\\\\sӱ~ͬkgs	L\?\0{1#ˠr\\\ٻ}=<\gȍg{\ڛ\\7#>2hѮ\\ZsT\n{\.{Ew\Kʘ^\Vej9@r\n7\=,>K\#\v\"\\\\kS\\\*}\%%\@J\Z6#AƖ\2*\d\\ltIWuE[abaZ\ae\XѾ]?ڛp>G d[S\Vz$nAedGY\3 \D~\\\9qZ8F?ނi\(Y+h	\\\DǕN>}\ *fֹ~OIǭJA3R̄\4:ˍ\\H	\\n\\\vxL\I\70~d8\Qf2..o\]\˷o\\G5;xz\׽\\ϗ/&\\lt\\\\\\\p\\\_\L*y\R\\N\\}\ߡL{sO7s\Xd_\<h\Re5B|uS\\1AAkx87\sV\QF酀\\j[\I\Ңn\\sʊ\$BW~/\U\뚭Sg]7x˶\vOtY\rǟ6,bru\\Z$4\@H\<o=M\LQLf!|*\SF\wpX-\ž͟2iC?Dt\0J\rCN\Z!]\ZAgP\x\K$x2D5j+i\0}6\0S\6nW8	y\r\'0\XW_5+ic\n\w~\\\^\-|	\\|\e5Rqo\\p)\0gq\rjEm9g=\9Uif\n$\ܭ{׶Af2X8d\0\\G#u싯\0\U\0\k\\\#\\\rS\(8Im\\A\7I<\Ȓn\m6nm\\\\"]Am\p\03TDx\\"\\Ȉ+v\'\'\\X]3\ʝ>K\Z|\\B=\r\\^(\>o..}\\Ż\+P3Djv\rBx}3{s1{w^}\.n\8!|\V\6]&(\\\\\\FRgjﾣS\5\\Iд\iam6cߛz.Ձz	H\\nmA\-Dm9w1\Rq~\\G\xe@g\}Y}]\0=\\\r\βD\\C1Ay\p\)4\\H^\@i\\rQ*]mKnMh\Kz^eI\62jXԬ@!2Tw>rڠf\& 1\"\Z0\{\"hl*ѯNY:\QĻ 6}j8AlG=Ȇ-\\"d}h8]\o\Z\V\}61Ji\5o4}y	Zжc2g\\\Qf\\0\\X\;,	_e\^>\lW j*4=|N,\ﴝ\\\M\{5l{&^N\\6v.Z?`IgMm6\0@	}D\֩I>\\5]<Bvz͐\\\ع\l>x\|\]&G\C;``(&y\;1K^Vt8:m\r\Z\G6\\\55{l\\rP`dQ2][\\w佮ր́!˶\0s\	\ο~\_\n;\n\^f)\DSسD\=\;]\1;;d]1 \=U\ZP\\TĊ~g\n\CN6yrC^\J\yן\ph\'5\쐼	\\܂ޮ\K`s\;>AwL\\SJn\9 ̝gw觯13\ahSL#Dln,\e؎ˊEՅ%\\ރX||/F\o\\'\\@:Yk-hЛȨP\cqYֳ3O\zDex\tM\[R\)\SǓ\Q0ɠlκ\\n{u@tt̴NOƋU	%[2,{dا@\K\\ZgύSj\P\-\B\`(.ٖ\/\{\H|e\|5@N\"\\9ܐGOHxJܝ\Ncccn9a\n\p_@j\\P\Q\Z\\u2\u{H2:jr\K\\?\<\\-Bh\gg)nL,>v\y!:.\\VMO\\!xTp-1?\y8|\rđs\\s\XѸ\\\2μ2\z0\Q޼A\"w\1T_)y8V~\\\"ϼ\rE\jܑI0\|\0Ư>Q6\v\ɰF.ʵ\N}2]AbFӁ\	\\ͰH(\~[\"\K];	O10[Xz\L*zG\GWB:\r\TPD\>Wf;lD\qݰE\Ĉjyq\`V瓆KljVd\ikR:3M|B\af\]\'SLA\f\t\0\k}c\'FKDL\\si\n^c*\\*\0Lo\\\\)ʪ^b<}\QŞw(%Dh_}lLUrվ_ŤQ\\b5<KN\OO|z	}\G\\L{\r\'\\ɳ)A9]pbo@]*N?0Lr\\t\7\\Ƨ(_\QfpVcSޝҩvU\\^.\@\Ij<y\4\\v\HC\2Nb\	\\/ FuVO,m\5\\"\c\3O\\GUم;y9\n喽\\qS\z\\9,<3\i<FEgs\\qAFAoǺ\\\0?\"Ƃq\d\\H>yjݵ\;ZM]n׿La\nxwPÍ;q)\\]\w\Wz#:YeД\-\0H\&mK?d\}7h6ԙ$rHP8\'\"zp\6)]\M$\F?\0a\\jUr)3k\\1\'%(d\[ag3y\g$\4o\]$0vn\}\Zl>LaI,6\9\\Zp9\۞\\D`dIq\"<O#h8\\'g؈L#>O-RP\\v\\`\{\\䩺\\\\fwf9z\\b\\:;u竫\nvɿz\ݱ\.\k\\\\i^_^$)\=OM\{R:cINBC-\Y_\_\\7hP\r\\NEX8&Q6\J03*]VJE\I<ƸG\.EN\S\w\\[MG>>h\\\\\9Ҭs`\%i|v\\"\nb\\'a7\_k\N\p-b@QL\X`{_\\W<7\\#\^\̻Bs\\\*\M$$o\\S\\\[́rbP92EA-\M\E_B\0 <xi1Vʮ@\5\0mn\=\*5ZPb\\9Xɝ2+\8D\bǴ\	U,+\8`\؝3Fj\V(됸q\nڹ\K\\2<fD5MݶU\5z\\c-u\\\\mr\9Wv1\{OmɐEb-\0؂\w\"D\Q\\4Sε%:O\\#IirL2\&hJO\	V\\A\\\A)\\&-\u@\Ӄy*_X&Q\Òbl7E(4Ar>\\\%.\9zRa&\"/K<G7\\'\\1\~E\0gV\Đ`a[vk9#\@g_T\\K\(YDyL^\tE/~4F\\R[dP\ \2dne\\m(\\\֡\ \U fd\Z\.щw7\!d\\NEd\k+b7a?\c}\n`\\|sDCٝL\\?aUUi\v\R\@{\qD\3f]\;\V#}\\{ti+ \Z>X\\r \\/RPb\88<\C\e\79\.\O~Pu\"\tU\\\O.\\6\߳@.20R\T`@\6\'U^ X\j	XF\&wgfMhM&)3LNAuHbd?,a!d\|\G\v	Gϓ\b\h\먪\h6S{\\\#=9{:>:\\Ȑgt={|z\u}tH\S]{>b\\`\\.wbx&)|4bLh#K\z\$\\rr\'Fi\5\l\n\(\Y(`\zcԁ\gϡȊr \zt薔J(xܝ7O82M)Rq\\ƣs\K\Ѝ\\Q8ʧu\rB|wق\WYV\0\~si(\Ы}=-zb\\0\#\Nɀ(Di/MhMA\w\n{V\;-/\?bòd\oH6:\\\qQ*J<p^\gZ9\T\%\Y\BPɀ-mX[\\Z@h׿AAGUR%C\q \X&O}֍F!?V.\.:&)\\%©7~۸&\LXpSls\a\y\\K\B)Βlk\5U!\\_~e2*,T\7	J\"\j\rx,\p\w`\'#W7c \\\r%\"Ve8\n\]\\~(\gڄ\rT\Y\X\N\ {x&Nl\\p&ŏ\AV OK8TGA>+b\0P\'v\ʍ\bĦj.`4\eƖ_\__\"\2FJFYZ\d\\\M\\\gcʡ3)00\gFZآ\(3=ԜƷ;U^4ՃG\k\u=\\>U³&[:p=\mf/1즘EvX8c:;\[θ\u_:\`\֘\p\\\Ȫ]Q$\"i4)~r(!I9q;d\\\ҼPB\\`;2B\2!6AmDJ]=X\\|2E`>D0+7mL9Z;]\γ\8k-\ѝۿ)\ƺTC^VRl]([)\l>8<\9LPS$YE\e\vu`\\t\\Z\\Yg @	\k\&\Ԟ	\Zi\@!|ʉ)\\!LĜq\\8cc\{\.[\n7(p}(Lޜ*IBQ|\NN\yM^\JX\Nwc\ZiH\6\\EdHwwt\\14\j߿	MWH:O\9g0w#\\)`1.01@	B60М,Kvpq[-M\ &SVY{|<0\74\A\&l_О\S8er\\0\ x\t3h\r\\:q03K\N\e[,\0&ݜogQp걓\tp\"<\czq*L4\rBwv5&	\0}^BDҜ(G6\\\\i\,jne:҅avט\`<%j4sXu[\\\CT\\ [\Eaz\ \\\\Z[w\!.F\|\\w+\\r\,zN{\>=\\Ơmr\E;t\;\2y%\g\ˑpAh\\L$N\\'smt\\2JI\t\\fSB\x\5gI\K\z\\nDE\Z\:ot*\#(;A\d=^\ĂUTu?Aӕ\0P&E#:h\)\\\xƖ5.@7`v>I\eICڂV,d\\!\ŠqR֣c\Z;#8tzS\A\Z\\r^J޻6 \r\\}\\d\:F \"ŗaB\\\\|HQsWQR\'o\n3\\ cnXtX~rq¹K\4alep\\W\\!T!\{ƣZMa-Ǉd\A+\	\Z>\U\aEi@i8\\֫\\;OJKhR!Yb\\lRƽ϶쩱]0UҲ\\$\9+7jA\#lJ%}\\l\,Rҟ\.B;EX\"\[w`\`1|r\\]\\\r\˘TlM`\\Ĝhi`6^1yػ]R,I\r\\\F`&ψ\}]$3]c\\[V\BmI\\Hi%ڹ`DDp\\\r57M+P\lM+Cϕ\#wm*lsI\\p0Yfc/UR۲md^\HqB	2\6l\z7\qV\e]\4X\\r:\\ώ`\6*q\\\'=BNM\'aU\ȖժH(go\\\0W\W6\\\\\]m_ISW\v i\\n\\\\n\0\\0rH!\2%\àK8*\HHFN&m\ߦUƚp0BC\'nrF_Q3\j0jK_#\or$\'	`Iñ\+`\oust!_\\ruZ&HX#ӖGBlo\􁗊1ÊN\Q\|\\*z}v~5\g\\\\V\'^\\\ةgI\ 4Z\"b,\0\Y\Sr7\\6\\aA\\?j/}pSe\\\ڂH%	\D._0\rW$ZT\H\\\P\"\p{^\"N)-\'z\=z{\nw}k\;-\ZY\\\\\\ܐy\X\\!\\l\Nvϸu3y61oڣ^ dGS\\TL\<2\T^pnD`/m-Țfu\)\9@[\#j[-?mrzR-ZR@մ\\ʭycjȭ\:V\\w\/\Zsrjڪt\0\\61y\ů\\~l\n\ijÜc\\9l\ Km*\\gX\R^@;~\nj\ZkI\"[>N#y\/:\;\59\ XrPk#7۶PVr\1\A#\LZ\\I\g\մ{\\	Sû,F\$U8\C\\ \'t2H7/\\׫2\\AI#Eƃ\l^d{0\\<S%&;5\at\)\"#,\v`Y27q玡^AQ\!1{c2EyEX8n\f8Vf{Y\Z\\y\A`\X\\0?hzIxJ\A4\WdݐH_c\E\5\r$`\\\C|G]b~\-\\ݚ\Y{f#kl2F\\\	\\]([\ܦ\(\\PT\Sx^(d\\\w6U\:/l\'\K\@\B00\\nm/Ucs]<\'bA\!\"R\0:,\OԇL557\P\"[j`?\l\$pi9\d=Ѱ!\\uIr9\\\my\9=\(a	 L\\C\I\&|\\\ƿ9\Gz]\\\Kb\\g\\'\&xI9\\\\	F\\a*\\Ǩ+\\\\\\\\\uG?C8\`m\\)l \r(H닐\ab[0\%X\G\þf\n\n7_8\G/\qw88\E.jms7=xF\wM\Z\|\\\#9|\N`:{\\y\\	\'Dâ;+~Z\ ~\m-_#\[4`\\\\[\Ñs\\\.\\73=\]w9+\c\tEX\<y\n@g;M\n\'k/q\\v\[5\ZN\{{\6\$a?d\lc\lp/n\"~N\*\\֑{A\?\^\$ǽ%l\w\)fg	2\:\\x`\y~v#㾩\\\+_\V\9\`;a&_\8x	=*m	V\Ҙ\\A̾_Oҷz\ۛ\aw\^k,\\rA\p.hj\'*(\;(\S\\4\K\l\ivTѭ\r\<\I\^[n꼡\a\[-\\7p<UH\4}L,9\\wcY閦Mn)\r<\L{,Ejvb_\ֵϬ2,W.\\I\	}\˂ㄷh\qB:=RT\'\hG`ݕf\&LtW/ GQR.vA*L\Y\;\B<ϩ\\넯i\1\T6еv\ڦrp[%\Z$kk:L\Wc0FN\Q]y\TqKp\ށ\掠1Է\\#°ۧ\6\n&\Uܷ\UASP5K\e_\1؏{%-1ޙv?SA\\Z==J1\\R\c\n\o&-\\\\l}gm o\\\\\`T㯰\ԃ)\\\\\\RvW?\:a莵\\h \p\\\O❊цSiɄ=\D!f\\z蹽 \'\\*\\"\h	\T\r\e\$\.\؄^΀i@E\`[\`,L˯߅Oi2\J\Zw\"\|IA̇w\'\ Q*\Ky\bo}\\f\:\r2 ̀K/(c\\w\\\#~\|(\\˥K\\\"WF\r|\0ro륀h\\r{%\"~-]\~r\zy!l\r\y\,\\\\})\^`\se7M\NHᛟ\\\\\I8\b\\Tk\\rD,^7g\t_\m\\\mM7]CVF攎\[˦\6m.B£]Ix\A<F\ʶԡw\\nᢡ;|g!\0\"9h\	t\!Ԕqꠠe\k8(-;\\\\qj\\=}\{]\OVL8\QnS+0\\eFIF\ynX&&\\nCn\>\%\۸Lj@\\«J\j\\!\Y+0\'S\k\߭f\ҧRr^\r\o^\!ۧ\pW`\yV4({\+\n\/;l\~y+	}\\\\'\\G_ӈxL\e\_Lȸ٠\9vyܣU+2\&r/容\\<؋a(\e\l<e\0sټ\\}\"\"VQZqm|ip]M]oD7\\ܦ2\Ӆ]\6\&\`\!-\n`\uG\;@	o@:${\w*`\\\ཙR5c~\Ul;\\,qR>[`M\*$\\}B\tA.t\\Ԍ\wX\tF\]tQ\-@\\v ??rf\Y}Fl޲T\r\\pB?n\hn~ߨ\M\VE\\Ҹn\\0\')\\&|9\.\I\\\\脺ٺ5O\r\XƢ͆+JA,\\`\'&\\v\TzN\0\.S\kVs\㮰grpvpUmGGeG\D\.s3\\\{\\0\ibK}d\M\V\-\(Mt\\0I\\3\ \Ik2d[\6*@\>BB\9XnWGUvQf=jJ/\ޚsS\ʤo1j(74\9\B\uo\ە1,Ӱ\\u\qsD\\\7n\"ѭ\Rq\6G$\Т=d}{wea.:\\AJ\xQcW2zpn\\\u\0kܸ>5SK*Z\jZ\ƲtIs\ f+nG\^652ݹ~rӬ4l\\b2\r\\\6\v-m+=9r\\#B\\"!RۅSRk;\\5u\0@\7\qk,p>k5o$\ӽ\0\u\rt\'\zL\ݔ(\qG<BZ\p<\F2T\Q\ \\\-	msXG\>o\زA\'\\*Y\Ѭ\\ZʹM\IW\^$+H(0\m\mm\w\3ܭvM@\zC\ZD΢y\9\\4:8RIb۞/\\x2llpCP7\"~>\ac\'+؂~%\?1\\\͵@E&u\0\D201_|s\Ѧ\Ѵ2\)tg\[<kT!d\0\\#,!&\9$\\~aΛm\#{]\_','EZ-Page with ID 11 updated.','info'),(1490,'2018-05-20 13:20:43',1,'ezpages.php','ezID=11','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1491,'2018-05-20 13:20:44',1,'ezpages.php','ezID=11','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1492,'2018-05-20 13:21:55',1,'ezpages.php','ezID=10&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1493,'2018-05-20 13:21:55',1,'ezpages.php','ezID=10&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1494,'2018-05-20 13:23:31',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\y\2a{f{c>I\\'\V\ԟ?~\\&kr_]LS\\\T\\)QM\;lM\deQ\\>+S|*\çH\\SV\\\ݴѩ\;.\SY\\\:Kͬ\/S\?=/\ƍ#7e)Y\U\5AG\x\,e14WI\\\I2\_>Vs\U2rn*]\+_\\\Y>>\\\x\\>\M\eVduSfUR\y\L\d,\\'Mu%&xYq۔\H\\>>~|h#\O+Y|[VKÓ\\\_\\usn\\@\\ˋW\7\j\z}\\Wj\\[]j7mݘdQ\0yru\\\"\U\\*\\}S\t\aYg\#e\\wq7\vL5\?qețEV+7o;fg;@\]LT\\ԪY\W\Ѝ-\\VIeOmݨ1jJ53\nN\\\!k-T\\r\p;\3;\wjk\8I\\"+N8)417\*\U\Rj\\	ˀ\bx\;<B\ayon\\\\qN\\yP\25y\r\/I`nܺWt\01۹No++#ʎS29{R\# \\"\Xrk2E}V\\vr0N$oP\]6\r1]\'Į*]	>}[f4\\r\4\\@\\\rF\vbߖjb<%j\\\\gϷӌf]\%0ifDW\\n:VB]1#\A\\]=8Чȍ\';\\\\ph3S9\\Ďn\.\Z{E\K\1\	\\\0\Sܿ(`y]\;n\q;`V$y\px\cmjЙ8|@`\\\7\ZHI!\\t$\XHlG%b:N!\*X\s5o+8L,\\<\jX;jh\\\F\L\\_8#@v[S\Vz jAe2ӣVUwǀ\^=bG^X\y\8_\R\@{aj\a\J\'w\0)*Un\S\q+\"P)5sFߔFgqV\Z)[sT;\.{Ǥ^\}\w8i`\gu\\\\ۗ\rw89QM>\|\\;\u\\\|w\yqq7MF\;o\wo?M\v\L\\\xg\zס.\\>\E\\俷:$kPz:5`;w\ԃ UYc\wn\8vPP\Z޽$\\M\9\(P\\^\\m+ IYZ\m0{bNVYјdP\\\\n\\\p%]0Br\b֓u0\]˼-hl8a\ikШ\K\"4Y82E\rT\3m|OI\\a }o5\ˤ\rE\\0(59\^jԇP\\:CdH\cRW/\\ըp-\0ڨLY\ Lԏ\\^\$f\y1?\\rǺYI\gvTX/ĥ\\P*n\+\L\\\>;\ \\\H8\hP2\r\$S;\bW咦)\&bs\\\_ۚ&n\rb0\\\!x/?S`_|9`^;\}a\"\yl_MNmlQ`\|Oe΀\nޏ$J\gdI7\&zHc[fP8*\"\\{.\\ۓ\\\Կ\龺#g\0ޗ[|4<\n\10]w\[tb{(_P\~VWWޞ_U{\\\kPSDjz\-Bx}3}{>}.޽7oXjUY\.U\\\~G\'4k\0\\'i\\\0\\ʬ5Ǿ7uJ]=uH\\nmA\-D-Rx\Θpu~\\b2L\`@pj\\1m}DgY\\C1A\0y\p\)4\\9H^\@i\\rQD.ٶ%ϊ\\[nMh\J\zVeI\62jX\,A!2Tw6rڠf\& 1\"@Z\rv\\4Z\WZJ\\\C\,\X\(ֻ`m\\pq\r[ dk\lqZu\"\:޶ʇf1l\#d=nv\ \L\r\%*\n)m\\eΒ\\Qf\\0/\\~2PZhx/k+5\\\@\>\'\.\\LY3zD\\F|/\rp\,b倦\d8%XZ\\N]~Κ0\</%\0@	}D\֩I\j\\.x!;fHftSe\\s6<n>A[v\[!\G0[\\\\r/@X0\"}p[Æd\\\u\=E?Yn\\3\[AW+@\e[N\b\__d\0\7ֿࣛ.5YJ+}Ƈ\?\vȻ?G|\K=fqՄ\8dG\n\\j\OE{\氡 0\x\'\+0\l \qYvRN\\:\M\-\\Z]C\r\\d\0\뼰\\	||tjA\m;\53f\9$mc5\b\\}$\\"\0<\"\	v\&D `>\'&1>\0N\\\nhh\Zf 2*\\Ȏ(ۊT\\\'\O=2<O:GM-)\\\\x젤lƺS\L :yfZ\'\Eê\\\-`;,{dا@\%eumgύSj\P\-7\B\-N\Q}]-\r?}Xd9\0J\l5@N\"\\9ܐ\T/>2L\rZ:{c\\n\\\)\}E\/CwDi$\\׋H\\\"\\\\i,.\^j{>q\	lBc>[Kqc`9\ \\\qэv%l:|Bv\0\\2k\tЕpI\\\k\\'ìƒ\uVWqf\w;\4G-x\\I\\'\"62R|\!\XK<6\0\\E{#c\'¼nЂFY{\"\!\+\Î)\n(WN;6\8vY34O`oEEA[\\t^X\ZSLxɀ\\\30flU\;_?\n\i\"2[\a#Ҏ}>\oN\\ZQk\r!:4\\B\eS$NI\\4uxw\\:\'\r\|[\̈́\H\a\\0G\3N\덖X_n\\\p\X\T,U\0zW\\0ۿe\sU^.c<}\QŎw(%Dh_}$jrծXI`5<kKB\'N8ؑ\r,\\\<T~Baz\7\v\\o\O\\Qd+\^GY\7\NM$DF\\r\d>\\S1H\ˎ4d	lq9\Lo>)\(f\̟`Y!~a5\"IK\p~Xt\[\8vp\\\9&#4g%w\\GUم=y8\n喽\gqS_<vgE\~ʙsʹWswJ7\c]\\lk]cnlb$wa\Ze{\`צ\\\|T_&0?<I\[\RÍ;\?\Qx%؋5h\s\V_\\f\0Д\-\0HGk&mJ?\	n\%ԙ$rpN\\\&\k\\%)]\M$\\\n~i>Ì\\\,Sgb\\1\'%(d\[-+\\f\\cF\\pӬ-uڙwim0%2\[3\ k\Toz6/3m\'\\i\r\'3sD`\Z9}.HA-\KM\N\'O\Mǽ\~7\3\\8T2m\\?\޽\>$\\߶Ǌ-\)hہӼ<5H@S{tƒ0TZ\nг$\r?ſ`oР\\#\҅\",2pLBl\=Xa\n\0g\\\3TLDJ\.\\EVyq:OY\5ٷ8#|}\\\!0{\zg3d<\H΁\S\\\.PMmЇig-« v~pC\\W\\\+%\\Wl\\\gkD\KyWh.^r\D2\K\5ʵx`\9\\n*jQ7;RX~	y\T\:nq\b]d9\\/k\0\<]\{\0U(.P\'j<@D\\9Xɝ2K\8D\bǴ\	U,+\8`\؝3FjW*R\ˀuH\8\\\\j,K\\2<fDMݶU\5z\\c-t\\\\%}\KY@\\\\!~a#\0[PS\\\nz%\g\Sε%:O\\#IirL2\&hJO\Y<P-\\r\- S\1G\\"8]\\h\k(DTYp2\2\Fmlݣ\!\|\C	\I\rJ\\!rt n\Lt7y^x\ncn\"\'\\)\~E\0gV\Đ`a[v?\r8\"=F;%PξQX\1x5\]\P\Z;K[\bEI.C\\P6܆R=jJrQ	n6\NcuȲxw\C\/\T@\"&qS\\=֧`\n\Q\\\\';\hRw\}Fv\'8;*Qf\a-\\'GT<c\\"5\qD\Z\\>K\gX^o|֊<>H,l@g|7U~\K=\\\2%.\~\)wio\\\ǺUg*]\	\%{\\\"ɸz=+\Z!u!~j9\WK2\nrwkV\\$\\nP|\KX:9\h\"8\(pyr8C\9xlpUNj\\yǧ\Ow8v\γ=:\n\\>< \	~1t0\\c;1<BI\nD\0̄X})\"\H\R1ǅx!	\\w\\\(m&\Q{ż1,\0]2\p:DpqPx:\I\0a[nAL#t薔J(xܝ7O86e6ӞJ1\nƭT\nιK,C7.WG\\*\\r4I\e3^\fYwͥDCF{\ꉵC\׏X#8!&El6y\6KY\G\)\\[YVoq{\r\2~C\\[ă[\\u\\0\L6\𐛊4a6d<\TG2`KVǢ]X\\mBE\QT\\\'z?ȣ80V%suQ\\7Fu{c$\Fy\0\y\`pꍟ,\6	5\-֠!)b\Ԭ#یr\-y\<b\%n[eI[5ʚ\t\/2;*,T\7	J\"\rx,\p\w`\'#W7c \\\r%\"Ve8\n\]\f?Y\3mBK,zpD7H\P\ıD~\Kg\<\\n\1\\U	(\$v\0u\"VnT\`[~\~i@\5*P2L9yu\N\\K\0ޔ\nu\S9t#Fݢ\H[t\`5\'mN@M\Ѧ\"\Zvݢk\1Ojɖ@K\\\\Ov\K&)f]!h++\X䬿\N3qݗN*8X\h5\zFyYU+?\n\oX\Ƀ|OA?>!I9q;d\\\ҼPB\\`;2\eB	l(RKDJ]=Xٙd}|a\"7%AEmO\Vw\Ya\Ƶ\\\\o2An\"Ր-W? =\VJ3\G\ۣ j$_j\[f_-xΚY#Q\\u2`\6Q\\OкHS\nዅUNL9/9`\"挏{\x\\\l\\o\ܾ\p\\uD	\E$`<Toi4\\\\i\\T\\>\t\H@Rt\\)(.\"CN70\,Cí\Y\;T<?\\n$i\C\kJ O\@s2.\\m=\\\m_1e\rl\\|-\\\W}A{kN\‖H\.G+<A\n\\6J̠5K=t\CyW#>\`f(W8K,\0&ݜogVp걓\tp\"<\czq*L4\rBwv5&	\0>/A!	\"\`iN£z\\0k\\\\$F57JFY\0\\\00k\!(OZM}\\\"/V\\"{Y\|\n:PdH5 L\r?Ht:b\\],>NA\Iz\8\hϏ\qcЎM\\\\\=\vE\\\3\\H t\A|\\L$\\'smt\\2J\r6߇\u\w\O	!9\rLr\Vq@TURW\oq(D\	2T?\0\\㕝Xʳ\\'\b\\$\T phD\'\:e8k\0\ز\-/-\\r\OMY\Я7࿥\;9\t\3RJ<:\0E\\yġ\{]-L\0\w\7\Rz){\ڀ4؟\\n\g۫Bt`\ΘU(FA(\_\~\n}T>n\r½=0R\e殢Nv\ Zeީ\A\Zݰ谼sq¹K\4,\8XeQO\\\ѯ\\\CB4GN\Z\|Wl5\}ԫo+\BҀ7\pԫ\\;ޟD=,Id`T`I;\-|F\"\]a8%\\$\9kFP\RgIe88󮿔$\O\zˈPf\\K\qa_yvyF1\\\'\E\\\5\r]};&\	\x\"\I*b\\\\\\\\"aڀ)k^\\\\\!\hWVvd[mg\3\bev\g \2<\\vC\\c)i4j[-n\`\\{\MmN0\"\Z\s5\l,Jj)ۖ\ \\\!DAo\7z?\n+\\%\6\KAQ\lF%nwҜlЮS`\I:Z5	\\\)\ZjJ°ϚM\5Q\\F\a\*\nU@$\rpX:@!5\D\\hLF	xo,\a\%b$$|\'`6\o\*cM8Q7>/N(ξ3\j0kKF*\\\HN\"	`Iñ\+`\oust!_\yLF\0GBl\􁗊\\ÊN\Q\|\\*z}v~5\g\f\\Vg3rSԷ!\SϒvA:h6D|\X\0ҳ\r.p%-X\\5PW\\",(\'C\n*\xݮEA̒~\\	\D\\.0\rW$\nu	O\P\"\\pvFDҶ\y\0;\\\\)\\#\A\\*\\\u!\\0OC\ӧ\\\q\f\\\iz!M\WKS\\Z2u\8$Sz\ùyEPeP kՑ\\(&pRg\0E\;G\([ޭszR-ZRB im+\סzX1t\Zr밎t=\kBNM[61$&8O\ByJ3v,\09\9\\8d\u.\Yh\\\M\cTC~-\"Id\\Iu$E\By/]31Ic\K.jm\f\\\J9\=[\B˛̤\Ca=ŴvO~A0\1k\Q\+$]aDuRŋ\!\"bc\ڂ\\\\#\<JCG_ʔ\&p\&\B\``hN\\\\\'\\S\ZE0GTY\\2)ddf\\'\C\!1{c2EyEX8n\f8\",\r\\\ \'7ڬ^\ `\Z\\+nHy1\\"\Zc9В0\no!>Sy#.k~\-\\lM#~Ab֞Y\\\\n\!\%92t\lދ.ԛ\\\ܦ\(\PD\)<+2\\wU\^\r\Ie\ peop!0\\nm/Ucs]<\'b \@Q\0\\_\aS\rk\\Zx@{\Jσg(-,\\\o:	\\Z9\ \Z6x\.\\^Ntc\>|#3\s\\X\Z\0´~>O+\?\8\7{\Hj\\G\K<)\f~j*\1\\\\ǫ&xI9\瓃1F\\a*\\G+\\\\\\!詗G\/VM\h2p\X5\\\\SXC^	(\\!\F\R0\%XÇ}]a)(`^\10\\\\*>LT\\]V\8\\5i{zj3\GO\\\M{8=<\\\S;\\\\kӓb\\\d\Z\vk\U9ޢ+\ނH\Ϸ\?\\[캕ș]C[-B89\0?m5\+\g\q\a\6o\dk9\\Mڼ?Ԓ,a$\_gf;qxx$Pg-|;\	8r%\<\-a\=T;\N1;+L:r:\\A\\ɿ\\߷ӯ\7~\\1_\T\f	\rVbzTqۀ=n}Kc>7{)^G>2y\0o<=\w7\G\\н\X\%\\骝0\\\mWߠ1^f\\\\N\nmp\)\Nb\tKo	x_\O؎؝DP\ITa\\\s;\Hp>\\Ҵέs2!w5!w\RԪf/ilU\z\\r\\\Qw\YYp\8W\NTՉ:\\\"\L؄\"\\\(J\\.H	:Ky\'Z\9{5<&^\\r?pwTnd\\\ZGS\'CrTm\d~4Unw\{i0|bCQ:\"}:n\\\kQe\}\\\\4\87	5QRs\wݟt2`\\^;qlKᨇg*hl\cأ#.o=`\\fҢ\\\mH2l\)C+kj׃R\r]߿c#\~\\u<\ \k{o}em\z\\\9;\pqwb[2ab7ѯe\Ks\c\0L.ȉ5p\"+2Z]Cf*\p9莲tkR\d$3`.m\'PQ#;ؖ8Gf_\\\oC\\'¤O;\\ZJص:Aw.w\"\|IA;nOAT\y\bo}\\&pf9Nf;elq	T>\ҥkkG\r|\0ro륀h\\rR`\`.\wS{?B9\H<\\M{RX7\<\ǅ\\.\gs\\i/\z\9RZe7M\NHᛟ\\\\\J8\3\9ʩ/֊Y~og\t\W~ۦӫn\)f}Ml\M]6-	%\z\Z	K *i\'C\\\N\HN \0\"9h\	t\!m)]!MY\\AA\m\\Rv>\\\\Ԣ\9{\\v|g~G\\Fm\Z\u,D`PF\y&KDYg[Cn\>\%\۸L{\(\lN^\UJ\\)oC\\r>LMW`8NZ״[\ХOlq\Mx5xyy,n\A+\Z\rfpiPr\+\\G\B\\K\'ﭝAk<\HN\c.N]Ӂ؁iDA&z\}\/\\˹\z&d\l\}\;\\F\<\E\ɪ;\&r\\<؋q(\\\Zl<e\0sټ\\}\"\"VQZq-\M\r]M]oD7JHn\\G\\.mka\\n\`\!{0庣ʌ\\\ =N;@\\w\L\Z\1Ph*i%N\g\B\Ia/\0v\\B\r\a\\7!\\A\\B.\MO\x}5LgdA\\E5\\m\\\'ǔ_\\\l`5ˋ\\(\[\ntY\J/t\\6m\\\\D`X\t\ZnT_T\\n\M`k\h\n	Fs`|>}\};#:nnMӕc\Mc\&%*㊭c<x\\ΥkZ\\s$p\٘b_㷚STw=j;B8*\t\<VMD\2ף~n\\.IAȓjo*\Z[-\rZ\Q0\\\0\g\AXkۮ\|\#\M\\0ɟ\@X\n\\"\rk:2\QSWz~֜\Ϝ2T&}QC\9{̩*\r{K߬dE+#\n5\^qnU\s#\lM\\Z\Ja.:\\AJ\x\\d\ݸ=~\\079׸qk}jT\@\rwT\d\cK\\\n\ZK<\0\/P\\\A\0͖܎`\Uk\\-d*+\\'&w\]LLn\\Ӱ}pa$&$b2\r\\Jo~Զ\\\W!t[RۅSRk;\\5u\0@\7\qk,p>\jp\H\{\0\l\\N\\)Q2\\0	y&\3m]\pe\7\\\C&l\:\()xG\NJtodG\Pk@6\&eg<\r\EB!.]{u\.\V\IL vf[C\횀49\n\N#s,\\4:8L\&=\r^d0HlpCP7\"~>\am\'+HA%\?1\\\͵@E&u\0۬d`b_|3\Ѧi\'d\#R5\τx\B\aGXdC1rY\\\7\*\\\\'l{\\','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1495,'2018-05-20 13:23:32',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\y\2a{f{c>I\\'\V\ԟ?~\\&kr_]LS\\\T\\)QM\;lM\deQ\\>+S|*\çH\\SV\\\ݴѩ\;.\SY\\\:Kͬ\/S\?=/\ƍ#7e)Y\U\5AG\x\,e14WI\\\I2\_>Vs\U2rn*]\+_\\\Y>>\\\x\\>\M\eVduSfUR\y\L\d,\\'Mu%&xYq۔\H\\>>~|h#\O+Y|[VKÓ\\\_\\usn\\@\\ˋW\7\j\z}\\Wj\\[]j7mݘdQ\0yru\\\"\U\\*\\}S\t\aYg\#e\\wq7\vL5\?qețEV+7o;fg;@\]LT\\ԪY\W\Ѝ-\\VIeOmݨ1jJ53\nN\\\!k-T\\r\p;\3;\wjk\8I\\"+N8)417\*\U\Rj\\	ˀ\bx\;<B\ayon\\\\qN\\yP\25y\r\/I`nܺWt\01۹No++#ʎS29{R\# \\"\Xrk2E}V\\vr0N$oP\]6\r1]\'Į*]	>}[f4\\r\4\\@\\\rF\vbߖjb<%j\\\\gϷӌf]\%0ifDW\\n:VB]1#\A\\]=8Чȍ\';\\\\ph3S9\\Ďn\.\Z{E\K\1\	\\\0\Sܿ(`y]\;n\q;`V$y\px\cmjЙ8|@`\\\7\ZHI!\\t$\XHlG%b:N!\*X\s5o+8L,\\<\jX;jh\\\F\L\\_8#@v[S\Vz jAe2ӣVUwǀ\^=bG^X\y\8_\R\@{aj\a\J\'w\0)*Un\S\q+\"P)5sFߔFgqV\Z)[sT;\.{Ǥ^\}\w8i`\gu\\\\ۗ\rw89QM>\|\\;\u\\\|w\yqq7MF\;o\wo?M\v\L\\\xg\zס.\\>\E\\俷:$kPz:5`;w\ԃ UYc\wn\8vPP\Z޽$\\M\9\(P\\^\\m+ IYZ\m0{bNVYјdP\\\\n\\\p%]0Br\b֓u0\]˼-hl8a\ikШ\K\"4Y82E\rT\3m|OI\\a }o5\ˤ\rE\\0(59\^jԇP\\:CdH\cRW/\\ըp-\0ڨLY\ Lԏ\\^\$f\y1?\\rǺYI\gvTX/ĥ\\P*n\+\L\\\>;\ \\\H8\hP2\r\$S;\bW咦)\&bs\\\_ۚ&n\rb0\\\!x/?S`_|9`^;\}a\"\yl_MNmlQ`\|Oe΀\nޏ$J\gdI7\&zHc[fP8*\"\\{.\\ۓ\\\Կ\龺#g\0ޗ[|4<\n\10]w\[tb{(_P\~VWWޞ_U{\\\kPSDjz\-Bx}3}{>}.޽7oXjUY\.U\\\~G\'4k\0\\'i\\\0\\ʬ5Ǿ7uJ]=uH\\nmA\-D-Rx\Θpu~\\b2L\`@pj\\1m}DgY\\C1A\0y\p\)4\\9H^\@i\\rQD.ٶ%ϊ\\[nMh\J\zVeI\62jX\,A!2Tw6rڠf\& 1\"@Z\rv\\4Z\WZJ\\\C\,\X\(ֻ`m\\pq\r[ dk\lqZu\"\:޶ʇf1l\#d=nv\ \L\r\%*\n)m\\eΒ\\Qf\\0/\\~2PZhx/k+5\\\@\>\'\.\\LY3zD\\F|/\rp\,b倦\d8%XZ\\N]~Κ0\</%\0@	}D\֩I\j\\.x!;fHftSe\\s6<n>A[v\[!\G0[\\\\r/@X0\"}p[Æd\\\u\=E?Yn\\3\[AW+@\e[N\b\__d\0\7ֿࣛ.5YJ+}Ƈ\?\vȻ?G|\K=fqՄ\8dG\n\\j\OE{\氡 0\x\'\+0\l \qYvRN\\:\M\-\\Z]C\r\\d\0\뼰\\	||tjA\m;\53f\9$mc5\b\\}$\\"\0<\"\	v\&D `>\'&1>\0N\\\nhh\Zf 2*\\Ȏ(ۊT\\\'\O=2<O:GM-)\\\\x젤lƺS\L :yfZ\'\Eê\\\-`;,{dا@\%eumgύSj\P\-7\B\-N\Q}]-\r?}Xd9\0J\l5@N\"\\9ܐ\T/>2L\rZ:{c\\n\\\)\}E\/CwDi$\\׋H\\\"\\\\i,.\^j{>q\	lBc>[Kqc`9\ \\\qэv%l:|Bv\0\\2k\tЕpI\\\k\\'ìƒ\uVWqf\w;\4G-x\\I\\'\"62R|\!\XK<6\0\\E{#c\'¼nЂFY{\"\!\+\Î)\n(WN;6\8vY34O`oEEA[\\t^X\ZSLxɀ\\\30flU\;_?\n\i\"2[\a#Ҏ}>\oN\\ZQk\r!:4\\B\eS$NI\\4uxw\\:\'\r\|[\̈́\H\a\\0G\3N\덖X_n\\\p\X\T,U\0zW\\0ۿe\sU^.c<}\QŎw(%Dh_}$jrծXI`5<kKB\'N8ؑ\r,\\\<T~Baz\7\v\\o\O\\Qd+\^GY\7\NM$DF\\r\d>\\S1H\ˎ4d	lq9\Lo>)\(f\̟`Y!~a5\"IK\p~Xt\[\8vp\\\9&#4g%w\\GUم=y8\n喽\gqS_<vgE\~ʙsʹWswJ7\c]\\lk]cnlb$wa\Ze{\`צ\\\|T_&0?<I\[\RÍ;\?\Qx%؋5h\s\V_\\f\0Д\-\0HGk&mJ?\	n\%ԙ$rpN\\\&\k\\%)]\M$\\\n~i>Ì\\\,Sgb\\1\'%(d\[-+\\f\\cF\\pӬ-uڙwim0%2\[3\ k\Toz6/3m\'\\i\r\'3sD`\Z9}.HA-\KM\N\'O\Mǽ\~7\3\\8T2m\\?\޽\>$\\߶Ǌ-\)hہӼ<5H@S{tƒ0TZ\nг$\r?ſ`oР\\#\҅\",2pLBl\=Xa\n\0g\\\3TLDJ\.\\EVyq:OY\5ٷ8#|}\\\!0{\zg3d<\H΁\S\\\.PMmЇig-« v~pC\\W\\\+%\\Wl\\\gkD\KyWh.^r\D2\K\5ʵx`\9\\n*jQ7;RX~	y\T\:nq\b]d9\\/k\0\<]\{\0U(.P\'j<@D\\9Xɝ2K\8D\bǴ\	U,+\8`\؝3FjW*R\ˀuH\8\\\\j,K\\2<fDMݶU\5z\\c-t\\\\%}\KY@\\\\!~a#\0[PS\\\nz%\g\Sε%:O\\#IirL2\&hJO\Y<P-\\r\- S\1G\\"8]\\h\k(DTYp2\2\Fmlݣ\!\|\C	\I\rJ\\!rt n\Lt7y^x\ncn\"\'\\)\~E\0gV\Đ`a[v?\r8\"=F;%PξQX\1x5\]\P\Z;K[\bEI.C\\P6܆R=jJrQ	n6\NcuȲxw\C\/\T@\"&qS\\=֧`\n\Q\\\\';\hRw\}Fv\'8;*Qf\a-\\'GT<c\\"5\qD\Z\\>K\gX^o|֊<>H,l@g|7U~\K=\\\2%.\~\)wio\\\ǺUg*]\	\%{\\\"ɸz=+\Z!u!~j9\WK2\nrwkV\\$\\nP|\KX:9\h\"8\(pyr8C\9xlpUNj\\yǧ\Ow8v\γ=:\n\\>< \	~1t0\\c;1<BI\nD\0̄X})\"\H\R1ǅx!	\\w\\\(m&\Q{ż1,\0]2\p:DpqPx:\I\0a[nAL#t薔J(xܝ7O86e6ӞJ1\nƭT\nιK,C7.WG\\*\\r4I\e3^\fYwͥDCF{\ꉵC\׏X#8!&El6y\6KY\G\)\\[YVoq{\r\2~C\\[ă[\\u\\0\L6\𐛊4a6d<\TG2`KVǢ]X\\mBE\QT\\\'z?ȣ80V%suQ\\7Fu{c$\Fy\0\y\`pꍟ,\6	5\-֠!)b\Ԭ#یr\-y\<b\%n[eI[5ʚ\t\/2;*,T\7	J\"\rx,\p\w`\'#W7c \\\r%\"Ve8\n\]\f?Y\3mBK,zpD7H\P\ıD~\Kg\<\\n\1\\U	(\$v\0u\"VnT\`[~\~i@\5*P2L9yu\N\\K\0ޔ\nu\S9t#Fݢ\H[t\`5\'mN@M\Ѧ\"\Zvݢk\1Ojɖ@K\\\\Ov\K&)f]!h++\X䬿\N3qݗN*8X\h5\zFyYU+?\n\oX\Ƀ|OA?>!I9q;d\\\ҼPB\\`;2\eB	l(RKDJ]=Xٙd}|a\"7%AEmO\Vw\Ya\Ƶ\\\\o2An\"Ր-W? =\VJ3\G\ۣ j$_j\[f_-xΚY#Q\\u2`\6Q\\OкHS\nዅUNL9/9`\"挏{\x\\\l\\o\ܾ\p\\uD	\E$`<Toi4\\\\i\\T\\>\t\H@Rt\\)(.\"CN70\,Cí\Y\;T<?\\n$i\C\kJ O\@s2.\\m=\\\m_1e\rl\\|-\\\W}A{kN\‖H\.G+<A\n\\6J̠5K=t\CyW#>\`f(W8K,\0&ݜogVp걓\tp\"<\czq*L4\rBwv5&	\0>/A!	\"\`iN£z\\0k\\\\$F57JFY\0\\\00k\!(OZM}\\\"/V\\"{Y\|\n:PdH5 L\r?Ht:b\\],>NA\Iz\8\hϏ\qcЎM\\\\\=\vE\\\3\\H t\A|\\L$\\'smt\\2J\r6߇\u\w\O	!9\rLr\Vq@TURW\oq(D\	2T?\0\\㕝Xʳ\\'\b\\$\T phD\'\:e8k\0\ز\-/-\\r\OMY\Я7࿥\;9\t\3RJ<:\0E\\yġ\{]-L\0\w\7\Rz){\ڀ4؟\\n\g۫Bt`\ΘU(FA(\_\~\n}T>n\r½=0R\e殢Nv\ Zeީ\A\Zݰ谼sq¹K\4,\8XeQO\\\ѯ\\\CB4GN\Z\|Wl5\}ԫo+\BҀ7\pԫ\\;ޟD=,Id`T`I;\-|F\"\]a8%\\$\9kFP\RgIe88󮿔$\O\zˈPf\\K\qa_yvyF1\\\'\E\\\5\r]};&\	\x\"\I*b\\\\\\\\"aڀ)k^\\\\\!\hWVvd[mg\3\bev\g \2<\\vC\\c)i4j[-n\`\\{\MmN0\"\Z\s5\l,Jj)ۖ\ \\\!DAo\7z?\n+\\%\6\KAQ\lF%nwҜlЮS`\I:Z5	\\\)\ZjJ°ϚM\5Q\\F\a\*\nU@$\rpX:@!5\D\\hLF	xo,\a\%b$$|\'`6\o\*cM8Q7>/N(ξ3\j0kKF*\\\HN\"	`Iñ\+`\oust!_\yLF\0GBl\􁗊\\ÊN\Q\|\\*z}v~5\g\f\\Vg3rSԷ!\SϒvA:h6D|\X\0ҳ\r.p%-X\\5PW\\",(\'C\n*\xݮEA̒~\\	\D\\.0\rW$\nu	O\P\"\\pvFDҶ\y\0;\\\\)\\#\A\\*\\\u!\\0OC\ӧ\\\q\f\\\iz!M\WKS\\Z2u\8$Sz\ùyEPeP kՑ\\(&pRg\0E\;G\([ޭszR-ZRB im+\סzX1t\Zr밎t=\kBNM[61$&8O\ByJ3v,\09\9\\8d\u.\Yh\\\M\cTC~-\"Id\\Iu$E\By/]31Ic\K.jm\f\\\J9\=[\B˛̤\Ca=ŴvO~A0\1k\Q\+$]aDuRŋ\!\"bc\ڂ\\\\#\<JCG_ʔ\&p\&\B\``hN\\\\\'\\S\ZE0GTY\\2)ddf\\'\C\!1{c2EyEX8n\f8\",\r\\\ \'7ڬ^\ `\Z\\+nHy1\\"\Zc9В0\no!>Sy#.k~\-\\lM#~Ab֞Y\\\\n\!\%92t\lދ.ԛ\\\ܦ\(\PD\)<+2\\wU\^\r\Ie\ peop!0\\nm/Ucs]<\'b \@Q\0\\_\aS\rk\\Zx@{\Jσg(-,\\\o:	\\Z9\ \Z6x\.\\^Ntc\>|#3\s\\X\Z\0´~>O+\?\8\7{\Hj\\G\K<)\f~j*\1\\\\ǫ&xI9\瓃1F\\a*\\G+\\\\\\!詗G\/VM\h2p\X5\\\\SXC^	(\\!\F\R0\%XÇ}]a)(`^\10\\\\*>LT\\]V\8\\5i{zj3\GO\\\M{8=<\\\S;\\\\kӓb\\\d\Z\vk\U9ޢ+\ނH\Ϸ\?\\[캕ș]C[-B89\0?m5\+\g\q\a\6o\dk9\\Mڼ?Ԓ,a$\_gf;qxx$Pg-|;\	8r%\<\-a\=T;\N1;+L:r:\\A\\ɿ\\߷ӯ\7~\\1_\T\f	\rVbzTqۀ=n}Kc>7{)^G>2y\0o<=\w7\G\\н\X\%\\骝0\\\mWߠ1^f\\\\N\nmp\)\Nb\tKo	x_\O؎؝DP\ITa\\\s;\Hp>\\Ҵέs2!w5!w\RԪf/ilU\z\\r\\\Qw\YYp\8W\NTՉ:\\\"\L؄\"\\\(J\\.H	:Ky\'Z\9{5<&^\\r?pwTnd\\\ZGS\'CrTm\d~4Unw\{i0|bCQ:\"}:n\\\kQe\}\\\\4\87	5QRs\wݟt2`\\^;qlKᨇg*hl\cأ#.o=`\\fҢ\\\mH2l\)C+kj׃R\r]߿c#\~\\u<\ \k{o}em\z\\\9;\pqwb[2ab7ѯe\Ks\c\0L.ȉ5p\"+2Z]Cf*\p9莲tkR\d$3`.m\'PQ#;ؖ8Gf_\\\oC\\'¤O;\\ZJص:Aw.w\"\|IA;nOAT\y\bo}\\&pf9Nf;elq	T>\ҥkkG\r|\0ro륀h\\rR`\`.\wS{?B9\H<\\M{RX7\<\ǅ\\.\gs\\i/\z\9RZe7M\NHᛟ\\\\\J8\3\9ʩ/֊Y~og\t\W~ۦӫn\)f}Ml\M]6-	%\z\Z	K *i\'C\\\N\HN \0\"9h\	t\!m)]!MY\\AA\m\\Rv>\\\\Ԣ\9{\\v|g~G\\Fm\Z\u,D`PF\y&KDYg[Cn\>\%\۸L{\(\lN^\UJ\\)oC\\r>LMW`8NZ״[\ХOlq\Mx5xyy,n\A+\Z\rfpiPr\+\\G\B\\K\'ﭝAk<\HN\c.N]Ӂ؁iDA&z\}\/\\˹\z&d\l\}\;\\F\<\E\ɪ;\&r\\<؋q(\\\Zl<e\0sټ\\}\"\"VQZq-\M\r]M]oD7JHn\\G\\.mka\\n\`\!{0庣ʌ\\\ =N;@\\w\L\Z\1Ph*i%N\g\B\Ia/\0v\\B\r\a\\7!\\A\\B.\MO\x}5LgdA\\E5\\m\\\'ǔ_\\\l`5ˋ\\(\[\ntY\J/t\\6m\\\\D`X\t\ZnT_T\\n\M`k\h\n	Fs`|>}\};#:nnMӕc\Mc\&%*㊭c<x\\ΥkZ\\s$p\٘b_㷚STw=j;B8*\t\<VMD\2ף~n\\.IAȓjo*\Z[-\rZ\Q0\\\0\g\AXkۮ\|\#\M\\0ɟ\@X\n\\"\rk:2\QSWz~֜\Ϝ2T&}QC\9{̩*\r{K߬dE+#\n5\^qnU\s#\lM\\Z\Ja.:\\AJ\x\\d\ݸ=~\\079׸qk}jT\@\rwT\d\cK\\\n\ZK<\0\/P\\\A\0͖܎`\Uk\\-d*+\\'&w\]LLn\\Ӱ}pa$&$b2\r\\Jo~Զ\\\W!t[RۅSRk;\\5u\0@\7\qk,p>\jp\H\{\0\l\\N\\)Q2\\0	y&\3m]\pe\7\\\C&l\:\()xG\NJtodG\Pk@6\&eg<\r\EB!.]{u\.\V\IL vf[C\횀49\n\N#s,\\4:8L\&=\r^d0HlpCP7\"~>\am\'+HA%\?1\\\͵@E&u\0۬d`b_|3\Ѧi\'d\#R5\τx\B\aGXdC1rY\\\7\*\\\\'l{\\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1496,'2018-05-20 13:23:32',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\y\2a{f{c>I\\'\V\ԟ?~\\&kr_]LS\\\T\\)QM\;lM\deQ\\>+S|*\çH\\SV\\\ݴѩ\;.\SY\\\:Kͬ\/S\?=/\ƍ#7e)Y\U\5AG\x\,e14WI\\\I2\_>Vs\U2rn*]\+_\\\Y>>\\\x\\>\M\eVduSfUR\y\L\d,\\'Mu%&xYq۔\H\\>>~|h#\O+Y|[VKÓ\\\_\\usn\\@\\ˋW\7\j\z}\\Wj\\[]j7mݘdQ\0yru\\\"\U\\*\\}S\t\aYg\#e\\wq7\vL5\?qețEV+7o;fg;@\]LT\\ԪY\W\Ѝ-\\VIeOmݨ1jJ53\nN\\\!k-T\\r\p;\3;\wjk\8I\\"+N8)417\*\U\Rj\\	ˀ\bx\;<B\ayon\\\\qN\\yP\25y\r\/I`nܺWt\01۹No++#ʎS29{R\# \\"\Xrk2E}V\\vr0N$oP\]6\r1]\'Į*]	>}[f4\\r\4\\@\\\rF\vbߖjb<%j\\\\gϷӌf]\%0ifDW\\n:VB]1#\A\\]=8Чȍ\';\\\\ph3S9\\Ďn\.\Z{E\K\1\	\\\0\Sܿ(`y]\;n\q;`V$y\px\cmjЙ8|@`\\\7\ZHI!\\t$\XHlG%b:N!\*X\s5o+8L,\\<\jX;jh\\\F\L\\_8#@v[S\Vz jAe2ӣVUwǀ\^=bG^X\y\8_\R\@{aj\a\J\'w\0)*Un\S\q+\"P)5sFߔFgqV\Z)[sT;\.{Ǥ^\}\w8i`\gu\\\\ۗ\rw89QM>\|\\;\u\\\|w\yqq7MF\;o\wo?M\v\L\\\xg\zס.\\>\E\\俷:$kPz:5`;w\ԃ UYc\wn\8vPP\Z޽$\\M\9\(P\\^\\m+ IYZ\m0{bNVYјdP\\\\n\\\p%]0Br\b֓u0\]˼-hl8a\ikШ\K\"4Y82E\rT\3m|OI\\a }o5\ˤ\rE\\0(59\^jԇP\\:CdH\cRW/\\ըp-\0ڨLY\ Lԏ\\^\$f\y1?\\rǺYI\gvTX/ĥ\\P*n\+\L\\\>;\ \\\H8\hP2\r\$S;\bW咦)\&bs\\\_ۚ&n\rb0\\\!x/?S`_|9`^;\}a\"\yl_MNmlQ`\|Oe΀\nޏ$J\gdI7\&zHc[fP8*\"\\{.\\ۓ\\\Կ\龺#g\0ޗ[|4<\n\10]w\[tb{(_P\~VWWޞ_U{\\\kPSDjz\-Bx}3}{>}.޽7oXjUY\.U\\\~G\'4k\0\\'i\\\0\\ʬ5Ǿ7uJ]=uH\\nmA\-D-Rx\Θpu~\\b2L\`@pj\\1m}DgY\\C1A\0y\p\)4\\9H^\@i\\rQD.ٶ%ϊ\\[nMh\J\zVeI\62jX\,A!2Tw6rڠf\& 1\"@Z\rv\\4Z\WZJ\\\C\,\X\(ֻ`m\\pq\r[ dk\lqZu\"\:޶ʇf1l\#d=nv\ \L\r\%*\n)m\\eΒ\\Qf\\0/\\~2PZhx/k+5\\\@\>\'\.\\LY3zD\\F|/\rp\,b倦\d8%XZ\\N]~Κ0\</%\0@	}D\֩I\j\\.x!;fHftSe\\s6<n>A[v\[!\G0[\\\\r/@X0\"}p[Æd\\\u\=E?Yn\\3\[AW+@\e[N\b\__d\0\7ֿࣛ.5YJ+}Ƈ\?\vȻ?G|\K=fqՄ\8dG\n\\j\OE{\氡 0\x\'\+0\l \qYvRN\\:\M\-\\Z]C\r\\d\0\뼰\\	||tjA\m;\53f\9$mc5\b\\}$\\"\0<\"\	v\&D `>\'&1>\0N\\\nhh\Zf 2*\\Ȏ(ۊT\\\'\O=2<O:GM-)\\\\x젤lƺS\L :yfZ\'\Eê\\\-`;,{dا@\%eumgύSj\P\-7\B\-N\Q}]-\r?}Xd9\0J\l5@N\"\\9ܐ\T/>2L\rZ:{c\\n\\\)\}E\/CwDi$\\׋H\\\"\\\\i,.\^j{>q\	lBc>[Kqc`9\ \\\qэv%l:|Bv\0\\2k\tЕpI\\\k\\'ìƒ\uVWqf\w;\4G-x\\I\\'\"62R|\!\XK<6\0\\E{#c\'¼nЂFY{\"\!\+\Î)\n(WN;6\8vY34O`oEEA[\\t^X\ZSLxɀ\\\30flU\;_?\n\i\"2[\a#Ҏ}>\oN\\ZQk\r!:4\\B\eS$NI\\4uxw\\:\'\r\|[\̈́\H\a\\0G\3N\덖X_n\\\p\X\T,U\0zW\\0ۿe\sU^.c<}\QŎw(%Dh_}$jrծXI`5<kKB\'N8ؑ\r,\\\<T~Baz\7\v\\o\O\\Qd+\^GY\7\NM$DF\\r\d>\\S1H\ˎ4d	lq9\Lo>)\(f\̟`Y!~a5\"IK\p~Xt\[\8vp\\\9&#4g%w\\GUم=y8\n喽\gqS_<vgE\~ʙsʹWswJ7\c]\\lk]cnlb$wa\Ze{\`צ\\\|T_&0?<I\[\RÍ;\?\Qx%؋5h\s\V_\\f\0Д\-\0HGk&mJ?\	n\%ԙ$rpN\\\&\k\\%)]\M$\\\n~i>Ì\\\,Sgb\\1\'%(d\[-+\\f\\cF\\pӬ-uڙwim0%2\[3\ k\Toz6/3m\'\\i\r\'3sD`\Z9}.HA-\KM\N\'O\Mǽ\~7\3\\8T2m\\?\޽\>$\\߶Ǌ-\)hہӼ<5H@S{tƒ0TZ\nг$\r?ſ`oР\\#\҅\",2pLBl\=Xa\n\0g\\\3TLDJ\.\\EVyq:OY\5ٷ8#|}\\\!0{\zg3d<\H΁\S\\\.PMmЇig-« v~pC\\W\\\+%\\Wl\\\gkD\KyWh.^r\D2\K\5ʵx`\9\\n*jQ7;RX~	y\T\:nq\b]d9\\/k\0\<]\{\0U(.P\'j<@D\\9Xɝ2K\8D\bǴ\	U,+\8`\؝3FjW*R\ˀuH\8\\\\j,K\\2<fDMݶU\5z\\c-t\\\\%}\KY@\\\\!~a#\0[PS\\\nz%\g\Sε%:O\\#IirL2\&hJO\Y<P-\\r\- S\1G\\"8]\\h\k(DTYp2\2\Fmlݣ\!\|\C	\I\rJ\\!rt n\Lt7y^x\ncn\"\'\\)\~E\0gV\Đ`a[v?\r8\"=F;%PξQX\1x5\]\P\Z;K[\bEI.C\\P6܆R=jJrQ	n6\NcuȲxw\C\/\T@\"&qS\\=֧`\n\Q\\\\';\hRw\}Fv\'8;*Qf\a-\\'GT<c\\"5\qD\Z\\>K\gX^o|֊<>H,l@g|7U~\K=\\\2%.\~\)wio\\\ǺUg*]\	\%{\\\"ɸz=+\Z!u!~j9\WK2\nrwkV\\$\\nP|\KX:9\h\"8\(pyr8C\9xlpUNj\\yǧ\Ow8v\γ=:\n\\>< \	~1t0\\c;1<BI\nD\0̄X})\"\H\R1ǅx!	\\w\\\(m&\Q{ż1,\0]2\p:DpqPx:\I\0a[nAL#t薔J(xܝ7O86e6ӞJ1\nƭT\nιK,C7.WG\\*\\r4I\e3^\fYwͥDCF{\ꉵC\׏X#8!&El6y\6KY\G\)\\[YVoq{\r\2~C\\[ă[\\u\\0\L6\𐛊4a6d<\TG2`KVǢ]X\\mBE\QT\\\'z?ȣ80V%suQ\\7Fu{c$\Fy\0\y\`pꍟ,\6	5\-֠!)b\Ԭ#یr\-y\<b\%n[eI[5ʚ\t\/2;*,T\7	J\"\rx,\p\w`\'#W7c \\\r%\"Ve8\n\]\f?Y\3mBK,zpD7H\P\ıD~\Kg\<\\n\1\\U	(\$v\0u\"VnT\`[~\~i@\5*P2L9yu\N\\K\0ޔ\nu\S9t#Fݢ\H[t\`5\'mN@M\Ѧ\"\Zvݢk\1Ojɖ@K\\\\Ov\K&)f]!h++\X䬿\N3qݗN*8X\h5\zFyYU+?\n\oX\Ƀ|OA?>!I9q;d\\\ҼPB\\`;2\eB	l(RKDJ]=Xٙd}|a\"7%AEmO\Vw\Ya\Ƶ\\\\o2An\"Ր-W? =\VJ3\G\ۣ j$_j\[f_-xΚY#Q\\u2`\6Q\\OкHS\nዅUNL9/9`\"挏{\x\\\l\\o\ܾ\p\\uD	\E$`<Toi4\\\\i\\T\\>\t\H@Rt\\)(.\"CN70\,Cí\Y\;T<?\\n$i\C\kJ O\@s2.\\m=\\\m_1e\rl\\|-\\\W}A{kN\‖H\.G+<A\n\\6J̠5K=t\CyW#>\`f(W8K,\0&ݜogVp걓\tp\"<\czq*L4\rBwv5&	\0>/A!	\"\`iN£z\\0k\\\\$F57JFY\0\\\00k\!(OZM}\\\"/V\\"{Y\|\n:PdH5 L\r?Ht:b\\],>NA\Iz\8\hϏ\qcЎM\\\\\=\vE\\\3\\H t\A|\\L$\\'smt\\2J\r6߇\u\w\O	!9\rLr\Vq@TURW\oq(D\	2T?\0\\㕝Xʳ\\'\b\\$\T phD\'\:e8k\0\ز\-/-\\r\OMY\Я7࿥\;9\t\3RJ<:\0E\\yġ\{]-L\0\w\7\Rz){\ڀ4؟\\n\g۫Bt`\ΘU(FA(\_\~\n}T>n\r½=0R\e殢Nv\ Zeީ\A\Zݰ谼sq¹K\4,\8XeQO\\\ѯ\\\CB4GN\Z\|Wl5\}ԫo+\BҀ7\pԫ\\;ޟD=,Id`T`I;\-|F\"\]a8%\\$\9kFP\RgIe88󮿔$\O\zˈPf\\K\qa_yvyF1\\\'\E\\\5\r]};&\	\x\"\I*b\\\\\\\\"aڀ)k^\\\\\!\hWVvd[mg\3\bev\g \2<\\vC\\c)i4j[-n\`\\{\MmN0\"\Z\s5\l,Jj)ۖ\ \\\!DAo\7z?\n+\\%\6\KAQ\lF%nwҜlЮS`\I:Z5	\\\)\ZjJ°ϚM\5Q\\F\a\*\nU@$\rpX:@!5\D\\hLF	xo,\a\%b$$|\'`6\o\*cM8Q7>/N(ξ3\j0kKF*\\\HN\"	`Iñ\+`\oust!_\yLF\0GBl\􁗊\\ÊN\Q\|\\*z}v~5\g\f\\Vg3rSԷ!\SϒvA:h6D|\X\0ҳ\r.p%-X\\5PW\\",(\'C\n*\xݮEA̒~\\	\D\\.0\rW$\nu	O\P\"\\pvFDҶ\y\0;\\\\)\\#\A\\*\\\u!\\0OC\ӧ\\\q\f\\\iz!M\WKS\\Z2u\8$Sz\ùyEPeP kՑ\\(&pRg\0E\;G\([ޭszR-ZRB im+\סzX1t\Zr밎t=\kBNM[61$&8O\ByJ3v,\09\9\\8d\u.\Yh\\\M\cTC~-\"Id\\Iu$E\By/]31Ic\K.jm\f\\\J9\=[\B˛̤\Ca=ŴvO~A0\1k\Q\+$]aDuRŋ\!\"bc\ڂ\\\\#\<JCG_ʔ\&p\&\B\``hN\\\\\'\\S\ZE0GTY\\2)ddf\\'\C\!1{c2EyEX8n\f8\",\r\\\ \'7ڬ^\ `\Z\\+nHy1\\"\Zc9В0\no!>Sy#.k~\-\\lM#~Ab֞Y\\\\n\!\%92t\lދ.ԛ\\\ܦ\(\PD\)<+2\\wU\^\r\Ie\ peop!0\\nm/Ucs]<\'b \@Q\0\\_\aS\rk\\Zx@{\Jσg(-,\\\o:	\\Z9\ \Z6x\.\\^Ntc\>|#3\s\\X\Z\0´~>O+\?\8\7{\Hj\\G\K<)\f~j*\1\\\\ǫ&xI9\瓃1F\\a*\\G+\\\\\\!詗G\/VM\h2p\X5\\\\SXC^	(\\!\F\R0\%XÇ}]a)(`^\10\\\\*>LT\\]V\8\\5i{zj3\GO\\\M{8=<\\\S;\\\\kӓb\\\d\Z\vk\U9ޢ+\ނH\Ϸ\?\\[캕ș]C[-B89\0?m5\+\g\q\a\6o\dk9\\Mڼ?Ԓ,a$\_gf;qxx$Pg-|;\	8r%\<\-a\=T;\N1;+L:r:\\A\\ɿ\\߷ӯ\7~\\1_\T\f	\rVbzTqۀ=n}Kc>7{)^G>2y\0o<=\w7\G\\н\X\%\\骝0\\\mWߠ1^f\\\\N\nmp\)\Nb\tKo	x_\O؎؝DP\ITa\\\s;\Hp>\\Ҵέs2!w5!w\RԪf/ilU\z\\r\\\Qw\YYp\8W\NTՉ:\\\"\L؄\"\\\(J\\.H	:Ky\'Z\9{5<&^\\r?pwTnd\\\ZGS\'CrTm\d~4Unw\{i0|bCQ:\"}:n\\\kQe\}\\\\4\87	5QRs\wݟt2`\\^;qlKᨇg*hl\cأ#.o=`\\fҢ\\\mH2l\)C+kj׃R\r]߿c#\~\\u<\ \k{o}em\z\\\9;\pqwb[2ab7ѯe\Ks\c\0L.ȉ5p\"+2Z]Cf*\p9莲tkR\d$3`.m\'PQ#;ؖ8Gf_\\\oC\\'¤O;\\ZJص:Aw.w\"\|IA;nOAT\y\bo}\\&pf9Nf;elq	T>\ҥkkG\r|\0ro륀h\\rR`\`.\wS{?B9\H<\\M{RX7\<\ǅ\\.\gs\\i/\z\9RZe7M\NHᛟ\\\\\J8\3\9ʩ/֊Y~og\t\W~ۦӫn\)f}Ml\M]6-	%\z\Z	K *i\'C\\\N\HN \0\"9h\	t\!m)]!MY\\AA\m\\Rv>\\\\Ԣ\9{\\v|g~G\\Fm\Z\u,D`PF\y&KDYg[Cn\>\%\۸L{\(\lN^\UJ\\)oC\\r>LMW`8NZ״[\ХOlq\Mx5xyy,n\A+\Z\rfpiPr\+\\G\B\\K\'ﭝAk<\HN\c.N]Ӂ؁iDA&z\}\/\\˹\z&d\l\}\;\\F\<\E\ɪ;\&r\\<؋q(\\\Zl<e\0sټ\\}\"\"VQZq-\M\r]M]oD7JHn\\G\\.mka\\n\`\!{0庣ʌ\\\ =N;@\\w\L\Z\1Ph*i%N\g\B\Ia/\0v\\B\r\a\\7!\\A\\B.\MO\x}5LgdA\\E5\\m\\\'ǔ_\\\l`5ˋ\\(\[\ntY\J/t\\6m\\\\D`X\t\ZnT_T\\n\M`k\h\n	Fs`|>}\};#:nnMӕc\Mc\&%*㊭c<x\\ΥkZ\\s$p\٘b_㷚STw=j;B8*\t\<VMD\2ף~n\\.IAȓjo*\Z[-\rZ\Q0\\\0\g\AXkۮ\|\#\M\\0ɟ\@X\n\\"\rk:2\QSWz~֜\Ϝ2T&}QC\9{̩*\r{K߬dE+#\n5\^qnU\s#\lM\\Z\Ja.:\\AJ\x\\d\ݸ=~\\079׸qk}jT\@\rwT\d\cK\\\n\ZK<\0\/P\\\A\0͖܎`\Uk\\-d*+\\'&w\]LLn\\Ӱ}pa$&$b2\r\\Jo~Զ\\\W!t[RۅSRk;\\5u\0@\7\qk,p>\jp\H\{\0\l\\N\\)Q2\\0	y&\3m]\pe\7\\\C&l\:\()xG\NJtodG\Pk@6\&eg<\r\EB!.]{u\.\V\IL vf[C\횀49\n\N#s,\\4:8L\&=\r^d0HlpCP7\"~>\am\'+HA%\?1\\\͵@E&u\0۬d`b_|3\Ѧi\'d\#R5\τx\B\aGXdC1rY\\\7\*\\\\'l{\\','EZ-Page with ID 10 updated.','info'),(1497,'2018-05-20 13:23:32',1,'ezpages.php','ezID=10','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1498,'2018-05-20 13:23:33',1,'ezpages.php','ezID=10','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1499,'2018-05-20 13:24:11',1,'ezpages.php','page=1&ezID=12','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1500,'2018-05-20 13:24:11',1,'ezpages.php','ezID=12&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1501,'2018-05-20 13:24:12',1,'ezpages.php','page=1&ezID=12','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1502,'2018-05-20 13:24:12',1,'ezpages.php','ezID=12&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1503,'2018-05-20 13:25:07',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'V\n$5\H/d\EiaA\	\\H#]=\\n|\\\)g2\!\vNU:\\դv֬^nX}\1~{뙣{\p{\\\~\;Zo\֛\\'v)\$eK\\r\\mv)ļ\|M\p\&9l\\__!䳋y\:Ӄ\\\m|0yt\\\\\!n}\\twk\=)ۮ+JQc1\<\^oS{PnJq{U\i+GkK7/\n`\\\7l\w]\~]\\ ^zHyC:>=\r\Ddj\P\H\ZQ@s(k9&|*#GFt\9(qݯF\Kt.	H%2B\63ͬ\0(5@\0\\\8\"(Kg{nI\v)\{tGuN>fNL\ݒ\81\kCT\9\,\ʇ.:Vr\\l\\M/2<v8f7/F\ZJ\n5?֦ɵ?\\\Zӄ\>t\M\\E>\\V\n;]\nm\z? \[D}A]\\o$\Z<{Īu\\*r_Q~\:K\\aQ\\Y\YgFw2\\\qDgтS4@\"\KԢtȞAՁ&6\"\XjD4?\ :\dJ\s\"{Tb\gG\(\"A\nX#)\ŏLk\[Zu\m\\dE\U\|14%pvɶ$)D`(\Zє5B\\a\=\\e\h\Hju5^0\\<r\\&3#c\n\J؛\\3\Fp3:2\i\ya\",`\\НSrT\Vn+n%[$u$\N\@څ\\\"b2ނ(%\\w*w\'\"^\g]X\T #cFo9 JEcjXPV\\׃N!ߊ\{\>\\4)\ؿl\\^\\'|/&hBb\ly!J\H*%;\'\CIvď1t/\(\ZA2\a<\0\\Y\)\j.\\\nY{6K*u\\u\\Z\\ĝ\ev.\Ww%J-S{rZ\a\Z\\X$&Ⱦ^,\\0M[QCi\teQ\N\\$e\\~@(qr,Q`\A\\\0YK\8?r\\')7\'Ԏ\,\Vۦ\rj1L*B _h*6[S\un\1\\"Җ\"8,y#m\+edO\J\\_\d%\v0忾\N\\\\0','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1504,'2018-05-20 13:25:07',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary 'V\n$5\H/d\EiaA\	\\H#]=\\n|\\\)g2\!\vNU:\\դv֬^nX}\1~{뙣{\p{\\\~\;Zo\֛\\'v)\$eK\\r\\mv)ļ\|M\p\&9l\\__!䳋y\:Ӄ\\\m|0yt\\\\\!n}\\twk\=)ۮ+JQc1\<\^oS{PnJq{U\i+GkK7/\n`\\\7l\w]\~]\\ ^zHyC:>=\r\Ddj\P\H\ZQ@s(k9&|*#GFt\9(qݯF\Kt.	H%2B\63ͬ\0(5@\0\\\8\"(Kg{nI\v)\{tGuN>fNL\ݒ\81\kCT\9\,\ʇ.:Vr\\l\\M/2<v8f7/F\ZJ\n5?֦ɵ?\\\Zӄ\>t\M\\E>\\V\n;]\nm\z? \[D}A]\\o$\Z<{Īu\\*r_Q~\:K\\aQ\\Y\YgFw2\\\qDgтS4@\"\KԢtȞAՁ&6\"\XjD4?\ :\dJ\s\"{Tb\gG\(\"A\nX#)\ŏLk\[Zu\m\\dE\U\|14%pvɶ$)D`(\Zє5B\\a\=\\e\h\Hju5^0\\<r\\&3#c\n\J؛\\3\Fp3:2\i\ya\",`\\НSrT\Vn+n%[$u$\N\@څ\\\"b2ނ(%\\w*w\'\"^\g]X\T #cFo9 JEcjXPV\\׃N!ߊ\{\>\\4)\ؿl\\^\\'|/&hBb\ly!J\H*%;\'\CIvď1t/\(\ZA2\a<\0\\Y\)\j.\\\nY{6K*u\\u\\Z\\ĝ\ev.\Ww%J-S{rZ\a\Z\\X$&Ⱦ^,\\0M[QCi\teQ\N\\$e\\~@(qr,Q`\A\\\0YK\8?r\\')7\'Ԏ\,\Vۦ\rj1L*B _h*6[S\un\1\\"Җ\"8,y#m\+edO\J\\_\d%\v0忾\N\\\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1505,'2018-05-20 13:25:07',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'V\n$5\H/d\EiaA\	\\H#]=\\n|\\\)g2\!\vNU:\\դv֬^nX}\1~{뙣{\p{\\\~\;Zo\֛\\'v)\$eK\\r\\mv)ļ\|M\p\&9l\\__!䳋y\:Ӄ\\\m|0yt\\\\\!n}\\twk\=)ۮ+JQc1\<\^oS{PnJq{U\i+GkK7/\n`\\\7l\w]\~]\\ ^zHyC:>=\r\Ddj\P\H\ZQ@s(k9&|*#GFt\9(qݯF\Kt.	H%2B\63ͬ\0(5@\0\\\8\"(Kg{nI\v)\{tGuN>fNL\ݒ\81\kCT\9\,\ʇ.:Vr\\l\\M/2<v8f7/F\ZJ\n5?֦ɵ?\\\Zӄ\>t\M\\E>\\V\n;]\nm\z? \[D}A]\\o$\Z<{Īu\\*r_Q~\:K\\aQ\\Y\YgFw2\\\qDgтS4@\"\KԢtȞAՁ&6\"\XjD4?\ :\dJ\s\"{Tb\gG\(\"A\nX#)\ŏLk\[Zu\m\\dE\U\|14%pvɶ$)D`(\Zє5B\\a\=\\e\h\Hju5^0\\<r\\&3#c\n\J؛\\3\Fp3:2\i\ya\",`\\НSrT\Vn+n%[$u$\N\@څ\\\"b2ނ(%\\w*w\'\"^\g]X\T #cFo9 JEcjXPV\\׃N!ߊ\{\>\\4)\ؿl\\^\\'|/&hBb\ly!J\H*%;\'\CIvď1t/\(\ZA2\a<\0\\Y\)\j.\\\nY{6K*u\\u\\Z\\ĝ\ev.\Ww%J-S{rZ\a\Z\\X$&Ⱦ^,\\0M[QCi\teQ\N\\$e\\~@(qr,Q`\A\\\0YK\8?r\\')7\'Ԏ\,\Vۦ\rj1L*B _h*6[S\un\1\\"Җ\"8,y#m\+edO\J\\_\d%\v0忾\N\\\\0','EZ-Page with ID 12 updated.','info'),(1506,'2018-05-20 13:25:11',1,'ezpages.php','ezID=12','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1507,'2018-05-20 13:25:11',1,'ezpages.php','ezID=12','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1508,'2018-05-20 13:27:28',1,'ezpages.php','ezID=4&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1509,'2018-05-20 13:27:28',1,'ezpages.php','ezID=4&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1510,'2018-05-20 13:28:07',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'e1\0E23;2\P4bW-BܝФj\Ŗ2\r\I9Y9cd\V\')5<x\coC\X+D-\\r\0	Q!ĉW\\%#\\\\\[:mb9,Gkµ\Fb,\寨v\k\\Zt\nm9H\nE}\0','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1511,'2018-05-20 13:28:07',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary 'e1\0E23;2\P4bW-BܝФj\Ŗ2\r\I9Y9cd\V\')5<x\coC\X+D-\\r\0	Q!ĉW\\%#\\\\\[:mb9,Gkµ\Fb,\寨v\k\\Zt\nm9H\nE}\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1512,'2018-05-20 13:28:07',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'e1\0E23;2\P4bW-BܝФj\Ŗ2\r\I9Y9cd\V\')5<x\coC\X+D-\\r\0	Q!ĉW\\%#\\\\\[:mb9,Gkµ\Fb,\寨v\k\\Zt\nm9H\nE}\0','EZ-Page with ID 4 updated.','info'),(1513,'2018-05-20 13:28:08',1,'ezpages.php','ezID=4','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1514,'2018-05-20 13:28:08',1,'ezpages.php','ezID=4','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1515,'2018-05-20 13:29:17',1,'ezpages.php','page=1&ezID=14','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1516,'2018-05-20 13:29:17',1,'ezpages.php','ezID=14&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1517,'2018-05-20 13:29:18',1,'ezpages.php','page=1&ezID=14','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1518,'2018-05-20 13:29:18',1,'ezpages.php','ezID=14&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1519,'2018-05-20 13:29:42',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'uR\N\0g\Zʁ\\0J76bgB;\\\"(xH>o$&殹mAԣ\'OE\XK\"\ph\"\\>D\*>aaDQO\(/\pV\\/Z	6|83We\on\\XIg\ɟy^\(\Խx\\0G.\<\G\\\4c\Z8G\rQ\c\ZH\]F,\'ť\ڥ\%F9P-L0\\>\oj\W\n\]\\2bU\Z_\C|zn\LCݣ\\M7X\=,i]M.\imF>\\)[Xo2\}N\L]] jJ>\I\O\\','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1520,'2018-05-20 13:29:42',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary 'uR\N\0g\Zʁ\\0J76bgB;\\\"(xH>o$&殹mAԣ\'OE\XK\"\ph\"\\>D\*>aaDQO\(/\pV\\/Z	6|83We\on\\XIg\ɟy^\(\Խx\\0G.\<\G\\\4c\Z8G\rQ\c\ZH\]F,\'ť\ڥ\%F9P-L0\\>\oj\W\n\]\\2bU\Z_\C|zn\LCݣ\\M7X\=,i]M.\imF>\\)[Xo2\}N\L]] jJ>\I\O\\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1521,'2018-05-20 13:29:42',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'uR\N\0g\Zʁ\\0J76bgB;\\\"(xH>o$&殹mAԣ\'OE\XK\"\ph\"\\>D\*>aaDQO\(/\pV\\/Z	6|83We\on\\XIg\ɟy^\(\Խx\\0G.\<\G\\\4c\Z8G\rQ\c\ZH\]F,\'ť\ڥ\%F9P-L0\\>\oj\W\n\]\\2bU\Z_\C|zn\LCݣ\\M7X\=,i]M.\imF>\\)[Xo2\}N\L]] jJ>\I\O\\','EZ-Page with ID 14 updated.','info'),(1522,'2018-05-20 13:29:43',1,'ezpages.php','ezID=14','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1523,'2018-05-20 13:29:43',1,'ezpages.php','ezID=14','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1524,'2018-05-20 13:30:21',1,'ezpages.php','page=1&ezID=9','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1525,'2018-05-20 13:30:21',1,'ezpages.php','ezID=9&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1526,'2018-05-20 13:30:22',1,'ezpages.php','ezID=9&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1527,'2018-05-20 13:30:52',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\Zmo\6+WZ~SMS[ҡE6X<t\PJRa}w8[u\bxw{\x$E\\\](\\I\e\Y\\+$ʙ\ra\n;S\\\nM:\XԱ)\.tN5\/\\\6:c}h\\:\\\ĺ܉1~I\Da\ߖ5\r\Z\g*8Dt6\\r0	.û3Z\t\\ގ.>q\gAxR\ne\)c\'Aws\eU\A\y+#߉}\r)w4OXpZEgձi&6\k\iЭ{+!Ҽ;x\<ٛ_Hst\[zB&%\';Pld4	r7rh,\S+̇2\ʌ$\\Zv2\Ë7\\9\rR$\'\Rxi4|\J}+\`t>=5\\l)cQ\^Arzj\\'\n\H(G-4\\\۟&\(E09H-\R\<#Xd@:2ʔ\lJ\r\&\MxĚ<\"M\\\5\,[3\x\	K\Z39J9$\\zfe@2\\AD#\\r䅥IAƍQ\\=_\n,2\ⶁ\^\Z\E`\	kp0EYS\	V\%\F6Y@j1\}S\\"+sJ\nw&\I	љ)i*\\\\ul\\\"\+\Z-r 8$\j2Pވ\!^O	Rybe\P\\.\kLez\*3~9{i!R¹:Ku\,1\'Q\rx<~4\Bqj-\4\hv\<\u\\\)H\\Aw\\>h\\[R]\A\9b+\wh\]\8CcN\h\&CtN\+\\x\\˥m\d;Y~\\\\u\Z_Wɽ\k1Y\Hv\ٱh8Z\i\1\\'Xv,\nX\\\'hv,6[2fٱ8T[]Kfi\\\n\9o\5\Cm\^$\|\5¥u\vL@hlIk\a3\\\~IR\\'\\v,t\\\Д_\)\\'dv,\_k\+p@o-s\'\\\*!\\4zAu_\ܽ\\m\n\7\$5\\-N錋`\\fto\0ݗ_(&ҥ\|ɺ\'.[ڠc0;Ǽ\\Շ\\\x\n\gT\\hˏ3\\\ֳ\Z\Y5B\\L\O','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1528,'2018-05-20 13:30:52',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary '\Zmo\6+WZ~SMS[ҡE6X<t\PJRa}w8[u\bxw{\x$E\\\](\\I\e\Y\\+$ʙ\ra\n;S\\\nM:\XԱ)\.tN5\/\\\6:c}h\\:\\\ĺ܉1~I\Da\ߖ5\r\Z\g*8Dt6\\r0	.û3Z\t\\ގ.>q\gAxR\ne\)c\'Aws\eU\A\y+#߉}\r)w4OXpZEgձi&6\k\iЭ{+!Ҽ;x\<ٛ_Hst\[zB&%\';Pld4	r7rh,\S+̇2\ʌ$\\Zv2\Ë7\\9\rR$\'\Rxi4|\J}+\`t>=5\\l)cQ\^Arzj\\'\n\H(G-4\\\۟&\(E09H-\R\<#Xd@:2ʔ\lJ\r\&\MxĚ<\"M\\\5\,[3\x\	K\Z39J9$\\zfe@2\\AD#\\r䅥IAƍQ\\=_\n,2\ⶁ\^\Z\E`\	kp0EYS\	V\%\F6Y@j1\}S\\"+sJ\nw&\I	љ)i*\\\\ul\\\"\+\Z-r 8$\j2Pވ\!^O	Rybe\P\\.\kLez\*3~9{i!R¹:Ku\,1\'Q\rx<~4\Bqj-\4\hv\<\u\\\)H\\Aw\\>h\\[R]\A\9b+\wh\]\8CcN\h\&CtN\+\\x\\˥m\d;Y~\\\\u\Z_Wɽ\k1Y\Hv\ٱh8Z\i\1\\'Xv,\nX\\\'hv,6[2fٱ8T[]Kfi\\\n\9o\5\Cm\^$\|\5¥u\vL@hlIk\a3\\\~IR\\'\\v,t\\\Д_\)\\'dv,\_k\+p@o-s\'\\\*!\\4zAu_\ܽ\\m\n\7\$5\\-N錋`\\fto\0ݗ_(&ҥ\|ɺ\'.[ڠc0;Ǽ\\Շ\\\x\n\gT\\hˏ3\\\ֳ\Z\Y5B\\L\O','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1529,'2018-05-20 13:30:52',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\Zmo\6+WZ~SMS[ҡE6X<t\PJRa}w8[u\bxw{\x$E\\\](\\I\e\Y\\+$ʙ\ra\n;S\\\nM:\XԱ)\.tN5\/\\\6:c}h\\:\\\ĺ܉1~I\Da\ߖ5\r\Z\g*8Dt6\\r0	.û3Z\t\\ގ.>q\gAxR\ne\)c\'Aws\eU\A\y+#߉}\r)w4OXpZEgձi&6\k\iЭ{+!Ҽ;x\<ٛ_Hst\[zB&%\';Pld4	r7rh,\S+̇2\ʌ$\\Zv2\Ë7\\9\rR$\'\Rxi4|\J}+\`t>=5\\l)cQ\^Arzj\\'\n\H(G-4\\\۟&\(E09H-\R\<#Xd@:2ʔ\lJ\r\&\MxĚ<\"M\\\5\,[3\x\	K\Z39J9$\\zfe@2\\AD#\\r䅥IAƍQ\\=_\n,2\ⶁ\^\Z\E`\	kp0EYS\	V\%\F6Y@j1\}S\\"+sJ\nw&\I	љ)i*\\\\ul\\\"\+\Z-r 8$\j2Pވ\!^O	Rybe\P\\.\kLez\*3~9{i!R¹:Ku\,1\'Q\rx<~4\Bqj-\4\hv\<\u\\\)H\\Aw\\>h\\[R]\A\9b+\wh\]\8CcN\h\&CtN\+\\x\\˥m\d;Y~\\\\u\Z_Wɽ\k1Y\Hv\ٱh8Z\i\1\\'Xv,\nX\\\'hv,6[2fٱ8T[]Kfi\\\n\9o\5\Cm\^$\|\5¥u\vL@hlIk\a3\\\~IR\\'\\v,t\\\Д_\)\\'dv,\_k\+p@o-s\'\\\*!\\4zAu_\ܽ\\m\n\7\$5\\-N錋`\\fto\0ݗ_(&ҥ\|ɺ\'.[ڠc0;Ǽ\\Շ\\\x\n\gT\\hˏ3\\\ֳ\Z\Y5B\\L\O','EZ-Page with ID 9 updated.','info'),(1530,'2018-05-20 13:30:53',1,'ezpages.php','ezID=9','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1531,'2018-05-20 13:30:53',1,'ezpages.php','ezID=9','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1532,'2018-05-20 13:33:00',1,'ezpages.php','ezID=6&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1533,'2018-05-20 13:33:01',1,'ezpages.php','ezID=6&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1534,'2018-05-20 13:34:10',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'uA\n\0E\"YA\k\Lm ̈́̔Ļ\*\>$sWAߐ\ZuVGQ8̤\i\QkЃ\f\\r\\h\\20JXLj)\nP\xu\\ZPZaI\H^ͬ_W\\n\Ab>湩\\\ZM>\ $g?:\\'\LM^/z<','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1535,'2018-05-20 13:34:11',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary 'uA\n\0E\"YA\k\Lm ̈́̔Ļ\*\>$sWAߐ\ZuVGQ8̤\i\QkЃ\f\\r\\h\\20JXLj)\nP\xu\\ZPZaI\H^ͬ_W\\n\Ab>湩\\\ZM>\ $g?:\\'\LM^/z<','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1536,'2018-05-20 13:34:11',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'uA\n\0E\"YA\k\Lm ̈́̔Ļ\*\>$sWAߐ\ZuVGQ8̤\i\QkЃ\f\\r\\h\\20JXLj)\nP\xu\\ZPZaI\H^ͬ_W\\n\Ab>湩\\\ZM>\ $g?:\\'\LM^/z<','EZ-Page with ID 6 updated.','info'),(1537,'2018-05-20 13:34:11',1,'ezpages.php','ezID=6','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1538,'2018-05-20 13:34:11',1,'ezpages.php','ezID=6','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1539,'2018-05-20 13:37:49',1,'ezpages.php','reset_ez_sort_order=2&action=set_ez_sort_order','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=set_ez_sort_order. Review page_parameters and postdata for details.','info'),(1540,'2018-05-20 13:37:50',1,'ezpages.php','reset_ez_sort_order=2&action=set_ez_sort_order','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1541,'2018-05-20 13:37:50',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1542,'2018-05-20 13:37:51',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1543,'2018-05-20 13:37:59',1,'ezpages.php','reset_ez_sort_order=0&action=set_ez_sort_order','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=set_ez_sort_order. Review page_parameters and postdata for details.','info'),(1544,'2018-05-20 13:37:59',1,'ezpages.php','reset_ez_sort_order=0&action=set_ez_sort_order','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1545,'2018-05-20 13:37:59',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1546,'2018-05-20 13:38:00',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1547,'2018-05-20 13:38:11',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1548,'2018-05-20 13:38:11',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1549,'2018-05-20 13:38:47',1,'flexible_footer_menu.php','','24.72.164.167',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(1550,'2018-05-20 13:38:47',1,'flexible_footer_menu.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1551,'2018-05-20 13:39:57',1,'flexible_footer_menu.php','bID=6&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [flexible_footer_menu.php] with action=new. Review page_parameters and postdata for details.','info'),(1552,'2018-05-20 13:39:57',1,'flexible_footer_menu.php','bID=6&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1553,'2018-05-20 13:40:40',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1554,'2018-05-20 13:40:41',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1555,'2018-05-20 13:42:04',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(1556,'2018-05-20 13:42:04',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1557,'2018-05-20 13:48:13',1,'configuration.php','gID=5','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1558,'2018-05-20 13:48:13',1,'configuration.php','gID=5','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1559,'2018-05-20 13:48:25',1,'configuration.php','gID=30','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1560,'2018-05-20 13:48:26',1,'configuration.php','gID=30','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1561,'2018-05-20 13:48:37',1,'configuration.php','gID=30&cID=534&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1562,'2018-05-20 13:48:37',1,'configuration.php','gID=30&cID=534&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1563,'2018-05-20 13:50:54',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1564,'2018-05-20 13:50:54',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1565,'2018-05-20 13:51:12',1,'ezpages.php','action=status_footer&current=0&ezID=7&page=1','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_footer. Review page_parameters and postdata for details.','info'),(1566,'2018-05-20 13:51:12',1,'ezpages.php','action=status_footer&current=0&ezID=7&page=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1567,'2018-05-20 13:51:12',1,'ezpages.php','action=status_footer&current=0&ezID=7&page=1','24.72.164.167',0,'',_binary '\0','EZ-Page ID 7 [status_footer] changed to 1','info'),(1568,'2018-05-20 13:51:12',1,'ezpages.php','page=1&ezID=7','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1569,'2018-05-20 13:51:13',1,'ezpages.php','page=1&ezID=7','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1570,'2018-05-20 13:51:37',1,'ezpages.php','action=status_sidebox&current=0&ezID=4&page=1','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_sidebox. Review page_parameters and postdata for details.','info'),(1571,'2018-05-20 13:51:37',1,'ezpages.php','action=status_sidebox&current=0&ezID=4&page=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1572,'2018-05-20 13:51:37',1,'ezpages.php','action=status_sidebox&current=0&ezID=4&page=1','24.72.164.167',0,'',_binary '\0','EZ-Page ID 4 [status_sidebox] changed to 1','info'),(1573,'2018-05-20 13:51:38',1,'ezpages.php','page=1&ezID=4','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1574,'2018-05-20 13:51:38',1,'ezpages.php','page=1&ezID=4','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1575,'2018-05-20 13:52:06',1,'ezpages.php','action=status_toc&current=0&ezID=12&page=1','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_toc. Review page_parameters and postdata for details.','info'),(1576,'2018-05-20 13:52:07',1,'ezpages.php','action=status_toc&current=0&ezID=12&page=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1577,'2018-05-20 13:52:07',1,'ezpages.php','action=status_toc&current=0&ezID=12&page=1','24.72.164.167',0,'',_binary '\0','EZ-Page ID 12 [status_toc] changed to 1','info'),(1578,'2018-05-20 13:52:07',1,'ezpages.php','page=1&ezID=12','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1579,'2018-05-20 13:52:08',1,'ezpages.php','page=1&ezID=12','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1580,'2018-05-20 14:08:18',0,'login.php ','camefrom=flexible_footer_menu.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(1581,'2018-05-20 14:08:18',0,'login.php ','camefrom=flexible_footer_menu.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1582,'2018-05-20 14:08:37',0,'login.php Eagle','camefrom=flexible_footer_menu.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\OI350K2L45MM407N47M6NL0671LJ14P\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=dodf506b1a55ea073a75c3ac837429bd10. Review page_parameters and postdata for details.','info'),(1583,'2018-05-20 14:08:37',0,'login.php Eagle','camefrom=flexible_footer_menu.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\OI350K2L45MM407N47M6NL0671LJ14P\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1584,'2018-05-20 14:08:38',1,'flexible_footer_menu.php','','24.72.164.167',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(1585,'2018-05-20 14:08:38',1,'flexible_footer_menu.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1586,'2018-05-20 14:09:17',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(1587,'2018-05-20 14:09:18',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1588,'2018-05-20 14:09:54',1,'configuration.php','gID=25','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1589,'2018-05-20 14:09:55',1,'configuration.php','gID=25','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1590,'2018-05-20 14:10:06',1,'configuration.php','gID=25&cID=529&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1591,'2018-05-20 14:10:06',1,'configuration.php','gID=25&cID=529&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1592,'2018-05-20 14:11:08',1,'configuration.php','gID=25&cID=529&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1593,'2018-05-20 14:11:08',1,'configuration.php','gID=25&cID=529&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1594,'2018-05-20 14:11:15',1,'configuration.php','gID=25&cID=529&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2V\Q*.M\\,qqusptw7q	\r\0*\\\\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(1595,'2018-05-20 14:11:15',1,'configuration.php','gID=25&cID=529&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2V\Q*.M\\,qqusptw7q	\r\0*\\\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1596,'2018-05-20 14:11:15',1,'configuration.php','gID=25&cID=529&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2V\Q*.M\\,qqusptw7q	\r\0*\\\\0','Configuration setting changed for DEFINE_PAGE_2_STATUS: 3','warning'),(1597,'2018-05-20 14:11:16',1,'configuration.php','gID=25&cID=529','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1598,'2018-05-20 14:11:16',1,'configuration.php','gID=25&cID=529','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1599,'2018-05-20 14:11:18',1,'configuration.php','gID=25&cID=530&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1600,'2018-05-20 14:11:18',1,'configuration.php','gID=25&cID=530&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1601,'2018-05-20 14:11:23',1,'configuration.php','gID=25&cID=530&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2V\Q*.M\\,qqusptw7q	\r\0*11ů\T\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(1602,'2018-05-20 14:11:23',1,'configuration.php','gID=25&cID=530&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2V\Q*.M\\,qqusptw7q	\r\0*11ů\T\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1603,'2018-05-20 14:11:23',1,'configuration.php','gID=25&cID=530&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2V\Q*.M\\,qqusptw7q	\r\0*11ů\T\0','Configuration setting changed for DEFINE_PAGE_3_STATUS: 3','warning'),(1604,'2018-05-20 14:11:23',1,'configuration.php','gID=25&cID=530','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1605,'2018-05-20 14:11:24',1,'configuration.php','gID=25&cID=530','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1606,'2018-05-20 14:11:26',1,'configuration.php','gID=25&cID=531&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1607,'2018-05-20 14:11:26',1,'configuration.php','gID=25&cID=531&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1608,'2018-05-20 14:11:31',1,'configuration.php','gID=25&cID=531&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2V\Q*.M\\,qqusptw7q	\r\0)1ů\D\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(1609,'2018-05-20 14:11:32',1,'configuration.php','gID=25&cID=531&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2V\Q*.M\\,qqusptw7q	\r\0)1ů\D\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1610,'2018-05-20 14:11:32',1,'configuration.php','gID=25&cID=531&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2V\Q*.M\\,qqusptw7q	\r\0)1ů\D\0','Configuration setting changed for DEFINE_PAGE_4_STATUS: 3','warning'),(1611,'2018-05-20 14:11:32',1,'configuration.php','gID=25&cID=531','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1612,'2018-05-20 14:11:32',1,'configuration.php','gID=25&cID=531','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1613,'2018-05-20 14:13:37',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1614,'2018-05-20 14:13:37',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1615,'2018-05-20 14:25:37',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1616,'2018-05-20 14:25:38',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1617,'2018-05-20 14:37:03',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1618,'2018-05-20 14:37:04',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1619,'2018-05-20 14:48:56',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1620,'2018-05-20 14:48:56',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1621,'2018-05-20 14:55:32',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1622,'2018-05-20 14:55:33',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1623,'2018-05-20 15:12:51',0,'login.php ','camefrom=ezpages.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(1624,'2018-05-20 15:12:52',0,'login.php ','camefrom=ezpages.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1625,'2018-05-20 15:13:13',0,'login.php Eagle','camefrom=ezpages.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\74247O00M5L47HM13603L545H2160W\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do492177b805e1a70ed633861e150b4307. Review page_parameters and postdata for details.','info'),(1626,'2018-05-20 15:13:14',0,'login.php Eagle','camefrom=ezpages.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\74247O00M5L47HM13603L545H2160W\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1627,'2018-05-20 15:13:14',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1628,'2018-05-20 15:13:15',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1629,'2018-05-20 15:13:47',1,'ezpages.php','page=1&ezID=10','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1630,'2018-05-20 15:13:47',1,'ezpages.php','page=1&ezID=10','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1631,'2018-05-20 15:13:48',1,'ezpages.php','page=1&ezID=10','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1632,'2018-05-20 15:13:48',1,'ezpages.php','page=1&ezID=10','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1633,'2018-05-20 15:14:00',1,'ezpages.php','page=1&ezID=10&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1634,'2018-05-20 15:14:00',1,'ezpages.php','page=1&ezID=10&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1635,'2018-05-20 15:15:05',1,'ezpages.php','page=1&ezID=10','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1636,'2018-05-20 15:15:05',1,'ezpages.php','page=1&ezID=10','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1637,'2018-05-20 15:15:09',1,'configuration.php','gID=1','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1638,'2018-05-20 15:15:09',1,'configuration.php','gID=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1639,'2018-05-20 15:15:47',1,'configuration.php','gID=30','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1640,'2018-05-20 15:15:48',1,'configuration.php','gID=30','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1641,'2018-05-20 15:16:07',1,'configuration.php','gID=30&cID=541','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1642,'2018-05-20 15:16:08',1,'configuration.php','gID=30&cID=541','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1643,'2018-05-20 15:17:02',1,'configuration.php','gID=30&cID=534','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1644,'2018-05-20 15:17:03',1,'configuration.php','gID=30&cID=534','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1645,'2018-05-20 15:17:30',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1646,'2018-05-20 15:17:30',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1647,'2018-05-20 15:18:13',1,'configuration.php','gID=3','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1648,'2018-05-20 15:18:13',1,'configuration.php','gID=3','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1649,'2018-05-20 15:18:26',1,'configuration.php','gID=31','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1650,'2018-05-20 15:18:27',1,'configuration.php','gID=31','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1651,'2018-05-20 15:18:41',1,'configuration.php','gID=31&cID=548&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1652,'2018-05-20 15:18:42',1,'configuration.php','gID=31&cID=548&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1653,'2018-05-20 15:18:49',1,'configuration.php','gID=31&cID=547&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1654,'2018-05-20 15:18:49',1,'configuration.php','gID=31&cID=547&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1655,'2018-05-20 15:18:52',1,'configuration.php','gID=31&cID=546&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1656,'2018-05-20 15:18:53',1,'configuration.php','gID=31&cID=546&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1657,'2018-05-20 15:18:59',1,'configuration.php','gID=31&cID=546','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1658,'2018-05-20 15:18:59',1,'configuration.php','gID=31&cID=546','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1659,'2018-05-20 15:19:13',1,'configuration.php','gID=25','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1660,'2018-05-20 15:19:13',1,'configuration.php','gID=25','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1661,'2018-05-20 15:19:47',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1662,'2018-05-20 15:19:48',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1663,'2018-05-20 15:24:07',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1664,'2018-05-20 15:24:08',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1665,'2018-05-20 15:25:42',1,'ezpages.php','page=1&ezID=10','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1666,'2018-05-20 15:25:42',1,'ezpages.php','page=1&ezID=10','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1667,'2018-05-20 15:25:47',1,'ezpages.php','page=1&ezID=10&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1668,'2018-05-20 15:25:47',1,'ezpages.php','page=1&ezID=10&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1669,'2018-05-20 15:26:42',1,'ezpages.php','page=1&action=update','24.72.164.167',0,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\y\2a{f{c>I\\'\V\ԟ?~\\&kr_]LS\\\T\\)QM\;lM\deQ\\>+S|*\çH\\SV\\\ݴѩ\;.\SY\\\:Kͬ\/S\?=/\ƍ\g\\L>%j??\H\OE\?5\s\f*\u]6	f\\\cwnVj@EU\\Mz\k|Z4\\g\ӹ\gi̊nޣӬJ*=oԙl%ĵ\\~\\"+n3Cw\\\g\ÏϞm~i%~So\jsx\v7X˟>>n\흝\z}y\\\Z\W\/}JMߞ\\޾{\?_mF\0,\n O]J\;\VEs\v ~jV95\y\o=.s\.Օ\\"1nby\j\\m\\LV*Z52*\\\\ \*) ղ4QMfF+\\?d͂^\n.uu|fgN-t\rC\'	Cd\I\'&\\\Ueb\9jsXJm\<aXzG\;,\\m\:\\x_5jY&\w\#I\M[ኁn f;\I\\B\me`S\1qJf>GpoT\b]{KUn_H\j<r\\N\ɗ\\rJߦ\4\\UqUe+8A§o\\F\ޘfQvTި\\\\vP_\\r__D\T~|69\sѱ~ì+&Mӌ\\n\\AǊP\n3fd;\\\s1}>\\t\'\U;\#uv^\!\0\rf0G\\\U#`\EC\TyS;fW:U\ {\n7\,>K\c\\<n̊$oSNxM\r:Ж\F)i d:؜\Z\D\\QL\c\\\"$]K\y\m\]\[\rkG\9Ө\\;\s\uk\\JV-lRB\pzt_\\n>\\@٫G^\\</Sc\AZ\h6@M=Lt\\\\\F\0Q1EŴ\\r{J:nE*a\H1\R\\,7\\J#%bK8xj\'\e\+o\a\'\rlA_\ᬎ2q~y}\?\\\{R_\'\'?\އ׻{Ͽ\\\\\\?/.ƣ\\t|\\\-\\\Λ\_w\\\LTX\:ԥ۞\G\=CV\d\rJoP砱l\z\\2k,n\M\0\\\n\nXûę	7\"G{\kmp$)KMwX\	\*+\ZS\n9<\\A2\+FHNU\zn¶\vKt\rǟ6,br:m\r\Z[`I\0R7\&KrG\|&\r\)#\{8q\\O\y\\"\0!\\\\0A\]\ZAgr(i<`L\\%<\Zδ`P\\CVU%t\|\KҌ</S\'\XW_5+i#̎\n\~\\\^W\-|	\\|\g5Rqg\`)\0gq\r*\"Wf[Θdjv\\@L\\\43\Dl\\=}k[\ĭAf2X8d\0\\#u\n싯>\U\0\k?\Td8\\\\\052\nL)ж\P~S\#@,\F\d\\BW/il\j3\0CEמ+bυQb{2|v}5\WWp\\r\O\'_8\y끮PlO\\J\\\\\\\˿*`/^z?}\r\rHBM\\\\Ehooϧ\\\Ż\\\\c\Wm*k\e\TJ5r48t\߀ԙ\\\脦r\r wD4mx\Z\}\\&\濮^K.`ޠ\]\r0œs_\n\\0..oPW	t\>\\\@\y?\\ޢ\,Ky\"`0\!( o;C0f=\\\(A7\%۶\YQ|kͰ	M\YI\\Ϫ,\FF\r%\6DJ\`\fQN\\\D6P\@\ΰ+r\V\JX\9|(+\zM<\~6 a>lm-NnW\y@\۶VU\,}ҡ\\\4Tώ\7ɾPE!혼\Y<]5\l`\0\\Bq\\2UJ\r\\c\xB\\\\\\\\\)~Fh܈\\ְ\1E\u\K+\ݩ\X\YF\\0(\:5\]\^\\#d7\Ɍn{\\\\g h\\\ykr>d9cvbbY:@A\k!\QD\0\!nkؐ\\@T>v3N\Z^S\Vhb\0\\'ˍ\U;UzF0|w\A>\j\l07IXl\ \W\\0|t\W\2Ki/\P\'yGo=t	\l5\@u\\0l\Vk1@\r#ੈc\\6\|?;\!K\Nj\\yYgc\0]`s\\0}v\!0πN-(m瀂\2w1\qf\\8M4q_Ft\v\\V\XD~1>\\\\G\;\4B\.ل\\\$\\0\\[\rmA\DF\e[j==D\GT\\^\i\%Qޚ=u<YS\XwW	DG7\L\dhXژ`_¸ae\b\\\qqJP-\p\qܰ\Y٣\)<p!JK\,3`0\_I\0-h1\I+\\G\\cҾ!^+R\#wo,\?1\Y{\1@0a/ e\(Dz\^$}=5>Ņ\Kc\\?n=\rBh\gk)nL,>v\y!8.\\VMO\\!xTp-1?\y8|\rđs\\3\XѸ\\\2ά2c=\\ `_|;\D\FF*<D+`ig\\W\\h/wd\@Wp>\0\\MZ\(k@d;x\x\\?%\M\\i>\FǮ kFӁ\	\\ͰH(\~[\"\K]kw	O10[Xz\L*zG\\'WB:\r\TPD\>Wf;lD\qհ2\)Y#`\2D瓆Kljd\i1)\vX\v\\}o뻙09̂\\H}\	|\\\+\-0ؽnטŰ\n\0C\\`wuz\\"\\eo<\DW\c(\r\\Tm@\\W1irFgM~\\C^BwQ\\\	;r\tBPE؛GPb\\B(L/B\.zM#\\\!ʀl\7\݋\(pVcSޝԩvU\\{^X2\"]nQ\T<y\4\\vّ,-.\\\'\"e\3\1+\/ FuVO6i\Z\~x\\K \d\\䎱6~\\1*0\'\Rܲ,p#t\\\\O9Sq\snTq6\.Ti&y\ۚm\r#b,\MM\.\Sl\\\\\! \9\v\0	{\A\Yjq\'G\a\#\n{1~\{N܊+Ҭ@\"\0\h-@\DM\g6\"0\\rZD:DnΉ\\Dym\\dR\0e+Vd5\X0-gq\\e\Ll]\Z##\%yeE\ٌ}|\(vn\._;3._\r&$C\}k\d\r\M\\eba͒\DB<\d&w\vL#>\)Ev`i\\\䩺\\\\f{f9|Jf\o~\ջ7ۇ\_{\XO\`%s;m;pח\	h\ns~\SSހ\X\PKz\\l\r\Z\z|\\SdE0IhM@+L\\kJȗP\庼h\*O1\uT\')\&gdSO\:f[\l\\i\9\wK\%\r\0\Ex\Ώ\nV\\=rxŀ;#\}]{_\\0s({2\\n\ūUH\yI\6XV́rbP9vTAA-&qBʢ\0\/!\vJQ\\ nZ\,g|\a\r@\x`\n\\D(H8#T\ai\\~\\옶\ \ne\0L53\p\H\JB\qPZec2#\\ǌȳB?ؠ۶ʠF\=z\N;|6$Ϝ#q)Y\{\"9$CVBޯ0q\0`\2vJ\UzX!\_\\L\A>ʹD\Kp$)M7\IM\Z\23%q%Wpd\n;>\hYGp\u@\Ӄy\r*_X&\\A{]M1M{\"y(:Aˢ2D\m\>\\Oa\\\rC\=e\Qկ\\\*,5l\\\ZGd\b*\\1?J<\\\0K\ZJ#cqi[절A0\e\\ʆ\P\nǣ^C)A!\"A\\F\il\Y\n\c\\%\\\V\$n*\8\9\L1:\\\d\'Mj\\\\\d\U~E\\"\\=첥܁\"D㈊gL\\\;\V#}\\ti+ \Z>\\r \\/RPb88<\C\e\\79\.-py\\X7ꬴ\U[?dr\uK$WϿgE#@.20R\T`@\6\'U^ X\j	XF\M\\u͊К5ar\\rC#a	BR\#M3\!X\'.>Og9\\T\ \\.\\yO7ѳGG\Z]ׇ\>!ߵ\\#ƞz}\r\'gB(I \/eBD\X*\\/$n\\\Z-ׄ#\0v9*vo7f\UQ~.\noC#	 r\=7HViݒP	\\	gҦL\f\\A)FJa\\9w%w\\\\(\\\Ӻ!>	ػls\+\,K\0N4V\q\U\hO[=vhk\'\dTȴ\&ςB4\&~\ \\;z+\\-ΖqOaYFv\oH6:\\\qUx0u\pz9B\"\3n\Z`\Zi\rSq3̆g;\\H\h\\Xk?@\rB:*BDSyƪd5~\n4\n}\\\so\wd\(`</0uN\\5f\\Z4$E\7udQ%/G,\-b,i˶\^Y_\\N\_fG\wJ&AIY\ONld\b\YDĊ\\Ta#\\۾R\\'}MHibEHw\\\8\z\\LZ?Y<f<*\P5U|\nNd\ʍ\bbS50\Z\2c˯P\د\"M3FJƂ)\'\\ɚ{	O\\r\\;`*\`[iQb\\\7-ة=ڴ\^Xˮ[t\9&R\r5\h\\]|\\n4\}\d7\,b+\m\a\Ё\\\r\u0\I\\\\\U\(/#v\GA\\"k:yПO)\\\S5!)\'\=v!#BY\\qY7@8pGfL#\rEPj\S\'+;3Lأ/L\Ĕc?(\\\\\<+Sڸ֒ݹMQ&5\M\ZE\\G\Ji&\|{\0\BMdKpC\|\\\Y\1k$\@fW\&\Ԟ	\Zi\@!|ʉ)\\!LĜq\\\8cc\{\.[7(p}(L^j-F!68 <JX\Nwc\ZiH\6=\\EdHwwt\\%bhվ:+#`*u?>\G\\\\$\Sbc\{M\c䩑B6QhN\%;M\ &SQQ>\\e\\n/hOwͩ\\\\e\hr\'@r0\#^;\Fu{(\j\g\\\*\'wc\֪N=vRWSy#bN}L/N钦A\ή\$U2\\e#($Ad\Z,͉BxQ\Z`\r\Ȣ\FIQ\\2`!]\0fw9\?\0\)QK\\\[do\\"UPAʃl\\\Y\G\0NGP\غ\q12\\u\);Iog\s\M\=n\Ѷ)\\CWx\'qخ(w[B}Ƽ	!/ٝ\\d\19~\\d[\\F\6Pnt3)!d\5gI\\*\2\u\0_\\nU-#(;Ac\\x?{2TQy\YLWB\nn>褢Y\s\r\[\`:\I)K\Z3Vb\a\'nx\^JGG\Z;#8tzS\A\Z\\\\J/%\\\]A\\l{U\\\n\(\\\؏0R\\\\wAF,R\\U\\\B\;5=H\Xw.X8w)\c\,\)[\1zy~!UH\iSX\\u\nBFzumeXhQ\Z\F\Z\z\\Wy\\@4),\nl6iǽ\R\HD+LĿ\7\'\"pͨaS\,\lgg\d)\\oq\b#.\K?\.\(fc\({[koǤ`1OsQ\<I%^1yػ]R;X$8P0em\\+<#?u61\\n3\0\\\lM\\|wFZL,\\\\\#\"\npy,%F@-v볅֭<=Wzܵ\	&Q^S\}\\\fTI-e۲d^\\\8(6\ m؞3F\_a\Yu\\3\<`I7\ >;mӨ\\Nsr\\u\n;	\TRV 9E^_IYӿɣ&*\迲9L]ۭ\n(+X6V\00C\\r\\(\\8Rd\d\0l\&mZe	\'\n#4t\Ƨ\i\\W\\\\r\c\c\\\HEB\I$a,i8V}%\n8\k\qC\#	#\\H\\\u>R\ZC{X\)5J^\t^ZEoO/\ί\\\\\\lFn6x!v\YҮ7H͆@zְ\\딜xFꊝ`CWd\M}\u ж4Y\C\"AH~z܅s\DA>A\^ZJ\w\\ިSږ=\`G]قz9}xĻ>ȵp\VeV4}x.>17\|\)7q}4@\3n\L\[7\\B/2)\ji[And*T/c87WHJԶ\ndM:\\0\N\A{爚\V\0e˻uNoREKjP$mE\:T+7\\SCnֱN\~b\Qȩi¦8\穷~cP\0OS	sƎ G>\\,T\6ޥ \\YyjȯE$l8颎䱗\X(\k&&	rb\C\l\z@Y\1Ǹr+£:Chy|(\'YW\\\/8w-<\n?(Nxq;dq\CDl\\[\:`|}\AI\\\U\ ܤ\\<\$[\\}uͩ\ۚ\0xJ\*]&,X\L\ĹcWb\`T:$voL(\M\Gd\\0כ\\A\\S6L\z!|E\\r)T5&\\^c,ZA\\\-?\g*0\D\e\\:Ki\/H\\3kYa1:$GN\ךm\{хzX۔ZHU<geB{\\~j]իYQ8I^\\r.c]\%^jl\s\a\1S\\"(5\?\n;>\`a\ru[h\X	yp%~`M\'K\!\'DÆo\%\ˉnw,\\o$s{<VK\@\\i\'17?f{\Um^\\x\'\\\,\OMe |yx\3)gQ|r0ƈ+Luev[ܔ+;=\`Ū	\Mf\0\7XFy\nk\+\\"tبX\n\\ܴkp+,3\\/#\;CŇ\\"\n6xٹˊG<&\rv>VOm\\ݜ]iǰ=|j\Oy\uzrB\"\bѝX~Z\ ~\n-_#\[4`\\\\[s\6\·3=]9Ӡ+c\tEg?\೭}\Lѵ8.;T\歚L`-\ھ\\SZe?d\lc\lp\'n\"~O\*o\֑;A\?\^n$G%\w\)fg	2\_GNGp<0\<8ב\q\\\v\/`#拜\n\;\L?\[\*^,~B\6ng~­oi\\f/\K\\G&\\S\~\\\5h\\\Z\}D|Cu8x4]FR\\4\\l\iv\\ѭ\r\<\I\>R.Su\Pt-ok	\J8	*l\4}\~=3Xrn	\gպ[ֹu\^4\F 31\.YZ\\ž MjY/vX\\=\\6=+\\Z\\n\鑊:QG]dtW	0Q\]EI\0Ag)\D<s\\k\4\В\m\\ Y[\h\a*21dH\͛,׏_\-|/\PߒOs(JGaO_\m\:zM#oy`\&&jv\Cj.}2\N\}\k\`?\m\4L\r\z{bե\\\LZKI߳6E\tqevsM\zRWX\wrlr$\\Ogd>cm/4\p\\\O\X9gG.\NlK&\Q\&a{iv.y\9ѵ.U\wVqQFk\L\Z.\QNb\\^j$r\ХM\*jd\\\\\ԸmhDI`G\\C	V\'\\\NĚo6i76h!\\\2~\z\o#Y\#\$\,\'\	\2-?\"\ʇµ\\ԑu-r\AQFm\~\T.W\n\\,\\ҥnj\gP(\|kiO\n\0G|⸐\%l\\\"\\\O;GJ\i\		\7|3TZ\q\[	\\0v{&X9G9\\Zq\ \\t\7T.\\/w\tzuS\Mא9\֬\\M[˦%\\$|@\ \P#a	D%\$u(]\r\Љ	\	$pW$;\n\\>-5+)k:(h\5\\\\z}?5{Z4t=\aO#\.Qӡ\l\\ިM}LxaQ\H<\Ϥq4k2`k4\\4t\\'_^wܱD{i\\>]\\«JIqv<:\mȺa\g\\n\\Tk\\w-N	\7/\\\ӣ8>h%\\\,\r.\rJ}\~eR(T=|\併3\v헇\|\	}\ũk:;p57\D/]o@%x9[τ\roc\\ș\=Yb\\\\D\\\5W~w\{Q><\BYâ,8`\p.\\OD\\n>J+ɗ\[뱩\\\Q\\m\(c>]إm-l\"YaL\2䗢p\\w\^`@P\Z\ZC\)^v{ޛ	U\;\7^M%픃\Il]\=)\.7TH\3=\5&\; \z6\\\\\\ﰆ\,\]\ 7\[ہD\\rfy\Zey\R.\Y\.~\\f~}N\ύꋪ\m\6	l\rM\\6\\\qwO֧O\6vgD\'\\֭	~wUi,\$D\\\UrbO҃6rѹt\TzN\0q\6S\kVs\㮰grpvpUmGGeǪ]\z\\\\-{\\0\%ib>y2W\MRcAKx!J&\{\0@:rkm\5\\`\c\A |KB\9XnWGUvQf=jJ/׏ޚsS\ʤo1j(74g9\B\uo雕1,Ӱ\\u\qsD\\\7n\"ѭc\Rq\W#i\\\\]I4̥UG\0H\0/ڃ\\L\\b׵\o&\\Z7nO\Ԓ\n(Zl\xlYAc\'\E\a8ْ\캪u\rLe@\diV\M|y\Z.ĄDL]\Z]Im\ҏڶғ#WZ=\*n+\V\`rJjMBuu\0\:nm\v\Z\r\	\t\@r-\\#=A7%J\w\ !\$}k8.ѡ!\f\sڃ}au\\ضmsXG\>o\H\	\Sɠ\m,\hVj\r\fڤ\lWZ.PH(0ĥv\\݊;	\Nrwk(]^`#gQ\	rd\xFǖi\䶧\68\rn\U\\g:ͱ\d)跾\\\'&=X\\0ȳȤ.`LLOwf<ڴr4\q\B\n&\\ϚU8l7F>>K_~\S[\?mo^','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1670,'2018-05-20 15:26:42',1,'ezpages.php','page=1&action=update','24.72.164.167',1,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\y\2a{f{c>I\\'\V\ԟ?~\\&kr_]LS\\\T\\)QM\;lM\deQ\\>+S|*\çH\\SV\\\ݴѩ\;.\SY\\\:Kͬ\/S\?=/\ƍ\g\\L>%j??\H\OE\?5\s\f*\u]6	f\\\cwnVj@EU\\Mz\k|Z4\\g\ӹ\gi̊nޣӬJ*=oԙl%ĵ\\~\\"+n3Cw\\\g\ÏϞm~i%~So\jsx\v7X˟>>n\흝\z}y\\\Z\W\/}JMߞ\\޾{\?_mF\0,\n O]J\;\VEs\v ~jV95\y\o=.s\.Օ\\"1nby\j\\m\\LV*Z52*\\\\ \*) ղ4QMfF+\\?d͂^\n.uu|fgN-t\rC\'	Cd\I\'&\\\Ueb\9jsXJm\<aXzG\;,\\m\:\\x_5jY&\w\#I\M[ኁn f;\I\\B\me`S\1qJf>GpoT\b]{KUn_H\j<r\\N\ɗ\\rJߦ\4\\UqUe+8A§o\\F\ޘfQvTި\\\\vP_\\r__D\T~|69\sѱ~ì+&Mӌ\\n\\AǊP\n3fd;\\\s1}>\\t\'\U;\#uv^\!\0\rf0G\\\U#`\EC\TyS;fW:U\ {\n7\,>K\c\\<n̊$oSNxM\r:Ж\F)i d:؜\Z\D\\QL\c\\\"$]K\y\m\]\[\rkG\9Ө\\;\s\uk\\JV-lRB\pzt_\\n>\\@٫G^\\</Sc\AZ\h6@M=Lt\\\\\F\0Q1EŴ\\r{J:nE*a\H1\R\\,7\\J#%bK8xj\'\e\+o\a\'\rlA_\ᬎ2q~y}\?\\\{R_\'\'?\އ׻{Ͽ\\\\\\?/.ƣ\\t|\\\-\\\Λ\_w\\\LTX\:ԥ۞\G\=CV\d\rJoP砱l\z\\2k,n\M\0\\\n\nXûę	7\"G{\kmp$)KMwX\	\*+\ZS\n9<\\A2\+FHNU\zn¶\vKt\rǟ6,br:m\r\Z[`I\0R7\&KrG\|&\r\)#\{8q\\O\y\\"\0!\\\\0A\]\ZAgr(i<`L\\%<\Zδ`P\\CVU%t\|\KҌ</S\'\XW_5+i#̎\n\~\\\^W\-|	\\|\g5Rqg\`)\0gq\r*\"Wf[Θdjv\\@L\\\43\Dl\\=}k[\ĭAf2X8d\0\\#u\n싯>\U\0\k?\Td8\\\\\052\nL)ж\P~S\#@,\F\d\\BW/il\j3\0CEמ+bυQb{2|v}5\WWp\\r\O\'_8\y끮PlO\\J\\\\\\\˿*`/^z?}\r\rHBM\\\\Ehooϧ\\\Ż\\\\c\Wm*k\e\TJ5r48t\߀ԙ\\\脦r\r wD4mx\Z\}\\&\濮^K.`ޠ\]\r0œs_\n\\0..oPW	t\>\\\@\y?\\ޢ\,Ky\"`0\!( o;C0f=\\\(A7\%۶\YQ|kͰ	M\YI\\Ϫ,\FF\r%\6DJ\`\fQN\\\D6P\@\ΰ+r\V\JX\9|(+\zM<\~6 a>lm-NnW\y@\۶VU\,}ҡ\\\4Tώ\7ɾPE!혼\Y<]5\l`\0\\Bq\\2UJ\r\\c\xB\\\\\\\\\)~Fh܈\\ְ\1E\u\K+\ݩ\X\YF\\0(\:5\]\^\\#d7\Ɍn{\\\\g h\\\ykr>d9cvbbY:@A\k!\QD\0\!nkؐ\\@T>v3N\Z^S\Vhb\0\\'ˍ\U;UzF0|w\A>\j\l07IXl\ \W\\0|t\W\2Ki/\P\'yGo=t	\l5\@u\\0l\Vk1@\r#ੈc\\6\|?;\!K\Nj\\yYgc\0]`s\\0}v\!0πN-(m瀂\2w1\qf\\8M4q_Ft\v\\V\XD~1>\\\\G\;\4B\.ل\\\$\\0\\[\rmA\DF\e[j==D\GT\\^\i\%Qޚ=u<YS\XwW	DG7\L\dhXژ`_¸ae\b\\\qqJP-\p\qܰ\Y٣\)<p!JK\,3`0\_I\0-h1\I+\\G\\cҾ!^+R\#wo,\?1\Y{\1@0a/ e\(Dz\^$}=5>Ņ\Kc\\?n=\rBh\gk)nL,>v\y!8.\\VMO\\!xTp-1?\y8|\rđs\\3\XѸ\\\2ά2c=\\ `_|;\D\FF*<D+`ig\\W\\h/wd\@Wp>\0\\MZ\(k@d;x\x\\?%\M\\i>\FǮ kFӁ\	\\ͰH(\~[\"\K]kw	O10[Xz\L*zG\\'WB:\r\TPD\>Wf;lD\qհ2\)Y#`\2D瓆Kljd\i1)\vX\v\\}o뻙09̂\\H}\	|\\\+\-0ؽnטŰ\n\0C\\`wuz\\"\\eo<\DW\c(\r\\Tm@\\W1irFgM~\\C^BwQ\\\	;r\tBPE؛GPb\\B(L/B\.zM#\\\!ʀl\7\݋\(pVcSޝԩvU\\{^X2\"]nQ\T<y\4\\vّ,-.\\\'\"e\3\1+\/ FuVO6i\Z\~x\\K \d\\䎱6~\\1*0\'\Rܲ,p#t\\\\O9Sq\snTq6\.Ti&y\ۚm\r#b,\MM\.\Sl\\\\\! \9\v\0	{\A\Yjq\'G\a\#\n{1~\{N܊+Ҭ@\"\0\h-@\DM\g6\"0\\rZD:DnΉ\\Dym\\dR\0e+Vd5\X0-gq\\e\Ll]\Z##\%yeE\ٌ}|\(vn\._;3._\r&$C\}k\d\r\M\\eba͒\DB<\d&w\vL#>\)Ev`i\\\䩺\\\\f{f9|Jf\o~\ջ7ۇ\_{\XO\`%s;m;pח\	h\ns~\SSހ\X\PKz\\l\r\Z\z|\\SdE0IhM@+L\\kJȗP\庼h\*O1\uT\')\&gdSO\:f[\l\\i\9\wK\%\r\0\Ex\Ώ\nV\\=rxŀ;#\}]{_\\0s({2\\n\ūUH\yI\6XV́rbP9vTAA-&qBʢ\0\/!\vJQ\\ nZ\,g|\a\r@\x`\n\\D(H8#T\ai\\~\\옶\ \ne\0L53\p\H\JB\qPZec2#\\ǌȳB?ؠ۶ʠF\=z\N;|6$Ϝ#q)Y\{\"9$CVBޯ0q\0`\2vJ\UzX!\_\\L\A>ʹD\Kp$)M7\IM\Z\23%q%Wpd\n;>\hYGp\u@\Ӄy\r*_X&\\A{]M1M{\"y(:Aˢ2D\m\>\\Oa\\\rC\=e\Qկ\\\*,5l\\\ZGd\b*\\1?J<\\\0K\ZJ#cqi[절A0\e\\ʆ\P\nǣ^C)A!\"A\\F\il\Y\n\c\\%\\\V\$n*\8\9\L1:\\\d\'Mj\\\\\d\U~E\\"\\=첥܁\"D㈊gL\\\;\V#}\\ti+ \Z>\\r \\/RPb88<\C\e\\79\.-py\\X7ꬴ\U[?dr\uK$WϿgE#@.20R\T`@\6\'U^ X\j	XF\M\\u͊К5ar\\rC#a	BR\#M3\!X\'.>Og9\\T\ \\.\\yO7ѳGG\Z]ׇ\>!ߵ\\#ƞz}\r\'gB(I \/eBD\X*\\/$n\\\Z-ׄ#\0v9*vo7f\UQ~.\noC#	 r\=7HViݒP	\\	gҦL\f\\A)FJa\\9w%w\\\\(\\\Ӻ!>	ػls\+\,K\0N4V\q\U\hO[=vhk\'\dTȴ\&ςB4\&~\ \\;z+\\-ΖqOaYFv\oH6:\\\qUx0u\pz9B\"\3n\Z`\Zi\rSq3̆g;\\H\h\\Xk?@\rB:*BDSyƪd5~\n4\n}\\\so\wd\(`</0uN\\5f\\Z4$E\7udQ%/G,\-b,i˶\^Y_\\N\_fG\wJ&AIY\ONld\b\YDĊ\\Ta#\\۾R\\'}MHibEHw\\\8\z\\LZ?Y<f<*\P5U|\nNd\ʍ\bbS50\Z\2c˯P\د\"M3FJƂ)\'\\ɚ{	O\\r\\;`*\`[iQb\\\7-ة=ڴ\^Xˮ[t\9&R\r5\h\\]|\\n4\}\d7\,b+\m\a\Ё\\\r\u0\I\\\\\U\(/#v\GA\\"k:yПO)\\\S5!)\'\=v!#BY\\qY7@8pGfL#\rEPj\S\'+;3Lأ/L\Ĕc?(\\\\\<+Sڸ֒ݹMQ&5\M\ZE\\G\Ji&\|{\0\BMdKpC\|\\\Y\1k$\@fW\&\Ԟ	\Zi\@!|ʉ)\\!LĜq\\\8cc\{\.[7(p}(L^j-F!68 <JX\Nwc\ZiH\6=\\EdHwwt\\%bhվ:+#`*u?>\G\\\\$\Sbc\{M\c䩑B6QhN\%;M\ &SQQ>\\e\\n/hOwͩ\\\\e\hr\'@r0\#^;\Fu{(\j\g\\\*\'wc\֪N=vRWSy#bN}L/N钦A\ή\$U2\\e#($Ad\Z,͉BxQ\Z`\r\Ȣ\FIQ\\2`!]\0fw9\?\0\)QK\\\[do\\"UPAʃl\\\Y\G\0NGP\غ\q12\\u\);Iog\s\M\=n\Ѷ)\\CWx\'qخ(w[B}Ƽ	!/ٝ\\d\19~\\d[\\F\6Pnt3)!d\5gI\\*\2\u\0_\\nU-#(;Ac\\x?{2TQy\YLWB\nn>褢Y\s\r\[\`:\I)K\Z3Vb\a\'nx\^JGG\Z;#8tzS\A\Z\\\\J/%\\\]A\\l{U\\\n\(\\\؏0R\\\\wAF,R\\U\\\B\;5=H\Xw.X8w)\c\,\)[\1zy~!UH\iSX\\u\nBFzumeXhQ\Z\F\Z\z\\Wy\\@4),\nl6iǽ\R\HD+LĿ\7\'\"pͨaS\,\lgg\d)\\oq\b#.\K?\.\(fc\({[koǤ`1OsQ\<I%^1yػ]R;X$8P0em\\+<#?u61\\n3\0\\\lM\\|wFZL,\\\\\#\"\npy,%F@-v볅֭<=Wzܵ\	&Q^S\}\\\fTI-e۲d^\\\8(6\ m؞3F\_a\Yu\\3\<`I7\ >;mӨ\\Nsr\\u\n;	\TRV 9E^_IYӿɣ&*\迲9L]ۭ\n(+X6V\00C\\r\\(\\8Rd\d\0l\&mZe	\'\n#4t\Ƨ\i\\W\\\\r\c\c\\\HEB\I$a,i8V}%\n8\k\qC\#	#\\H\\\u>R\ZC{X\)5J^\t^ZEoO/\ί\\\\\\lFn6x!v\YҮ7H͆@zְ\\딜xFꊝ`CWd\M}\u ж4Y\C\"AH~z܅s\DA>A\^ZJ\w\\ިSږ=\`G]قz9}xĻ>ȵp\VeV4}x.>17\|\)7q}4@\3n\L\[7\\B/2)\ji[And*T/c87WHJԶ\ndM:\\0\N\A{爚\V\0e˻uNoREKjP$mE\:T+7\\SCnֱN\~b\Qȩi¦8\穷~cP\0OS	sƎ G>\\,T\6ޥ \\YyjȯE$l8颎䱗\X(\k&&	rb\C\l\z@Y\1Ǹr+£:Chy|(\'YW\\\/8w-<\n?(Nxq;dq\CDl\\[\:`|}\AI\\\U\ ܤ\\<\$[\\}uͩ\ۚ\0xJ\*]&,X\L\ĹcWb\`T:$voL(\M\Gd\\0כ\\A\\S6L\z!|E\\r)T5&\\^c,ZA\\\-?\g*0\D\e\\:Ki\/H\\3kYa1:$GN\ךm\{хzX۔ZHU<geB{\\~j]իYQ8I^\\r.c]\%^jl\s\a\1S\\"(5\?\n;>\`a\ru[h\X	yp%~`M\'K\!\'DÆo\%\ˉnw,\\o$s{<VK\@\\i\'17?f{\Um^\\x\'\\\,\OMe |yx\3)gQ|r0ƈ+Luev[ܔ+;=\`Ū	\Mf\0\7XFy\nk\+\\"tبX\n\\ܴkp+,3\\/#\;CŇ\\"\n6xٹˊG<&\rv>VOm\\ݜ]iǰ=|j\Oy\uzrB\"\bѝX~Z\ ~\n-_#\[4`\\\\[s\6\·3=]9Ӡ+c\tEg?\೭}\Lѵ8.;T\歚L`-\ھ\\SZe?d\lc\lp\'n\"~O\*o\֑;A\?\^n$G%\w\)fg	2\_GNGp<0\<8ב\q\\\v\/`#拜\n\;\L?\[\*^,~B\6ng~­oi\\f/\K\\G&\\S\~\\\5h\\\Z\}D|Cu8x4]FR\\4\\l\iv\\ѭ\r\<\I\>R.Su\Pt-ok	\J8	*l\4}\~=3Xrn	\gպ[ֹu\^4\F 31\.YZ\\ž MjY/vX\\=\\6=+\\Z\\n\鑊:QG]dtW	0Q\]EI\0Ag)\D<s\\k\4\В\m\\ Y[\h\a*21dH\͛,׏_\-|/\PߒOs(JGaO_\m\:zM#oy`\&&jv\Cj.}2\N\}\k\`?\m\4L\r\z{bե\\\LZKI߳6E\tqevsM\zRWX\wrlr$\\Ogd>cm/4\p\\\O\X9gG.\NlK&\Q\&a{iv.y\9ѵ.U\wVqQFk\L\Z.\QNb\\^j$r\ХM\*jd\\\\\ԸmhDI`G\\C	V\'\\\NĚo6i76h!\\\2~\z\o#Y\#\$\,\'\	\2-?\"\ʇµ\\ԑu-r\AQFm\~\T.W\n\\,\\ҥnj\gP(\|kiO\n\0G|⸐\%l\\\"\\\O;GJ\i\		\7|3TZ\q\[	\\0v{&X9G9\\Zq\ \\t\7T.\\/w\tzuS\Mא9\֬\\M[˦%\\$|@\ \P#a	D%\$u(]\r\Љ	\	$pW$;\n\\>-5+)k:(h\5\\\\z}?5{Z4t=\aO#\.Qӡ\l\\ިM}LxaQ\H<\Ϥq4k2`k4\\4t\\'_^wܱD{i\\>]\\«JIqv<:\mȺa\g\\n\\Tk\\w-N	\7/\\\ӣ8>h%\\\,\r.\rJ}\~eR(T=|\併3\v헇\|\	}\ũk:;p57\D/]o@%x9[τ\roc\\ș\=Yb\\\\D\\\5W~w\{Q><\BYâ,8`\p.\\OD\\n>J+ɗ\[뱩\\\Q\\m\(c>]إm-l\"YaL\2䗢p\\w\^`@P\Z\ZC\)^v{ޛ	U\;\7^M%픃\Il]\=)\.7TH\3=\5&\; \z6\\\\\\ﰆ\,\]\ 7\[ہD\\rfy\Zey\R.\Y\.~\\f~}N\ύꋪ\m\6	l\rM\\6\\\qwO֧O\6vgD\'\\֭	~wUi,\$D\\\UrbO҃6rѹt\TzN\0q\6S\kVs\㮰grpvpUmGGeǪ]\z\\\\-{\\0\%ib>y2W\MRcAKx!J&\{\0@:rkm\5\\`\c\A |KB\9XnWGUvQf=jJ/׏ޚsS\ʤo1j(74g9\B\uo雕1,Ӱ\\u\qsD\\\7n\"ѭc\Rq\W#i\\\\]I4̥UG\0H\0/ڃ\\L\\b׵\o&\\Z7nO\Ԓ\n(Zl\xlYAc\'\E\a8ْ\캪u\rLe@\diV\M|y\Z.ĄDL]\Z]Im\ҏڶғ#WZ=\*n+\V\`rJjMBuu\0\:nm\v\Z\r\	\t\@r-\\#=A7%J\w\ !\$}k8.ѡ!\f\sڃ}au\\ضmsXG\>o\H\	\Sɠ\m,\hVj\r\fڤ\lWZ.PH(0ĥv\\݊;	\Nrwk(]^`#gQ\	rd\xFǖi\䶧\68\rn\U\\g:ͱ\d)跾\\\'&=X\\0ȳȤ.`LLOwf<ڴr4\q\B\n&\\ϚU8l7F>>K_~\S[\?mo^','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1671,'2018-05-20 15:26:42',1,'ezpages.php','page=1&action=update','24.72.164.167',0,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\y\2a{f{c>I\\'\V\ԟ?~\\&kr_]LS\\\T\\)QM\;lM\deQ\\>+S|*\çH\\SV\\\ݴѩ\;.\SY\\\:Kͬ\/S\?=/\ƍ\g\\L>%j??\H\OE\?5\s\f*\u]6	f\\\cwnVj@EU\\Mz\k|Z4\\g\ӹ\gi̊nޣӬJ*=oԙl%ĵ\\~\\"+n3Cw\\\g\ÏϞm~i%~So\jsx\v7X˟>>n\흝\z}y\\\Z\W\/}JMߞ\\޾{\?_mF\0,\n O]J\;\VEs\v ~jV95\y\o=.s\.Օ\\"1nby\j\\m\\LV*Z52*\\\\ \*) ղ4QMfF+\\?d͂^\n.uu|fgN-t\rC\'	Cd\I\'&\\\Ueb\9jsXJm\<aXzG\;,\\m\:\\x_5jY&\w\#I\M[ኁn f;\I\\B\me`S\1qJf>GpoT\b]{KUn_H\j<r\\N\ɗ\\rJߦ\4\\UqUe+8A§o\\F\ޘfQvTި\\\\vP_\\r__D\T~|69\sѱ~ì+&Mӌ\\n\\AǊP\n3fd;\\\s1}>\\t\'\U;\#uv^\!\0\rf0G\\\U#`\EC\TyS;fW:U\ {\n7\,>K\c\\<n̊$oSNxM\r:Ж\F)i d:؜\Z\D\\QL\c\\\"$]K\y\m\]\[\rkG\9Ө\\;\s\uk\\JV-lRB\pzt_\\n>\\@٫G^\\</Sc\AZ\h6@M=Lt\\\\\F\0Q1EŴ\\r{J:nE*a\H1\R\\,7\\J#%bK8xj\'\e\+o\a\'\rlA_\ᬎ2q~y}\?\\\{R_\'\'?\އ׻{Ͽ\\\\\\?/.ƣ\\t|\\\-\\\Λ\_w\\\LTX\:ԥ۞\G\=CV\d\rJoP砱l\z\\2k,n\M\0\\\n\nXûę	7\"G{\kmp$)KMwX\	\*+\ZS\n9<\\A2\+FHNU\zn¶\vKt\rǟ6,br:m\r\Z[`I\0R7\&KrG\|&\r\)#\{8q\\O\y\\"\0!\\\\0A\]\ZAgr(i<`L\\%<\Zδ`P\\CVU%t\|\KҌ</S\'\XW_5+i#̎\n\~\\\^W\-|	\\|\g5Rqg\`)\0gq\r*\"Wf[Θdjv\\@L\\\43\Dl\\=}k[\ĭAf2X8d\0\\#u\n싯>\U\0\k?\Td8\\\\\052\nL)ж\P~S\#@,\F\d\\BW/il\j3\0CEמ+bυQb{2|v}5\WWp\\r\O\'_8\y끮PlO\\J\\\\\\\˿*`/^z?}\r\rHBM\\\\Ehooϧ\\\Ż\\\\c\Wm*k\e\TJ5r48t\߀ԙ\\\脦r\r wD4mx\Z\}\\&\濮^K.`ޠ\]\r0œs_\n\\0..oPW	t\>\\\@\y?\\ޢ\,Ky\"`0\!( o;C0f=\\\(A7\%۶\YQ|kͰ	M\YI\\Ϫ,\FF\r%\6DJ\`\fQN\\\D6P\@\ΰ+r\V\JX\9|(+\zM<\~6 a>lm-NnW\y@\۶VU\,}ҡ\\\4Tώ\7ɾPE!혼\Y<]5\l`\0\\Bq\\2UJ\r\\c\xB\\\\\\\\\)~Fh܈\\ְ\1E\u\K+\ݩ\X\YF\\0(\:5\]\^\\#d7\Ɍn{\\\\g h\\\ykr>d9cvbbY:@A\k!\QD\0\!nkؐ\\@T>v3N\Z^S\Vhb\0\\'ˍ\U;UzF0|w\A>\j\l07IXl\ \W\\0|t\W\2Ki/\P\'yGo=t	\l5\@u\\0l\Vk1@\r#ੈc\\6\|?;\!K\Nj\\yYgc\0]`s\\0}v\!0πN-(m瀂\2w1\qf\\8M4q_Ft\v\\V\XD~1>\\\\G\;\4B\.ل\\\$\\0\\[\rmA\DF\e[j==D\GT\\^\i\%Qޚ=u<YS\XwW	DG7\L\dhXژ`_¸ae\b\\\qqJP-\p\qܰ\Y٣\)<p!JK\,3`0\_I\0-h1\I+\\G\\cҾ!^+R\#wo,\?1\Y{\1@0a/ e\(Dz\^$}=5>Ņ\Kc\\?n=\rBh\gk)nL,>v\y!8.\\VMO\\!xTp-1?\y8|\rđs\\3\XѸ\\\2ά2c=\\ `_|;\D\FF*<D+`ig\\W\\h/wd\@Wp>\0\\MZ\(k@d;x\x\\?%\M\\i>\FǮ kFӁ\	\\ͰH(\~[\"\K]kw	O10[Xz\L*zG\\'WB:\r\TPD\>Wf;lD\qհ2\)Y#`\2D瓆Kljd\i1)\vX\v\\}o뻙09̂\\H}\	|\\\+\-0ؽnטŰ\n\0C\\`wuz\\"\\eo<\DW\c(\r\\Tm@\\W1irFgM~\\C^BwQ\\\	;r\tBPE؛GPb\\B(L/B\.zM#\\\!ʀl\7\݋\(pVcSޝԩvU\\{^X2\"]nQ\T<y\4\\vّ,-.\\\'\"e\3\1+\/ FuVO6i\Z\~x\\K \d\\䎱6~\\1*0\'\Rܲ,p#t\\\\O9Sq\snTq6\.Ti&y\ۚm\r#b,\MM\.\Sl\\\\\! \9\v\0	{\A\Yjq\'G\a\#\n{1~\{N܊+Ҭ@\"\0\h-@\DM\g6\"0\\rZD:DnΉ\\Dym\\dR\0e+Vd5\X0-gq\\e\Ll]\Z##\%yeE\ٌ}|\(vn\._;3._\r&$C\}k\d\r\M\\eba͒\DB<\d&w\vL#>\)Ev`i\\\䩺\\\\f{f9|Jf\o~\ջ7ۇ\_{\XO\`%s;m;pח\	h\ns~\SSހ\X\PKz\\l\r\Z\z|\\SdE0IhM@+L\\kJȗP\庼h\*O1\uT\')\&gdSO\:f[\l\\i\9\wK\%\r\0\Ex\Ώ\nV\\=rxŀ;#\}]{_\\0s({2\\n\ūUH\yI\6XV́rbP9vTAA-&qBʢ\0\/!\vJQ\\ nZ\,g|\a\r@\x`\n\\D(H8#T\ai\\~\\옶\ \ne\0L53\p\H\JB\qPZec2#\\ǌȳB?ؠ۶ʠF\=z\N;|6$Ϝ#q)Y\{\"9$CVBޯ0q\0`\2vJ\UzX!\_\\L\A>ʹD\Kp$)M7\IM\Z\23%q%Wpd\n;>\hYGp\u@\Ӄy\r*_X&\\A{]M1M{\"y(:Aˢ2D\m\>\\Oa\\\rC\=e\Qկ\\\*,5l\\\ZGd\b*\\1?J<\\\0K\ZJ#cqi[절A0\e\\ʆ\P\nǣ^C)A!\"A\\F\il\Y\n\c\\%\\\V\$n*\8\9\L1:\\\d\'Mj\\\\\d\U~E\\"\\=첥܁\"D㈊gL\\\;\V#}\\ti+ \Z>\\r \\/RPb88<\C\e\\79\.-py\\X7ꬴ\U[?dr\uK$WϿgE#@.20R\T`@\6\'U^ X\j	XF\M\\u͊К5ar\\rC#a	BR\#M3\!X\'.>Og9\\T\ \\.\\yO7ѳGG\Z]ׇ\>!ߵ\\#ƞz}\r\'gB(I \/eBD\X*\\/$n\\\Z-ׄ#\0v9*vo7f\UQ~.\noC#	 r\=7HViݒP	\\	gҦL\f\\A)FJa\\9w%w\\\\(\\\Ӻ!>	ػls\+\,K\0N4V\q\U\hO[=vhk\'\dTȴ\&ςB4\&~\ \\;z+\\-ΖqOaYFv\oH6:\\\qUx0u\pz9B\"\3n\Z`\Zi\rSq3̆g;\\H\h\\Xk?@\rB:*BDSyƪd5~\n4\n}\\\so\wd\(`</0uN\\5f\\Z4$E\7udQ%/G,\-b,i˶\^Y_\\N\_fG\wJ&AIY\ONld\b\YDĊ\\Ta#\\۾R\\'}MHibEHw\\\8\z\\LZ?Y<f<*\P5U|\nNd\ʍ\bbS50\Z\2c˯P\د\"M3FJƂ)\'\\ɚ{	O\\r\\;`*\`[iQb\\\7-ة=ڴ\^Xˮ[t\9&R\r5\h\\]|\\n4\}\d7\,b+\m\a\Ё\\\r\u0\I\\\\\U\(/#v\GA\\"k:yПO)\\\S5!)\'\=v!#BY\\qY7@8pGfL#\rEPj\S\'+;3Lأ/L\Ĕc?(\\\\\<+Sڸ֒ݹMQ&5\M\ZE\\G\Ji&\|{\0\BMdKpC\|\\\Y\1k$\@fW\&\Ԟ	\Zi\@!|ʉ)\\!LĜq\\\8cc\{\.[7(p}(L^j-F!68 <JX\Nwc\ZiH\6=\\EdHwwt\\%bhվ:+#`*u?>\G\\\\$\Sbc\{M\c䩑B6QhN\%;M\ &SQQ>\\e\\n/hOwͩ\\\\e\hr\'@r0\#^;\Fu{(\j\g\\\*\'wc\֪N=vRWSy#bN}L/N钦A\ή\$U2\\e#($Ad\Z,͉BxQ\Z`\r\Ȣ\FIQ\\2`!]\0fw9\?\0\)QK\\\[do\\"UPAʃl\\\Y\G\0NGP\غ\q12\\u\);Iog\s\M\=n\Ѷ)\\CWx\'qخ(w[B}Ƽ	!/ٝ\\d\19~\\d[\\F\6Pnt3)!d\5gI\\*\2\u\0_\\nU-#(;Ac\\x?{2TQy\YLWB\nn>褢Y\s\r\[\`:\I)K\Z3Vb\a\'nx\^JGG\Z;#8tzS\A\Z\\\\J/%\\\]A\\l{U\\\n\(\\\؏0R\\\\wAF,R\\U\\\B\;5=H\Xw.X8w)\c\,\)[\1zy~!UH\iSX\\u\nBFzumeXhQ\Z\F\Z\z\\Wy\\@4),\nl6iǽ\R\HD+LĿ\7\'\"pͨaS\,\lgg\d)\\oq\b#.\K?\.\(fc\({[koǤ`1OsQ\<I%^1yػ]R;X$8P0em\\+<#?u61\\n3\0\\\lM\\|wFZL,\\\\\#\"\npy,%F@-v볅֭<=Wzܵ\	&Q^S\}\\\fTI-e۲d^\\\8(6\ m؞3F\_a\Yu\\3\<`I7\ >;mӨ\\Nsr\\u\n;	\TRV 9E^_IYӿɣ&*\迲9L]ۭ\n(+X6V\00C\\r\\(\\8Rd\d\0l\&mZe	\'\n#4t\Ƨ\i\\W\\\\r\c\c\\\HEB\I$a,i8V}%\n8\k\qC\#	#\\H\\\u>R\ZC{X\)5J^\t^ZEoO/\ί\\\\\\lFn6x!v\YҮ7H͆@zְ\\딜xFꊝ`CWd\M}\u ж4Y\C\"AH~z܅s\DA>A\^ZJ\w\\ިSږ=\`G]قz9}xĻ>ȵp\VeV4}x.>17\|\)7q}4@\3n\L\[7\\B/2)\ji[And*T/c87WHJԶ\ndM:\\0\N\A{爚\V\0e˻uNoREKjP$mE\:T+7\\SCnֱN\~b\Qȩi¦8\穷~cP\0OS	sƎ G>\\,T\6ޥ \\YyjȯE$l8颎䱗\X(\k&&	rb\C\l\z@Y\1Ǹr+£:Chy|(\'YW\\\/8w-<\n?(Nxq;dq\CDl\\[\:`|}\AI\\\U\ ܤ\\<\$[\\}uͩ\ۚ\0xJ\*]&,X\L\ĹcWb\`T:$voL(\M\Gd\\0כ\\A\\S6L\z!|E\\r)T5&\\^c,ZA\\\-?\g*0\D\e\\:Ki\/H\\3kYa1:$GN\ךm\{хzX۔ZHU<geB{\\~j]իYQ8I^\\r.c]\%^jl\s\a\1S\\"(5\?\n;>\`a\ru[h\X	yp%~`M\'K\!\'DÆo\%\ˉnw,\\o$s{<VK\@\\i\'17?f{\Um^\\x\'\\\,\OMe |yx\3)gQ|r0ƈ+Luev[ܔ+;=\`Ū	\Mf\0\7XFy\nk\+\\"tبX\n\\ܴkp+,3\\/#\;CŇ\\"\n6xٹˊG<&\rv>VOm\\ݜ]iǰ=|j\Oy\uzrB\"\bѝX~Z\ ~\n-_#\[4`\\\\[s\6\·3=]9Ӡ+c\tEg?\೭}\Lѵ8.;T\歚L`-\ھ\\SZe?d\lc\lp\'n\"~O\*o\֑;A\?\^n$G%\w\)fg	2\_GNGp<0\<8ב\q\\\v\/`#拜\n\;\L?\[\*^,~B\6ng~­oi\\f/\K\\G&\\S\~\\\5h\\\Z\}D|Cu8x4]FR\\4\\l\iv\\ѭ\r\<\I\>R.Su\Pt-ok	\J8	*l\4}\~=3Xrn	\gպ[ֹu\^4\F 31\.YZ\\ž MjY/vX\\=\\6=+\\Z\\n\鑊:QG]dtW	0Q\]EI\0Ag)\D<s\\k\4\В\m\\ Y[\h\a*21dH\͛,׏_\-|/\PߒOs(JGaO_\m\:zM#oy`\&&jv\Cj.}2\N\}\k\`?\m\4L\r\z{bե\\\LZKI߳6E\tqevsM\zRWX\wrlr$\\Ogd>cm/4\p\\\O\X9gG.\NlK&\Q\&a{iv.y\9ѵ.U\wVqQFk\L\Z.\QNb\\^j$r\ХM\*jd\\\\\ԸmhDI`G\\C	V\'\\\NĚo6i76h!\\\2~\z\o#Y\#\$\,\'\	\2-?\"\ʇµ\\ԑu-r\AQFm\~\T.W\n\\,\\ҥnj\gP(\|kiO\n\0G|⸐\%l\\\"\\\O;GJ\i\		\7|3TZ\q\[	\\0v{&X9G9\\Zq\ \\t\7T.\\/w\tzuS\Mא9\֬\\M[˦%\\$|@\ \P#a	D%\$u(]\r\Љ	\	$pW$;\n\\>-5+)k:(h\5\\\\z}?5{Z4t=\aO#\.Qӡ\l\\ިM}LxaQ\H<\Ϥq4k2`k4\\4t\\'_^wܱD{i\\>]\\«JIqv<:\mȺa\g\\n\\Tk\\w-N	\7/\\\ӣ8>h%\\\,\r.\rJ}\~eR(T=|\併3\v헇\|\	}\ũk:;p57\D/]o@%x9[τ\roc\\ș\=Yb\\\\D\\\5W~w\{Q><\BYâ,8`\p.\\OD\\n>J+ɗ\[뱩\\\Q\\m\(c>]إm-l\"YaL\2䗢p\\w\^`@P\Z\ZC\)^v{ޛ	U\;\7^M%픃\Il]\=)\.7TH\3=\5&\; \z6\\\\\\ﰆ\,\]\ 7\[ہD\\rfy\Zey\R.\Y\.~\\f~}N\ύꋪ\m\6	l\rM\\6\\\qwO֧O\6vgD\'\\֭	~wUi,\$D\\\UrbO҃6rѹt\TzN\0q\6S\kVs\㮰grpvpUmGGeǪ]\z\\\\-{\\0\%ib>y2W\MRcAKx!J&\{\0@:rkm\5\\`\c\A |KB\9XnWGUvQf=jJ/׏ޚsS\ʤo1j(74g9\B\uo雕1,Ӱ\\u\qsD\\\7n\"ѭc\Rq\W#i\\\\]I4̥UG\0H\0/ڃ\\L\\b׵\o&\\Z7nO\Ԓ\n(Zl\xlYAc\'\E\a8ْ\캪u\rLe@\diV\M|y\Z.ĄDL]\Z]Im\ҏڶғ#WZ=\*n+\V\`rJjMBuu\0\:nm\v\Z\r\	\t\@r-\\#=A7%J\w\ !\$}k8.ѡ!\f\sڃ}au\\ضmsXG\>o\H\	\Sɠ\m,\hVj\r\fڤ\lWZ.PH(0ĥv\\݊;	\Nrwk(]^`#gQ\	rd\xFǖi\䶧\68\rn\U\\g:ͱ\d)跾\\\'&=X\\0ȳȤ.`LLOwf<ڴr4\q\B\n&\\ϚU8l7F>>K_~\S[\?mo^','EZ-Page with ID 10 updated.','info'),(1672,'2018-05-20 15:26:43',1,'ezpages.php','page=1&ezID=10','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1673,'2018-05-20 15:26:43',1,'ezpages.php','page=1&ezID=10','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1674,'2018-05-20 15:26:48',1,'ezpages.php','ezID=11&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1675,'2018-05-20 15:26:48',1,'ezpages.php','ezID=11&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1676,'2018-05-20 15:26:58',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\]YoI+~Y	hl%G>K3]0UI\\*NՋ\GFU̲=1bVfdd\gk}k\Y\&Fs5^\fꝹms\deQۿ,צXY\)?\unݴǥѩ\w\c]V\ǲ\\g\,53N\O\S,7\ܔ\\d\\\\Z`G\M1\*ؘ\\r|Sݩ$\u{x\$H\/E߅Y\YQ\B\T\0>Q4ԇ\'ާs5\otY\TGgYTzѨsS5\\"KkS\e	|\eV\6e1R\\\\O&G<=\\\.u])\\\_\\`\d~{p~vG\\\\\f/o\޻y\\W/\\ͅ\\}z7]ݘdY\0yru\\\"\U\\*\\e^\0\<˳\~\2\y*{}\5\\]+S-Eb\\j;\\2ٙPy_+S\'U67jF\\\`ZF\'t#\\\ \*)W\#Vmݨ1jJ57\nN\\\eRu5KzT\\r\\\\'\3[\5a\n$?J\'	p]I[\\a)qeSC`1<D\-!U\I]\\\X1jU&\w\#I\\..\\@\vŅ\\J1qJf@pgT\\\\ZLf\d丩N/	\0z%ߦ\4\\EqUe+8AOߔ0\xcM,;D\\\0o\nwq\ɳɌO=\}Ns:֯u\l.I\4#Wб\`~o3fdQ.\{9{>l/\W{cufć\08V-\\\T#`*#U#uo\eC\TyS3\kL-HN&r\\u{bd\\\2`V$y\pxcmjЙ8|@`\B7\ZHI!\\t$\ؒXF%b:\0N!\*X\sh+8L,^\<_4\Z+ڷQ{0\\d\0uk\\J\-lR\\\\0?|F\\1 \y^\#6N\\\烴\[\0m%+`-z\\ɧoD\\:7\)\5\R)5sFߔFgqV\Z)[sT;\nI6\\p\\':\X\\\ͻ\_|s\s_>8f\\_\\?\b\\d4\Q\u˛\\T%C]\!\\}|\\;\ou\I֠u\Zkv쫙\r!yAF\wn\{82((`\r\^g&\tΊ=\(P\^\\m+ IYZ\m0{bNVYјdP\\\\n\\e\܂޲]0Br\bֳ\fo\v\\.\ӆELnN[F(X)@\\rɒ)j2\,oC\{\HҸ\wSuQ&m(򇈮\0@aȩ24@P>bK@#\\C\ZzOFm3m \4ou\F`\\a~m6\n\'4#O\F7\\nf%m>Qa\\\kC3/F*\\ރ\3#\,\Aȵ-\L2 \'Ӣ*W4\\L$p6uO\\\4q1L\h΀}\@\ny\0x\"\y|>V\\\óajpe60\'\SmY=s\"#GRYҍ\ƭ-]A+3\\\ `=WĞ\r\\d\\\c5+8r\\]\gIÓ@\u׼@W(u\\guu\\\\_X/_\\x7{\rHB\.^_Ahofo.f\.\˷\\\\r\\'$\j]\&\\T\Z9\Z:\\o@Q\L\\wtJSy\"	6<\0>\Fw\{W/ԥ:P/aޠ\]\r0œ-\\3f\\*.o\\Z謽/O \\\xA[\Y(y\"`0\!( o;C0f\0\\\(A7U+mɳ2VͰ	M\yIBϫ,\FF\r\6DJ\`\\QN\\\D6PЁVa/W\ V%\\SP4K2\8xĦOMg?\gٰY,\Uk\<\m[۪o\\>FV\\@t3\r\f\0fo!/T\vL^\,<]5\l`\0\\!B\xe \\Z\ˇ-\nDM浳7г\ÉS=Ibrc}/\rp\1\r@\k2\)\"\\\\E\,鬉\0-\\0(\:5ɧ\6&G\No\T;\r\\\@Ж\\\}\r~\\\\\"otx\'bi\\\nGP\>aC2pWqP\fx \ھfݢ,7J~`΃\\\Z90d\`n<\\/3P_\\\~\_\\,>W#Wh\n{\?G|\K=fqՔ\8dG\n\\j9X1\\\aCAa\\&O\W`ȫA	!@:\x\\Fu>[\۵zI\5`N\!\\ya\\'\	|xtjA\\:\N53f\9\"mc\r\QrY\c\>\\{pK\\\rd\"0H\'\o^4\rz3jz,#.˶\"\zv\8\S\ӝ\QӢ\}K\n5{\x<*&S\YwZan5n\\\xѰ*1qBe\\xIY]\\\qqJP-\p\qܰ\Y\%\\%\\\ex0逯l\0h1\I+H\#\\	i_\P3\ilwV^>x\-\'LA\H-}긿#J#^FnI_F\@M\bq!zq\ǝ\'p|EM\/^\,ōɃ\\\\Bt>/\S\E7\\ꗰ\	Y\8d\\%\a@W\\\'9a8r}V\ZK>\Z\Y]]ƙWF\\A9j7\_\N:?\+%\\n\/YZ䙷p\\<Wm;22)\uӇ4\\#\!^9v\\v\EvکQƱ+H\w:\<BR\ouS#\yaɳ+v5\)&fK\I@\"UE\~\R(PA\n\\\\\`H;Ap(#Q56n,\\|\p	\M͊\;mMJgOH;̬c\d\߀\>ȷ\L\f|폿s>\\\h\\\ڽrw?\_\kL\bXYɡw\rQV=EY2׫Uo<\DW\C(\r\J@\4\nZFgC~\\\ɑO/(T\y\aᄃ9yv6%(ǢN\\(K\\g!I}\|=&\\e@kqb8J\ΪclʻV:5Ԯ!#\\\|0I\'O\ \.i\\\r!~\|\"R\)Q\0?7\\\Ԩ\\nMZâ޺C\R|,}c2AsX6~\\1*0v\'\1Rܲ<p#t\[\9gr\\\3\\¨(\l\]<.\(\MX׷5\\Z`\G\X0,ɧ0O޲v|GK#@8_?\\)Cajq\\\0\1WA\JoD4, \0\x#@\Dm\g\\-\F:Dn	\n\D\b75Ѿ6^\fR\0ekVd5\\3\8\\J\2Epfm]\Z##\%y\"\l\>>v`;\m\\\MO\mÇ	0,ɐ߆9Y.z۳y̔,)N$\i\r\'3\l1i\\E\nj\.Y\Zl{8<U:\\\,G\\P\Y\_g\|u\\\!Wo\;V\\5X`mٹ8\\ˋ49\)yo@Jg,\	CUh\0=K\PK\\rj=>R.]\)\\"\$4ʦ\C\0pf~5C\\ʗP\r]^4i\Hܥ(\\}ʲ|\}3)\\\'\m\x^\\;!\\1Gu\ `\\#50\\\[WA\$\kMى\#W(J\l\\\\kD\KyWhn\ZY帉d\mkjk\9TN*\ TF0EI܁(Kȳo\q3X7-\J\uH3>\\\MZ\u\SJl8#T\~e\\~\\옶\ \ne\0L53w\p\H\\\n32`7NA;㠴\Za2#\\ǌȳF?ؠ۶ʠF\=z\N;|6Mn;G\\. fux\\!~C#\0[PS\C=ʒ3񙺃&>ʹD\Kp$)M7\IM\Z\23Պ\8\\\ߒ+82sܤeN=pz6o\Qe\\\d6w\^0jzXR\\&B\G\ܗ@Ԡ\eQ\"GWB\6\DwS_\e0\!=f\Qկ\\\*,5lˎc-#2\cZ\\ʘy%(\ԫ9\\\\\a\\Jq\\\͡l8\r\{<\\:R\*d\lLcu\e?:\\=l\_۩\}mEL\2{OoNvhRw\>#	\W\'**\\\.[\(bOT9xƬ\x\\j/#|x.max\6Y+\ 1\T\S\*W,G{\ԗl&ܥ\W\\uN*]\	\%{\Fq{V4\b\E@\\n\\Jҫ2\\-\(\\\Q׬	\$\t\i7(I\%,\"l=\h\\"8\(pyr8C\9xmpU\fj\y\'gO\Gg@\ngC\5\w}Jk\G=L\\NτP6\"fB	mc\B\?rA\(m&\Q{ż1,\0]3\p:\\9t?9\0Qn$Y2 #ݒP	\\	gRRi3\tPQ0nR\xt\]b\q:\n\'WnAO.[\6\\n@\o.%rzo`EOl\Zy\\Z	10(2\eɳ_2\:>Na\ʲz\E\\GlX\r\Fǜ+.*_E3\\u\\0\L6\𐛊4ad<\x_#\rc]\0\6\"\Jd\=N\\Q\\Ϻ\(\\\\E\E\\d!?1q܃\\u^8\Ovׄ\kА\\0nj6mN9\B^`;Xz[(\\YҖmὲ&3\#\\/LF\wJ&AIY\ONld\b\YDĊ\\Ta#\\۾\O\/L<+\\d\P\ĉΤ<\\n\1\\u	(gE\\0\ĎZQY\T\\\k+7@Y\U^ר@\r K뾝\0)\\l\S9t#Fݢ\H[t\`\`^ʋzhSb-nѵ\اJ5Tx\d+`Vw\'\Ҍ%F\ծb,Cr\_b\'{\\\K\'v4[\\ZszByYUk?\n\oT\>u?-&\S\O\S5!)\'\v!#BY\\qY7@8pG&@]&\\"(\S\'+O\ч\f妍)\~P\v\S\\yVq%;s7E X\X7j\\J\e+\G\\\ j$_=\η̾^b񜘎Yc\09\d(zmC\D\s?ޛB\v M(/V91\<䀉3>\\qsgl\}\p~\eW\%o%2ɛP%I_h4\\iÉ\:\[	\w\\nL#m\0I\]\&<\\N\;\P![\72	\R\\\!<?\\n$\<,\7>(>5R2\\feu\.n\!C%\\Z\d\*kocf\;h\䲾\\\]s*T\@p 9\ѝ.QbA]\C\=w5\3ffrىc\6N=vRWSy#bN}L/N钦A\ή\$U2\\VPH\4X(5;9;\r#E͍UV\'B0\0\#\\\ZsX\0LD>~.n+{Y\|\n:Pd|H5 LO$:1@]c\;\\\x\nSvaE\i4ݧ\'{\mS4\s0xG\]S&\\"ty9.-]5C_\\d\	9~\\d[\\F邒\ i>\\~JO\40\}B[\\\\YZ\\rcP\\\\\~e\'\tR0\0T#\Xʳ\\'\b\\$\T phD\'\:e8k\0\ز\\\\\\'\,i\W[\\%;=\t\3R\ztlT\sg\q\R\uu\~49H\\\!\K\\{\xov8\^sY\hR2#T\q;\ \ۃ#\^)j\*J\\\a\rBu杚$q\\r\O.X8w)\1\U\\n\<D*$zO\xT\)\\\:y!V\G2,(\r\p#\rg\z\\\Wy\'\it _\a\M\n0$K|\0Mʸٖ=56\\SZֿ\7gE\Q-v|Mϲ}\~E\_JAS\2\Ehg\\K\q˾\b\1Ok\Zacꂭ	\x\"6\̓\Ƌ#w\#{K*E#0	Sb^\\\\\\rk\\0{\J;@H6\i1ͲD;3sZ\桴i4j[-i\`\\{\MmN0\"\Z\s5\l,Jj[mw̫)C\"A[߆\9Co&~\"\\\6\KAQ\l\F%nwҜGh\)\$LJPٲZ5	\\\\Zjʆa5<+\a\*\nU@$\rpXA\X\Z\Si\"c4[&3\qt	G	\(\\\0ؤM۴\XNFh\\M\苳 3V\\\\r\C\c\\k\"m!@\$6a,i8V}%\n8\+񸁡\W˄	kp\H\\\M>R5rX\)5J^\t^ZEo/\ί\\\\\$#7\+}B;,i\fCK\W =k\\\\0W\\uJ\ߢ\\\Ʊ\",(\'C\n*\x]ց@[i6C\"AH~v҅\Dj\}#J\tNvo\K\)\Dϻ\QWRPoOAr-~0Y\2+>\\؜r>˛8>{\r\I\\n&\\&FM{\\hpX\\`G\!\n\K\\Õ(\-YӬ|w>@1:(bsD-p+\MNoREKj\ȶ\סzX5tL\ruX\\n:\ZkBNM[\\&&8O{\ڏM@\<Mm3v,\09\9\\8dM\l\]\h\\\M\cTC~-\"Id\\Iu$E\Bygfb \\K.jm\f\\\JN8\=\"<s7I\B<Ŵv\;acx\E/tÈ2Cg{X\d_F\\EP\:zU=<7i\x0-ԋv\XGs\\d\&?9n=QsDE\.B,K\&n\\1\+1h0j;$voL(\M\\\l/K\<:9l\mV/	OI8>\BR\kL\X\"̻\[~\T`K\\:K[\X 1kϬubdM\\:_1ۼe\\۔\|x\n\\nզWZ\働\$yɲU(\\F]\%^jl\s\a\1S\69DPj@we05\\ޱ\\\JdK-\\7.-\ \Z6x.\T.\'zݱ\>|c3g\\4,i|H\\?\8\7\Hk\\#\9sP?5rIld\3)gQ|z8+Luev[ܔkz~|r8~n\7\G3~\uܿ~\>\r\i}R:lTl\6ܴkh|\\\LA\\\9\\PaȥB\rw\\\\(I݃\c99~d7`o\\	\\Qg\9?#o\p=!\HwXtg\Akď\Wq\x\>{\"uz8cN=\e\p[r&_\N\"gt\\v?\0\˙\'O1li_D>St\\?ˎ}SX\\?|vo\\$쇑m\r\\M\\\ѩ\\\@埵\^\:r/h\\\ݖ\7󸷄\rP\``;\\0A\6ב\Qg?:\\Nu\r\7}ž~>܊\"l\'\\g/?Ge\r\3?\\\[\Z9H8\\\_V\\cy{\~4\\k叾X\"!H\MW\D\}\>y*]}\z	\rsW;-N*gt;\\c\\T7]\"\}K\~\2bw6N\\nɚ\\s%\2nlp>6\Ҵɭs2!w5aU\N_\\Tٺ6T\ʥ:\< \yYp\8WHG*\D\\\"\L؄\"\\\(J\\.H	:Ky\'Z\9{5<&^ʆv\\ߎ;B\Tn$CdmU\`\\ɰ96o\\?*\~	NB\\;0V|bC\vDvu\&ۭ\$;ʐw\n6h\qaj&Qs\\wݟv2`\\\8q%\;\p\Îg*h\|AǰG)FZ]\n\zL\ͤE;\Ͱ\M\\rb\\\BSjz0[Y\\\G~\\\32ݱ\rdο멢^Ss2\pqw*-G\\2\\\\X/1\0=\D\\ZT\Y\ZD-\"A7J5\\,\ڥ\0\\0C6lK#~嗩q\B0\@F\@	YtNĚo6i76(\\dD?Je}\o#Y\#\l \\YNp\el=N[\\D\\=kt#Z\ʨAQFm\~\TnXįK\\\ϠP\R/7D\Va:\q!K\޽/84E\칞v\i\		\7|3TZ\q\;	\\0=Sbh\\\v\7T.c뗻m:\k\\Ȝ\qyk6w\tѦ\\eSHx+	\\;\0\HXQ\v:^!\\4tbǖ\,$pW$;\n\\>\Ҕ5Nl{\r%eg\C=N-\ZO|K\Њ\R;\7j\@\m\`a&<y\(	\\H<\\m\+\\dYb4\\4tݧ_^wܱD{)WmaB 9YxWiS\\m;b6d\0\3\t\d5p{M\\\]TSn«\\;dq`\\j\`9\\ne}\~e2vP\\bg\\/a%\>SS7t v\\k\Zo^\ހK2rᷞ	7t\:\\73u{jE\\\D\\5W~w\{Q><bl`Q,8`\p.\\OD\\n>J+mq/뱩\\\Q\=۴Q\|K\F\DB\ZL\2\E\L2c(4\rHdSN\<7Sw\oj5m%N\g\\ޓ\^\0첉zCd>ӣ^3oBȽ7hÅ]k\ȂܵR3j[\\\'ǔ_\\\|`5˳\\(\[\ntY\\\Z_\\\э4\\\\\\°\4ܪ:]\Z\M`\T4WW|ۄ\"\\0>Y>\\ٝP7[&\Z\p\X\\q\V\1%<\\ۮ=j_\	f݅2\vc}\jNQ}\L\\\,ӕ󈚈\enF}>\v`\"MlB\U\\\j۠%	\=\0 \Qx}F9vM\s6\l\uPH<\B(WVb<˭\貢\.ʬGMU^\\[sN?s\|P-F\r%\!\#Z4\-}2ƒW`\Zٻ<t(Ը{\M$UCVs\Y\>dZol4̥UG\0H\0/\Ap\\J&@э\\\@s֧fjI^[-wWK\^66[bV\X֓S^\"	~\0\l\\]\˦\BB~b;׏@\b\"`Uu_\ccBVL]\Z]\\ۮm\'G:z\U\V!\V\`rJjMBuu\0\:nm\vbww\ \VY\\]ɞ%;\g>SH\\Z\\PF\|3\9 `\\0~XE5Җ³m\h\M[vT2\{[%K8ՖZ);\\n0Pۋd0p%	\ݣm=wA\Nb`5ޮ	YoHC\YT0\p=2\'xFG\4Ilr\\\e[A\rn\U\\g:ḻ\d[\/\\\'&=X\\0ȳȤ.`H&Own<\9vB\8b!QnLxg̀*zE6\\#G\\/?~\y\?|Ķ7x~?','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1677,'2018-05-20 15:26:59',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary '\]YoI+~Y	hl%G>K3]0UI\\*NՋ\GFU̲=1bVfdd\gk}k\Y\&Fs5^\fꝹms\deQۿ,צXY\)?\unݴǥѩ\w\c]V\ǲ\\g\,53N\O\S,7\ܔ\\d\\\\Z`G\M1\*ؘ\\r|Sݩ$\u{x\$H\/E߅Y\YQ\B\T\0>Q4ԇ\'ާs5\otY\TGgYTzѨsS5\\"KkS\e	|\eV\6e1R\\\\O&G<=\\\.u])\\\_\\`\d~{p~vG\\\\\f/o\޻y\\W/\\ͅ\\}z7]ݘdY\0yru\\\"\U\\*\\e^\0\<˳\~\2\y*{}\5\\]+S-Eb\\j;\\2ٙPy_+S\'U67jF\\\`ZF\'t#\\\ \*)W\#Vmݨ1jJ57\nN\\\eRu5KzT\\r\\\\'\3[\5a\n$?J\'	p]I[\\a)qeSC`1<D\-!U\I]\\\X1jU&\w\#I\\..\\@\vŅ\\J1qJf@pgT\\\\ZLf\d丩N/	\0z%ߦ\4\\EqUe+8AOߔ0\xcM,;D\\\0o\nwq\ɳɌO=\}Ns:֯u\l.I\4#Wб\`~o3fdQ.\{9{>l/\W{cufć\08V-\\\T#`*#U#uo\eC\TyS3\kL-HN&r\\u{bd\\\2`V$y\pxcmjЙ8|@`\B7\ZHI!\\t$\ؒXF%b:\0N!\*X\sh+8L,^\<_4\Z+ڷQ{0\\d\0uk\\J\-lR\\\\0?|F\\1 \y^\#6N\\\烴\[\0m%+`-z\\ɧoD\\:7\)\5\R)5sFߔFgqV\Z)[sT;\nI6\\p\\':\X\\\ͻ\_|s\s_>8f\\_\\?\b\\d4\Q\u˛\\T%C]\!\\}|\\;\ou\I֠u\Zkv쫙\r!yAF\wn\{82((`\r\^g&\tΊ=\(P\^\\m+ IYZ\m0{bNVYјdP\\\\n\\e\܂޲]0Br\bֳ\fo\v\\.\ӆELnN[F(X)@\\rɒ)j2\,oC\{\HҸ\wSuQ&m(򇈮\0@aȩ24@P>bK@#\\C\ZzOFm3m \4ou\F`\\a~m6\n\'4#O\F7\\nf%m>Qa\\\kC3/F*\\ރ\3#\,\Aȵ-\L2 \'Ӣ*W4\\L$p6uO\\\4q1L\h΀}\@\ny\0x\"\y|>V\\\óajpe60\'\SmY=s\"#GRYҍ\ƭ-]A+3\\\ `=WĞ\r\\d\\\c5+8r\\]\gIÓ@\u׼@W(u\\guu\\\\_X/_\\x7{\rHB\.^_Ahofo.f\.\˷\\\\r\\'$\j]\&\\T\Z9\Z:\\o@Q\L\\wtJSy\"	6<\0>\Fw\{W/ԥ:P/aޠ\]\r0œ-\\3f\\*.o\\Z謽/O \\\xA[\Y(y\"`0\!( o;C0f\0\\\(A7U+mɳ2VͰ	M\yIBϫ,\FF\r\6DJ\`\\QN\\\D6PЁVa/W\ V%\\SP4K2\8xĦOMg?\gٰY,\Uk\<\m[۪o\\>FV\\@t3\r\f\0fo!/T\vL^\,<]5\l`\0\\!B\xe \\Z\ˇ-\nDM浳7г\ÉS=Ibrc}/\rp\1\r@\k2\)\"\\\\E\,鬉\0-\\0(\:5ɧ\6&G\No\T;\r\\\@Ж\\\}\r~\\\\\"otx\'bi\\\nGP\>aC2pWqP\fx \ھfݢ,7J~`΃\\\Z90d\`n<\\/3P_\\\~\_\\,>W#Wh\n{\?G|\K=fqՔ\8dG\n\\j9X1\\\aCAa\\&O\W`ȫA	!@:\x\\Fu>[\۵zI\5`N\!\\ya\\'\	|xtjA\\:\N53f\9\"mc\r\QrY\c\>\\{pK\\\rd\"0H\'\o^4\rz3jz,#.˶\"\zv\8\S\ӝ\QӢ\}K\n5{\x<*&S\YwZan5n\\\xѰ*1qBe\\xIY]\\\qqJP-\p\qܰ\Y\%\\%\\\ex0逯l\0h1\I+H\#\\	i_\P3\ilwV^>x\-\'LA\H-}긿#J#^FnI_F\@M\bq!zq\ǝ\'p|EM\/^\,ōɃ\\\\Bt>/\S\E7\\ꗰ\	Y\8d\\%\a@W\\\'9a8r}V\ZK>\Z\Y]]ƙWF\\A9j7\_\N:?\+%\\n\/YZ䙷p\\<Wm;22)\uӇ4\\#\!^9v\\v\EvکQƱ+H\w:\<BR\ouS#\yaɳ+v5\)&fK\I@\"UE\~\R(PA\n\\\\\`H;Ap(#Q56n,\\|\p	\M͊\;mMJgOH;̬c\d\߀\>ȷ\L\f|폿s>\\\h\\\ڽrw?\_\kL\bXYɡw\rQV=EY2׫Uo<\DW\C(\r\J@\4\nZFgC~\\\ɑO/(T\y\aᄃ9yv6%(ǢN\\(K\\g!I}\|=&\\e@kqb8J\ΪclʻV:5Ԯ!#\\\|0I\'O\ \.i\\\r!~\|\"R\)Q\0?7\\\Ԩ\\nMZâ޺C\R|,}c2AsX6~\\1*0v\'\1Rܲ<p#t\[\9gr\\\3\\¨(\l\]<.\(\MX׷5\\Z`\G\X0,ɧ0O޲v|GK#@8_?\\)Cajq\\\0\1WA\JoD4, \0\x#@\Dm\g\\-\F:Dn	\n\D\b75Ѿ6^\fR\0ekVd5\\3\8\\J\2Epfm]\Z##\%y\"\l\>>v`;\m\\\MO\mÇ	0,ɐ߆9Y.z۳y̔,)N$\i\r\'3\l1i\\E\nj\.Y\Zl{8<U:\\\,G\\P\Y\_g\|u\\\!Wo\;V\\5X`mٹ8\\ˋ49\)yo@Jg,\	CUh\0=K\PK\\rj=>R.]\)\\"\$4ʦ\C\0pf~5C\\ʗP\r]^4i\Hܥ(\\}ʲ|\}3)\\\'\m\x^\\;!\\1Gu\ `\\#50\\\[WA\$\kMى\#W(J\l\\\\kD\KyWhn\ZY帉d\mkjk\9TN*\ TF0EI܁(Kȳo\q3X7-\J\uH3>\\\MZ\u\SJl8#T\~e\\~\\옶\ \ne\0L53w\p\H\\\n32`7NA;㠴\Za2#\\ǌȳF?ؠ۶ʠF\=z\N;|6Mn;G\\. fux\\!~C#\0[PS\C=ʒ3񙺃&>ʹD\Kp$)M7\IM\Z\23Պ\8\\\ߒ+82sܤeN=pz6o\Qe\\\d6w\^0jzXR\\&B\G\ܗ@Ԡ\eQ\"GWB\6\DwS_\e0\!=f\Qկ\\\*,5lˎc-#2\cZ\\ʘy%(\ԫ9\\\\\a\\Jq\\\͡l8\r\{<\\:R\*d\lLcu\e?:\\=l\_۩\}mEL\2{OoNvhRw\>#	\W\'**\\\.[\(bOT9xƬ\x\\j/#|x.max\6Y+\ 1\T\S\*W,G{\ԗl&ܥ\W\\uN*]\	\%{\Fq{V4\b\E@\\n\\Jҫ2\\-\(\\\Q׬	\$\t\i7(I\%,\"l=\h\\"8\(pyr8C\9xmpU\fj\y\'gO\Gg@\ngC\5\w}Jk\G=L\\NτP6\"fB	mc\B\?rA\(m&\Q{ż1,\0]3\p:\\9t?9\0Qn$Y2 #ݒP	\\	gRRi3\tPQ0nR\xt\]b\q:\n\'WnAO.[\6\\n@\o.%rzo`EOl\Zy\\Z	10(2\eɳ_2\:>Na\ʲz\E\\GlX\r\Fǜ+.*_E3\\u\\0\L6\𐛊4ad<\x_#\rc]\0\6\"\Jd\=N\\Q\\Ϻ\(\\\\E\E\\d!?1q܃\\u^8\Ovׄ\kА\\0nj6mN9\B^`;Xz[(\\YҖmὲ&3\#\\/LF\wJ&AIY\ONld\b\YDĊ\\Ta#\\۾\O\/L<+\\d\P\ĉΤ<\\n\1\\u	(gE\\0\ĎZQY\T\\\k+7@Y\U^ר@\r K뾝\0)\\l\S9t#Fݢ\H[t\`\`^ʋzhSb-nѵ\اJ5Tx\d+`Vw\'\Ҍ%F\ծb,Cr\_b\'{\\\K\'v4[\\ZszByYUk?\n\oT\>u?-&\S\O\S5!)\'\v!#BY\\qY7@8pG&@]&\\"(\S\'+O\ч\f妍)\~P\v\S\\yVq%;s7E X\X7j\\J\e+\G\\\ j$_=\η̾^b񜘎Yc\09\d(zmC\D\s?ޛB\v M(/V91\<䀉3>\\qsgl\}\p~\eW\%o%2ɛP%I_h4\\iÉ\:\[	\w\\nL#m\0I\]\&<\\N\;\P![\72	\R\\\!<?\\n$\<,\7>(>5R2\\feu\.n\!C%\\Z\d\*kocf\;h\䲾\\\]s*T\@p 9\ѝ.QbA]\C\=w5\3ffrىc\6N=vRWSy#bN}L/N钦A\ή\$U2\\VPH\4X(5;9;\r#E͍UV\'B0\0\#\\\ZsX\0LD>~.n+{Y\|\n:Pd|H5 LO$:1@]c\;\\\x\nSvaE\i4ݧ\'{\mS4\s0xG\]S&\\"ty9.-]5C_\\d\	9~\\d[\\F邒\ i>\\~JO\40\}B[\\\\YZ\\rcP\\\\\~e\'\tR0\0T#\Xʳ\\'\b\\$\T phD\'\:e8k\0\ز\\\\\\'\,i\W[\\%;=\t\3R\ztlT\sg\q\R\uu\~49H\\\!\K\\{\xov8\^sY\hR2#T\q;\ \ۃ#\^)j\*J\\\a\rBu杚$q\\r\O.X8w)\1\U\\n\<D*$zO\xT\)\\\:y!V\G2,(\r\p#\rg\z\\\Wy\'\it _\a\M\n0$K|\0Mʸٖ=56\\SZֿ\7gE\Q-v|Mϲ}\~E\_JAS\2\Ehg\\K\q˾\b\1Ok\Zacꂭ	\x\"6\̓\Ƌ#w\#{K*E#0	Sb^\\\\\\rk\\0{\J;@H6\i1ͲD;3sZ\桴i4j[-i\`\\{\MmN0\"\Z\s5\l,Jj[mw̫)C\"A[߆\9Co&~\"\\\6\KAQ\l\F%nwҜGh\)\$LJPٲZ5	\\\\Zjʆa5<+\a\*\nU@$\rpXA\X\Z\Si\"c4[&3\qt	G	\(\\\0ؤM۴\XNFh\\M\苳 3V\\\\r\C\c\\k\"m!@\$6a,i8V}%\n8\+񸁡\W˄	kp\H\\\M>R5rX\)5J^\t^ZEo/\ί\\\\\$#7\+}B;,i\fCK\W =k\\\\0W\\uJ\ߢ\\\Ʊ\",(\'C\n*\x]ց@[i6C\"AH~v҅\Dj\}#J\tNvo\K\)\Dϻ\QWRPoOAr-~0Y\2+>\\؜r>˛8>{\r\I\\n&\\&FM{\\hpX\\`G\!\n\K\\Õ(\-YӬ|w>@1:(bsD-p+\MNoREKj\ȶ\סzX5tL\ruX\\n:\ZkBNM[\\&&8O{\ڏM@\<Mm3v,\09\9\\8dM\l\]\h\\\M\cTC~-\"Id\\Iu$E\Bygfb \\K.jm\f\\\JN8\=\"<s7I\B<Ŵv\;acx\E/tÈ2Cg{X\d_F\\EP\:zU=<7i\x0-ԋv\XGs\\d\&?9n=QsDE\.B,K\&n\\1\+1h0j;$voL(\M\\\l/K\<:9l\mV/	OI8>\BR\kL\X\"̻\[~\T`K\\:K[\X 1kϬubdM\\:_1ۼe\\۔\|x\n\\nզWZ\働\$yɲU(\\F]\%^jl\s\a\1S\69DPj@we05\\ޱ\\\JdK-\\7.-\ \Z6x.\T.\'zݱ\>|c3g\\4,i|H\\?\8\7\Hk\\#\9sP?5rIld\3)gQ|z8+Luev[ܔkz~|r8~n\7\G3~\uܿ~\>\r\i}R:lTl\6ܴkh|\\\LA\\\9\\PaȥB\rw\\\\(I݃\c99~d7`o\\	\\Qg\9?#o\p=!\HwXtg\Akď\Wq\x\>{\"uz8cN=\e\p[r&_\N\"gt\\v?\0\˙\'O1li_D>St\\?ˎ}SX\\?|vo\\$쇑m\r\\M\\\ѩ\\\@埵\^\:r/h\\\ݖ\7󸷄\rP\``;\\0A\6ב\Qg?:\\Nu\r\7}ž~>܊\"l\'\\g/?Ge\r\3?\\\[\Z9H8\\\_V\\cy{\~4\\k叾X\"!H\MW\D\}\>y*]}\z	\rsW;-N*gt;\\c\\T7]\"\}K\~\2bw6N\\nɚ\\s%\2nlp>6\Ҵɭs2!w5aU\N_\\Tٺ6T\ʥ:\< \yYp\8WHG*\D\\\"\L؄\"\\\(J\\.H	:Ky\'Z\9{5<&^ʆv\\ߎ;B\Tn$CdmU\`\\ɰ96o\\?*\~	NB\\;0V|bC\vDvu\&ۭ\$;ʐw\n6h\qaj&Qs\\wݟv2`\\\8q%\;\p\Îg*h\|AǰG)FZ]\n\zL\ͤE;\Ͱ\M\\rb\\\BSjz0[Y\\\G~\\\32ݱ\rdο멢^Ss2\pqw*-G\\2\\\\X/1\0=\D\\ZT\Y\ZD-\"A7J5\\,\ڥ\0\\0C6lK#~嗩q\B0\@F\@	YtNĚo6i76(\\dD?Je}\o#Y\#\l \\YNp\el=N[\\D\\=kt#Z\ʨAQFm\~\TnXįK\\\ϠP\R/7D\Va:\q!K\޽/84E\칞v\i\		\7|3TZ\q\;	\\0=Sbh\\\v\7T.c뗻m:\k\\Ȝ\qyk6w\tѦ\\eSHx+	\\;\0\HXQ\v:^!\\4tbǖ\,$pW$;\n\\>\Ҕ5Nl{\r%eg\C=N-\ZO|K\Њ\R;\7j\@\m\`a&<y\(	\\H<\\m\+\\dYb4\\4tݧ_^wܱD{)WmaB 9YxWiS\\m;b6d\0\3\t\d5p{M\\\]TSn«\\;dq`\\j\`9\\ne}\~e2vP\\bg\\/a%\>SS7t v\\k\Zo^\ހK2rᷞ	7t\:\\73u{jE\\\D\\5W~w\{Q><bl`Q,8`\p.\\OD\\n>J+mq/뱩\\\Q\=۴Q\|K\F\DB\ZL\2\E\L2c(4\rHdSN\<7Sw\oj5m%N\g\\ޓ\^\0첉zCd>ӣ^3oBȽ7hÅ]k\ȂܵR3j[\\\'ǔ_\\\|`5˳\\(\[\ntY\\\Z_\\\э4\\\\\\°\4ܪ:]\Z\M`\T4WW|ۄ\"\\0>Y>\\ٝP7[&\Z\p\X\\q\V\1%<\\ۮ=j_\	f݅2\vc}\jNQ}\L\\\,ӕ󈚈\enF}>\v`\"MlB\U\\\j۠%	\=\0 \Qx}F9vM\s6\l\uPH<\B(WVb<˭\貢\.ʬGMU^\\[sN?s\|P-F\r%\!\#Z4\-}2ƒW`\Zٻ<t(Ը{\M$UCVs\Y\>dZol4̥UG\0H\0/\Ap\\J&@э\\\@s֧fjI^[-wWK\^66[bV\X֓S^\"	~\0\l\\]\˦\BB~b;׏@\b\"`Uu_\ccBVL]\Z]\\ۮm\'G:z\U\V!\V\`rJjMBuu\0\:nm\vbww\ \VY\\]ɞ%;\g>SH\\Z\\PF\|3\9 `\\0~XE5Җ³m\h\M[vT2\{[%K8ՖZ);\\n0Pۋd0p%	\ݣm=wA\Nb`5ޮ	YoHC\YT0\p=2\'xFG\4Ilr\\\e[A\rn\U\\g:ḻ\d[\/\\\'&=X\\0ȳȤ.`H&Own<\9vB\8b!QnLxg̀*zE6\\#G\\/?~\y\?|Ķ7x~?','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1678,'2018-05-20 15:26:59',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\]YoI+~Y	hl%G>K3]0UI\\*NՋ\GFU̲=1bVfdd\gk}k\Y\&Fs5^\fꝹms\deQۿ,צXY\)?\unݴǥѩ\w\c]V\ǲ\\g\,53N\O\S,7\ܔ\\d\\\\Z`G\M1\*ؘ\\r|Sݩ$\u{x\$H\/E߅Y\YQ\B\T\0>Q4ԇ\'ާs5\otY\TGgYTzѨsS5\\"KkS\e	|\eV\6e1R\\\\O&G<=\\\.u])\\\_\\`\d~{p~vG\\\\\f/o\޻y\\W/\\ͅ\\}z7]ݘdY\0yru\\\"\U\\*\\e^\0\<˳\~\2\y*{}\5\\]+S-Eb\\j;\\2ٙPy_+S\'U67jF\\\`ZF\'t#\\\ \*)W\#Vmݨ1jJ57\nN\\\eRu5KzT\\r\\\\'\3[\5a\n$?J\'	p]I[\\a)qeSC`1<D\-!U\I]\\\X1jU&\w\#I\\..\\@\vŅ\\J1qJf@pgT\\\\ZLf\d丩N/	\0z%ߦ\4\\EqUe+8AOߔ0\xcM,;D\\\0o\nwq\ɳɌO=\}Ns:֯u\l.I\4#Wб\`~o3fdQ.\{9{>l/\W{cufć\08V-\\\T#`*#U#uo\eC\TyS3\kL-HN&r\\u{bd\\\2`V$y\pxcmjЙ8|@`\B7\ZHI!\\t$\ؒXF%b:\0N!\*X\sh+8L,^\<_4\Z+ڷQ{0\\d\0uk\\J\-lR\\\\0?|F\\1 \y^\#6N\\\烴\[\0m%+`-z\\ɧoD\\:7\)\5\R)5sFߔFgqV\Z)[sT;\nI6\\p\\':\X\\\ͻ\_|s\s_>8f\\_\\?\b\\d4\Q\u˛\\T%C]\!\\}|\\;\ou\I֠u\Zkv쫙\r!yAF\wn\{82((`\r\^g&\tΊ=\(P\^\\m+ IYZ\m0{bNVYјdP\\\\n\\e\܂޲]0Br\bֳ\fo\v\\.\ӆELnN[F(X)@\\rɒ)j2\,oC\{\HҸ\wSuQ&m(򇈮\0@aȩ24@P>bK@#\\C\ZzOFm3m \4ou\F`\\a~m6\n\'4#O\F7\\nf%m>Qa\\\kC3/F*\\ރ\3#\,\Aȵ-\L2 \'Ӣ*W4\\L$p6uO\\\4q1L\h΀}\@\ny\0x\"\y|>V\\\óajpe60\'\SmY=s\"#GRYҍ\ƭ-]A+3\\\ `=WĞ\r\\d\\\c5+8r\\]\gIÓ@\u׼@W(u\\guu\\\\_X/_\\x7{\rHB\.^_Ahofo.f\.\˷\\\\r\\'$\j]\&\\T\Z9\Z:\\o@Q\L\\wtJSy\"	6<\0>\Fw\{W/ԥ:P/aޠ\]\r0œ-\\3f\\*.o\\Z謽/O \\\xA[\Y(y\"`0\!( o;C0f\0\\\(A7U+mɳ2VͰ	M\yIBϫ,\FF\r\6DJ\`\\QN\\\D6PЁVa/W\ V%\\SP4K2\8xĦOMg?\gٰY,\Uk\<\m[۪o\\>FV\\@t3\r\f\0fo!/T\vL^\,<]5\l`\0\\!B\xe \\Z\ˇ-\nDM浳7г\ÉS=Ibrc}/\rp\1\r@\k2\)\"\\\\E\,鬉\0-\\0(\:5ɧ\6&G\No\T;\r\\\@Ж\\\}\r~\\\\\"otx\'bi\\\nGP\>aC2pWqP\fx \ھfݢ,7J~`΃\\\Z90d\`n<\\/3P_\\\~\_\\,>W#Wh\n{\?G|\K=fqՔ\8dG\n\\j9X1\\\aCAa\\&O\W`ȫA	!@:\x\\Fu>[\۵zI\5`N\!\\ya\\'\	|xtjA\\:\N53f\9\"mc\r\QrY\c\>\\{pK\\\rd\"0H\'\o^4\rz3jz,#.˶\"\zv\8\S\ӝ\QӢ\}K\n5{\x<*&S\YwZan5n\\\xѰ*1qBe\\xIY]\\\qqJP-\p\qܰ\Y\%\\%\\\ex0逯l\0h1\I+H\#\\	i_\P3\ilwV^>x\-\'LA\H-}긿#J#^FnI_F\@M\bq!zq\ǝ\'p|EM\/^\,ōɃ\\\\Bt>/\S\E7\\ꗰ\	Y\8d\\%\a@W\\\'9a8r}V\ZK>\Z\Y]]ƙWF\\A9j7\_\N:?\+%\\n\/YZ䙷p\\<Wm;22)\uӇ4\\#\!^9v\\v\EvکQƱ+H\w:\<BR\ouS#\yaɳ+v5\)&fK\I@\"UE\~\R(PA\n\\\\\`H;Ap(#Q56n,\\|\p	\M͊\;mMJgOH;̬c\d\߀\>ȷ\L\f|폿s>\\\h\\\ڽrw?\_\kL\bXYɡw\rQV=EY2׫Uo<\DW\C(\r\J@\4\nZFgC~\\\ɑO/(T\y\aᄃ9yv6%(ǢN\\(K\\g!I}\|=&\\e@kqb8J\ΪclʻV:5Ԯ!#\\\|0I\'O\ \.i\\\r!~\|\"R\)Q\0?7\\\Ԩ\\nMZâ޺C\R|,}c2AsX6~\\1*0v\'\1Rܲ<p#t\[\9gr\\\3\\¨(\l\]<.\(\MX׷5\\Z`\G\X0,ɧ0O޲v|GK#@8_?\\)Cajq\\\0\1WA\JoD4, \0\x#@\Dm\g\\-\F:Dn	\n\D\b75Ѿ6^\fR\0ekVd5\\3\8\\J\2Epfm]\Z##\%y\"\l\>>v`;\m\\\MO\mÇ	0,ɐ߆9Y.z۳y̔,)N$\i\r\'3\l1i\\E\nj\.Y\Zl{8<U:\\\,G\\P\Y\_g\|u\\\!Wo\;V\\5X`mٹ8\\ˋ49\)yo@Jg,\	CUh\0=K\PK\\rj=>R.]\)\\"\$4ʦ\C\0pf~5C\\ʗP\r]^4i\Hܥ(\\}ʲ|\}3)\\\'\m\x^\\;!\\1Gu\ `\\#50\\\[WA\$\kMى\#W(J\l\\\\kD\KyWhn\ZY帉d\mkjk\9TN*\ TF0EI܁(Kȳo\q3X7-\J\uH3>\\\MZ\u\SJl8#T\~e\\~\\옶\ \ne\0L53w\p\H\\\n32`7NA;㠴\Za2#\\ǌȳF?ؠ۶ʠF\=z\N;|6Mn;G\\. fux\\!~C#\0[PS\C=ʒ3񙺃&>ʹD\Kp$)M7\IM\Z\23Պ\8\\\ߒ+82sܤeN=pz6o\Qe\\\d6w\^0jzXR\\&B\G\ܗ@Ԡ\eQ\"GWB\6\DwS_\e0\!=f\Qկ\\\*,5lˎc-#2\cZ\\ʘy%(\ԫ9\\\\\a\\Jq\\\͡l8\r\{<\\:R\*d\lLcu\e?:\\=l\_۩\}mEL\2{OoNvhRw\>#	\W\'**\\\.[\(bOT9xƬ\x\\j/#|x.max\6Y+\ 1\T\S\*W,G{\ԗl&ܥ\W\\uN*]\	\%{\Fq{V4\b\E@\\n\\Jҫ2\\-\(\\\Q׬	\$\t\i7(I\%,\"l=\h\\"8\(pyr8C\9xmpU\fj\y\'gO\Gg@\ngC\5\w}Jk\G=L\\NτP6\"fB	mc\B\?rA\(m&\Q{ż1,\0]3\p:\\9t?9\0Qn$Y2 #ݒP	\\	gRRi3\tPQ0nR\xt\]b\q:\n\'WnAO.[\6\\n@\o.%rzo`EOl\Zy\\Z	10(2\eɳ_2\:>Na\ʲz\E\\GlX\r\Fǜ+.*_E3\\u\\0\L6\𐛊4ad<\x_#\rc]\0\6\"\Jd\=N\\Q\\Ϻ\(\\\\E\E\\d!?1q܃\\u^8\Ovׄ\kА\\0nj6mN9\B^`;Xz[(\\YҖmὲ&3\#\\/LF\wJ&AIY\ONld\b\YDĊ\\Ta#\\۾\O\/L<+\\d\P\ĉΤ<\\n\1\\u	(gE\\0\ĎZQY\T\\\k+7@Y\U^ר@\r K뾝\0)\\l\S9t#Fݢ\H[t\`\`^ʋzhSb-nѵ\اJ5Tx\d+`Vw\'\Ҍ%F\ծb,Cr\_b\'{\\\K\'v4[\\ZszByYUk?\n\oT\>u?-&\S\O\S5!)\'\v!#BY\\qY7@8pG&@]&\\"(\S\'+O\ч\f妍)\~P\v\S\\yVq%;s7E X\X7j\\J\e+\G\\\ j$_=\η̾^b񜘎Yc\09\d(zmC\D\s?ޛB\v M(/V91\<䀉3>\\qsgl\}\p~\eW\%o%2ɛP%I_h4\\iÉ\:\[	\w\\nL#m\0I\]\&<\\N\;\P![\72	\R\\\!<?\\n$\<,\7>(>5R2\\feu\.n\!C%\\Z\d\*kocf\;h\䲾\\\]s*T\@p 9\ѝ.QbA]\C\=w5\3ffrىc\6N=vRWSy#bN}L/N钦A\ή\$U2\\VPH\4X(5;9;\r#E͍UV\'B0\0\#\\\ZsX\0LD>~.n+{Y\|\n:Pd|H5 LO$:1@]c\;\\\x\nSvaE\i4ݧ\'{\mS4\s0xG\]S&\\"ty9.-]5C_\\d\	9~\\d[\\F邒\ i>\\~JO\40\}B[\\\\YZ\\rcP\\\\\~e\'\tR0\0T#\Xʳ\\'\b\\$\T phD\'\:e8k\0\ز\\\\\\'\,i\W[\\%;=\t\3R\ztlT\sg\q\R\uu\~49H\\\!\K\\{\xov8\^sY\hR2#T\q;\ \ۃ#\^)j\*J\\\a\rBu杚$q\\r\O.X8w)\1\U\\n\<D*$zO\xT\)\\\:y!V\G2,(\r\p#\rg\z\\\Wy\'\it _\a\M\n0$K|\0Mʸٖ=56\\SZֿ\7gE\Q-v|Mϲ}\~E\_JAS\2\Ehg\\K\q˾\b\1Ok\Zacꂭ	\x\"6\̓\Ƌ#w\#{K*E#0	Sb^\\\\\\rk\\0{\J;@H6\i1ͲD;3sZ\桴i4j[-i\`\\{\MmN0\"\Z\s5\l,Jj[mw̫)C\"A[߆\9Co&~\"\\\6\KAQ\l\F%nwҜGh\)\$LJPٲZ5	\\\\Zjʆa5<+\a\*\nU@$\rpXA\X\Z\Si\"c4[&3\qt	G	\(\\\0ؤM۴\XNFh\\M\苳 3V\\\\r\C\c\\k\"m!@\$6a,i8V}%\n8\+񸁡\W˄	kp\H\\\M>R5rX\)5J^\t^ZEo/\ί\\\\\$#7\+}B;,i\fCK\W =k\\\\0W\\uJ\ߢ\\\Ʊ\",(\'C\n*\x]ց@[i6C\"AH~v҅\Dj\}#J\tNvo\K\)\Dϻ\QWRPoOAr-~0Y\2+>\\؜r>˛8>{\r\I\\n&\\&FM{\\hpX\\`G\!\n\K\\Õ(\-YӬ|w>@1:(bsD-p+\MNoREKj\ȶ\סzX5tL\ruX\\n:\ZkBNM[\\&&8O{\ڏM@\<Mm3v,\09\9\\8dM\l\]\h\\\M\cTC~-\"Id\\Iu$E\Bygfb \\K.jm\f\\\JN8\=\"<s7I\B<Ŵv\;acx\E/tÈ2Cg{X\d_F\\EP\:zU=<7i\x0-ԋv\XGs\\d\&?9n=QsDE\.B,K\&n\\1\+1h0j;$voL(\M\\\l/K\<:9l\mV/	OI8>\BR\kL\X\"̻\[~\T`K\\:K[\X 1kϬubdM\\:_1ۼe\\۔\|x\n\\nզWZ\働\$yɲU(\\F]\%^jl\s\a\1S\69DPj@we05\\ޱ\\\JdK-\\7.-\ \Z6x.\T.\'zݱ\>|c3g\\4,i|H\\?\8\7\Hk\\#\9sP?5rIld\3)gQ|z8+Luev[ܔkz~|r8~n\7\G3~\uܿ~\>\r\i}R:lTl\6ܴkh|\\\LA\\\9\\PaȥB\rw\\\\(I݃\c99~d7`o\\	\\Qg\9?#o\p=!\HwXtg\Akď\Wq\x\>{\"uz8cN=\e\p[r&_\N\"gt\\v?\0\˙\'O1li_D>St\\?ˎ}SX\\?|vo\\$쇑m\r\\M\\\ѩ\\\@埵\^\:r/h\\\ݖ\7󸷄\rP\``;\\0A\6ב\Qg?:\\Nu\r\7}ž~>܊\"l\'\\g/?Ge\r\3?\\\[\Z9H8\\\_V\\cy{\~4\\k叾X\"!H\MW\D\}\>y*]}\z	\rsW;-N*gt;\\c\\T7]\"\}K\~\2bw6N\\nɚ\\s%\2nlp>6\Ҵɭs2!w5aU\N_\\Tٺ6T\ʥ:\< \yYp\8WHG*\D\\\"\L؄\"\\\(J\\.H	:Ky\'Z\9{5<&^ʆv\\ߎ;B\Tn$CdmU\`\\ɰ96o\\?*\~	NB\\;0V|bC\vDvu\&ۭ\$;ʐw\n6h\qaj&Qs\\wݟv2`\\\8q%\;\p\Îg*h\|AǰG)FZ]\n\zL\ͤE;\Ͱ\M\\rb\\\BSjz0[Y\\\G~\\\32ݱ\rdο멢^Ss2\pqw*-G\\2\\\\X/1\0=\D\\ZT\Y\ZD-\"A7J5\\,\ڥ\0\\0C6lK#~嗩q\B0\@F\@	YtNĚo6i76(\\dD?Je}\o#Y\#\l \\YNp\el=N[\\D\\=kt#Z\ʨAQFm\~\TnXįK\\\ϠP\R/7D\Va:\q!K\޽/84E\칞v\i\		\7|3TZ\q\;	\\0=Sbh\\\v\7T.c뗻m:\k\\Ȝ\qyk6w\tѦ\\eSHx+	\\;\0\HXQ\v:^!\\4tbǖ\,$pW$;\n\\>\Ҕ5Nl{\r%eg\C=N-\ZO|K\Њ\R;\7j\@\m\`a&<y\(	\\H<\\m\+\\dYb4\\4tݧ_^wܱD{)WmaB 9YxWiS\\m;b6d\0\3\t\d5p{M\\\]TSn«\\;dq`\\j\`9\\ne}\~e2vP\\bg\\/a%\>SS7t v\\k\Zo^\ހK2rᷞ	7t\:\\73u{jE\\\D\\5W~w\{Q><bl`Q,8`\p.\\OD\\n>J+mq/뱩\\\Q\=۴Q\|K\F\DB\ZL\2\E\L2c(4\rHdSN\<7Sw\oj5m%N\g\\ޓ\^\0첉zCd>ӣ^3oBȽ7hÅ]k\ȂܵR3j[\\\'ǔ_\\\|`5˳\\(\[\ntY\\\Z_\\\э4\\\\\\°\4ܪ:]\Z\M`\T4WW|ۄ\"\\0>Y>\\ٝP7[&\Z\p\X\\q\V\1%<\\ۮ=j_\	f݅2\vc}\jNQ}\L\\\,ӕ󈚈\enF}>\v`\"MlB\U\\\j۠%	\=\0 \Qx}F9vM\s6\l\uPH<\B(WVb<˭\貢\.ʬGMU^\\[sN?s\|P-F\r%\!\#Z4\-}2ƒW`\Zٻ<t(Ը{\M$UCVs\Y\>dZol4̥UG\0H\0/\Ap\\J&@э\\\@s֧fjI^[-wWK\^66[bV\X֓S^\"	~\0\l\\]\˦\BB~b;׏@\b\"`Uu_\ccBVL]\Z]\\ۮm\'G:z\U\V!\V\`rJjMBuu\0\:nm\vbww\ \VY\\]ɞ%;\g>SH\\Z\\PF\|3\9 `\\0~XE5Җ³m\h\M[vT2\{[%K8ՖZ);\\n0Pۋd0p%	\ݣm=wA\Nb`5ޮ	YoHC\YT0\p=2\'xFG\4Ilr\\\e[A\rn\U\\g:ḻ\d[\/\\\'&=X\\0ȳȤ.`H&Own<\9vB\8b!QnLxg̀*zE6\\#G\\/?~\y\?|Ķ7x~?','EZ-Page with ID 11 updated.','info'),(1679,'2018-05-20 15:26:59',1,'ezpages.php','ezID=11','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1680,'2018-05-20 15:27:00',1,'ezpages.php','ezID=11','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1681,'2018-05-20 15:27:04',1,'ezpages.php','ezID=12&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1682,'2018-05-20 15:27:05',1,'ezpages.php','ezID=12&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1683,'2018-05-20 15:27:14',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'Vێ5\J\^R ZV\n$  F\Z\\i\'ne&\홝\\k\UN\\W\s\Ys\M\g\\G9Z/\%\'\h;\\\\z=}i\\')\\\nbe8٥.\\n\!Lr\vZ?}C\gm\NOjiw\=Wdʳ\e~q~<\\yO\\\W\+JQc1\<\\loR{PnZy{U\\\\W\\	\=\nb\\\7\no\x\\~\.\$Rސj\ifO:0\+6\;RA\<\\Z\FI\̑M&za\k\\koY2*K%҂E\.\z\J++\0\n#%`\\o\L9IJ\\\%#7ԤrE;I#\'3\'@&abg4/\Р#UsFaf81>\%zCp9ݨBC	}ǭ\\\4G\\cP1<vES<u9\N\ۛ\a\\\n>Q_P\*\DgXZEs+\\Xg\~4\\";\l^7\Nf\1:\,Zp\H$}	+xZ\S55:\\FK\\P\VL\+yKd/J\n\\5@S$H\k$EYiamGU|X,ȣ\Z|\1&\6ٖ$\\\MY#\Oz\I&[<G{FRküm`\\\_`䑇A>01T V\\\\~!\nEGա <\!LlSr\U΀\\\mŭd>,mɶ<\1v!uK\_lTF\+D?\՜\\O\DT\KZddl\\NRјV>3\\\A`\oE^Q\\\\kZf\5\\^\G|/&\5\\\\Lzuμb$σ\$\^;\w\GC:ɗ\Ὴ]\x_ǌ\\%7L{քdtJ#K7t\h%|V\5R[yN\%L@\:\:ۍ\f1;q\\\\2;x\\=9VS0s\JO\C\6`#$		/<&2sEe\V\j\:]B=BŴHY~~+!+Jj^\\WVtn/j:iਘJQӘ*;?L5\ԟR;\ZH[}n\#ȱ\\v\0݂|\l}TN%:\\\\ֹ\\\-b/NE-EpX6Fy	\\\W6}dO\J\\_\d%\0埾\\N\\?','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1684,'2018-05-20 15:27:14',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary 'Vێ5\J\^R ZV\n$  F\Z\\i\'ne&\홝\\k\UN\\W\s\Ys\M\g\\G9Z/\%\'\h;\\\\z=}i\\')\\\nbe8٥.\\n\!Lr\vZ?}C\gm\NOjiw\=Wdʳ\e~q~<\\yO\\\W\+JQc1\<\\loR{PnZy{U\\\\W\\	\=\nb\\\7\no\x\\~\.\$Rސj\ifO:0\+6\;RA\<\\Z\FI\̑M&za\k\\koY2*K%҂E\.\z\J++\0\n#%`\\o\L9IJ\\\%#7ԤrE;I#\'3\'@&abg4/\Р#UsFaf81>\%zCp9ݨBC	}ǭ\\\4G\\cP1<vES<u9\N\ۛ\a\\\n>Q_P\*\DgXZEs+\\Xg\~4\\";\l^7\Nf\1:\,Zp\H$}	+xZ\S55:\\FK\\P\VL\+yKd/J\n\\5@S$H\k$EYiamGU|X,ȣ\Z|\1&\6ٖ$\\\MY#\Oz\I&[<G{FRküm`\\\_`䑇A>01T V\\\\~!\nEGա <\!LlSr\U΀\\\mŭd>,mɶ<\1v!uK\_lTF\+D?\՜\\O\DT\KZddl\\NRјV>3\\\A`\oE^Q\\\\kZf\5\\^\G|/&\5\\\\Lzuμb$σ\$\^;\w\GC:ɗ\Ὴ]\x_ǌ\\%7L{քdtJ#K7t\h%|V\5R[yN\%L@\:\:ۍ\f1;q\\\\2;x\\=9VS0s\JO\C\6`#$		/<&2sEe\V\j\:]B=BŴHY~~+!+Jj^\\WVtn/j:iਘJQӘ*;?L5\ԟR;\ZH[}n\#ȱ\\v\0݂|\l}TN%:\\\\ֹ\\\-b/NE-EpX6Fy	\\\W6}dO\J\\_\d%\0埾\\N\\?','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1685,'2018-05-20 15:27:14',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'Vێ5\J\^R ZV\n$  F\Z\\i\'ne&\홝\\k\UN\\W\s\Ys\M\g\\G9Z/\%\'\h;\\\\z=}i\\')\\\nbe8٥.\\n\!Lr\vZ?}C\gm\NOjiw\=Wdʳ\e~q~<\\yO\\\W\+JQc1\<\\loR{PnZy{U\\\\W\\	\=\nb\\\7\no\x\\~\.\$Rސj\ifO:0\+6\;RA\<\\Z\FI\̑M&za\k\\koY2*K%҂E\.\z\J++\0\n#%`\\o\L9IJ\\\%#7ԤrE;I#\'3\'@&abg4/\Р#UsFaf81>\%zCp9ݨBC	}ǭ\\\4G\\cP1<vES<u9\N\ۛ\a\\\n>Q_P\*\DgXZEs+\\Xg\~4\\";\l^7\Nf\1:\,Zp\H$}	+xZ\S55:\\FK\\P\VL\+yKd/J\n\\5@S$H\k$EYiamGU|X,ȣ\Z|\1&\6ٖ$\\\MY#\Oz\I&[<G{FRküm`\\\_`䑇A>01T V\\\\~!\nEGա <\!LlSr\U΀\\\mŭd>,mɶ<\1v!uK\_lTF\+D?\՜\\O\DT\KZddl\\NRјV>3\\\A`\oE^Q\\\\kZf\5\\^\G|/&\5\\\\Lzuμb$σ\$\^;\w\GC:ɗ\Ὴ]\x_ǌ\\%7L{քdtJ#K7t\h%|V\5R[yN\%L@\:\:ۍ\f1;q\\\\2;x\\=9VS0s\JO\C\6`#$		/<&2sEe\V\j\:]B=BŴHY~~+!+Jj^\\WVtn/j:iਘJQӘ*;?L5\ԟR;\ZH[}n\#ȱ\\v\0݂|\l}TN%:\\\\ֹ\\\-b/NE-EpX6Fy	\\\W6}dO\J\\_\d%\0埾\\N\\?','EZ-Page with ID 12 updated.','info'),(1686,'2018-05-20 15:27:14',1,'ezpages.php','ezID=12','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1687,'2018-05-20 15:27:15',1,'ezpages.php','ezID=12','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1688,'2018-05-20 15:27:24',1,'ezpages.php','ezID=7&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1689,'2018-05-20 15:27:24',1,'ezpages.php','ezID=7&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1690,'2018-05-20 15:27:33',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'e\\n\@E\ZAt\ƭb\@\V\7U\\\sO2xr{u\kCF8f\'H#Kj\@t4໊w\#\\$Pچ\\\0Ee\ɍ3o8_{\f}\\7+P\fsu5ivr~<|FmJ\Z?\\\Zlzz\\!\:\a)t\'\=','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1691,'2018-05-20 15:27:34',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary 'e\\n\@E\ZAt\ƭb\@\V\7U\\\sO2xr{u\kCF8f\'H#Kj\@t4໊w\#\\$Pچ\\\0Ee\ɍ3o8_{\f}\\7+P\fsu5ivr~<|FmJ\Z?\\\Zlzz\\!\:\a)t\'\=','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1692,'2018-05-20 15:27:34',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'e\\n\@E\ZAt\ƭb\@\V\7U\\\sO2xr{u\kCF8f\'H#Kj\@t4໊w\#\\$Pچ\\\0Ee\ɍ3o8_{\f}\\7+P\fsu5ivr~<|FmJ\Z?\\\Zlzz\\!\:\a)t\'\=','EZ-Page with ID 7 updated.','info'),(1693,'2018-05-20 15:27:34',1,'ezpages.php','ezID=7','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1694,'2018-05-20 15:27:35',1,'ezpages.php','ezID=7','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1695,'2018-05-20 15:27:42',1,'ezpages.php','ezID=4&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1696,'2018-05-20 15:27:43',1,'ezpages.php','ezID=4&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1697,'2018-05-20 15:27:49',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'e1\0E23;2i\\ŮZ;)	\\\Mp\\\\,KT9bt\\ZZ\\J[\n\\}V\\	BDQ;\R,,\n\'^\\qN<$aNv\\ِ\|rU\Jŗ2\?Qk\Ai\D1\-5\8r\n_','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1698,'2018-05-20 15:27:50',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary 'e1\0E23;2i\\ŮZ;)	\\\Mp\\\\,KT9bt\\ZZ\\J[\n\\}V\\	BDQ;\R,,\n\'^\\qN<$aNv\\ِ\|rU\Jŗ2\?Qk\Ai\D1\-5\8r\n_','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1699,'2018-05-20 15:27:50',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'e1\0E23;2i\\ŮZ;)	\\\Mp\\\\,KT9bt\\ZZ\\J[\n\\}V\\	BDQ;\R,,\n\'^\\qN<$aNv\\ِ\|rU\Jŗ2\?Qk\Ai\D1\-5\8r\n_','EZ-Page with ID 4 updated.','info'),(1700,'2018-05-20 15:27:50',1,'ezpages.php','ezID=4','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1701,'2018-05-20 15:27:50',1,'ezpages.php','ezID=4','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1702,'2018-05-20 15:27:55',1,'ezpages.php','ezID=13&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1703,'2018-05-20 15:27:56',1,'ezpages.php','ezID=13&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1704,'2018-05-20 15:28:06',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'Xmo\6+?)\\6Cp\4A!_gRARva}\'i\/y\^;YCIu\\\\\&\\0\)\IA2C;u*\Tn\-\\"\^\t5wm4:(\T9YHT&j/wX\r\iZa:DGRanqYU6\\\ \'v]$*S\\Wқ\"\\l\}*\\oQHU۰\,Ni\r	\l6g\l\\\\F\\rJ\\\2f}.\\6$rZ4/\'3_\\0\pk\n\Qq38\'\48T4\"\rg\:\\\3\	\\ raKWvɌ\_\n\g\*Qc,ɼ\"cT#\0\|\6l\n<\Z\^\*\\=\m\r;\k&f]F\n\0\\\\;-n\gIjNג6H\0AӼ\,x\oV~V \Z˹;\njv\Vʣ\F\\ \?\\"7z/U6\ERJ\b4\\rJŲ̫\V:ymQFӦ>[tWUg\r?\nr\T@9\I#[\̗S2w^Db48r5\	\\\Y!;ON4Kh\an8\' P\\(Og\_R\"Uٻ\m%ˬwA\\<Խ0\\Q&MGU`oC13<yLyB.񴙂\-XM\\\d̒q)\\\\/\Sm\	l\\\cv\\W\\ߓ)j\782\*7\]\\\\|?<Q>\`?\\c-dk\I\\O@RYEφ3\\\\t\"\b[G/\'Kh=a4>#yAJAw\\\[=Rn9~ܜ\"\t\JhL[\mF\\I\L\-_[~\m۸h\\\J0ƺ8[6fcLo@\m!\4\\E\x=\\\\;ъ\%ܢV\n\)\"L\\\\־cT;?\CP?y\CmљG\"\اNgÎ\_9(F4L}g-*,>!wI\Ak\N\WL\ŝ\\EAl\\Y=rk>\A\T\\m)\\;Mt<i\k\n/ROp\\f\\9\\\\I\\\~\W;','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1705,'2018-05-20 15:28:06',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary 'Xmo\6+?)\\6Cp\4A!_gRARva}\'i\/y\^;YCIu\\\\\&\\0\)\IA2C;u*\Tn\-\\"\^\t5wm4:(\T9YHT&j/wX\r\iZa:DGRanqYU6\\\ \'v]$*S\\Wқ\"\\l\}*\\oQHU۰\,Ni\r	\l6g\l\\\\F\\rJ\\\2f}.\\6$rZ4/\'3_\\0\pk\n\Qq38\'\48T4\"\rg\:\\\3\	\\ raKWvɌ\_\n\g\*Qc,ɼ\"cT#\0\|\6l\n<\Z\^\*\\=\m\r;\k&f]F\n\0\\\\;-n\gIjNג6H\0AӼ\,x\oV~V \Z˹;\njv\Vʣ\F\\ \?\\"7z/U6\ERJ\b4\\rJŲ̫\V:ymQFӦ>[tWUg\r?\nr\T@9\I#[\̗S2w^Db48r5\	\\\Y!;ON4Kh\an8\' P\\(Og\_R\"Uٻ\m%ˬwA\\<Խ0\\Q&MGU`oC13<yLyB.񴙂\-XM\\\d̒q)\\\\/\Sm\	l\\\cv\\W\\ߓ)j\782\*7\]\\\\|?<Q>\`?\\c-dk\I\\O@RYEφ3\\\\t\"\b[G/\'Kh=a4>#yAJAw\\\[=Rn9~ܜ\"\t\JhL[\mF\\I\L\-_[~\m۸h\\\J0ƺ8[6fcLo@\m!\4\\E\x=\\\\;ъ\%ܢV\n\)\"L\\\\־cT;?\CP?y\CmљG\"\اNgÎ\_9(F4L}g-*,>!wI\Ak\N\WL\ŝ\\EAl\\Y=rk>\A\T\\m)\\;Mt<i\k\n/ROp\\f\\9\\\\I\\\~\W;','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1706,'2018-05-20 15:28:06',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'Xmo\6+?)\\6Cp\4A!_gRARva}\'i\/y\^;YCIu\\\\\&\\0\)\IA2C;u*\Tn\-\\"\^\t5wm4:(\T9YHT&j/wX\r\iZa:DGRanqYU6\\\ \'v]$*S\\Wқ\"\\l\}*\\oQHU۰\,Ni\r	\l6g\l\\\\F\\rJ\\\2f}.\\6$rZ4/\'3_\\0\pk\n\Qq38\'\48T4\"\rg\:\\\3\	\\ raKWvɌ\_\n\g\*Qc,ɼ\"cT#\0\|\6l\n<\Z\^\*\\=\m\r;\k&f]F\n\0\\\\;-n\gIjNג6H\0AӼ\,x\oV~V \Z˹;\njv\Vʣ\F\\ \?\\"7z/U6\ERJ\b4\\rJŲ̫\V:ymQFӦ>[tWUg\r?\nr\T@9\I#[\̗S2w^Db48r5\	\\\Y!;ON4Kh\an8\' P\\(Og\_R\"Uٻ\m%ˬwA\\<Խ0\\Q&MGU`oC13<yLyB.񴙂\-XM\\\d̒q)\\\\/\Sm\	l\\\cv\\W\\ߓ)j\782\*7\]\\\\|?<Q>\`?\\c-dk\I\\O@RYEφ3\\\\t\"\b[G/\'Kh=a4>#yAJAw\\\[=Rn9~ܜ\"\t\JhL[\mF\\I\L\-_[~\m۸h\\\J0ƺ8[6fcLo@\m!\4\\E\x=\\\\;ъ\%ܢV\n\)\"L\\\\־cT;?\CP?y\CmљG\"\اNgÎ\_9(F4L}g-*,>!wI\Ak\N\WL\ŝ\\EAl\\Y=rk>\A\T\\m)\\;Mt<i\k\n/ROp\\f\\9\\\\I\\\~\W;','EZ-Page with ID 13 updated.','info'),(1707,'2018-05-20 15:28:07',1,'ezpages.php','ezID=13','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1708,'2018-05-20 15:28:07',1,'ezpages.php','ezID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1709,'2018-05-20 15:28:49',1,'ezpages.php','ezID=10&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1710,'2018-05-20 15:28:49',1,'ezpages.php','ezID=10&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1711,'2018-05-20 15:28:59',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\y\2a{f{c>I\\'\V\ԟ?~\\&kr_]LS\\\T\\)QM\;lM\deQ\\>+S|*\çH\\SV\\\ݴѩTU\\:Kͬ,˧\z^?Gn\\SЫk|D;<\Y4\Sc>7Oiv\\\\\\k eƿ|>\\ff	dT\\\\TW0Ƨ\OJ}|F0>\}\ˬ\\\=:ͪ\F\\Y\O\\\>KL\]/\):??}|6>\\\GV\7u:\'ngſ\\\/\\\\\\ח\O/n\\Wy\ׯ\\\\6oT\>S1ɢ\0\\\ET\mU4\m\\\j\P,ϚGi\\S\\\o`?\R]j(\&Vː7Vn\v\\wʻjU:U0j)\k;:<;Z\\rOr9\\nbZ-ۺQKc\ZՔjf\C\,\%Z\i;\RWwgv\\\B\0)p0DV($pRhbnUU&&m6\\\O\wxW\\ܶ\\n\[ej\Z~\_<D\du\\\0bs4-.\VV\nF0d\sF1<Q!F@\E\'T\\e4\#\M\\`|I08ހ\k:m\ZNc\0N]_YU($|,̀i\P\ie߁H\\\.>n\_ž-\\xJ\N\\\g\No?\7̺2K`\4͈t0cF>Ʌ;\\c{pOONw\]3>Rg\\\\X;h\.g\ZsT\-_\8R&]4(*\M:c&zX\yQ>\\=1v\\\vH6\t\\Ԡ3qJ_x	mɹn4B櫃\\H؎Jt=\t>:,B\Ud\j\VpX\\y հv\XѾ\?ڙp>G \PjAjiՂ\)%dGE\3 \Dz\\\9qZ8Fށi\(Y+h	\\\DǕN\aSTL\\0\VDXRj\3!)5\r\=4R(3\v]I2\\p\\\(3`\\7\/\廷/\\z\pr\}\pw\΅\\\\\\zo<NG\w^ߜ\h\\켙u\۽\D%C]\!\\}|\\;\ou\I֠u\Zkv睊\r!yA,\\\fݔp5{Iɛp\9+rQz!f\V\0A\d\a{Ŝ 1ɠ\\\\\*szKbka\\YŬ\'\f/l;`nDy[\\pi\\"&\\ Q\nD\n/\y\i$\'pd\Z\g2\\P2\*@\Z\jTI!+\0Pjr\rԨ,1A\%t&bɐ\Ƥ,^\"!Q\L[\05\r\[=dQ@Ahq\g\I(\\b:UuU6\쨰^PK\\uzU\\W\\\}V#w@`vpѠ\"re\Iv`\\\4\%M7S 	M\\n\ӷ5M\\Z\`&ÉC_~8R\s ^vz\HEپS\\(8Im\\Q\7I<\Ȓn\M6n-tƶ̠6sp\03TDx\\"\\\+\'\g\\W\}uG\\0:/4ixc`\\n\$PN{^=\\\נ\/$\\\[f|\\]{\.n-\8&|\V6]fMUT#GCGk\r(JNh*\\0r\O$Aӆ\0\ǕYk\o}o\ꕺT{\\\r\\`\\0[<Z8w1\R\\xe@g\CY\.\Z\rԞc\-\βDّ*b\n#2y\34Sh\s,݁\t*]mK\\Dd\ʒmd԰0YlCdt\rV\l\A;MA`c\0EJ\Z0\{\"hl,ѯÇY8\Qw\\3\\Gk\8\	\"\CA\\\\\vEtmku[\b\\G\*z\Y\LCu\@|\\K\0UR@ێ\˜%\\U\/^+4\;,	_e\^<\lW j*4=|N]\i\g&ɍ^n\r\Y\H\M\W\'pJ,\mߝh%5`y^JS\\\]<Bvz͐\\\ع\l9>x\|\&G\C;``(&\y\;1K^\"`:E@Bආ\r\]\r\A\c7\\\\r\55{le(0~\(;][g\w䃮V́!˶\0s\\ֿ\\0B}oG7\\j~/VR\_)\wD\C {\V\\	Y)p0\fn\ 9X1\o\aCAa\:O\W`\+\\n!@:o\x\Fu6[\۵ p\Z0\'ȋ\\\ya\\Ԃ\v()s\\\kf̌sH\TK\%kKw;lG\e\<Ht\g\s\E,\0>xDN#7\M@|NLb|\0 z\\4\\@dTɑqQ\\SO\zDex\uM\[R\)\SǓ\Q0\AI?\ٌu{u@tt̴NOƋU	%[vXȰO(-\K\\\>Ξ\G,\\r[n=Zd[\Z~\\1s\0# \\2k#DIr!\^|d=&\\*u>r\\"3\Z\t\	SR_:\\\HDo\\Eҗ\!\S\\X\\\A\8|\\8:\ \/|\\\r\cg!\A:rщ\\lK\t,\\0Ae\\\0+\𓜇\װO9Y>+%묮.\\*\8vЃiZ0\r\\ODld\"J\Cıy\m\0/}5\UrG\N\ny\0~\DCWS\tQv\\mq\\nf;hN!)\D췺)輰\ٵvg`\$ تw~xu)\ MEt\se\FW\r |\*#5\Z1\n,Ct>i\q˦fIҙi\x\iulwO0\	ӑ\,1`\g/\-\3\k\\+zX+\009W8ʪ\(.r\\\xƣ\PJtU=\"\ PHL\\]\~F!Wj$x\\\??>\%q\n;O0=\\rp#\/N\'\Xty%v8,\2+$o\ҡ\߄?Rk\;\\V~cݽo\ng\16\\IKHjWU\U%#\\\|0IE˓Lc\mi\\\r!~\|\"R\)Q\0?3B\l	jTgDh\\臷\q\\rLF>h\\0K\k\\'c{q*\\-{\\7\@x\\8,<3\i<\FEg3\\qAFAoǺ\\\0?\"Ƃq\d\\H\\<5z\\=-M\nWL`\nxw\=J#\wkо\ĭ8\\!\*$29)\9[\0\Y\$LD۔~f!|ݠJ3I\&+A\X\MM\\\5K&%S&IBaHV\+\0\|\e\Y\\֥12bNJPȘh?[V\\\\b矱\Y[>\\"3S\\e\aK2d\߷f\Aր˩\l^&f\,)N$\\\ZNfr\l4\s\\Zd\kN{ng\pd\\\\\\?_]{}Hmty\r?X[2Sжy}yj0\<5%\\rH\%9a\n\rgI\Z~6[ߠA\Gʥ;EYd\0cᘄF\{(\\0\\ft|	]ˋ&\Zw)Jur,koqF6$-ϫC`\f\|x̑f;\~]\0\\\ZWA\8\kEى\#W(J9R\\׵\0׈z/\\\\ZY帉d\mkjkz*\'s?jGTԢow ,\nl\u\\\X).\0\rƧ_\\0y\0VP\\N\xjBs:;Ie\p>\G\\\Ŏi\r0XV+\npT3s;\rgԮT(됸q\nڹ\X8&3\eẍ<+\\rm:kޣ\Z贿3\gKr\9\\\'C2d%d\*\\ZG`\0,c]\"(KN\\4\k\iKtG\\zs.d\LД\9.3xZ\[rA0\cEp7i\Q\'\n\8=\Q\ee2I\\E\c\G	*B\H\Z,*C\\\AH݆\n\,\\ ?DN\S%P*Lά!Rö\~\pD\{ v@K}Q3+Qd\c<j+z񻤡42v\\\\͡l8\r\{<\\:R\*d\l\\>e?9\\=l\_۩,\}mEL\2\'{OOvѤ&.\\N&p_\wXU.*\\\.[\(bOT9x\\Ej\l5җ>|@ϰ\nbkR\\y|X؀\n\)+z\#\=d\K\\~S\\\W\Տu\J;]UK&\\gDq{V4Bt1\\"C \@\lsR%y\Ue\\\Q׬\IZ\&ݠ:$1X!$u>r\$8Ep\Q\\\ps>\8\:\9N\\\HO\\q쐝gt={tz\u}x@\]{>b\\`\\.wbx&\0>	R&Db=B\\\Q\rM8`\'oyc\nX\0^e\u\\\\9t?9\0\(\tdF\\-)	pQ;1np&m\4m=b[/6sXrn\\\\U>hⓀ\,8gͲP\KcE^\\r\k\FpBLLE!L{\l,(Dm\Sث\\lyedGd#\*_ES# $B=\l\\!7Gi:\l\x\}!d6E/\\\ *!O8EGq`JV\\>\F\Wo.\.:&)}\Hƍ\0\S\z\\?Y\m\\j[ACR\yYG\[\y\\K\B)ʒlk\5U!\\_~evT|gXoD\\n,Y\\\OFJo \@JD(\p>Lf9һn\+\~(\gڄ*Y\t\'oޡcΤ#y\cƓU\QP%gI\\0\DFܨ,V!6Us.3Z\n\j!\4s*kTd,r K뾝\0)\\l_r\F\nE陑%\:\L~ikNx\ۂz*/\ѣM\E\Eמcb*\P\Y-X\\\6K3ޗMvS\\"VB,\VV\Y\-g\\\/Tp\\lk\%\\2jW>$\\,Ri4)~|`=UCr\\#ow2\*\y3\0wd˄0<\P>j\zb93\=\DnJL9B۞.ϭ\γ\8k-\ѝ\\e`Yc\D!/+[,~@H{fG{A-\IVQGY9\η̾Z`5F\09\d(z%mN\ߟP\MuQ;\r^rD\َ36߾}\\\p\n\7I\y6I\\h\?\iÉ\:\s}\t76\.k\SP]Dtw\'H\n`Y![\72	v\RG\.y~\\\H\<,\9ה>(A\Z)\a\d`Y]\z\!ߑ\d\b2%\\\\\پZ6`tל\\-\]V x$<\\mAkP({踇F|\\,Q\";qr8868X\0L9\\hz\\c\'u57\"6\\Dx\\\T.i\Z\\jLX%#}^6BDҜ(G\\\\\I\,jne,:҅avטC0QD^E.@Ptz<\?~\	k@\~\t\\0u\#\Y|\\w+q==\t[\\Ơmr\E;t\{\2y硻%\g\ˑpAh\ݙXH6\=N\\\\e.hlZ\\F7B\'^s\Z侭B[-\\\\YZ\\rcP\\\Pp?d:V~\0*#\+; Cg\O\te/@)I@\\CшN*u\p>\\0e\r[^ [\0\O$_oK;c%!vry1\gᥔxt$aȹ38Cg:e?[a\oȥRεi?\ζW\ܝ1PP-#|\~\'\Z{{a\\\"E\]EI8\A(ʼSӃ$a\ay\ s\iXY<q<ʢ_כ\RD\i\Zj6Z0/$\j\WQ\Vn\l_W|w?\k{XG\+fv\[,eODtٻ\TqJKۡI\ys\"׌*\6Β>\q6q\])I۟\\@ѫ)9\¾\b\1Ok\ZfvL\D81\'\Z%\̓T\\\\;𑇽\%E#0	S\f\3b#_jC\Ю0\N+\\0!ɶ\$\\wg\4\\\\@\ex0\"\"j\\R\\nh\b>[h\\\s\]\nۜ`E\55\\.~k\X\K\R-A\Ս-CbR߆\9Co:~V\KxY\m>3\t::/0(\#\6J\\9\'\]0*Au(ej\n\ٛS4\\a5<kˍ+\\Uݪ\"H\Zంuhc\nCjO9܏\n\XàK8*\HHFN&m\ߦUƚp0BC\'n|J_Q}gN\\`?\>l}T)ȑDc\W\\\\C670\=j0\"a\0N\*N-^\/\q1\_\\\)N\U&D\"\j\\\r\),\\ѭ\f\zoCb%\zt\lh\0g\r\\\JZN\j\	6DXPxO\K\\T`\w]mH%?$ĉ\\]?a\ZHT\H\\\D\\q\\\z8m9\\vԕ-SЇG\\\\'\)\/ kUfEӇ\\\"\sC\\byЧO;	\\=\\\\=|\-!C8\"5d\\qHB?sp%{Dm\h@\4#ߝPL\\\0Hw9nP[\&Z@\\V4Crc\>5\\a+\{\+\*l:cpILpz\\\	k?6	40g\X\0r\\s\\q!,\RI\l\]\>ЎǨZDȖ.\H{鋎^fb \/\\0\\\Ͷs{*\"<37Iˇ\zaq5\;acx\£WHKÈ2뤊C\'=D\\=Ɨ\Gy􇎾^)m\M\Z\l\3Lz\\Wgќ:-1ٹ\O4`\eRȂe\\\\O;z%\rFCbh\dp܄\pDf{Y\Z\\y\A O,nY <e\A4\WdݐH_c\E\5\r%$`\\\C|G]\ZdYٚFĬ=։6CKrd\~\\]7/[ŹMQwT\SxV(d\\\w\U\*/%\%\\A\\\@\B06`\\^\E\\xN:\63\\'A\!\"R\0:(\;\\\Z\\[57\P\"[*X\6\\trA4l]҉\\vǒ}F2g\\c4,i|@V\?\q	so^\\ǏxR\\B\TbȗϏWM<r\\\'c\TPWf\\MC\S/_?\d\/\|j׏P/BJ`l\MK*\2SP\1?bxa\9T|.rPk\q\3\nk\`\c\f\\	\\p{x\\çvΏě\\\\'\'\:!\-\Y\\ɠ\\\\ū8rEV\m:91\/No\-|K9߃_O\u+3\rrOo;OZp\s\0\>\j\W =\]{\\@\mު\\r߫\\=y%Y\Hƿ\6\w\&\D\moH\Zv\n/n4q\\vKy\[{|w0bvV #M\u\t\\\M?o_o6bȩ ̈́~\\\\\'l\{\\'\Z\|nR|d:|>K\\yz\\n^]ӏݡ{\K\7YwA\U;QAat\)EۮAcz\0\`\'\\\\\\\S\\\#E\2U\\rE{\l;\9\fM\\/\\3%\v8뻑\|Vi[\p\eJC\j$2CU\N_\\T٪j\ʥ٣:\<`C߳\8\!\Zqu\EFw	E0\\\Q]\ntN\sj1:\k\Z)xL6~\\AS;\-\V\\r5V\+1cO\.ۼ\rh8%8	݂k\\J/a-\8tDvu\&ۭ\$;ʐ\n6h\qnjfG=\\\'\?\d~\׽v\^ٖ\M\Q\\T\ \|AǰG)FZ]\n\zL\ͤE;\d\\=kSyMWf7\Ԯ+\Z\LA\'\&G\"K\]ď\xA\;\B;\\\\\TQ/މsv\\\Ķd\\n_\f\\z\\\]k\RE|gWheX	\T\r\e\$\.\HB/g]\$NFv-q0\.L˯߆OIv\5ku\\\\Dvovcv0\"ܞ,\G6\H\=M\:\r2 ̀K/(c\w\\\#~|(\\˥KY\\"׎\Zt\Z\a\0\\K\\n\\M\r%\"~-]\~r\zy&\Zo\y\,\\\\\})\^`\s\ nƝ0}\7?Cx	9p\njgsS^7\rx\HW\~3O\\⹯~rMW75\t\rYS:.o\.N?ٴlZnK\\15@T\NR\\u\+,\rؑ@\'\0|Erи^\6\C\RSBƩ\^\Aɥ\,|\S3ǩEC\s\1\e?Z1|\\\4\w\:X\'%J\L\Z@&\\nxAW\>@C\}\u\Kq{-\Q\%؜,WiǣS\߆f}pLni;|K\┛j~Y\>=\Vµ\Z\\͂,gY\Ҡ\\7\W&\A\sN\[;l\~y+	}\\\\\\G_ӈxL\e\_sLȸ٠\9vyܓU+v\5M\.\]sq\wy\\P\c-5,*\xXk˂3\0&7.\y\\eDDࣴ\Z|i\:L\(n\ܦ2\Ӆ]\\\&\-C~)\n`\uG\;@	A:${\w*`\\\ཙP5c~\U\T\N98K\օܓ\^\0첉zCd>\\^3oBȽ7hÅ]k\ȂܵR3jۺ\O\)ܡ\jߩQ,貜_\\\эm\7ڪ\7\\4ܨ:\6n\	[\\\]m>w\d}ngwFtB\lݚ\+{\XƢMBKT\[%\ x$=؉	l#/K\Oȯ\I\wl1ž\o5>\\n{&WaW\vpT\\y\eG}>ܲN	0\]&ꃐ\'s\\T(5Z\Z4aҽ\0$9\nϨ \'ֶ]\rFǛ*=6_T?\+DP+1\\xutYQee֣*Jr\99e>LHsS\@-T\Z^Ycɂ+0\r\]W:Gjܽ~\&ݪ!9\,eG|%?\"ٚ\!\\5ޕD\\\Zu\	=\\\\%6q]{\\orq\\\L-\kb\\j\\ǖ\4x\a\+^$\\\0-zY\\\[\TV\OLv\ػfU\ėa\\HLH\d\\ѕ4\v-m+=9r\\#B\\"ao/\$TwX1j\\0o\\fY\| hg\ྑN:\0$\\2\ѝ<\1\StSd~\L\g\nۺ\\\RoF==\7\0VnQMmK\\6u4A\Q\S&`m?:\\V\fրlM\\vx\\"%\\ًC\\hh\o\]Э@\$\p\\51\5i6r\; G\X\itpl&Mn{\Zl\!\`\n\\nZE |\\NV~\Kb\3\k	<L\r/\0Y\\tgƣM+G\N\G,0j\-	oPÀ_Ȇ|c\\\4\\:o>U\\O\\uo\','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1712,'2018-05-20 15:29:00',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\y\2a{f{c>I\\'\V\ԟ?~\\&kr_]LS\\\T\\)QM\;lM\deQ\\>+S|*\çH\\SV\\\ݴѩTU\\:Kͬ,˧\z^?Gn\\SЫk|D;<\Y4\Sc>7Oiv\\\\\\k eƿ|>\\ff	dT\\\\TW0Ƨ\OJ}|F0>\}\ˬ\\\=:ͪ\F\\Y\O\\\>KL\]/\):??}|6>\\\GV\7u:\'ngſ\\\/\\\\\\ח\O/n\\Wy\ׯ\\\\6oT\>S1ɢ\0\\\ET\mU4\m\\\j\P,ϚGi\\S\\\o`?\R]j(\&Vː7Vn\v\\wʻjU:U0j)\k;:<;Z\\rOr9\\nbZ-ۺQKc\ZՔjf\C\,\%Z\i;\RWwgv\\\B\0)p0DV($pRhbnUU&&m6\\\O\wxW\\ܶ\\n\[ej\Z~\_<D\du\\\0bs4-.\VV\nF0d\sF1<Q!F@\E\'T\\e4\#\M\\`|I08ހ\k:m\ZNc\0N]_YU($|,̀i\P\ie߁H\\\.>n\_ž-\\xJ\N\\\g\No?\7̺2K`\4͈t0cF>Ʌ;\\c{pOONw\]3>Rg\\\\X;h\.g\ZsT\-_\8R&]4(*\M:c&zX\yQ>\\=1v\\\vH6\t\\Ԡ3qJ_x	mɹn4B櫃\\H؎Jt=\t>:,B\Ud\j\VpX\\y հv\XѾ\?ڙp>G \PjAjiՂ\)%dGE\3 \Dz\\\9qZ8Fށi\(Y+h	\\\DǕN\aSTL\\0\VDXRj\3!)5\r\=4R(3\v]I2\\p\\\(3`\\7\/\廷/\\z\pr\}\pw\΅\\\\\\zo<NG\w^ߜ\h\\켙u\۽\D%C]\!\\}|\\;\ou\I֠u\Zkv睊\r!yA,\\\fݔp5{Iɛp\9+rQz!f\V\0A\d\a{Ŝ 1ɠ\\\\\*szKbka\\YŬ\'\f/l;`nDy[\\pi\\"&\\ Q\nD\n/\y\i$\'pd\Z\g2\\P2\*@\Z\jTI!+\0Pjr\rԨ,1A\%t&bɐ\Ƥ,^\"!Q\L[\05\r\[=dQ@Ahq\g\I(\\b:UuU6\쨰^PK\\uzU\\W\\\}V#w@`vpѠ\"re\Iv`\\\4\%M7S 	M\\n\ӷ5M\\Z\`&ÉC_~8R\s ^vz\HEپS\\(8Im\\Q\7I<\Ȓn\M6n-tƶ̠6sp\03TDx\\"\\\+\'\g\\W\}uG\\0:/4ixc`\\n\$PN{^=\\\נ\/$\\\[f|\\]{\.n-\8&|\V6]fMUT#GCGk\r(JNh*\\0r\O$Aӆ\0\ǕYk\o}o\ꕺT{\\\r\\`\\0[<Z8w1\R\\xe@g\CY\.\Z\rԞc\-\βDّ*b\n#2y\34Sh\s,݁\t*]mK\\Dd\ʒmd԰0YlCdt\rV\l\A;MA`c\0EJ\Z0\{\"hl,ѯÇY8\Qw\\3\\Gk\8\	\"\CA\\\\\vEtmku[\b\\G\*z\Y\LCu\@|\\K\0UR@ێ\˜%\\U\/^+4\;,	_e\^<\lW j*4=|N]\i\g&ɍ^n\r\Y\H\M\W\'pJ,\mߝh%5`y^JS\\\]<Bvz͐\\\ع\l9>x\|\&G\C;``(&\y\;1K^\"`:E@Bආ\r\]\r\A\c7\\\\r\55{le(0~\(;][g\w䃮V́!˶\0s\\ֿ\\0B}oG7\\j~/VR\_)\wD\C {\V\\	Y)p0\fn\ 9X1\o\aCAa\:O\W`\+\\n!@:o\x\Fu6[\۵ p\Z0\'ȋ\\\ya\\Ԃ\v()s\\\kf̌sH\TK\%kKw;lG\e\<Ht\g\s\E,\0>xDN#7\M@|NLb|\0 z\\4\\@dTɑqQ\\SO\zDex\uM\[R\)\SǓ\Q0\AI?\ٌu{u@tt̴NOƋU	%[vXȰO(-\K\\\>Ξ\G,\\r[n=Zd[\Z~\\1s\0# \\2k#DIr!\^|d=&\\*u>r\\"3\Z\t\	SR_:\\\HDo\\Eҗ\!\S\\X\\\A\8|\\8:\ \/|\\\r\cg!\A:rщ\\lK\t,\\0Ae\\\0+\𓜇\װO9Y>+%묮.\\*\8vЃiZ0\r\\ODld\"J\Cıy\m\0/}5\UrG\N\ny\0~\DCWS\tQv\\mq\\nf;hN!)\D췺)輰\ٵvg`\$ تw~xu)\ MEt\se\FW\r |\*#5\Z1\n,Ct>i\q˦fIҙi\x\iulwO0\	ӑ\,1`\g/\-\3\k\\+zX+\009W8ʪ\(.r\\\xƣ\PJtU=\"\ PHL\\]\~F!Wj$x\\\??>\%q\n;O0=\\rp#\/N\'\Xty%v8,\2+$o\ҡ\߄?Rk\;\\V~cݽo\ng\16\\IKHjWU\U%#\\\|0IE˓Lc\mi\\\r!~\|\"R\)Q\0?3B\l	jTgDh\\臷\q\\rLF>h\\0K\k\\'c{q*\\-{\\7\@x\\8,<3\i<\FEg3\\qAFAoǺ\\\0?\"Ƃq\d\\H\\<5z\\=-M\nWL`\nxw\=J#\wkо\ĭ8\\!\*$29)\9[\0\Y\$LD۔~f!|ݠJ3I\&+A\X\MM\\\5K&%S&IBaHV\+\0\|\e\Y\\֥12bNJPȘh?[V\\\\b矱\Y[>\\"3S\\e\aK2d\߷f\Aր˩\l^&f\,)N$\\\ZNfr\l4\s\\Zd\kN{ng\pd\\\\\\?_]{}Hmty\r?X[2Sжy}yj0\<5%\\rH\%9a\n\rgI\Z~6[ߠA\Gʥ;EYd\0cᘄF\{(\\0\\ft|	]ˋ&\Zw)Jur,koqF6$-ϫC`\f\|x̑f;\~]\0\\\ZWA\8\kEى\#W(J9R\\׵\0׈z/\\\\ZY帉d\mkjkz*\'s?jGTԢow ,\nl\u\\\X).\0\rƧ_\\0y\0VP\\N\xjBs:;Ie\p>\G\\\Ŏi\r0XV+\npT3s;\rgԮT(됸q\nڹ\X8&3\eẍ<+\\rm:kޣ\Z贿3\gKr\9\\\'C2d%d\*\\ZG`\0,c]\"(KN\\4\k\iKtG\\zs.d\LД\9.3xZ\[rA0\cEp7i\Q\'\n\8=\Q\ee2I\\E\c\G	*B\H\Z,*C\\\AH݆\n\,\\ ?DN\S%P*Lά!Rö\~\pD\{ v@K}Q3+Qd\c<j+z񻤡42v\\\\͡l8\r\{<\\:R\*d\l\\>e?9\\=l\_۩,\}mEL\2\'{OOvѤ&.\\N&p_\wXU.*\\\.[\(bOT9x\\Ej\l5җ>|@ϰ\nbkR\\y|X؀\n\)+z\#\=d\K\\~S\\\W\Տu\J;]UK&\\gDq{V4Bt1\\"C \@\lsR%y\Ue\\\Q׬\IZ\&ݠ:$1X!$u>r\$8Ep\Q\\\ps>\8\:\9N\\\HO\\q쐝gt={tz\u}x@\]{>b\\`\\.wbx&\0>	R&Db=B\\\Q\rM8`\'oyc\nX\0^e\u\\\\9t?9\0\(\tdF\\-)	pQ;1np&m\4m=b[/6sXrn\\\\U>hⓀ\,8gͲP\KcE^\\r\k\FpBLLE!L{\l,(Dm\Sث\\lyedGd#\*_ES# $B=\l\\!7Gi:\l\x\}!d6E/\\\ *!O8EGq`JV\\>\F\Wo.\.:&)}\Hƍ\0\S\z\\?Y\m\\j[ACR\yYG\[\y\\K\B)ʒlk\5U!\\_~evT|gXoD\\n,Y\\\OFJo \@JD(\p>Lf9һn\+\~(\gڄ*Y\t\'oޡcΤ#y\cƓU\QP%gI\\0\DFܨ,V!6Us.3Z\n\j!\4s*kTd,r K뾝\0)\\l_r\F\nE陑%\:\L~ikNx\ۂz*/\ѣM\E\Eמcb*\P\Y-X\\\6K3ޗMvS\\"VB,\VV\Y\-g\\\/Tp\\lk\%\\2jW>$\\,Ri4)~|`=UCr\\#ow2\*\y3\0wd˄0<\P>j\zb93\=\DnJL9B۞.ϭ\γ\8k-\ѝ\\e`Yc\D!/+[,~@H{fG{A-\IVQGY9\η̾Z`5F\09\d(z%mN\ߟP\MuQ;\r^rD\َ36߾}\\\p\n\7I\y6I\\h\?\iÉ\:\s}\t76\.k\SP]Dtw\'H\n`Y![\72	v\RG\.y~\\\H\<,\9ה>(A\Z)\a\d`Y]\z\!ߑ\d\b2%\\\\\پZ6`tל\\-\]V x$<\\mAkP({踇F|\\,Q\";qr8868X\0L9\\hz\\c\'u57\"6\\Dx\\\T.i\Z\\jLX%#}^6BDҜ(G\\\\\I\,jne,:҅avטC0QD^E.@Ptz<\?~\	k@\~\t\\0u\#\Y|\\w+q==\t[\\Ơmr\E;t\{\2y硻%\g\ˑpAh\ݙXH6\=N\\\\e.hlZ\\F7B\'^s\Z侭B[-\\\\YZ\\rcP\\\Pp?d:V~\0*#\+; Cg\O\te/@)I@\\CшN*u\p>\\0e\r[^ [\0\O$_oK;c%!vry1\gᥔxt$aȹ38Cg:e?[a\oȥRεi?\ζW\ܝ1PP-#|\~\'\Z{{a\\\"E\]EI8\A(ʼSӃ$a\ay\ s\iXY<q<ʢ_כ\RD\i\Zj6Z0/$\j\WQ\Vn\l_W|w?\k{XG\+fv\[,eODtٻ\TqJKۡI\ys\"׌*\6Β>\q6q\])I۟\\@ѫ)9\¾\b\1Ok\ZfvL\D81\'\Z%\̓T\\\\;𑇽\%E#0	S\f\3b#_jC\Ю0\N+\\0!ɶ\$\\wg\4\\\\@\ex0\"\"j\\R\\nh\b>[h\\\s\]\nۜ`E\55\\.~k\X\K\R-A\Ս-CbR߆\9Co:~V\KxY\m>3\t::/0(\#\6J\\9\'\]0*Au(ej\n\ٛS4\\a5<kˍ+\\Uݪ\"H\Zంuhc\nCjO9܏\n\XàK8*\HHFN&m\ߦUƚp0BC\'n|J_Q}gN\\`?\>l}T)ȑDc\W\\\\C670\=j0\"a\0N\*N-^\/\q1\_\\\)N\U&D\"\j\\\r\),\\ѭ\f\zoCb%\zt\lh\0g\r\\\JZN\j\	6DXPxO\K\\T`\w]mH%?$ĉ\\]?a\ZHT\H\\\D\\q\\\z8m9\\vԕ-SЇG\\\\'\)\/ kUfEӇ\\\"\sC\\byЧO;	\\=\\\\=|\-!C8\"5d\\qHB?sp%{Dm\h@\4#ߝPL\\\0Hw9nP[\&Z@\\V4Crc\>5\\a+\{\+\*l:cpILpz\\\	k?6	40g\X\0r\\s\\q!,\RI\l\]\>ЎǨZDȖ.\H{鋎^fb \/\\0\\\Ͷs{*\"<37Iˇ\zaq5\;acx\£WHKÈ2뤊C\'=D\\=Ɨ\Gy􇎾^)m\M\Z\l\3Lz\\Wgќ:-1ٹ\O4`\eRȂe\\\\O;z%\rFCbh\dp܄\pDf{Y\Z\\y\A O,nY <e\A4\WdݐH_c\E\5\r%$`\\\C|G]\ZdYٚFĬ=։6CKrd\~\\]7/[ŹMQwT\SxV(d\\\w\U\*/%\%\\A\\\@\B06`\\^\E\\xN:\63\\'A\!\"R\0:(\;\\\Z\\[57\P\"[*X\6\\trA4l]҉\\vǒ}F2g\\c4,i|@V\?\q	so^\\ǏxR\\B\TbȗϏWM<r\\\'c\TPWf\\MC\S/_?\d\/\|j׏P/BJ`l\MK*\2SP\1?bxa\9T|.rPk\q\3\nk\`\c\f\\	\\p{x\\çvΏě\\\\'\'\:!\-\Y\\ɠ\\\\ū8rEV\m:91\/No\-|K9߃_O\u+3\rrOo;OZp\s\0\>\j\W =\]{\\@\mު\\r߫\\=y%Y\Hƿ\6\w\&\D\moH\Zv\n/n4q\\vKy\[{|w0bvV #M\u\t\\\M?o_o6bȩ ̈́~\\\\\'l\{\\'\Z\|nR|d:|>K\\yz\\n^]ӏݡ{\K\7YwA\U;QAat\)EۮAcz\0\`\'\\\\\\\S\\\#E\2U\\rE{\l;\9\fM\\/\\3%\v8뻑\|Vi[\p\eJC\j$2CU\N_\\T٪j\ʥ٣:\<`C߳\8\!\Zqu\EFw	E0\\\Q]\ntN\sj1:\k\Z)xL6~\\AS;\-\V\\r5V\+1cO\.ۼ\rh8%8	݂k\\J/a-\8tDvu\&ۭ\$;ʐ\n6h\qnjfG=\\\'\?\d~\׽v\^ٖ\M\Q\\T\ \|AǰG)FZ]\n\zL\ͤE;\d\\=kSyMWf7\Ԯ+\Z\LA\'\&G\"K\]ď\xA\;\B;\\\\\TQ/މsv\\\Ķd\\n_\f\\z\\\]k\RE|gWheX	\T\r\e\$\.\HB/g]\$NFv-q0\.L˯߆OIv\5ku\\\\Dvovcv0\"ܞ,\G6\H\=M\:\r2 ̀K/(c\w\\\#~|(\\˥KY\\"׎\Zt\Z\a\0\\K\\n\\M\r%\"~-]\~r\zy&\Zo\y\,\\\\\})\^`\s\ nƝ0}\7?Cx	9p\njgsS^7\rx\HW\~3O\\⹯~rMW75\t\rYS:.o\.N?ٴlZnK\\15@T\NR\\u\+,\rؑ@\'\0|Erи^\6\C\RSBƩ\^\Aɥ\,|\S3ǩEC\s\1\e?Z1|\\\4\w\:X\'%J\L\Z@&\\nxAW\>@C\}\u\Kq{-\Q\%؜,WiǣS\߆f}pLni;|K\┛j~Y\>=\Vµ\Z\\͂,gY\Ҡ\\7\W&\A\sN\[;l\~y+	}\\\\\\G_ӈxL\e\_sLȸ٠\9vyܓU+v\5M\.\]sq\wy\\P\c-5,*\xXk˂3\0&7.\y\\eDDࣴ\Z|i\:L\(n\ܦ2\Ӆ]\\\&\-C~)\n`\uG\;@	A:${\w*`\\\ཙP5c~\U\T\N98K\օܓ\^\0첉zCd>\\^3oBȽ7hÅ]k\ȂܵR3jۺ\O\)ܡ\jߩQ,貜_\\\эm\7ڪ\7\\4ܨ:\6n\	[\\\]m>w\d}ngwFtB\lݚ\+{\XƢMBKT\[%\ x$=؉	l#/K\Oȯ\I\wl1ž\o5>\\n{&WaW\vpT\\y\eG}>ܲN	0\]&ꃐ\'s\\T(5Z\Z4aҽ\0$9\nϨ \'ֶ]\rFǛ*=6_T?\+DP+1\\xutYQee֣*Jr\99e>LHsS\@-T\Z^Ycɂ+0\r\]W:Gjܽ~\&ݪ!9\,eG|%?\"ٚ\!\\5ޕD\\\Zu\	=\\\\%6q]{\\orq\\\L-\kb\\j\\ǖ\4x\a\+^$\\\0-zY\\\[\TV\OLv\ػfU\ėa\\HLH\d\\ѕ4\v-m+=9r\\#B\\"ao/\$TwX1j\\0o\\fY\| hg\ྑN:\0$\\2\ѝ<\1\StSd~\L\g\nۺ\\\RoF==\7\0VnQMmK\\6u4A\Q\S&`m?:\\V\fրlM\\vx\\"%\\ًC\\hh\o\]Э@\$\p\\51\5i6r\; G\X\itpl&Mn{\Zl\!\`\n\\nZE |\\NV~\Kb\3\k	<L\r/\0Y\\tgƣM+G\N\G,0j\-	oPÀ_Ȇ|c\\\4\\:o>U\\O\\uo\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1713,'2018-05-20 15:29:00',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\y\2a{f{c>I\\'\V\ԟ?~\\&kr_]LS\\\T\\)QM\;lM\deQ\\>+S|*\çH\\SV\\\ݴѩTU\\:Kͬ,˧\z^?Gn\\SЫk|D;<\Y4\Sc>7Oiv\\\\\\k eƿ|>\\ff	dT\\\\TW0Ƨ\OJ}|F0>\}\ˬ\\\=:ͪ\F\\Y\O\\\>KL\]/\):??}|6>\\\GV\7u:\'ngſ\\\/\\\\\\ח\O/n\\Wy\ׯ\\\\6oT\>S1ɢ\0\\\ET\mU4\m\\\j\P,ϚGi\\S\\\o`?\R]j(\&Vː7Vn\v\\wʻjU:U0j)\k;:<;Z\\rOr9\\nbZ-ۺQKc\ZՔjf\C\,\%Z\i;\RWwgv\\\B\0)p0DV($pRhbnUU&&m6\\\O\wxW\\ܶ\\n\[ej\Z~\_<D\du\\\0bs4-.\VV\nF0d\sF1<Q!F@\E\'T\\e4\#\M\\`|I08ހ\k:m\ZNc\0N]_YU($|,̀i\P\ie߁H\\\.>n\_ž-\\xJ\N\\\g\No?\7̺2K`\4͈t0cF>Ʌ;\\c{pOONw\]3>Rg\\\\X;h\.g\ZsT\-_\8R&]4(*\M:c&zX\yQ>\\=1v\\\vH6\t\\Ԡ3qJ_x	mɹn4B櫃\\H؎Jt=\t>:,B\Ud\j\VpX\\y հv\XѾ\?ڙp>G \PjAjiՂ\)%dGE\3 \Dz\\\9qZ8Fށi\(Y+h	\\\DǕN\aSTL\\0\VDXRj\3!)5\r\=4R(3\v]I2\\p\\\(3`\\7\/\廷/\\z\pr\}\pw\΅\\\\\\zo<NG\w^ߜ\h\\켙u\۽\D%C]\!\\}|\\;\ou\I֠u\Zkv睊\r!yA,\\\fݔp5{Iɛp\9+rQz!f\V\0A\d\a{Ŝ 1ɠ\\\\\*szKbka\\YŬ\'\f/l;`nDy[\\pi\\"&\\ Q\nD\n/\y\i$\'pd\Z\g2\\P2\*@\Z\jTI!+\0Pjr\rԨ,1A\%t&bɐ\Ƥ,^\"!Q\L[\05\r\[=dQ@Ahq\g\I(\\b:UuU6\쨰^PK\\uzU\\W\\\}V#w@`vpѠ\"re\Iv`\\\4\%M7S 	M\\n\ӷ5M\\Z\`&ÉC_~8R\s ^vz\HEپS\\(8Im\\Q\7I<\Ȓn\M6n-tƶ̠6sp\03TDx\\"\\\+\'\g\\W\}uG\\0:/4ixc`\\n\$PN{^=\\\נ\/$\\\[f|\\]{\.n-\8&|\V6]fMUT#GCGk\r(JNh*\\0r\O$Aӆ\0\ǕYk\o}o\ꕺT{\\\r\\`\\0[<Z8w1\R\\xe@g\CY\.\Z\rԞc\-\βDّ*b\n#2y\34Sh\s,݁\t*]mK\\Dd\ʒmd԰0YlCdt\rV\l\A;MA`c\0EJ\Z0\{\"hl,ѯÇY8\Qw\\3\\Gk\8\	\"\CA\\\\\vEtmku[\b\\G\*z\Y\LCu\@|\\K\0UR@ێ\˜%\\U\/^+4\;,	_e\^<\lW j*4=|N]\i\g&ɍ^n\r\Y\H\M\W\'pJ,\mߝh%5`y^JS\\\]<Bvz͐\\\ع\l9>x\|\&G\C;``(&\y\;1K^\"`:E@Bආ\r\]\r\A\c7\\\\r\55{le(0~\(;][g\w䃮V́!˶\0s\\ֿ\\0B}oG7\\j~/VR\_)\wD\C {\V\\	Y)p0\fn\ 9X1\o\aCAa\:O\W`\+\\n!@:o\x\Fu6[\۵ p\Z0\'ȋ\\\ya\\Ԃ\v()s\\\kf̌sH\TK\%kKw;lG\e\<Ht\g\s\E,\0>xDN#7\M@|NLb|\0 z\\4\\@dTɑqQ\\SO\zDex\uM\[R\)\SǓ\Q0\AI?\ٌu{u@tt̴NOƋU	%[vXȰO(-\K\\\>Ξ\G,\\r[n=Zd[\Z~\\1s\0# \\2k#DIr!\^|d=&\\*u>r\\"3\Z\t\	SR_:\\\HDo\\Eҗ\!\S\\X\\\A\8|\\8:\ \/|\\\r\cg!\A:rщ\\lK\t,\\0Ae\\\0+\𓜇\װO9Y>+%묮.\\*\8vЃiZ0\r\\ODld\"J\Cıy\m\0/}5\UrG\N\ny\0~\DCWS\tQv\\mq\\nf;hN!)\D췺)輰\ٵvg`\$ تw~xu)\ MEt\se\FW\r |\*#5\Z1\n,Ct>i\q˦fIҙi\x\iulwO0\	ӑ\,1`\g/\-\3\k\\+zX+\009W8ʪ\(.r\\\xƣ\PJtU=\"\ PHL\\]\~F!Wj$x\\\??>\%q\n;O0=\\rp#\/N\'\Xty%v8,\2+$o\ҡ\߄?Rk\;\\V~cݽo\ng\16\\IKHjWU\U%#\\\|0IE˓Lc\mi\\\r!~\|\"R\)Q\0?3B\l	jTgDh\\臷\q\\rLF>h\\0K\k\\'c{q*\\-{\\7\@x\\8,<3\i<\FEg3\\qAFAoǺ\\\0?\"Ƃq\d\\H\\<5z\\=-M\nWL`\nxw\=J#\wkо\ĭ8\\!\*$29)\9[\0\Y\$LD۔~f!|ݠJ3I\&+A\X\MM\\\5K&%S&IBaHV\+\0\|\e\Y\\֥12bNJPȘh?[V\\\\b矱\Y[>\\"3S\\e\aK2d\߷f\Aր˩\l^&f\,)N$\\\ZNfr\l4\s\\Zd\kN{ng\pd\\\\\\?_]{}Hmty\r?X[2Sжy}yj0\<5%\\rH\%9a\n\rgI\Z~6[ߠA\Gʥ;EYd\0cᘄF\{(\\0\\ft|	]ˋ&\Zw)Jur,koqF6$-ϫC`\f\|x̑f;\~]\0\\\ZWA\8\kEى\#W(J9R\\׵\0׈z/\\\\ZY帉d\mkjkz*\'s?jGTԢow ,\nl\u\\\X).\0\rƧ_\\0y\0VP\\N\xjBs:;Ie\p>\G\\\Ŏi\r0XV+\npT3s;\rgԮT(됸q\nڹ\X8&3\eẍ<+\\rm:kޣ\Z贿3\gKr\9\\\'C2d%d\*\\ZG`\0,c]\"(KN\\4\k\iKtG\\zs.d\LД\9.3xZ\[rA0\cEp7i\Q\'\n\8=\Q\ee2I\\E\c\G	*B\H\Z,*C\\\AH݆\n\,\\ ?DN\S%P*Lά!Rö\~\pD\{ v@K}Q3+Qd\c<j+z񻤡42v\\\\͡l8\r\{<\\:R\*d\l\\>e?9\\=l\_۩,\}mEL\2\'{OOvѤ&.\\N&p_\wXU.*\\\.[\(bOT9x\\Ej\l5җ>|@ϰ\nbkR\\y|X؀\n\)+z\#\=d\K\\~S\\\W\Տu\J;]UK&\\gDq{V4Bt1\\"C \@\lsR%y\Ue\\\Q׬\IZ\&ݠ:$1X!$u>r\$8Ep\Q\\\ps>\8\:\9N\\\HO\\q쐝gt={tz\u}x@\]{>b\\`\\.wbx&\0>	R&Db=B\\\Q\rM8`\'oyc\nX\0^e\u\\\\9t?9\0\(\tdF\\-)	pQ;1np&m\4m=b[/6sXrn\\\\U>hⓀ\,8gͲP\KcE^\\r\k\FpBLLE!L{\l,(Dm\Sث\\lyedGd#\*_ES# $B=\l\\!7Gi:\l\x\}!d6E/\\\ *!O8EGq`JV\\>\F\Wo.\.:&)}\Hƍ\0\S\z\\?Y\m\\j[ACR\yYG\[\y\\K\B)ʒlk\5U!\\_~evT|gXoD\\n,Y\\\OFJo \@JD(\p>Lf9һn\+\~(\gڄ*Y\t\'oޡcΤ#y\cƓU\QP%gI\\0\DFܨ,V!6Us.3Z\n\j!\4s*kTd,r K뾝\0)\\l_r\F\nE陑%\:\L~ikNx\ۂz*/\ѣM\E\Eמcb*\P\Y-X\\\6K3ޗMvS\\"VB,\VV\Y\-g\\\/Tp\\lk\%\\2jW>$\\,Ri4)~|`=UCr\\#ow2\*\y3\0wd˄0<\P>j\zb93\=\DnJL9B۞.ϭ\γ\8k-\ѝ\\e`Yc\D!/+[,~@H{fG{A-\IVQGY9\η̾Z`5F\09\d(z%mN\ߟP\MuQ;\r^rD\َ36߾}\\\p\n\7I\y6I\\h\?\iÉ\:\s}\t76\.k\SP]Dtw\'H\n`Y![\72	v\RG\.y~\\\H\<,\9ה>(A\Z)\a\d`Y]\z\!ߑ\d\b2%\\\\\پZ6`tל\\-\]V x$<\\mAkP({踇F|\\,Q\";qr8868X\0L9\\hz\\c\'u57\"6\\Dx\\\T.i\Z\\jLX%#}^6BDҜ(G\\\\\I\,jne,:҅avטC0QD^E.@Ptz<\?~\	k@\~\t\\0u\#\Y|\\w+q==\t[\\Ơmr\E;t\{\2y硻%\g\ˑpAh\ݙXH6\=N\\\\e.hlZ\\F7B\'^s\Z侭B[-\\\\YZ\\rcP\\\Pp?d:V~\0*#\+; Cg\O\te/@)I@\\CшN*u\p>\\0e\r[^ [\0\O$_oK;c%!vry1\gᥔxt$aȹ38Cg:e?[a\oȥRεi?\ζW\ܝ1PP-#|\~\'\Z{{a\\\"E\]EI8\A(ʼSӃ$a\ay\ s\iXY<q<ʢ_כ\RD\i\Zj6Z0/$\j\WQ\Vn\l_W|w?\k{XG\+fv\[,eODtٻ\TqJKۡI\ys\"׌*\6Β>\q6q\])I۟\\@ѫ)9\¾\b\1Ok\ZfvL\D81\'\Z%\̓T\\\\;𑇽\%E#0	S\f\3b#_jC\Ю0\N+\\0!ɶ\$\\wg\4\\\\@\ex0\"\"j\\R\\nh\b>[h\\\s\]\nۜ`E\55\\.~k\X\K\R-A\Ս-CbR߆\9Co:~V\KxY\m>3\t::/0(\#\6J\\9\'\]0*Au(ej\n\ٛS4\\a5<kˍ+\\Uݪ\"H\Zంuhc\nCjO9܏\n\XàK8*\HHFN&m\ߦUƚp0BC\'n|J_Q}gN\\`?\>l}T)ȑDc\W\\\\C670\=j0\"a\0N\*N-^\/\q1\_\\\)N\U&D\"\j\\\r\),\\ѭ\f\zoCb%\zt\lh\0g\r\\\JZN\j\	6DXPxO\K\\T`\w]mH%?$ĉ\\]?a\ZHT\H\\\D\\q\\\z8m9\\vԕ-SЇG\\\\'\)\/ kUfEӇ\\\"\sC\\byЧO;	\\=\\\\=|\-!C8\"5d\\qHB?sp%{Dm\h@\4#ߝPL\\\0Hw9nP[\&Z@\\V4Crc\>5\\a+\{\+\*l:cpILpz\\\	k?6	40g\X\0r\\s\\q!,\RI\l\]\>ЎǨZDȖ.\H{鋎^fb \/\\0\\\Ͷs{*\"<37Iˇ\zaq5\;acx\£WHKÈ2뤊C\'=D\\=Ɨ\Gy􇎾^)m\M\Z\l\3Lz\\Wgќ:-1ٹ\O4`\eRȂe\\\\O;z%\rFCbh\dp܄\pDf{Y\Z\\y\A O,nY <e\A4\WdݐH_c\E\5\r%$`\\\C|G]\ZdYٚFĬ=։6CKrd\~\\]7/[ŹMQwT\SxV(d\\\w\U\*/%\%\\A\\\@\B06`\\^\E\\xN:\63\\'A\!\"R\0:(\;\\\Z\\[57\P\"[*X\6\\trA4l]҉\\vǒ}F2g\\c4,i|@V\?\q	so^\\ǏxR\\B\TbȗϏWM<r\\\'c\TPWf\\MC\S/_?\d\/\|j׏P/BJ`l\MK*\2SP\1?bxa\9T|.rPk\q\3\nk\`\c\f\\	\\p{x\\çvΏě\\\\'\'\:!\-\Y\\ɠ\\\\ū8rEV\m:91\/No\-|K9߃_O\u+3\rrOo;OZp\s\0\>\j\W =\]{\\@\mު\\r߫\\=y%Y\Hƿ\6\w\&\D\moH\Zv\n/n4q\\vKy\[{|w0bvV #M\u\t\\\M?o_o6bȩ ̈́~\\\\\'l\{\\'\Z\|nR|d:|>K\\yz\\n^]ӏݡ{\K\7YwA\U;QAat\)EۮAcz\0\`\'\\\\\\\S\\\#E\2U\\rE{\l;\9\fM\\/\\3%\v8뻑\|Vi[\p\eJC\j$2CU\N_\\T٪j\ʥ٣:\<`C߳\8\!\Zqu\EFw	E0\\\Q]\ntN\sj1:\k\Z)xL6~\\AS;\-\V\\r5V\+1cO\.ۼ\rh8%8	݂k\\J/a-\8tDvu\&ۭ\$;ʐ\n6h\qnjfG=\\\'\?\d~\׽v\^ٖ\M\Q\\T\ \|AǰG)FZ]\n\zL\ͤE;\d\\=kSyMWf7\Ԯ+\Z\LA\'\&G\"K\]ď\xA\;\B;\\\\\TQ/މsv\\\Ķd\\n_\f\\z\\\]k\RE|gWheX	\T\r\e\$\.\HB/g]\$NFv-q0\.L˯߆OIv\5ku\\\\Dvovcv0\"ܞ,\G6\H\=M\:\r2 ̀K/(c\w\\\#~|(\\˥KY\\"׎\Zt\Z\a\0\\K\\n\\M\r%\"~-]\~r\zy&\Zo\y\,\\\\\})\^`\s\ nƝ0}\7?Cx	9p\njgsS^7\rx\HW\~3O\\⹯~rMW75\t\rYS:.o\.N?ٴlZnK\\15@T\NR\\u\+,\rؑ@\'\0|Erи^\6\C\RSBƩ\^\Aɥ\,|\S3ǩEC\s\1\e?Z1|\\\4\w\:X\'%J\L\Z@&\\nxAW\>@C\}\u\Kq{-\Q\%؜,WiǣS\߆f}pLni;|K\┛j~Y\>=\Vµ\Z\\͂,gY\Ҡ\\7\W&\A\sN\[;l\~y+	}\\\\\\G_ӈxL\e\_sLȸ٠\9vyܓU+v\5M\.\]sq\wy\\P\c-5,*\xXk˂3\0&7.\y\\eDDࣴ\Z|i\:L\(n\ܦ2\Ӆ]\\\&\-C~)\n`\uG\;@	A:${\w*`\\\ཙP5c~\U\T\N98K\օܓ\^\0첉zCd>\\^3oBȽ7hÅ]k\ȂܵR3jۺ\O\)ܡ\jߩQ,貜_\\\эm\7ڪ\7\\4ܨ:\6n\	[\\\]m>w\d}ngwFtB\lݚ\+{\XƢMBKT\[%\ x$=؉	l#/K\Oȯ\I\wl1ž\o5>\\n{&WaW\vpT\\y\eG}>ܲN	0\]&ꃐ\'s\\T(5Z\Z4aҽ\0$9\nϨ \'ֶ]\rFǛ*=6_T?\+DP+1\\xutYQee֣*Jr\99e>LHsS\@-T\Z^Ycɂ+0\r\]W:Gjܽ~\&ݪ!9\,eG|%?\"ٚ\!\\5ޕD\\\Zu\	=\\\\%6q]{\\orq\\\L-\kb\\j\\ǖ\4x\a\+^$\\\0-zY\\\[\TV\OLv\ػfU\ėa\\HLH\d\\ѕ4\v-m+=9r\\#B\\"ao/\$TwX1j\\0o\\fY\| hg\ྑN:\0$\\2\ѝ<\1\StSd~\L\g\nۺ\\\RoF==\7\0VnQMmK\\6u4A\Q\S&`m?:\\V\fրlM\\vx\\"%\\ًC\\hh\o\]Э@\$\p\\51\5i6r\; G\X\itpl&Mn{\Zl\!\`\n\\nZE |\\NV~\Kb\3\k	<L\r/\0Y\\tgƣM+G\N\G,0j\-	oPÀ_Ȇ|c\\\4\\:o>U\\O\\uo\','EZ-Page with ID 10 updated.','info'),(1714,'2018-05-20 15:29:00',1,'ezpages.php','ezID=10','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1715,'2018-05-20 15:29:01',1,'ezpages.php','ezID=10','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1716,'2018-05-20 15:29:33',1,'ezpages.php','ezID=10&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1717,'2018-05-20 15:29:33',1,'ezpages.php','ezID=10&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1718,'2018-05-20 15:30:03',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\yT\2a{f{c>I\\'\V\ԟ?~\\M\\ڹ\\[S4\w&Uٚ\ʢ޵?TL0\"-\2֧T׹nt\֟F\W\w\S]Vͧ\\g\,5|ɟ6>=/ˆ÷M|Jz\t\r~wxੳh\|n\\\^%\?\&AʌX},\\\JW\ȨʹtQ`|Of~sa\}:W\6MY\M\{tUI\:3Uͳ6\}\^d\mS#u~f];l|\͏\?\\\\۲Z\庝\r\f\w{gz^_^z?V;\_\\\\__Rӷ\2\\wov\\mި}vcE\\\uTWz۪h\\O\/\\*fY5\3\\!\~.ۥ2\P$\MC\,Zy˘\\\0wժ2uRe3Sfa\Ҏ\nFetxB72Z\\rOr9\\nbZ-ۺQKc\ZՔjf\C\,\%\R!7\2\RWwg2\wjk\8I\\"+N8)417\*\U\Rj\\	ˀ\bx\;<B\ayon\ܮ\\n\[ej\Z~\_<D\\r\2\\1\\?\0\l\:iZ\\`*d\sF1<QKpO`ʭ\iYG\\8`pCײ:m\ZNc\0N]_YU(dmY#҈7>\\,\*37\]|\\\_ž-\\xJ\N\\\g\No?\7̺v6i]+\X\nuaƌ,>Ʌ;\\c{pOONw\]3>Rg\\7#>2h\.g\ZsT\n\.\Z{E\Kʘ^\Vej9@r\n7\,>K\#\v\"\\\\#kS\\\*}\%%\\@J\Z6#AƖ\2*\x\\ltIWuy[abaF\ae\XѾ\?ڙp>G d[S\Vz jAedGE\3 \Dz\\\9qZ8Fށi\(Y+h	\\\DǕN\aSTL\\0\VDXK\ \)fB|Sj\Z\\{ZiPl	g\Q\d\C<&\$\x\I[\W2\(3`\\7\/\廷/\\z\pr\}\pw\΅\\\\\\zo<NG\w^ߜ\(o?M\v\L\\\xg\zס.\\>\E\\俷:$kPz:5`;w\ԃ UY#\Y7\Cw/3yn:g\e^(\aY},-\6Yx\\=`1\'HhLA2(\p\2\\enAoٿ\Z!9uV1\\ul;`nDy[\\pi\\"&PAB~, ^\\\dIN\\5P\d·=e$}\i\\\{\:/6CDW\0\0\T{\Z QB	1A\%tfŒ!IY\_D\'CT6\0j\Zطz\j\n0en0\R?\6\zP\\tF7\\nf%m>Qa\\kC3ϳF*\L?\Z\2#\,nAȵ-gL2 \'Ӽ*4\\L$p6uO\\\4q1L\pN}\\@\ny\0\}598:8QFiq>ږգ:*\o*x?x(5%ݨl\\\\\D\Z\2\\2\\0f\sE칐-WlO\Ϯ?>S\\ntx_ni\\+\t\5o=\\I|>BiY]]z{~W\ūW璘A\_NI\˷-\\\x\;\\\\[qLbVemBLLUQ\\\~G\'4k\0\\'i\\\0\\ʬ5Ǿ7uJ]=uH\\nmA\-Dm9w1\Rq~\\\xe@g\CY\.\Z\rԞc\-\βD\\C1A\0y\p\)4\\9H^\@i\\rQ*]mKnMh\J\zVeI\62jX\,A!2Tw6rڠf\& 1\"\Z0\{\"hl,ѯÇY8\QĻ 6}j8QlG=Ȇ-\\"d}h8]\o\Z\V\C6J{i\5o4}y	Zжc2g\\\Qf\\0/\X\;,	_e\^<\lW j*4=|N,\ﴝ\\\M\{5l{&^N\\\N]~Κ0\</mS\\\]<Bvz͐\\\ع\l9>x\|\&G\C;``(&\y\;1K^Vt8:m\r\Z\G6\\\55{l\\rP`dQ2][g\w䃮V́!˶\0s\\ֿ\\0B}oG7\\j~/VR\_)\X\"\.A\\W.S\`\\*p-\x*b\\{5\ra!\\<9_!0dk	\y۟\h\'5\􀼬1\\܂ޮ\{0Ԁ9A^L\\\g@ܶs@AO;\\8\O_3cfC\ЦZ8F\/Y#\X˰%<\#?KϽ\0\N8\߰K6!910tV\EC[Р7Q&G2\l+R#<\<\\5-޷ \[S\'ˣ\aAI?\ٌu\V3\\\i\rB\K!dXȰO(mյ<Ξ\G,\\r[n=\nN\Q}]-\r?}Xd9\0\ \\2k#DIr!\^|d=&\\*u>rF\\n\\\)\}E\/CwDi$\\׋H\\\"\\\\i,.dP/5=61\1y\Y\w\\\\t\\F;[6>!K;\0l\}Pµ\p:\J8$\\5\G\aւ\Jc\G\:\8\\;`~}E\cRq\ÂEy\0\~_\s\V{##a^\0_7}hA=\\\aGl7]+xeČp\\) $śahQV0E0<bwZb2`$[U\\O\0.u\Z}\v؈\a2\)\X`\2\\'\r\;n\\,ɾ\֤tf:<޻C\af\]\LA\f\t\0\k}#\'FKDL\\si\n^c*\\*\0Lo\\\\9ʪ\\/1b\;]UH4/\>6*j\Fįb\(\j\Z	5%\Ϗ}z	}\E\\L{\'\\\	A9]pboA]*N?0Lr\ft\7\\ڧw(߈\QpVcSޝԩvU\\{^.\@\Ij<y\4\\v\HC\2Nb\	\\/ FuVO,m\5\9\"\c\3;\\\\\\\؞<GJr\\8Щo=vgE\~ʙsʹWswJ7\c]\\lk]cnlb$wa\Ze{\ kSl\p~\\/\$\-}\'\p\NøG^	b.\{N܊+Ҭ\NhJw\\0{\\0	\6I2D`o@A\LI$(\\D\x=fI	ÔIҮPX\&\\n#`Z\0\p,9\ui\02\-\\<؁Q\3n\._;3._\r&$C\}k\d\r\M\\e\"0S8P4\\\\.6bӈ\\s\\"]4\^q:yn:\uٞY_\7N\C]\\\\C߽m{\kڲs;m;pח\	h\ns~\SSހ\X\PKz\\l\r\Z\z|\\SdE0IhM@+L\\kJ/R庼h\*O1KQe\]gdSO\:&ǭw6C\{c4\\A;\%dɇj*a\C\q\\r׊3\\GnsP 9R\\׵\0׈z/\\z5\q\</\\+\\*\\\s T\AjQaPby!eQ嗐g;L%ި\fnZ\,g|\a\r@\x`\n\\D(\tqVGr\'\\\p=·h==\1mAB\\ntEjf\1v጑ڵ\n)fe:$nv.\Ai5\\dFg~<ASmAGs\{\CwFlr\>sĥ]@\\\C2d%d\jG`\0,c]z%\3uM|s\=m\\HR\\o.\	\#`<\ef%q%Wpd\n;>\(,#I\rG(F{\ l^\G!ʂ×!\lj`\n\M=\nMP+y(:Aˢ2D\m\>\\Oa\\\rC\I?zʲ_e)U81$Xjؖݏ\|\h	T/*cf%\,<\\\0K\ZJ#cq)\-2(bLr27\\6B\\W\PJecHuQ2\\}b\Ļu	n\"1\0Οx\\>S0dv>\IIM\\\!\N&p_\wXUnEU];PĞrQY#\H_F]\>\*=H}\V\Abab,<㻩\?TX\)|/q\MNK\"\TH;]UK&\\g$\\h,!\ŨP\I\We0&ZQ\\YZI\\nP|\KXD\:{\$8Ep\Q\\\ps>\8\:\9N\\\HO\\qd\γ=:\n\\>< \	~1t0\\c;1<B\\0>	R&Db=B\\\Q\rM8`\'oyc\nX\0^e\u\Y\A\\s\\0s$,\r\\r`\ZC$T\E\\ĸyi\L9b[/6sXrn\\\\U>hⓀ\,8gͲP\KcE^\\i\k\FpBLLE!L{\l,(Dm\Sث\\lye$~C\犋\WQ\ԅ\rDg`\44>ӂ\9<\\(Mg\r\2\\Hli\\\j\\?@\rB:*BDSyƪd5~\n4\n}\\\so\wd\(`</0uN\\5f\\Z4$E\7udQ\\#^\JUe[cx\H\/QE`RIPi+8\Sd!S$[<*yn((\0U\H\-`E>\&m\"Ϣ\Jw\\;\7ql#?\%3)~$y\xrU¡j<\n,Y:VnT%6Us.3Z\n\*i@\5*P2<\Һo\'k\%\0o\?\c7D\:\W:nQzfE-r0Ӄ_J\	o|[S/P\ES=z)\\\n]\\sL\S\Z*<k%0\û\0ד\fi\\nY\jWڊ\J19\/\\`\\\nV;-`\rW=ڕ\I7A*b:yПO)\\\\ZyÐHV,,͛E D\r# \.\H`C\FT\\ȉ\\\'S\c\r\Ɣc?Uh\\\\\<+Sڸ֒ݹL,kH5\e%E\\i\\\\#\\^\D5EU\~/Q\j\[f_-xNLǬQ\\u2`mN\ߟP\MuQ;\r^rD\َ36߾}\\\p\n\7I\y/4\Zχ\\\i\乭}\t76\.k\SP]Dtw\'H\n`	Cí\Y\;T<?\\n$\<,\9ה>(>5R2\\feu\.n\!C#\\\d\*kocf\;h\䲾\\\]s*T\@p 9\Н.QbA]\C\=w5\3ffrىc\֪N=vRWSy#bN}L/N钦A\ή\$U2\\FPH\4X(5\Z;9;	#E͍eV\'B0\0\#\\\ZsX\0LD>~.n+{Y\|\n:PdH5 LO$:1@]c\{\\\x\nSvaE\i4\\Ǣ{\mS.5\s0xO\]Q&\<ty9.-]5C_\\d\19~\\d[\\F邒\ i>\\~Jٟx\h`RZƹQѳV\\\K]7š\&\N\Xq\0<ޏdbA**Ϻ \\^RS(PS͇T4\\|<c\\ZL^ [\0\O$_oKw\JX2\\b\\r\8\K)\ѱQ\rSDΝ\A:K\\)[\\\ \rs}\}C.w\rHɮE\\l{U\\\n\(He\G\G\\v;AF,R\\U\\\B\;5=H\Xw.X8w)\1\U\\n\<D*$zO\xT\)\\\\:y!V\G2,(\r\p#\rg\z\\Wy\\@\\?`HX\0F6qo\-{jlD+L;4\9oΊ5ZP\RgIe88󮿔$pe\\@ѫ)9\}\\\\9Ŭceok\4t\2eL&\pbN4ڴ?0OR/Ǝށ<\\.	$\L\\{ewc#0g\G.TC\Ю0\N+\\0!ɶ\$\\wg\4\\\\@\ex0\"\"j\\Ҧ\\n}к\J69$kj\]\,ԗ*mٶ\\r2n8!l}\\\\W8\|f,\Dut^`P\gGm\Z\IsN\]0*Auh\j\$7h\0ë+\\o讉\.7$tUE4aqhc\nCjO9܏\n\\a\%b$$|\'`6\o\*cM8Q7>/N(ξ3\j0kK_#\o\nr$\'	`Iñ\+`\oust!_\\ruZ&HX#ӖGBl\􁗊1ÊN\Q\|\\*z}v~5\g\f\\V\'^\\\ةgI\ 4Z\"b,\0\Y\Sr\\ZA+v\r^\{7X].\@-4Y\! N$?=\\\pEE>A\^%O\'7\%\\r\\\+)x\NS߂UM^lO\\r9x\MB>\\$Po[7@j#=Z\Bp4E8_-Muk0\\\#\L\%\\\J	Bږ\BiVG;IE\\9\@\nӛjђ\ZmuVn\ݧ\:c~r5G!\nIpn^=a\\&\?a6\;qsvԦ\u.\\g\\1!$\㤋:\^c]31Ic\%6rm\e%\\\[\B˛̤\C!ī~fAX\\MgA0\1k\ѢWHKaDuRŋ\!=Dk2zB/t<(\}*S\4\ٚg<\\Es_Es\\d\&?9n=QsDE\.B,Kf&n\\1\+1h0j;$voL(\M\\\l/K\<:79l\mV/OI8>\BR\kL\X$̻\[~\T`K\\:K[\X 1kϬubdM\\:_1ۼ\e\\۔Zx\n\\nպW\\\壍\$yɲu(\\F]\%^jl\s\a\1S\69DPj@weyG}T\\Z|q[h\X	yp%FNCN\c\rBmt\"=\\\f\?3\s\\X\Z\0´~>O+\?d`\\\o=\}Wy)OʿYJ~ |yx\3)gQ|r0ƈ+Luev[ܔ+zyt|bՄoяfg\0\7XFy\nk\k\n\\"tب\iI\\A_W3\\/#\;CŇ\\"\n6xٹˊG<&\rv>VOm\\ݜ]iǰ=|j\Oy\uz\"\bѝ?Ne?n/^ő\-\Zbn\-\\ȏ9~q|]\m\[ʙzŮ[iЕ{z\1\0|\\",g?\೭}\Lѵ8.;T\歚L`-\ھ\\SZF2u1h67?\'\no{G\·Sxq\ȝ\p/[\̣\\\C廃\\\_GNGp<0\<8ב\q\\\v\/`#拜\n\w0\\/UXm\6`\[+oi\\f/\K\\Gf_/~\[=O\ͫkѰ;t5?b q8x4]FRt\r\Z\\h6`\]\\0;y\\\z\\$r-JSu\Pt-ok	ˈ\	\J8	*$k~!_\\p⻱ZwK\:\\\˔\\Hd&KV5;}/HSe\g\\\\P+f\󀄾geq\[C4\8^!u#\J3a&`() &\,\h!\\b\u\\4Rxm\"~\\AS;\mS9\r5V\+1#\'\\.ۼ\rh8%8	݂k\\\^\\[qE\a\\\\ql^\*C\[\\*ؠ)ǹIzHͥO\u\ɀ{\\ǽ\M\Q;ҟf\iu)|\17\\h\\G6\־߳6E\tqevsM\zRWX\wrlrde)q\0\|t\Z.4a8\W\vzND\\h\\݉d\\n_\\Ks\c\0\^]k\RE|gWhe]Cf*\p9莲tkR\dlB/g]\$NFv-q0M_\\\oC\\'¤Oq\r%dNН\;k\ۤ\ؠ\Cۓe(\\F\[G\@L\'H3\\\\z2\*\n\r\RGֵȕQ._8\\z)\Z :\^)0p	_K껩A^=)\\t\B.賹{_ph\s=\)E\MӸo\gr5\0\\"!\'\_Be{&X9G9\\Zq\ \\\\\o\:]<կ_\\ꦦ!+#sJ\\Y\e\\\'~SM!\\$|@\ \P#a	De\I\P\{p\ЉY	\0_4\WMpRjJWHS\8uPв\5ܖ~j\8h\zÞ>=F\.\\C+&\I\\ިM}\\\"$T\?#?K@g!^\U\\u|y\q\\m\^~\\} \nY\d\U\\Mq\xtېuì\\0S\\\5m\V3t\)N	\7/\\\ӣu|\JVY\,+\\\Z\\\G\A\sNދAk<\HN\c.N]Ӂ؁iDA&z\}\/\\˹\z&d\l\}\;\\F\<\E\ɪsMk.\41! |\ny\BYâ6kmYp\e\\\6\3<l|V\\\\&_Z/\\\cSW\э{$i磌tad4e\o\=r\Q{e\PAi\k\x\n \y\;xo&T\r\\x\j*\N98K\օ\'\0\e?\n\6|f3߄{]oІ|7=5\\0kf\x\O\)ܡ\jߩQ,貜5\\ϣi\7ڪ\7au\iQ}Qu#4n\	h\n	Fs`|>}\};#:nnMӕ\1Vᦱh%*㊭c<x6=؉	l#o/:]{<\\"$3̺e\\\Z՜+\\\\\U\\QY+\5\\\}\8%hwI\R<rSնAKx!J&\{\0@:rk-\\\l0\?\T\	\\nyP(A\x[\\\eE]Y(\\\~\2\[\ZJ\r \\cNG\0Pix\[fe%4,wx\\\Q qHtꇬ昳}\r\ִhY\^\]\hK<\aR7^\\L\\b׵\o&\\Z7nO\Ԓ\n(Zl\xlYAcYO:Lyŋ$\9\p@%#\uU/\\Z{\\n\\]?iV\M|y\Z.	Y1v9jteo~Զ\\\W!t[[)\\\)5	\\al:\0\긵Y8ډ\Z\7\\\A\:[f9Gt=&{\nJ\\#@BIL!k8nC\Cͨ\؃}au\\H[\n϶9	\7ql\	\Sɠ\m,\hVj\r\fڤ\+Cm/P\\$ⶋv\\݊;	\N\\Pz& f&\rA\"gQ\	\\\u\Z)\$\mOmp<B6!V\`?\6ǂlA럘bw\Z \\"\m\"\/B>ݙhS\h\	x㈅FM\3\-52p\\\o}|f0A\ͧ\x	\\\.\','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1719,'2018-05-20 15:30:05',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\yT\2a{f{c>I\\'\V\ԟ?~\\M\\ڹ\\[S4\w&Uٚ\ʢ޵?TL0\"-\2֧T׹nt\֟F\W\w\S]Vͧ\\g\,5|ɟ6>=/ˆ÷M|Jz\t\r~wxੳh\|n\\\^%\?\&AʌX},\\\JW\ȨʹtQ`|Of~sa\}:W\6MY\M\{tUI\:3Uͳ6\}\^d\mS#u~f];l|\͏\?\\\\۲Z\庝\r\f\w{gz^_^z?V;\_\\\\__Rӷ\2\\wov\\mި}vcE\\\uTWz۪h\\O\/\\*fY5\3\\!\~.ۥ2\P$\MC\,Zy˘\\\0wժ2uRe3Sfa\Ҏ\nFetxB72Z\\rOr9\\nbZ-ۺQKc\ZՔjf\C\,\%\R!7\2\RWwg2\wjk\8I\\"+N8)417\*\U\Rj\\	ˀ\bx\;<B\ayon\ܮ\\n\[ej\Z~\_<D\\r\2\\1\\?\0\l\:iZ\\`*d\sF1<QKpO`ʭ\iYG\\8`pCײ:m\ZNc\0N]_YU(dmY#҈7>\\,\*37\]|\\\_ž-\\xJ\N\\\g\No?\7̺v6i]+\X\nuaƌ,>Ʌ;\\c{pOONw\]3>Rg\\7#>2h\.g\ZsT\n\.\Z{E\Kʘ^\Vej9@r\n7\,>K\#\v\"\\\\#kS\\\*}\%%\\@J\Z6#AƖ\2*\x\\ltIWuy[abaF\ae\XѾ\?ڙp>G d[S\Vz jAedGE\3 \Dz\\\9qZ8Fށi\(Y+h	\\\DǕN\aSTL\\0\VDXK\ \)fB|Sj\Z\\{ZiPl	g\Q\d\C<&\$\x\I[\W2\(3`\\7\/\廷/\\z\pr\}\pw\΅\\\\\\zo<NG\w^ߜ\(o?M\v\L\\\xg\zס.\\>\E\\俷:$kPz:5`;w\ԃ UY#\Y7\Cw/3yn:g\e^(\aY},-\6Yx\\=`1\'HhLA2(\p\2\\enAoٿ\Z!9uV1\\ul;`nDy[\\pi\\"&PAB~, ^\\\dIN\\5P\d·=e$}\i\\\{\:/6CDW\0\0\T{\Z QB	1A\%tfŒ!IY\_D\'CT6\0j\Zطz\j\n0en0\R?\6\zP\\tF7\\nf%m>Qa\\kC3ϳF*\L?\Z\2#\,nAȵ-gL2 \'Ӽ*4\\L$p6uO\\\4q1L\pN}\\@\ny\0\}598:8QFiq>ږգ:*\o*x?x(5%ݨl\\\\\D\Z\2\\2\\0f\sE칐-WlO\Ϯ?>S\\ntx_ni\\+\t\5o=\\I|>BiY]]z{~W\ūW璘A\_NI\˷-\\\x\;\\\\[qLbVemBLLUQ\\\~G\'4k\0\\'i\\\0\\ʬ5Ǿ7uJ]=uH\\nmA\-Dm9w1\Rq~\\\xe@g\CY\.\Z\rԞc\-\βD\\C1A\0y\p\)4\\9H^\@i\\rQ*]mKnMh\J\zVeI\62jX\,A!2Tw6rڠf\& 1\"\Z0\{\"hl,ѯÇY8\QĻ 6}j8QlG=Ȇ-\\"d}h8]\o\Z\V\C6J{i\5o4}y	Zжc2g\\\Qf\\0/\X\;,	_e\^<\lW j*4=|N,\ﴝ\\\M\{5l{&^N\\\N]~Κ0\</mS\\\]<Bvz͐\\\ع\l9>x\|\&G\C;``(&\y\;1K^Vt8:m\r\Z\G6\\\55{l\\rP`dQ2][g\w䃮V́!˶\0s\\ֿ\\0B}oG7\\j~/VR\_)\X\"\.A\\W.S\`\\*p-\x*b\\{5\ra!\\<9_!0dk	\y۟\h\'5\􀼬1\\܂ޮ\{0Ԁ9A^L\\\g@ܶs@AO;\\8\O_3cfC\ЦZ8F\/Y#\X˰%<\#?KϽ\0\N8\߰K6!910tV\EC[Р7Q&G2\l+R#<\<\\5-޷ \[S\'ˣ\aAI?\ٌu\V3\\\i\rB\K!dXȰO(mյ<Ξ\G,\\r[n=\nN\Q}]-\r?}Xd9\0\ \\2k#DIr!\^|d=&\\*u>rF\\n\\\)\}E\/CwDi$\\׋H\\\"\\\\i,.dP/5=61\1y\Y\w\\\\t\\F;[6>!K;\0l\}Pµ\p:\J8$\\5\G\aւ\Jc\G\:\8\\;`~}E\cRq\ÂEy\0\~_\s\V{##a^\0_7}hA=\\\aGl7]+xeČp\\) $śahQV0E0<bwZb2`$[U\\O\0.u\Z}\v؈\a2\)\X`\2\\'\r\;n\\,ɾ\֤tf:<޻C\af\]\LA\f\t\0\k}#\'FKDL\\si\n^c*\\*\0Lo\\\\9ʪ\\/1b\;]UH4/\>6*j\Fįb\(\j\Z	5%\Ϗ}z	}\E\\L{\'\\\	A9]pboA]*N?0Lr\ft\7\\ڧw(߈\QpVcSޝԩvU\\{^.\@\Ij<y\4\\v\HC\2Nb\	\\/ FuVO,m\5\9\"\c\3;\\\\\\\؞<GJr\\8Щo=vgE\~ʙsʹWswJ7\c]\\lk]cnlb$wa\Ze{\ kSl\p~\\/\$\-}\'\p\NøG^	b.\{N܊+Ҭ\NhJw\\0{\\0	\6I2D`o@A\LI$(\\D\x=fI	ÔIҮPX\&\\n#`Z\0\p,9\ui\02\-\\<؁Q\3n\._;3._\r&$C\}k\d\r\M\\e\"0S8P4\\\\.6bӈ\\s\\"]4\^q:yn:\uٞY_\7N\C]\\\\C߽m{\kڲs;m;pח\	h\ns~\SSހ\X\PKz\\l\r\Z\z|\\SdE0IhM@+L\\kJ/R庼h\*O1KQe\]gdSO\:&ǭw6C\{c4\\A;\%dɇj*a\C\q\\r׊3\\GnsP 9R\\׵\0׈z/\\z5\q\</\\+\\*\\\s T\AjQaPby!eQ嗐g;L%ި\fnZ\,g|\a\r@\x`\n\\D(\tqVGr\'\\\p=·h==\1mAB\\ntEjf\1v጑ڵ\n)fe:$nv.\Ai5\\dFg~<ASmAGs\{\CwFlr\>sĥ]@\\\C2d%d\jG`\0,c]z%\3uM|s\=m\\HR\\o.\	\#`<\ef%q%Wpd\n;>\(,#I\rG(F{\ l^\G!ʂ×!\lj`\n\M=\nMP+y(:Aˢ2D\m\>\\Oa\\\rC\I?zʲ_e)U81$Xjؖݏ\|\h	T/*cf%\,<\\\0K\ZJ#cq)\-2(bLr27\\6B\\W\PJecHuQ2\\}b\Ļu	n\"1\0Οx\\>S0dv>\IIM\\\!\N&p_\wXUnEU];PĞrQY#\H_F]\>\*=H}\V\Abab,<㻩\?TX\)|/q\MNK\"\TH;]UK&\\g$\\h,!\ŨP\I\We0&ZQ\\YZI\\nP|\KXD\:{\$8Ep\Q\\\ps>\8\:\9N\\\HO\\qd\γ=:\n\\>< \	~1t0\\c;1<B\\0>	R&Db=B\\\Q\rM8`\'oyc\nX\0^e\u\Y\A\\s\\0s$,\r\\r`\ZC$T\E\\ĸyi\L9b[/6sXrn\\\\U>hⓀ\,8gͲP\KcE^\\i\k\FpBLLE!L{\l,(Dm\Sث\\lye$~C\犋\WQ\ԅ\rDg`\44>ӂ\9<\\(Mg\r\2\\Hli\\\j\\?@\rB:*BDSyƪd5~\n4\n}\\\so\wd\(`</0uN\\5f\\Z4$E\7udQ\\#^\JUe[cx\H\/QE`RIPi+8\Sd!S$[<*yn((\0U\H\-`E>\&m\"Ϣ\Jw\\;\7ql#?\%3)~$y\xrU¡j<\n,Y:VnT%6Us.3Z\n\*i@\5*P2<\Һo\'k\%\0o\?\c7D\:\W:nQzfE-r0Ӄ_J\	o|[S/P\ES=z)\\\n]\\sL\S\Z*<k%0\û\0ד\fi\\nY\jWڊ\J19\/\\`\\\nV;-`\rW=ڕ\I7A*b:yПO)\\\\ZyÐHV,,͛E D\r# \.\H`C\FT\\ȉ\\\'S\c\r\Ɣc?Uh\\\\\<+Sڸ֒ݹL,kH5\e%E\\i\\\\#\\^\D5EU\~/Q\j\[f_-xNLǬQ\\u2`mN\ߟP\MuQ;\r^rD\َ36߾}\\\p\n\7I\y/4\Zχ\\\i\乭}\t76\.k\SP]Dtw\'H\n`	Cí\Y\;T<?\\n$\<,\9ה>(>5R2\\feu\.n\!C#\\\d\*kocf\;h\䲾\\\]s*T\@p 9\Н.QbA]\C\=w5\3ffrىc\֪N=vRWSy#bN}L/N钦A\ή\$U2\\FPH\4X(5\Z;9;	#E͍eV\'B0\0\#\\\ZsX\0LD>~.n+{Y\|\n:PdH5 LO$:1@]c\{\\\x\nSvaE\i4\\Ǣ{\mS.5\s0xO\]Q&\<ty9.-]5C_\\d\19~\\d[\\F邒\ i>\\~Jٟx\h`RZƹQѳV\\\K]7š\&\N\Xq\0<ޏdbA**Ϻ \\^RS(PS͇T4\\|<c\\ZL^ [\0\O$_oKw\JX2\\b\\r\8\K)\ѱQ\rSDΝ\A:K\\)[\\\ \rs}\}C.w\rHɮE\\l{U\\\n\(He\G\G\\v;AF,R\\U\\\B\;5=H\Xw.X8w)\1\U\\n\<D*$zO\xT\)\\\\:y!V\G2,(\r\p#\rg\z\\Wy\\@\\?`HX\0F6qo\-{jlD+L;4\9oΊ5ZP\RgIe88󮿔$pe\\@ѫ)9\}\\\\9Ŭceok\4t\2eL&\pbN4ڴ?0OR/Ǝށ<\\.	$\L\\{ewc#0g\G.TC\Ю0\N+\\0!ɶ\$\\wg\4\\\\@\ex0\"\"j\\Ҧ\\n}к\J69$kj\]\,ԗ*mٶ\\r2n8!l}\\\\W8\|f,\Dut^`P\gGm\Z\IsN\]0*Auh\j\$7h\0ë+\\o讉\.7$tUE4aqhc\nCjO9܏\n\\a\%b$$|\'`6\o\*cM8Q7>/N(ξ3\j0kK_#\o\nr$\'	`Iñ\+`\oust!_\\ruZ&HX#ӖGBl\􁗊1ÊN\Q\|\\*z}v~5\g\f\\V\'^\\\ةgI\ 4Z\"b,\0\Y\Sr\\ZA+v\r^\{7X].\@-4Y\! N$?=\\\pEE>A\^%O\'7\%\\r\\\+)x\NS߂UM^lO\\r9x\MB>\\$Po[7@j#=Z\Bp4E8_-Muk0\\\#\L\%\\\J	Bږ\BiVG;IE\\9\@\nӛjђ\ZmuVn\ݧ\:c~r5G!\nIpn^=a\\&\?a6\;qsvԦ\u.\\g\\1!$\㤋:\^c]31Ic\%6rm\e%\\\[\B˛̤\C!ī~fAX\\MgA0\1k\ѢWHKaDuRŋ\!=Dk2zB/t<(\}*S\4\ٚg<\\Es_Es\\d\&?9n=QsDE\.B,Kf&n\\1\+1h0j;$voL(\M\\\l/K\<:79l\mV/OI8>\BR\kL\X$̻\[~\T`K\\:K[\X 1kϬubdM\\:_1ۼ\e\\۔Zx\n\\nպW\\\壍\$yɲu(\\F]\%^jl\s\a\1S\69DPj@weyG}T\\Z|q[h\X	yp%FNCN\c\rBmt\"=\\\f\?3\s\\X\Z\0´~>O+\?d`\\\o=\}Wy)OʿYJ~ |yx\3)gQ|r0ƈ+Luev[ܔ+zyt|bՄoяfg\0\7XFy\nk\k\n\\"tب\iI\\A_W3\\/#\;CŇ\\"\n6xٹˊG<&\rv>VOm\\ݜ]iǰ=|j\Oy\uz\"\bѝ?Ne?n/^ő\-\Zbn\-\\ȏ9~q|]\m\[ʙzŮ[iЕ{z\1\0|\\",g?\೭}\Lѵ8.;T\歚L`-\ھ\\SZF2u1h67?\'\no{G\·Sxq\ȝ\p/[\̣\\\C廃\\\_GNGp<0\<8ב\q\\\v\/`#拜\n\w0\\/UXm\6`\[+oi\\f/\K\\Gf_/~\[=O\ͫkѰ;t5?b q8x4]FRt\r\Z\\h6`\]\\0;y\\\z\\$r-JSu\Pt-ok	ˈ\	\J8	*$k~!_\\p⻱ZwK\:\\\˔\\Hd&KV5;}/HSe\g\\\\P+f\󀄾geq\[C4\8^!u#\J3a&`() &\,\h!\\b\u\\4Rxm\"~\\AS;\mS9\r5V\+1#\'\\.ۼ\rh8%8	݂k\\\^\\[qE\a\\\\ql^\*C\[\\*ؠ)ǹIzHͥO\u\ɀ{\\ǽ\M\Q;ҟf\iu)|\17\\h\\G6\־߳6E\tqevsM\zRWX\wrlrde)q\0\|t\Z.4a8\W\vzND\\h\\݉d\\n_\\Ks\c\0\^]k\RE|gWhe]Cf*\p9莲tkR\dlB/g]\$NFv-q0M_\\\oC\\'¤Oq\r%dNН\;k\ۤ\ؠ\Cۓe(\\F\[G\@L\'H3\\\\z2\*\n\r\RGֵȕQ._8\\z)\Z :\^)0p	_K껩A^=)\\t\B.賹{_ph\s=\)E\MӸo\gr5\0\\"!\'\_Be{&X9G9\\Zq\ \\\\\o\:]<կ_\\ꦦ!+#sJ\\Y\e\\\'~SM!\\$|@\ \P#a	De\I\P\{p\ЉY	\0_4\WMpRjJWHS\8uPв\5ܖ~j\8h\zÞ>=F\.\\C+&\I\\ިM}\\\"$T\?#?K@g!^\U\\u|y\q\\m\^~\\} \nY\d\U\\Mq\xtېuì\\0S\\\5m\V3t\)N	\7/\\\ӣu|\JVY\,+\\\Z\\\G\A\sNދAk<\HN\c.N]Ӂ؁iDA&z\}\/\\˹\z&d\l\}\;\\F\<\E\ɪsMk.\41! |\ny\BYâ6kmYp\e\\\6\3<l|V\\\\&_Z/\\\cSW\э{$i磌tad4e\o\=r\Q{e\PAi\k\x\n \y\;xo&T\r\\x\j*\N98K\օ\'\0\e?\n\6|f3߄{]oІ|7=5\\0kf\x\O\)ܡ\jߩQ,貜5\\ϣi\7ڪ\7au\iQ}Qu#4n\	h\n	Fs`|>}\};#:nnMӕ\1Vᦱh%*㊭c<x6=؉	l#o/:]{<\\"$3̺e\\\Z՜+\\\\\U\\QY+\5\\\}\8%hwI\R<rSնAKx!J&\{\0@:rk-\\\l0\?\T\	\\nyP(A\x[\\\eE]Y(\\\~\2\[\ZJ\r \\cNG\0Pix\[fe%4,wx\\\Q qHtꇬ昳}\r\ִhY\^\]\hK<\aR7^\\L\\b׵\o&\\Z7nO\Ԓ\n(Zl\xlYAcYO:Lyŋ$\9\p@%#\uU/\\Z{\\n\\]?iV\M|y\Z.	Y1v9jteo~Զ\\\W!t[[)\\\)5	\\al:\0\긵Y8ډ\Z\7\\\A\:[f9Gt=&{\nJ\\#@BIL!k8nC\Cͨ\؃}au\\H[\n϶9	\7ql\	\Sɠ\m,\hVj\r\fڤ\+Cm/P\\$ⶋv\\݊;	\N\\Pz& f&\rA\"gQ\	\\\u\Z)\$\mOmp<B6!V\`?\6ǂlA럘bw\Z \\"\m\"\/B>ݙhS\h\	x㈅FM\3\-52p\\\o}|f0A\ͧ\x	\\\.\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1720,'2018-05-20 15:30:05',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\yT\2a{f{c>I\\'\V\ԟ?~\\M\\ڹ\\[S4\w&Uٚ\ʢ޵?TL0\"-\2֧T׹nt\֟F\W\w\S]Vͧ\\g\,5|ɟ6>=/ˆ÷M|Jz\t\r~wxੳh\|n\\\^%\?\&AʌX},\\\JW\ȨʹtQ`|Of~sa\}:W\6MY\M\{tUI\:3Uͳ6\}\^d\mS#u~f];l|\͏\?\\\\۲Z\庝\r\f\w{gz^_^z?V;\_\\\\__Rӷ\2\\wov\\mި}vcE\\\uTWz۪h\\O\/\\*fY5\3\\!\~.ۥ2\P$\MC\,Zy˘\\\0wժ2uRe3Sfa\Ҏ\nFetxB72Z\\rOr9\\nbZ-ۺQKc\ZՔjf\C\,\%\R!7\2\RWwg2\wjk\8I\\"+N8)417\*\U\Rj\\	ˀ\bx\;<B\ayon\ܮ\\n\[ej\Z~\_<D\\r\2\\1\\?\0\l\:iZ\\`*d\sF1<QKpO`ʭ\iYG\\8`pCײ:m\ZNc\0N]_YU(dmY#҈7>\\,\*37\]|\\\_ž-\\xJ\N\\\g\No?\7̺v6i]+\X\nuaƌ,>Ʌ;\\c{pOONw\]3>Rg\\7#>2h\.g\ZsT\n\.\Z{E\Kʘ^\Vej9@r\n7\,>K\#\v\"\\\\#kS\\\*}\%%\\@J\Z6#AƖ\2*\x\\ltIWuy[abaF\ae\XѾ\?ڙp>G d[S\Vz jAedGE\3 \Dz\\\9qZ8Fށi\(Y+h	\\\DǕN\aSTL\\0\VDXK\ \)fB|Sj\Z\\{ZiPl	g\Q\d\C<&\$\x\I[\W2\(3`\\7\/\廷/\\z\pr\}\pw\΅\\\\\\zo<NG\w^ߜ\(o?M\v\L\\\xg\zס.\\>\E\\俷:$kPz:5`;w\ԃ UY#\Y7\Cw/3yn:g\e^(\aY},-\6Yx\\=`1\'HhLA2(\p\2\\enAoٿ\Z!9uV1\\ul;`nDy[\\pi\\"&PAB~, ^\\\dIN\\5P\d·=e$}\i\\\{\:/6CDW\0\0\T{\Z QB	1A\%tfŒ!IY\_D\'CT6\0j\Zطz\j\n0en0\R?\6\zP\\tF7\\nf%m>Qa\\kC3ϳF*\L?\Z\2#\,nAȵ-gL2 \'Ӽ*4\\L$p6uO\\\4q1L\pN}\\@\ny\0\}598:8QFiq>ږգ:*\o*x?x(5%ݨl\\\\\D\Z\2\\2\\0f\sE칐-WlO\Ϯ?>S\\ntx_ni\\+\t\5o=\\I|>BiY]]z{~W\ūW璘A\_NI\˷-\\\x\;\\\\[qLbVemBLLUQ\\\~G\'4k\0\\'i\\\0\\ʬ5Ǿ7uJ]=uH\\nmA\-Dm9w1\Rq~\\\xe@g\CY\.\Z\rԞc\-\βD\\C1A\0y\p\)4\\9H^\@i\\rQ*]mKnMh\J\zVeI\62jX\,A!2Tw6rڠf\& 1\"\Z0\{\"hl,ѯÇY8\QĻ 6}j8QlG=Ȇ-\\"d}h8]\o\Z\V\C6J{i\5o4}y	Zжc2g\\\Qf\\0/\X\;,	_e\^<\lW j*4=|N,\ﴝ\\\M\{5l{&^N\\\N]~Κ0\</mS\\\]<Bvz͐\\\ع\l9>x\|\&G\C;``(&\y\;1K^Vt8:m\r\Z\G6\\\55{l\\rP`dQ2][g\w䃮V́!˶\0s\\ֿ\\0B}oG7\\j~/VR\_)\X\"\.A\\W.S\`\\*p-\x*b\\{5\ra!\\<9_!0dk	\y۟\h\'5\􀼬1\\܂ޮ\{0Ԁ9A^L\\\g@ܶs@AO;\\8\O_3cfC\ЦZ8F\/Y#\X˰%<\#?KϽ\0\N8\߰K6!910tV\EC[Р7Q&G2\l+R#<\<\\5-޷ \[S\'ˣ\aAI?\ٌu\V3\\\i\rB\K!dXȰO(mյ<Ξ\G,\\r[n=\nN\Q}]-\r?}Xd9\0\ \\2k#DIr!\^|d=&\\*u>rF\\n\\\)\}E\/CwDi$\\׋H\\\"\\\\i,.dP/5=61\1y\Y\w\\\\t\\F;[6>!K;\0l\}Pµ\p:\J8$\\5\G\aւ\Jc\G\:\8\\;`~}E\cRq\ÂEy\0\~_\s\V{##a^\0_7}hA=\\\aGl7]+xeČp\\) $śahQV0E0<bwZb2`$[U\\O\0.u\Z}\v؈\a2\)\X`\2\\'\r\;n\\,ɾ\֤tf:<޻C\af\]\LA\f\t\0\k}#\'FKDL\\si\n^c*\\*\0Lo\\\\9ʪ\\/1b\;]UH4/\>6*j\Fįb\(\j\Z	5%\Ϗ}z	}\E\\L{\'\\\	A9]pboA]*N?0Lr\ft\7\\ڧw(߈\QpVcSޝԩvU\\{^.\@\Ij<y\4\\v\HC\2Nb\	\\/ FuVO,m\5\9\"\c\3;\\\\\\\؞<GJr\\8Щo=vgE\~ʙsʹWswJ7\c]\\lk]cnlb$wa\Ze{\ kSl\p~\\/\$\-}\'\p\NøG^	b.\{N܊+Ҭ\NhJw\\0{\\0	\6I2D`o@A\LI$(\\D\x=fI	ÔIҮPX\&\\n#`Z\0\p,9\ui\02\-\\<؁Q\3n\._;3._\r&$C\}k\d\r\M\\e\"0S8P4\\\\.6bӈ\\s\\"]4\^q:yn:\uٞY_\7N\C]\\\\C߽m{\kڲs;m;pח\	h\ns~\SSހ\X\PKz\\l\r\Z\z|\\SdE0IhM@+L\\kJ/R庼h\*O1KQe\]gdSO\:&ǭw6C\{c4\\A;\%dɇj*a\C\q\\r׊3\\GnsP 9R\\׵\0׈z/\\z5\q\</\\+\\*\\\s T\AjQaPby!eQ嗐g;L%ި\fnZ\,g|\a\r@\x`\n\\D(\tqVGr\'\\\p=·h==\1mAB\\ntEjf\1v጑ڵ\n)fe:$nv.\Ai5\\dFg~<ASmAGs\{\CwFlr\>sĥ]@\\\C2d%d\jG`\0,c]z%\3uM|s\=m\\HR\\o.\	\#`<\ef%q%Wpd\n;>\(,#I\rG(F{\ l^\G!ʂ×!\lj`\n\M=\nMP+y(:Aˢ2D\m\>\\Oa\\\rC\I?zʲ_e)U81$Xjؖݏ\|\h	T/*cf%\,<\\\0K\ZJ#cq)\-2(bLr27\\6B\\W\PJecHuQ2\\}b\Ļu	n\"1\0Οx\\>S0dv>\IIM\\\!\N&p_\wXUnEU];PĞrQY#\H_F]\>\*=H}\V\Abab,<㻩\?TX\)|/q\MNK\"\TH;]UK&\\g$\\h,!\ŨP\I\We0&ZQ\\YZI\\nP|\KXD\:{\$8Ep\Q\\\ps>\8\:\9N\\\HO\\qd\γ=:\n\\>< \	~1t0\\c;1<B\\0>	R&Db=B\\\Q\rM8`\'oyc\nX\0^e\u\Y\A\\s\\0s$,\r\\r`\ZC$T\E\\ĸyi\L9b[/6sXrn\\\\U>hⓀ\,8gͲP\KcE^\\i\k\FpBLLE!L{\l,(Dm\Sث\\lye$~C\犋\WQ\ԅ\rDg`\44>ӂ\9<\\(Mg\r\2\\Hli\\\j\\?@\rB:*BDSyƪd5~\n4\n}\\\so\wd\(`</0uN\\5f\\Z4$E\7udQ\\#^\JUe[cx\H\/QE`RIPi+8\Sd!S$[<*yn((\0U\H\-`E>\&m\"Ϣ\Jw\\;\7ql#?\%3)~$y\xrU¡j<\n,Y:VnT%6Us.3Z\n\*i@\5*P2<\Һo\'k\%\0o\?\c7D\:\W:nQzfE-r0Ӄ_J\	o|[S/P\ES=z)\\\n]\\sL\S\Z*<k%0\û\0ד\fi\\nY\jWڊ\J19\/\\`\\\nV;-`\rW=ڕ\I7A*b:yПO)\\\\ZyÐHV,,͛E D\r# \.\H`C\FT\\ȉ\\\'S\c\r\Ɣc?Uh\\\\\<+Sڸ֒ݹL,kH5\e%E\\i\\\\#\\^\D5EU\~/Q\j\[f_-xNLǬQ\\u2`mN\ߟP\MuQ;\r^rD\َ36߾}\\\p\n\7I\y/4\Zχ\\\i\乭}\t76\.k\SP]Dtw\'H\n`	Cí\Y\;T<?\\n$\<,\9ה>(>5R2\\feu\.n\!C#\\\d\*kocf\;h\䲾\\\]s*T\@p 9\Н.QbA]\C\=w5\3ffrىc\֪N=vRWSy#bN}L/N钦A\ή\$U2\\FPH\4X(5\Z;9;	#E͍eV\'B0\0\#\\\ZsX\0LD>~.n+{Y\|\n:PdH5 LO$:1@]c\{\\\x\nSvaE\i4\\Ǣ{\mS.5\s0xO\]Q&\<ty9.-]5C_\\d\19~\\d[\\F邒\ i>\\~Jٟx\h`RZƹQѳV\\\K]7š\&\N\Xq\0<ޏdbA**Ϻ \\^RS(PS͇T4\\|<c\\ZL^ [\0\O$_oKw\JX2\\b\\r\8\K)\ѱQ\rSDΝ\A:K\\)[\\\ \rs}\}C.w\rHɮE\\l{U\\\n\(He\G\G\\v;AF,R\\U\\\B\;5=H\Xw.X8w)\1\U\\n\<D*$zO\xT\)\\\\:y!V\G2,(\r\p#\rg\z\\Wy\\@\\?`HX\0F6qo\-{jlD+L;4\9oΊ5ZP\RgIe88󮿔$pe\\@ѫ)9\}\\\\9Ŭceok\4t\2eL&\pbN4ڴ?0OR/Ǝށ<\\.	$\L\\{ewc#0g\G.TC\Ю0\N+\\0!ɶ\$\\wg\4\\\\@\ex0\"\"j\\Ҧ\\n}к\J69$kj\]\,ԗ*mٶ\\r2n8!l}\\\\W8\|f,\Dut^`P\gGm\Z\IsN\]0*Auh\j\$7h\0ë+\\o讉\.7$tUE4aqhc\nCjO9܏\n\\a\%b$$|\'`6\o\*cM8Q7>/N(ξ3\j0kK_#\o\nr$\'	`Iñ\+`\oust!_\\ruZ&HX#ӖGBl\􁗊1ÊN\Q\|\\*z}v~5\g\f\\V\'^\\\ةgI\ 4Z\"b,\0\Y\Sr\\ZA+v\r^\{7X].\@-4Y\! N$?=\\\pEE>A\^%O\'7\%\\r\\\+)x\NS߂UM^lO\\r9x\MB>\\$Po[7@j#=Z\Bp4E8_-Muk0\\\#\L\%\\\J	Bږ\BiVG;IE\\9\@\nӛjђ\ZmuVn\ݧ\:c~r5G!\nIpn^=a\\&\?a6\;qsvԦ\u.\\g\\1!$\㤋:\^c]31Ic\%6rm\e%\\\[\B˛̤\C!ī~fAX\\MgA0\1k\ѢWHKaDuRŋ\!=Dk2zB/t<(\}*S\4\ٚg<\\Es_Es\\d\&?9n=QsDE\.B,Kf&n\\1\+1h0j;$voL(\M\\\l/K\<:79l\mV/OI8>\BR\kL\X$̻\[~\T`K\\:K[\X 1kϬubdM\\:_1ۼ\e\\۔Zx\n\\nպW\\\壍\$yɲu(\\F]\%^jl\s\a\1S\69DPj@weyG}T\\Z|q[h\X	yp%FNCN\c\rBmt\"=\\\f\?3\s\\X\Z\0´~>O+\?d`\\\o=\}Wy)OʿYJ~ |yx\3)gQ|r0ƈ+Luev[ܔ+zyt|bՄoяfg\0\7XFy\nk\k\n\\"tب\iI\\A_W3\\/#\;CŇ\\"\n6xٹˊG<&\rv>VOm\\ݜ]iǰ=|j\Oy\uz\"\bѝ?Ne?n/^ő\-\Zbn\-\\ȏ9~q|]\m\[ʙzŮ[iЕ{z\1\0|\\",g?\೭}\Lѵ8.;T\歚L`-\ھ\\SZF2u1h67?\'\no{G\·Sxq\ȝ\p/[\̣\\\C廃\\\_GNGp<0\<8ב\q\\\v\/`#拜\n\w0\\/UXm\6`\[+oi\\f/\K\\Gf_/~\[=O\ͫkѰ;t5?b q8x4]FRt\r\Z\\h6`\]\\0;y\\\z\\$r-JSu\Pt-ok	ˈ\	\J8	*$k~!_\\p⻱ZwK\:\\\˔\\Hd&KV5;}/HSe\g\\\\P+f\󀄾geq\[C4\8^!u#\J3a&`() &\,\h!\\b\u\\4Rxm\"~\\AS;\mS9\r5V\+1#\'\\.ۼ\rh8%8	݂k\\\^\\[qE\a\\\\ql^\*C\[\\*ؠ)ǹIzHͥO\u\ɀ{\\ǽ\M\Q;ҟf\iu)|\17\\h\\G6\־߳6E\tqevsM\zRWX\wrlrde)q\0\|t\Z.4a8\W\vzND\\h\\݉d\\n_\\Ks\c\0\^]k\RE|gWhe]Cf*\p9莲tkR\dlB/g]\$NFv-q0M_\\\oC\\'¤Oq\r%dNН\;k\ۤ\ؠ\Cۓe(\\F\[G\@L\'H3\\\\z2\*\n\r\RGֵȕQ._8\\z)\Z :\^)0p	_K껩A^=)\\t\B.賹{_ph\s=\)E\MӸo\gr5\0\\"!\'\_Be{&X9G9\\Zq\ \\\\\o\:]<կ_\\ꦦ!+#sJ\\Y\e\\\'~SM!\\$|@\ \P#a	De\I\P\{p\ЉY	\0_4\WMpRjJWHS\8uPв\5ܖ~j\8h\zÞ>=F\.\\C+&\I\\ިM}\\\"$T\?#?K@g!^\U\\u|y\q\\m\^~\\} \nY\d\U\\Mq\xtېuì\\0S\\\5m\V3t\)N	\7/\\\ӣu|\JVY\,+\\\Z\\\G\A\sNދAk<\HN\c.N]Ӂ؁iDA&z\}\/\\˹\z&d\l\}\;\\F\<\E\ɪsMk.\41! |\ny\BYâ6kmYp\e\\\6\3<l|V\\\\&_Z/\\\cSW\э{$i磌tad4e\o\=r\Q{e\PAi\k\x\n \y\;xo&T\r\\x\j*\N98K\օ\'\0\e?\n\6|f3߄{]oІ|7=5\\0kf\x\O\)ܡ\jߩQ,貜5\\ϣi\7ڪ\7au\iQ}Qu#4n\	h\n	Fs`|>}\};#:nnMӕ\1Vᦱh%*㊭c<x6=؉	l#o/:]{<\\"$3̺e\\\Z՜+\\\\\U\\QY+\5\\\}\8%hwI\R<rSնAKx!J&\{\0@:rk-\\\l0\?\T\	\\nyP(A\x[\\\eE]Y(\\\~\2\[\ZJ\r \\cNG\0Pix\[fe%4,wx\\\Q qHtꇬ昳}\r\ִhY\^\]\hK<\aR7^\\L\\b׵\o&\\Z7nO\Ԓ\n(Zl\xlYAcYO:Lyŋ$\9\p@%#\uU/\\Z{\\n\\]?iV\M|y\Z.	Y1v9jteo~Զ\\\W!t[[)\\\)5	\\al:\0\긵Y8ډ\Z\7\\\A\:[f9Gt=&{\nJ\\#@BIL!k8nC\Cͨ\؃}au\\H[\n϶9	\7ql\	\Sɠ\m,\hVj\r\fڤ\+Cm/P\\$ⶋv\\݊;	\N\\Pz& f&\rA\"gQ\	\\\u\Z)\$\mOmp<B6!V\`?\6ǂlA럘bw\Z \\"\m\"\/B>ݙhS\h\	x㈅FM\3\-52p\\\o}|f0A\ͧ\x	\\\.\','EZ-Page with ID 10 updated.','info'),(1721,'2018-05-20 15:30:06',1,'ezpages.php','ezID=10','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1722,'2018-05-20 15:30:07',1,'ezpages.php','ezID=10','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1723,'2018-05-20 15:30:07',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\yT\2a{f{c>I\\'\V\ԟ?~\\M\\ڹ\\[S4\w&Uٚ\ʢ޵?TL0\"-\2֧T׹nt\֟F\W\w\S]Vͧ\\g\,5|ɟ6>=/\\}\\6e)Y\U\5!x$\ၧ΢Y\\Z\J{亮\0\^)3\c;7+]5K *\\\E5>~U\\3ͅ\\\M\3\4]fEV7U\\iV%7\\TM6\~\\TYb?\zMY\Cw\\\\\gϏ6?~So\jsx\v7X˟>>n\흝\z}y\\\Z\W\/}JMߞ\po߽؅y\AڍI\'W׍.R]\nn;\W?LWey\<\O\_\\xxl\\TsC7\y\j\\-cvT\U\\I\LQK;*\\	\\hy67\?J\\,+}jl\F-iTSQp\\nd/8YhK\\NˀK]\\\ߩaS\$aP:I\\\܀LL\\"\WmK\',\!R\\z役ms+|t2\Wo̓Z\k]Hs˭\p\@7\0\iq!R0dL\Q\\\D-1\.\=*F\/S\g59nj\'\\K^\\\i8\:!v}U\gUY\\nN\ӷeaxH#ހPoL(;D\\\0o\nwq\\W\\)Q;UM>>;}ft\0\\\\\iFtc\(ԅ3$\\\L\摒\>En<98\Iw\\H]\\\0\ʠEj\Qe06$v\nqLvh\\QUޛ*/u*c&zX\\0\)`\D\_.qO\y\\̊$oSNxM\r:Ж\F)i d:؜\Z[˨D\\QL\c\\\"$]K\y\m\]⋆QcEn4jgz\,nMy[\Ղ\Ҫ\rRʒ9\Ϩr#=D\\?\2\\\\\i=\rz\\rd%PSW:@TLQ1r[a-R0g	Mit\\i@%	<G\v\+o\a\'\rlA_\p̀e_^߼\7\޾T\\\ɏja\\\\!;g\{Gϋ\h2:=\y}s4=\;\y3\.<{㝉J\]Cr\\h\w(\\ܓA\\r\4ր\<\US\ZBTYf\\fݔpePP\Z޽$\\M\{Qz!f\V\0A\d\a{Ŝ 1ɠ\\\\pebka\\YŬg\\\"޲퀹\]\mAc\\r\B	-P$Rx)\pO%9#S\@e>Y߆\=Vq\E\L\P\]RÐS\ehF}%\EFЙ=K40&e	Q\g\@0i`\\!*\r\DK\l>\%NBiFө\p+௚LF{@\\\n?k\rի\\.>\\\Z3\0k|\\\\"\ζ1\\삜\\@L\\\43\Dl\\=}k[\\\ 3N,2gÑ:\W*\0\\\\G*2\\\\\\t\Z\\F\r\\Ih[V\\H\`\|FtnqkKW/il\j3Ȁ\"\k\\BF\\=?>L\+8r\\}ϧIÓ@\u׼@W(\'u\\guu\\\_X\_e9E$\o.\\"\\7ӷ\\\\\\{\pqo\1嫶Z	\21UEF\P:S{\T䮟H\rO#\0+\\\\\\+u\\\#+5x\\\\Cv\,K\-Z\aeu\0k5P{\qh\#:\%#U\0F8e\\r\ugh\\ yYt7\Ftɶ-yVT\\n6:+\6\Y%5\ȨaaPن\P\\Z\\8\i}\\0:\j3\\DղD\V:~f\@\\nG\\\3\\Gq,\"\C\\\\vEtmku[\b\\G\*z\nv\ \L\r\%jR@ێ\˜eF\rl_8@Whb\$|\B\{X^мvzy8@\v\?G4ILn\\ְ\1 FZhzMƿ:S\"R۾;u\K:k\"hA\0J\#bNMrWæWdv\\M4C2*c瞳\|\qڲstޚY\\X<ݢ\m\\@,mx\ZX\\(\"\0\\5lH\j *\\^\\\챵[4@1\F\t\\o\\zZ2,\̍gp[\"տ1\0\\p\RZ\K5>T\c#zķ\c\Zw _MȺLcA6{t˛#ੈc\\6\|%H\mv\\CԨ\\\\0rSszV\P\y1\?\0:/\1C`ZPr\\?e\<c\@?}͌q	Cji\!dpc\.\v\\V\X.,1>\\\\G\;\4B\.ل\\\$\\0\\[\rmA\DFɈHz\"\#*\tsԴhzߒ(oM:,I%g3֝Vث[\guz2^4\nmL/a\a\#\>5^RV\8{n\\T<:u\\$7laj(8.D	uɶ4a%\c\\0F:\+lgˬZpa$\\\dza/l\\n\\\Ag46\;+`/<\ u\\\^W_/\"]Ë/CƧA\8|\\8:\ \/|\\\r\cg!\A:rщ\\lK\t,\\0Ae\\\0+\𓜇\װO9Y>+%묮.\\*\8vЃiZ0\r\\ODld\"J\Cıy\m\0/}5\U[\厌L\ny\0~\DCWS\tQv\\mq\\n34O`oEEA[\\t^X\\iMxɀ\\\30flU\;_?\n\i\"2[\a#Ҏ}>\/\$FTc̓\˰:4\\B\eS$N[ҙi\x\iulwO0\	ӑ\,1`\g/\-\3YW\\+zX+\009W8ʪ\(.r\\\xƣ\PJtU=\"\ Pؘ\]\I\j$x\\\??>\%q\n;O0=\\rp#\/N\'\Xty%v8,\2\o\ҡ\߄?Rk\;\\V~#\^G	\Yu~`Myw\R&\UU\"#\yU dD\ܢ6&\\)\$w\%#\rY[\\8\\OD\8%&6g&cVX0ۂ|\Z\Y?IK\p~Xt\[\8vp\\rLF>h\\0K\k\\'c{q*\\-{\\7\@؝qYx)g*\5\^y΍2\f\\\*\\/u}[v~D\ɲ܅yj\\{ZM\nWL`\nxPÍ;\?\Qx%؋\9q+ίFtH\;9)\9[\0\Y\$LD۔~&\	n\m3I\&pND.vS\k\\m&%S&IBaHV\+~i>Ì\\\,Sg\֥12bNJPȘh?+\\f\\cF\Hi֖H`~\\Ի4~\6|\0Òs5\r7=Lɒ\DByF\p2;g؈L#>\-RP\v\`\{\\䩺\\\\f{f9|\\b\\:=u竫w\oɿ~\\.\k\\\\i^_\Z$)\=OM\{R:cINBC-\Y\_\\7hP\r\\NEX8&Q6\J03*]&VJE\I<Ÿ\.EN\S\w\\[MG>>h\\\\\9Ҭs`\\%i}v\\"\nb\\a7\_+\N\p\\rb@QL\Hb{_\\W<3\\#\^\̻Bs\\\*\M$$o\\S\\[́rbP92EA-\M\E_B\0 <xi1Vʮ@\5\0m\=\*5ZPb\\9Xɝ2K\8D\bǴ\	U,+\8`\؝3Fj\V(됸q\nڹ\K\\2<fDMݶU\5z\\c-t\\\\mr\9v1\{OlɐEb-\0؂\w\"D\Q\\4Sε%:O\\#IirL2\&hJO\	\\Af\\A)\\&-\u@\Ӄy\r*_X&Q\Òbl7E(4Ar>\\\%.\9zRa&</K<G7\\'\\)\~E\0gV\Đ`a[v?\r8\"=F;%PξQO\^.i(ƥȠA0\e\\ʆ\P\nǣ^C)A!\"A\\F\4_]\n\c\\%\\\V\$n*\8\9\L1:\\\d\'&5qq\3;9|\aUUi\v\R\@{\qD\3f]\;\V#}\\ti+ \Z>\\r \\/RPb88<\C\e\\79\.\O~Pu\"\tU\\\O.\s\6\߳@.20R\T`@\6\'U^ X\j	XF\&wgfEhM&)3LNAuHbd?,a!d\|\G\v	Gϓ\b\d\먪\p:U;G/\#=>}xđ!;\\&z\(^\|\\'\}\\\T]\\LeS d&\\K\F:9.\I g\;Fi\5\l\n\(\Y(`\zcԁ\g7ϡȊr\M7HViݒP	\\	gRRi3\tPQ0nR\xt\]b\q:\n\'WnAO.[\6\@\o.%rzo`EO\Z~\\Z	10(2\eɳ_2\:>Na\ʲz\E\\GlX\r\FG+.*_ES\\u\\0\L6\𐛊4a6d<\x_#\rc]\0\6\"\Jd\=N\\Q\Ϻ\(\\ν\BJ\1q<\u^8\Ovׄ\kА\\0nj֑mF9\B^`;Xz[(\VYҖmὲ&3\#\\/LF\wJ&AIY\ONld\b\YDĊ\\Ta#\\۾\O\/L<+\\d\P\ıΤ<\\n\1\\U	(gI\\0\ĎZQY\T\\\k+7@i\U^ר@\r K뾝\0)\\l_r\F\nE陑%\:\L~)5\'mN@M\Ѧ{+\Zvݢk\1Ojɖ@K\\\\Ov\K&)f]!h++\X䬿\N3qݗN*8X\h5\6\\2jW>$\\}\\AZ>MʧjCRN\{\\CF\"Y\4oq6\LL#\rEPjѧR-|WO\#\'V23Lأ/\\MSVmO碻0Ni\ZKvt\o2An\"Ր[W? =\VJ3G{A-\IVQGY{o}\91\Fqr\\,Pʆ:\~B7\E\@:P_,rb\yy\1g|\;\\f;\\\~^\\V\\r$J(\\\(Jd$\\\J\h\?ӆuD\\\ݘF\\0\"M~OAyt\ݝ w&\C\r\oBged\\R\\\3l\^S\H!\`UhN\%;\&{e)QQ>\\e\\n/hOwͩ\\вR\\\n\O\`GBwDuvP\Ո\8%\Ud\'N\\r\0\nη3Z^8\I]M午M:818K;\ZD\0V\\>/A!	\"\`iN£z\\0k\\\\$F57JFY\0\\\00k\a0QD^\\r\\d\n*\By-~\"\ր0=\~\t\\0u\#\	>NA\\q==\t\qcЎM\\\\\=\vE\\\3\\H t\A|Iv&V\r\\}6:lqJ~Pnt3)!d\5gI\K\j\\nDE\Z\:o/u*\#(;Ac\\x?{<\~,+{JMLBM7FtRѬS-k0\\xlaol?}oʒ~-\\+Ybɰ΋A7<\/G\F5L9wFq\,^Wl\g4\\r^J޹6 \r\'a\U!:0wg\*F \"ŗaB\\\\|HQsWQR\'o\n2\\ cnXtX޹8`\ܥt\ZV\0VY\S2c+zB\=M\QӦ2_\ \[z*\\ʰТ4 Í4\k\UG_a\\OZKhR!Y`\\lRƽ϶쩱]0UҲ\\$\9+׌jA\#lJ%}\\l\̻Rҟ\.B;EX\"\[w`\`1|r\\]\\5\ؗ1.ؚ\'9\h\<Im;bz>w2X$8P0%6k\ݍL\PI!g@\:$\j8;ߝ\,Ks?9\વjfKV@#\B\V+G\\T\\(\>wa[\\R_e\v7ȼ\8(dm؞3F\_!\^\˺nit\\yAYiT\v\'\9Ozv\N\ա-USP\ޜƯlYӿɣ&*\迒\\VA\\0ġ\0*>\&r?FCe2J{#ApTMڄM5\DaN\8\r8\Ϝ8~},Y|T)ȑ\&,%\rǪA=\\\|%70\=j0\"a\0N[	UZN\^*\\\P+:F\S\K\ME\հ\SX=[d\zoCb%\zt\lh\0g\r\\\JZN\j\	6DXPxO\K\\T`\w \ fI?l\D8\\>L\\:\\'~{)>\?<9\2\ިSJˉwޞ><\]\Z8Na~VeV4}x.>17\|\)7q}4@\3n\L\M\h\\\|4խ S7C21+Q$\%j[FY\|b\'uP\A{爚\V\0e˻uNoREKj\ȶ\סzX1t\Zr밎t=˵\*$1MLpz\By\0g\X\0r\\s\\q!,\R\n\\&ֻ$>ЎǨZDȖ.\H{鋎\v\\$A1/\\0\\\Ͷs{joExTg-o2xaq5\w\\G\_!\\/\e\I/n,\6-\\	0>\\?tLi{xn\gk`6[\\}uͩ\ۚ\0F\UqL\nY,s\PĠ\ڽ1\",7a3+,\r\\\ O,nY <%\ `\Z\\+nHy1\\"\Zc9В0\no!>Sy#.1\.Y\nMcĬ=։6CKrd\~\lދ.ԛ\GpnSbj](V\)<+2\\wU\^\r6\%\\A\Jnp!	vxѪ.\EFx\L1\ \@Q\0\\_\aS\rk\m\r<c%\\\3ȖZ,\\\o:	\\Z9YA4l]҉\\Ntc}\f\`\\\nciX\>$~q	so^\\\G\K<)\f~j*\\\\U<ϤE\#0\\#ԕ\msSdz\\\UG?\8\`m\Z\\\)!\r(H닐\ab[0\%XÇ}]!\0p̏^\\pp\\*\\\e\.+nz\\4\=X=\\'vsv=\v\?\5\\\\"NtEwV 8A\ZxGh\ÿ R\'#?\\\mvo)g\{\\n%rAW\\m\\\Vy϶HO\3E\^\\0Pqj2\j&{Om\jI\~\\\Ơ\\N\D>(\\	TY\N\ŭ#w&\nI~3zKXs\S\\\ndl\9u\\\\_G.\}S\\\W\\烍/r*X\f	\rVbzTqۀ=n1/#}\0o<=\w7\G\\н\X\%\\\\]\t\NTP\wJQ\\\\\7hLـ18w\\乢[\yJȽ>(\N\yC\%\޷[\\',#v\'`#(\$xi|=3Xr.É\\\j\-M\\:k/S\ZrW#y.YZ\\ž MjYosAeX\\=\\\	o\rш\xtz\"N\ю.2+̈́M(\^@\\\TwxS\	_\HcⵉlkM\#M\\J24H\\8Zu\`l&\\\\$t\\Kk{	co\\'\9mGaO_\m\:zM#oy`\&&j2\!5>p\I\'˾\cJZb7\rG=\H\z{bե\\\LZK\[~\\A^\!ƕ\\5\J\_aS\\\ɱɑ\~\\u<\ \k\@\[_Y۹*\\;9\'\rw\'Ғ	{~-CH/\\%\3{ANtKU\\E\\"t\rT\\;\\I]\K\r	3ti8\Z\\8\7Y~\Z_\r-T>	d\5:Awn\Dvovc2nOAT\y\bo}\\f\:\r2 ̀K/(c\w\\\#~|(\\˥KY\\"WF\r|\0ro륀h\\r{%\"~-]\~r\zy&\Zo\y\,\\\\\})\^`\se7M\NHᛟ\\\\\J8\`\\Tk\\rD,^7g\t\W~ۦӫn\)f}Ml\M]6ےxC%m\'C\\\\EC\'vd\B\'\0|Erи^\6\CJ)]!MY\\AA˶\pPr[v>\\\\Ԣ\9{\ID|\'#.{6\rݺV`Pm\\6.ML,xAW\>@C\}\u\Kq{r\(d	Wq6\ն\\)oC\\r>LMW`8NZ״[\ХO8\&\Z߼CO\A+\Z\rfpiP\7\Wf+mj\_:y/vٮV\#98uMb\\\r$/\~뙐qAs\|C9T\'Vd\5M\.䮹\\<؋q(\e\r\l<e\0sټ\\}\"\"VQZqm|ip]M]oD7\\ܦ2\Ӆ]\\\&\`\!-\n`\uG\;@	A:${\w*`\\\ཙP5c~\Ul;\\,qR>[`M\*$\\|B\tA.t\\Ԍ\wX\tF\]tQ\-@\\v ??rffY^|Fl޲T\rV\pB?n\hn~ߨ\'\M\FE\\Ҹn[\')\\&|9\΁\I\\\\脺ٺ5OWr\XƢ͆+JA,\\`\'&\\v\TzN\0\.6S\kVs\㮰grpvpUmGGeG\D\.s=\\\{\\0\%ibK}d\M\V\-\(Mt\\0I\\3\ \Ik2xS\&*@\>BB\9XnWGUvQf=jJ/׏ޚsS\ʤo1j(74g9\B\uo雕1,Ӱ\\u\qsD\\\7n\"ѭc\Rq\W6G$[Ӣ=d}{wea.:\\AJ\xQcW2zpn\\\u\0kܸ>5SK*Z\jZv}\%\ge=\0\/P\\\A\0͖܎`\Uk\\-d*+\\'&w\.&YU7\i\>06&d\d\\ѕm\ZQ\Vzr\JG\\\mEBn/\$TwX1j\\0o\\fY\| h\'\jp\H\{\0\l\\N\\)Q2\\0	y&\3\xe\7b\r@\ա[T m)<\氎&;\n|\n\ıe\'X\O%NUYm5 i\0HC	WrP`\.\=\:\\st+\$&;\f[C\횀4E\'\#sl\itpL\&=\r^d0\\n\\nZE |\\NV\Kb\3\k	<L\r/\0d`bZtgƣMi\'d\#R5\τx\B\aGXdC1rY\\\7\*\\\\'l{\\','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1724,'2018-05-20 15:30:07',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\yT\2a{f{c>I\\'\V\ԟ?~\\M\\ڹ\\[S4\w&Uٚ\ʢ޵?TL0\"-\2֧T׹nt\֟F\W\w\S]Vͧ\\g\,5|ɟ6>=/\\}\\6e)Y\U\5!x$\ၧ΢Y\\Z\J{亮\0\^)3\c;7+]5K *\\\E5>~U\\3ͅ\\\M\3\4]fEV7U\\iV%7\\TM6\~\\TYb?\zMY\Cw\\\\\gϏ6?~So\jsx\v7X˟>>n\흝\z}y\\\Z\W\/}JMߞ\po߽؅y\AڍI\'W׍.R]\nn;\W?LWey\<\O\_\\xxl\\TsC7\y\j\\-cvT\U\\I\LQK;*\\	\\hy67\?J\\,+}jl\F-iTSQp\\nd/8YhK\\NˀK]\\\ߩaS\$aP:I\\\܀LL\\"\WmK\',\!R\\z役ms+|t2\Wo̓Z\k]Hs˭\p\@7\0\iq!R0dL\Q\\\D-1\.\=*F\/S\g59nj\'\\K^\\\i8\:!v}U\gUY\\nN\ӷeaxH#ހPoL(;D\\\0o\nwq\\W\\)Q;UM>>;}ft\0\\\\\iFtc\(ԅ3$\\\L\摒\>En<98\Iw\\H]\\\0\ʠEj\Qe06$v\nqLvh\\QUޛ*/u*c&zX\\0\)`\D\_.qO\y\\̊$oSNxM\r:Ж\F)i d:؜\Z[˨D\\QL\c\\\"$]K\y\m\]⋆QcEn4jgz\,nMy[\Ղ\Ҫ\rRʒ9\Ϩr#=D\\?\2\\\\\i=\rz\\rd%PSW:@TLQ1r[a-R0g	Mit\\i@%	<G\v\+o\a\'\rlA_\p̀e_^߼\7\޾T\\\ɏja\\\\!;g\{Gϋ\h2:=\y}s4=\;\y3\.<{㝉J\]Cr\\h\w(\\ܓA\\r\4ր\<\US\ZBTYf\\fݔpePP\Z޽$\\M\{Qz!f\V\0A\d\a{Ŝ 1ɠ\\\\pebka\\YŬg\\\"޲퀹\]\mAc\\r\B	-P$Rx)\pO%9#S\@e>Y߆\=Vq\E\L\P\]RÐS\ehF}%\EFЙ=K40&e	Q\g\@0i`\\!*\r\DK\l>\%NBiFө\p+௚LF{@\\\n?k\rի\\.>\\\Z3\0k|\\\\"\ζ1\\삜\\@L\\\43\Dl\\=}k[\\\ 3N,2gÑ:\W*\0\\\\G*2\\\\\\t\Z\\F\r\\Ih[V\\H\`\|FtnqkKW/il\j3Ȁ\"\k\\BF\\=?>L\+8r\\}ϧIÓ@\u׼@W(\'u\\guu\\\_X\_e9E$\o.\\"\\7ӷ\\\\\\{\pqo\1嫶Z	\21UEF\P:S{\T䮟H\rO#\0+\\\\\\+u\\\#+5x\\\\Cv\,K\-Z\aeu\0k5P{\qh\#:\%#U\0F8e\\r\ugh\\ yYt7\Ftɶ-yVT\\n6:+\6\Y%5\ȨaaPن\P\\Z\\8\i}\\0:\j3\\DղD\V:~f\@\\nG\\\3\\Gq,\"\C\\\\vEtmku[\b\\G\*z\nv\ \L\r\%jR@ێ\˜eF\rl_8@Whb\$|\B\{X^мvzy8@\v\?G4ILn\\ְ\1 FZhzMƿ:S\"R۾;u\K:k\"hA\0J\#bNMrWæWdv\\M4C2*c瞳\|\qڲstޚY\\X<ݢ\m\\@,mx\ZX\\(\"\0\\5lH\j *\\^\\\챵[4@1\F\t\\o\\zZ2,\̍gp[\"տ1\0\\p\RZ\K5>T\c#zķ\c\Zw _MȺLcA6{t˛#ੈc\\6\|%H\mv\\CԨ\\\\0rSszV\P\y1\?\0:/\1C`ZPr\\?e\<c\@?}͌q	Cji\!dpc\.\v\\V\X.,1>\\\\G\;\4B\.ل\\\$\\0\\[\rmA\DFɈHz\"\#*\tsԴhzߒ(oM:,I%g3֝Vث[\guz2^4\nmL/a\a\#\>5^RV\8{n\\T<:u\\$7laj(8.D	uɶ4a%\c\\0F:\+lgˬZpa$\\\dza/l\\n\\\Ag46\;+`/<\ u\\\^W_/\"]Ë/CƧA\8|\\8:\ \/|\\\r\cg!\A:rщ\\lK\t,\\0Ae\\\0+\𓜇\װO9Y>+%묮.\\*\8vЃiZ0\r\\ODld\"J\Cıy\m\0/}5\U[\厌L\ny\0~\DCWS\tQv\\mq\\n34O`oEEA[\\t^X\\iMxɀ\\\30flU\;_?\n\i\"2[\a#Ҏ}>\/\$FTc̓\˰:4\\B\eS$N[ҙi\x\iulwO0\	ӑ\,1`\g/\-\3YW\\+zX+\009W8ʪ\(.r\\\xƣ\PJtU=\"\ Pؘ\]\I\j$x\\\??>\%q\n;O0=\\rp#\/N\'\Xty%v8,\2\o\ҡ\߄?Rk\;\\V~#\^G	\Yu~`Myw\R&\UU\"#\yU dD\ܢ6&\\)\$w\%#\rY[\\8\\OD\8%&6g&cVX0ۂ|\Z\Y?IK\p~Xt\[\8vp\\rLF>h\\0K\k\\'c{q*\\-{\\7\@؝qYx)g*\5\^y΍2\f\\\*\\/u}[v~D\ɲ܅yj\\{ZM\nWL`\nxPÍ;\?\Qx%؋\9q+ίFtH\;9)\9[\0\Y\$LD۔~&\	n\m3I\&pND.vS\k\\m&%S&IBaHV\+~i>Ì\\\,Sg\֥12bNJPȘh?+\\f\\cF\Hi֖H`~\\Ի4~\6|\0Òs5\r7=Lɒ\DByF\p2;g؈L#>\-RP\v\`\{\\䩺\\\\f{f9|\\b\\:=u竫w\oɿ~\\.\k\\\\i^_\Z$)\=OM\{R:cINBC-\Y\_\\7hP\r\\NEX8&Q6\J03*]&VJE\I<Ÿ\.EN\S\w\\[MG>>h\\\\\9Ҭs`\\%i}v\\"\nb\\a7\_+\N\p\\rb@QL\Hb{_\\W<3\\#\^\̻Bs\\\*\M$$o\\S\\[́rbP92EA-\M\E_B\0 <xi1Vʮ@\5\0m\=\*5ZPb\\9Xɝ2K\8D\bǴ\	U,+\8`\؝3Fj\V(됸q\nڹ\K\\2<fDMݶU\5z\\c-t\\\\mr\9v1\{OlɐEb-\0؂\w\"D\Q\\4Sε%:O\\#IirL2\&hJO\	\\Af\\A)\\&-\u@\Ӄy\r*_X&Q\Òbl7E(4Ar>\\\%.\9zRa&</K<G7\\'\\)\~E\0gV\Đ`a[v?\r8\"=F;%PξQO\^.i(ƥȠA0\e\\ʆ\P\nǣ^C)A!\"A\\F\4_]\n\c\\%\\\V\$n*\8\9\L1:\\\d\'&5qq\3;9|\aUUi\v\R\@{\qD\3f]\;\V#}\\ti+ \Z>\\r \\/RPb88<\C\e\\79\.\O~Pu\"\tU\\\O.\s\6\߳@.20R\T`@\6\'U^ X\j	XF\&wgfEhM&)3LNAuHbd?,a!d\|\G\v	Gϓ\b\d\먪\p:U;G/\#=>}xđ!;\\&z\(^\|\\'\}\\\T]\\LeS d&\\K\F:9.\I g\;Fi\5\l\n\(\Y(`\zcԁ\g7ϡȊr\M7HViݒP	\\	gRRi3\tPQ0nR\xt\]b\q:\n\'WnAO.[\6\@\o.%rzo`EO\Z~\\Z	10(2\eɳ_2\:>Na\ʲz\E\\GlX\r\FG+.*_ES\\u\\0\L6\𐛊4a6d<\x_#\rc]\0\6\"\Jd\=N\\Q\Ϻ\(\\ν\BJ\1q<\u^8\Ovׄ\kА\\0nj֑mF9\B^`;Xz[(\VYҖmὲ&3\#\\/LF\wJ&AIY\ONld\b\YDĊ\\Ta#\\۾\O\/L<+\\d\P\ıΤ<\\n\1\\U	(gI\\0\ĎZQY\T\\\k+7@i\U^ר@\r K뾝\0)\\l_r\F\nE陑%\:\L~)5\'mN@M\Ѧ{+\Zvݢk\1Ojɖ@K\\\\Ov\K&)f]!h++\X䬿\N3qݗN*8X\h5\6\\2jW>$\\}\\AZ>MʧjCRN\{\\CF\"Y\4oq6\LL#\rEPjѧR-|WO\#\'V23Lأ/\\MSVmO碻0Ni\ZKvt\o2An\"Ր[W? =\VJ3G{A-\IVQGY{o}\91\Fqr\\,Pʆ:\~B7\E\@:P_,rb\yy\1g|\;\\f;\\\~^\\V\\r$J(\\\(Jd$\\\J\h\?ӆuD\\\ݘF\\0\"M~OAyt\ݝ w&\C\r\oBged\\R\\\3l\^S\H!\`UhN\%;\&{e)QQ>\\e\\n/hOwͩ\\вR\\\n\O\`GBwDuvP\Ո\8%\Ud\'N\\r\0\nη3Z^8\I]M午M:818K;\ZD\0V\\>/A!	\"\`iN£z\\0k\\\\$F57JFY\0\\\00k\a0QD^\\r\\d\n*\By-~\"\ր0=\~\t\\0u\#\	>NA\\q==\t\qcЎM\\\\\=\vE\\\3\\H t\A|Iv&V\r\\}6:lqJ~Pnt3)!d\5gI\K\j\\nDE\Z\:o/u*\#(;Ac\\x?{<\~,+{JMLBM7FtRѬS-k0\\xlaol?}oʒ~-\\+Ybɰ΋A7<\/G\F5L9wFq\,^Wl\g4\\r^J޹6 \r\'a\U!:0wg\*F \"ŗaB\\\\|HQsWQR\'o\n2\\ cnXtX޹8`\ܥt\ZV\0VY\S2c+zB\=M\QӦ2_\ \[z*\\ʰТ4 Í4\k\UG_a\\OZKhR!Y`\\lRƽ϶쩱]0UҲ\\$\9+׌jA\#lJ%}\\l\̻Rҟ\.B;EX\"\[w`\`1|r\\]\\5\ؗ1.ؚ\'9\h\<Im;bz>w2X$8P0%6k\ݍL\PI!g@\:$\j8;ߝ\,Ks?9\વjfKV@#\B\V+G\\T\\(\>wa[\\R_e\v7ȼ\8(dm؞3F\_!\^\˺nit\\yAYiT\v\'\9Ozv\N\ա-USP\ޜƯlYӿɣ&*\迒\\VA\\0ġ\0*>\&r?FCe2J{#ApTMڄM5\DaN\8\r8\Ϝ8~},Y|T)ȑ\&,%\rǪA=\\\|%70\=j0\"a\0N[	UZN\^*\\\P+:F\S\K\ME\հ\SX=[d\zoCb%\zt\lh\0g\r\\\JZN\j\	6DXPxO\K\\T`\w \ fI?l\D8\\>L\\:\\'~{)>\?<9\2\ިSJˉwޞ><\]\Z8Na~VeV4}x.>17\|\)7q}4@\3n\L\M\h\\\|4խ S7C21+Q$\%j[FY\|b\'uP\A{爚\V\0e˻uNoREKj\ȶ\סzX1t\Zr밎t=˵\*$1MLpz\By\0g\X\0r\\s\\q!,\R\n\\&ֻ$>ЎǨZDȖ.\H{鋎\v\\$A1/\\0\\\Ͷs{joExTg-o2xaq5\w\\G\_!\\/\e\I/n,\6-\\	0>\\?tLi{xn\gk`6[\\}uͩ\ۚ\0F\UqL\nY,s\PĠ\ڽ1\",7a3+,\r\\\ O,nY <%\ `\Z\\+nHy1\\"\Zc9В0\no!>Sy#.1\.Y\nMcĬ=։6CKrd\~\lދ.ԛ\GpnSbj](V\)<+2\\wU\^\r6\%\\A\Jnp!	vxѪ.\EFx\L1\ \@Q\0\\_\aS\rk\m\r<c%\\\3ȖZ,\\\o:	\\Z9YA4l]҉\\Ntc}\f\`\\\nciX\>$~q	so^\\\G\K<)\f~j*\\\\U<ϤE\#0\\#ԕ\msSdz\\\UG?\8\`m\Z\\\)!\r(H닐\ab[0\%XÇ}]!\0p̏^\\pp\\*\\\e\.+nz\\4\=X=\\'vsv=\v\?\5\\\\"NtEwV 8A\ZxGh\ÿ R\'#?\\\mvo)g\{\\n%rAW\\m\\\Vy϶HO\3E\^\\0Pqj2\j&{Om\jI\~\\\Ơ\\N\D>(\\	TY\N\ŭ#w&\nI~3zKXs\S\\\ndl\9u\\\\_G.\}S\\\W\\烍/r*X\f	\rVbzTqۀ=n1/#}\0o<=\w7\G\\н\X\%\\\\]\t\NTP\wJQ\\\\\7hLـ18w\\乢[\yJȽ>(\N\yC\%\޷[\\',#v\'`#(\$xi|=3Xr.É\\\j\-M\\:k/S\ZrW#y.YZ\\ž MjYosAeX\\=\\\	o\rш\xtz\"N\ю.2+̈́M(\^@\\\TwxS\	_\HcⵉlkM\#M\\J24H\\8Zu\`l&\\\\$t\\Kk{	co\\'\9mGaO_\m\:zM#oy`\&&j2\!5>p\I\'˾\cJZb7\rG=\H\z{bե\\\LZK\[~\\A^\!ƕ\\5\J\_aS\\\ɱɑ\~\\u<\ \k\@\[_Y۹*\\;9\'\rw\'Ғ	{~-CH/\\%\3{ANtKU\\E\\"t\rT\\;\\I]\K\r	3ti8\Z\\8\7Y~\Z_\r-T>	d\5:Awn\Dvovc2nOAT\y\bo}\\f\:\r2 ̀K/(c\w\\\#~|(\\˥KY\\"WF\r|\0ro륀h\\r{%\"~-]\~r\zy&\Zo\y\,\\\\\})\^`\se7M\NHᛟ\\\\\J8\`\\Tk\\rD,^7g\t\W~ۦӫn\)f}Ml\M]6ےxC%m\'C\\\\EC\'vd\B\'\0|Erи^\6\CJ)]!MY\\AA˶\pPr[v>\\\\Ԣ\9{\ID|\'#.{6\rݺV`Pm\\6.ML,xAW\>@C\}\u\Kq{r\(d	Wq6\ն\\)oC\\r>LMW`8NZ״[\ХO8\&\Z߼CO\A+\Z\rfpiP\7\Wf+mj\_:y/vٮV\#98uMb\\\r$/\~뙐qAs\|C9T\'Vd\5M\.䮹\\<؋q(\e\r\l<e\0sټ\\}\"\"VQZqm|ip]M]oD7\\ܦ2\Ӆ]\\\&\`\!-\n`\uG\;@	A:${\w*`\\\ཙP5c~\Ul;\\,qR>[`M\*$\\|B\tA.t\\Ԍ\wX\tF\]tQ\-@\\v ??rffY^|Fl޲T\rV\pB?n\hn~ߨ\'\M\FE\\Ҹn[\')\\&|9\΁\I\\\\脺ٺ5OWr\XƢ͆+JA,\\`\'&\\v\TzN\0\.6S\kVs\㮰grpvpUmGGeG\D\.s=\\\{\\0\%ibK}d\M\V\-\(Mt\\0I\\3\ \Ik2xS\&*@\>BB\9XnWGUvQf=jJ/׏ޚsS\ʤo1j(74g9\B\uo雕1,Ӱ\\u\qsD\\\7n\"ѭc\Rq\W6G$[Ӣ=d}{wea.:\\AJ\xQcW2zpn\\\u\0kܸ>5SK*Z\jZv}\%\ge=\0\/P\\\A\0͖܎`\Uk\\-d*+\\'&w\.&YU7\i\>06&d\d\\ѕm\ZQ\Vzr\JG\\\mEBn/\$TwX1j\\0o\\fY\| h\'\jp\H\{\0\l\\N\\)Q2\\0	y&\3\xe\7b\r@\ա[T m)<\氎&;\n|\n\ıe\'X\O%NUYm5 i\0HC	WrP`\.\=\:\\st+\$&;\f[C\횀4E\'\#sl\itpL\&=\r^d0\\n\\nZE |\\NV\Kb\3\k	<L\r/\0d`bZtgƣMi\'d\#R5\τx\B\aGXdC1rY\\\7\*\\\\'l{\\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1725,'2018-05-20 15:30:07',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\yT\2a{f{c>I\\'\V\ԟ?~\\M\\ڹ\\[S4\w&Uٚ\ʢ޵?TL0\"-\2֧T׹nt\֟F\W\w\S]Vͧ\\g\,5|ɟ6>=/\\}\\6e)Y\U\5!x$\ၧ΢Y\\Z\J{亮\0\^)3\c;7+]5K *\\\E5>~U\\3ͅ\\\M\3\4]fEV7U\\iV%7\\TM6\~\\TYb?\zMY\Cw\\\\\gϏ6?~So\jsx\v7X˟>>n\흝\z}y\\\Z\W\/}JMߞ\po߽؅y\AڍI\'W׍.R]\nn;\W?LWey\<\O\_\\xxl\\TsC7\y\j\\-cvT\U\\I\LQK;*\\	\\hy67\?J\\,+}jl\F-iTSQp\\nd/8YhK\\NˀK]\\\ߩaS\$aP:I\\\܀LL\\"\WmK\',\!R\\z役ms+|t2\Wo̓Z\k]Hs˭\p\@7\0\iq!R0dL\Q\\\D-1\.\=*F\/S\g59nj\'\\K^\\\i8\:!v}U\gUY\\nN\ӷeaxH#ހPoL(;D\\\0o\nwq\\W\\)Q;UM>>;}ft\0\\\\\iFtc\(ԅ3$\\\L\摒\>En<98\Iw\\H]\\\0\ʠEj\Qe06$v\nqLvh\\QUޛ*/u*c&zX\\0\)`\D\_.qO\y\\̊$oSNxM\r:Ж\F)i d:؜\Z[˨D\\QL\c\\\"$]K\y\m\]⋆QcEn4jgz\,nMy[\Ղ\Ҫ\rRʒ9\Ϩr#=D\\?\2\\\\\i=\rz\\rd%PSW:@TLQ1r[a-R0g	Mit\\i@%	<G\v\+o\a\'\rlA_\p̀e_^߼\7\޾T\\\ɏja\\\\!;g\{Gϋ\h2:=\y}s4=\;\y3\.<{㝉J\]Cr\\h\w(\\ܓA\\r\4ր\<\US\ZBTYf\\fݔpePP\Z޽$\\M\{Qz!f\V\0A\d\a{Ŝ 1ɠ\\\\pebka\\YŬg\\\"޲퀹\]\mAc\\r\B	-P$Rx)\pO%9#S\@e>Y߆\=Vq\E\L\P\]RÐS\ehF}%\EFЙ=K40&e	Q\g\@0i`\\!*\r\DK\l>\%NBiFө\p+௚LF{@\\\n?k\rի\\.>\\\Z3\0k|\\\\"\ζ1\\삜\\@L\\\43\Dl\\=}k[\\\ 3N,2gÑ:\W*\0\\\\G*2\\\\\\t\Z\\F\r\\Ih[V\\H\`\|FtnqkKW/il\j3Ȁ\"\k\\BF\\=?>L\+8r\\}ϧIÓ@\u׼@W(\'u\\guu\\\_X\_e9E$\o.\\"\\7ӷ\\\\\\{\pqo\1嫶Z	\21UEF\P:S{\T䮟H\rO#\0+\\\\\\+u\\\#+5x\\\\Cv\,K\-Z\aeu\0k5P{\qh\#:\%#U\0F8e\\r\ugh\\ yYt7\Ftɶ-yVT\\n6:+\6\Y%5\ȨaaPن\P\\Z\\8\i}\\0:\j3\\DղD\V:~f\@\\nG\\\3\\Gq,\"\C\\\\vEtmku[\b\\G\*z\nv\ \L\r\%jR@ێ\˜eF\rl_8@Whb\$|\B\{X^мvzy8@\v\?G4ILn\\ְ\1 FZhzMƿ:S\"R۾;u\K:k\"hA\0J\#bNMrWæWdv\\M4C2*c瞳\|\qڲstޚY\\X<ݢ\m\\@,mx\ZX\\(\"\0\\5lH\j *\\^\\\챵[4@1\F\t\\o\\zZ2,\̍gp[\"տ1\0\\p\RZ\K5>T\c#zķ\c\Zw _MȺLcA6{t˛#ੈc\\6\|%H\mv\\CԨ\\\\0rSszV\P\y1\?\0:/\1C`ZPr\\?e\<c\@?}͌q	Cji\!dpc\.\v\\V\X.,1>\\\\G\;\4B\.ل\\\$\\0\\[\rmA\DFɈHz\"\#*\tsԴhzߒ(oM:,I%g3֝Vث[\guz2^4\nmL/a\a\#\>5^RV\8{n\\T<:u\\$7laj(8.D	uɶ4a%\c\\0F:\+lgˬZpa$\\\dza/l\\n\\\Ag46\;+`/<\ u\\\^W_/\"]Ë/CƧA\8|\\8:\ \/|\\\r\cg!\A:rщ\\lK\t,\\0Ae\\\0+\𓜇\װO9Y>+%묮.\\*\8vЃiZ0\r\\ODld\"J\Cıy\m\0/}5\U[\厌L\ny\0~\DCWS\tQv\\mq\\n34O`oEEA[\\t^X\\iMxɀ\\\30flU\;_?\n\i\"2[\a#Ҏ}>\/\$FTc̓\˰:4\\B\eS$N[ҙi\x\iulwO0\	ӑ\,1`\g/\-\3YW\\+zX+\009W8ʪ\(.r\\\xƣ\PJtU=\"\ Pؘ\]\I\j$x\\\??>\%q\n;O0=\\rp#\/N\'\Xty%v8,\2\o\ҡ\߄?Rk\;\\V~#\^G	\Yu~`Myw\R&\UU\"#\yU dD\ܢ6&\\)\$w\%#\rY[\\8\\OD\8%&6g&cVX0ۂ|\Z\Y?IK\p~Xt\[\8vp\\rLF>h\\0K\k\\'c{q*\\-{\\7\@؝qYx)g*\5\^y΍2\f\\\*\\/u}[v~D\ɲ܅yj\\{ZM\nWL`\nxPÍ;\?\Qx%؋\9q+ίFtH\;9)\9[\0\Y\$LD۔~&\	n\m3I\&pND.vS\k\\m&%S&IBaHV\+~i>Ì\\\,Sg\֥12bNJPȘh?+\\f\\cF\Hi֖H`~\\Ի4~\6|\0Òs5\r7=Lɒ\DByF\p2;g؈L#>\-RP\v\`\{\\䩺\\\\f{f9|\\b\\:=u竫w\oɿ~\\.\k\\\\i^_\Z$)\=OM\{R:cINBC-\Y\_\\7hP\r\\NEX8&Q6\J03*]&VJE\I<Ÿ\.EN\S\w\\[MG>>h\\\\\9Ҭs`\\%i}v\\"\nb\\a7\_+\N\p\\rb@QL\Hb{_\\W<3\\#\^\̻Bs\\\*\M$$o\\S\\[́rbP92EA-\M\E_B\0 <xi1Vʮ@\5\0m\=\*5ZPb\\9Xɝ2K\8D\bǴ\	U,+\8`\؝3Fj\V(됸q\nڹ\K\\2<fDMݶU\5z\\c-t\\\\mr\9v1\{OlɐEb-\0؂\w\"D\Q\\4Sε%:O\\#IirL2\&hJO\	\\Af\\A)\\&-\u@\Ӄy\r*_X&Q\Òbl7E(4Ar>\\\%.\9zRa&</K<G7\\'\\)\~E\0gV\Đ`a[v?\r8\"=F;%PξQO\^.i(ƥȠA0\e\\ʆ\P\nǣ^C)A!\"A\\F\4_]\n\c\\%\\\V\$n*\8\9\L1:\\\d\'&5qq\3;9|\aUUi\v\R\@{\qD\3f]\;\V#}\\ti+ \Z>\\r \\/RPb88<\C\e\\79\.\O~Pu\"\tU\\\O.\s\6\߳@.20R\T`@\6\'U^ X\j	XF\&wgfEhM&)3LNAuHbd?,a!d\|\G\v	Gϓ\b\d\먪\p:U;G/\#=>}xđ!;\\&z\(^\|\\'\}\\\T]\\LeS d&\\K\F:9.\I g\;Fi\5\l\n\(\Y(`\zcԁ\g7ϡȊr\M7HViݒP	\\	gRRi3\tPQ0nR\xt\]b\q:\n\'WnAO.[\6\@\o.%rzo`EO\Z~\\Z	10(2\eɳ_2\:>Na\ʲz\E\\GlX\r\FG+.*_ES\\u\\0\L6\𐛊4a6d<\x_#\rc]\0\6\"\Jd\=N\\Q\Ϻ\(\\ν\BJ\1q<\u^8\Ovׄ\kА\\0nj֑mF9\B^`;Xz[(\VYҖmὲ&3\#\\/LF\wJ&AIY\ONld\b\YDĊ\\Ta#\\۾\O\/L<+\\d\P\ıΤ<\\n\1\\U	(gI\\0\ĎZQY\T\\\k+7@i\U^ר@\r K뾝\0)\\l_r\F\nE陑%\:\L~)5\'mN@M\Ѧ{+\Zvݢk\1Ojɖ@K\\\\Ov\K&)f]!h++\X䬿\N3qݗN*8X\h5\6\\2jW>$\\}\\AZ>MʧjCRN\{\\CF\"Y\4oq6\LL#\rEPjѧR-|WO\#\'V23Lأ/\\MSVmO碻0Ni\ZKvt\o2An\"Ր[W? =\VJ3G{A-\IVQGY{o}\91\Fqr\\,Pʆ:\~B7\E\@:P_,rb\yy\1g|\;\\f;\\\~^\\V\\r$J(\\\(Jd$\\\J\h\?ӆuD\\\ݘF\\0\"M~OAyt\ݝ w&\C\r\oBged\\R\\\3l\^S\H!\`UhN\%;\&{e)QQ>\\e\\n/hOwͩ\\вR\\\n\O\`GBwDuvP\Ո\8%\Ud\'N\\r\0\nη3Z^8\I]M午M:818K;\ZD\0V\\>/A!	\"\`iN£z\\0k\\\\$F57JFY\0\\\00k\a0QD^\\r\\d\n*\By-~\"\ր0=\~\t\\0u\#\	>NA\\q==\t\qcЎM\\\\\=\vE\\\3\\H t\A|Iv&V\r\\}6:lqJ~Pnt3)!d\5gI\K\j\\nDE\Z\:o/u*\#(;Ac\\x?{<\~,+{JMLBM7FtRѬS-k0\\xlaol?}oʒ~-\\+Ybɰ΋A7<\/G\F5L9wFq\,^Wl\g4\\r^J޹6 \r\'a\U!:0wg\*F \"ŗaB\\\\|HQsWQR\'o\n2\\ cnXtX޹8`\ܥt\ZV\0VY\S2c+zB\=M\QӦ2_\ \[z*\\ʰТ4 Í4\k\UG_a\\OZKhR!Y`\\lRƽ϶쩱]0UҲ\\$\9+׌jA\#lJ%}\\l\̻Rҟ\.B;EX\"\[w`\`1|r\\]\\5\ؗ1.ؚ\'9\h\<Im;bz>w2X$8P0%6k\ݍL\PI!g@\:$\j8;ߝ\,Ks?9\વjfKV@#\B\V+G\\T\\(\>wa[\\R_e\v7ȼ\8(dm؞3F\_!\^\˺nit\\yAYiT\v\'\9Ozv\N\ա-USP\ޜƯlYӿɣ&*\迒\\VA\\0ġ\0*>\&r?FCe2J{#ApTMڄM5\DaN\8\r8\Ϝ8~},Y|T)ȑ\&,%\rǪA=\\\|%70\=j0\"a\0N[	UZN\^*\\\P+:F\S\K\ME\հ\SX=[d\zoCb%\zt\lh\0g\r\\\JZN\j\	6DXPxO\K\\T`\w \ fI?l\D8\\>L\\:\\'~{)>\?<9\2\ިSJˉwޞ><\]\Z8Na~VeV4}x.>17\|\)7q}4@\3n\L\M\h\\\|4խ S7C21+Q$\%j[FY\|b\'uP\A{爚\V\0e˻uNoREKj\ȶ\סzX1t\Zr밎t=˵\*$1MLpz\By\0g\X\0r\\s\\q!,\R\n\\&ֻ$>ЎǨZDȖ.\H{鋎\v\\$A1/\\0\\\Ͷs{joExTg-o2xaq5\w\\G\_!\\/\e\I/n,\6-\\	0>\\?tLi{xn\gk`6[\\}uͩ\ۚ\0F\UqL\nY,s\PĠ\ڽ1\",7a3+,\r\\\ O,nY <%\ `\Z\\+nHy1\\"\Zc9В0\no!>Sy#.1\.Y\nMcĬ=։6CKrd\~\lދ.ԛ\GpnSbj](V\)<+2\\wU\^\r6\%\\A\Jnp!	vxѪ.\EFx\L1\ \@Q\0\\_\aS\rk\m\r<c%\\\3ȖZ,\\\o:	\\Z9YA4l]҉\\Ntc}\f\`\\\nciX\>$~q	so^\\\G\K<)\f~j*\\\\U<ϤE\#0\\#ԕ\msSdz\\\UG?\8\`m\Z\\\)!\r(H닐\ab[0\%XÇ}]!\0p̏^\\pp\\*\\\e\.+nz\\4\=X=\\'vsv=\v\?\5\\\\"NtEwV 8A\ZxGh\ÿ R\'#?\\\mvo)g\{\\n%rAW\\m\\\Vy϶HO\3E\^\\0Pqj2\j&{Om\jI\~\\\Ơ\\N\D>(\\	TY\N\ŭ#w&\nI~3zKXs\S\\\ndl\9u\\\\_G.\}S\\\W\\烍/r*X\f	\rVbzTqۀ=n1/#}\0o<=\w7\G\\н\X\%\\\\]\t\NTP\wJQ\\\\\7hLـ18w\\乢[\yJȽ>(\N\yC\%\޷[\\',#v\'`#(\$xi|=3Xr.É\\\j\-M\\:k/S\ZrW#y.YZ\\ž MjYosAeX\\=\\\	o\rш\xtz\"N\ю.2+̈́M(\^@\\\TwxS\	_\HcⵉlkM\#M\\J24H\\8Zu\`l&\\\\$t\\Kk{	co\\'\9mGaO_\m\:zM#oy`\&&j2\!5>p\I\'˾\cJZb7\rG=\H\z{bե\\\LZK\[~\\A^\!ƕ\\5\J\_aS\\\ɱɑ\~\\u<\ \k\@\[_Y۹*\\;9\'\rw\'Ғ	{~-CH/\\%\3{ANtKU\\E\\"t\rT\\;\\I]\K\r	3ti8\Z\\8\7Y~\Z_\r-T>	d\5:Awn\Dvovc2nOAT\y\bo}\\f\:\r2 ̀K/(c\w\\\#~|(\\˥KY\\"WF\r|\0ro륀h\\r{%\"~-]\~r\zy&\Zo\y\,\\\\\})\^`\se7M\NHᛟ\\\\\J8\`\\Tk\\rD,^7g\t\W~ۦӫn\)f}Ml\M]6ےxC%m\'C\\\\EC\'vd\B\'\0|Erи^\6\CJ)]!MY\\AA˶\pPr[v>\\\\Ԣ\9{\ID|\'#.{6\rݺV`Pm\\6.ML,xAW\>@C\}\u\Kq{r\(d	Wq6\ն\\)oC\\r>LMW`8NZ״[\ХO8\&\Z߼CO\A+\Z\rfpiP\7\Wf+mj\_:y/vٮV\#98uMb\\\r$/\~뙐qAs\|C9T\'Vd\5M\.䮹\\<؋q(\e\r\l<e\0sټ\\}\"\"VQZqm|ip]M]oD7\\ܦ2\Ӆ]\\\&\`\!-\n`\uG\;@	A:${\w*`\\\ཙP5c~\Ul;\\,qR>[`M\*$\\|B\tA.t\\Ԍ\wX\tF\]tQ\-@\\v ??rffY^|Fl޲T\rV\pB?n\hn~ߨ\'\M\FE\\Ҹn[\')\\&|9\΁\I\\\\脺ٺ5OWr\XƢ͆+JA,\\`\'&\\v\TzN\0\.6S\kVs\㮰grpvpUmGGeG\D\.s=\\\{\\0\%ibK}d\M\V\-\(Mt\\0I\\3\ \Ik2xS\&*@\>BB\9XnWGUvQf=jJ/׏ޚsS\ʤo1j(74g9\B\uo雕1,Ӱ\\u\qsD\\\7n\"ѭc\Rq\W6G$[Ӣ=d}{wea.:\\AJ\xQcW2zpn\\\u\0kܸ>5SK*Z\jZv}\%\ge=\0\/P\\\A\0͖܎`\Uk\\-d*+\\'&w\.&YU7\i\>06&d\d\\ѕm\ZQ\Vzr\JG\\\mEBn/\$TwX1j\\0o\\fY\| h\'\jp\H\{\0\l\\N\\)Q2\\0	y&\3\xe\7b\r@\ա[T m)<\氎&;\n|\n\ıe\'X\O%NUYm5 i\0HC	WrP`\.\=\:\\st+\$&;\f[C\횀4E\'\#sl\itpL\&=\r^d0\\n\\nZE |\\NV\Kb\3\k	<L\r/\0d`bZtgƣMi\'d\#R5\τx\B\aGXdC1rY\\\7\*\\\\'l{\\','EZ-Page with ID 10 updated.','info'),(1726,'2018-05-20 15:30:08',1,'ezpages.php','ezID=10','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1727,'2018-05-20 15:30:08',1,'ezpages.php','ezID=10','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1728,'2018-05-20 15:30:53',1,'ezpages.php','page=1&ezID=10','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1729,'2018-05-20 15:30:54',1,'ezpages.php','page=1&ezID=10','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1730,'2018-05-20 15:31:04',1,'ezpages.php','page=1&ezID=10&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1731,'2018-05-20 15:31:04',1,'ezpages.php','page=1&ezID=10&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1732,'2018-05-20 15:32:02',1,'ezpages.php','page=1&action=update','24.72.164.167',0,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\yT\2a{f{c>I\\'\V\ԟ?~\\M\\ڹ\\[S4\w&Uٚ\ʢ޵?TL0\"-\2֧T׹nt\֟F\OuY5ʊg\,5|ɟ:OC\˲qC\M|Jz\t_~wx\ɳh\|n\\\^%\?\&AҌX},\\\JW\\ʹtQ`|Of~sa\}:W\6MY\M\{tUI\:3Uͳ6\}\^d\mS#u~f];l|\͏\?\\\\۲Z\庝\r\f\w{gz^_^z?V;\_\\\\__Rӷ\2\\wov\\mި}vcE\\\uTWz۪h\\O\/\\*fY5\3\\!\~.ۥ2\P$\MC\,Zy˘\\\0wժ2uRe3Sfa\Ҏ\nFetxB72Z\\rOr9\\nbZ-ۺQKc\ZՔjf\NC\,\%\R!7\2\RWwg2\wjk\8I\\"+N8)417\*\U\Rj\\	ˀ\bx\;<B\ayon\ܮ\\n\[ej\Z~\_<D\\r\2\\1\\?\0\l\:iZ\\`*d\sF1<QKpO`ʭ\iYG\\8`pCײ:m\ZNc\0N]_YU(dmY#҈7?\\,\*37\]|\\\_ž-\\xJ\N\\\g\No?\7̺v6i]+\X\naƌ,>Ʌ;\\c{pOONw\]3>Rg\\7#>2h\.g\ZsT\n\.\Z{E\Kʘ^\Vej9@r\n7\,>K\#\v\"\\\\#kS\\\*}\%%\\@J\Z6#AƖ\2*\x\\ltIWuy[abaF\ae\XѾ\?ڙp>G d[S\Vz jAedGE\3 \Dz\\\9qZ8Fށi\(Y+h	\\\DǕN\aSTL\\0\VDXK\ \)fB|Sj\Z\\{ZiPl	g\Q\d\C<&\$\x\I[\W2\(3`\\7\/\廷/\\z\pr\}\pw\΅\\\\\\zo<NG\w^ߜ\(o?M\v\L\\\xg\zס.\\>\E\\俷:$kPz:5`;w\ԃ UY#\Y7\Cw/3yn:g\e^(\aY},-\6Yx\\=`1\'HhLA2(\p\2\\enAoٿ\Z!9uV1\\ul;`nDy[\\pi\\"&PAB~, ^\\\dIN\\5P\d·=e$}\i\\\{\:/6CDW\0\0\T{\Z QB	1A\%tfŒ!IY\_D\'CT6\0j\Zطz\j\n0en0\R?\6\zP\\tV7\\nf%m>Qa\\kC3ϳF*\L?\Z\2#\,nAȵ-gL2 \'Ӽ*4\\L$p6uO\\\4q1L\pN}\\@\ny\0\}598:8QFiq>ږգ:*\o*x?x(5%ݨl\\\\\D\Z\2\\2\\0f\sE칐-WlO\Ϯ?>S\\ntx_ni\\+\t\5o=\\I|>BiY]]z{~W\ūW璘A\_NI\˷-\\\x\;\\\\[qLbVemBLLUQ\\\~G\'4k\0\\'i\\\0\\ʬ5Ǿ7uJ]=uH\\nmA\-Dm9w1\Rq~\\\xe@g\CY\.\Z\rԞc\-\βD\\C1A\0y\p\)4\\9H^\@i\\rQ*]mKnMh\J\zVeI\62jX\,A!2Tw6rڠf\& 1\"\Z0\{\"hl,ѯÇY8\QĻ 6}j8QlG=Ȇ-\\"d}h8]\o\Z\V\C6J{i\5o4}y	Zжc2g\\\Qf\\0/\X\;,	_e\^<\lW j*4=|N,\ﴝ\\\M\{5l{&^N\\\N]~Κ0\</mS\\\]<Bvz͐\\\ع\l9>x\|\&G\C;``(&\y\;1K^Vt8:m\r\Z\G6\\\55{l\\rP`dQ2][g\w䃮V́!˶\0s\\ֿ\\0B}oG7\\j~/VR\_)\X\"\.A\\W.S\`\\*p-\x*b\\{5\ra!\\<9_!0fk	\y۟\h\'5\􀼬1\\܂ޮ\{0Ԁ9A^L\\\g@ܶs@AO;\\8\O_3cfC\ЦZ8F\/Y#\X˰%<\#?KϽ\0\N8\߰K6!910tV\EC[Р7Q&G2\l+R#<\<\\5-޷ \[S\'ˣ\aAI?\ٌu\V3\\\i\rB\K!dXȰO(mյ<Ξ\G,\\r[n=\nN\Q}]-\r?}Xd9\0\ \\2k#DIr!\^|d=&\\*u>rF\\n\\\)\}E\/CwDi$\\׋H\\\"\\\\i,.dP/5=61\1y\Y\w\\\\t\\F;[6>!K;\0l\}Pµ\p:\J8$\\5\G\aւ\Jc\G\:\8\\;`~}E\cRq\ÂEy\0\~_\s\V{##a^\0_7}hA=\\\aGl7]+xeČp\\) $śahQV0E0<bwZb2`$[U\\O\0.u\Z}\v؈\a2\)\X`\2\\'\r\;n\\,ɾ\֤tf:<޻C\aj\]\LA\f\t\0\k}#\'FKDL\\si\n^c*\\*\0Lo\\\\9ʪ\\/1b\;]UH4/\>6*j\Fįb\(\j\Z	5%\Ϗ}z	}\E\\L{\'\\\	A9]pboA]*N?0Lr\ft\7\\ڧw(߈\QpVcSޝԩvU\\{^.\@\Ij<y\4\\v\HC\2Nb\	\\/ FuVO,m\5\9\"\c\3;\\\\\\\؞<GJr\\8Щo=vgE\~ʙsʹWswJ7\c]\\lk]cnlb$wa\Ze{\ kSl\p~\\/\$\-}\'\p\NøG^	b.\{N܊+Ҭ\NhJw\\0{\\0	\6I2D`o@A\LI$(\\D\x=fI	ÔIҮPX\&\\n#`Z\0\p,9\ui\02\-\\<؁Q\3n\._;3._\r&$C\}k\d\r\M\\e\"0S8P4\\\\.6bӈ\\s\\"]4\^q:yn:\uٞY_\7N\C]\\\\C߽m{\kڲs;m;pח\	h\ns~\SSހ\X\PKz\\l\r\Z\z|\\SdE0IhM@+L\\kJ/R庼h\*O1KQe\]gdSO\:&ǭw6C\{c4\\A;\%dɇj*a\C\q\\r׊3\\GnsP 9R\\׵\0׈z/\\z5\q\</\\K\\*\\\s T\AjQaPby!eQ嗐g;L%ި\fnZ\,g|\a\r@\x`\n\\D(\tqVGr\'\\\p=·h==\1mAB\\ntEjf\1v጑ڵ\n)fe:$nv.\Ai5\\dFg~<ASmAGs\{\CwFlr\>sĥ]@\\\C2d%d\jG`\0,c]z%\3uM|s\=m\\HR\\o.\	\#`<\ef%q%Wpd\n;>\(,#I\rG(F{\ l^\G!ʂ×!\lj`\n\M=\nMP+y(:Aˢ2D\m\>\\Oa\\\rC\I?zʲ_e)U81$Xjؖݏ\|\h	T/*cf%\,<\\\0K\ZJ#cq)\-2(bLr27\\6B\\W\PJecHuQ2\\}b\Ļu	n\"1\0Οx\\>S0dv>\IIM\\\!\N&p_\wXVnEU];PĞrQY#\H_F]\>\*=H}\V\Abab,<㻩\?TX\)|/q\MNK\"\TH;]UK&\\g$\\h,!\ŨP\I\We0&ZQ\\YZI\\nP|\KXD\:{\$8Ep\Q\\\ps>\8\:\9N\\\HO\\qd\γ=:\n\\>< \	~1t0\\c;1<B\\0>	R&Db=B\\\Q\rM8`\'oyc\nX\0^e\u\Y\A\\s\\0s$,\r\\r`\ZC$T\E\\ĸyi\L9b[/6sXrn\\\\U>hⓀ\,8gͲP\KcE^\\i\k\FpBLLE!L{\l,(Dm\Sث\\lye$~C\犋\WQ\ԅ\rDg`\44>ӂ\9<\\(Mg\r\2\\H\i\\\j\\?@\rB:*BDSyƪd5~\n4\n}\\\so\wd\(`</0uN\\5f\\Z4$E\7udQ\\#^\JUe[cx\H\/QE`RIPi+8\Sd!S$[<*yn((\0U\H\-`E>\&m\"Ϣ\Jw\\;\7ql#?\%3)~$y\xrU¡j<\n,Y:VnT%6Us.3Z\n\*i@\5*P2<\Һo\'k\%\0o\?\c7D\:\W:nQzfE-r0Ӄ_J\	o|[S/P\ES=z)\\\n]\\sL\S\Z*<k%0\û\0ד\fi\\nY\jWڊ\J19\/\\`\\\nV;-`\rW=ڕ\I7A*b:yПO)\\\\ZyÐHV,,͛E D\r# \.\H`C\FT\\ȉ\\\'S\c\r\Ɣc?Uh\\\\\<+Sڸ֒ݹL,kH5\e%E\\i\\\\#\\^\D5EU\~/Q\j\[f_-xNLǬQ\\u2`mN\ߟP\MuQ;\r^rD\َ36߾}\\\p\n\7I\y/4\Zχ\\\i\乭}\t76\.k\SP]Dtw\'H\n`	Cí\Y\;T<?\\n$\<,\9ה>(>5R2\\feu\.n\!C#\\\d\*kocf\;h\䲾\\\]s*T\@p 9\Н.QbA]\C\=w5\3ffrىc\֪N=vRWSy#bN}L/N钦A\ή\$U2\\FPH\4X(5\Z;9;	#E͍eV\'B0\0\#\\\ZsX\0LD>~.n+{Y\|\n:PdH5 LO$:1@]c\{\\\x\nSvaE\i4\\Ǣ{\mS.5\s0xO\]Q&\<ty9.-]5C_\\d\19~\\d[\\F邒\ i>\\~Jٟx\h`RZƹQѳV\\\K]7š\&\N\Xq\0<ޏdbA**Ϻ \\^RS(PS͇T4\\|<c\\ZL^ [\0\O$_oKw\JX2\\b\\r\8\K)\ѱQ\rSDΝ\A:K\\)[\\\ \rs}\}C.w\rHɮE\\l{U\\\n\(He\G\G\\v;AF,R\\U\\\B\;5=H\Xw.X8w)\1\U\\n\<D*$zO\xT\)\\\\:y!V\G2,(\r\p#\rg\z\\Wy\\@\\?`HX\0F6qo\-{jlD+L;4\9oΊ5ZP\RgIe88󮿔$pe\\@ѫ)9\}\\\\9Ŭceok\4t\2eL&\pbN4ڴ?0OR/Ǝށ<\\.	$\L\\{ewc#0g\G.TC\Ю0\N+\\0!ɶ\$\\wg\4\\\\@\ex0\"\"j\\Ҧ\\n}к\J69$kj\]\,ԗ*mٶ\\r2n8!l}\\\\W8\|f,\Dut^`P\gGm\Z\IsN\]0*Auh\j\$7h\0ë+\\o讉\.7$tUE4aqhc\nCjO9܏\n\\a\%b$$|\'`6\o\*cM8Q7>/N(ξ3\j0kK_#\o\nr$\'	`Iñ\+`\oust!_\\ruZ&HX#ӖGBl\􁗊1ÊN\Q\|\\*z}v~5\g\f\\V\'^\\\ةgI\ 4Z\"b,\0\Y\Sr\\ZA+v\r^\{7X].\@-4Y\! N$?=\\\pEE>A\^%O\'7\%\\r\\\+)x\NS߂UM^lO\\r9x\MB>\\$Po[7@j#=Z\Bp4E8_-Muk0\\\#\L\%\\\J	Bږ\BiVG;IE\\9\@\nӛjђ\ZmuVn\ݧ\:c~r5G!\nIpn^=a\\&\?a6\;qsvԦ\u.\\g\\1!$\㤋:\^c]31Ic\%6rm\e%\\\[\B˛̤\C!ī~fAX\\MgA0\1k\ѢWHKaDuRŋ\!=Dk2zB/t<(\}*S\4\ٚg<\\Es_Es\\d\&?9n=QsDE\.B,Kf&n\\1\+1h0j;$voL(\M\\\l/K\<:79l\mV/OI8>\BR\kL\X$̻\[~\T`K\\:K[\X 1kϬubdM\\:_1ۼ\e\\۔Zx\n\\nպW\\\壍\$yɲu(\\F]\%^jl\s\a\1S\69DPj@weyG}T\\Z|q[h\X	yp%FNCN\c\rBmt\"=\\\f\?3\s\\X\Z\0´~>O+\?d`\\\o=\}Wy)OʿYJ~ |yx\3)gQ|r0ƈ+Luev[ܔ+zyt|bՄoяfg\0\7XFy\nk\k\n\\"tب\iI\\A_W3\\/#\;CŇ\\"\n6xٹˊG<&\rv>VOm\\ݜ]iǰ=|j\Oy\uz\"\bѝ?Ne?n/^ő\-\Zbn\-\\ȏ9~q|]\m\[ʙzŮ[iЕ{z\1\0|\\",g?\೭}\Lѵ8.;T\歚L`-\ھ\\SZF2u1h67?\'\no{G\·Sxq\ȝ\p/[\̣\\\C廃\\\_GNGp<0\<8ב\q\\\v\/`#拜\n\w0\\/UXm\6`\[+oi\\f/\K\\Gf_/~\[=O\ͫkѰ;t5?b q8x4]FRt\r\Z\\h6`\]\\0;y\\\z\\$r-JSu\Pt-ok	ˈ\	\J8	*$k~!_\\p⻱ZwK\:\\\˔\\Hd&KV5;}/HSe\g\\\\P+f\󀄾geq\[C4\8^!u#\J3a&`() &\,\h!\\b\u\\4Rxm\"~\\AS;\mS9\r5V\+1#\'\\.ۼ\rh8%8	݂k\\\^\\[qE\a\\\\ql^\*C\[\\*ؠ)ǹIzHͥO\u\ɀ{\\ǽ\M\Q;ҟf\iu)|\17\\h\\G6\־߳6E\tqevsM\zRWX\wrlrde)q\0\|t\Z.4a8\W\vzND\\h\\݉d\\n_\\Ks\c\0\^]k\RE|gWhe]Cf*\p9莲tkR\dlB/g]\$NFv-q0M_\\\oC\\'¤Oq\r%dNН\;k\ۤ\ؠ\Cۓe(\\F\[G\@L\'H3\\\\z2\*\n\r\RGֵȕQ._8\\z)\Z :\^)0p	_K껩A^=)\\t\B.賹{_ph\s=\)E\MӸo\gr5\0\\"!\'\_Be{&X9G9\\Zq\ \\\\\o\:]<կ_\\ꦦ!+#sJ\\Y\e\\\'~SM!\\$|@\ \P#a	De\I\P\{p\ЉY	\0_4\WMpRjJWHS\8uPв\5ܖ~j\8h\zÞ>=F\.\\C+&\I\\ިM}\\\"$T\?#?K@g!^\U\\u|y\q\\m\^~\\} \nY\d\U\\Mq\xtېuì\\0S\\\5m\V3t\)N	\7/\\\ӣu|\JVY\,+\\\Z\\\G\A\sNދAk<\HN\c.N]Ӂ؁iDA&z\}\/\\˹\z&d\l\}\;\\F\<\E\ɪsMk.\41! |\ny\BYâ6kmYp\e\\\6\3<l|V\\\\&_Z/\\\cSW\э{$i磌tad4e\o\=r\Q{e\PAi\k\x\n \y\;xo&T\r\\x\j*\N98K\օ\'\0\e?\n\6|f3߄{]oІ|7=5\\0kf\x\O\)ܡ\jߩQ,貜5\\ϣi\7ڪ\7au\iQ}Qu#4n\	h\n	Fs`|>}\};#:nnMӕ\1Vᦱh%*㊭c<x6=؉	l#o/:]{<\\"$3̺e\\\Z՜+\\\\\U\\QY+\5\\\}\8%hwI\R<rSնAKx!J&\{\0@:rk-\\\l0\?\T\	\\nyP(A\x[\\\eE]Y(\\\~\2\[\ZJ\r \\cNG\0Pix\[fe%4,wx\\\Q qHtꇬ昳}\r\ִhY\^\]\hK<\aR7^\\L\\b׵\o&\\Z7nO\Ԓ\n(Zl\xlYAcYO:Lyŋ$\9\p@%#\uU/\\Z{\\n\\]?iV\M|y\Z.	Y1v9jteo~Զ\\\W!t[[)\\\)5	\\al:\0\긵Y8ډ\Z\7\\\A\:[f9Gt=&{\nJ\\#@BIL!k8nC\Cͨ\؃}au\\H[\n϶9	\7ql\	\Sɠ\m,\hVj\r\fڤ\+Cm/P\\$ⶋv\\݊;	\N\\Pz& f&\rA\"gQ\	\\\u\Z)\$\mOmp<B6!V\`?\6ǂlA럘bw\Z \\"\m\"\/B>ݙhS\h\	x㈅FM\3\-52p\\\o}|f0A\ͧ\x	\\\.\','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1733,'2018-05-20 15:32:02',1,'ezpages.php','page=1&action=update','24.72.164.167',1,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\yT\2a{f{c>I\\'\V\ԟ?~\\M\\ڹ\\[S4\w&Uٚ\ʢ޵?TL0\"-\2֧T׹nt\֟F\OuY5ʊg\,5|ɟ:OC\˲qC\M|Jz\t_~wx\ɳh\|n\\\^%\?\&AҌX},\\\JW\\ʹtQ`|Of~sa\}:W\6MY\M\{tUI\:3Uͳ6\}\^d\mS#u~f];l|\͏\?\\\\۲Z\庝\r\f\w{gz^_^z?V;\_\\\\__Rӷ\2\\wov\\mި}vcE\\\uTWz۪h\\O\/\\*fY5\3\\!\~.ۥ2\P$\MC\,Zy˘\\\0wժ2uRe3Sfa\Ҏ\nFetxB72Z\\rOr9\\nbZ-ۺQKc\ZՔjf\NC\,\%\R!7\2\RWwg2\wjk\8I\\"+N8)417\*\U\Rj\\	ˀ\bx\;<B\ayon\ܮ\\n\[ej\Z~\_<D\\r\2\\1\\?\0\l\:iZ\\`*d\sF1<QKpO`ʭ\iYG\\8`pCײ:m\ZNc\0N]_YU(dmY#҈7?\\,\*37\]|\\\_ž-\\xJ\N\\\g\No?\7̺v6i]+\X\naƌ,>Ʌ;\\c{pOONw\]3>Rg\\7#>2h\.g\ZsT\n\.\Z{E\Kʘ^\Vej9@r\n7\,>K\#\v\"\\\\#kS\\\*}\%%\\@J\Z6#AƖ\2*\x\\ltIWuy[abaF\ae\XѾ\?ڙp>G d[S\Vz jAedGE\3 \Dz\\\9qZ8Fށi\(Y+h	\\\DǕN\aSTL\\0\VDXK\ \)fB|Sj\Z\\{ZiPl	g\Q\d\C<&\$\x\I[\W2\(3`\\7\/\廷/\\z\pr\}\pw\΅\\\\\\zo<NG\w^ߜ\(o?M\v\L\\\xg\zס.\\>\E\\俷:$kPz:5`;w\ԃ UY#\Y7\Cw/3yn:g\e^(\aY},-\6Yx\\=`1\'HhLA2(\p\2\\enAoٿ\Z!9uV1\\ul;`nDy[\\pi\\"&PAB~, ^\\\dIN\\5P\d·=e$}\i\\\{\:/6CDW\0\0\T{\Z QB	1A\%tfŒ!IY\_D\'CT6\0j\Zطz\j\n0en0\R?\6\zP\\tV7\\nf%m>Qa\\kC3ϳF*\L?\Z\2#\,nAȵ-gL2 \'Ӽ*4\\L$p6uO\\\4q1L\pN}\\@\ny\0\}598:8QFiq>ږգ:*\o*x?x(5%ݨl\\\\\D\Z\2\\2\\0f\sE칐-WlO\Ϯ?>S\\ntx_ni\\+\t\5o=\\I|>BiY]]z{~W\ūW璘A\_NI\˷-\\\x\;\\\\[qLbVemBLLUQ\\\~G\'4k\0\\'i\\\0\\ʬ5Ǿ7uJ]=uH\\nmA\-Dm9w1\Rq~\\\xe@g\CY\.\Z\rԞc\-\βD\\C1A\0y\p\)4\\9H^\@i\\rQ*]mKnMh\J\zVeI\62jX\,A!2Tw6rڠf\& 1\"\Z0\{\"hl,ѯÇY8\QĻ 6}j8QlG=Ȇ-\\"d}h8]\o\Z\V\C6J{i\5o4}y	Zжc2g\\\Qf\\0/\X\;,	_e\^<\lW j*4=|N,\ﴝ\\\M\{5l{&^N\\\N]~Κ0\</mS\\\]<Bvz͐\\\ع\l9>x\|\&G\C;``(&\y\;1K^Vt8:m\r\Z\G6\\\55{l\\rP`dQ2][g\w䃮V́!˶\0s\\ֿ\\0B}oG7\\j~/VR\_)\X\"\.A\\W.S\`\\*p-\x*b\\{5\ra!\\<9_!0fk	\y۟\h\'5\􀼬1\\܂ޮ\{0Ԁ9A^L\\\g@ܶs@AO;\\8\O_3cfC\ЦZ8F\/Y#\X˰%<\#?KϽ\0\N8\߰K6!910tV\EC[Р7Q&G2\l+R#<\<\\5-޷ \[S\'ˣ\aAI?\ٌu\V3\\\i\rB\K!dXȰO(mյ<Ξ\G,\\r[n=\nN\Q}]-\r?}Xd9\0\ \\2k#DIr!\^|d=&\\*u>rF\\n\\\)\}E\/CwDi$\\׋H\\\"\\\\i,.dP/5=61\1y\Y\w\\\\t\\F;[6>!K;\0l\}Pµ\p:\J8$\\5\G\aւ\Jc\G\:\8\\;`~}E\cRq\ÂEy\0\~_\s\V{##a^\0_7}hA=\\\aGl7]+xeČp\\) $śahQV0E0<bwZb2`$[U\\O\0.u\Z}\v؈\a2\)\X`\2\\'\r\;n\\,ɾ\֤tf:<޻C\aj\]\LA\f\t\0\k}#\'FKDL\\si\n^c*\\*\0Lo\\\\9ʪ\\/1b\;]UH4/\>6*j\Fįb\(\j\Z	5%\Ϗ}z	}\E\\L{\'\\\	A9]pboA]*N?0Lr\ft\7\\ڧw(߈\QpVcSޝԩvU\\{^.\@\Ij<y\4\\v\HC\2Nb\	\\/ FuVO,m\5\9\"\c\3;\\\\\\\؞<GJr\\8Щo=vgE\~ʙsʹWswJ7\c]\\lk]cnlb$wa\Ze{\ kSl\p~\\/\$\-}\'\p\NøG^	b.\{N܊+Ҭ\NhJw\\0{\\0	\6I2D`o@A\LI$(\\D\x=fI	ÔIҮPX\&\\n#`Z\0\p,9\ui\02\-\\<؁Q\3n\._;3._\r&$C\}k\d\r\M\\e\"0S8P4\\\\.6bӈ\\s\\"]4\^q:yn:\uٞY_\7N\C]\\\\C߽m{\kڲs;m;pח\	h\ns~\SSހ\X\PKz\\l\r\Z\z|\\SdE0IhM@+L\\kJ/R庼h\*O1KQe\]gdSO\:&ǭw6C\{c4\\A;\%dɇj*a\C\q\\r׊3\\GnsP 9R\\׵\0׈z/\\z5\q\</\\K\\*\\\s T\AjQaPby!eQ嗐g;L%ި\fnZ\,g|\a\r@\x`\n\\D(\tqVGr\'\\\p=·h==\1mAB\\ntEjf\1v጑ڵ\n)fe:$nv.\Ai5\\dFg~<ASmAGs\{\CwFlr\>sĥ]@\\\C2d%d\jG`\0,c]z%\3uM|s\=m\\HR\\o.\	\#`<\ef%q%Wpd\n;>\(,#I\rG(F{\ l^\G!ʂ×!\lj`\n\M=\nMP+y(:Aˢ2D\m\>\\Oa\\\rC\I?zʲ_e)U81$Xjؖݏ\|\h	T/*cf%\,<\\\0K\ZJ#cq)\-2(bLr27\\6B\\W\PJecHuQ2\\}b\Ļu	n\"1\0Οx\\>S0dv>\IIM\\\!\N&p_\wXVnEU];PĞrQY#\H_F]\>\*=H}\V\Abab,<㻩\?TX\)|/q\MNK\"\TH;]UK&\\g$\\h,!\ŨP\I\We0&ZQ\\YZI\\nP|\KXD\:{\$8Ep\Q\\\ps>\8\:\9N\\\HO\\qd\γ=:\n\\>< \	~1t0\\c;1<B\\0>	R&Db=B\\\Q\rM8`\'oyc\nX\0^e\u\Y\A\\s\\0s$,\r\\r`\ZC$T\E\\ĸyi\L9b[/6sXrn\\\\U>hⓀ\,8gͲP\KcE^\\i\k\FpBLLE!L{\l,(Dm\Sث\\lye$~C\犋\WQ\ԅ\rDg`\44>ӂ\9<\\(Mg\r\2\\H\i\\\j\\?@\rB:*BDSyƪd5~\n4\n}\\\so\wd\(`</0uN\\5f\\Z4$E\7udQ\\#^\JUe[cx\H\/QE`RIPi+8\Sd!S$[<*yn((\0U\H\-`E>\&m\"Ϣ\Jw\\;\7ql#?\%3)~$y\xrU¡j<\n,Y:VnT%6Us.3Z\n\*i@\5*P2<\Һo\'k\%\0o\?\c7D\:\W:nQzfE-r0Ӄ_J\	o|[S/P\ES=z)\\\n]\\sL\S\Z*<k%0\û\0ד\fi\\nY\jWڊ\J19\/\\`\\\nV;-`\rW=ڕ\I7A*b:yПO)\\\\ZyÐHV,,͛E D\r# \.\H`C\FT\\ȉ\\\'S\c\r\Ɣc?Uh\\\\\<+Sڸ֒ݹL,kH5\e%E\\i\\\\#\\^\D5EU\~/Q\j\[f_-xNLǬQ\\u2`mN\ߟP\MuQ;\r^rD\َ36߾}\\\p\n\7I\y/4\Zχ\\\i\乭}\t76\.k\SP]Dtw\'H\n`	Cí\Y\;T<?\\n$\<,\9ה>(>5R2\\feu\.n\!C#\\\d\*kocf\;h\䲾\\\]s*T\@p 9\Н.QbA]\C\=w5\3ffrىc\֪N=vRWSy#bN}L/N钦A\ή\$U2\\FPH\4X(5\Z;9;	#E͍eV\'B0\0\#\\\ZsX\0LD>~.n+{Y\|\n:PdH5 LO$:1@]c\{\\\x\nSvaE\i4\\Ǣ{\mS.5\s0xO\]Q&\<ty9.-]5C_\\d\19~\\d[\\F邒\ i>\\~Jٟx\h`RZƹQѳV\\\K]7š\&\N\Xq\0<ޏdbA**Ϻ \\^RS(PS͇T4\\|<c\\ZL^ [\0\O$_oKw\JX2\\b\\r\8\K)\ѱQ\rSDΝ\A:K\\)[\\\ \rs}\}C.w\rHɮE\\l{U\\\n\(He\G\G\\v;AF,R\\U\\\B\;5=H\Xw.X8w)\1\U\\n\<D*$zO\xT\)\\\\:y!V\G2,(\r\p#\rg\z\\Wy\\@\\?`HX\0F6qo\-{jlD+L;4\9oΊ5ZP\RgIe88󮿔$pe\\@ѫ)9\}\\\\9Ŭceok\4t\2eL&\pbN4ڴ?0OR/Ǝށ<\\.	$\L\\{ewc#0g\G.TC\Ю0\N+\\0!ɶ\$\\wg\4\\\\@\ex0\"\"j\\Ҧ\\n}к\J69$kj\]\,ԗ*mٶ\\r2n8!l}\\\\W8\|f,\Dut^`P\gGm\Z\IsN\]0*Auh\j\$7h\0ë+\\o讉\.7$tUE4aqhc\nCjO9܏\n\\a\%b$$|\'`6\o\*cM8Q7>/N(ξ3\j0kK_#\o\nr$\'	`Iñ\+`\oust!_\\ruZ&HX#ӖGBl\􁗊1ÊN\Q\|\\*z}v~5\g\f\\V\'^\\\ةgI\ 4Z\"b,\0\Y\Sr\\ZA+v\r^\{7X].\@-4Y\! N$?=\\\pEE>A\^%O\'7\%\\r\\\+)x\NS߂UM^lO\\r9x\MB>\\$Po[7@j#=Z\Bp4E8_-Muk0\\\#\L\%\\\J	Bږ\BiVG;IE\\9\@\nӛjђ\ZmuVn\ݧ\:c~r5G!\nIpn^=a\\&\?a6\;qsvԦ\u.\\g\\1!$\㤋:\^c]31Ic\%6rm\e%\\\[\B˛̤\C!ī~fAX\\MgA0\1k\ѢWHKaDuRŋ\!=Dk2zB/t<(\}*S\4\ٚg<\\Es_Es\\d\&?9n=QsDE\.B,Kf&n\\1\+1h0j;$voL(\M\\\l/K\<:79l\mV/OI8>\BR\kL\X$̻\[~\T`K\\:K[\X 1kϬubdM\\:_1ۼ\e\\۔Zx\n\\nպW\\\壍\$yɲu(\\F]\%^jl\s\a\1S\69DPj@weyG}T\\Z|q[h\X	yp%FNCN\c\rBmt\"=\\\f\?3\s\\X\Z\0´~>O+\?d`\\\o=\}Wy)OʿYJ~ |yx\3)gQ|r0ƈ+Luev[ܔ+zyt|bՄoяfg\0\7XFy\nk\k\n\\"tب\iI\\A_W3\\/#\;CŇ\\"\n6xٹˊG<&\rv>VOm\\ݜ]iǰ=|j\Oy\uz\"\bѝ?Ne?n/^ő\-\Zbn\-\\ȏ9~q|]\m\[ʙzŮ[iЕ{z\1\0|\\",g?\೭}\Lѵ8.;T\歚L`-\ھ\\SZF2u1h67?\'\no{G\·Sxq\ȝ\p/[\̣\\\C廃\\\_GNGp<0\<8ב\q\\\v\/`#拜\n\w0\\/UXm\6`\[+oi\\f/\K\\Gf_/~\[=O\ͫkѰ;t5?b q8x4]FRt\r\Z\\h6`\]\\0;y\\\z\\$r-JSu\Pt-ok	ˈ\	\J8	*$k~!_\\p⻱ZwK\:\\\˔\\Hd&KV5;}/HSe\g\\\\P+f\󀄾geq\[C4\8^!u#\J3a&`() &\,\h!\\b\u\\4Rxm\"~\\AS;\mS9\r5V\+1#\'\\.ۼ\rh8%8	݂k\\\^\\[qE\a\\\\ql^\*C\[\\*ؠ)ǹIzHͥO\u\ɀ{\\ǽ\M\Q;ҟf\iu)|\17\\h\\G6\־߳6E\tqevsM\zRWX\wrlrde)q\0\|t\Z.4a8\W\vzND\\h\\݉d\\n_\\Ks\c\0\^]k\RE|gWhe]Cf*\p9莲tkR\dlB/g]\$NFv-q0M_\\\oC\\'¤Oq\r%dNН\;k\ۤ\ؠ\Cۓe(\\F\[G\@L\'H3\\\\z2\*\n\r\RGֵȕQ._8\\z)\Z :\^)0p	_K껩A^=)\\t\B.賹{_ph\s=\)E\MӸo\gr5\0\\"!\'\_Be{&X9G9\\Zq\ \\\\\o\:]<կ_\\ꦦ!+#sJ\\Y\e\\\'~SM!\\$|@\ \P#a	De\I\P\{p\ЉY	\0_4\WMpRjJWHS\8uPв\5ܖ~j\8h\zÞ>=F\.\\C+&\I\\ިM}\\\"$T\?#?K@g!^\U\\u|y\q\\m\^~\\} \nY\d\U\\Mq\xtېuì\\0S\\\5m\V3t\)N	\7/\\\ӣu|\JVY\,+\\\Z\\\G\A\sNދAk<\HN\c.N]Ӂ؁iDA&z\}\/\\˹\z&d\l\}\;\\F\<\E\ɪsMk.\41! |\ny\BYâ6kmYp\e\\\6\3<l|V\\\\&_Z/\\\cSW\э{$i磌tad4e\o\=r\Q{e\PAi\k\x\n \y\;xo&T\r\\x\j*\N98K\օ\'\0\e?\n\6|f3߄{]oІ|7=5\\0kf\x\O\)ܡ\jߩQ,貜5\\ϣi\7ڪ\7au\iQ}Qu#4n\	h\n	Fs`|>}\};#:nnMӕ\1Vᦱh%*㊭c<x6=؉	l#o/:]{<\\"$3̺e\\\Z՜+\\\\\U\\QY+\5\\\}\8%hwI\R<rSնAKx!J&\{\0@:rk-\\\l0\?\T\	\\nyP(A\x[\\\eE]Y(\\\~\2\[\ZJ\r \\cNG\0Pix\[fe%4,wx\\\Q qHtꇬ昳}\r\ִhY\^\]\hK<\aR7^\\L\\b׵\o&\\Z7nO\Ԓ\n(Zl\xlYAcYO:Lyŋ$\9\p@%#\uU/\\Z{\\n\\]?iV\M|y\Z.	Y1v9jteo~Զ\\\W!t[[)\\\)5	\\al:\0\긵Y8ډ\Z\7\\\A\:[f9Gt=&{\nJ\\#@BIL!k8nC\Cͨ\؃}au\\H[\n϶9	\7ql\	\Sɠ\m,\hVj\r\fڤ\+Cm/P\\$ⶋv\\݊;	\N\\Pz& f&\rA\"gQ\	\\\u\Z)\$\mOmp<B6!V\`?\6ǂlA럘bw\Z \\"\m\"\/B>ݙhS\h\	x㈅FM\3\-52p\\\o}|f0A\ͧ\x	\\\.\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1734,'2018-05-20 15:32:02',1,'ezpages.php','page=1&action=update','24.72.164.167',0,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\yT\2a{f{c>I\\'\V\ԟ?~\\M\\ڹ\\[S4\w&Uٚ\ʢ޵?TL0\"-\2֧T׹nt\֟F\OuY5ʊg\,5|ɟ:OC\˲qC\M|Jz\t_~wx\ɳh\|n\\\^%\?\&AҌX},\\\JW\\ʹtQ`|Of~sa\}:W\6MY\M\{tUI\:3Uͳ6\}\^d\mS#u~f];l|\͏\?\\\\۲Z\庝\r\f\w{gz^_^z?V;\_\\\\__Rӷ\2\\wov\\mި}vcE\\\uTWz۪h\\O\/\\*fY5\3\\!\~.ۥ2\P$\MC\,Zy˘\\\0wժ2uRe3Sfa\Ҏ\nFetxB72Z\\rOr9\\nbZ-ۺQKc\ZՔjf\NC\,\%\R!7\2\RWwg2\wjk\8I\\"+N8)417\*\U\Rj\\	ˀ\bx\;<B\ayon\ܮ\\n\[ej\Z~\_<D\\r\2\\1\\?\0\l\:iZ\\`*d\sF1<QKpO`ʭ\iYG\\8`pCײ:m\ZNc\0N]_YU(dmY#҈7?\\,\*37\]|\\\_ž-\\xJ\N\\\g\No?\7̺v6i]+\X\naƌ,>Ʌ;\\c{pOONw\]3>Rg\\7#>2h\.g\ZsT\n\.\Z{E\Kʘ^\Vej9@r\n7\,>K\#\v\"\\\\#kS\\\*}\%%\\@J\Z6#AƖ\2*\x\\ltIWuy[abaF\ae\XѾ\?ڙp>G d[S\Vz jAedGE\3 \Dz\\\9qZ8Fށi\(Y+h	\\\DǕN\aSTL\\0\VDXK\ \)fB|Sj\Z\\{ZiPl	g\Q\d\C<&\$\x\I[\W2\(3`\\7\/\廷/\\z\pr\}\pw\΅\\\\\\zo<NG\w^ߜ\(o?M\v\L\\\xg\zס.\\>\E\\俷:$kPz:5`;w\ԃ UY#\Y7\Cw/3yn:g\e^(\aY},-\6Yx\\=`1\'HhLA2(\p\2\\enAoٿ\Z!9uV1\\ul;`nDy[\\pi\\"&PAB~, ^\\\dIN\\5P\d·=e$}\i\\\{\:/6CDW\0\0\T{\Z QB	1A\%tfŒ!IY\_D\'CT6\0j\Zطz\j\n0en0\R?\6\zP\\tV7\\nf%m>Qa\\kC3ϳF*\L?\Z\2#\,nAȵ-gL2 \'Ӽ*4\\L$p6uO\\\4q1L\pN}\\@\ny\0\}598:8QFiq>ږգ:*\o*x?x(5%ݨl\\\\\D\Z\2\\2\\0f\sE칐-WlO\Ϯ?>S\\ntx_ni\\+\t\5o=\\I|>BiY]]z{~W\ūW璘A\_NI\˷-\\\x\;\\\\[qLbVemBLLUQ\\\~G\'4k\0\\'i\\\0\\ʬ5Ǿ7uJ]=uH\\nmA\-Dm9w1\Rq~\\\xe@g\CY\.\Z\rԞc\-\βD\\C1A\0y\p\)4\\9H^\@i\\rQ*]mKnMh\J\zVeI\62jX\,A!2Tw6rڠf\& 1\"\Z0\{\"hl,ѯÇY8\QĻ 6}j8QlG=Ȇ-\\"d}h8]\o\Z\V\C6J{i\5o4}y	Zжc2g\\\Qf\\0/\X\;,	_e\^<\lW j*4=|N,\ﴝ\\\M\{5l{&^N\\\N]~Κ0\</mS\\\]<Bvz͐\\\ع\l9>x\|\&G\C;``(&\y\;1K^Vt8:m\r\Z\G6\\\55{l\\rP`dQ2][g\w䃮V́!˶\0s\\ֿ\\0B}oG7\\j~/VR\_)\X\"\.A\\W.S\`\\*p-\x*b\\{5\ra!\\<9_!0fk	\y۟\h\'5\􀼬1\\܂ޮ\{0Ԁ9A^L\\\g@ܶs@AO;\\8\O_3cfC\ЦZ8F\/Y#\X˰%<\#?KϽ\0\N8\߰K6!910tV\EC[Р7Q&G2\l+R#<\<\\5-޷ \[S\'ˣ\aAI?\ٌu\V3\\\i\rB\K!dXȰO(mյ<Ξ\G,\\r[n=\nN\Q}]-\r?}Xd9\0\ \\2k#DIr!\^|d=&\\*u>rF\\n\\\)\}E\/CwDi$\\׋H\\\"\\\\i,.dP/5=61\1y\Y\w\\\\t\\F;[6>!K;\0l\}Pµ\p:\J8$\\5\G\aւ\Jc\G\:\8\\;`~}E\cRq\ÂEy\0\~_\s\V{##a^\0_7}hA=\\\aGl7]+xeČp\\) $śahQV0E0<bwZb2`$[U\\O\0.u\Z}\v؈\a2\)\X`\2\\'\r\;n\\,ɾ\֤tf:<޻C\aj\]\LA\f\t\0\k}#\'FKDL\\si\n^c*\\*\0Lo\\\\9ʪ\\/1b\;]UH4/\>6*j\Fįb\(\j\Z	5%\Ϗ}z	}\E\\L{\'\\\	A9]pboA]*N?0Lr\ft\7\\ڧw(߈\QpVcSޝԩvU\\{^.\@\Ij<y\4\\v\HC\2Nb\	\\/ FuVO,m\5\9\"\c\3;\\\\\\\؞<GJr\\8Щo=vgE\~ʙsʹWswJ7\c]\\lk]cnlb$wa\Ze{\ kSl\p~\\/\$\-}\'\p\NøG^	b.\{N܊+Ҭ\NhJw\\0{\\0	\6I2D`o@A\LI$(\\D\x=fI	ÔIҮPX\&\\n#`Z\0\p,9\ui\02\-\\<؁Q\3n\._;3._\r&$C\}k\d\r\M\\e\"0S8P4\\\\.6bӈ\\s\\"]4\^q:yn:\uٞY_\7N\C]\\\\C߽m{\kڲs;m;pח\	h\ns~\SSހ\X\PKz\\l\r\Z\z|\\SdE0IhM@+L\\kJ/R庼h\*O1KQe\]gdSO\:&ǭw6C\{c4\\A;\%dɇj*a\C\q\\r׊3\\GnsP 9R\\׵\0׈z/\\z5\q\</\\K\\*\\\s T\AjQaPby!eQ嗐g;L%ި\fnZ\,g|\a\r@\x`\n\\D(\tqVGr\'\\\p=·h==\1mAB\\ntEjf\1v጑ڵ\n)fe:$nv.\Ai5\\dFg~<ASmAGs\{\CwFlr\>sĥ]@\\\C2d%d\jG`\0,c]z%\3uM|s\=m\\HR\\o.\	\#`<\ef%q%Wpd\n;>\(,#I\rG(F{\ l^\G!ʂ×!\lj`\n\M=\nMP+y(:Aˢ2D\m\>\\Oa\\\rC\I?zʲ_e)U81$Xjؖݏ\|\h	T/*cf%\,<\\\0K\ZJ#cq)\-2(bLr27\\6B\\W\PJecHuQ2\\}b\Ļu	n\"1\0Οx\\>S0dv>\IIM\\\!\N&p_\wXVnEU];PĞrQY#\H_F]\>\*=H}\V\Abab,<㻩\?TX\)|/q\MNK\"\TH;]UK&\\g$\\h,!\ŨP\I\We0&ZQ\\YZI\\nP|\KXD\:{\$8Ep\Q\\\ps>\8\:\9N\\\HO\\qd\γ=:\n\\>< \	~1t0\\c;1<B\\0>	R&Db=B\\\Q\rM8`\'oyc\nX\0^e\u\Y\A\\s\\0s$,\r\\r`\ZC$T\E\\ĸyi\L9b[/6sXrn\\\\U>hⓀ\,8gͲP\KcE^\\i\k\FpBLLE!L{\l,(Dm\Sث\\lye$~C\犋\WQ\ԅ\rDg`\44>ӂ\9<\\(Mg\r\2\\H\i\\\j\\?@\rB:*BDSyƪd5~\n4\n}\\\so\wd\(`</0uN\\5f\\Z4$E\7udQ\\#^\JUe[cx\H\/QE`RIPi+8\Sd!S$[<*yn((\0U\H\-`E>\&m\"Ϣ\Jw\\;\7ql#?\%3)~$y\xrU¡j<\n,Y:VnT%6Us.3Z\n\*i@\5*P2<\Һo\'k\%\0o\?\c7D\:\W:nQzfE-r0Ӄ_J\	o|[S/P\ES=z)\\\n]\\sL\S\Z*<k%0\û\0ד\fi\\nY\jWڊ\J19\/\\`\\\nV;-`\rW=ڕ\I7A*b:yПO)\\\\ZyÐHV,,͛E D\r# \.\H`C\FT\\ȉ\\\'S\c\r\Ɣc?Uh\\\\\<+Sڸ֒ݹL,kH5\e%E\\i\\\\#\\^\D5EU\~/Q\j\[f_-xNLǬQ\\u2`mN\ߟP\MuQ;\r^rD\َ36߾}\\\p\n\7I\y/4\Zχ\\\i\乭}\t76\.k\SP]Dtw\'H\n`	Cí\Y\;T<?\\n$\<,\9ה>(>5R2\\feu\.n\!C#\\\d\*kocf\;h\䲾\\\]s*T\@p 9\Н.QbA]\C\=w5\3ffrىc\֪N=vRWSy#bN}L/N钦A\ή\$U2\\FPH\4X(5\Z;9;	#E͍eV\'B0\0\#\\\ZsX\0LD>~.n+{Y\|\n:PdH5 LO$:1@]c\{\\\x\nSvaE\i4\\Ǣ{\mS.5\s0xO\]Q&\<ty9.-]5C_\\d\19~\\d[\\F邒\ i>\\~Jٟx\h`RZƹQѳV\\\K]7š\&\N\Xq\0<ޏdbA**Ϻ \\^RS(PS͇T4\\|<c\\ZL^ [\0\O$_oKw\JX2\\b\\r\8\K)\ѱQ\rSDΝ\A:K\\)[\\\ \rs}\}C.w\rHɮE\\l{U\\\n\(He\G\G\\v;AF,R\\U\\\B\;5=H\Xw.X8w)\1\U\\n\<D*$zO\xT\)\\\\:y!V\G2,(\r\p#\rg\z\\Wy\\@\\?`HX\0F6qo\-{jlD+L;4\9oΊ5ZP\RgIe88󮿔$pe\\@ѫ)9\}\\\\9Ŭceok\4t\2eL&\pbN4ڴ?0OR/Ǝށ<\\.	$\L\\{ewc#0g\G.TC\Ю0\N+\\0!ɶ\$\\wg\4\\\\@\ex0\"\"j\\Ҧ\\n}к\J69$kj\]\,ԗ*mٶ\\r2n8!l}\\\\W8\|f,\Dut^`P\gGm\Z\IsN\]0*Auh\j\$7h\0ë+\\o讉\.7$tUE4aqhc\nCjO9܏\n\\a\%b$$|\'`6\o\*cM8Q7>/N(ξ3\j0kK_#\o\nr$\'	`Iñ\+`\oust!_\\ruZ&HX#ӖGBl\􁗊1ÊN\Q\|\\*z}v~5\g\f\\V\'^\\\ةgI\ 4Z\"b,\0\Y\Sr\\ZA+v\r^\{7X].\@-4Y\! N$?=\\\pEE>A\^%O\'7\%\\r\\\+)x\NS߂UM^lO\\r9x\MB>\\$Po[7@j#=Z\Bp4E8_-Muk0\\\#\L\%\\\J	Bږ\BiVG;IE\\9\@\nӛjђ\ZmuVn\ݧ\:c~r5G!\nIpn^=a\\&\?a6\;qsvԦ\u.\\g\\1!$\㤋:\^c]31Ic\%6rm\e%\\\[\B˛̤\C!ī~fAX\\MgA0\1k\ѢWHKaDuRŋ\!=Dk2zB/t<(\}*S\4\ٚg<\\Es_Es\\d\&?9n=QsDE\.B,Kf&n\\1\+1h0j;$voL(\M\\\l/K\<:79l\mV/OI8>\BR\kL\X$̻\[~\T`K\\:K[\X 1kϬubdM\\:_1ۼ\e\\۔Zx\n\\nպW\\\壍\$yɲu(\\F]\%^jl\s\a\1S\69DPj@weyG}T\\Z|q[h\X	yp%FNCN\c\rBmt\"=\\\f\?3\s\\X\Z\0´~>O+\?d`\\\o=\}Wy)OʿYJ~ |yx\3)gQ|r0ƈ+Luev[ܔ+zyt|bՄoяfg\0\7XFy\nk\k\n\\"tب\iI\\A_W3\\/#\;CŇ\\"\n6xٹˊG<&\rv>VOm\\ݜ]iǰ=|j\Oy\uz\"\bѝ?Ne?n/^ő\-\Zbn\-\\ȏ9~q|]\m\[ʙzŮ[iЕ{z\1\0|\\",g?\೭}\Lѵ8.;T\歚L`-\ھ\\SZF2u1h67?\'\no{G\·Sxq\ȝ\p/[\̣\\\C廃\\\_GNGp<0\<8ב\q\\\v\/`#拜\n\w0\\/UXm\6`\[+oi\\f/\K\\Gf_/~\[=O\ͫkѰ;t5?b q8x4]FRt\r\Z\\h6`\]\\0;y\\\z\\$r-JSu\Pt-ok	ˈ\	\J8	*$k~!_\\p⻱ZwK\:\\\˔\\Hd&KV5;}/HSe\g\\\\P+f\󀄾geq\[C4\8^!u#\J3a&`() &\,\h!\\b\u\\4Rxm\"~\\AS;\mS9\r5V\+1#\'\\.ۼ\rh8%8	݂k\\\^\\[qE\a\\\\ql^\*C\[\\*ؠ)ǹIzHͥO\u\ɀ{\\ǽ\M\Q;ҟf\iu)|\17\\h\\G6\־߳6E\tqevsM\zRWX\wrlrde)q\0\|t\Z.4a8\W\vzND\\h\\݉d\\n_\\Ks\c\0\^]k\RE|gWhe]Cf*\p9莲tkR\dlB/g]\$NFv-q0M_\\\oC\\'¤Oq\r%dNН\;k\ۤ\ؠ\Cۓe(\\F\[G\@L\'H3\\\\z2\*\n\r\RGֵȕQ._8\\z)\Z :\^)0p	_K껩A^=)\\t\B.賹{_ph\s=\)E\MӸo\gr5\0\\"!\'\_Be{&X9G9\\Zq\ \\\\\o\:]<կ_\\ꦦ!+#sJ\\Y\e\\\'~SM!\\$|@\ \P#a	De\I\P\{p\ЉY	\0_4\WMpRjJWHS\8uPв\5ܖ~j\8h\zÞ>=F\.\\C+&\I\\ިM}\\\"$T\?#?K@g!^\U\\u|y\q\\m\^~\\} \nY\d\U\\Mq\xtېuì\\0S\\\5m\V3t\)N	\7/\\\ӣu|\JVY\,+\\\Z\\\G\A\sNދAk<\HN\c.N]Ӂ؁iDA&z\}\/\\˹\z&d\l\}\;\\F\<\E\ɪsMk.\41! |\ny\BYâ6kmYp\e\\\6\3<l|V\\\\&_Z/\\\cSW\э{$i磌tad4e\o\=r\Q{e\PAi\k\x\n \y\;xo&T\r\\x\j*\N98K\օ\'\0\e?\n\6|f3߄{]oІ|7=5\\0kf\x\O\)ܡ\jߩQ,貜5\\ϣi\7ڪ\7au\iQ}Qu#4n\	h\n	Fs`|>}\};#:nnMӕ\1Vᦱh%*㊭c<x6=؉	l#o/:]{<\\"$3̺e\\\Z՜+\\\\\U\\QY+\5\\\}\8%hwI\R<rSնAKx!J&\{\0@:rk-\\\l0\?\T\	\\nyP(A\x[\\\eE]Y(\\\~\2\[\ZJ\r \\cNG\0Pix\[fe%4,wx\\\Q qHtꇬ昳}\r\ִhY\^\]\hK<\aR7^\\L\\b׵\o&\\Z7nO\Ԓ\n(Zl\xlYAcYO:Lyŋ$\9\p@%#\uU/\\Z{\\n\\]?iV\M|y\Z.	Y1v9jteo~Զ\\\W!t[[)\\\)5	\\al:\0\긵Y8ډ\Z\7\\\A\:[f9Gt=&{\nJ\\#@BIL!k8nC\Cͨ\؃}au\\H[\n϶9	\7ql\	\Sɠ\m,\hVj\r\fڤ\+Cm/P\\$ⶋv\\݊;	\N\\Pz& f&\rA\"gQ\	\\\u\Z)\$\mOmp<B6!V\`?\6ǂlA럘bw\Z \\"\m\"\/B>ݙhS\h\	x㈅FM\3\-52p\\\o}|f0A\ͧ\x	\\\.\','EZ-Page with ID 10 updated.','info'),(1735,'2018-05-20 15:32:03',1,'ezpages.php','page=1&ezID=10','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1736,'2018-05-20 15:32:03',1,'ezpages.php','page=1&ezID=10','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1737,'2018-05-20 15:33:00',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1738,'2018-05-20 15:33:00',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1739,'2018-05-20 15:33:07',1,'layout_controller.php','cID=147','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1740,'2018-05-20 15:33:08',1,'layout_controller.php','cID=147','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1741,'2018-05-20 15:33:11',1,'layout_controller.php','cID=147&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(1742,'2018-05-20 15:33:11',1,'layout_controller.php','cID=147&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1743,'2018-05-20 15:33:38',1,'layout_controller.php','cID=147&action=save&layout_box_name=more_information.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-\\/\\K\IŪl)BH8#,_R\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(1744,'2018-05-20 15:33:39',1,'layout_controller.php','cID=147&action=save&layout_box_name=more_information.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-\\/\\K\IŪl)BH8#,_R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1745,'2018-05-20 15:33:39',1,'layout_controller.php','cID=147','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1746,'2018-05-20 15:33:40',1,'layout_controller.php','cID=147','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1747,'2018-05-20 15:34:02',1,'layout_controller.php','cID=147&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(1748,'2018-05-20 15:34:03',1,'layout_controller.php','cID=147&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1749,'2018-05-20 15:34:18',1,'layout_controller.php','cID=147&action=save&layout_box_name=more_information.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\\p\\g\\bU\0dwqF~9X273/<3$lu-\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(1750,'2018-05-20 15:34:19',1,'layout_controller.php','cID=147&action=save&layout_box_name=more_information.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\\p\\g\\bU\0dwqF~9X273/<3$lu-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1751,'2018-05-20 15:34:19',1,'layout_controller.php','cID=147','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1752,'2018-05-20 15:34:20',1,'layout_controller.php','cID=147','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1753,'2018-05-20 15:34:26',1,'layout_controller.php','cID=140&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(1754,'2018-05-20 15:34:26',1,'layout_controller.php','cID=140&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1755,'2018-05-20 15:34:47',1,'layout_controller.php','cID=140&action=save&layout_box_name=ezpages.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\\t\rqI\g\\\)ۈP_\\̋/\L)\\0\[\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(1756,'2018-05-20 15:34:47',1,'layout_controller.php','cID=140&action=save&layout_box_name=ezpages.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\\t\rqI\g\\\)ۈP_\\̋/\L)\\0\[\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1757,'2018-05-20 15:34:47',1,'layout_controller.php','cID=140','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1758,'2018-05-20 15:34:48',1,'layout_controller.php','cID=140','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1759,'2018-05-20 15:36:39',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1760,'2018-05-20 15:36:39',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1761,'2018-05-20 15:36:49',1,'ezpages.php','ezID=13&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1762,'2018-05-20 15:36:49',1,'ezpages.php','ezID=13&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1763,'2018-05-20 15:37:08',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'X\o\6W?)\\+!\8\hΐ\Y%)g\EٴM\\Kc\}ǏwT\PP|r=\[f8E\|\0)\7&~jNeME*hL\E\o\Tk\$ڀitZRȩr~jL*\^\t%_\t\~u\\R\\tk#4+6\d \'v}(JS\\Wқ\"\\l\}*\\oqYN\nr\\l\\wؐ\\'ƥ>^ 뿖Ҙz9]N۶M&\dʗ/D.\?G2\\\SRE\8\\\I!7ͩ&\(\MJÙg\\;\\uqG\_3腮gh\\n4\^\\\M\\\P%*%Tdj\\؆qM\0SGÑA\ۭ\\\&\\r\y\\L\(\\Zcp0\<A۟\Yڣ\Zr\	 4hupw\\\\nc/`M͖\JPy\\\a$\'Y$F\\F{TlWv1T_b\I	\\\Vz-y]QFӦ:[tWeo\r?\nr\T@\\\:e\\(\\;/\"18r5\	\\\YԐ\0]%%4o\\Kΰ\n8\'rM\Q\jDbp/R/AY\dU\\y#`XW\\eML=ꏪ\0\v\\\1yJ\	\\f\nֆ<8b5#S\2KFƥ\\_DE\\&7 \lz\'	S0\5%opdtUn\~xp}R\"~\\Z\\#::Ԑ.\rfwߧӉ]H\.I\l?\A)\\pe-j{\r9E\ߕИ:`\\0W\Փ[,v\⢽+\\n\ n=\3<Ӭ\b}\\r\+\\\Zh;n8Z\jݟ\"\t}\=@o\\:FHJc>xx\0~;TYp\\(2x}\\\z9lI\bD\\\'q\\Ҩ\\\\r4DH2Z\v\l9\r\,e/\/\nzes?̺}>Bw\nooK\µ\\m\I_S}\dDX\0|lV\~#Q=M>MQ\o\)}\J','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1764,'2018-05-20 15:37:08',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary 'X\o\6W?)\\+!\8\hΐ\Y%)g\EٴM\\Kc\}ǏwT\PP|r=\[f8E\|\0)\7&~jNeME*hL\E\o\Tk\$ڀitZRȩr~jL*\^\t%_\t\~u\\R\\tk#4+6\d \'v}(JS\\Wқ\"\\l\}*\\oqYN\nr\\l\\wؐ\\'ƥ>^ 뿖Ҙz9]N۶M&\dʗ/D.\?G2\\\SRE\8\\\I!7ͩ&\(\MJÙg\\;\\uqG\_3腮gh\\n4\^\\\M\\\P%*%Tdj\\؆qM\0SGÑA\ۭ\\\&\\r\y\\L\(\\Zcp0\<A۟\Yڣ\Zr\	 4hupw\\\\nc/`M͖\JPy\\\a$\'Y$F\\F{TlWv1T_b\I	\\\Vz-y]QFӦ:[tWeo\r?\nr\T@\\\:e\\(\\;/\"18r5\	\\\YԐ\0]%%4o\\Kΰ\n8\'rM\Q\jDbp/R/AY\dU\\y#`XW\\eML=ꏪ\0\v\\\1yJ\	\\f\nֆ<8b5#S\2KFƥ\\_DE\\&7 \lz\'	S0\5%opdtUn\~xp}R\"~\\Z\\#::Ԑ.\rfwߧӉ]H\.I\l?\A)\\pe-j{\r9E\ߕИ:`\\0W\Փ[,v\⢽+\\n\ n=\3<Ӭ\b}\\r\+\\\Zh;n8Z\jݟ\"\t}\=@o\\:FHJc>xx\0~;TYp\\(2x}\\\z9lI\bD\\\'q\\Ҩ\\\\r4DH2Z\v\l9\r\,e/\/\nzes?̺}>Bw\nooK\µ\\m\I_S}\dDX\0|lV\~#Q=M>MQ\o\)}\J','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1765,'2018-05-20 15:37:08',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'X\o\6W?)\\+!\8\hΐ\Y%)g\EٴM\\Kc\}ǏwT\PP|r=\[f8E\|\0)\7&~jNeME*hL\E\o\Tk\$ڀitZRȩr~jL*\^\t%_\t\~u\\R\\tk#4+6\d \'v}(JS\\Wқ\"\\l\}*\\oqYN\nr\\l\\wؐ\\'ƥ>^ 뿖Ҙz9]N۶M&\dʗ/D.\?G2\\\SRE\8\\\I!7ͩ&\(\MJÙg\\;\\uqG\_3腮gh\\n4\^\\\M\\\P%*%Tdj\\؆qM\0SGÑA\ۭ\\\&\\r\y\\L\(\\Zcp0\<A۟\Yڣ\Zr\	 4hupw\\\\nc/`M͖\JPy\\\a$\'Y$F\\F{TlWv1T_b\I	\\\Vz-y]QFӦ:[tWeo\r?\nr\T@\\\:e\\(\\;/\"18r5\	\\\YԐ\0]%%4o\\Kΰ\n8\'rM\Q\jDbp/R/AY\dU\\y#`XW\\eML=ꏪ\0\v\\\1yJ\	\\f\nֆ<8b5#S\2KFƥ\\_DE\\&7 \lz\'	S0\5%opdtUn\~xp}R\"~\\Z\\#::Ԑ.\rfwߧӉ]H\.I\l?\A)\\pe-j{\r9E\ߕИ:`\\0W\Փ[,v\⢽+\\n\ n=\3<Ӭ\b}\\r\+\\\Zh;n8Z\jݟ\"\t}\=@o\\:FHJc>xx\0~;TYp\\(2x}\\\z9lI\bD\\\'q\\Ҩ\\\\r4DH2Z\v\l9\r\,e/\/\nzes?̺}>Bw\nooK\µ\\m\I_S}\dDX\0|lV\~#Q=M>MQ\o\)}\J','EZ-Page with ID 13 updated.','info'),(1766,'2018-05-20 15:37:09',1,'ezpages.php','ezID=13','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1767,'2018-05-20 15:37:09',1,'ezpages.php','ezID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1768,'2018-05-20 15:37:52',1,'ezpages.php','page=1&ezID=12','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1769,'2018-05-20 15:37:52',1,'ezpages.php','ezID=12&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1770,'2018-05-20 15:37:52',1,'ezpages.php','page=1&ezID=12','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1771,'2018-05-20 15:37:52',1,'ezpages.php','ezID=12&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1772,'2018-05-20 15:38:05',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'Vێ5\J\^R ZV\n$  F\Z\\i\'ne&\홝\\k\UN\\W\s\Ys\\\զ\͎q\[\\ӗ\n\\\h	GXߞ>ٴK\U.i72Y\\Ry\\yM\\\n&9l^!䳋\uz\'4˻\\\\\{_\ޞK2\\\2\8_\\\'\w۫\r^oo7ă=(\`\\z}ü\*\e+GkKwϾ\nb\\\7\no\x\\~\.\$Rސj\ifO:0\,6\;RA\<\\Z\FI\̑]&za\k\\koY2*Ke҂E\.\z\J++\0\n#%`\\oЇ\L9IJ\\\%#7ԤrE;I#\'3\'@&abg4/\Р#UsFaf81>\%zCp9ݨBC	}ǭ\\\4G\\cP1<vES<u9\N\ۛ\a\\\n>Q_P\*\DgXZEs+\\Xg\~4\!\";\l^7\Nf\1:\,Zp\H$}	+xZ\S55:\\FK\\P\VL\+yKd/J\n\\5@S$H\k$EYiamGU|X,ȣ\Z|\1&\6ٖ$\\\MY#\Oz\I&([<G{FRküm`\\\_`䑇A>01T V\\\\~!\nEGա <\!LlSr\U΀\\\mŭd>,mɶ<\1v!uK\_lTF\+D?\՜\\O\DT\KZddl\\NRјV>3\\\A`\oE^Q\\\\kZf\5\\^\G|/&\5\\\\Lzuμb$σ\$\^;\w\GC:ɗ\Ὴ]\x_ǌ\\%7L{քdtJ#K7t\h%|V\5R[yN\%L@\:\:ۍ\f1;q\\\\2;x\\=9VS0s\JO\C\6`#$		/<&2sEe\V\j\:]B=BŴHY~~+!+Jj^\\WVtn/j:iਘJQӘ*;?L5\ԟR;\ZH[}n\#ȱ\\v\0݂|\l}TN%:\\\\ֹ\\\-b/NE-EpX6Fy	\\\W6}dO\J\\_\d%\0忾\\N\\?','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1773,'2018-05-20 15:38:05',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary 'Vێ5\J\^R ZV\n$  F\Z\\i\'ne&\홝\\k\UN\\W\s\Ys\\\զ\͎q\[\\ӗ\n\\\h	GXߞ>ٴK\U.i72Y\\Ry\\yM\\\n&9l^!䳋\uz\'4˻\\\\\{_\ޞK2\\\2\8_\\\'\w۫\r^oo7ă=(\`\\z}ü\*\e+GkKwϾ\nb\\\7\no\x\\~\.\$Rސj\ifO:0\,6\;RA\<\\Z\FI\̑]&za\k\\koY2*Ke҂E\.\z\J++\0\n#%`\\oЇ\L9IJ\\\%#7ԤrE;I#\'3\'@&abg4/\Р#UsFaf81>\%zCp9ݨBC	}ǭ\\\4G\\cP1<vES<u9\N\ۛ\a\\\n>Q_P\*\DgXZEs+\\Xg\~4\!\";\l^7\Nf\1:\,Zp\H$}	+xZ\S55:\\FK\\P\VL\+yKd/J\n\\5@S$H\k$EYiamGU|X,ȣ\Z|\1&\6ٖ$\\\MY#\Oz\I&([<G{FRküm`\\\_`䑇A>01T V\\\\~!\nEGա <\!LlSr\U΀\\\mŭd>,mɶ<\1v!uK\_lTF\+D?\՜\\O\DT\KZddl\\NRјV>3\\\A`\oE^Q\\\\kZf\5\\^\G|/&\5\\\\Lzuμb$σ\$\^;\w\GC:ɗ\Ὴ]\x_ǌ\\%7L{քdtJ#K7t\h%|V\5R[yN\%L@\:\:ۍ\f1;q\\\\2;x\\=9VS0s\JO\C\6`#$		/<&2sEe\V\j\:]B=BŴHY~~+!+Jj^\\WVtn/j:iਘJQӘ*;?L5\ԟR;\ZH[}n\#ȱ\\v\0݂|\l}TN%:\\\\ֹ\\\-b/NE-EpX6Fy	\\\W6}dO\J\\_\d%\0忾\\N\\?','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1774,'2018-05-20 15:38:05',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'Vێ5\J\^R ZV\n$  F\Z\\i\'ne&\홝\\k\UN\\W\s\Ys\\\զ\͎q\[\\ӗ\n\\\h	GXߞ>ٴK\U.i72Y\\Ry\\yM\\\n&9l^!䳋\uz\'4˻\\\\\{_\ޞK2\\\2\8_\\\'\w۫\r^oo7ă=(\`\\z}ü\*\e+GkKwϾ\nb\\\7\no\x\\~\.\$Rސj\ifO:0\,6\;RA\<\\Z\FI\̑]&za\k\\koY2*Ke҂E\.\z\J++\0\n#%`\\oЇ\L9IJ\\\%#7ԤrE;I#\'3\'@&abg4/\Р#UsFaf81>\%zCp9ݨBC	}ǭ\\\4G\\cP1<vES<u9\N\ۛ\a\\\n>Q_P\*\DgXZEs+\\Xg\~4\!\";\l^7\Nf\1:\,Zp\H$}	+xZ\S55:\\FK\\P\VL\+yKd/J\n\\5@S$H\k$EYiamGU|X,ȣ\Z|\1&\6ٖ$\\\MY#\Oz\I&([<G{FRküm`\\\_`䑇A>01T V\\\\~!\nEGա <\!LlSr\U΀\\\mŭd>,mɶ<\1v!uK\_lTF\+D?\՜\\O\DT\KZddl\\NRјV>3\\\A`\oE^Q\\\\kZf\5\\^\G|/&\5\\\\Lzuμb$σ\$\^;\w\GC:ɗ\Ὴ]\x_ǌ\\%7L{քdtJ#K7t\h%|V\5R[yN\%L@\:\:ۍ\f1;q\\\\2;x\\=9VS0s\JO\C\6`#$		/<&2sEe\V\j\:]B=BŴHY~~+!+Jj^\\WVtn/j:iਘJQӘ*;?L5\ԟR;\ZH[}n\#ȱ\\v\0݂|\l}TN%:\\\\ֹ\\\-b/NE-EpX6Fy	\\\W6}dO\J\\_\d%\0忾\\N\\?','EZ-Page with ID 12 updated.','info'),(1775,'2018-05-20 15:38:05',1,'ezpages.php','ezID=12','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1776,'2018-05-20 15:38:06',1,'ezpages.php','ezID=12','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1777,'2018-05-20 15:38:15',1,'ezpages.php','page=1&ezID=11','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1778,'2018-05-20 15:38:15',1,'ezpages.php','ezID=11&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1779,'2018-05-20 15:38:15',1,'ezpages.php','page=1&ezID=11','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1780,'2018-05-20 15:38:15',1,'ezpages.php','ezID=11&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1781,'2018-05-20 15:38:29',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\]YoI+~Y	hl%G>K3]0UI\\*NՋ\GFU̲=1bVfdd\gk}k\Y\&Fs5^\fꝹms\deQۿ,צXY\)?\unݴǥѩ\w\c]V\ǲ\\g\,53N\O\G㋲l\?tS&^k_29t\X6cc>7Oiv\\\\\\\k e&|>\ffeFuS\^\DGӼR\o^\Zx\\\.\\\UVduSeUR\E\M\d,\\'Mu%&x𽮗Yq۔\H]\??<}xx#\Ok\\uV:\'n\\?\Ó/\\\١W/_V{\^\Ż\\__P72ܛo\\\]ިv}vce\\\uTWz۪h\\\z\P,Ϛi\x\\MqװvL?q\7ˬVn\2fg{@\}LT\\ԪY\Z\kЍgS\\ͳϴZuV\4)\\(8rI\}\,\%\R!7\2\JW\d\o\R\0)p0DV($pRhbnuU&&m6\\\O\xW\\&uN\'c\ܫU\$Q07ܺWt\01ۅNo++#J\\)\EQnO\# \2\Xrk2E}V\vz8I$oPꕬ~\Sb\\]V\Y>}SfG4\B6Ͳ\;20sQ\\\eP_\r&\&3v\><~xrt9\\Xfֵ&Mӌ\\n\\AǊ͘e\Gp\\\ݾ\\3\\\ót_\M\\w\XhWsS9\\Ď\W7Խ\n\r\"J\\;S\Ne\Du2 9̛\\\%q;ˀY\m\n\\\Ag\ڒ\h %\r\Wӑ @cKb\z2\|t6:Y`\:\բ\00z\@|Ѱ2jh\.\F\\\\\_8#w@2ԭ)o+^ZZAJY2ӣVUwǀ\^?bG^X\yy\8\RoA{aj\a\J\'a3TL\\\0\\DXK\ \)fB|Sj\Z\\{ZiPlg\Q\d\C<&\$\x\I[\W2\(3`\7\.\\\7\\\\hz\{p\\K\c\˗\\tt6z\\bGyiv~pz\}x/o&{S<\u)\v>}\P&չ\'Y\\9h\yf4\\\Z!\ͺ)\\ʠ5{Eɛp\9+(B@q{\r\0\$eiQ\\\\0\9EZeEc\nA!+\*sz\u\\\ɩYϮEe\s;\\',ڂƆ\O1:m\r\Z[`I\0R7\&KrG\|&\r\)#\;8H\b߉\O\E\\"\0!\\\\0AJ	.3{(Vi<`L\\%<\Zδ`P\\}VU)tV\|\+Ҍ<шX\p+௚LFG\\\n?k\rՋ\\.\\\Z7{kr\\\\"\ζ3\\삜\\@L\\\43\Dl\\=}k[\\\ 3N,2g:\W_\0*\0\\\\\㑊\XMφ]lQ`\|Oe΁\nޏ$J\gdI7\6tƮ̠s8*\"\\{.dD\Ó\OԿ\l\\@w\\?%\rOqL\]\]؞\\\c/v\\Ջ7U`|q\\\(\\"	5x}P/߾7oXjuY\.SUj\hp\hE3w\\)M\\Z@\\$h\46Mݱ\\^P\@yz$w\6\ORx\Θp\0e#k2L>.\ZԞG\	m}DgYd䡊L^a\M\$/Kw\\(Vض%ϊ\\[7\&4U\%\\=f5,jV \*]\;G9mPoA\@\BZ\rv\\4Z\WZ\J\'O\C\,\X\(\]>5y 6Ed\|d\>4[Vݮ󀎷mnYYC\\\4Tώ\7ɾPB\nh\1y\@v\(m\\g\\nM\~2PZhx/j+5\\\@\>\'V\w\N\\g&ɍ\\Z6=F\H\M\WpJXpS&\KD\0>\"f\\$j\\.x!;fHftSe\\s6<n>A[v.Z!\\0[\\\\r/@XK+`:E@Bආ\r\]\r\A\#\ux\k=v(0~\(\\s\;^Wk@\e[N\r\_\\0B}oG7\\j~/V\\M\_)\Y\"\.A\\WS.S\`\\*p-\x*b\\{3\ra!\'<9_!%\0\\\N\}\R\ZuvH^\@njnAo\\%{0Ԁ9A^LǇ@_\;&\	Щ%\PS\\3;	\\̘\0V&\"K67\2lG\e\\"\\\\\s\E,>xDN#7\M@|NLbr 5z\\4\\@dT鱌,ۊT\ٙ\'\O=2<Ow:GM-)\\\\xdP\Oy6g\i\L :yfZ\'\Eê\\\-`=2\S J[\%eu-\\\)Ac\Q\KrÖ[f\S0x\B`_lK\O\Y\=f`\v\\Z\\'FRnH\#Ջӿ\'}aCV@\G\\\?1\Y{\1@0a/ e\(D\z\=^$}59Ņ\Ɖ\w\!4xᳳ7&C;\qN\hg_¦\\'di\M*CN]	\<}\\9\Z9Xi,h\\guug^c=\o\ `_|;\D\FF*<D+xdig\\W\\\^\\Ȥ@Wp>\0\\MZ\(@d;x\d\\?#\M\\i>\FǮ 1#\\@v\nIfX$Zd\-L@\%Ϯ؝ք-,=c&V##K@i*(k+6\"\n\\\pJbD5\<ظmI\%D[65+\5)N>!\0) \\w3a:Rs?>̱z?\W[`&k\9\4V1ae\0&\\7\\GYe\\\\V1b\;]UH4/\>6*j\Fįb\(\j\Z	\r%\'\\'G>>\Pa\	v\\\ٔ.87\.P^&B\r}:Gj\\GC\ʯ\݋\(~38\)\NZ\\DRJd\\nH|[\f $Z<e\Z\nd!K`\`}HD1\\f\s\\n\F`[OP:+\'6i\Z\~x\\KA\\\`\\'\\\\\\\؝<ǜJr\\8Щo=v\E\~ʙsʹW9wJ7\c]\\lk]cnlb$\<5z\\\-A֦\0\.\|T\_0?<I\;V\Ɲø\^	b.\;N܊+Ҭ\NhJw\\0{\\\0	ѶI2D`\@A\LI$(\\D\x=fI	ÔIҮQX\&\\n#`Z\0\p*9\ui\02\-\\<؁Q\3n\._;7>_\r&$C}\d\r\m\\e\"0S8P4\䓳]l\ӧ)evdi\\tT\v\\\w;=Ceg\o~\\\w7\_}\\XO\`e\v\v\4//^\\\)$\'U,I\/@/\f\4Hta\\"`,\(r%V\.S+_B\"\uyѤUc\#qT\')\f-\Ȧ#D\yuL[\l\w\i\9\wKȒ\L´G>L;o^0\5e\'fz\^1(A&s^k\+`e/^\]jd\&y^\ru\\@P91Qբ \&qBʢ\0\/!\vJQ\\`ݴ+e\ Y\\\Z6O7jԉ\ZO-P(\\\NR\z\zz\"rc\b*\0\\\a\N\#k+R\ˀuH\8\\\\j%NȌ\s3\"\\Zx`n\*\\Z\1Ǉ:\\\\6}\+\ὧ6d\J\\\\"1\0lAY\N\J\"(K\\g\)\\{\\'.4\\\&4\'Fjy\\T+r\ s}K\ \w|\QXGp\:Q \AؼBD/C,\\\A{\\aI1\"{V9is_uREe]=\0\M}%\أ\ؓ\eD	T\\"S3pbH԰-;\|\h	T/*c\%\,<&S\\0K\ZJ#cq)\-2(bLr27\\6B\\W\PJecHMQ2\\}j\Ļu	n\"1\0Οz\\>S0dv9\IIM\\\!\N&p_埰܊4sl)w=Q\8\.R\Gd\=}U\\x\g,\\\\Xx\wS\O\\\c\!S_\\r\\\E\\'W?\\r:vtq\\'XL\\rI\\\Y\XBQ)\*0f*\K\`L,p,d3D]&&\&ݠ:$1u>Ip;\\\\\1\\}quT\s4\g䑞=\qd\γ=>\\>:$\)~1t0\\c;1<B\\0>	R&Db=B\\\B\pN6G\\\r\,\0t\`\1\ﳂ\\\\$\HXFd=Ȁ:tKJB%\\<\N\'II͔\A)FJa\\9w%w\\\\(\\\Ӻ!>	ػls\+\,+\0N4V\q\վў=qh\k\'\dTȴ\&ςB4\&~\ \;z+\\ΖqaYF2\7$s|%\\\8\\@/G@Hz\ML\3-؜\Cn*\tْ,\}!d6v\r^ \\\ *!O8EGq`JV>\F\Fu{\Hƍr\S\z\\?Y\m\\j[ACR\E\D9\y\<b\%n[gI[5ʚ\t\/2\Y*\%fK<Eb8E;œ\1g\+2SY\?o\f?Y\3mB\*,zpt\'o=C}\'6^r8\G +ǌ\'\%ƣ\[\0;j\FeZXbS50\Z\2c˯P\دfTy]%#`\Ƀ,vf^S?vCzL\\u\3#-Jl\uRjNx\ۂz*/\MV\Eמcb*\P\YVX\\\6K3ޗMvS\\"VB,\VV\y\-g\\\/Tp\\l	k\m\	\edUծ}(H	R\Ƀ|OA?9O\w\\D\neq\ei\(!\l0\0!vF\6OZ\GNdf>\"G\"_6AB۝.OEw\Ya\Ƶ\\\\\e`Yc\D!/+)~@Hf6o&Z)~	P;\:0z\sb:f\\3Y\\rmuj\zo\nځ4uXX\Ĕ&b\w\\\v=\\\r^HPQ\H\?&o\C$}Ѩ>l\r\'N\<&/l%,\\M1$EHwU\\"2;A:\tCM\\Zn\߄\\\&ثJ\'\\3l\P\H!\`UhN\%;\&i)QQ>\\e\\n/hOwͩ\\вR\\\n\O\`GFwDuvP\Ո\8%\Ud\'N\-\0\nη3ڨ^8\I]M午M:818K;\ZD\0V\\>/[A!	\"\`iN£z\\0\\\\4F57JFVY\0\\\00k\a0QD^\\r\\d\n*\By-~\"\Sր0=\~\t\\0u\#\	>NA\\q==\t\qcЎM\\\\\\vM\\\3\\H t\A|Iv&V\r\'\}6:lqJ~Pnt3)!d<3\$\nmsgj7\WBo|CL ӉJ\\0Py2/dbA**Ϻ \\^RS(PS͇T4\\|<c\\ZL^ [\0O$벤_m+w\JX2\b\\r\8\K)\ѱQ\rSDΝ\A:K\\)[\\\ \rs\\\J/%\]\\E\\l{U\}2f\nQJ\\؏0R\\\\wVpo>T{Y(\7֙wjzıV7,:,?8`\ܥt\Zւ\0VY\S2c+zB\=M\QӦ\C2_\ \[z*\\ʰТ4 Í4\k\UG_a䝌с|%4),\nl6)\\\g[\؈.{W*NiYvhsޜF\6Β>\q6q])I\O\z\XWS,s\-\\;\s0Y\>9.\\֮i\eeL&\pbN4ڴ?0OR/Ǝށ<\\.	$\L\\{ewc#0g\Ǿ.TC\Ю1\N+\\0!ɶ\$\\wg\4\\\\@\Ux0\"\"j\Ҧ\\n}Ц\J69$kj\]\,ԗ*mٶ\\r2n8!l}\ћW8W\|n{,\Dut^`P\gGm\IsN\]0*Aud\j\$7gh\0ë+\\o\nʮ$tUE4aqhc\nCjO9܏\n\\a\%b$$|\'`6\o\*cM8U79/΂(\X\r5\%\09؄E\X`0\Ǻ9:\\\G^-F$i\#!S7iK\z\\\aE\(u>zr\yi>ҿH;\Z3p`\{\nsst\TmB\Գ]o\r-_1a\\I?\)9\ss\rn\>\\uYmAA̒~\\q\"\I\/|+-u	R|(xz\e8ٽQ/=\`G]IA=}xĻ>ȵp\dˬhzSdcsbn\<c,o\\q6p\'zgܺR7\\B/2)\be[And*T/C87WHJԶ\ndM:\\0\N\-\\0ʖ69I-AK \\\jZ_\a\\<\15\\a+\;\k9\n95mUH:cp\<\\\	k?6	4a\ر\0\\\\CX6Mw)/H|?k75Q\r$-\']ԑ<\\횉Ic_,`m[(+9\\ފ\Z\d&-\$^3\\j\=\\)\]ݿ@\\_\#\l*^\Y\!bm\\[\:`|}AI\\\U\ ܤ\\\"\lP/2\=cuͩ\ۚ\0F\UqL\nY,s\PĠ\ڽ1\",7a3+,\r\\\ O,nY$<%\ `\Z\\+nHy1\\"\Zc9Њ0\no!>Sy#.1\.Y\nMcĬ=։56CKrd\~\lދ.\[\GpnSbj](V\)</2\\wU^\j6\%\WA\Jnp!	vxѪ.\EFx\L1\ \@Q\0\\_\\'\\\Z\\\\Zx@{\Jσg(-X\6\\trh\\S\v\6<͜\?O\Ұ!}ZcI$\\0>\\\\\`\#\sǏ\xR\\B\T\%1\ӓu<ϤE\\#0\\cԕ\msSez\\\ٺ	\\\!o6֍rq6\EH\Q-\pӒ\n\a_W3̛/#\;CŇ\\"\n6x޹ˊG<&\rv>Vm\\ݜ]m\'G=|l\y\uz\"\aѝ?Ne?/^ő\-\Zbn\-\\\ȏ9yvt]\m\ʙzŮ;YЕ{v\1\0|\\",g<\ೝ}\Lѵ8.;\nT\Na-\'ڽ\\cZF2u1h67G\no{G\\wSxq\Ƚ\p/w[\\\\6\C廃\\\_GNGp<0\<?;ב\q\\\v\/p+拜\n\w0\/vUX]\6`\[+oi\\\ \K\\Gf_/~\[=\\͋kѰ;t5?b q8x4]FR\t\r\Z\\%h6`\]\\0;}\\\z\\$r-JSu\Pt-o	ˈ\	\J8	*$k~&_\\r\p⻱\tK\&\\\˔\\Hd&KV5;}/HSe\\g\\\\P+\\󀄾\eq\[C4\8^!u#\J3a&`() &\,\h!\\b\u\\4Rxm*~\\AS;\mS9\r5V\+1#\'\樮ڼ\r`8%8	݂k\\\^\\[qE\a\\\\ql^\*C\[\\*ؠ)ǅIzDͥO\u\ɀ{\\ǽ\L\Q;ҟf\iu)|\17\\h\\G6\־߳6E7tqevM\zRWXn\wrlzle)q\0\|t\Z.4a8\W\vzNE\\h\\ݩd\\n_\\Ks\c\\0\^]k\RE|gWhe\@f*\p9莲tkR\dlB/g]\4NFv-q0M_\\\\B\\'´Oq%dN\]\;k\ۤ\ؠ\Ce(<d1ҷ>jdpf9Nf;elq	T>\ҥlj+]Fq9̷RAtpSR`\`.\w[{?B9\H<\M{TXM\<\ǅ\\.\g{\\i/\z\9R2q\'$L\\\P\jj^\EBNh\$\Lrr*\A\\ճ\\Suxկ_\\궦!+#sJ\\\\e\\G~SM!\Ѯ$G\ \P#a	De\I\P\{p\Љ[	\0_4\WMpRjJWHS\8uPв\5ܖ~j\8h\zN>=F\.\\C+&_H\\ިM}\2$T\?#?K@g!^\U\\u~y\q\\m\^~\\} \nY\d\U\\Mq\xtېuì\\0S\\\5m\V3t\S)N	\7/\\\Ӄu|\JVY\<+\\\Z\\\\A\sNދAk<\HN\.N\Ё؁iDE&z\{\/\\˅\z&d\l\}\;\\F\<\E\ѪsCr\\\\\\ibC@\E0򈅲Em6\ڲ\	\¹l\gxr\>+(\M^Ǧ\7\nGmHn\\G\\.ma\\ni0uː\{0庣ʌ\\7 =N;@\\w\L\Z\1P\Trp8){O\n{\&~\\rmLz\\0\	!ޠ\r:tnzj\\;a:#r\.:Hͨ nq;\S~C3\,ϾS6oY*\e9kk8|G7\\oS7oT\S\\\s\\0Gvi\F7mR\\\]m>wd}ngwFtB\lݚ\kc\Mc\fCKT\[%\ xlz\F\^tnxE~=\'Hgu\`ۍ)5~9EqW\39\n;#LW\#j\"jp\=pJ\\4>y2W\B[cmB&L\0$G\u\$\Z\5\\`\c\A |P\\!Z,ƫˊ*(5UQz\o\9\)Aeҷ5@Z\0j\\\K\\iXd\:\9@P\\7\V\Y\	g)8\#mh\ƻ\0Vy\ n(+\0=\F7k\:\0M\5n\Z%z-Pl\]-U{\\xlYAcYO:Ly͋$\9\p@#\wU/\Z{\\n\\\\?iV\M|y\Z.	Y1v9jteo~Զ\\\W!t[[)\\\)5	\\al:\0\긵Y8ډ\Z\7\\\A\:[e9Gt=&{\nJ\\#@BIL!k8nC\Cͨ\؃}au\\H[\n϶9	\7ql\	\Sɠ\m,\hV[j\r\fڦ\+Cm/P\\$ⶋv\\݊;	\N\\Pz& f!\rA\"gQ\	Ȝ\\u\Z)\$\mOmq<B6!V\`?\1ǂlA럘bw\Z \\"\m\"\/B>ݹhS\h\	x㈅FM\3\-52p\\\o}xfw0A\\Ƕ\x\\\.\/','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1782,'2018-05-20 15:38:30',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary '\]YoI+~Y	hl%G>K3]0UI\\*NՋ\GFU̲=1bVfdd\gk}k\Y\&Fs5^\fꝹms\deQۿ,צXY\)?\unݴǥѩ\w\c]V\ǲ\\g\,53N\O\G㋲l\?tS&^k_29t\X6cc>7Oiv\\\\\\\k e&|>\ffeFuS\^\DGӼR\o^\Zx\\\.\\\UVduSeUR\E\M\d,\\'Mu%&x𽮗Yq۔\H]\??<}xx#\Ok\\uV:\'n\\?\Ó/\\\١W/_V{\^\Ż\\__P72ܛo\\\]ިv}vce\\\uTWz۪h\\\z\P,Ϛi\x\\MqװvL?q\7ˬVn\2fg{@\}LT\\ԪY\Z\kЍgS\\ͳϴZuV\4)\\(8rI\}\,\%\R!7\2\JW\d\o\R\0)p0DV($pRhbnuU&&m6\\\O\xW\\&uN\'c\ܫU\$Q07ܺWt\01ۅNo++#J\\)\EQnO\# \2\Xrk2E}V\vz8I$oPꕬ~\Sb\\]V\Y>}SfG4\B6Ͳ\;20sQ\\\eP_\r&\&3v\><~xrt9\\Xfֵ&Mӌ\\n\\AǊ͘e\Gp\\\ݾ\\3\\\ót_\M\\w\XhWsS9\\Ď\W7Խ\n\r\"J\\;S\Ne\Du2 9̛\\\%q;ˀY\m\n\\\Ag\ڒ\h %\r\Wӑ @cKb\z2\|t6:Y`\:\բ\00z\@|Ѱ2jh\.\F\\\\\_8#w@2ԭ)o+^ZZAJY2ӣVUwǀ\^?bG^X\yy\8\RoA{aj\a\J\'a3TL\\\0\\DXK\ \)fB|Sj\Z\\{ZiPlg\Q\d\C<&\$\x\I[\W2\(3`\7\.\\\7\\\\hz\{p\\K\c\˗\\tt6z\\bGyiv~pz\}x/o&{S<\u)\v>}\P&չ\'Y\\9h\yf4\\\Z!\ͺ)\\ʠ5{Eɛp\9+(B@q{\r\0\$eiQ\\\\0\9EZeEc\nA!+\*sz\u\\\ɩYϮEe\s;\\',ڂƆ\O1:m\r\Z[`I\0R7\&KrG\|&\r\)#\;8H\b߉\O\E\\"\0!\\\\0AJ	.3{(Vi<`L\\%<\Zδ`P\\}VU)tV\|\+Ҍ<шX\p+௚LFG\\\n?k\rՋ\\.\\\Z7{kr\\\\"\ζ3\\삜\\@L\\\43\Dl\\=}k[\\\ 3N,2g:\W_\0*\0\\\\\㑊\XMφ]lQ`\|Oe΁\nޏ$J\gdI7\6tƮ̠s8*\"\\{.dD\Ó\OԿ\l\\@w\\?%\rOqL\]\]؞\\\c/v\\Ջ7U`|q\\\(\\"	5x}P/߾7oXjuY\.SUj\hp\hE3w\\)M\\Z@\\$h\46Mݱ\\^P\@yz$w\6\ORx\Θp\0e#k2L>.\ZԞG\	m}DgYd䡊L^a\M\$/Kw\\(Vض%ϊ\\[7\&4U\%\\=f5,jV \*]\;G9mPoA\@\BZ\rv\\4Z\WZ\J\'O\C\,\X\(\]>5y 6Ed\|d\>4[Vݮ󀎷mnYYC\\\4Tώ\7ɾPB\nh\1y\@v\(m\\g\\nM\~2PZhx/j+5\\\@\>\'V\w\N\\g&ɍ\\Z6=F\H\M\WpJXpS&\KD\0>\"f\\$j\\.x!;fHftSe\\s6<n>A[v.Z!\\0[\\\\r/@XK+`:E@Bආ\r\]\r\A\#\ux\k=v(0~\(\\s\;^Wk@\e[N\r\_\\0B}oG7\\j~/V\\M\_)\Y\"\.A\\WS.S\`\\*p-\x*b\\{3\ra!\'<9_!%\0\\\N\}\R\ZuvH^\@njnAo\\%{0Ԁ9A^LǇ@_\;&\	Щ%\PS\\3;	\\̘\0V&\"K67\2lG\e\\"\\\\\s\E,>xDN#7\M@|NLbr 5z\\4\\@dT鱌,ۊT\ٙ\'\O=2<Ow:GM-)\\\\xdP\Oy6g\i\L :yfZ\'\Eê\\\-`=2\S J[\%eu-\\\)Ac\Q\KrÖ[f\S0x\B`_lK\O\Y\=f`\v\\Z\\'FRnH\#Ջӿ\'}aCV@\G\\\?1\Y{\1@0a/ e\(D\z\=^$}59Ņ\Ɖ\w\!4xᳳ7&C;\qN\hg_¦\\'di\M*CN]	\<}\\9\Z9Xi,h\\guug^c=\o\ `_|;\D\FF*<D+xdig\\W\\\^\\Ȥ@Wp>\0\\MZ\(@d;x\d\\?#\M\\i>\FǮ 1#\\@v\nIfX$Zd\-L@\%Ϯ؝ք-,=c&V##K@i*(k+6\"\n\\\pJbD5\<ظmI\%D[65+\5)N>!\0) \\w3a:Rs?>̱z?\W[`&k\9\4V1ae\0&\\7\\GYe\\\\V1b\;]UH4/\>6*j\Fįb\(\j\Z	\r%\'\\'G>>\Pa\	v\\\ٔ.87\.P^&B\r}:Gj\\GC\ʯ\݋\(~38\)\NZ\\DRJd\\nH|[\f $Z<e\Z\nd!K`\`}HD1\\f\s\\n\F`[OP:+\'6i\Z\~x\\KA\\\`\\'\\\\\\\؝<ǜJr\\8Щo=v\E\~ʙsʹW9wJ7\c]\\lk]cnlb$\<5z\\\-A֦\0\.\|T\_0?<I\;V\Ɲø\^	b.\;N܊+Ҭ\NhJw\\0{\\\0	ѶI2D`\@A\LI$(\\D\x=fI	ÔIҮQX\&\\n#`Z\0\p*9\ui\02\-\\<؁Q\3n\._;7>_\r&$C}\d\r\m\\e\"0S8P4\䓳]l\ӧ)evdi\\tT\v\\\w;=Ceg\o~\\\w7\_}\\XO\`e\v\v\4//^\\\)$\'U,I\/@/\f\4Hta\\"`,\(r%V\.S+_B\"\uyѤUc\#qT\')\f-\Ȧ#D\yuL[\l\w\i\9\wKȒ\L´G>L;o^0\5e\'fz\^1(A&s^k\+`e/^\]jd\&y^\ru\\@P91Qբ \&qBʢ\0\/!\vJQ\\`ݴ+e\ Y\\\Z6O7jԉ\ZO-P(\\\NR\z\zz\"rc\b*\0\\\a\N\#k+R\ˀuH\8\\\\j%NȌ\s3\"\\Zx`n\*\\Z\1Ǉ:\\\\6}\+\ὧ6d\J\\\\"1\0lAY\N\J\"(K\\g\)\\{\\'.4\\\&4\'Fjy\\T+r\ s}K\ \w|\QXGp\:Q \AؼBD/C,\\\A{\\aI1\"{V9is_uREe]=\0\M}%\أ\ؓ\eD	T\\"S3pbH԰-;\|\h	T/*c\%\,<&S\\0K\ZJ#cq)\-2(bLr27\\6B\\W\PJecHMQ2\\}j\Ļu	n\"1\0Οz\\>S0dv9\IIM\\\!\N&p_埰܊4sl)w=Q\8\.R\Gd\=}U\\x\g,\\\\Xx\wS\O\\\c\!S_\\r\\\E\\'W?\\r:vtq\\'XL\\rI\\\Y\XBQ)\*0f*\K\`L,p,d3D]&&\&ݠ:$1u>Ip;\\\\\1\\}quT\s4\g䑞=\qd\γ=>\\>:$\)~1t0\\c;1<B\\0>	R&Db=B\\\B\pN6G\\\r\,\0t\`\1\ﳂ\\\\$\HXFd=Ȁ:tKJB%\\<\N\'II͔\A)FJa\\9w%w\\\\(\\\Ӻ!>	ػls\+\,+\0N4V\q\վў=qh\k\'\dTȴ\&ςB4\&~\ \;z+\\ΖqaYF2\7$s|%\\\8\\@/G@Hz\ML\3-؜\Cn*\tْ,\}!d6v\r^ \\\ *!O8EGq`JV>\F\Fu{\Hƍr\S\z\\?Y\m\\j[ACR\E\D9\y\<b\%n[gI[5ʚ\t\/2\Y*\%fK<Eb8E;œ\1g\+2SY\?o\f?Y\3mB\*,zpt\'o=C}\'6^r8\G +ǌ\'\%ƣ\[\0;j\FeZXbS50\Z\2c˯P\دfTy]%#`\Ƀ,vf^S?vCzL\\u\3#-Jl\uRjNx\ۂz*/\MV\Eמcb*\P\YVX\\\6K3ޗMvS\\"VB,\VV\y\-g\\\/Tp\\l	k\m\	\edUծ}(H	R\Ƀ|OA?9O\w\\D\neq\ei\(!\l0\0!vF\6OZ\GNdf>\"G\"_6AB۝.OEw\Ya\Ƶ\\\\\e`Yc\D!/+)~@Hf6o&Z)~	P;\:0z\sb:f\\3Y\\rmuj\zo\nځ4uXX\Ĕ&b\w\\\v=\\\r^HPQ\H\?&o\C$}Ѩ>l\r\'N\<&/l%,\\M1$EHwU\\"2;A:\tCM\\Zn\߄\\\&ثJ\'\\3l\P\H!\`UhN\%;\&i)QQ>\\e\\n/hOwͩ\\вR\\\n\O\`GFwDuvP\Ո\8%\Ud\'N\-\0\nη3ڨ^8\I]M午M:818K;\ZD\0V\\>/[A!	\"\`iN£z\\0\\\\4F57JFVY\0\\\00k\a0QD^\\r\\d\n*\By-~\"\Sր0=\~\t\\0u\#\	>NA\\q==\t\qcЎM\\\\\\vM\\\3\\H t\A|Iv&V\r\'\}6:lqJ~Pnt3)!d<3\$\nmsgj7\WBo|CL ӉJ\\0Py2/dbA**Ϻ \\^RS(PS͇T4\\|<c\\ZL^ [\0O$벤_m+w\JX2\b\\r\8\K)\ѱQ\rSDΝ\A:K\\)[\\\ \rs\\\J/%\]\\E\\l{U\}2f\nQJ\\؏0R\\\\wVpo>T{Y(\7֙wjzıV7,:,?8`\ܥt\Zւ\0VY\S2c+zB\=M\QӦ\C2_\ \[z*\\ʰТ4 Í4\k\UG_a䝌с|%4),\nl6)\\\g[\؈.{W*NiYvhsޜF\6Β>\q6q])I\O\z\XWS,s\-\\;\s0Y\>9.\\֮i\eeL&\pbN4ڴ?0OR/Ǝށ<\\.	$\L\\{ewc#0g\Ǿ.TC\Ю1\N+\\0!ɶ\$\\wg\4\\\\@\Ux0\"\"j\Ҧ\\n}Ц\J69$kj\]\,ԗ*mٶ\\r2n8!l}\ћW8W\|n{,\Dut^`P\gGm\IsN\]0*Aud\j\$7gh\0ë+\\o\nʮ$tUE4aqhc\nCjO9܏\n\\a\%b$$|\'`6\o\*cM8U79/΂(\X\r5\%\09؄E\X`0\Ǻ9:\\\G^-F$i\#!S7iK\z\\\aE\(u>zr\yi>ҿH;\Z3p`\{\nsst\TmB\Գ]o\r-_1a\\I?\)9\ss\rn\>\\uYmAA̒~\\q\"\I\/|+-u	R|(xz\e8ٽQ/=\`G]IA=}xĻ>ȵp\dˬhzSdcsbn\<c,o\\q6p\'zgܺR7\\B/2)\be[And*T/C87WHJԶ\ndM:\\0\N\-\\0ʖ69I-AK \\\jZ_\a\\<\15\\a+\;\k9\n95mUH:cp\<\\\	k?6	4a\ر\0\\\\CX6Mw)/H|?k75Q\r$-\']ԑ<\\횉Ic_,`m[(+9\\ފ\Z\d&-\$^3\\j\=\\)\]ݿ@\\_\#\l*^\Y\!bm\\[\:`|}AI\\\U\ ܤ\\\"\lP/2\=cuͩ\ۚ\0F\UqL\nY,s\PĠ\ڽ1\",7a3+,\r\\\ O,nY$<%\ `\Z\\+nHy1\\"\Zc9Њ0\no!>Sy#.1\.Y\nMcĬ=։56CKrd\~\lދ.\[\GpnSbj](V\)</2\\wU^\j6\%\WA\Jnp!	vxѪ.\EFx\L1\ \@Q\0\\_\\'\\\Z\\\\Zx@{\Jσg(-X\6\\trh\\S\v\6<͜\?O\Ұ!}ZcI$\\0>\\\\\`\#\sǏ\xR\\B\T\%1\ӓu<ϤE\\#0\\cԕ\msSez\\\ٺ	\\\!o6֍rq6\EH\Q-\pӒ\n\a_W3̛/#\;CŇ\\"\n6x޹ˊG<&\rv>Vm\\ݜ]m\'G=|l\y\uz\"\aѝ?Ne?/^ő\-\Zbn\-\\\ȏ9yvt]\m\ʙzŮ;YЕ{v\1\0|\\",g<\ೝ}\Lѵ8.;\nT\Na-\'ڽ\\cZF2u1h67G\no{G\\wSxq\Ƚ\p/w[\\\\6\C廃\\\_GNGp<0\<?;ב\q\\\v\/p+拜\n\w0\/vUX]\6`\[+oi\\\ \K\\Gf_/~\[=\\͋kѰ;t5?b q8x4]FR\t\r\Z\\%h6`\]\\0;}\\\z\\$r-JSu\Pt-o	ˈ\	\J8	*$k~&_\\r\p⻱\tK\&\\\˔\\Hd&KV5;}/HSe\\g\\\\P+\\󀄾\eq\[C4\8^!u#\J3a&`() &\,\h!\\b\u\\4Rxm*~\\AS;\mS9\r5V\+1#\'\樮ڼ\r`8%8	݂k\\\^\\[qE\a\\\\ql^\*C\[\\*ؠ)ǅIzDͥO\u\ɀ{\\ǽ\L\Q;ҟf\iu)|\17\\h\\G6\־߳6E7tqevM\zRWXn\wrlzle)q\0\|t\Z.4a8\W\vzNE\\h\\ݩd\\n_\\Ks\c\\0\^]k\RE|gWhe\@f*\p9莲tkR\dlB/g]\4NFv-q0M_\\\\B\\'´Oq%dN\]\;k\ۤ\ؠ\Ce(<d1ҷ>jdpf9Nf;elq	T>\ҥlj+]Fq9̷RAtpSR`\`.\w[{?B9\H<\M{TXM\<\ǅ\\.\g{\\i/\z\9R2q\'$L\\\P\jj^\EBNh\$\Lrr*\A\\ճ\\Suxկ_\\궦!+#sJ\\\\e\\G~SM!\Ѯ$G\ \P#a	De\I\P\{p\Љ[	\0_4\WMpRjJWHS\8uPв\5ܖ~j\8h\zN>=F\.\\C+&_H\\ިM}\2$T\?#?K@g!^\U\\u~y\q\\m\^~\\} \nY\d\U\\Mq\xtېuì\\0S\\\5m\V3t\S)N	\7/\\\Ӄu|\JVY\<+\\\Z\\\\A\sNދAk<\HN\.N\Ё؁iDE&z\{\/\\˅\z&d\l\}\;\\F\<\E\ѪsCr\\\\\\ibC@\E0򈅲Em6\ڲ\	\¹l\gxr\>+(\M^Ǧ\7\nGmHn\\G\\.ma\\ni0uː\{0庣ʌ\\7 =N;@\\w\L\Z\1P\Trp8){O\n{\&~\\rmLz\\0\	!ޠ\r:tnzj\\;a:#r\.:Hͨ nq;\S~C3\,ϾS6oY*\e9kk8|G7\\oS7oT\S\\\s\\0Gvi\F7mR\\\]m>wd}ngwFtB\lݚ\kc\Mc\fCKT\[%\ xlz\F\^tnxE~=\'Hgu\`ۍ)5~9EqW\39\n;#LW\#j\"jp\=pJ\\4>y2W\B[cmB&L\0$G\u\$\Z\5\\`\c\A |P\\!Z,ƫˊ*(5UQz\o\9\)Aeҷ5@Z\0j\\\K\\iXd\:\9@P\\7\V\Y\	g)8\#mh\ƻ\0Vy\ n(+\0=\F7k\:\0M\5n\Z%z-Pl\]-U{\\xlYAcYO:Ly͋$\9\p@#\wU/\Z{\\n\\\\?iV\M|y\Z.	Y1v9jteo~Զ\\\W!t[[)\\\)5	\\al:\0\긵Y8ډ\Z\7\\\A\:[e9Gt=&{\nJ\\#@BIL!k8nC\Cͨ\؃}au\\H[\n϶9	\7ql\	\Sɠ\m,\hV[j\r\fڦ\+Cm/P\\$ⶋv\\݊;	\N\\Pz& f!\rA\"gQ\	Ȝ\\u\Z)\$\mOmq<B6!V\`?\1ǂlA럘bw\Z \\"\m\"\/B>ݹhS\h\	x㈅FM\3\-52p\\\o}xfw0A\\Ƕ\x\\\.\/','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1783,'2018-05-20 15:38:30',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\]YoI+~Y	hl%G>K3]0UI\\*NՋ\GFU̲=1bVfdd\gk}k\Y\&Fs5^\fꝹms\deQۿ,צXY\)?\unݴǥѩ\w\c]V\ǲ\\g\,53N\O\G㋲l\?tS&^k_29t\X6cc>7Oiv\\\\\\\k e&|>\ffeFuS\^\DGӼR\o^\Zx\\\.\\\UVduSeUR\E\M\d,\\'Mu%&x𽮗Yq۔\H]\??<}xx#\Ok\\uV:\'n\\?\Ó/\\\١W/_V{\^\Ż\\__P72ܛo\\\]ިv}vce\\\uTWz۪h\\\z\P,Ϛi\x\\MqװvL?q\7ˬVn\2fg{@\}LT\\ԪY\Z\kЍgS\\ͳϴZuV\4)\\(8rI\}\,\%\R!7\2\JW\d\o\R\0)p0DV($pRhbnuU&&m6\\\O\xW\\&uN\'c\ܫU\$Q07ܺWt\01ۅNo++#J\\)\EQnO\# \2\Xrk2E}V\vz8I$oPꕬ~\Sb\\]V\Y>}SfG4\B6Ͳ\;20sQ\\\eP_\r&\&3v\><~xrt9\\Xfֵ&Mӌ\\n\\AǊ͘e\Gp\\\ݾ\\3\\\ót_\M\\w\XhWsS9\\Ď\W7Խ\n\r\"J\\;S\Ne\Du2 9̛\\\%q;ˀY\m\n\\\Ag\ڒ\h %\r\Wӑ @cKb\z2\|t6:Y`\:\բ\00z\@|Ѱ2jh\.\F\\\\\_8#w@2ԭ)o+^ZZAJY2ӣVUwǀ\^?bG^X\yy\8\RoA{aj\a\J\'a3TL\\\0\\DXK\ \)fB|Sj\Z\\{ZiPlg\Q\d\C<&\$\x\I[\W2\(3`\7\.\\\7\\\\hz\{p\\K\c\˗\\tt6z\\bGyiv~pz\}x/o&{S<\u)\v>}\P&չ\'Y\\9h\yf4\\\Z!\ͺ)\\ʠ5{Eɛp\9+(B@q{\r\0\$eiQ\\\\0\9EZeEc\nA!+\*sz\u\\\ɩYϮEe\s;\\',ڂƆ\O1:m\r\Z[`I\0R7\&KrG\|&\r\)#\;8H\b߉\O\E\\"\0!\\\\0AJ	.3{(Vi<`L\\%<\Zδ`P\\}VU)tV\|\+Ҍ<шX\p+௚LFG\\\n?k\rՋ\\.\\\Z7{kr\\\\"\ζ3\\삜\\@L\\\43\Dl\\=}k[\\\ 3N,2g:\W_\0*\0\\\\\㑊\XMφ]lQ`\|Oe΁\nޏ$J\gdI7\6tƮ̠s8*\"\\{.dD\Ó\OԿ\l\\@w\\?%\rOqL\]\]؞\\\c/v\\Ջ7U`|q\\\(\\"	5x}P/߾7oXjuY\.SUj\hp\hE3w\\)M\\Z@\\$h\46Mݱ\\^P\@yz$w\6\ORx\Θp\0e#k2L>.\ZԞG\	m}DgYd䡊L^a\M\$/Kw\\(Vض%ϊ\\[7\&4U\%\\=f5,jV \*]\;G9mPoA\@\BZ\rv\\4Z\WZ\J\'O\C\,\X\(\]>5y 6Ed\|d\>4[Vݮ󀎷mnYYC\\\4Tώ\7ɾPB\nh\1y\@v\(m\\g\\nM\~2PZhx/j+5\\\@\>\'V\w\N\\g&ɍ\\Z6=F\H\M\WpJXpS&\KD\0>\"f\\$j\\.x!;fHftSe\\s6<n>A[v.Z!\\0[\\\\r/@XK+`:E@Bආ\r\]\r\A\#\ux\k=v(0~\(\\s\;^Wk@\e[N\r\_\\0B}oG7\\j~/V\\M\_)\Y\"\.A\\WS.S\`\\*p-\x*b\\{3\ra!\'<9_!%\0\\\N\}\R\ZuvH^\@njnAo\\%{0Ԁ9A^LǇ@_\;&\	Щ%\PS\\3;	\\̘\0V&\"K67\2lG\e\\"\\\\\s\E,>xDN#7\M@|NLbr 5z\\4\\@dT鱌,ۊT\ٙ\'\O=2<Ow:GM-)\\\\xdP\Oy6g\i\L :yfZ\'\Eê\\\-`=2\S J[\%eu-\\\)Ac\Q\KrÖ[f\S0x\B`_lK\O\Y\=f`\v\\Z\\'FRnH\#Ջӿ\'}aCV@\G\\\?1\Y{\1@0a/ e\(D\z\=^$}59Ņ\Ɖ\w\!4xᳳ7&C;\qN\hg_¦\\'di\M*CN]	\<}\\9\Z9Xi,h\\guug^c=\o\ `_|;\D\FF*<D+xdig\\W\\\^\\Ȥ@Wp>\0\\MZ\(@d;x\d\\?#\M\\i>\FǮ 1#\\@v\nIfX$Zd\-L@\%Ϯ؝ք-,=c&V##K@i*(k+6\"\n\\\pJbD5\<ظmI\%D[65+\5)N>!\0) \\w3a:Rs?>̱z?\W[`&k\9\4V1ae\0&\\7\\GYe\\\\V1b\;]UH4/\>6*j\Fįb\(\j\Z	\r%\'\\'G>>\Pa\	v\\\ٔ.87\.P^&B\r}:Gj\\GC\ʯ\݋\(~38\)\NZ\\DRJd\\nH|[\f $Z<e\Z\nd!K`\`}HD1\\f\s\\n\F`[OP:+\'6i\Z\~x\\KA\\\`\\'\\\\\\\؝<ǜJr\\8Щo=v\E\~ʙsʹW9wJ7\c]\\lk]cnlb$\<5z\\\-A֦\0\.\|T\_0?<I\;V\Ɲø\^	b.\;N܊+Ҭ\NhJw\\0{\\\0	ѶI2D`\@A\LI$(\\D\x=fI	ÔIҮQX\&\\n#`Z\0\p*9\ui\02\-\\<؁Q\3n\._;7>_\r&$C}\d\r\m\\e\"0S8P4\䓳]l\ӧ)evdi\\tT\v\\\w;=Ceg\o~\\\w7\_}\\XO\`e\v\v\4//^\\\)$\'U,I\/@/\f\4Hta\\"`,\(r%V\.S+_B\"\uyѤUc\#qT\')\f-\Ȧ#D\yuL[\l\w\i\9\wKȒ\L´G>L;o^0\5e\'fz\^1(A&s^k\+`e/^\]jd\&y^\ru\\@P91Qբ \&qBʢ\0\/!\vJQ\\`ݴ+e\ Y\\\Z6O7jԉ\ZO-P(\\\NR\z\zz\"rc\b*\0\\\a\N\#k+R\ˀuH\8\\\\j%NȌ\s3\"\\Zx`n\*\\Z\1Ǉ:\\\\6}\+\ὧ6d\J\\\\"1\0lAY\N\J\"(K\\g\)\\{\\'.4\\\&4\'Fjy\\T+r\ s}K\ \w|\QXGp\:Q \AؼBD/C,\\\A{\\aI1\"{V9is_uREe]=\0\M}%\أ\ؓ\eD	T\\"S3pbH԰-;\|\h	T/*c\%\,<&S\\0K\ZJ#cq)\-2(bLr27\\6B\\W\PJecHMQ2\\}j\Ļu	n\"1\0Οz\\>S0dv9\IIM\\\!\N&p_埰܊4sl)w=Q\8\.R\Gd\=}U\\x\g,\\\\Xx\wS\O\\\c\!S_\\r\\\E\\'W?\\r:vtq\\'XL\\rI\\\Y\XBQ)\*0f*\K\`L,p,d3D]&&\&ݠ:$1u>Ip;\\\\\1\\}quT\s4\g䑞=\qd\γ=>\\>:$\)~1t0\\c;1<B\\0>	R&Db=B\\\B\pN6G\\\r\,\0t\`\1\ﳂ\\\\$\HXFd=Ȁ:tKJB%\\<\N\'II͔\A)FJa\\9w%w\\\\(\\\Ӻ!>	ػls\+\,+\0N4V\q\վў=qh\k\'\dTȴ\&ςB4\&~\ \;z+\\ΖqaYF2\7$s|%\\\8\\@/G@Hz\ML\3-؜\Cn*\tْ,\}!d6v\r^ \\\ *!O8EGq`JV>\F\Fu{\Hƍr\S\z\\?Y\m\\j[ACR\E\D9\y\<b\%n[gI[5ʚ\t\/2\Y*\%fK<Eb8E;œ\1g\+2SY\?o\f?Y\3mB\*,zpt\'o=C}\'6^r8\G +ǌ\'\%ƣ\[\0;j\FeZXbS50\Z\2c˯P\دfTy]%#`\Ƀ,vf^S?vCzL\\u\3#-Jl\uRjNx\ۂz*/\MV\Eמcb*\P\YVX\\\6K3ޗMvS\\"VB,\VV\y\-g\\\/Tp\\l	k\m\	\edUծ}(H	R\Ƀ|OA?9O\w\\D\neq\ei\(!\l0\0!vF\6OZ\GNdf>\"G\"_6AB۝.OEw\Ya\Ƶ\\\\\e`Yc\D!/+)~@Hf6o&Z)~	P;\:0z\sb:f\\3Y\\rmuj\zo\nځ4uXX\Ĕ&b\w\\\v=\\\r^HPQ\H\?&o\C$}Ѩ>l\r\'N\<&/l%,\\M1$EHwU\\"2;A:\tCM\\Zn\߄\\\&ثJ\'\\3l\P\H!\`UhN\%;\&i)QQ>\\e\\n/hOwͩ\\вR\\\n\O\`GFwDuvP\Ո\8%\Ud\'N\-\0\nη3ڨ^8\I]M午M:818K;\ZD\0V\\>/[A!	\"\`iN£z\\0\\\\4F57JFVY\0\\\00k\a0QD^\\r\\d\n*\By-~\"\Sր0=\~\t\\0u\#\	>NA\\q==\t\qcЎM\\\\\\vM\\\3\\H t\A|Iv&V\r\'\}6:lqJ~Pnt3)!d<3\$\nmsgj7\WBo|CL ӉJ\\0Py2/dbA**Ϻ \\^RS(PS͇T4\\|<c\\ZL^ [\0O$벤_m+w\JX2\b\\r\8\K)\ѱQ\rSDΝ\A:K\\)[\\\ \rs\\\J/%\]\\E\\l{U\}2f\nQJ\\؏0R\\\\wVpo>T{Y(\7֙wjzıV7,:,?8`\ܥt\Zւ\0VY\S2c+zB\=M\QӦ\C2_\ \[z*\\ʰТ4 Í4\k\UG_a䝌с|%4),\nl6)\\\g[\؈.{W*NiYvhsޜF\6Β>\q6q])I\O\z\XWS,s\-\\;\s0Y\>9.\\֮i\eeL&\pbN4ڴ?0OR/Ǝށ<\\.	$\L\\{ewc#0g\Ǿ.TC\Ю1\N+\\0!ɶ\$\\wg\4\\\\@\Ux0\"\"j\Ҧ\\n}Ц\J69$kj\]\,ԗ*mٶ\\r2n8!l}\ћW8W\|n{,\Dut^`P\gGm\IsN\]0*Aud\j\$7gh\0ë+\\o\nʮ$tUE4aqhc\nCjO9܏\n\\a\%b$$|\'`6\o\*cM8U79/΂(\X\r5\%\09؄E\X`0\Ǻ9:\\\G^-F$i\#!S7iK\z\\\aE\(u>zr\yi>ҿH;\Z3p`\{\nsst\TmB\Գ]o\r-_1a\\I?\)9\ss\rn\>\\uYmAA̒~\\q\"\I\/|+-u	R|(xz\e8ٽQ/=\`G]IA=}xĻ>ȵp\dˬhzSdcsbn\<c,o\\q6p\'zgܺR7\\B/2)\be[And*T/C87WHJԶ\ndM:\\0\N\-\\0ʖ69I-AK \\\jZ_\a\\<\15\\a+\;\k9\n95mUH:cp\<\\\	k?6	4a\ر\0\\\\CX6Mw)/H|?k75Q\r$-\']ԑ<\\횉Ic_,`m[(+9\\ފ\Z\d&-\$^3\\j\=\\)\]ݿ@\\_\#\l*^\Y\!bm\\[\:`|}AI\\\U\ ܤ\\\"\lP/2\=cuͩ\ۚ\0F\UqL\nY,s\PĠ\ڽ1\",7a3+,\r\\\ O,nY$<%\ `\Z\\+nHy1\\"\Zc9Њ0\no!>Sy#.1\.Y\nMcĬ=։56CKrd\~\lދ.\[\GpnSbj](V\)</2\\wU^\j6\%\WA\Jnp!	vxѪ.\EFx\L1\ \@Q\0\\_\\'\\\Z\\\\Zx@{\Jσg(-X\6\\trh\\S\v\6<͜\?O\Ұ!}ZcI$\\0>\\\\\`\#\sǏ\xR\\B\T\%1\ӓu<ϤE\\#0\\cԕ\msSez\\\ٺ	\\\!o6֍rq6\EH\Q-\pӒ\n\a_W3̛/#\;CŇ\\"\n6x޹ˊG<&\rv>Vm\\ݜ]m\'G=|l\y\uz\"\aѝ?Ne?/^ő\-\Zbn\-\\\ȏ9yvt]\m\ʙzŮ;YЕ{v\1\0|\\",g<\ೝ}\Lѵ8.;\nT\Na-\'ڽ\\cZF2u1h67G\no{G\\wSxq\Ƚ\p/w[\\\\6\C廃\\\_GNGp<0\<?;ב\q\\\v\/p+拜\n\w0\/vUX]\6`\[+oi\\\ \K\\Gf_/~\[=\\͋kѰ;t5?b q8x4]FR\t\r\Z\\%h6`\]\\0;}\\\z\\$r-JSu\Pt-o	ˈ\	\J8	*$k~&_\\r\p⻱\tK\&\\\˔\\Hd&KV5;}/HSe\\g\\\\P+\\󀄾\eq\[C4\8^!u#\J3a&`() &\,\h!\\b\u\\4Rxm*~\\AS;\mS9\r5V\+1#\'\樮ڼ\r`8%8	݂k\\\^\\[qE\a\\\\ql^\*C\[\\*ؠ)ǅIzDͥO\u\ɀ{\\ǽ\L\Q;ҟf\iu)|\17\\h\\G6\־߳6E7tqevM\zRWXn\wrlzle)q\0\|t\Z.4a8\W\vzNE\\h\\ݩd\\n_\\Ks\c\\0\^]k\RE|gWhe\@f*\p9莲tkR\dlB/g]\4NFv-q0M_\\\\B\\'´Oq%dN\]\;k\ۤ\ؠ\Ce(<d1ҷ>jdpf9Nf;elq	T>\ҥlj+]Fq9̷RAtpSR`\`.\w[{?B9\H<\M{TXM\<\ǅ\\.\g{\\i/\z\9R2q\'$L\\\P\jj^\EBNh\$\Lrr*\A\\ճ\\Suxկ_\\궦!+#sJ\\\\e\\G~SM!\Ѯ$G\ \P#a	De\I\P\{p\Љ[	\0_4\WMpRjJWHS\8uPв\5ܖ~j\8h\zN>=F\.\\C+&_H\\ިM}\2$T\?#?K@g!^\U\\u~y\q\\m\^~\\} \nY\d\U\\Mq\xtېuì\\0S\\\5m\V3t\S)N	\7/\\\Ӄu|\JVY\<+\\\Z\\\\A\sNދAk<\HN\.N\Ё؁iDE&z\{\/\\˅\z&d\l\}\;\\F\<\E\ѪsCr\\\\\\ibC@\E0򈅲Em6\ڲ\	\¹l\gxr\>+(\M^Ǧ\7\nGmHn\\G\\.ma\\ni0uː\{0庣ʌ\\7 =N;@\\w\L\Z\1P\Trp8){O\n{\&~\\rmLz\\0\	!ޠ\r:tnzj\\;a:#r\.:Hͨ nq;\S~C3\,ϾS6oY*\e9kk8|G7\\oS7oT\S\\\s\\0Gvi\F7mR\\\]m>wd}ngwFtB\lݚ\kc\Mc\fCKT\[%\ xlz\F\^tnxE~=\'Hgu\`ۍ)5~9EqW\39\n;#LW\#j\"jp\=pJ\\4>y2W\B[cmB&L\0$G\u\$\Z\5\\`\c\A |P\\!Z,ƫˊ*(5UQz\o\9\)Aeҷ5@Z\0j\\\K\\iXd\:\9@P\\7\V\Y\	g)8\#mh\ƻ\0Vy\ n(+\0=\F7k\:\0M\5n\Z%z-Pl\]-U{\\xlYAcYO:Ly͋$\9\p@#\wU/\Z{\\n\\\\?iV\M|y\Z.	Y1v9jteo~Զ\\\W!t[[)\\\)5	\\al:\0\긵Y8ډ\Z\7\\\A\:[e9Gt=&{\nJ\\#@BIL!k8nC\Cͨ\؃}au\\H[\n϶9	\7ql\	\Sɠ\m,\hV[j\r\fڦ\+Cm/P\\$ⶋv\\݊;	\N\\Pz& f!\rA\"gQ\	Ȝ\\u\Z)\$\mOmq<B6!V\`?\1ǂlA럘bw\Z \\"\m\"\/B>ݹhS\h\	x㈅FM\3\-52p\\\o}xfw0A\\Ƕ\x\\\.\/','EZ-Page with ID 11 updated.','info'),(1784,'2018-05-20 15:38:30',1,'ezpages.php','ezID=11','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1785,'2018-05-20 15:38:31',1,'ezpages.php','ezID=11','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1786,'2018-05-20 15:45:08',1,'ezpages.php','ezID=10&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1787,'2018-05-20 15:45:08',1,'ezpages.php','ezID=10&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1788,'2018-05-20 15:45:19',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\yT\2a{f{c>I\\'\V\ԟ?~\\M\\ڹ\\[S4\w&Uٚ\ʢ޵?TL0\"-\2֧T׹nt\֟F\OuY5ʊg\,5|ɟ⧏\eٸC\L>%j/?D;<\Y4\Sc>7Oiv\\\\\\k iƿ|>\\ff	tT\\\\TW0Ƨ\OJ}|F0>\}\ˬ\\\=:ͪ\F\\Y\O\\\>KL\]/\):?.}|6>\\\GVvo\mY-uOr\\\\g_\\\=R//^^\\\\寯_\\s\\6oT\>S1ɢ\0\\\ET\mU4\m\\\j\P,ϚGi\\S\\\o`?\R]j(\&V\!oYܼe\\wʻjU:U0jiG_\2:<-\\VIeOmݨ1jJ53\n\\\\'!km\ip;\3;\5a\n$?J\'	pUI[\\a)qeSC`1<D\!Uﰼ7mn\qN\\yP\25y\r\/I`nvu\\\0bs4-.\VV\nF0S29{R\%F@\E\'T\\e4\#\M\\`|I08ހ\kY6\r1]\'Į*]	|,̀i\\\ie߁H\\\.>.bߖjb<%j\\\\gϷӌf];K`\4͈t\0cFA\\]=8Чȍ\';\\\\Xh3S9\\Ď\W7ԃ\n\r\"J\\{S\Ne\Dt2 9̛\\%q;ˀY\m\n\\\Ag\ڒs\h %\r\Wӑ @cKb\z<\|t6:Y`\:\ռ\00z\@|Ѱ2jh\\\F\L\\_8#@2ԭ)o+ZZZAJY2ӣVUwǀ\^=bG^X\y\8_\R\@{aj\a\J\'w\0)*Un\S\q+\"Rj\3!)5\r\=4R(3\v\\!ze\r<\ᤁ-\+Nt\\\\ۗ\rw89QM>\|\\;\u\\\|w\yqq7MF\;o\wg{;o݅vo3Q\c\PrHn{z\\"\e\[{5(A\\Zǻj\ACH^*ˬ\ݬ\n\nXûę	7b2J/\,W\\n\>HRu,<p\UV4 rx{2\_Wl-:\Y\[0\]˼-hl8a[\\ Q\nD\n/\y\i$\'pd\Z\g2\\P2\j4.hTI!+\0Pjr\rԨ\\:bɐ\Ƥ,^\"!Q\L[\05\r\[=dQ@Ahq\g\I(\\b:UuU6Vɨ^PK\\uzU\\W\\\}V#w@`vpѠV\\ٖ3&ځ]i^K\o@8\ݺomk\`&ÉC_~8R\s ^vz\HEپS\\(8Im\\Q\7I<\Ȓn\M6nm\\\\"mAm\p\03TDx\\"\\Ȉ+\'\g\\W\}uG\\0:/4ixc`\\n\$PN{^=\\\נ\/$\\\[f|\\]{\.n-\8&|\V6]&(\\\\\\ZRgjo\5\Iд\iqe֚\cߛz.՞yz$w\6\ORx\Θp\0eCk2L\`@pj\\1m}DgYd䡊L^a\M\$/Kw\\(V.ٶ%ϊ\\[7\&4Qg%\\s=f5,j \*]\;G9mPoA\@\BZ\rv\\4Z\WZJ\\\C\,\X\(\]>5y(6Ed\|h\>4[Vݮ󀎷mnYYC\=\\4Tώ\7ɾPB\nh\1y\@v\(m\\\\nM\~2PZhx/k+5\\\@\>\'V\w\N\\g&ɍ\\Z6=F\H\M\W\'pJXp\w.Z?`IgMm6\0@	}D\֩I\j\\.x!;fHftSe\\s6<n>A[v\[!\G0[\\\\r/@X+`:E@Bආ\r\]\r\A\#\ux\k=v(0~\(\\3\[AW+@\e[N\b\__d\0\7ֿࣛ.5YJ+}Ƈ\?\v,wD\C {\V\\	Y)p0\fn\`ys<b\ߚÆ0\uW\0\\ώ\}x\R\Zuz@^\\@njnAo\\=j /&@_\\?FwL\\3SJn\9 ̝gw觯13\!ahS-M#Dn,\e؎ˊyՅ%\\ރX\0||\'F\o\%\\0@:Y+-hЛȨP#qQ\\SO\zDex\uM\[R\)\SǓ\Q0ɠlƺ\\n{u@tt̴NOƋU	%[2,{dا@\K\\ZgύSj\P\-7\B\`(.ٖ>,\{\H|e\l5@N\"\\9ܐ\T/>2L\rZ:{#\\xg\\\\0\r\ᾀ\\"ߗ;4\\\\\E\vxet\42\ZǞ\\zG\\\\Rܘ<X}\,\;H\\B.:q\\t~	C6>\Zb8t%~p\Z#\0k\g`\q\\eYe\z0\Q^A\"w\1T_)y8Va\\"ϼ\rE\jܑI0\|\0Ư>Q\\v\J.ʕ\N}2]AbFӁ\	\\ͰH(\~[\"\K];	O10[Xz\L*zG\\'WB:\r\TPD\>Wf;lD\qհE\Ĉjyv\`V瓆Kljd\ikR:3M\\!\0\\	 \\w3a:Rs?>̑z?\W[`&k\9\4V1ae\0&\\7\\GYe\E\O\xT\J\\0Q$\Z\jS\\\}#\W1irXϚ\\Ǉ>>\Pa\	v\\鄠.87\.P^&B\r]:Gj\\{C\\o\݋\(~S8\)\NZ\\DRJd\=\nH|[\f $Z<e\Z\nd!K`\`}HD1\\f\s\\n\F`[OP:+\'6i\Z\~x\\KA\\\`\cm\\c`UvalO#N}eoY\F\Է3\\"b?\LŹf\+ϹQQ\\ûx\\PQЛ屮ok5.`\\7Y610O޲v|OKC@s8_?\\\	Cajq\'G\a\#\n{1~=\'n\ވiVY@b\'4%;g=\\\Zh\\$\"0\\rZ u&\$Ή\\nj}m\\ͤa\$iW(\0q\jx0-gq\\e\\ں4FF\I	J\0\gaE\ٌ}|\(v	7\\Q	̯z\/ۆ`X!s5s\\Ng2)YRH(\\\ZNfr\l1i\\E\nj\.X\Zlz8<U7:\l\,/\P\Yl_g|u\\!\\\=V\\5X`mٹ8\\\W49\)yo@Jg,\	CUh\0=K\sP\\rj=>R.]\)\\"\$4\&\C\0pf~5C\\ʗP\r]^4iPܥ(\\}ʲ|\}3)\\\'\m\x^\\;!=\1Gu\ `\\C50\\\ZWA\8\kEى\#W(J\Wl\\\gkD\KyWhn\ZY帉d\mkjk\9TN*\ TF0EI܁(Kȳo\q3X7-\J\uH3>\\\uZ\u\SJl8#T\ai\\~\\옶\ \ne\0L53\p\H\\\n32`7NA;㠴\Zac2#\\ǌȳB?ؠ۶ʠF\=z\N;|6Mn9G\\. fux\\!~C#\0[PS\C=ʒS񙺃&>ʹD\Kp$)M7\IM\Z\23Ւ\8\Lߒ+82sܤeN=pz6\Qe\\\d6w\^0jzXR\\&B\G\<@Ԡ\eQ\"GWB\6\DwS\e0\!=e\Qկ\\\*,5l\\\ZGd\b*\\1?JQ\Ws\0]ы\%\rø\1&C\prJ!\xëu(2\1DU$Ⱥ\(\\>\~r\ݍ{ٺSY\ڊ\Me\O<\X)2FG};[\$Ѥ&.\}Fv\'8;,+*\\\.[\(bOT9xƬ\x\\j/#|.max\\Y+\ 1\T\S\*W,G{\ԗl&ܥ\W\ՏuN*]\	\%{\Fq{V4\b\E@\\n\\Jҫ2\\-\(\\\Q׬\$\t\i7(I\%,\"l=\h\"8\(pyr8C\9xlpUNj\\yǧ\Ow82d\\?\D\\kt]\|\^{:\˝	l\nD\0̄X})\"\H\R1ǅx!	\\w\\\(m&\Q{ż1,\0]2\p:\\\9t?9\0Qn\\\n0С[R*\\qwb\<\LJ\4mJ1\nƭT\nιK,C7.WG\\*\\r4I\e3^\fYwͥDC\r艵C\׏X#8!&El6y\6KY\G\)\\[YVoq{\r\2Q!\\s\E\(`\\\z9B\"\3n\Z`\Zi\rSq3̆g\Au$aulk]\!TUI!|\)<cU\Z?Y7\ZzctQwѹ7Y@H\;F2n0\\\\n\P3\b\r\Z\"\M\:\(]\l\K/q\*Kڲ1W\\WuxS}\ɨ\\"P)\$(4\X\)\)߁-\\\@<K7XQ\|*\rw\y\\0ɢEi\\6Pgуc;y\\\8Ù?Y<f<*\P5U,\@\Q+7*\\\`[~\~4\\\\\\Z(SNdiݷ57\\\"p\wTHQ(=3Ң\]G9\/\7-ة=\poXˮ[t\9&R\r5\h\\]|\\n4\}\d7\,b+\m\a\Ё\\\r\u0\I\\܆Q^FVU\\珂$ O<\O˧I\T\raHʉ{\a\H$PW\\\̀\"\"\ܑ	b	a$xJm#T\\}\\Jf\){1Yicʱ\*\\\\tw\)m\\kɎ\\MQ&5\M\Z\"`\\G\Jif\h/\a\"\*j?\\(kX<\'c\\(.@\:J^\\6Q\\OкHS\nዅUNL9/9`\"挏{\x\\\l\\o\ܾ\p\\uD	\E$`<TI\\Z\\v\p\΃h\V\\>\t\H@Rt\\)(.\"CN70Ԅ|`\VM謌lz@\\Kw?m\C\kJ`\Z)\a\n\\d!ߑ\d\b2e7\1\\}ClrY_\\9ZV*wY 8Z\\\	W\N(1֠.\\\ʻ\Z3D\\\]\`\\vFk\;I\'>\tI\ tgWc*\\e#($Ad\Z,͉BxQ\Z`\r\Ȣ\FIQ\\2`!]\0fw9\0&\SVAS?ȋ\_,Pp>TA^(ŏ_z\\Z\'܏\0u\=\bd<\u\);\\0΢\\c\=n\Ѷ)\\CWx\'qخ(w[B}Ƽ	!/\\\\p@\\q2\F-.tA\o~J\Aߍnf?%\O\40\}B[-\\\\YZ\\rcP\\\\\~e\'\tR8\0T\G~W2 Cg\O\te/@)I@\\CшN*u\p>\\0e\r/-\\r\OMY\Я7࿥;c%K,vry1\gᥔ\ب)\"\\\\ \\\-lar!\K\\;\d\\"\p*D\\Y\hR2#T\q;\ \ۃ#\^)j\*J\\\a\rBU杚$q\\r\;,N\J\*z\Vw~^o_Hi<u\\rt@\kĿ¼`Q\^E\[Zd}m\\\+\It _\a\M\n0$|\0Mʸٖ=56\\SZֿ\7gE\Q-v|Mϲ}\~y\_JAS\2\Ehg\\K\q˾\b\1Ok\Zf2&\[\D81\'\Zm\\'cGL\GnTG`j\f\3b#_*!\hWVvd[mg\3\bev\g \2<\\vC\\ci\\nh\b>[h\\\s\]\nۜ`E\55\\.~k\X\KԶl\\W7RE\r\s\\u+D\KxY\m>3\t::/0(\#\6J\\9\'IЮS`\I:ej\n\ٛS4\\\r\\?k7yt\DeW\\Uݪ\"H\Zం8@!5\D\\hLF	xo\0\J1QIi&(\Љ\Ag_\r5Ǐ%7\09؄E\X`0\Ǻ9:\\\G^-F$i\#!S\iK\z\\\aE\(u>zr\yi>ѿH;\Z3p`\{\n\st\T/mB\Գ]o\r-_1a\\I?\)9F \;\n\P{齛\n,.^u \D\Z\,重H\'wa܇i\"ѢZGz \o/Ň\'\]\qJi9\\vԕ\\SЇG\\\\'\)\oÅ֪\E6\\'憜\<\&Ofw{ƭ\{ |\-!C8\"5d\\qHB?sp%{Dm\h@\4#ߝPL\\\0\\"h\Qs\\nly\\MJhI\rZ\ֶV\:T+7\\SCnֱN\~֚S\V8	\S/~cP\0OS\@8}\9`;\?YjS\:\\z\\vSՐ_H\q\E\c/}ѱP\ۮ$\1ŒZٶcqO\\\Mf\O\U? ,ݳN\޵h\+$]0\:\\\\\\"\\=Ɨ\Gy􇎾^)m\M\Z\l\3\f\"݃΢9uZbs[F\(9\\"nI!%3?q\\4C7&SW\&lce\\0כ6\\r6$L\z!|E\\r)T5&\\^c,ZA\\\-?\g*0\D\%\w\\%\ڭi_g\:1\&ctxIm\{хz\mJB\JU<geB{\\~j]իY\FqdY:\\\\r.#Ӯ\/Z56\\sҹ\\)\?\"(5\?\n;>\`a\rw<y\R~`M\'K\!\'\1\r!޶K:ˉnwl\\\\\\Xa,\rK\0aZ?Ч\O20\cn~7\>ҫڼ\x\'\\\,\OM%\\C<\~jG\(~>9c\R|2-~nʕAO<:>\j\7\G3y\0\Uܿ~\<5\i}R:lTl\\ܴkp+\\s\Ρ\\tKZ\\e\M#Q]6s|\nN.ߴc\\\\>s~\'޼\:={B\	n\\\n\'\2[\\\\rX1}D\\`\\8}ͮ\-\L|~=\b׭D\4\\=\\0>\j3Pc\VӾ\|\\\*nVM&\^m\d\\C-I\#:\4܉\\\#\?k\\)u\N\\\-\o\Qo	k\\v\Yamz#\8t_\\\o\};}\|EN\;\L?\[\*^,~B\6ng~­4\s\%p\#\\S\~\\\5h\\\Z\}D|C8ډ\n\nN)\}\\\40\vZ<Wtks=O\v\\۩:o(D\`75e\\l%\A5M_gK\e8\\\|Vi[\p\eJC\j$2\\%KQ\U\3\m.˕KGu\y@B߳\8\!\ZqNTՉ:\\EFw	E0\\\Q]\ntN\sj1:\k\Z)xL6\r?pw\VI\\\ZGSasTm\d~4Unw\{im/a-\8\0\\\M[GIvD!-oslД\\$\DMF=\\\'\?\d~\׽v\^IKᨇ\\T\`VaRIrIw\#ak\\Y\"\k:ĸ2v=X)\+,\`\n;969\\Ogd>c-\Z\0\+k;\SEx\'\"\d\\\DZ2ab7ѯe\ٹ\^`\0zf/ȉ5p\"+2ZD!3jtGY:K{a263`.m\'PQ#;ؖ8G&\/S\뷡\a\\'V\'\\흈5\\m\nlP!\\\2~\z\o#Y\#\l \\YNp\el=N[\\D\\kt#\Z\ʨAQFm\~\TnXįK\\\ϠP\R/\DӞV\a:\q!K\ܽ/84E\칞v\i\		\7|3TZ\q\[	\\0=bh\\\v\7T.\\/w\tzuS\Mא9\֬\\M[˦p[>wa\$u(]Bh\Ď,\YH\H\Zw\+\&|H)5+)k:(h\\ZJn\\z}?5{Z4t=\aO#ihӡ\\w\eoԦ[\\\nLxaQퟑxޟ\\%V\ೂ\/h\h\O\c6n/?S\\>,Ar*Ҧ\v<:\mȺa\g\\n\\Tk\\w܄Ww\\\\:>h%\\\,\r.\r\^\\le\B\\K\'\\\ ۵_\JB\}$\'1\@\\\4\"\ tپd\\\o=2n6\uoh#g\\"dՊ܅\5W~w\{Q><baQ,8`\p.\\OD\\n>J+mq/뱩\\\Q\=۴Q\|K\Z\DB\ZL\2\E\L2c(45HdSN\<7w\oj5m%N\g\\ޓ\^\0첉zCd>\\^3oBȽ7hÅ]k\ȂܵR3j[\\\'ǔ_\\\l`5ˋ\\(\[\ntY\\\Z_\\\э4m\\\\\°\4ܨ:]\Z\M`k\T4WW|ۄ#\\90>Y>\\ٝP7[&\J\p\X\\q\V\1<\\ۮ=j_\	f݅2\fc}\jNQ}\L\\\,ӕ󈚈\eG}>\v`$MlB\U\\\j۠%	\=\0 \Qx}F9vM\s6\o\uPH<\B(WVb<˭\貢\.ʬGMU^\\\[sN?s\|P-F\r%\\1\#Z4\-}2ƒW`\Zٻ<t(Ը{\M$UCVs\Y\>ʆdkZol4̥UG\0H\0/\Ap\\J&@.э\\\@s֧fjI^[-wWK\No<\|\'\E\a8ْ\캪u\rLe@\d\\D4\&<\r\\Ƅ5ͷ]K?j\JO\\iuCȭv\\Ԛ\\06FM\0\Mu\\,\\Z\r\	\t\@r-\\#=A7%J\w\ !\$}\5ѡ!\f\s@\H:tj-g\\\uGO8\kd\IJp4\rd3mRv\`ࡶ\`(\J.\nq\EG[\\x\nŝ\b\'{wk(]^ `\\{d\:i\䶧\68[!\\M\\tXc\\n_|\OLz;s-gI]\6LL\!\\x)r4\q\B\n&\\ϚU8l7F>>K_~\S[\?mo^','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1789,'2018-05-20 15:45:19',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\yT\2a{f{c>I\\'\V\ԟ?~\\M\\ڹ\\[S4\w&Uٚ\ʢ޵?TL0\"-\2֧T׹nt\֟F\OuY5ʊg\,5|ɟ⧏\eٸC\L>%j/?D;<\Y4\Sc>7Oiv\\\\\\k iƿ|>\\ff	tT\\\\TW0Ƨ\OJ}|F0>\}\ˬ\\\=:ͪ\F\\Y\O\\\>KL\]/\):?.}|6>\\\GVvo\mY-uOr\\\\g_\\\=R//^^\\\\寯_\\s\\6oT\>S1ɢ\0\\\ET\mU4\m\\\j\P,ϚGi\\S\\\o`?\R]j(\&V\!oYܼe\\wʻjU:U0jiG_\2:<-\\VIeOmݨ1jJ53\n\\\\'!km\ip;\3;\5a\n$?J\'	pUI[\\a)qeSC`1<D\!Uﰼ7mn\qN\\yP\25y\r\/I`nvu\\\0bs4-.\VV\nF0S29{R\%F@\E\'T\\e4\#\M\\`|I08ހ\kY6\r1]\'Į*]	|,̀i\\\ie߁H\\\.>.bߖjb<%j\\\\gϷӌf];K`\4͈t\0cFA\\]=8Чȍ\';\\\\Xh3S9\\Ď\W7ԃ\n\r\"J\\{S\Ne\Dt2 9̛\\%q;ˀY\m\n\\\Ag\ڒs\h %\r\Wӑ @cKb\z<\|t6:Y`\:\ռ\00z\@|Ѱ2jh\\\F\L\\_8#@2ԭ)o+ZZZAJY2ӣVUwǀ\^=bG^X\y\8_\R\@{aj\a\J\'w\0)*Un\S\q+\"Rj\3!)5\r\=4R(3\v\\!ze\r<\ᤁ-\+Nt\\\\ۗ\rw89QM>\|\\;\u\\\|w\yqq7MF\;o\wg{;o݅vo3Q\c\PrHn{z\\"\e\[{5(A\\Zǻj\ACH^*ˬ\ݬ\n\nXûę	7b2J/\,W\\n\>HRu,<p\UV4 rx{2\_Wl-:\Y\[0\]˼-hl8a[\\ Q\nD\n/\y\i$\'pd\Z\g2\\P2\j4.hTI!+\0Pjr\rԨ\\:bɐ\Ƥ,^\"!Q\L[\05\r\[=dQ@Ahq\g\I(\\b:UuU6Vɨ^PK\\uzU\\W\\\}V#w@`vpѠV\\ٖ3&ځ]i^K\o@8\ݺomk\`&ÉC_~8R\s ^vz\HEپS\\(8Im\\Q\7I<\Ȓn\M6nm\\\\"mAm\p\03TDx\\"\\Ȉ+\'\g\\W\}uG\\0:/4ixc`\\n\$PN{^=\\\נ\/$\\\[f|\\]{\.n-\8&|\V6]&(\\\\\\ZRgjo\5\Iд\iqe֚\cߛz.՞yz$w\6\ORx\Θp\0eCk2L\`@pj\\1m}DgYd䡊L^a\M\$/Kw\\(V.ٶ%ϊ\\[7\&4Qg%\\s=f5,j \*]\;G9mPoA\@\BZ\rv\\4Z\WZJ\\\C\,\X\(\]>5y(6Ed\|h\>4[Vݮ󀎷mnYYC\=\\4Tώ\7ɾPB\nh\1y\@v\(m\\\\nM\~2PZhx/k+5\\\@\>\'V\w\N\\g&ɍ\\Z6=F\H\M\W\'pJXp\w.Z?`IgMm6\0@	}D\֩I\j\\.x!;fHftSe\\s6<n>A[v\[!\G0[\\\\r/@X+`:E@Bආ\r\]\r\A\#\ux\k=v(0~\(\\3\[AW+@\e[N\b\__d\0\7ֿࣛ.5YJ+}Ƈ\?\v,wD\C {\V\\	Y)p0\fn\`ys<b\ߚÆ0\uW\0\\ώ\}x\R\Zuz@^\\@njnAo\\=j /&@_\\?FwL\\3SJn\9 ̝gw觯13\!ahS-M#Dn,\e؎ˊyՅ%\\ރX\0||\'F\o\%\\0@:Y+-hЛȨP#qQ\\SO\zDex\uM\[R\)\SǓ\Q0ɠlƺ\\n{u@tt̴NOƋU	%[2,{dا@\K\\ZgύSj\P\-7\B\`(.ٖ>,\{\H|e\l5@N\"\\9ܐ\T/>2L\rZ:{#\\xg\\\\0\r\ᾀ\\"ߗ;4\\\\\E\vxet\42\ZǞ\\zG\\\\Rܘ<X}\,\;H\\B.:q\\t~	C6>\Zb8t%~p\Z#\0k\g`\q\\eYe\z0\Q^A\"w\1T_)y8Va\\"ϼ\rE\jܑI0\|\0Ư>Q\\v\J.ʕ\N}2]AbFӁ\	\\ͰH(\~[\"\K];	O10[Xz\L*zG\\'WB:\r\TPD\>Wf;lD\qհE\Ĉjyv\`V瓆Kljd\ikR:3M\\!\0\\	 \\w3a:Rs?>̑z?\W[`&k\9\4V1ae\0&\\7\\GYe\E\O\xT\J\\0Q$\Z\jS\\\}#\W1irXϚ\\Ǉ>>\Pa\	v\\鄠.87\.P^&B\r]:Gj\\{C\\o\݋\(~S8\)\NZ\\DRJd\=\nH|[\f $Z<e\Z\nd!K`\`}HD1\\f\s\\n\F`[OP:+\'6i\Z\~x\\KA\\\`\cm\\c`UvalO#N}eoY\F\Է3\\"b?\LŹf\+ϹQQ\\ûx\\PQЛ屮ok5.`\\7Y610O޲v|OKC@s8_?\\\	Cajq\'G\a\#\n{1~=\'n\ވiVY@b\'4%;g=\\\Zh\\$\"0\\rZ u&\$Ή\\nj}m\\ͤa\$iW(\0q\jx0-gq\\e\\ں4FF\I	J\0\gaE\ٌ}|\(v	7\\Q	̯z\/ۆ`X!s5s\\Ng2)YRH(\\\ZNfr\l1i\\E\nj\.X\Zlz8<U7:\l\,/\P\Yl_g|u\\!\\\=V\\5X`mٹ8\\\W49\)yo@Jg,\	CUh\0=K\sP\\rj=>R.]\)\\"\$4\&\C\0pf~5C\\ʗP\r]^4iPܥ(\\}ʲ|\}3)\\\'\m\x^\\;!=\1Gu\ `\\C50\\\ZWA\8\kEى\#W(J\Wl\\\gkD\KyWhn\ZY帉d\mkjk\9TN*\ TF0EI܁(Kȳo\q3X7-\J\uH3>\\\uZ\u\SJl8#T\ai\\~\\옶\ \ne\0L53\p\H\\\n32`7NA;㠴\Zac2#\\ǌȳB?ؠ۶ʠF\=z\N;|6Mn9G\\. fux\\!~C#\0[PS\C=ʒS񙺃&>ʹD\Kp$)M7\IM\Z\23Ւ\8\Lߒ+82sܤeN=pz6\Qe\\\d6w\^0jzXR\\&B\G\<@Ԡ\eQ\"GWB\6\DwS\e0\!=e\Qկ\\\*,5l\\\ZGd\b*\\1?JQ\Ws\0]ы\%\rø\1&C\prJ!\xëu(2\1DU$Ⱥ\(\\>\~r\ݍ{ٺSY\ڊ\Me\O<\X)2FG};[\$Ѥ&.\}Fv\'8;,+*\\\.[\(bOT9xƬ\x\\j/#|.max\\Y+\ 1\T\S\*W,G{\ԗl&ܥ\W\ՏuN*]\	\%{\Fq{V4\b\E@\\n\\Jҫ2\\-\(\\\Q׬\$\t\i7(I\%,\"l=\h\"8\(pyr8C\9xlpUNj\\yǧ\Ow82d\\?\D\\kt]\|\^{:\˝	l\nD\0̄X})\"\H\R1ǅx!	\\w\\\(m&\Q{ż1,\0]2\p:\\\9t?9\0Qn\\\n0С[R*\\qwb\<\LJ\4mJ1\nƭT\nιK,C7.WG\\*\\r4I\e3^\fYwͥDC\r艵C\׏X#8!&El6y\6KY\G\)\\[YVoq{\r\2Q!\\s\E\(`\\\z9B\"\3n\Z`\Zi\rSq3̆g\Au$aulk]\!TUI!|\)<cU\Z?Y7\ZzctQwѹ7Y@H\;F2n0\\\\n\P3\b\r\Z\"\M\:\(]\l\K/q\*Kڲ1W\\WuxS}\ɨ\\"P)\$(4\X\)\)߁-\\\@<K7XQ\|*\rw\y\\0ɢEi\\6Pgуc;y\\\8Ù?Y<f<*\P5U,\@\Q+7*\\\`[~\~4\\\\\\Z(SNdiݷ57\\\"p\wTHQ(=3Ң\]G9\/\7-ة=\poXˮ[t\9&R\r5\h\\]|\\n4\}\d7\,b+\m\a\Ё\\\r\u0\I\\܆Q^FVU\\珂$ O<\O˧I\T\raHʉ{\a\H$PW\\\̀\"\"\ܑ	b	a$xJm#T\\}\\Jf\){1Yicʱ\*\\\\tw\)m\\kɎ\\MQ&5\M\Z\"`\\G\Jif\h/\a\"\*j?\\(kX<\'c\\(.@\:J^\\6Q\\OкHS\nዅUNL9/9`\"挏{\x\\\l\\o\ܾ\p\\uD	\E$`<TI\\Z\\v\p\΃h\V\\>\t\H@Rt\\)(.\"CN70Ԅ|`\VM謌lz@\\Kw?m\C\kJ`\Z)\a\n\\d!ߑ\d\b2e7\1\\}ClrY_\\9ZV*wY 8Z\\\	W\N(1֠.\\\ʻ\Z3D\\\]\`\\vFk\;I\'>\tI\ tgWc*\\e#($Ad\Z,͉BxQ\Z`\r\Ȣ\FIQ\\2`!]\0fw9\0&\SVAS?ȋ\_,Pp>TA^(ŏ_z\\Z\'܏\0u\=\bd<\u\);\\0΢\\c\=n\Ѷ)\\CWx\'qخ(w[B}Ƽ	!/\\\\p@\\q2\F-.tA\o~J\Aߍnf?%\O\40\}B[-\\\\YZ\\rcP\\\\\~e\'\tR8\0T\G~W2 Cg\O\te/@)I@\\CшN*u\p>\\0e\r/-\\r\OMY\Я7࿥;c%K,vry1\gᥔ\ب)\"\\\\ \\\-lar!\K\\;\d\\"\p*D\\Y\hR2#T\q;\ \ۃ#\^)j\*J\\\a\rBU杚$q\\r\;,N\J\*z\Vw~^o_Hi<u\\rt@\kĿ¼`Q\^E\[Zd}m\\\+\It _\a\M\n0$|\0Mʸٖ=56\\SZֿ\7gE\Q-v|Mϲ}\~y\_JAS\2\Ehg\\K\q˾\b\1Ok\Zf2&\[\D81\'\Zm\\'cGL\GnTG`j\f\3b#_*!\hWVvd[mg\3\bev\g \2<\\vC\\ci\\nh\b>[h\\\s\]\nۜ`E\55\\.~k\X\KԶl\\W7RE\r\s\\u+D\KxY\m>3\t::/0(\#\6J\\9\'IЮS`\I:ej\n\ٛS4\\\r\\?k7yt\DeW\\Uݪ\"H\Zం8@!5\D\\hLF	xo\0\J1QIi&(\Љ\Ag_\r5Ǐ%7\09؄E\X`0\Ǻ9:\\\G^-F$i\#!S\iK\z\\\aE\(u>zr\yi>ѿH;\Z3p`\{\n\st\T/mB\Գ]o\r-_1a\\I?\)9F \;\n\P{齛\n,.^u \D\Z\,重H\'wa܇i\"ѢZGz \o/Ň\'\]\qJi9\\vԕ\\SЇG\\\\'\)\oÅ֪\E6\\'憜\<\&Ofw{ƭ\{ |\-!C8\"5d\\qHB?sp%{Dm\h@\4#ߝPL\\\0\\"h\Qs\\nly\\MJhI\rZ\ֶV\:T+7\\SCnֱN\~֚S\V8	\S/~cP\0OS\@8}\9`;\?YjS\:\\z\\vSՐ_H\q\E\c/}ѱP\ۮ$\1ŒZٶcqO\\\Mf\O\U? ,ݳN\޵h\+$]0\:\\\\\\"\\=Ɨ\Gy􇎾^)m\M\Z\l\3\f\"݃΢9uZbs[F\(9\\"nI!%3?q\\4C7&SW\&lce\\0כ6\\r6$L\z!|E\\r)T5&\\^c,ZA\\\-?\g*0\D\%\w\\%\ڭi_g\:1\&ctxIm\{хz\mJB\JU<geB{\\~j]իY\FqdY:\\\\r.#Ӯ\/Z56\\sҹ\\)\?\"(5\?\n;>\`a\rw<y\R~`M\'K\!\'\1\r!޶K:ˉnwl\\\\\\Xa,\rK\0aZ?Ч\O20\cn~7\>ҫڼ\x\'\\\,\OM%\\C<\~jG\(~>9c\R|2-~nʕAO<:>\j\7\G3y\0\Uܿ~\<5\i}R:lTl\\ܴkp+\\s\Ρ\\tKZ\\e\M#Q]6s|\nN.ߴc\\\\>s~\'޼\:={B\	n\\\n\'\2[\\\\rX1}D\\`\\8}ͮ\-\L|~=\b׭D\4\\=\\0>\j3Pc\VӾ\|\\\*nVM&\^m\d\\C-I\#:\4܉\\\#\?k\\)u\N\\\-\o\Qo	k\\v\Yamz#\8t_\\\o\};}\|EN\;\L?\[\*^,~B\6ng~­4\s\%p\#\\S\~\\\5h\\\Z\}D|C8ډ\n\nN)\}\\\40\vZ<Wtks=O\v\\۩:o(D\`75e\\l%\A5M_gK\e8\\\|Vi[\p\eJC\j$2\\%KQ\U\3\m.˕KGu\y@B߳\8\!\ZqNTՉ:\\EFw	E0\\\Q]\ntN\sj1:\k\Z)xL6\r?pw\VI\\\ZGSasTm\d~4Unw\{im/a-\8\0\\\M[GIvD!-oslД\\$\DMF=\\\'\?\d~\׽v\^IKᨇ\\T\`VaRIrIw\#ak\\Y\"\k:ĸ2v=X)\+,\`\n;969\\Ogd>c-\Z\0\+k;\SEx\'\"\d\\\DZ2ab7ѯe\ٹ\^`\0zf/ȉ5p\"+2ZD!3jtGY:K{a263`.m\'PQ#;ؖ8G&\/S\뷡\a\\'V\'\\흈5\\m\nlP!\\\2~\z\o#Y\#\l \\YNp\el=N[\\D\\kt#\Z\ʨAQFm\~\TnXįK\\\ϠP\R/\DӞV\a:\q!K\ܽ/84E\칞v\i\		\7|3TZ\q\[	\\0=bh\\\v\7T.\\/w\tzuS\Mא9\֬\\M[˦p[>wa\$u(]Bh\Ď,\YH\H\Zw\+\&|H)5+)k:(h\\ZJn\\z}?5{Z4t=\aO#ihӡ\\w\eoԦ[\\\nLxaQퟑxޟ\\%V\ೂ\/h\h\O\c6n/?S\\>,Ar*Ҧ\v<:\mȺa\g\\n\\Tk\\w܄Ww\\\\:>h%\\\,\r.\r\^\\le\B\\K\'\\\ ۵_\JB\}$\'1\@\\\4\"\ tپd\\\o=2n6\uoh#g\\"dՊ܅\5W~w\{Q><baQ,8`\p.\\OD\\n>J+mq/뱩\\\Q\=۴Q\|K\Z\DB\ZL\2\E\L2c(45HdSN\<7w\oj5m%N\g\\ޓ\^\0첉zCd>\\^3oBȽ7hÅ]k\ȂܵR3j[\\\'ǔ_\\\l`5ˋ\\(\[\ntY\\\Z_\\\э4m\\\\\°\4ܨ:]\Z\M`k\T4WW|ۄ#\\90>Y>\\ٝP7[&\J\p\X\\q\V\1<\\ۮ=j_\	f݅2\fc}\jNQ}\L\\\,ӕ󈚈\eG}>\v`$MlB\U\\\j۠%	\=\0 \Qx}F9vM\s6\o\uPH<\B(WVb<˭\貢\.ʬGMU^\\\[sN?s\|P-F\r%\\1\#Z4\-}2ƒW`\Zٻ<t(Ը{\M$UCVs\Y\>ʆdkZol4̥UG\0H\0/\Ap\\J&@.э\\\@s֧fjI^[-wWK\No<\|\'\E\a8ْ\캪u\rLe@\d\\D4\&<\r\\Ƅ5ͷ]K?j\JO\\iuCȭv\\Ԛ\\06FM\0\Mu\\,\\Z\r\	\t\@r-\\#=A7%J\w\ !\$}\5ѡ!\f\s@\H:tj-g\\\uGO8\kd\IJp4\rd3mRv\`ࡶ\`(\J.\nq\EG[\\x\nŝ\b\'{wk(]^ `\\{d\:i\䶧\68[!\\M\\tXc\\n_|\OLz;s-gI]\6LL\!\\x)r4\q\B\n&\\ϚU8l7F>>K_~\S[\?mo^','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1790,'2018-05-20 15:45:19',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\yT\2a{f{c>I\\'\V\ԟ?~\\M\\ڹ\\[S4\w&Uٚ\ʢ޵?TL0\"-\2֧T׹nt\֟F\OuY5ʊg\,5|ɟ⧏\eٸC\L>%j/?D;<\Y4\Sc>7Oiv\\\\\\k iƿ|>\\ff	tT\\\\TW0Ƨ\OJ}|F0>\}\ˬ\\\=:ͪ\F\\Y\O\\\>KL\]/\):?.}|6>\\\GVvo\mY-uOr\\\\g_\\\=R//^^\\\\寯_\\s\\6oT\>S1ɢ\0\\\ET\mU4\m\\\j\P,ϚGi\\S\\\o`?\R]j(\&V\!oYܼe\\wʻjU:U0jiG_\2:<-\\VIeOmݨ1jJ53\n\\\\'!km\ip;\3;\5a\n$?J\'	pUI[\\a)qeSC`1<D\!Uﰼ7mn\qN\\yP\25y\r\/I`nvu\\\0bs4-.\VV\nF0S29{R\%F@\E\'T\\e4\#\M\\`|I08ހ\kY6\r1]\'Į*]	|,̀i\\\ie߁H\\\.>.bߖjb<%j\\\\gϷӌf];K`\4͈t\0cFA\\]=8Чȍ\';\\\\Xh3S9\\Ď\W7ԃ\n\r\"J\\{S\Ne\Dt2 9̛\\%q;ˀY\m\n\\\Ag\ڒs\h %\r\Wӑ @cKb\z<\|t6:Y`\:\ռ\00z\@|Ѱ2jh\\\F\L\\_8#@2ԭ)o+ZZZAJY2ӣVUwǀ\^=bG^X\y\8_\R\@{aj\a\J\'w\0)*Un\S\q+\"Rj\3!)5\r\=4R(3\v\\!ze\r<\ᤁ-\+Nt\\\\ۗ\rw89QM>\|\\;\u\\\|w\yqq7MF\;o\wg{;o݅vo3Q\c\PrHn{z\\"\e\[{5(A\\Zǻj\ACH^*ˬ\ݬ\n\nXûę	7b2J/\,W\\n\>HRu,<p\UV4 rx{2\_Wl-:\Y\[0\]˼-hl8a[\\ Q\nD\n/\y\i$\'pd\Z\g2\\P2\j4.hTI!+\0Pjr\rԨ\\:bɐ\Ƥ,^\"!Q\L[\05\r\[=dQ@Ahq\g\I(\\b:UuU6Vɨ^PK\\uzU\\W\\\}V#w@`vpѠV\\ٖ3&ځ]i^K\o@8\ݺomk\`&ÉC_~8R\s ^vz\HEپS\\(8Im\\Q\7I<\Ȓn\M6nm\\\\"mAm\p\03TDx\\"\\Ȉ+\'\g\\W\}uG\\0:/4ixc`\\n\$PN{^=\\\נ\/$\\\[f|\\]{\.n-\8&|\V6]&(\\\\\\ZRgjo\5\Iд\iqe֚\cߛz.՞yz$w\6\ORx\Θp\0eCk2L\`@pj\\1m}DgYd䡊L^a\M\$/Kw\\(V.ٶ%ϊ\\[7\&4Qg%\\s=f5,j \*]\;G9mPoA\@\BZ\rv\\4Z\WZJ\\\C\,\X\(\]>5y(6Ed\|h\>4[Vݮ󀎷mnYYC\=\\4Tώ\7ɾPB\nh\1y\@v\(m\\\\nM\~2PZhx/k+5\\\@\>\'V\w\N\\g&ɍ\\Z6=F\H\M\W\'pJXp\w.Z?`IgMm6\0@	}D\֩I\j\\.x!;fHftSe\\s6<n>A[v\[!\G0[\\\\r/@X+`:E@Bආ\r\]\r\A\#\ux\k=v(0~\(\\3\[AW+@\e[N\b\__d\0\7ֿࣛ.5YJ+}Ƈ\?\v,wD\C {\V\\	Y)p0\fn\`ys<b\ߚÆ0\uW\0\\ώ\}x\R\Zuz@^\\@njnAo\\=j /&@_\\?FwL\\3SJn\9 ̝gw觯13\!ahS-M#Dn,\e؎ˊyՅ%\\ރX\0||\'F\o\%\\0@:Y+-hЛȨP#qQ\\SO\zDex\uM\[R\)\SǓ\Q0ɠlƺ\\n{u@tt̴NOƋU	%[2,{dا@\K\\ZgύSj\P\-7\B\`(.ٖ>,\{\H|e\l5@N\"\\9ܐ\T/>2L\rZ:{#\\xg\\\\0\r\ᾀ\\"ߗ;4\\\\\E\vxet\42\ZǞ\\zG\\\\Rܘ<X}\,\;H\\B.:q\\t~	C6>\Zb8t%~p\Z#\0k\g`\q\\eYe\z0\Q^A\"w\1T_)y8Va\\"ϼ\rE\jܑI0\|\0Ư>Q\\v\J.ʕ\N}2]AbFӁ\	\\ͰH(\~[\"\K];	O10[Xz\L*zG\\'WB:\r\TPD\>Wf;lD\qհE\Ĉjyv\`V瓆Kljd\ikR:3M\\!\0\\	 \\w3a:Rs?>̑z?\W[`&k\9\4V1ae\0&\\7\\GYe\E\O\xT\J\\0Q$\Z\jS\\\}#\W1irXϚ\\Ǉ>>\Pa\	v\\鄠.87\.P^&B\r]:Gj\\{C\\o\݋\(~S8\)\NZ\\DRJd\=\nH|[\f $Z<e\Z\nd!K`\`}HD1\\f\s\\n\F`[OP:+\'6i\Z\~x\\KA\\\`\cm\\c`UvalO#N}eoY\F\Է3\\"b?\LŹf\+ϹQQ\\ûx\\PQЛ屮ok5.`\\7Y610O޲v|OKC@s8_?\\\	Cajq\'G\a\#\n{1~=\'n\ވiVY@b\'4%;g=\\\Zh\\$\"0\\rZ u&\$Ή\\nj}m\\ͤa\$iW(\0q\jx0-gq\\e\\ں4FF\I	J\0\gaE\ٌ}|\(v	7\\Q	̯z\/ۆ`X!s5s\\Ng2)YRH(\\\ZNfr\l1i\\E\nj\.X\Zlz8<U7:\l\,/\P\Yl_g|u\\!\\\=V\\5X`mٹ8\\\W49\)yo@Jg,\	CUh\0=K\sP\\rj=>R.]\)\\"\$4\&\C\0pf~5C\\ʗP\r]^4iPܥ(\\}ʲ|\}3)\\\'\m\x^\\;!=\1Gu\ `\\C50\\\ZWA\8\kEى\#W(J\Wl\\\gkD\KyWhn\ZY帉d\mkjk\9TN*\ TF0EI܁(Kȳo\q3X7-\J\uH3>\\\uZ\u\SJl8#T\ai\\~\\옶\ \ne\0L53\p\H\\\n32`7NA;㠴\Zac2#\\ǌȳB?ؠ۶ʠF\=z\N;|6Mn9G\\. fux\\!~C#\0[PS\C=ʒS񙺃&>ʹD\Kp$)M7\IM\Z\23Ւ\8\Lߒ+82sܤeN=pz6\Qe\\\d6w\^0jzXR\\&B\G\<@Ԡ\eQ\"GWB\6\DwS\e0\!=e\Qկ\\\*,5l\\\ZGd\b*\\1?JQ\Ws\0]ы\%\rø\1&C\prJ!\xëu(2\1DU$Ⱥ\(\\>\~r\ݍ{ٺSY\ڊ\Me\O<\X)2FG};[\$Ѥ&.\}Fv\'8;,+*\\\.[\(bOT9xƬ\x\\j/#|.max\\Y+\ 1\T\S\*W,G{\ԗl&ܥ\W\ՏuN*]\	\%{\Fq{V4\b\E@\\n\\Jҫ2\\-\(\\\Q׬\$\t\i7(I\%,\"l=\h\"8\(pyr8C\9xlpUNj\\yǧ\Ow82d\\?\D\\kt]\|\^{:\˝	l\nD\0̄X})\"\H\R1ǅx!	\\w\\\(m&\Q{ż1,\0]2\p:\\\9t?9\0Qn\\\n0С[R*\\qwb\<\LJ\4mJ1\nƭT\nιK,C7.WG\\*\\r4I\e3^\fYwͥDC\r艵C\׏X#8!&El6y\6KY\G\)\\[YVoq{\r\2Q!\\s\E\(`\\\z9B\"\3n\Z`\Zi\rSq3̆g\Au$aulk]\!TUI!|\)<cU\Z?Y7\ZzctQwѹ7Y@H\;F2n0\\\\n\P3\b\r\Z\"\M\:\(]\l\K/q\*Kڲ1W\\WuxS}\ɨ\\"P)\$(4\X\)\)߁-\\\@<K7XQ\|*\rw\y\\0ɢEi\\6Pgуc;y\\\8Ù?Y<f<*\P5U,\@\Q+7*\\\`[~\~4\\\\\\Z(SNdiݷ57\\\"p\wTHQ(=3Ң\]G9\/\7-ة=\poXˮ[t\9&R\r5\h\\]|\\n4\}\d7\,b+\m\a\Ё\\\r\u0\I\\܆Q^FVU\\珂$ O<\O˧I\T\raHʉ{\a\H$PW\\\̀\"\"\ܑ	b	a$xJm#T\\}\\Jf\){1Yicʱ\*\\\\tw\)m\\kɎ\\MQ&5\M\Z\"`\\G\Jif\h/\a\"\*j?\\(kX<\'c\\(.@\:J^\\6Q\\OкHS\nዅUNL9/9`\"挏{\x\\\l\\o\ܾ\p\\uD	\E$`<TI\\Z\\v\p\΃h\V\\>\t\H@Rt\\)(.\"CN70Ԅ|`\VM謌lz@\\Kw?m\C\kJ`\Z)\a\n\\d!ߑ\d\b2e7\1\\}ClrY_\\9ZV*wY 8Z\\\	W\N(1֠.\\\ʻ\Z3D\\\]\`\\vFk\;I\'>\tI\ tgWc*\\e#($Ad\Z,͉BxQ\Z`\r\Ȣ\FIQ\\2`!]\0fw9\0&\SVAS?ȋ\_,Pp>TA^(ŏ_z\\Z\'܏\0u\=\bd<\u\);\\0΢\\c\=n\Ѷ)\\CWx\'qخ(w[B}Ƽ	!/\\\\p@\\q2\F-.tA\o~J\Aߍnf?%\O\40\}B[-\\\\YZ\\rcP\\\\\~e\'\tR8\0T\G~W2 Cg\O\te/@)I@\\CшN*u\p>\\0e\r/-\\r\OMY\Я7࿥;c%K,vry1\gᥔ\ب)\"\\\\ \\\-lar!\K\\;\d\\"\p*D\\Y\hR2#T\q;\ \ۃ#\^)j\*J\\\a\rBU杚$q\\r\;,N\J\*z\Vw~^o_Hi<u\\rt@\kĿ¼`Q\^E\[Zd}m\\\+\It _\a\M\n0$|\0Mʸٖ=56\\SZֿ\7gE\Q-v|Mϲ}\~y\_JAS\2\Ehg\\K\q˾\b\1Ok\Zf2&\[\D81\'\Zm\\'cGL\GnTG`j\f\3b#_*!\hWVvd[mg\3\bev\g \2<\\vC\\ci\\nh\b>[h\\\s\]\nۜ`E\55\\.~k\X\KԶl\\W7RE\r\s\\u+D\KxY\m>3\t::/0(\#\6J\\9\'IЮS`\I:ej\n\ٛS4\\\r\\?k7yt\DeW\\Uݪ\"H\Zం8@!5\D\\hLF	xo\0\J1QIi&(\Љ\Ag_\r5Ǐ%7\09؄E\X`0\Ǻ9:\\\G^-F$i\#!S\iK\z\\\aE\(u>zr\yi>ѿH;\Z3p`\{\n\st\T/mB\Գ]o\r-_1a\\I?\)9F \;\n\P{齛\n,.^u \D\Z\,重H\'wa܇i\"ѢZGz \o/Ň\'\]\qJi9\\vԕ\\SЇG\\\\'\)\oÅ֪\E6\\'憜\<\&Ofw{ƭ\{ |\-!C8\"5d\\qHB?sp%{Dm\h@\4#ߝPL\\\0\\"h\Qs\\nly\\MJhI\rZ\ֶV\:T+7\\SCnֱN\~֚S\V8	\S/~cP\0OS\@8}\9`;\?YjS\:\\z\\vSՐ_H\q\E\c/}ѱP\ۮ$\1ŒZٶcqO\\\Mf\O\U? ,ݳN\޵h\+$]0\:\\\\\\"\\=Ɨ\Gy􇎾^)m\M\Z\l\3\f\"݃΢9uZbs[F\(9\\"nI!%3?q\\4C7&SW\&lce\\0כ6\\r6$L\z!|E\\r)T5&\\^c,ZA\\\-?\g*0\D\%\w\\%\ڭi_g\:1\&ctxIm\{хz\mJB\JU<geB{\\~j]իY\FqdY:\\\\r.#Ӯ\/Z56\\sҹ\\)\?\"(5\?\n;>\`a\rw<y\R~`M\'K\!\'\1\r!޶K:ˉnwl\\\\\\Xa,\rK\0aZ?Ч\O20\cn~7\>ҫڼ\x\'\\\,\OM%\\C<\~jG\(~>9c\R|2-~nʕAO<:>\j\7\G3y\0\Uܿ~\<5\i}R:lTl\\ܴkp+\\s\Ρ\\tKZ\\e\M#Q]6s|\nN.ߴc\\\\>s~\'޼\:={B\	n\\\n\'\2[\\\\rX1}D\\`\\8}ͮ\-\L|~=\b׭D\4\\=\\0>\j3Pc\VӾ\|\\\*nVM&\^m\d\\C-I\#:\4܉\\\#\?k\\)u\N\\\-\o\Qo	k\\v\Yamz#\8t_\\\o\};}\|EN\;\L?\[\*^,~B\6ng~­4\s\%p\#\\S\~\\\5h\\\Z\}D|C8ډ\n\nN)\}\\\40\vZ<Wtks=O\v\\۩:o(D\`75e\\l%\A5M_gK\e8\\\|Vi[\p\eJC\j$2\\%KQ\U\3\m.˕KGu\y@B߳\8\!\ZqNTՉ:\\EFw	E0\\\Q]\ntN\sj1:\k\Z)xL6\r?pw\VI\\\ZGSasTm\d~4Unw\{im/a-\8\0\\\M[GIvD!-oslД\\$\DMF=\\\'\?\d~\׽v\^IKᨇ\\T\`VaRIrIw\#ak\\Y\"\k:ĸ2v=X)\+,\`\n;969\\Ogd>c-\Z\0\+k;\SEx\'\"\d\\\DZ2ab7ѯe\ٹ\^`\0zf/ȉ5p\"+2ZD!3jtGY:K{a263`.m\'PQ#;ؖ8G&\/S\뷡\a\\'V\'\\흈5\\m\nlP!\\\2~\z\o#Y\#\l \\YNp\el=N[\\D\\kt#\Z\ʨAQFm\~\TnXįK\\\ϠP\R/\DӞV\a:\q!K\ܽ/84E\칞v\i\		\7|3TZ\q\[	\\0=bh\\\v\7T.\\/w\tzuS\Mא9\֬\\M[˦p[>wa\$u(]Bh\Ď,\YH\H\Zw\+\&|H)5+)k:(h\\ZJn\\z}?5{Z4t=\aO#ihӡ\\w\eoԦ[\\\nLxaQퟑxޟ\\%V\ೂ\/h\h\O\c6n/?S\\>,Ar*Ҧ\v<:\mȺa\g\\n\\Tk\\w܄Ww\\\\:>h%\\\,\r.\r\^\\le\B\\K\'\\\ ۵_\JB\}$\'1\@\\\4\"\ tپd\\\o=2n6\uoh#g\\"dՊ܅\5W~w\{Q><baQ,8`\p.\\OD\\n>J+mq/뱩\\\Q\=۴Q\|K\Z\DB\ZL\2\E\L2c(45HdSN\<7w\oj5m%N\g\\ޓ\^\0첉zCd>\\^3oBȽ7hÅ]k\ȂܵR3j[\\\'ǔ_\\\l`5ˋ\\(\[\ntY\\\Z_\\\э4m\\\\\°\4ܨ:]\Z\M`k\T4WW|ۄ#\\90>Y>\\ٝP7[&\J\p\X\\q\V\1<\\ۮ=j_\	f݅2\fc}\jNQ}\L\\\,ӕ󈚈\eG}>\v`$MlB\U\\\j۠%	\=\0 \Qx}F9vM\s6\o\uPH<\B(WVb<˭\貢\.ʬGMU^\\\[sN?s\|P-F\r%\\1\#Z4\-}2ƒW`\Zٻ<t(Ը{\M$UCVs\Y\>ʆdkZol4̥UG\0H\0/\Ap\\J&@.э\\\@s֧fjI^[-wWK\No<\|\'\E\a8ْ\캪u\rLe@\d\\D4\&<\r\\Ƅ5ͷ]K?j\JO\\iuCȭv\\Ԛ\\06FM\0\Mu\\,\\Z\r\	\t\@r-\\#=A7%J\w\ !\$}\5ѡ!\f\s@\H:tj-g\\\uGO8\kd\IJp4\rd3mRv\`ࡶ\`(\J.\nq\EG[\\x\nŝ\b\'{wk(]^ `\\{d\:i\䶧\68[!\\M\\tXc\\n_|\OLz;s-gI]\6LL\!\\x)r4\q\B\n&\\ϚU8l7F>>K_~\S[\?mo^','EZ-Page with ID 10 updated.','info'),(1791,'2018-05-20 15:45:19',1,'ezpages.php','ezID=10','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1792,'2018-05-20 15:45:20',1,'ezpages.php','ezID=10','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1793,'2018-05-20 15:45:32',1,'ezpages.php','page=1&ezID=7','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1794,'2018-05-20 15:45:33',1,'ezpages.php','page=1&ezID=7','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1795,'2018-05-20 15:45:35',1,'ezpages.php','page=1&ezID=7&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1796,'2018-05-20 15:45:36',1,'ezpages.php','page=1&ezID=7&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1797,'2018-05-20 15:46:08',1,'ezpages.php','page=1&action=update','24.72.164.167',0,'',_binary 'e=\0di\\\@\ɕ\_8\ܑ\Gy\R7uQ\ٲC!\yx\náФ\Z\c-\۶^ll]\"5wjِ\ R`\F[዆Nio7zM\ˊ)f*4\O\u3.<9<˖\0\8`X@\0Y\A7~-@L\r','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1798,'2018-05-20 15:46:09',1,'ezpages.php','page=1&action=update','24.72.164.167',1,'',_binary 'e=\0di\\\@\ɕ\_8\ܑ\Gy\R7uQ\ٲC!\yx\náФ\Z\c-\۶^ll]\"5wjِ\ R`\F[዆Nio7zM\ˊ)f*4\O\u3.<9<˖\0\8`X@\0Y\A7~-@L\r','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1799,'2018-05-20 15:46:09',1,'ezpages.php','page=1&action=update','24.72.164.167',0,'',_binary 'e=\0di\\\@\ɕ\_8\ܑ\Gy\R7uQ\ٲC!\yx\náФ\Z\c-\۶^ll]\"5wjِ\ R`\F[዆Nio7zM\ˊ)f*4\O\u3.<9<˖\0\8`X@\0Y\A7~-@L\r','EZ-Page with ID 7 updated.','info'),(1800,'2018-05-20 15:46:09',1,'ezpages.php','page=1&ezID=7','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1801,'2018-05-20 15:46:10',1,'ezpages.php','page=1&ezID=7','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1802,'2018-05-20 16:45:03',0,'login.php ','camefrom=ezpages.php&ezID=8&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [login.php] with action=new. Review page_parameters and postdata for details.','info'),(1803,'2018-05-20 16:45:04',0,'login.php ','camefrom=ezpages.php&ezID=8&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1804,'2018-05-20 16:45:28',0,'login.php Eagle','camefrom=ezpages.php&ezID=8&action=new','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\7OIK36L44\\TCCs#\d\d3K\%Ĕ\̼\\T\\TZ\0','Accessed page [login.php] with action=do7dff31c916c91ce117289d4c1c06091d. Review page_parameters and postdata for details.','info'),(1805,'2018-05-20 16:45:28',0,'login.php Eagle','camefrom=ezpages.php&ezID=8&action=new','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\7OIK36L44\\TCCs#\d\d3K\%Ĕ\̼\\T\\TZ\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1806,'2018-05-20 16:45:29',1,'ezpages.php','ezID=8&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1807,'2018-05-20 16:45:30',1,'ezpages.php','ezID=8&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1808,'2018-05-20 16:47:00',1,'ezpages.php','ezID=8','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1809,'2018-05-20 16:47:01',1,'ezpages.php','ezID=8','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1810,'2018-05-20 16:47:50',1,'ezpages.php','page=1&ezID=4','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1811,'2018-05-20 16:47:50',1,'ezpages.php','ezID=4&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1812,'2018-05-20 16:47:51',1,'ezpages.php','page=1&ezID=4','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1813,'2018-05-20 16:47:51',1,'ezpages.php','ezID=4&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1814,'2018-05-20 16:47:59',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'e1\0E23\\\!FIej\\$\B\\a\Zfg6fY:\٩iqp\&\P@t.\\%o/D-qa9DV<⊳t}\\ko\'%F\aZ\\6,e6\ڃR\\Z\n-\$8\>_','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1815,'2018-05-20 16:47:59',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary 'e1\0E23\\\!FIej\\$\B\\a\Zfg6fY:\٩iqp\&\P@t.\\%o/D-qa9DV<⊳t}\\ko\'%F\aZ\\6,e6\ڃR\\Z\n-\$8\>_','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1816,'2018-05-20 16:47:59',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'e1\0E23\\\!FIej\\$\B\\a\Zfg6fY:\٩iqp\&\P@t.\\%o/D-qa9DV<⊳t}\\ko\'%F\aZ\\6,e6\ڃR\\Z\n-\$8\>_','EZ-Page with ID 4 updated.','info'),(1817,'2018-05-20 16:48:00',1,'ezpages.php','ezID=4','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1818,'2018-05-20 16:48:00',1,'ezpages.php','ezID=4','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1819,'2018-05-20 16:48:21',1,'ezpages.php','ezID=4&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1820,'2018-05-20 16:48:21',1,'ezpages.php','ezID=4&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1821,'2018-05-20 16:48:29',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'e\n\0_Ez ޼\3h+v\H26\\\V7\/	\\4x%g\\l̲Du\)#SW\\\\MJ\r\0:\\\K\\S9_(j+PZ\\r\0y\\g\\\\\\NK]\|\3+lX*&\l.E^\3\=5\Z9H\nq7}\0','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1822,'2018-05-20 16:48:29',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary 'e\n\0_Ez ޼\3h+v\H26\\\V7\/	\\4x%g\\l̲Du\)#SW\\\\MJ\r\0:\\\K\\S9_(j+PZ\\r\0y\\g\\\\\\NK]\|\3+lX*&\l.E^\3\=5\Z9H\nq7}\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1823,'2018-05-20 16:48:29',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'e\n\0_Ez ޼\3h+v\H26\\\V7\/	\\4x%g\\l̲Du\)#SW\\\\MJ\r\0:\\\K\\S9_(j+PZ\\r\0y\\g\\\\\\NK]\|\3+lX*&\l.E^\3\=5\Z9H\nq7}\0','EZ-Page with ID 4 updated.','info'),(1824,'2018-05-20 16:48:30',1,'ezpages.php','ezID=4','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1825,'2018-05-20 16:48:30',1,'ezpages.php','ezID=4','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1826,'2018-05-20 16:48:42',1,'ezpages.php','ezID=7&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1827,'2018-05-20 16:48:42',1,'ezpages.php','ezID=7&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1828,'2018-05-20 16:49:13',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'm10\n\l,\Z\\\X]\.i\\\\߽\*8\}iTV?Ѓ\Y\.E6ܡrˮF\TY`	&3\4+\.ϚG-j9!c \zS\fE1m\\Jo\\6\^4\fY\\;Z\;`Y@\1.ѳ\{\ڥ\01\\r:\','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(1829,'2018-05-20 16:49:14',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary 'm10\n\l,\Z\\\X]\.i\\\\߽\*8\}iTV?Ѓ\Y\.E6ܡrˮF\TY`	&3\4+\.ϚG-j9!c \zS\fE1m\\Jo\\6\^4\fY\\;Z\;`Y@\1.ѳ\{\ڥ\01\\r:\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1830,'2018-05-20 16:49:14',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'm10\n\l,\Z\\\X]\.i\\\\߽\*8\}iTV?Ѓ\Y\.E6ܡrˮF\TY`	&3\4+\.ϚG-j9!c \zS\fE1m\\Jo\\6\^4\fY\\;Z\;`Y@\1.ѳ\{\ڥ\01\\r:\','EZ-Page with ID 7 updated.','info'),(1831,'2018-05-20 16:49:14',1,'ezpages.php','ezID=7','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1832,'2018-05-20 16:49:14',1,'ezpages.php','ezID=7','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1833,'2018-05-20 16:50:58',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1834,'2018-05-20 16:50:59',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1835,'2018-05-20 16:51:29',1,'layout_controller.php','cID=142&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(1836,'2018-05-20 16:51:30',1,'layout_controller.php','cID=142&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1837,'2018-05-20 16:52:38',1,'layout_controller.php','cID=132','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1838,'2018-05-20 16:52:38',1,'layout_controller.php','cID=132','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1839,'2018-05-20 16:52:42',1,'layout_controller.php','cID=132&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(1840,'2018-05-20 16:52:43',1,'layout_controller.php','cID=132&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1841,'2018-05-20 16:53:12',1,'layout_controller.php','cID=132&action=save&layout_box_name=banner_box.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\\\rp\\g\\)[\\\_\\̋/\L)\\0[\\\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(1842,'2018-05-20 16:53:12',1,'layout_controller.php','cID=132&action=save&layout_box_name=banner_box.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\\\rp\\g\\)[\\\_\\̋/\L)\\0[\\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1843,'2018-05-20 16:53:12',1,'layout_controller.php','cID=132','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1844,'2018-05-20 16:53:13',1,'layout_controller.php','cID=132','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1845,'2018-05-20 16:53:52',1,'layout_controller.php','cID=140','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1846,'2018-05-20 16:53:52',1,'layout_controller.php','cID=140','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1847,'2018-05-20 16:53:54',1,'layout_controller.php','cID=140&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(1848,'2018-05-20 16:53:55',1,'layout_controller.php','cID=140&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1849,'2018-05-20 16:54:05',1,'layout_controller.php','cID=140&action=save&layout_box_name=ezpages.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\\t\rqI\g\\\\0\0dFqF~9X273/<3$ls-\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(1850,'2018-05-20 16:54:05',1,'layout_controller.php','cID=140&action=save&layout_box_name=ezpages.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\\t\rqI\g\\\\0\0dFqF~9X273/<3$ls-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1851,'2018-05-20 16:54:06',1,'layout_controller.php','cID=140','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1852,'2018-05-20 16:54:06',1,'layout_controller.php','cID=140','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1853,'2018-05-20 16:54:26',1,'layout_controller.php','cID=140&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(1854,'2018-05-20 16:54:26',1,'layout_controller.php','cID=140&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(1855,'2018-05-20 16:54:26',1,'layout_controller.php','cID=140&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1856,'2018-05-20 16:54:27',1,'layout_controller.php','cID=140&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1857,'2018-05-20 16:54:38',1,'layout_controller.php','cID=140&action=save&layout_box_name=ezpages.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\\Lq\\g\\bU\0dwqF~9X273/<3$lu-\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(1858,'2018-05-20 16:54:39',1,'layout_controller.php','cID=140&action=save&layout_box_name=ezpages.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\\Lq\\g\\bU\0dwqF~9X273/<3$lu-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1859,'2018-05-20 16:54:39',1,'layout_controller.php','cID=140','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1860,'2018-05-20 16:54:40',1,'layout_controller.php','cID=140','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1861,'2018-05-20 16:56:43',1,'layout_controller.php','cID=144','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1862,'2018-05-20 16:56:43',1,'layout_controller.php','cID=144&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(1863,'2018-05-20 16:56:44',1,'layout_controller.php','cID=144','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1864,'2018-05-20 16:56:44',1,'layout_controller.php','cID=144&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1865,'2018-05-20 17:01:38',1,'layout_controller.php','cID=140&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(1866,'2018-05-20 17:01:38',1,'layout_controller.php','cID=140&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1867,'2018-05-20 17:05:00',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(1868,'2018-05-20 17:05:00',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1869,'2018-05-20 17:14:49',1,'developers_tool_kit.php','','24.72.164.167',0,'',_binary '\0','Accessed page [developers_tool_kit.php]','info'),(1870,'2018-05-20 17:14:50',1,'developers_tool_kit.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1871,'2018-05-20 17:15:19',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NTRrputs\rqV\Q*O\\I-3D\TBFV\\d恕(\\0','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(1872,'2018-05-20 17:15:20',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NTRrputs\rqV\Q*O\\I-3D\TBFV\\d恕(\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1873,'2018-05-20 17:15:39',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NTRrputs\r\nqV\Q*O\\I-*4D\TBfV\\d恕(\\0','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(1874,'2018-05-20 17:15:40',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NTRrputs\r\nqV\Q*O\\I-*4D\TBfV\\d恕(\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1875,'2018-05-20 17:23:04',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR\-\/*I\+Q\\\.V\Q*O\\I-J\Z\"qK*RB@sJR+J\s2\j','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(1876,'2018-05-20 17:23:05',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR\-\/*I\+Q\\\.V\Q*O\\I-J\Z\"qK*RB@sJR+J\s2\j','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1877,'2018-05-20 17:31:10',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(1878,'2018-05-20 17:31:11',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1879,'2018-05-20 17:31:32',1,'define_pages_editor.php','define_it=11&action=new_page','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php] with action=new_page. Review page_parameters and postdata for details.','info'),(1880,'2018-05-20 17:31:32',1,'define_pages_editor.php','define_it=11&action=new_page','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1881,'2018-05-20 17:31:43',1,'define_pages_editor.php','lngdir=english&filename=define_shippinginfo.php&action=save','24.72.164.167',0,'',_binary 'Y\n\\JIKY+ ,\\ i\4gzȎ\\\Q\ s\B]\݇<X5]SZyY\\+sU4U/_w\W[׶t}\̫W\7:rZQe.D)\nE{g+}mg\Fisx\\UaS4:\4q	\.u4jeܭT\x>-(\\{T\\e9\)<6\.5Pb䌵kr>p8\e֔P»@Dե\ \Tі\nݙ(B	Q|\\0NMl\'?c9u94\\\\=Q͍p\\CV\\#\q[2\r:\P\!T\Z]pZ\m\\\\\YUMfycsS\\n`SU_݊H\Z.\\5Qϻ0\\#ClEQY\\V\;\Bі;\\\N?\n\"_xc\V{o\@\<\I=3\N(6J	5\egDla\\\0hY\2T`g?@*\yUUΛL\\z \Lۑ\k(w.)\Z\\6Wk\\GCWb\A	1uʁ\0t*[U\"Fv X\3E)J\A\l\\\F\\c\0\o\EGg\\\`E\0\~IW\0dR5D!8,\\D0J\0p\\%;xF\"\\rXT}՚\\\l٥\ZY:[ U\JF1C\y\o\A\Ť\AR8Q0̱4\AT)T<<\r5[\楝*\\n5~\6\i\C?P _j\P\nXka4		\<Q*`BV+QX#\Y\\F0\\tx)&\7\Ajj^;K\0\"\\>žgl8\rx#PZ\Fh\0\Mu\rG@\eya|j\c\n\}RV:6\\[#r\@n\V<\\\r\ٌK@\ o\O\	\ZiaU\`0(\e	\ϡ4Q2u 8p:D)%4\«\n\!yK>\¨K]\dwH\\lQ\`PK%;0\\\\3\-\Zh\oa[\\<MW+KQg~\ՠ|s|\\n(ꚮ\\+-m\Pc f\\\\0B9\\1B_D\ C~m@\\%pȏ{{\\t\\}u\\9\\\t<\;\afν:Yb\^gxz%G׵Z`8\".W0_\NE\ZA\.Wa\ZG6Dt\TԷ+/ĳB\Sߪ9Ǡ*:M{R\ZsVx\0&\~\\2\ٲ?:?@\'ʘZe\sM|h(,Եok<\٦Q\)\\Z3zzΦ\9N\\%H\#^w֬-h6=\:E\\7+\#\7\\nS\6mq\Z\rtt\l\0#u\w^nK܂N\	\\!\"#u^T\ѝ\\'_F=^:b\\\3=O}\A\U8|610\nh%*\\udp\07\<\\Q\\ɘa}Ns%l>ᄃq|%	\yq\R\nsTkNGE\8v8\}>e;괓~dN\V\'(s\\zvz҅4	\5&\\\\\\\#\ϟ̔kH!(3ww\@[o[G՜6;y+%V\D_ﶤȄRXUM>\Z9;\3ދ\6KrcW\	NJD\\<hb\\/Ҫٷ\]	9vl$I\\'GE8<m:1q\w\\\_v&\\o\\m\\ژT:N\\LP½?f9;?\\\?yLo.i\=DO\ϜC3\\"7MsQ[\\jZM\n{6Sj\\4EQ\\ˢ=R\0է͂%e.-q]/\\Km\r7uT\-~-\lm;u0=Ci$eM\\\S\\'_@\T\\c\\1q7s\gz47,@MDQ;BV\[\&[D7\\ۺ>\\iWnڗ\q\\\'*DM\,|j36v\(U\ZP߼㞤d]G	X\\d#Ƥ\A\\\Eza犜ZB\l\$ɲIwJNâ7W\\t{[b\)Qf)sgu7e%lſIƁD\o0\jX4Ǜ\r\%\2e,L\pC\L/{Ds0\"\6<\:[\B7@ǲƻd\ۈO=\(lj\Kԃ7\\\J=\\\%	`LWj\ÌWW!J3f\5\\:~B>\_\ԃ\\lqJ\Z)yNj[\\˦l\r\\9eD\MxND%GRq\)1k\"~\M%%ƚy\-_\\ryեf2\Z!,\\t*\rɰ\0Ƶ\;\]ffR\"\\Q\^*xN\ҥnWçq#\̤\0Q\]\(~N\q\\\\Q[Զ ܙD\\*&P̝\vWLR\iq\S.Ċbs޼\\\se\r<އ\\tO\q\\\KD\)iĖQ4\V\1u{Qr,.̌%a\##t@Q9\Z[[[2tJ\\\,m\ko8/w~Zin%~.\cqϏU\\A\YB\1ؘ\\\0\\RT\\#6SE\X\gk\s$\\\Ee`\]\$bHB FZr++\E_\r\D.\\\_RֶaIwmՆ`rO[A\Fg\bOy\4\-\088<Y?*\\]_?\\!z5z̩>ǃ\Ɠo\ZS/ͫE\\\','Accessed page [define_pages_editor.php] with action=save. Review page_parameters and postdata for details.','info'),(1882,'2018-05-20 17:31:44',1,'define_pages_editor.php','lngdir=english&filename=define_shippinginfo.php&action=save','24.72.164.167',1,'',_binary 'Y\n\\JIKY+ ,\\ i\4gzȎ\\\Q\ s\B]\݇<X5]SZyY\\+sU4U/_w\W[׶t}\̫W\7:rZQe.D)\nE{g+}mg\Fisx\\UaS4:\4q	\.u4jeܭT\x>-(\\{T\\e9\)<6\.5Pb䌵kr>p8\e֔P»@Dե\ \Tі\nݙ(B	Q|\\0NMl\'?c9u94\\\\=Q͍p\\CV\\#\q[2\r:\P\!T\Z]pZ\m\\\\\YUMfycsS\\n`SU_݊H\Z.\\5Qϻ0\\#ClEQY\\V\;\Bі;\\\N?\n\"_xc\V{o\@\<\I=3\N(6J	5\egDla\\\0hY\2T`g?@*\yUUΛL\\z \Lۑ\k(w.)\Z\\6Wk\\GCWb\A	1uʁ\0t*[U\"Fv X\3E)J\A\l\\\F\\c\0\o\EGg\\\`E\0\~IW\0dR5D!8,\\D0J\0p\\%;xF\"\\rXT}՚\\\l٥\ZY:[ U\JF1C\y\o\A\Ť\AR8Q0̱4\AT)T<<\r5[\楝*\\n5~\6\i\C?P _j\P\nXka4		\<Q*`BV+QX#\Y\\F0\\tx)&\7\Ajj^;K\0\"\\>žgl8\rx#PZ\Fh\0\Mu\rG@\eya|j\c\n\}RV:6\\[#r\@n\V<\\\r\ٌK@\ o\O\	\ZiaU\`0(\e	\ϡ4Q2u 8p:D)%4\«\n\!yK>\¨K]\dwH\\lQ\`PK%;0\\\\3\-\Zh\oa[\\<MW+KQg~\ՠ|s|\\n(ꚮ\\+-m\Pc f\\\\0B9\\1B_D\ C~m@\\%pȏ{{\\t\\}u\\9\\\t<\;\afν:Yb\^gxz%G׵Z`8\".W0_\NE\ZA\.Wa\ZG6Dt\TԷ+/ĳB\Sߪ9Ǡ*:M{R\ZsVx\0&\~\\2\ٲ?:?@\'ʘZe\sM|h(,Եok<\٦Q\)\\Z3zzΦ\9N\\%H\#^w֬-h6=\:E\\7+\#\7\\nS\6mq\Z\rtt\l\0#u\w^nK܂N\	\\!\"#u^T\ѝ\\'_F=^:b\\\3=O}\A\U8|610\nh%*\\udp\07\<\\Q\\ɘa}Ns%l>ᄃq|%	\yq\R\nsTkNGE\8v8\}>e;괓~dN\V\'(s\\zvz҅4	\5&\\\\\\\#\ϟ̔kH!(3ww\@[o[G՜6;y+%V\D_ﶤȄRXUM>\Z9;\3ދ\6KrcW\	NJD\\<hb\\/Ҫٷ\]	9vl$I\\'GE8<m:1q\w\\\_v&\\o\\m\\ژT:N\\LP½?f9;?\\\?yLo.i\=DO\ϜC3\\"7MsQ[\\jZM\n{6Sj\\4EQ\\ˢ=R\0է͂%e.-q]/\\Km\r7uT\-~-\lm;u0=Ci$eM\\\S\\'_@\T\\c\\1q7s\gz47,@MDQ;BV\[\&[D7\\ۺ>\\iWnڗ\q\\\'*DM\,|j36v\(U\ZP߼㞤d]G	X\\d#Ƥ\A\\\Eza犜ZB\l\$ɲIwJNâ7W\\t{[b\)Qf)sgu7e%lſIƁD\o0\jX4Ǜ\r\%\2e,L\pC\L/{Ds0\"\6<\:[\B7@ǲƻd\ۈO=\(lj\Kԃ7\\\J=\\\%	`LWj\ÌWW!J3f\5\\:~B>\_\ԃ\\lqJ\Z)yNj[\\˦l\r\\9eD\MxND%GRq\)1k\"~\M%%ƚy\-_\\ryեf2\Z!,\\t*\rɰ\0Ƶ\;\]ffR\"\\Q\^*xN\ҥnWçq#\̤\0Q\]\(~N\q\\\\Q[Զ ܙD\\*&P̝\vWLR\iq\S.Ċbs޼\\\se\r<އ\\tO\q\\\KD\)iĖQ4\V\1u{Qr,.̌%a\##t@Q9\Z[[[2tJ\\\,m\ko8/w~Zin%~.\cqϏU\\A\YB\1ؘ\\\0\\RT\\#6SE\X\gk\s$\\\Ee`\]\$bHB FZr++\E_\r\D.\\\_RֶaIwmՆ`rO[A\Fg\bOy\4\-\088<Y?*\\]_?\\!z5z̩>ǃ\Ɠo\ZS/ͫE\\\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1883,'2018-05-20 17:31:44',1,'define_pages_editor.php','lngdir=english&filename=define_shippinginfo.php&action=save','24.72.164.167',0,'',_binary 'Y\n\\JIKY+ ,\\ i\4gzȎ\\\Q\ s\B]\݇<X5]SZyY\\+sU4U/_w\W[׶t}\̫W\7:rZQe.D)\nE{g+}mg\Fisx\\UaS4:\4q	\.u4jeܭT\x>-(\\{T\\e9\)<6\.5Pb䌵kr>p8\e֔P»@Dե\ \Tі\nݙ(B	Q|\\0NMl\'?c9u94\\\\=Q͍p\\CV\\#\q[2\r:\P\!T\Z]pZ\m\\\\\YUMfycsS\\n`SU_݊H\Z.\\5Qϻ0\\#ClEQY\\V\;\Bі;\\\N?\n\"_xc\V{o\@\<\I=3\N(6J	5\egDla\\\0hY\2T`g?@*\yUUΛL\\z \Lۑ\k(w.)\Z\\6Wk\\GCWb\A	1uʁ\0t*[U\"Fv X\3E)J\A\l\\\F\\c\0\o\EGg\\\`E\0\~IW\0dR5D!8,\\D0J\0p\\%;xF\"\\rXT}՚\\\l٥\ZY:[ U\JF1C\y\o\A\Ť\AR8Q0̱4\AT)T<<\r5[\楝*\\n5~\6\i\C?P _j\P\nXka4		\<Q*`BV+QX#\Y\\F0\\tx)&\7\Ajj^;K\0\"\\>žgl8\rx#PZ\Fh\0\Mu\rG@\eya|j\c\n\}RV:6\\[#r\@n\V<\\\r\ٌK@\ o\O\	\ZiaU\`0(\e	\ϡ4Q2u 8p:D)%4\«\n\!yK>\¨K]\dwH\\lQ\`PK%;0\\\\3\-\Zh\oa[\\<MW+KQg~\ՠ|s|\\n(ꚮ\\+-m\Pc f\\\\0B9\\1B_D\ C~m@\\%pȏ{{\\t\\}u\\9\\\t<\;\afν:Yb\^gxz%G׵Z`8\".W0_\NE\ZA\.Wa\ZG6Dt\TԷ+/ĳB\Sߪ9Ǡ*:M{R\ZsVx\0&\~\\2\ٲ?:?@\'ʘZe\sM|h(,Եok<\٦Q\)\\Z3zzΦ\9N\\%H\#^w֬-h6=\:E\\7+\#\7\\nS\6mq\Z\rtt\l\0#u\w^nK܂N\	\\!\"#u^T\ѝ\\'_F=^:b\\\3=O}\A\U8|610\nh%*\\udp\07\<\\Q\\ɘa}Ns%l>ᄃq|%	\yq\R\nsTkNGE\8v8\}>e;괓~dN\V\'(s\\zvz҅4	\5&\\\\\\\#\ϟ̔kH!(3ww\@[o[G՜6;y+%V\D_ﶤȄRXUM>\Z9;\3ދ\6KrcW\	NJD\\<hb\\/Ҫٷ\]	9vl$I\\'GE8<m:1q\w\\\_v&\\o\\m\\ژT:N\\LP½?f9;?\\\?yLo.i\=DO\ϜC3\\"7MsQ[\\jZM\n{6Sj\\4EQ\\ˢ=R\0է͂%e.-q]/\\Km\r7uT\-~-\lm;u0=Ci$eM\\\S\\'_@\T\\c\\1q7s\gz47,@MDQ;BV\[\&[D7\\ۺ>\\iWnڗ\q\\\'*DM\,|j36v\(U\ZP߼㞤d]G	X\\d#Ƥ\A\\\Eza犜ZB\l\$ɲIwJNâ7W\\t{[b\)Qf)sgu7e%lſIƁD\o0\jX4Ǜ\r\%\2e,L\pC\L/{Ds0\"\6<\:[\B7@ǲƻd\ۈO=\(lj\Kԃ7\\\J=\\\%	`LWj\ÌWW!J3f\5\\:~B>\_\ԃ\\lqJ\Z)yNj[\\˦l\r\\9eD\MxND%GRq\)1k\"~\M%%ƚy\-_\\ryեf2\Z!,\\t*\rɰ\0Ƶ\;\]ffR\"\\Q\^*xN\ҥnWçq#\̤\0Q\]\(~N\q\\\\Q[Զ ܙD\\*&P̝\vWLR\iq\S.Ċbs޼\\\se\r<އ\\tO\q\\\KD\)iĖQ4\V\1u{Qr,.̌%a\##t@Q9\Z[[[2tJ\\\,m\ko8/w~Zin%~.\cqϏU\\A\YB\1ؘ\\\0\\RT\\#6SE\X\gk\s$\\\Ee`\]\$bHB FZr++\E_\r\D.\\\_RֶaIwmՆ`rO[A\Fg\bOy\4\-\088<Y?*\\]_?\\!z5z̩>ǃ\Ɠo\ZS/ͫE\\\','Define-Page-Editor was used to save changes to file /home/surpro/public_html/surpro8/includes/languages/english/html_includes/define_shippinginfo.php','info'),(1884,'2018-05-20 17:31:44',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(1885,'2018-05-20 17:31:45',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1886,'2018-05-20 17:32:16',1,'define_pages_editor.php','define_it=10&action=new_page','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php] with action=new_page. Review page_parameters and postdata for details.','info'),(1887,'2018-05-20 17:32:16',1,'define_pages_editor.php','define_it=10&action=new_page','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1888,'2018-05-20 17:32:48',1,'define_pages_editor.php','lngdir=english&filename=define_privacy.php&action=save','24.72.164.167',0,'',_binary 'uS\@\K/nz/coZ\%P\]%WFZ\',^\\!`˒f43ٝ9я P.\}\>\r\nOz\\x蕯^T\L9\f̵D|\\\Kl&*¬-\|\'Y\pJ\\0a\")p>NXX2HRF̐qNF}l\b#ϳ}֊:M5NūE\苆pL\\ש\\ߤȌê,^`zg@9h\¢7\Z,Z0\ϲѵ\$cڃ gg]\\/qב56IK\\MJ>sH\\r4Teo2k,d;\o΅`\\n:z?!\r\@9:8WǠ9\D~@LIn\rM\ZԖvvgh!у?X+\\r\\Jnczw\ج}\`K\$\rj\\T\\[ʧ%sXo\غT\AĂCS9;^k\u#\\0<\0\mo$ܥY|5\F\\\\\{ʚ8\_\\n\~','Accessed page [define_pages_editor.php] with action=save. Review page_parameters and postdata for details.','info'),(1889,'2018-05-20 17:32:48',1,'define_pages_editor.php','lngdir=english&filename=define_privacy.php&action=save','24.72.164.167',1,'',_binary 'uS\@\K/nz/coZ\%P\]%WFZ\',^\\!`˒f43ٝ9я P.\}\>\r\nOz\\x蕯^T\L9\f̵D|\\\Kl&*¬-\|\'Y\pJ\\0a\")p>NXX2HRF̐qNF}l\b#ϳ}֊:M5NūE\苆pL\\ש\\ߤȌê,^`zg@9h\¢7\Z,Z0\ϲѵ\$cڃ gg]\\/qב56IK\\MJ>sH\\r4Teo2k,d;\o΅`\\n:z?!\r\@9:8WǠ9\D~@LIn\rM\ZԖvvgh!у?X+\\r\\Jnczw\ج}\`K\$\rj\\T\\[ʧ%sXo\غT\AĂCS9;^k\u#\\0<\0\mo$ܥY|5\F\\\\\{ʚ8\_\\n\~','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1890,'2018-05-20 17:32:48',1,'define_pages_editor.php','lngdir=english&filename=define_privacy.php&action=save','24.72.164.167',0,'',_binary 'uS\@\K/nz/coZ\%P\]%WFZ\',^\\!`˒f43ٝ9я P.\}\>\r\nOz\\x蕯^T\L9\f̵D|\\\Kl&*¬-\|\'Y\pJ\\0a\")p>NXX2HRF̐qNF}l\b#ϳ}֊:M5NūE\苆pL\\ש\\ߤȌê,^`zg@9h\¢7\Z,Z0\ϲѵ\$cڃ gg]\\/qב56IK\\MJ>sH\\r4Teo2k,d;\o΅`\\n:z?!\r\@9:8WǠ9\D~@LIn\rM\ZԖvvgh!у?X+\\r\\Jnczw\ج}\`K\$\rj\\T\\[ʧ%sXo\غT\AĂCS9;^k\u#\\0<\0\mo$ܥY|5\F\\\\\{ʚ8\_\\n\~','Define-Page-Editor was used to save changes to file /home/surpro/public_html/surpro8/includes/languages/english/html_includes/define_privacy.php','info'),(1891,'2018-05-20 17:32:48',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(1892,'2018-05-20 17:32:49',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1893,'2018-05-20 17:33:02',1,'define_pages_editor.php','define_it=2&action=new_page','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php] with action=new_page. Review page_parameters and postdata for details.','info'),(1894,'2018-05-20 17:33:03',1,'define_pages_editor.php','define_it=2&action=new_page','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1895,'2018-05-20 17:33:39',1,'define_pages_editor.php','lngdir=english&filename=define_conditions.php&action=save','24.72.164.167',0,'',_binary 'Wa\6+\}\rw]?\r\nk\k18`Pd\\N<Ik\{\\ɚnb[H>*]m\\mC\W?\\ݷ\wO7n\n_\\\~\\\\)=_\\\0HƘ\.\\\)V-y5\\;.tL$7)Ʉ:\\&º\$,։مZ\R\\]\\\r\&v0\6z{\Ωɺ>+W\\\V\9Śq(cM@n\X\C¥3%Fm\\\;\\.Fsh\\L~B/yM1\u\ߞ\h\)nbI:\\\"N\\\\a}\,pzuwK]UscE?d=(\\\r\\\Vg\;fM\0(M	[\0_ѻ`ך\idJ\0qLp\&.&\r᱘ #\o}L2\*~\r< \I(\;\\iZT@r\\n\28/~\\[Ss>x-\f\\p枉\\"\΄\'cW(\\\I\\9U\\\0Mq\*֕ޤdBH3\X;\l\:fE\5\]\W\rR\"ڴ4\Zʝ+f\+\L\yhx\\p;Vn8\)QWC7\.5&2bC\=\q\\0@_vIx4Q\\ORLD\&U\/\w λ9\jh.\{\f<@a\Ja\6oz$ͥIjw\8\ I!|-*%W\n&IDDygzy`<k\78ι)\\\!wi\"y\\N\\"4\%p7΋Kw\\	1hl\:\<\!FFHb|c[DO\r\0\\l\p\\&po:m.!\;\DO4gXwuX1eE>F0jږW\8\\dZ`<!;m\Q\\I\	y\\TX\\\ջ\A&df-2/\-&\.L[a$eM\g\!G\E\!4`\0\%\08Q \|\k\ҋTԔj.WS`Y8\\>JAqR#\Y\0]\\&=\\pf~#\D}{\\x\'=)y\\"LU\02487\˴V!Ҽ\/\Lh[7&=@\'\\LLNӥ\&G\4[	)\$$i5jp\"ĕ3\\e\\\\Ib)׃\ENz6Թ\"$R\J.y\MY6EX.\	0\r^\\\s0\$䐫Nl\{.Yo\\$W\!N4%lHPBd^\⭴LPMGt	g-8sݩ2&\?.K\SAV\\\`\	\Z>\\Kjl\jo**vn;C	Ƨt\/ע;tO	Q}\\\Ib߸\yT\.pBEm~	]\\#\\@&\03Nbz9\ߤC bm\'\\CAݪ5^L\K̖>.\ga#N]\\o\Z2k\}','Accessed page [define_pages_editor.php] with action=save. Review page_parameters and postdata for details.','info'),(1896,'2018-05-20 17:33:39',1,'define_pages_editor.php','lngdir=english&filename=define_conditions.php&action=save','24.72.164.167',1,'',_binary 'Wa\6+\}\rw]?\r\nk\k18`Pd\\N<Ik\{\\ɚnb[H>*]m\\mC\W?\\ݷ\wO7n\n_\\\~\\\\)=_\\\0HƘ\.\\\)V-y5\\;.tL$7)Ʉ:\\&º\$,։مZ\R\\]\\\r\&v0\6z{\Ωɺ>+W\\\V\9Śq(cM@n\X\C¥3%Fm\\\;\\.Fsh\\L~B/yM1\u\ߞ\h\)nbI:\\\"N\\\\a}\,pzuwK]UscE?d=(\\\r\\\Vg\;fM\0(M	[\0_ѻ`ך\idJ\0qLp\&.&\r᱘ #\o}L2\*~\r< \I(\;\\iZT@r\\n\28/~\\[Ss>x-\f\\p枉\\"\΄\'cW(\\\I\\9U\\\0Mq\*֕ޤdBH3\X;\l\:fE\5\]\W\rR\"ڴ4\Zʝ+f\+\L\yhx\\p;Vn8\)QWC7\.5&2bC\=\q\\0@_vIx4Q\\ORLD\&U\/\w λ9\jh.\{\f<@a\Ja\6oz$ͥIjw\8\ I!|-*%W\n&IDDygzy`<k\78ι)\\\!wi\"y\\N\\"4\%p7΋Kw\\	1hl\:\<\!FFHb|c[DO\r\0\\l\p\\&po:m.!\;\DO4gXwuX1eE>F0jږW\8\\dZ`<!;m\Q\\I\	y\\TX\\\ջ\A&df-2/\-&\.L[a$eM\g\!G\E\!4`\0\%\08Q \|\k\ҋTԔj.WS`Y8\\>JAqR#\Y\0]\\&=\\pf~#\D}{\\x\'=)y\\"LU\02487\˴V!Ҽ\/\Lh[7&=@\'\\LLNӥ\&G\4[	)\$$i5jp\"ĕ3\\e\\\\Ib)׃\ENz6Թ\"$R\J.y\MY6EX.\	0\r^\\\s0\$䐫Nl\{.Yo\\$W\!N4%lHPBd^\⭴LPMGt	g-8sݩ2&\?.K\SAV\\\`\	\Z>\\Kjl\jo**vn;C	Ƨt\/ע;tO	Q}\\\Ib߸\yT\.pBEm~	]\\#\\@&\03Nbz9\ߤC bm\'\\CAݪ5^L\K̖>.\ga#N]\\o\Z2k\}','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1897,'2018-05-20 17:33:39',1,'define_pages_editor.php','lngdir=english&filename=define_conditions.php&action=save','24.72.164.167',0,'',_binary 'Wa\6+\}\rw]?\r\nk\k18`Pd\\N<Ik\{\\ɚnb[H>*]m\\mC\W?\\ݷ\wO7n\n_\\\~\\\\)=_\\\0HƘ\.\\\)V-y5\\;.tL$7)Ʉ:\\&º\$,։مZ\R\\]\\\r\&v0\6z{\Ωɺ>+W\\\V\9Śq(cM@n\X\C¥3%Fm\\\;\\.Fsh\\L~B/yM1\u\ߞ\h\)nbI:\\\"N\\\\a}\,pzuwK]UscE?d=(\\\r\\\Vg\;fM\0(M	[\0_ѻ`ך\idJ\0qLp\&.&\r᱘ #\o}L2\*~\r< \I(\;\\iZT@r\\n\28/~\\[Ss>x-\f\\p枉\\"\΄\'cW(\\\I\\9U\\\0Mq\*֕ޤdBH3\X;\l\:fE\5\]\W\rR\"ڴ4\Zʝ+f\+\L\yhx\\p;Vn8\)QWC7\.5&2bC\=\q\\0@_vIx4Q\\ORLD\&U\/\w λ9\jh.\{\f<@a\Ja\6oz$ͥIjw\8\ I!|-*%W\n&IDDygzy`<k\78ι)\\\!wi\"y\\N\\"4\%p7΋Kw\\	1hl\:\<\!FFHb|c[DO\r\0\\l\p\\&po:m.!\;\DO4gXwuX1eE>F0jږW\8\\dZ`<!;m\Q\\I\	y\\TX\\\ջ\A&df-2/\-&\.L[a$eM\g\!G\E\!4`\0\%\08Q \|\k\ҋTԔj.WS`Y8\\>JAqR#\Y\0]\\&=\\pf~#\D}{\\x\'=)y\\"LU\02487\˴V!Ҽ\/\Lh[7&=@\'\\LLNӥ\&G\4[	)\$$i5jp\"ĕ3\\e\\\\Ib)׃\ENz6Թ\"$R\J.y\MY6EX.\	0\r^\\\s0\$䐫Nl\{.Yo\\$W\!N4%lHPBd^\⭴LPMGt	g-8sݩ2&\?.K\SAV\\\`\	\Z>\\Kjl\jo**vn;C	Ƨt\/ע;tO	Q}\\\Ib߸\yT\.pBEm~	]\\#\\@&\03Nbz9\ߤC bm\'\\CAݪ5^L\K̖>.\ga#N]\\o\Z2k\}','Define-Page-Editor was used to save changes to file /home/surpro/public_html/surpro8/includes/languages/english/html_includes/define_conditions.php','info'),(1898,'2018-05-20 17:33:40',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(1899,'2018-05-20 17:33:40',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1900,'2018-05-20 17:34:21',1,'define_pages_editor.php','define_it=3&action=new_page','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php] with action=new_page. Review page_parameters and postdata for details.','info'),(1901,'2018-05-20 17:34:22',1,'define_pages_editor.php','define_it=3&action=new_page','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1902,'2018-05-20 17:34:35',1,'define_pages_editor.php','lngdir=english&filename=define_contact_us.php&action=save','24.72.164.167',0,'',_binary 'm\n1E\\^\Z\X\nb%\\\7\\p\ytvdQ::$|vZWp\ڬ8d緷b$8\l&	Mj\\p X\ww\\\T7','Accessed page [define_pages_editor.php] with action=save. Review page_parameters and postdata for details.','info'),(1903,'2018-05-20 17:34:36',1,'define_pages_editor.php','lngdir=english&filename=define_contact_us.php&action=save','24.72.164.167',1,'',_binary 'm\n1E\\^\Z\X\nb%\\\7\\p\ytvdQ::$|vZWp\ڬ8d緷b$8\l&	Mj\\p X\ww\\\T7','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1904,'2018-05-20 17:34:36',1,'define_pages_editor.php','lngdir=english&filename=define_contact_us.php&action=save','24.72.164.167',0,'',_binary 'm\n1E\\^\Z\X\nb%\\\7\\p\ytvdQ::$|vZWp\ڬ8d緷b$8\l&	Mj\\p X\ww\\\T7','Define-Page-Editor was used to save changes to file /home/surpro/public_html/surpro8/includes/languages/english/html_includes/define_contact_us.php','info'),(1905,'2018-05-20 17:34:36',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(1906,'2018-05-20 17:34:36',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1907,'2018-05-20 17:35:49',1,'define_pages_editor.php','define_it=12&action=new_page','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php] with action=new_page. Review page_parameters and postdata for details.','info'),(1908,'2018-05-20 17:35:49',1,'define_pages_editor.php','define_it=12&action=new_page','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1909,'2018-05-20 17:36:11',1,'define_pages_editor.php','lngdir=english&filename=define_site_map.php&action=save','24.72.164.167',0,'',_binary 'Mj\0De[\uI!87\Q$!\6i\WvK\aaw\\\\'JS\Z\\X\<DoM_T<\"nv20|T=\GPV\\:\%AX\4ܭ72u}mf/\\\\)!T;\xiڶ?`\B5NQqs\I\,\8\@ \\jܿ\\mה\\j[V\B:\\36E͊2瀴0/\xOঃ!\b\tc\\7','Accessed page [define_pages_editor.php] with action=save. Review page_parameters and postdata for details.','info'),(1910,'2018-05-20 17:36:12',1,'define_pages_editor.php','lngdir=english&filename=define_site_map.php&action=save','24.72.164.167',1,'',_binary 'Mj\0De[\uI!87\Q$!\6i\WvK\aaw\\\\'JS\Z\\X\<DoM_T<\"nv20|T=\GPV\\:\%AX\4ܭ72u}mf/\\\\)!T;\xiڶ?`\B5NQqs\I\,\8\@ \\jܿ\\mה\\j[V\B:\\36E͊2瀴0/\xOঃ!\b\tc\\7','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1911,'2018-05-20 17:36:12',1,'define_pages_editor.php','lngdir=english&filename=define_site_map.php&action=save','24.72.164.167',0,'',_binary 'Mj\0De[\uI!87\Q$!\6i\WvK\aaw\\\\'JS\Z\\X\<DoM_T<\"nv20|T=\GPV\\:\%AX\4ܭ72u}mf/\\\\)!T;\xiڶ?`\B5NQqs\I\,\8\@ \\jܿ\\mה\\j[V\B:\\36E͊2瀴0/\xOঃ!\b\tc\\7','Define-Page-Editor was used to save changes to file /home/surpro/public_html/surpro8/includes/languages/english/html_includes/define_site_map.php','info'),(1912,'2018-05-20 17:36:12',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(1913,'2018-05-20 17:36:13',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1914,'2018-05-20 17:38:16',1,'modules.php','set=ordertotal','24.72.164.167',0,'',_binary '\0','Accessed page [modules.php]','info'),(1915,'2018-05-20 17:38:17',1,'modules.php','set=ordertotal','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1916,'2018-05-20 17:38:22',1,'modules.php','set=ordertotal&module=ot_gv','24.72.164.167',0,'',_binary '\0','Accessed page [modules.php]','info'),(1917,'2018-05-20 17:38:23',1,'modules.php','set=ordertotal&module=ot_gv','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1918,'2018-05-20 17:38:28',1,'modules.php','set=ordertotal&module=ot_gv&action=remove','24.72.164.167',0,'',_binary '\0','Accessed page [modules.php] with action=remove. Review page_parameters and postdata for details.','info'),(1919,'2018-05-20 17:38:28',1,'modules.php','set=ordertotal&module=ot_gv&action=remove','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1920,'2018-05-20 17:38:37',1,'modules.php','action=removeconfirm','24.72.164.167',0,'',_binary 'V*N-QR\/JI-*\/I\Q\Q\\O)\IħRs\RJKJ\+\\袕@QsZ\0','Accessed page [modules.php] with action=removeconfirm. Review page_parameters and postdata for details.','info'),(1921,'2018-05-20 17:38:38',1,'modules.php','action=removeconfirm','24.72.164.167',1,'',_binary 'V*N-QR\/JI-*\/I\Q\Q\\O)\IħRs\RJKJ\+\\袕@QsZ\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1922,'2018-05-20 17:38:38',1,'modules.php','action=removeconfirm','24.72.164.167',1,'',_binary 'V*N-QR\/JI-*\/I\Q\Q\\O)\IħRs\RJKJ\+\\袕@QsZ\0','This is an automated email from your Zen Cart store to alert you of a change that was just made to your administrative settings: \n\nNOTE: Admin settings have been changed. The [ot_gv] module has been REMOVED by your Zen Cart admin user {Eagle[1]}.\n\nIf you did not initiate these changes, it is advisable that you verify the settings immediately.\n\nIf you are already aware of these changes, you can ignore this automated email.','warning'),(1923,'2018-05-20 17:38:39',1,'modules.php','set=ordertotal&module=ot_gv','24.72.164.167',0,'',_binary '\0','Accessed page [modules.php]','info'),(1924,'2018-05-20 17:38:39',1,'modules.php','set=ordertotal&module=ot_gv','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1925,'2018-05-20 17:45:15',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1926,'2018-05-20 17:45:16',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1927,'2018-05-20 17:47:57',1,'configuration.php','gID=30','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1928,'2018-05-20 17:47:57',1,'configuration.php','gID=30','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1929,'2018-05-20 17:48:57',1,'configuration.php','gID=30&cID=533&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1930,'2018-05-20 17:48:58',1,'configuration.php','gID=30&cID=533&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1931,'2018-05-20 17:49:05',1,'configuration.php','gID=30&cID=533&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,q\nptw\rq	\rwq\r\011!dR-\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(1932,'2018-05-20 17:49:06',1,'configuration.php','gID=30&cID=533&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,q\nptw\rq	\rwq\r\011!dR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1933,'2018-05-20 17:49:06',1,'configuration.php','gID=30&cID=533&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,q\nptw\rq	\rwq\r\011!dR-\0','Configuration setting changed for EZPAGES_STATUS_FOOTER: 1','warning'),(1934,'2018-05-20 17:49:06',1,'configuration.php','gID=30&cID=533','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1935,'2018-05-20 17:49:07',1,'configuration.php','gID=30&cID=533','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1936,'2018-05-20 17:50:36',1,'configuration.php','gID=30&cID=537&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1937,'2018-05-20 17:50:37',1,'configuration.php','gID=30&cID=537&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1938,'2018-05-20 17:50:42',1,'configuration.php','gID=30&cID=537&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,q\nptw\rr\rsw\n\r	\0)&Zu%Du-\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(1939,'2018-05-20 17:50:43',1,'configuration.php','gID=30&cID=537&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,q\nptw\rr\rsw\n\r	\0)&Zu%Du-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1940,'2018-05-20 17:50:43',1,'configuration.php','gID=30&cID=537&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,q\nptw\rr\rsw\n\r	\0)&Zu%Du-\0','Configuration setting changed for EZPAGES_SHOW_PREV_NEXT_BUTTONS: 1','warning'),(1941,'2018-05-20 17:50:43',1,'configuration.php','gID=30&cID=537','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1942,'2018-05-20 17:50:44',1,'configuration.php','gID=30&cID=537','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1943,'2018-05-20 17:50:51',1,'configuration.php','gID=30&cID=532&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1944,'2018-05-20 17:50:51',1,'configuration.php','gID=30&cID=532&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1945,'2018-05-20 17:50:57',1,'configuration.php','gID=30&cID=532&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,q\nptw\rq	\rputq\r\01\"\B\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(1946,'2018-05-20 17:50:57',1,'configuration.php','gID=30&cID=532&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,q\nptw\rq	\rputq\r\01\"\B\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1947,'2018-05-20 17:50:57',1,'configuration.php','gID=30&cID=532&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,q\nptw\rq	\rputq\r\01\"\B\0','Configuration setting changed for EZPAGES_STATUS_HEADER: 1','warning'),(1948,'2018-05-20 17:50:58',1,'configuration.php','gID=30&cID=532','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1949,'2018-05-20 17:50:58',1,'configuration.php','gID=30&cID=532','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1950,'2018-05-20 17:51:33',1,'configuration.php','gID=30&cID=532&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(1951,'2018-05-20 17:51:33',1,'configuration.php','gID=30&cID=532&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1952,'2018-05-20 17:51:37',1,'configuration.php','gID=30&cID=532&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,q\nptw\rq	\rputq\r\014!\D\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(1953,'2018-05-20 17:51:38',1,'configuration.php','gID=30&cID=532&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,q\nptw\rq	\rputq\r\014!\D\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1954,'2018-05-20 17:51:38',1,'configuration.php','gID=30&cID=532&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,q\nptw\rq	\rputq\r\014!\D\0','Configuration setting changed for EZPAGES_STATUS_HEADER: 0','warning'),(1955,'2018-05-20 17:51:38',1,'configuration.php','gID=30&cID=532','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1956,'2018-05-20 17:51:38',1,'configuration.php','gID=30&cID=532','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1957,'2018-05-20 17:53:57',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1958,'2018-05-20 17:53:57',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1959,'2018-05-20 17:54:04',1,'ezpages.php','ezID=7&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(1960,'2018-05-20 17:54:05',1,'ezpages.php','ezID=7&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1961,'2018-05-20 17:54:14',1,'ezpages.php','ezID=7','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1962,'2018-05-20 17:54:14',1,'ezpages.php','ezID=7','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1963,'2018-05-20 18:34:41',0,'login.php ','camefrom=ezpages.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(1964,'2018-05-20 18:34:41',0,'login.php ','camefrom=ezpages.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1965,'2018-05-20 18:34:57',0,'login.php Eagle','camefrom=ezpages.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\7KK54N6NJ14IL1N4I523N4H1N1135R\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do6fe13c3bd294a9d3a4e263a38d3d4652. Review page_parameters and postdata for details.','info'),(1966,'2018-05-20 18:34:57',0,'login.php Eagle','camefrom=ezpages.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\7KK54N6NJ14IL1N4I523N4H1N1135R\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1967,'2018-05-20 18:34:58',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1968,'2018-05-20 18:34:59',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1969,'2018-05-20 18:35:26',1,'ezpages.php','reset_ez_sort_order=1&action=set_ez_sort_order','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=set_ez_sort_order. Review page_parameters and postdata for details.','info'),(1970,'2018-05-20 18:35:27',1,'ezpages.php','reset_ez_sort_order=1&action=set_ez_sort_order','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1971,'2018-05-20 18:35:28',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1972,'2018-05-20 18:35:28',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1973,'2018-05-20 18:35:56',1,'ezpages.php','reset_ez_sort_order=0&action=set_ez_sort_order','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=set_ez_sort_order. Review page_parameters and postdata for details.','info'),(1974,'2018-05-20 18:35:57',1,'ezpages.php','reset_ez_sort_order=0&action=set_ez_sort_order','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1975,'2018-05-20 18:35:57',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1976,'2018-05-20 18:35:58',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1977,'2018-05-20 18:36:09',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1978,'2018-05-20 18:36:10',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1979,'2018-05-20 18:36:30',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(1980,'2018-05-20 18:36:31',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1981,'2018-05-20 18:36:46',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(1982,'2018-05-20 18:36:47',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1983,'2018-05-20 18:36:53',1,'define_pages_editor.php','define_it=3&action=new_page','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php] with action=new_page. Review page_parameters and postdata for details.','info'),(1984,'2018-05-20 18:36:53',1,'define_pages_editor.php','define_it=3&action=new_page','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1985,'2018-05-20 18:37:48',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1986,'2018-05-20 18:37:49',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1987,'2018-05-20 18:37:58',1,'layout_controller.php','cID=142','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1988,'2018-05-20 18:37:58',1,'layout_controller.php','cID=142','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1989,'2018-05-20 18:37:58',1,'layout_controller.php','cID=142','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1990,'2018-05-20 18:37:58',1,'layout_controller.php','cID=142','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1991,'2018-05-20 18:38:02',1,'layout_controller.php','cID=142&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(1992,'2018-05-20 18:38:03',1,'layout_controller.php','cID=142&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1993,'2018-05-20 18:38:17',1,'layout_controller.php','cID=142&action=save&layout_box_name=information.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\\LqJ\g\\՘[\\\_\\̋/\L)\\0[\\\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(1994,'2018-05-20 18:38:17',1,'layout_controller.php','cID=142&action=save&layout_box_name=information.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\\LqJ\g\\՘[\\\_\\̋/\L)\\0[\\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1995,'2018-05-20 18:38:17',1,'layout_controller.php','cID=142','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(1996,'2018-05-20 18:38:18',1,'layout_controller.php','cID=142','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1997,'2018-05-20 18:39:41',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(1998,'2018-05-20 18:39:42',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(1999,'2018-05-20 18:39:54',1,'ezpages.php','action=status_footer&current=0&ezID=13&page=1','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_footer. Review page_parameters and postdata for details.','info'),(2000,'2018-05-20 18:39:54',1,'ezpages.php','action=status_footer&current=0&ezID=13&page=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2001,'2018-05-20 18:39:54',1,'ezpages.php','action=status_footer&current=0&ezID=13&page=1','24.72.164.167',0,'',_binary '\0','EZ-Page ID 13 [status_footer] changed to 1','info'),(2002,'2018-05-20 18:39:54',1,'ezpages.php','page=1&ezID=13','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2003,'2018-05-20 18:39:55',1,'ezpages.php','page=1&ezID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2004,'2018-05-20 18:40:04',1,'ezpages.php','action=status_footer&current=0&ezID=4&page=1','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_footer. Review page_parameters and postdata for details.','info'),(2005,'2018-05-20 18:40:05',1,'ezpages.php','action=status_footer&current=0&ezID=4&page=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2006,'2018-05-20 18:40:05',1,'ezpages.php','action=status_footer&current=0&ezID=4&page=1','24.72.164.167',0,'',_binary '\0','EZ-Page ID 4 [status_footer] changed to 1','info'),(2007,'2018-05-20 18:40:05',1,'ezpages.php','page=1&ezID=4','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2008,'2018-05-20 18:40:06',1,'ezpages.php','page=1&ezID=4','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2009,'2018-05-20 18:40:09',1,'ezpages.php','action=status_footer&current=0&ezID=10&page=1','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_footer. Review page_parameters and postdata for details.','info'),(2010,'2018-05-20 18:40:09',1,'ezpages.php','action=status_footer&current=0&ezID=10&page=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2011,'2018-05-20 18:40:09',1,'ezpages.php','action=status_footer&current=0&ezID=10&page=1','24.72.164.167',0,'',_binary '\0','EZ-Page ID 10 [status_footer] changed to 1','info'),(2012,'2018-05-20 18:40:09',1,'ezpages.php','page=1&ezID=10','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2013,'2018-05-20 18:40:10',1,'ezpages.php','page=1&ezID=10','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2014,'2018-05-20 18:40:12',1,'ezpages.php','action=status_footer&current=0&ezID=11&page=1','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_footer. Review page_parameters and postdata for details.','info'),(2015,'2018-05-20 18:40:13',1,'ezpages.php','action=status_footer&current=0&ezID=11&page=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2016,'2018-05-20 18:40:13',1,'ezpages.php','action=status_footer&current=0&ezID=11&page=1','24.72.164.167',0,'',_binary '\0','EZ-Page ID 11 [status_footer] changed to 1','info'),(2017,'2018-05-20 18:40:13',1,'ezpages.php','page=1&ezID=11','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2018,'2018-05-20 18:40:13',1,'ezpages.php','page=1&ezID=11','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2019,'2018-05-20 18:40:16',1,'ezpages.php','action=status_footer&current=0&ezID=12&page=1','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_footer. Review page_parameters and postdata for details.','info'),(2020,'2018-05-20 18:40:16',1,'ezpages.php','action=status_footer&current=0&ezID=12&page=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2021,'2018-05-20 18:40:16',1,'ezpages.php','action=status_footer&current=0&ezID=12&page=1','24.72.164.167',0,'',_binary '\0','EZ-Page ID 12 [status_footer] changed to 1','info'),(2022,'2018-05-20 18:40:16',1,'ezpages.php','page=1&ezID=12','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2023,'2018-05-20 18:40:17',1,'ezpages.php','page=1&ezID=12','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2024,'2018-05-20 18:40:22',1,'ezpages.php','action=status_footer&current=0&ezID=9&page=1','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_footer. Review page_parameters and postdata for details.','info'),(2025,'2018-05-20 18:40:22',1,'ezpages.php','action=status_footer&current=0&ezID=9&page=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2026,'2018-05-20 18:40:22',1,'ezpages.php','action=status_footer&current=0&ezID=9&page=1','24.72.164.167',0,'',_binary '\0','EZ-Page ID 9 [status_footer] changed to 1','info'),(2027,'2018-05-20 18:40:23',1,'ezpages.php','page=1&ezID=9','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2028,'2018-05-20 18:40:23',1,'ezpages.php','page=1&ezID=9','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2029,'2018-05-20 18:41:29',1,'ezpages.php','page=1&ezID=13','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2030,'2018-05-20 18:41:30',1,'ezpages.php','page=1&ezID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2031,'2018-05-20 18:41:36',1,'ezpages.php','page=1&ezID=13&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(2032,'2018-05-20 18:41:37',1,'ezpages.php','page=1&ezID=13&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2033,'2018-05-20 18:41:45',1,'ezpages.php','page=1&action=update','24.72.164.167',0,'',_binary 'X]o\6+\h\\\d\0i4MPgȋ\Z%ig\\%EٴM\\Kc\{\\M\\\n*sVG}k\(&\\O\չ\\Q\7Lr\zӹ\\K\꼦PR\e\\"\R\\\c5+\B\\Xa:D\K)M\'DY,򢆕9fCX\ɝ:_Ԧṡ7E\\\\\\ES%E5BU\\b)U\w3{\%䆳ɔ\&OKnxMnԊ.jcV\|\l2`\\n\\\˖h\n&|`j\\4\o:xV\uOsI3JA\p&\Y\u\:C#mH\\\.w\Ѕ;h4!\M\\\\S%\Z%VTj\4\wl\8`\'T\Iw\n\\WQ\i\m\i\00\\2ɰ*\0A.Oh~Ъ\\xd\|%9N\\\\r\:\;E/\\\\\n^a9wמ-\䵅ы92JO6\\\D\*{5lWn1T_1R⤅Djnۖ<\n[\մm\\U\mRE\%l*V	΍u\\)\YUuGR4K\\0\\'\8\O\4\h\a\E8\'rI\InWL7/R\l+wi@\,\&`XW^	&LGU`obgx=eӌ\\\mKC78b5q#Sֲ\ƥ\\SO\\\&7 3\l/:\\p~ S0eFǷ82l\C70M(^TkH\\\q;\I\\\\\'Og݇\K\\\t\"kh\\'IW\j\HR\m\>7n\\]{?nNg\w%\6|p\\0]I)\\\\m^S\`sxj8\޵\ZLZH.m\c\y\'4Y\n\\"p-jx\Oq\\.\7NQ\"ҥR\ᘏ\?@\\C7\cv8e	[2|\\\8	`µ4\D\U^\Z#$8m\,eJ/\O(Z\r?\\P̄D;Rŏwp\\b\\.\}\n\\GEi_\%\=f>_ \E<\HmOO#\&o\"n9\','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(2034,'2018-05-20 18:41:45',1,'ezpages.php','page=1&action=update','24.72.164.167',1,'',_binary 'X]o\6+\h\\\d\0i4MPgȋ\Z%ig\\%EٴM\\Kc\{\\M\\\n*sVG}k\(&\\O\չ\\Q\7Lr\zӹ\\K\꼦PR\e\\"\R\\\c5+\B\\Xa:D\K)M\'DY,򢆕9fCX\ɝ:_Ԧṡ7E\\\\\\ES%E5BU\\b)U\w3{\%䆳ɔ\&OKnxMnԊ.jcV\|\l2`\\n\\\˖h\n&|`j\\4\o:xV\uOsI3JA\p&\Y\u\:C#mH\\\.w\Ѕ;h4!\M\\\\S%\Z%VTj\4\wl\8`\'T\Iw\n\\WQ\i\m\i\00\\2ɰ*\0A.Oh~Ъ\\xd\|%9N\\\\r\:\;E/\\\\\n^a9wמ-\䵅ы92JO6\\\D\*{5lWn1T_1R⤅Djnۖ<\n[\մm\\U\mRE\%l*V	΍u\\)\YUuGR4K\\0\\'\8\O\4\h\a\E8\'rI\InWL7/R\l+wi@\,\&`XW^	&LGU`obgx=eӌ\\\mKC78b5q#Sֲ\ƥ\\SO\\\&7 3\l/:\\p~ S0eFǷ82l\C70M(^TkH\\\q;\I\\\\\'Og݇\K\\\t\"kh\\'IW\j\HR\m\>7n\\]{?nNg\w%\6|p\\0]I)\\\\m^S\`sxj8\޵\ZLZH.m\c\y\'4Y\n\\"p-jx\Oq\\.\7NQ\"ҥR\ᘏ\?@\\C7\cv8e	[2|\\\8	`µ4\D\U^\Z#$8m\,eJ/\O(Z\r?\\P̄D;Rŏwp\\b\\.\}\n\\GEi_\%\=f>_ \E<\HmOO#\&o\"n9\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2035,'2018-05-20 18:41:45',1,'ezpages.php','page=1&action=update','24.72.164.167',0,'',_binary 'X]o\6+\h\\\d\0i4MPgȋ\Z%ig\\%EٴM\\Kc\{\\M\\\n*sVG}k\(&\\O\չ\\Q\7Lr\zӹ\\K\꼦PR\e\\"\R\\\c5+\B\\Xa:D\K)M\'DY,򢆕9fCX\ɝ:_Ԧṡ7E\\\\\\ES%E5BU\\b)U\w3{\%䆳ɔ\&OKnxMnԊ.jcV\|\l2`\\n\\\˖h\n&|`j\\4\o:xV\uOsI3JA\p&\Y\u\:C#mH\\\.w\Ѕ;h4!\M\\\\S%\Z%VTj\4\wl\8`\'T\Iw\n\\WQ\i\m\i\00\\2ɰ*\0A.Oh~Ъ\\xd\|%9N\\\\r\:\;E/\\\\\n^a9wמ-\䵅ы92JO6\\\D\*{5lWn1T_1R⤅Djnۖ<\n[\մm\\U\mRE\%l*V	΍u\\)\YUuGR4K\\0\\'\8\O\4\h\a\E8\'rI\InWL7/R\l+wi@\,\&`XW^	&LGU`obgx=eӌ\\\mKC78b5q#Sֲ\ƥ\\SO\\\&7 3\l/:\\p~ S0eFǷ82l\C70M(^TkH\\\q;\I\\\\\'Og݇\K\\\t\"kh\\'IW\j\HR\m\>7n\\]{?nNg\w%\6|p\\0]I)\\\\m^S\`sxj8\޵\ZLZH.m\c\y\'4Y\n\\"p-jx\Oq\\.\7NQ\"ҥR\ᘏ\?@\\C7\cv8e	[2|\\\8	`µ4\D\U^\Z#$8m\,eJ/\O(Z\r?\\P̄D;Rŏwp\\b\\.\}\n\\GEi_\%\=f>_ \E<\HmOO#\&o\"n9\','EZ-Page with ID 13 updated.','info'),(2036,'2018-05-20 18:41:46',1,'ezpages.php','page=1&ezID=13','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2037,'2018-05-20 18:41:47',1,'ezpages.php','page=1&ezID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2038,'2018-05-20 18:41:55',1,'ezpages.php','page=1&ezID=9','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2039,'2018-05-20 18:41:55',1,'ezpages.php','ezID=9&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(2040,'2018-05-20 18:41:55',1,'ezpages.php','page=1&ezID=9','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2041,'2018-05-20 18:41:55',1,'ezpages.php','ezID=9&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2042,'2018-05-20 18:42:04',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\Z{o\6*WZ~\	-\ТM,Z:Yl(R%)\ư\;I~\5Y؛\,\w;IQr1Aʸu\z\z\4\nrj\\X\N\T(x/kB5a)ulJb\-S\r\y\(b\rn\X\Z7N\86n%wbh}Ս#\&\nT\8u4f3HH\3zy~:vyL\_~\V;\\_w6:p\\p1hO\}~\\,;\c\$\~\0\:oe\;\0>\\\0N:8m\}M9	uo%Db\'cϛ\'{?S	.zK2RO\d\Dsj&#X\FR\0EzjDfp6\"Y1\\\\NV~xq~\\ OByba*F\p!ԷFW\#1\S#\\\!ɖ2\1z\5(\'\\Kjy0上2\z\\Bm\h\ZRd\\/\3I#L1ͦ\@l\!<sHڄGH\:+\t?\U\Ϛ\n\ҹ5S\P$i!Q8cCblG\xiXZ*c+lA4\@^Xd\X8Uz\\(Zx*\\ O\\"s\*nw\a\k^ὈRt\"=!-\"k*9JĶ\\DZL(t\T\\\a睉y\\?oBotf\nfZ\ߡJ:u1x`s;Eڢ/o\-N%ɲ\Z7bx\/\\nW	֧P\\\<2h(.QM\5Uy\2\wM\\0ܴ)\\\\d`Ɠ\(\<T?\Zt\~da4i뺊ď\vPk$a㠻\0\U`4\\-}.ߠU1Õ\=ڸe\9\\6Z$\\P]%\ʄA(^\ri[iEם\\\,stOvVxׯ\\WW\U$KlY4-\\\\\,[\`\\4[DZG-YKlY]Hlv@M\Z\6m.m>\Z\R\:yc;C Z_46ʤf\\\m$^\\.[RPE\\a\qh\Rɯ\2[\\Lأƹѓ=lmq	]\\\`\Z/t\A\{L\Q\\\/g&ov\yS:\\"\'\\\@cw%\m\a\t)g9_\\VĂ6\(\N1y\5\\8ۀ:\\"\\\㌠E\OvVgt\07S','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(2043,'2018-05-20 18:42:05',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary '\Z{o\6*WZ~\	-\ТM,Z:Yl(R%)\ư\;I~\5Y؛\,\w;IQr1Aʸu\z\z\4\nrj\\X\N\T(x/kB5a)ulJb\-S\r\y\(b\rn\X\Z7N\86n%wbh}Ս#\&\nT\8u4f3HH\3zy~:vyL\_~\V;\\_w6:p\\p1hO\}~\\,;\c\$\~\0\:oe\;\0>\\\0N:8m\}M9	uo%Db\'cϛ\'{?S	.zK2RO\d\Dsj&#X\FR\0EzjDfp6\"Y1\\\\NV~xq~\\ OByba*F\p!ԷFW\#1\S#\\\!ɖ2\1z\5(\'\\Kjy0上2\z\\Bm\h\ZRd\\/\3I#L1ͦ\@l\!<sHڄGH\:+\t?\U\Ϛ\n\ҹ5S\P$i!Q8cCblG\xiXZ*c+lA4\@^Xd\X8Uz\\(Zx*\\ O\\"s\*nw\a\k^ὈRt\"=!-\"k*9JĶ\\DZL(t\T\\\a睉y\\?oBotf\nfZ\ߡJ:u1x`s;Eڢ/o\-N%ɲ\Z7bx\/\\nW	֧P\\\<2h(.QM\5Uy\2\wM\\0ܴ)\\\\d`Ɠ\(\<T?\Zt\~da4i뺊ď\vPk$a㠻\0\U`4\\-}.ߠU1Õ\=ڸe\9\\6Z$\\P]%\ʄA(^\ri[iEם\\\,stOvVxׯ\\WW\U$KlY4-\\\\\,[\`\\4[DZG-YKlY]Hlv@M\Z\6m.m>\Z\R\:yc;C Z_46ʤf\\\m$^\\.[RPE\\a\qh\Rɯ\2[\\Lأƹѓ=lmq	]\\\`\Z/t\A\{L\Q\\\/g&ov\yS:\\"\'\\\@cw%\m\a\t)g9_\\VĂ6\(\N1y\5\\8ۀ:\\"\\\㌠E\OvVgt\07S','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2044,'2018-05-20 18:42:05',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\Z{o\6*WZ~\	-\ТM,Z:Yl(R%)\ư\;I~\5Y؛\,\w;IQr1Aʸu\z\z\4\nrj\\X\N\T(x/kB5a)ulJb\-S\r\y\(b\rn\X\Z7N\86n%wbh}Ս#\&\nT\8u4f3HH\3zy~:vyL\_~\V;\\_w6:p\\p1hO\}~\\,;\c\$\~\0\:oe\;\0>\\\0N:8m\}M9	uo%Db\'cϛ\'{?S	.zK2RO\d\Dsj&#X\FR\0EzjDfp6\"Y1\\\\NV~xq~\\ OByba*F\p!ԷFW\#1\S#\\\!ɖ2\1z\5(\'\\Kjy0上2\z\\Bm\h\ZRd\\/\3I#L1ͦ\@l\!<sHڄGH\:+\t?\U\Ϛ\n\ҹ5S\P$i!Q8cCblG\xiXZ*c+lA4\@^Xd\X8Uz\\(Zx*\\ O\\"s\*nw\a\k^ὈRt\"=!-\"k*9JĶ\\DZL(t\T\\\a睉y\\?oBotf\nfZ\ߡJ:u1x`s;Eڢ/o\-N%ɲ\Z7bx\/\\nW	֧P\\\<2h(.QM\5Uy\2\wM\\0ܴ)\\\\d`Ɠ\(\<T?\Zt\~da4i뺊ď\vPk$a㠻\0\U`4\\-}.ߠU1Õ\=ڸe\9\\6Z$\\P]%\ʄA(^\ri[iEם\\\,stOvVxׯ\\WW\U$KlY4-\\\\\,[\`\\4[DZG-YKlY]Hlv@M\Z\6m.m>\Z\R\:yc;C Z_46ʤf\\\m$^\\.[RPE\\a\qh\Rɯ\2[\\Lأƹѓ=lmq	]\\\`\Z/t\A\{L\Q\\\/g&ov\yS:\\"\'\\\@cw%\m\a\t)g9_\\VĂ6\(\N1y\5\\8ۀ:\\"\\\㌠E\OvVgt\07S','EZ-Page with ID 9 updated.','info'),(2045,'2018-05-20 18:42:05',1,'ezpages.php','ezID=9','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2046,'2018-05-20 18:42:06',1,'ezpages.php','ezID=9','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2047,'2018-05-20 18:42:13',1,'ezpages.php','ezID=4&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(2048,'2018-05-20 18:42:14',1,'ezpages.php','ezID=4&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2049,'2018-05-20 18:42:22',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'm\\n\0EEv \\\7c;\`)n\D\ky\=\\tx![٘eA\(#U\\\`U\#\\k\"Q\^!\\0X!\K+S\\\'\޾\\t\\'\PA\`ߧš\)EQ\3\-.\zN\bB\q\'','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(2050,'2018-05-20 18:42:22',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary 'm\\n\0EEv \\\7c;\`)n\D\ky\=\\tx![٘eA\(#U\\\`U\#\\k\"Q\^!\\0X!\K+S\\\'\޾\\t\\'\PA\`ߧš\)EQ\3\-.\zN\bB\q\'','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2051,'2018-05-20 18:42:22',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'm\\n\0EEv \\\7c;\`)n\D\ky\=\\tx![٘eA\(#U\\\`U\#\\k\"Q\^!\\0X!\K+S\\\'\޾\\t\\'\PA\`ߧš\)EQ\3\-.\zN\bB\q\'','EZ-Page with ID 4 updated.','info'),(2052,'2018-05-20 18:42:22',1,'ezpages.php','ezID=4','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2053,'2018-05-20 18:42:23',1,'ezpages.php','ezID=4','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2054,'2018-05-20 18:42:27',1,'ezpages.php','ezID=10&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(2055,'2018-05-20 18:42:28',1,'ezpages.php','ezID=10&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2056,'2018-05-20 18:42:37',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\yT\2a{f{c>I\\'\V\ԟ?~\\M\\ڹ\\[S4\w&Uٚ\ʢ޵?TL0\"-\2֧T׹nt\֟F\OuY5ʊg\,5|ɟ⧏\eٸ!Ú2,\\r`Gx,e14WI\\\I6\_>Vs\UBrn*]\+_\\\Y>>\\\x\\>\M\eVduSfUR\y\L\d,\\'Mu%&xYq۔\H\?>>~|h#\O+\7u:\'ngſ\\\/\\\\\\ח\O/n\\Wy\ׯ\\\[]j7mݘdQ\0yru\\\"\U\\*\\}S\t\aYg\#e\\wq7\vL5\?q\7Vn\2fg;@\]LT\\ԪY\kЍgsS\\βاV˶n\ҘF5g@5zT\\r\\\\Z\\Z0N\\nN\nM\\r\Ĥ-r~\气ڸy\2\)!\"wXޛ\6\\G\'\}\<e\$Q07ܺWt\01۹No++#J\\)EQnO\# \\"\Xrk2E}V\\vr0N$oP구~\b\W\}V\Y>}[f4\\r(\4\\@\\\rF\vAW~o\}5~1Su\\\\\\\\iF\\r\%0ifDW\\n:VBm1#ˠOr\\\\\S\ƓӝtW팏\\\{\\pZ˙FUcGbGᫀG\d^%_彩R2fW:UZ\M\E\0\\\ȸ\eH6\t\\Ԡ3qJ_x	mɹn4B櫃\\H%Jt=\t>:,B\Ud\j\VpX\\y hX5V\\Ovg\`\/\\\{` \֔^-H-ZP\ ,\\\~Q+*;\c@dy1#/,|@Nm\\/iw=`\0JV\nZ50\qoD\\*7\)\\R)5sFߔFgqV\Z)[sT;\nI2\\p\\':\X\\\\_|s\\K\\;{v>\\\\\?s\yvw\&\\\7\?\[\Oӳ7ӿ\y7ޙ\\uK9$=v\{|2\\=\\Zޠ\Ac\r\\\]5!$/He\n\M\0\P\\K\Lބ\YG{\kmp$)KMwX\	\*+\ZS\n9<\\AW[\[+FHNU\zv\,\-\\\.\e\46ڰ\-\ikШ\K\"4Y82E\rT\3m|OI\\a@\Z^4\ˤ\rE\\0(59\^jԇPBLPt	h\CdH\cRW/\\ըp-\0ڨlY\ Lԏ\\^\$f\y1?\\rǺYI\dTX/ĥ\\P*n\+\L\\\>;\ \\\H8\hP+r\l\L\.\\\4\%M7S 	M\\n\ӷ5M\\b0\\\!x/?S`_|9`^;\}a\"\yl_MNmlQ`\|Oe΀\nޏ$J\gdI7\&tƶ̠6s8*\"\\{.dD\ۓ\\\Կ\龺#g\0ޗ[|4<\n\10]w\[tb{(_P\~VWWޞ_U{\\\kPSDjz\-Bx}3}{>}.޽7oXjUY\.SUj\hp\hE3\\	M\\Z@\$h\42kM\\\]RjO]A=l`Ps\'Q[\\~)<dg\T\\\25^&\YPVw V\\G{>,Q2PEC`CP&/@\0\\w&`\n\{;P\AwnJlےgEe𭀛al㹞UYR\Z5Km\̀6ٷ lHi;\^\A\Z[-K+-`\\hdp.M<\~\Q\\"a>Yl-NnW\y@\۶VU\,}ҡ\\f\ZgG\\0\\d\@^V!혼\Yvy j\6aŋt&\?\@\W(-45[\\n\kgog+;ml3zD\\\^n\r\	b倦\d8%,E\S&6\KD\0>\"f\\$w?lzEf<\D3$32v\9`·7-;G\\\\\#\-y\f\\0N\\ 0\"}p[Æd\\\:A\}M\[E?YnLW\V\ݭ s`Ȳ-\x\'a/2P_\\\~\_\\,T\CWh\n;Ȼ?G|\K=fqՄ\8dG\n\\j9X1\o\aCAa\:O\W`\+\ZBt\g\><d)\I:= /\l 75kuA\5`N\\;&Щ%\PS\\3;\\̘\0&\"K\7\2lG\e\<\\\\\s\E,\0>xDN#7\M@|NLb|\0 z\\4\\@dTɑ(ۊT\\\'\O=2<O:GM-)\\\\xdP\Oy6c\i\L :yfZ\'\Eê\\\-`=2\S J[\%eu-\\\)Ac\Q\KrÖffS0x\B`_lK\OY\=f`\v\\Z\\'FRnHGIxJܽ\Fcccn9a\n\p_@j\\P\Q\Z\\u\"\u;H2:{j|\Z\Kc\\?n=\rBh\gk)nL,>v\y!8.\\VMO\\!xTp-1?\y8|\rđs\\3\XѸ\\\2ά2c=\\ `_|;\D\FF*<D+`ig\\W\\\^\\Ȥ@Wp>\0\\MZ\(k@d;x\x\\?%\M\\i>\FǮ 1#\\@v\nIfX$Zd\-L@\%Ϯ؝ք-,=c&V#K@i*(k+6\"\j\\\pJbD5\<XmI\%D[65K\5)\v[\v\\}o뻙09̂\\H}\	|\\\+\-0{\nטŰ\n\0C\\`wuz\\"\\eo<\DW\c(\r\J@\4\nZFgM~\\C^BwQ\\\	;r\tBPE؛GPb\\B(L/\\!\.zM#\\\!ʀl\7\\\p\0)U\\ؔw\'-uj\"]U%2WBF$\-j3`Z-O2Ar]2Ґ%\\C0DSab3f9f#-\\'QKD\r\EG?ucǥX \d\\䎱6~\\1*0\'\Rܲ,p#t\[\gr\\\3\\ܨ(\l\]<.\(\MX׷5\\Z`\G\X0,\]Fo\^;%\\\! \9\v\0	{\A\	5ܸ\0\WA\JoD4, \0\h-@\DM\g\\\-\F:Dn	\n\D\b75Ѿ6^\fR\0e+Vd5\\3\8\\.K\2Epfm]\Z##\%y\"\l\>>v`;fm\\\LK\mÇ	0,ɐߚ9Y.zӳy̔,)N$\i\r\'3s4\s\\"\n,\r6WN{ng\p\,ͯӳP\zf\wo\+\\Z,~\\NA\\\A\Ԕ7 3䄡*4\R%i9(\l}).\Ydc\ZeP\\\nS\083?\\eb\KTd./\S{(\R\\>eY>x\\\\p\胶@p<\q\͐#\:v?Nq	YJЇig-« v~pC\\W\\\+%\d\+u\}\3\5\\˼+4^r\D2\K\5ʵz*\'s?*ZTԢX\$\@HY`%\\S	7\c\\0$\~qX\\\:\XBq:Q\\n%6]Ց\I*4\\πa?ZOOD.vL[lP]Q{\i8cvmB\qPZ\1}.\cF\Yl\\m[e\\\\=\\BQ>\&Ϝ#qi:\\Y	YxZ!\\-(\\)}W\!BĿeɩL\A?\\\{O[\%8&כˀp$~`\X-\q\jIn`do\\\9\n\nҲ\Q\'\n\8=\Q\ee2\;h/[=,)\vSdB\\n!\#mJNjPⲨ!uf\\S{t{\\(\WYd\npfN	\Zec-#2\cZ\\ʘY%(ī9\\\\\a\\Jq\\\͡l8\r\{<\\:R\*d\lLcu\e?9\\=l\_۩,\}mEL\2\'{OOvhRw\>#	\W֕[Qf\a-\\'GT<c\Ej\l5җ>|@ϰ\nbkR\\y|X؀\n\)+z\#\=d\K\\~S\Ro\\\ǺU\'\NW.n\\=\Yn#ɸz=+\ZKt1\\"C \@\lsR%y\UelrwkV\db:\\_$F\B\\p4	\``p<9!\O6zSs<\\\\@\ngB\5\w}Bk\G=L\\NτP6\"OfB	mc\B\?rACh\\\0\\\\۽bޘWl8F}VpqPx:\I\0\(\vdF\\-)	pQ;1np&%e6SN\\K*G\\%ܡprO\\Z$`\\h,\;\\XQ\"ǡWF{Z\ڡa\GSQ\"\^6<\n\h%\\\,8[^\=}ĆeɨߐltĹ\Ux0u\p!\X7\r0ϴ`s8J\fCƳ:ڰ:\5x\Юo*J>\\AŁ*YB~_1\ܛ, #7\\L]\SodaqMn\rI\\r\f\f\.\󈥗Rl%m\\\+k\:C<ҩ\dT|gXoD\\n,Y\\\OFJo \@JD(\p>Lf9һn\kdQϴ	\oȳ\ҝAM\\z\\LɃ@3\\p\Z*|\nN쨕\jaM\\\hˌ-ֿByc\nDf.P\u\n)\'\\ɚ{	O\\r\\;`*\`[iQb\\Rs\\\\Ty\Tm\nBe\-T\nϚl	\\.>dY\hb\b\Re\@\K\do9\:\}餂ՎfXcn\U\(/#v\GAMاN\Ӥ|\nx0$\ĽG\\0d$U(+.Kf@g\\˄0<\P}*\\w\>rb%3\=¬ܴ1\\j\ty.;\\n\6dGwn(\\Z\&R\ryYIuBڣl4\|{\0\BMdKp\ց\W,\1kl g\%XlhS{\\'\{Sh]\\\*\'0s\ǽc<o㌍\\n\ol:\@\DFA0y}$\Fa;m8qZ\A4yn+aan:ݍi\r )B\\\G!\\	\yjB>0\\p}&tVF6N= U\h|%ρ?\\6Oq\5JOY\d`Y]\zȐ\\m_1\\\\\پZ6`tל\\-+,@.Hy\+tKAkPh\q\]Y\\Ev\\.\\\\`0A\\|;\S\\Tވؤ\AӋSai1I@`\ 2\r\D!<ʨG\rN\N\HodQs(kd\	.\\?\0\)QK\\\\\\E(8N/\\\\/R=a\r\\G\0NGP\غ\q12\\[\log\s\M\7\h۔KM.ܡ+<ޓ8lW\;\->c^BKW\ėdgbu8 \pL\8k\Q\7HZ\\F7B\'^s\Z\Tq@TURW\oqhq?d:V~\0*#\+Xʳ\\'\b\\$\T phD\'\:e8k\0\ز\\\\\'\,i\\\\%;9\t\3R\ztlT\sg\q\R\uu\~09H\\\\yߐK\\\k\`kv8\^swƬBa4\nB)R|F*Q\j\\j/5w%up\\*NM8\\E坋\]Ja%x\x`E=e+;FB7\/\n\\4\:m\nk9: \_a^HըQ-J2\H\پ^utF\$:\&V>Q\&e\[l˞\Z\e\\nS\)-\\MrΛ\"pͨT;>¦\Y\g\>\f?μ\/%\ )\\o\\"3Pj%be_yvyF1\\\'\E\\\5\r]}ꂭ	\x\"6\̓\Ƌ#w\#{K*E#0	Sb^\\\\\\r+\\0{\J;@H6\i1ͲD;3sZf汴i4j[-n\`\\{\MmN0\"\Z\s5\l,Jj[mw̫)C\"A[߆\9Co:~\"\\%\6\KAQ\lF%nwҜGh\)\$JPڲZ5	\\\)\Zjʆa5<kˍ+\a\*\nU@$\rpXA\X\Z\Si\"c4[&7\qt	G	\(\\\0ؤM۴\XNFh\čO\\ \i\Z\\\ǒ\\HEB\Il\\"X\pJ0\c\p\W\qC\#	#\\\[ũ\\4}\b=nk尢Sk:@9\鼴\D\__\r8\=\\9\IFn6x!v\YҮ7H͆@zְ\\딜xFꊝ`CWd\M}\:h\"\rb\F~H$\O0~\\4\\hQ#O⷗\CÓ\.\\\z8\y\0;\J\n\\)\\#\A\\ kUfEӇ\\\"\sC\\byЧO;	\\=\\\\=\\iz!M\WKS\\Z2u\8$Sz\ùyEPeP kՑ\\(&pRg\0Elw9nP[\&Z-lk[i}@!\XA\c\\k\QȩiB\\\\~OX	(O\rsƎ G>\\,pmbKyA\\YyjȯE$l8颎䱗\X(\m\LL\b\C\l\z@Y\1ǸVGu\&3iP\'YW\\\_P\'Lq\Zx\.R~QfT\v\\lkc\ڂ\\\\#\<JCG_ʔ\&p\fz\\Wgќ:-1ٹ\O[OiQeˤ˒۟8wJ\Z\\)\+\\q6ñ2\\\p\0\\M\\A\\Sq\"놔G*\Z.B1-\ \\3\?\h\e\\4\/H\\3kYa1:$GN\W\6\\By\|\6%F\߅b*³@!\=G[\\,Wyh8I^\\niWh{\Z\\9\\\dw\x\\rB\Z\EY\Qf0հ_\\\;VB|\<Clł|?\吓DÆo\%\\DO;\\ol\\\y0%0\\\nO\\'17?f{\Um^\?~\?ēonꧦ_.!_\??^5#L\Y?1\\nS)~>B]\?7\J^\X5\ٙ<\r\ƪQ\_?n\\Zڀ)6*cknZR5|\\\LA\\9\\PaȥB\r^v\\\\(I݃\S9>zb7\'`o\\1\\ag\9?o^s=!\HXtgAkďۭ\Wq\x\>{\"ur0c_>\f\p[r&o\V\"g\Zt\\v?\0n˙\\1li_D>St\\?\y&X\?|o\\$쇑m\r\\M\\\\\\\@埵\^\:r\'h\\\\\7󨷄5P\``;\\0A\6ב\Qg?:\/Nu\r\7~ž~>؈\"l&\-g/?Ge\r\3?\\\[\Z\K8\\\_V\\c}w\~4\\k叾X\"!H\MW\D\}\>~.]}\z\rsW;-N+t;\\c\\T7]\"\}K\~\2bw6N\\nɚ_\\3%\2nlp>\\Ҵέs2!w5aU\N_\\T٪6T\ʥ٣:\< \YYp\8WHG*\D\\\"\L؄\"\\\(J\\.H	:Ky\'Z\9{5<&^Ȇv\\ߎ;B\Tn$CdmU\`\\ɰ9\6o\\?*\~	NB\\;0|bC\vDvu\&ۭ\$;ʐ\n6h\qnj&Rs\wݟt2`\\^;q%\{\p\Îg*h\|AǰG)FZ]\n\zL\ͤE;\Ͱ\M\5b\\\\\Sj\z0YY\\\\'~\\\32ݱ\rdο멢^s2\pqw\"-G\\2\\\\X/0\0=\D\\ZT\Y\ZD-\"AאJ5\\,\ڥ\0\\0C6lK#~嗩q\\B0\@F\\C	Yt\NĚo6i76(\dD?Je𷑇,F\G\l6\,\'\	\2-?\"\ʇµ\\ԑu-reԠ\\(#^\nVp?n*W\n\\,\\ҥnj\gP(\|kiO\n\0G|⸐\%l\\\"\\\O;GJQq\4\\\M-\H\	WPٞ	V\QNExV\@4\\{czyN\}뗻m:\k\\Ȝ\qyk\w\tɦ\\eSHx-	\;\0\HXQ\v:^!\\4tbG\,$pW$;\n\\>\Ҕ5Nl{\r%eg\C=N-\Z㰧O|K\Њ\\{R;\7j\@߭\`a&<\(	\\H<\\l\+\\dYb4\\4t\\'_^wܱD{)WmaB 9YxWiS\\m;b6d\0\3\t\d5p{M\\\]DSn«\\;dqh\\j\`9\\ne}\~e2\vP\\bg\\/a%\>S\t v\\k\Zo^l߀K2r	7t\:\\73Ou{jE\\\\D\B+;M\c(BPְ\\\Z[0qY8\O.\\'\"b׶ɗ\\\\\aFAt\\\m\(c>]إm-l\"Y!\rnۢp\\w\^`@P\Z\ZC\)^v{ޛ	U\;\7^ʶS\\'\ua\Ia/\0v\\B\r\a\\7!\\A\\B.\MO\x}5LgdA\\E5\\-nc\/whf6\\wj\-K,ge\r/t\F\\\{baX\t\ZnT_T\\.\\&5pB*+m\\Ot\m\ΈN[t%wUi,\lh\b\\Mvb\\ۋ\m\Oȯ\I\\Bl1ž\o5>\\n{&WaW\vpT\\yDMD\2ף~nN	0\]&\!O\\Thklm\^҄I\0\(>\ZK&97Uzl:$\!+DP+1\\xutYQee֣*Jr\99e>LHsS\@-T\Z^Ycɂ+0\r\]W:Gjܽ~\&ݪ!9\,eG|eCD5-\Cַ\xW6\Z\Ҫ#\u\M\ 8vp%\\\u\[ɹƍ[\S3Bj\'\7[bV\X֓S^\"	~\0\l\\v]\˺\BB~b{׏@\b\"`Uu_\ccBVL]\Z]\\ۮm\'G:z\U\V!\V\`rJjMBuu\0\:nm\vbww\ ΖY\\]ɞ%;\g>SH\\Z\\PF\|3\9 `\\0~XE5Җ³m\h\M[vT2\{[%8ՆZ6);\\n0Pۋd0p%	\ݣm<wA\Nb`5ޮ	YIC\YT0\p=2\xFG\4Ilr\\\eA\rn\U\\g:ͱ\d[\/\\\'&=X\\0ȳȤ.`H&Owf<\9vB\8b!QnLxg̀*zE6\\#G\/?~\y^\?|¶7x~?','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(2057,'2018-05-20 18:42:38',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\yT\2a{f{c>I\\'\V\ԟ?~\\M\\ڹ\\[S4\w&Uٚ\ʢ޵?TL0\"-\2֧T׹nt\֟F\OuY5ʊg\,5|ɟ⧏\eٸ!Ú2,\\r`Gx,e14WI\\\I6\_>Vs\UBrn*]\+_\\\Y>>\\\x\\>\M\eVduSfUR\y\L\d,\\'Mu%&xYq۔\H\?>>~|h#\O+\7u:\'ngſ\\\/\\\\\\ח\O/n\\Wy\ׯ\\\[]j7mݘdQ\0yru\\\"\U\\*\\}S\t\aYg\#e\\wq7\vL5\?q\7Vn\2fg;@\]LT\\ԪY\kЍgsS\\βاV˶n\ҘF5g@5zT\\r\\\\Z\\Z0N\\nN\nM\\r\Ĥ-r~\气ڸy\2\)!\"wXޛ\6\\G\'\}\<e\$Q07ܺWt\01۹No++#J\\)EQnO\# \\"\Xrk2E}V\\vr0N$oP구~\b\W\}V\Y>}[f4\\r(\4\\@\\\rF\vAW~o\}5~1Su\\\\\\\\iF\\r\%0ifDW\\n:VBm1#ˠOr\\\\\S\ƓӝtW팏\\\{\\pZ˙FUcGbGᫀG\d^%_彩R2fW:UZ\M\E\0\\\ȸ\eH6\t\\Ԡ3qJ_x	mɹn4B櫃\\H%Jt=\t>:,B\Ud\j\VpX\\y hX5V\\Ovg\`\/\\\{` \֔^-H-ZP\ ,\\\~Q+*;\c@dy1#/,|@Nm\\/iw=`\0JV\nZ50\qoD\\*7\)\\R)5sFߔFgqV\Z)[sT;\nI2\\p\\':\X\\\\_|s\\K\\;{v>\\\\\?s\yvw\&\\\7\?\[\Oӳ7ӿ\y7ޙ\\uK9$=v\{|2\\=\\Zޠ\Ac\r\\\]5!$/He\n\M\0\P\\K\Lބ\YG{\kmp$)KMwX\	\*+\ZS\n9<\\AW[\[+FHNU\zv\,\-\\\.\e\46ڰ\-\ikШ\K\"4Y82E\rT\3m|OI\\a@\Z^4\ˤ\rE\\0(59\^jԇPBLPt	h\CdH\cRW/\\ըp-\0ڨlY\ Lԏ\\^\$f\y1?\\rǺYI\dTX/ĥ\\P*n\+\L\\\>;\ \\\H8\hP+r\l\L\.\\\4\%M7S 	M\\n\ӷ5M\\b0\\\!x/?S`_|9`^;\}a\"\yl_MNmlQ`\|Oe΀\nޏ$J\gdI7\&tƶ̠6s8*\"\\{.dD\ۓ\\\Կ\龺#g\0ޗ[|4<\n\10]w\[tb{(_P\~VWWޞ_U{\\\kPSDjz\-Bx}3}{>}.޽7oXjUY\.SUj\hp\hE3\\	M\\Z@\$h\42kM\\\]RjO]A=l`Ps\'Q[\\~)<dg\T\\\25^&\YPVw V\\G{>,Q2PEC`CP&/@\0\\w&`\n\{;P\AwnJlےgEe𭀛al㹞UYR\Z5Km\̀6ٷ lHi;\^\A\Z[-K+-`\\hdp.M<\~\Q\\"a>Yl-NnW\y@\۶VU\,}ҡ\\f\ZgG\\0\\d\@^V!혼\Yvy j\6aŋt&\?\@\W(-45[\\n\kgog+;ml3zD\\\^n\r\	b倦\d8%,E\S&6\KD\0>\"f\\$w?lzEf<\D3$32v\9`·7-;G\\\\\#\-y\f\\0N\\ 0\"}p[Æd\\\:A\}M\[E?YnLW\V\ݭ s`Ȳ-\x\'a/2P_\\\~\_\\,T\CWh\n;Ȼ?G|\K=fqՄ\8dG\n\\j9X1\o\aCAa\:O\W`\+\ZBt\g\><d)\I:= /\l 75kuA\5`N\\;&Щ%\PS\\3;\\̘\0&\"K\7\2lG\e\<\\\\\s\E,\0>xDN#7\M@|NLb|\0 z\\4\\@dTɑ(ۊT\\\'\O=2<O:GM-)\\\\xdP\Oy6c\i\L :yfZ\'\Eê\\\-`=2\S J[\%eu-\\\)Ac\Q\KrÖffS0x\B`_lK\OY\=f`\v\\Z\\'FRnHGIxJܽ\Fcccn9a\n\p_@j\\P\Q\Z\\u\"\u;H2:{j|\Z\Kc\\?n=\rBh\gk)nL,>v\y!8.\\VMO\\!xTp-1?\y8|\rđs\\3\XѸ\\\2ά2c=\\ `_|;\D\FF*<D+`ig\\W\\\^\\Ȥ@Wp>\0\\MZ\(k@d;x\x\\?%\M\\i>\FǮ 1#\\@v\nIfX$Zd\-L@\%Ϯ؝ք-,=c&V#K@i*(k+6\"\j\\\pJbD5\<XmI\%D[65K\5)\v[\v\\}o뻙09̂\\H}\	|\\\+\-0{\nטŰ\n\0C\\`wuz\\"\\eo<\DW\c(\r\J@\4\nZFgM~\\C^BwQ\\\	;r\tBPE؛GPb\\B(L/\\!\.zM#\\\!ʀl\7\\\p\0)U\\ؔw\'-uj\"]U%2WBF$\-j3`Z-O2Ar]2Ґ%\\C0DSab3f9f#-\\'QKD\r\EG?ucǥX \d\\䎱6~\\1*0\'\Rܲ,p#t\[\gr\\\3\\ܨ(\l\]<.\(\MX׷5\\Z`\G\X0,\]Fo\^;%\\\! \9\v\0	{\A\	5ܸ\0\WA\JoD4, \0\h-@\DM\g\\\-\F:Dn	\n\D\b75Ѿ6^\fR\0e+Vd5\\3\8\\.K\2Epfm]\Z##\%y\"\l\>>v`;fm\\\LK\mÇ	0,ɐߚ9Y.zӳy̔,)N$\i\r\'3s4\s\\"\n,\r6WN{ng\p\,ͯӳP\zf\wo\+\\Z,~\\NA\\\A\Ԕ7 3䄡*4\R%i9(\l}).\Ydc\ZeP\\\nS\083?\\eb\KTd./\S{(\R\\>eY>x\\\\p\胶@p<\q\͐#\:v?Nq	YJЇig-« v~pC\\W\\\+%\d\+u\}\3\5\\˼+4^r\D2\K\5ʵz*\'s?*ZTԢX\$\@HY`%\\S	7\c\\0$\~qX\\\:\XBq:Q\\n%6]Ց\I*4\\πa?ZOOD.vL[lP]Q{\i8cvmB\qPZ\1}.\cF\Yl\\m[e\\\\=\\BQ>\&Ϝ#qi:\\Y	YxZ!\\-(\\)}W\!BĿeɩL\A?\\\{O[\%8&כˀp$~`\X-\q\jIn`do\\\9\n\nҲ\Q\'\n\8=\Q\ee2\;h/[=,)\vSdB\\n!\#mJNjPⲨ!uf\\S{t{\\(\WYd\npfN	\Zec-#2\cZ\\ʘY%(ī9\\\\\a\\Jq\\\͡l8\r\{<\\:R\*d\lLcu\e?9\\=l\_۩,\}mEL\2\'{OOvhRw\>#	\W֕[Qf\a-\\'GT<c\Ej\l5җ>|@ϰ\nbkR\\y|X؀\n\)+z\#\=d\K\\~S\Ro\\\ǺU\'\NW.n\\=\Yn#ɸz=+\ZKt1\\"C \@\lsR%y\UelrwkV\db:\\_$F\B\\p4	\``p<9!\O6zSs<\\\\@\ngB\5\w}Bk\G=L\\NτP6\"OfB	mc\B\?rACh\\\0\\\\۽bޘWl8F}VpqPx:\I\0\(\vdF\\-)	pQ;1np&%e6SN\\K*G\\%ܡprO\\Z$`\\h,\;\\XQ\"ǡWF{Z\ڡa\GSQ\"\^6<\n\h%\\\,8[^\=}ĆeɨߐltĹ\Ux0u\p!\X7\r0ϴ`s8J\fCƳ:ڰ:\5x\Юo*J>\\AŁ*YB~_1\ܛ, #7\\L]\SodaqMn\rI\\r\f\f\.\󈥗Rl%m\\\+k\:C<ҩ\dT|gXoD\\n,Y\\\OFJo \@JD(\p>Lf9һn\kdQϴ	\oȳ\ҝAM\\z\\LɃ@3\\p\Z*|\nN쨕\jaM\\\hˌ-ֿByc\nDf.P\u\n)\'\\ɚ{	O\\r\\;`*\`[iQb\\Rs\\\\Ty\Tm\nBe\-T\nϚl	\\.>dY\hb\b\Re\@\K\do9\:\}餂ՎfXcn\U\(/#v\GAMاN\Ӥ|\nx0$\ĽG\\0d$U(+.Kf@g\\˄0<\P}*\\w\>rb%3\=¬ܴ1\\j\ty.;\\n\6dGwn(\\Z\&R\ryYIuBڣl4\|{\0\BMdKp\ց\W,\1kl g\%XlhS{\\'\{Sh]\\\*\'0s\ǽc<o㌍\\n\ol:\@\DFA0y}$\Fa;m8qZ\A4yn+aan:ݍi\r )B\\\G!\\	\yjB>0\\p}&tVF6N= U\h|%ρ?\\6Oq\5JOY\d`Y]\zȐ\\m_1\\\\\پZ6`tל\\-+,@.Hy\+tKAkPh\q\]Y\\Ev\\.\\\\`0A\\|;\S\\Tވؤ\AӋSai1I@`\ 2\r\D!<ʨG\rN\N\HodQs(kd\	.\\?\0\)QK\\\\\\E(8N/\\\\/R=a\r\\G\0NGP\غ\q12\\[\log\s\M\7\h۔KM.ܡ+<ޓ8lW\;\->c^BKW\ėdgbu8 \pL\8k\Q\7HZ\\F7B\'^s\Z\Tq@TURW\oqhq?d:V~\0*#\+Xʳ\\'\b\\$\T phD\'\:e8k\0\ز\\\\\'\,i\\\\%;9\t\3R\ztlT\sg\q\R\uu\~09H\\\\yߐK\\\k\`kv8\^swƬBa4\nB)R|F*Q\j\\j/5w%up\\*NM8\\E坋\]Ja%x\x`E=e+;FB7\/\n\\4\:m\nk9: \_a^HըQ-J2\H\پ^utF\$:\&V>Q\&e\[l˞\Z\e\\nS\)-\\MrΛ\"pͨT;>¦\Y\g\>\f?μ\/%\ )\\o\\"3Pj%be_yvyF1\\\'\E\\\5\r]}ꂭ	\x\"6\̓\Ƌ#w\#{K*E#0	Sb^\\\\\\r+\\0{\J;@H6\i1ͲD;3sZf汴i4j[-n\`\\{\MmN0\"\Z\s5\l,Jj[mw̫)C\"A[߆\9Co:~\"\\%\6\KAQ\lF%nwҜGh\)\$JPڲZ5	\\\)\Zjʆa5<kˍ+\a\*\nU@$\rpXA\X\Z\Si\"c4[&7\qt	G	\(\\\0ؤM۴\XNFh\čO\\ \i\Z\\\ǒ\\HEB\Il\\"X\pJ0\c\p\W\qC\#	#\\\[ũ\\4}\b=nk尢Sk:@9\鼴\D\__\r8\=\\9\IFn6x!v\YҮ7H͆@zְ\\딜xFꊝ`CWd\M}\:h\"\rb\F~H$\O0~\\4\\hQ#O⷗\CÓ\.\\\z8\y\0;\J\n\\)\\#\A\\ kUfEӇ\\\"\sC\\byЧO;	\\=\\\\=\\iz!M\WKS\\Z2u\8$Sz\ùyEPeP kՑ\\(&pRg\0Elw9nP[\&Z-lk[i}@!\XA\c\\k\QȩiB\\\\~OX	(O\rsƎ G>\\,pmbKyA\\YyjȯE$l8颎䱗\X(\m\LL\b\C\l\z@Y\1ǸVGu\&3iP\'YW\\\_P\'Lq\Zx\.R~QfT\v\\lkc\ڂ\\\\#\<JCG_ʔ\&p\fz\\Wgќ:-1ٹ\O[OiQeˤ˒۟8wJ\Z\\)\+\\q6ñ2\\\p\0\\M\\A\\Sq\"놔G*\Z.B1-\ \\3\?\h\e\\4\/H\\3kYa1:$GN\W\6\\By\|\6%F\߅b*³@!\=G[\\,Wyh8I^\\niWh{\Z\\9\\\dw\x\\rB\Z\EY\Qf0հ_\\\;VB|\<Clł|?\吓DÆo\%\\DO;\\ol\\\y0%0\\\nO\\'17?f{\Um^\?~\?ēonꧦ_.!_\??^5#L\Y?1\\nS)~>B]\?7\J^\X5\ٙ<\r\ƪQ\_?n\\Zڀ)6*cknZR5|\\\LA\\9\\PaȥB\r^v\\\\(I݃\S9>zb7\'`o\\1\\ag\9?o^s=!\HXtgAkďۭ\Wq\x\>{\"ur0c_>\f\p[r&o\V\"g\Zt\\v?\0n˙\\1li_D>St\\?\y&X\?|o\\$쇑m\r\\M\\\\\\\@埵\^\:r\'h\\\\\7󨷄5P\``;\\0A\6ב\Qg?:\/Nu\r\7~ž~>؈\"l&\-g/?Ge\r\3?\\\[\Z\K8\\\_V\\c}w\~4\\k叾X\"!H\MW\D\}\>~.]}\z\rsW;-N+t;\\c\\T7]\"\}K\~\2bw6N\\nɚ_\\3%\2nlp>\\Ҵέs2!w5aU\N_\\T٪6T\ʥ٣:\< \YYp\8WHG*\D\\\"\L؄\"\\\(J\\.H	:Ky\'Z\9{5<&^Ȇv\\ߎ;B\Tn$CdmU\`\\ɰ9\6o\\?*\~	NB\\;0|bC\vDvu\&ۭ\$;ʐ\n6h\qnj&Rs\wݟt2`\\^;q%\{\p\Îg*h\|AǰG)FZ]\n\zL\ͤE;\Ͱ\M\5b\\\\\Sj\z0YY\\\\'~\\\32ݱ\rdο멢^s2\pqw\"-G\\2\\\\X/0\0=\D\\ZT\Y\ZD-\"AאJ5\\,\ڥ\0\\0C6lK#~嗩q\\B0\@F\\C	Yt\NĚo6i76(\dD?Je𷑇,F\G\l6\,\'\	\2-?\"\ʇµ\\ԑu-reԠ\\(#^\nVp?n*W\n\\,\\ҥnj\gP(\|kiO\n\0G|⸐\%l\\\"\\\O;GJQq\4\\\M-\H\	WPٞ	V\QNExV\@4\\{czyN\}뗻m:\k\\Ȝ\qyk\w\tɦ\\eSHx-	\;\0\HXQ\v:^!\\4tbG\,$pW$;\n\\>\Ҕ5Nl{\r%eg\C=N-\Z㰧O|K\Њ\\{R;\7j\@߭\`a&<\(	\\H<\\l\+\\dYb4\\4t\\'_^wܱD{)WmaB 9YxWiS\\m;b6d\0\3\t\d5p{M\\\]DSn«\\;dqh\\j\`9\\ne}\~e2\vP\\bg\\/a%\>S\t v\\k\Zo^l߀K2r	7t\:\\73Ou{jE\\\\D\B+;M\c(BPְ\\\Z[0qY8\O.\\'\"b׶ɗ\\\\\aFAt\\\m\(c>]إm-l\"Y!\rnۢp\\w\^`@P\Z\ZC\)^v{ޛ	U\;\7^ʶS\\'\ua\Ia/\0v\\B\r\a\\7!\\A\\B.\MO\x}5LgdA\\E5\\-nc\/whf6\\wj\-K,ge\r/t\F\\\{baX\t\ZnT_T\\.\\&5pB*+m\\Ot\m\ΈN[t%wUi,\lh\b\\Mvb\\ۋ\m\Oȯ\I\\Bl1ž\o5>\\n{&WaW\vpT\\yDMD\2ף~nN	0\]&\!O\\Thklm\^҄I\0\(>\ZK&97Uzl:$\!+DP+1\\xutYQee֣*Jr\99e>LHsS\@-T\Z^Ycɂ+0\r\]W:Gjܽ~\&ݪ!9\,eG|eCD5-\Cַ\xW6\Z\Ҫ#\u\M\ 8vp%\\\u\[ɹƍ[\S3Bj\'\7[bV\X֓S^\"	~\0\l\\v]\˺\BB~b{׏@\b\"`Uu_\ccBVL]\Z]\\ۮm\'G:z\U\V!\V\`rJjMBuu\0\:nm\vbww\ ΖY\\]ɞ%;\g>SH\\Z\\PF\|3\9 `\\0~XE5Җ³m\h\M[vT2\{[%8ՆZ6);\\n0Pۋd0p%	\ݣm<wA\Nb`5ޮ	YIC\YT0\p=2\xFG\4Ilr\\\eA\rn\U\\g:ͱ\d[\/\\\'&=X\\0ȳȤ.`H&Owf<\9vB\8b!QnLxg̀*zE6\\#G\/?~\y^\?|¶7x~?','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2058,'2018-05-20 18:42:38',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\}is\H_\/+EPH]`KVv}h-\xv\\"P1\\yT\2a{f{c>I\\'\V\ԟ?~\\M\\ڹ\\[S4\w&Uٚ\ʢ޵?TL0\"-\2֧T׹nt\֟F\OuY5ʊg\,5|ɟ⧏\eٸ!Ú2,\\r`Gx,e14WI\\\I6\_>Vs\UBrn*]\+_\\\Y>>\\\x\\>\M\eVduSfUR\y\L\d,\\'Mu%&xYq۔\H\?>>~|h#\O+\7u:\'ngſ\\\/\\\\\\ח\O/n\\Wy\ׯ\\\[]j7mݘdQ\0yru\\\"\U\\*\\}S\t\aYg\#e\\wq7\vL5\?q\7Vn\2fg;@\]LT\\ԪY\kЍgsS\\βاV˶n\ҘF5g@5zT\\r\\\\Z\\Z0N\\nN\nM\\r\Ĥ-r~\气ڸy\2\)!\"wXޛ\6\\G\'\}\<e\$Q07ܺWt\01۹No++#J\\)EQnO\# \\"\Xrk2E}V\\vr0N$oP구~\b\W\}V\Y>}[f4\\r(\4\\@\\\rF\vAW~o\}5~1Su\\\\\\\\iF\\r\%0ifDW\\n:VBm1#ˠOr\\\\\S\ƓӝtW팏\\\{\\pZ˙FUcGbGᫀG\d^%_彩R2fW:UZ\M\E\0\\\ȸ\eH6\t\\Ԡ3qJ_x	mɹn4B櫃\\H%Jt=\t>:,B\Ud\j\VpX\\y hX5V\\Ovg\`\/\\\{` \֔^-H-ZP\ ,\\\~Q+*;\c@dy1#/,|@Nm\\/iw=`\0JV\nZ50\qoD\\*7\)\\R)5sFߔFgqV\Z)[sT;\nI2\\p\\':\X\\\\_|s\\K\\;{v>\\\\\?s\yvw\&\\\7\?\[\Oӳ7ӿ\y7ޙ\\uK9$=v\{|2\\=\\Zޠ\Ac\r\\\]5!$/He\n\M\0\P\\K\Lބ\YG{\kmp$)KMwX\	\*+\ZS\n9<\\AW[\[+FHNU\zv\,\-\\\.\e\46ڰ\-\ikШ\K\"4Y82E\rT\3m|OI\\a@\Z^4\ˤ\rE\\0(59\^jԇPBLPt	h\CdH\cRW/\\ըp-\0ڨlY\ Lԏ\\^\$f\y1?\\rǺYI\dTX/ĥ\\P*n\+\L\\\>;\ \\\H8\hP+r\l\L\.\\\4\%M7S 	M\\n\ӷ5M\\b0\\\!x/?S`_|9`^;\}a\"\yl_MNmlQ`\|Oe΀\nޏ$J\gdI7\&tƶ̠6s8*\"\\{.dD\ۓ\\\Կ\龺#g\0ޗ[|4<\n\10]w\[tb{(_P\~VWWޞ_U{\\\kPSDjz\-Bx}3}{>}.޽7oXjUY\.SUj\hp\hE3\\	M\\Z@\$h\42kM\\\]RjO]A=l`Ps\'Q[\\~)<dg\T\\\25^&\YPVw V\\G{>,Q2PEC`CP&/@\0\\w&`\n\{;P\AwnJlےgEe𭀛al㹞UYR\Z5Km\̀6ٷ lHi;\^\A\Z[-K+-`\\hdp.M<\~\Q\\"a>Yl-NnW\y@\۶VU\,}ҡ\\f\ZgG\\0\\d\@^V!혼\Yvy j\6aŋt&\?\@\W(-45[\\n\kgog+;ml3zD\\\^n\r\	b倦\d8%,E\S&6\KD\0>\"f\\$w?lzEf<\D3$32v\9`·7-;G\\\\\#\-y\f\\0N\\ 0\"}p[Æd\\\:A\}M\[E?YnLW\V\ݭ s`Ȳ-\x\'a/2P_\\\~\_\\,T\CWh\n;Ȼ?G|\K=fqՄ\8dG\n\\j9X1\o\aCAa\:O\W`\+\ZBt\g\><d)\I:= /\l 75kuA\5`N\\;&Щ%\PS\\3;\\̘\0&\"K\7\2lG\e\<\\\\\s\E,\0>xDN#7\M@|NLb|\0 z\\4\\@dTɑ(ۊT\\\'\O=2<O:GM-)\\\\xdP\Oy6c\i\L :yfZ\'\Eê\\\-`=2\S J[\%eu-\\\)Ac\Q\KrÖffS0x\B`_lK\OY\=f`\v\\Z\\'FRnHGIxJܽ\Fcccn9a\n\p_@j\\P\Q\Z\\u\"\u;H2:{j|\Z\Kc\\?n=\rBh\gk)nL,>v\y!8.\\VMO\\!xTp-1?\y8|\rđs\\3\XѸ\\\2ά2c=\\ `_|;\D\FF*<D+`ig\\W\\\^\\Ȥ@Wp>\0\\MZ\(k@d;x\x\\?%\M\\i>\FǮ 1#\\@v\nIfX$Zd\-L@\%Ϯ؝ք-,=c&V#K@i*(k+6\"\j\\\pJbD5\<XmI\%D[65K\5)\v[\v\\}o뻙09̂\\H}\	|\\\+\-0{\nטŰ\n\0C\\`wuz\\"\\eo<\DW\c(\r\J@\4\nZFgM~\\C^BwQ\\\	;r\tBPE؛GPb\\B(L/\\!\.zM#\\\!ʀl\7\\\p\0)U\\ؔw\'-uj\"]U%2WBF$\-j3`Z-O2Ar]2Ґ%\\C0DSab3f9f#-\\'QKD\r\EG?ucǥX \d\\䎱6~\\1*0\'\Rܲ,p#t\[\gr\\\3\\ܨ(\l\]<.\(\MX׷5\\Z`\G\X0,\]Fo\^;%\\\! \9\v\0	{\A\	5ܸ\0\WA\JoD4, \0\h-@\DM\g\\\-\F:Dn	\n\D\b75Ѿ6^\fR\0e+Vd5\\3\8\\.K\2Epfm]\Z##\%y\"\l\>>v`;fm\\\LK\mÇ	0,ɐߚ9Y.zӳy̔,)N$\i\r\'3s4\s\\"\n,\r6WN{ng\p\,ͯӳP\zf\wo\+\\Z,~\\NA\\\A\Ԕ7 3䄡*4\R%i9(\l}).\Ydc\ZeP\\\nS\083?\\eb\KTd./\S{(\R\\>eY>x\\\\p\胶@p<\q\͐#\:v?Nq	YJЇig-« v~pC\\W\\\+%\d\+u\}\3\5\\˼+4^r\D2\K\5ʵz*\'s?*ZTԢX\$\@HY`%\\S	7\c\\0$\~qX\\\:\XBq:Q\\n%6]Ց\I*4\\πa?ZOOD.vL[lP]Q{\i8cvmB\qPZ\1}.\cF\Yl\\m[e\\\\=\\BQ>\&Ϝ#qi:\\Y	YxZ!\\-(\\)}W\!BĿeɩL\A?\\\{O[\%8&כˀp$~`\X-\q\jIn`do\\\9\n\nҲ\Q\'\n\8=\Q\ee2\;h/[=,)\vSdB\\n!\#mJNjPⲨ!uf\\S{t{\\(\WYd\npfN	\Zec-#2\cZ\\ʘY%(ī9\\\\\a\\Jq\\\͡l8\r\{<\\:R\*d\lLcu\e?9\\=l\_۩,\}mEL\2\'{OOvhRw\>#	\W֕[Qf\a-\\'GT<c\Ej\l5җ>|@ϰ\nbkR\\y|X؀\n\)+z\#\=d\K\\~S\Ro\\\ǺU\'\NW.n\\=\Yn#ɸz=+\ZKt1\\"C \@\lsR%y\UelrwkV\db:\\_$F\B\\p4	\``p<9!\O6zSs<\\\\@\ngB\5\w}Bk\G=L\\NτP6\"OfB	mc\B\?rACh\\\0\\\\۽bޘWl8F}VpqPx:\I\0\(\vdF\\-)	pQ;1np&%e6SN\\K*G\\%ܡprO\\Z$`\\h,\;\\XQ\"ǡWF{Z\ڡa\GSQ\"\^6<\n\h%\\\,8[^\=}ĆeɨߐltĹ\Ux0u\p!\X7\r0ϴ`s8J\fCƳ:ڰ:\5x\Юo*J>\\AŁ*YB~_1\ܛ, #7\\L]\SodaqMn\rI\\r\f\f\.\󈥗Rl%m\\\+k\:C<ҩ\dT|gXoD\\n,Y\\\OFJo \@JD(\p>Lf9һn\kdQϴ	\oȳ\ҝAM\\z\\LɃ@3\\p\Z*|\nN쨕\jaM\\\hˌ-ֿByc\nDf.P\u\n)\'\\ɚ{	O\\r\\;`*\`[iQb\\Rs\\\\Ty\Tm\nBe\-T\nϚl	\\.>dY\hb\b\Re\@\K\do9\:\}餂ՎfXcn\U\(/#v\GAMاN\Ӥ|\nx0$\ĽG\\0d$U(+.Kf@g\\˄0<\P}*\\w\>rb%3\=¬ܴ1\\j\ty.;\\n\6dGwn(\\Z\&R\ryYIuBڣl4\|{\0\BMdKp\ց\W,\1kl g\%XlhS{\\'\{Sh]\\\*\'0s\ǽc<o㌍\\n\ol:\@\DFA0y}$\Fa;m8qZ\A4yn+aan:ݍi\r )B\\\G!\\	\yjB>0\\p}&tVF6N= U\h|%ρ?\\6Oq\5JOY\d`Y]\zȐ\\m_1\\\\\پZ6`tל\\-+,@.Hy\+tKAkPh\q\]Y\\Ev\\.\\\\`0A\\|;\S\\Tވؤ\AӋSai1I@`\ 2\r\D!<ʨG\rN\N\HodQs(kd\	.\\?\0\)QK\\\\\\E(8N/\\\\/R=a\r\\G\0NGP\غ\q12\\[\log\s\M\7\h۔KM.ܡ+<ޓ8lW\;\->c^BKW\ėdgbu8 \pL\8k\Q\7HZ\\F7B\'^s\Z\Tq@TURW\oqhq?d:V~\0*#\+Xʳ\\'\b\\$\T phD\'\:e8k\0\ز\\\\\'\,i\\\\%;9\t\3R\ztlT\sg\q\R\uu\~09H\\\\yߐK\\\k\`kv8\^swƬBa4\nB)R|F*Q\j\\j/5w%up\\*NM8\\E坋\]Ja%x\x`E=e+;FB7\/\n\\4\:m\nk9: \_a^HըQ-J2\H\پ^utF\$:\&V>Q\&e\[l˞\Z\e\\nS\)-\\MrΛ\"pͨT;>¦\Y\g\>\f?μ\/%\ )\\o\\"3Pj%be_yvyF1\\\'\E\\\5\r]}ꂭ	\x\"6\̓\Ƌ#w\#{K*E#0	Sb^\\\\\\r+\\0{\J;@H6\i1ͲD;3sZf汴i4j[-n\`\\{\MmN0\"\Z\s5\l,Jj[mw̫)C\"A[߆\9Co:~\"\\%\6\KAQ\lF%nwҜGh\)\$JPڲZ5	\\\)\Zjʆa5<kˍ+\a\*\nU@$\rpXA\X\Z\Si\"c4[&7\qt	G	\(\\\0ؤM۴\XNFh\čO\\ \i\Z\\\ǒ\\HEB\Il\\"X\pJ0\c\p\W\qC\#	#\\\[ũ\\4}\b=nk尢Sk:@9\鼴\D\__\r8\=\\9\IFn6x!v\YҮ7H͆@zְ\\딜xFꊝ`CWd\M}\:h\"\rb\F~H$\O0~\\4\\hQ#O⷗\CÓ\.\\\z8\y\0;\J\n\\)\\#\A\\ kUfEӇ\\\"\sC\\byЧO;	\\=\\\\=\\iz!M\WKS\\Z2u\8$Sz\ùyEPeP kՑ\\(&pRg\0Elw9nP[\&Z-lk[i}@!\XA\c\\k\QȩiB\\\\~OX	(O\rsƎ G>\\,pmbKyA\\YyjȯE$l8颎䱗\X(\m\LL\b\C\l\z@Y\1ǸVGu\&3iP\'YW\\\_P\'Lq\Zx\.R~QfT\v\\lkc\ڂ\\\\#\<JCG_ʔ\&p\fz\\Wgќ:-1ٹ\O[OiQeˤ˒۟8wJ\Z\\)\+\\q6ñ2\\\p\0\\M\\A\\Sq\"놔G*\Z.B1-\ \\3\?\h\e\\4\/H\\3kYa1:$GN\W\6\\By\|\6%F\߅b*³@!\=G[\\,Wyh8I^\\niWh{\Z\\9\\\dw\x\\rB\Z\EY\Qf0հ_\\\;VB|\<Clł|?\吓DÆo\%\\DO;\\ol\\\y0%0\\\nO\\'17?f{\Um^\?~\?ēonꧦ_.!_\??^5#L\Y?1\\nS)~>B]\?7\J^\X5\ٙ<\r\ƪQ\_?n\\Zڀ)6*cknZR5|\\\LA\\9\\PaȥB\r^v\\\\(I݃\S9>zb7\'`o\\1\\ag\9?o^s=!\HXtgAkďۭ\Wq\x\>{\"ur0c_>\f\p[r&o\V\"g\Zt\\v?\0n˙\\1li_D>St\\?\y&X\?|o\\$쇑m\r\\M\\\\\\\@埵\^\:r\'h\\\\\7󨷄5P\``;\\0A\6ב\Qg?:\/Nu\r\7~ž~>؈\"l&\-g/?Ge\r\3?\\\[\Z\K8\\\_V\\c}w\~4\\k叾X\"!H\MW\D\}\>~.]}\z\rsW;-N+t;\\c\\T7]\"\}K\~\2bw6N\\nɚ_\\3%\2nlp>\\Ҵέs2!w5aU\N_\\T٪6T\ʥ٣:\< \YYp\8WHG*\D\\\"\L؄\"\\\(J\\.H	:Ky\'Z\9{5<&^Ȇv\\ߎ;B\Tn$CdmU\`\\ɰ9\6o\\?*\~	NB\\;0|bC\vDvu\&ۭ\$;ʐ\n6h\qnj&Rs\wݟt2`\\^;q%\{\p\Îg*h\|AǰG)FZ]\n\zL\ͤE;\Ͱ\M\5b\\\\\Sj\z0YY\\\\'~\\\32ݱ\rdο멢^s2\pqw\"-G\\2\\\\X/0\0=\D\\ZT\Y\ZD-\"AאJ5\\,\ڥ\0\\0C6lK#~嗩q\\B0\@F\\C	Yt\NĚo6i76(\dD?Je𷑇,F\G\l6\,\'\	\2-?\"\ʇµ\\ԑu-reԠ\\(#^\nVp?n*W\n\\,\\ҥnj\gP(\|kiO\n\0G|⸐\%l\\\"\\\O;GJQq\4\\\M-\H\	WPٞ	V\QNExV\@4\\{czyN\}뗻m:\k\\Ȝ\qyk\w\tɦ\\eSHx-	\;\0\HXQ\v:^!\\4tbG\,$pW$;\n\\>\Ҕ5Nl{\r%eg\C=N-\Z㰧O|K\Њ\\{R;\7j\@߭\`a&<\(	\\H<\\l\+\\dYb4\\4t\\'_^wܱD{)WmaB 9YxWiS\\m;b6d\0\3\t\d5p{M\\\]DSn«\\;dqh\\j\`9\\ne}\~e2\vP\\bg\\/a%\>S\t v\\k\Zo^l߀K2r	7t\:\\73Ou{jE\\\\D\B+;M\c(BPְ\\\Z[0qY8\O.\\'\"b׶ɗ\\\\\aFAt\\\m\(c>]إm-l\"Y!\rnۢp\\w\^`@P\Z\ZC\)^v{ޛ	U\;\7^ʶS\\'\ua\Ia/\0v\\B\r\a\\7!\\A\\B.\MO\x}5LgdA\\E5\\-nc\/whf6\\wj\-K,ge\r/t\F\\\{baX\t\ZnT_T\\.\\&5pB*+m\\Ot\m\ΈN[t%wUi,\lh\b\\Mvb\\ۋ\m\Oȯ\I\\Bl1ž\o5>\\n{&WaW\vpT\\yDMD\2ף~nN	0\]&\!O\\Thklm\^҄I\0\(>\ZK&97Uzl:$\!+DP+1\\xutYQee֣*Jr\99e>LHsS\@-T\Z^Ycɂ+0\r\]W:Gjܽ~\&ݪ!9\,eG|eCD5-\Cַ\xW6\Z\Ҫ#\u\M\ 8vp%\\\u\[ɹƍ[\S3Bj\'\7[bV\X֓S^\"	~\0\l\\v]\˺\BB~b{׏@\b\"`Uu_\ccBVL]\Z]\\ۮm\'G:z\U\V!\V\`rJjMBuu\0\:nm\vbww\ ΖY\\]ɞ%;\g>SH\\Z\\PF\|3\9 `\\0~XE5Җ³m\h\M[vT2\{[%8ՆZ6);\\n0Pۋd0p%	\ݣm<wA\Nb`5ޮ	YIC\YT0\p=2\xFG\4Ilr\\\eA\rn\U\\g:ͱ\d[\/\\\'&=X\\0ȳȤ.`H&Owf<\9vB\8b!QnLxg̀*zE6\\#G\/?~\y^\?|¶7x~?','EZ-Page with ID 10 updated.','info'),(2059,'2018-05-20 18:42:38',1,'ezpages.php','ezID=10','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2060,'2018-05-20 18:42:39',1,'ezpages.php','ezID=10','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2061,'2018-05-20 18:42:44',1,'ezpages.php','ezID=11&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(2062,'2018-05-20 18:42:44',1,'ezpages.php','ezID=11&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2063,'2018-05-20 18:42:53',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\]\o\HW\nem@V,J\\\0b\dv (%\\^\懲1\\b>L$SŪW\5\,\\#\dMn૗zgn\\\7YY\\\s>+\<\\u\7u4:5|\>\e\|,+<[gq:%>\n_eC_\\a\\M|Lz\\\|$\\Бc٬\?ٝJr]\?gMP])\ZU.\Mz\r\!\OJ}xByi\}:W6KWY\M\{tUI:7U-6\]\^f\mS#uq.n;dr\\\\\\?e\MYtOr\\Ӈ\'_\\ۃC=R._x7{ys޽ˋwחzfo.\po޾؇wy\AڍI\'W׍.R]\-n\:\_f\uCͳ<k\\/㝧7\\!^\~ڕ2\P$\M!oYܼ혝\\պ2uResSfi\JF_\vtxB7v<[\Z%\j|ժ2QM\F+L\fI/\B\\N\W|fgV-u\rC\'	Cd\I\'&\\\Web\9jsXJm\<aXzG\;,pRW\t2Vo̽Z\k]Hs\\eb\0\.tҴx[Y)TvLY,P\\\Da\R[#)\쳚7\\I%\xR\\\i8\:%v}Q\eUY\\nN雲0F<o\ie߁H\\\.>n\_ž)\jl2#j\\Ó\\\'gOwӜkf]\%0ifDW\\n:V\0\\\mƌl}^\\\\\>Cn<=<\K\\\X|\'\\\0\\Av57\\`lH\h*\Ƒ7\WD	Wygԩ3\kLm=̛\\\%\vfE)<֦\T\n\KhK.t42_lNG\0\vT\\(	\\\d%\<W\\\\.@\񭆵Ɗ\i\\\-9Yxd5\m\KRK\T6H)!s8=:\jQ\\0qG z\/\eȩ\z1 -LF\\nXAK&:t\F\0Q1CŴ\\r{J:nM*a\H1\R\\,7\\J#%b+8xj\'\e\ko\a\'\rlA_\ᬎ2qqy}\\?\\\}\\\_?\\GϿ\<\?8\|y}0MGg{n.o?\\^\\\dozߡ.\\\>\G\\俷:$kPz:5`;O\̃ UVYc\wn\{8vPP\Z޽\"\\M\9\(P\^\\m+ IYZ\m0{bNVYјdP\\\\n\\\p%]0Br\b֓u0}ˢ-hl8a\ikШ\K\"4Y82E\rT\3m|OI\a }g5.ʤ\rE\\0(59\^jԇP\\:CbH\cRW/\\ըp-\0\ڨlY\ L\\\^\$f\V\c]լ\3;*\\=\Rq]{m^p&pEv\HŽ\{X\}\b\0\]4\\m9g=\{r1-rE\\Hg[\mM1\pb\<×\/W0\Td8\\jzx|x6L\r\b\\\$}\n-uT\T~$0Pj>#KQٸ\\\D\Z2\\v\P\\\saG؝\\\x}fcuG\\0:+w,ixc`\w\\n\4PN{^勋\f@\_\I\\\\7-\\\\\\݅zww|\\U[\ڄv5UR\rm7(u\;:\\\\<MF\0x\f;ϫ\R0oP\\0\\\\I\¹/\Y\0Z\~$\+\:k\\\\@\y4\ho\\Gt%ʎ<T\P0\\K7ם	B3^\e\v\ݠET\m[\f؄\$\x\U\l#A\\nd\"Ckz\s\(\rjm\"(R\ntՀag\\9@cU~%t>\ҁ5b֦OMg?X\QOٰ	B\Uk\<\m[۪o\\>FV\\\f\ZgG\\0\\d\B^\vL^\,YȮ\Ze6\rp|\]8\\gH*fQSy\\\r\\pb\N˔?G4ILn\rk\\0\\"FZhzMƿ:Sbncw\t\D\y)A\0J\#bNMM\\\ӛhdF7U\\=g,\\3e\\59z߱|\0E1\\, މX\ \\(\"\0\\5lH\j *^\'Xox-\c+[4@1\F\骽\*=\' \udYO\$,w\ \W\\0|t\W\2Ki\\\H\'yG\<t	\\4\@u\\0l\Vk1@\r#ੈc\\6l\|\%H\]v\\}ԨC\\'\0rSszV/	܃\	b:>:/\\!0ON-(]瀂\2w1\If\\8GM2q_At\v\\V,XD~1>\\\\G\{\4B\>ل\\\$&\0\\[\rmA\DF\e[j=;D\GT\\N\i\%Qޚ=u<YS\YwW	DG7\L\dhXژ`_¸ae\b\\\qqJP-\p\qܰ\Y\)<p!JK\\,3`0\_I\0h1\I+H\#\\	i_\P3\\ﬀ|[N0\Z2\qGF\"zw]}t\/\\\\Ɖ\w\!4xᳳ7&C;\qN\hg_¦\\'di\M*CN]	\<}\\9\Z9Xi,h\\guug^c=\o\ `_|;\D\FF*<D+xdig\\W\\h/wd\@Wp>\0\\MZ\(@d;x\d\\?#\M\\i>\FǮ kFӁ\	\\ͰH(\~[\"\K]kw	O10[Xz\L*zG\GWB:\r\TPD\>Wf;lD\qݰ2\)Y#`\2D瓆KljVd\i1)N>!\0) \\w3a:Rs?>̱z?\W[`&{\9\4V1ae\0&\\7\\GYe\\\\V1b\;]UH4/\>Sj\F_ŤQ\U\Z	\r%\'\\'G>>\Pa\	v\\\ٔ.87\.P^fs\\r}:Gj\\GC\ʯ\Q\\:?0Ʀ;iSI\**dD\ܢ6&hyi\#\rY[\\8\\OD\8%&6\&cV_mA>A\\m\5\\"\#A\\\`\\'\\\\\\\؝<ǜJr\\8Щ/s\\"b?\LŹf\+υQQ\\ûx\\PQЛ屮ok5.`\\7Y61Oa\Zew\`צ\0\.\|T\_0?<I\;\RÍ;q)\\\\Z\8q+ίFtHJ\0LhJw\\0{\\\0	Ѷ\d\}7hA\L\JP8\'V.vS\zp͒I	ÔIҮQX\&\\nc?\0a\\jUr)3ui\02\-\ϖag3y\gliޖH`~\\\4~\6|\0ÒYms5\r=6K	\4|rD`\Z9}*HA-\%Km\N\'O\mǽ\~73\\38T2]\\?\޾\=$\\\vǊ-\hہӼx1H@S{tƒ0TZ\nг$\r\0ſdoР\\#\҅\",2pLBl\n\=Xa\n\0g\\\3TLEJ\.\\EVyq:OY\5ٷ8#|}\\\!0{\zg3d{<\H΁쏾S\\\.H\lȇi\-« v~pC\\W\\\+%\\l\\\\kD\KyWh.^r\D2\K\5εx`\9\\n*jQ7;RX~	y\T\:nq\b]d9\\/k\0\<\\{\0U(.P\'j<@D\\9Xɝ2+\8D\bǴ\	U,+\8`\؝3FjW*R\ˀuH\8\\\\j,K\\2<fD5MݶU\5z\\c-u\\\\%}\+Y@\\\S\!~a#\0[PS\\\nz%g\g\Sε%:O\\#IirL2\&hJO\Y<P\\r\- S\1G\\"8]\\h\(DTYp2\2\Fmlݣ\!\|\}	\I\rJ\\!rt n\Lt7E^x\ncn\"\'\\1\~E\0gV\Đ`a[vk9#\@g_T\\K\(YL\^.i(ƥ-n\"$!ss(NnC)D~xT9\4eOeُNq![\v*B +x_[\\\S0C\\o盓l4;\>#	\W\'+Qf\a-\\'GT<c\\"5\qD\Z\\ޣK\gX^o|֊\">H,l@g|7U~\K=\\\2%.\}\)wio\\ꇺUg*]\	\%{\\\"ɸz=+\Z!u!~j9\WK2\nrwkք\\$\\nP|\KX:9\h\\"8\(pyr8C\9xmpU\fj\y\'gO\Gg@;d\\?\D\\kt]\|\^{:\˝	$\"fB	mc\B\?rA\(m&\Q{ż1,\0]3\p:DpqPx:\I\0a[\0I\AddС[R*\\qwb\<\Lڔi\L{:(\(^Q)l<:\.\ݸ\\|Z7\ \\'{-Xp\xEe\\7Ɗ9\\i\'6\r\\<b\B\\YPF\\/dWoeY\\\"\#6,\Ȏ\r\Fǜ+nUf.nA/G@Hz\ML\3-؜\Cn*\tْl\BPɀMmXv\r^`h׿AAGUR%C\q \X&O}֍F!?V.\.:&)\\%©7~۸&\LXpSls\a\󈥗Rl%m\\\+k\:C<ҩ\\\\"P)\$(45X\)\)߁-\\\@<K7XQ\|*\rw\y\W\ndQϴ	\/\rT\\\N\ 9C}\'A/9I\G +ǌ\'\%ƣJϊ\-\0ԉZQYBl\F]fl\\BY\U^ר@\X0\\A\};Y3x/xS)!\\Xr\F\nE陑%\:\L~ikNx\ۂz*/\M\E\Eמcb*\P\YVX\\\6K3ޗMvS\\"VB,\VV\y\-g\\\/Tp\\l	k\%\\2j\>$\\,Ri4)~rh=UCr\\!ow2\*\y3\0wd˄0<\P>j\zb93\=\DnJL9B۝.O\γ\8k-\ѝ\\e`Yc\D!/+[,~@Hf\A-\IVQGY9\η̾^b5F\09\d(z-mN\ߟP\MuQ;\r^rD\َ36v߾g}\իp\n\7I\\y6I\\h\?\iÉ\:\}\t76\j\QP]Dtw\'H\n`Y![\72	\R\\\!<?\\n$i\C\J O\@s2.\\m=\o\mr1e\rl\\|-\\\W}A{kN\‖H\.G+<A\Z\\6J̠5K=t\CyW#>\`f(W8K[,\0&ݜogQp걓\tp\"<\czq*L4\rBwv5&	\0>/[A!	\"\`iN£z\\0\\\\4F57JFVY\0\\\00k\!(OZM}\\\"/V\\"{Y\|\n:Pd|H5 L\r?Ht:b\\]w,>NA\Iz\8\hOO\qcЎM\\\\\\vM\\\3\\H t\A|\\L$N\\'smt\\2J\r6߇\u\w\O	!\ל&o\֫8W *z֪\y\X|+TƷ8܏`\NTʓq\xa\'d	\(52	5\|(\Z\IEN\\\Z3tp\d{f\\]4-o%g$Ĳ\N9/\#D5L9wFq\,^Wl\gK4\\'\r)wm@\Z\\d\:F b/c?\H>*߉\\|HQsWQR\'o\n3\\ cnXtX~rq¹K\4-\8XeQO\\\ѯ\\\CB4GN\Z\|Wl5\}ԫo+\BҀ7\pԫ\\;O\Ѥ\0C\\0*٤>K\S#]0U\vhsޜ\r\nv|Mϲ}\~E\_Jpe\E(3Pj%b/<u\\\m횆nX\؎Iub;\'\DyJ;bz>wvHp&6`\ڬWv763yFl\\Bmb9\5f\0\i $\V\\fYȹ\nFDW\\PsPJZZ\\gmZy zkSaL܅o\2K}Zʶe7ȼ\qQlA\۰=g\\\z/\\禹ǒn\ATG\e}v۶Q۝4\\>\#\\t&_%V\@B9{s0\Z0,GwCTv\esJ[PIVm\0PaH\r)41\Z\-Q\\qt	G	\(\\\0ؤM۴\XNFh\\M\苳 3V\\\\r\C\c\\\HE\B\I$a,i8V}%\n8\k\qC\#	#\\H\\\M>R\ZC{X\)5J^\t^ZEo/\ί\\\\\lFnW6x!v\YҮ7H͆@zְ\\딜E㍹ı\",(\'C\n*\xݮEA̒~\\	\D._0\rW$\nu	\P\"\pvFDҶ\y\0;\\\\)\\#\A\\\.\\\M͉!\\0C\\\\\q\f\\\iz!M\+S\\Z2u\8$Sz\¹yEPeP kՑ\\(pR\\0E\;G\([~\\&Z@\\V4Crk\\Zr밎t\kBNM[61$&8O\ByJ3v,\09\9\\8d\u.\Yh\\\M\cTC~-\"Id\\Iu$E\By\']31Ic\K.jm\f\\\JN8\=[\9B˛̤\}a=ŴvO~A0\1k\A\$]aDMRŋ\!\"bc\ڂ\\\\#ݼJCG_ʔ\&p&\B\``\y4NKLvnk\\\)\"#,\v`Y27q玡^AQ\ڽ1\",7a3\^xt^osH\mV/	O\p|0\Y7<RטpzhE	w<E5\.YV 1kϬubdM\\:_ky\E\-\\\\cqnSbj](\"U\n\q;ݪMUf\\\$yɲU7P\rvxѪ.\EFx\L1IrԀ(\\/\aS\rk\\Zx@{\Jσg(-,\\\o:	\\Z9\ \Z6x.\\^Nxc\>|#3\s\\X\Z\0´~>Ok\?\8\7\Hk\\G\s<)\f~j*\%1\ӓu<ϤE\\#0\\cԕ\msS\\\\uG?\!o6֍rq6W\nEH\QmiI\\+,3̛/#\;CŇ\\"\n6x޹ˊG<&\rv>Vm\\ݜ]m\'G=|l\y\uzrB\"\aѝX~Z\ ~\m-_#\[4`\\\\[\Ñs\\\.\\73=\]w9+\c\tEg<\ೝ}\Lѵ8.;\nT\Na-\'ڽ\\cZe?d\lc\lp/n\"~N\*\\֑{A\?\^\$ǽ%l\w\)fg	2\_GNGp<0\<?;ב\q\\\v\/p+拜\n\;\N\?\;\*^,~B\.ng~­oi\\\ \K\\G&\\S\\~\\5h\\\Z\}D|Cu8x4]FR\\\4\K\l\ivTѭ\r\<\I\>R.Su\Pt-o	\J8	*l\4}\~=7Xrn	\gզ[6u6^4\F 31\.YZ\\ž MkY/vX\\?\6=/\\Z\\n\鑊:QG]dtW	0Q\]EI\0Ag)\D<s\\kSᇮ4\В\m\\ Y[\h\a*21dH\͛,\_\-|/\PߊOs(JGaO_\m\:zM#oy`&&jv\#j.}:\\N\}\\`?\m\4L\r\z{bե\\\LZ+I߳6E7tqevM\zRWXn\wrlz,\Տgd>cm/4\p\\\O\Z9gG.\NmK&\Q\&a{iv.y\9ѵ.U\wVqQF\L\Z.\QNb\\^j$r\ХM\*jd\\\\\Ը]hDI`G\@	V\'\.\NĚo6i76h!\\\2~\\\F\[GI \\YNp\el=N[\\D\\=kt#Z\\Q._8\\z)\Z :\\XįK\\\ϠP\R/7D\Va:\q!K\޽/84E\칞vV\MӸo\gr5\0\\"!\'w\_B\Lrr*\A\\\\o\:]<\\\/w\tzu[\Mא9\\l\\M[˦%\Ѯ$G\ \P#a	D%\$u(]\r\Љ\	$pW$;\n\\>-5+)k:(h\5\\\\z}?5{Z4t=\'aO#\.Qӡ/l\\ިM}Lx~Q\H<\ϥq4k2`k4\\4tݧ_^wܱD{i\\>]\\«JIqv<:\mȺa\g\\n\\Tk\\w-N	\7/\\\Ӄ8>h%\\\,\r.\rJ}\~eR T=|\併3\v헇\w|\)}\ũ:;p5\D/]vo@%x[τ\roc\\șǺ\=Zb\\\Dk.\41! |\nyE%kmYp\e\\\6\3<l|V\\Kq/\\\cSW\э\=۴Q\|K\F\D\6e\/E\L2c(4\rHdSN\<7Sw\o*J\)gٺ{R\]6Col\gz\k8Mw@\mС\w\S3^\a\r\Yv\A\oF\0q[1\;43X\\;5\`]\\]<\F;uF=V7Ɵ[\U8\\mt\8a++m\G\\Ot\m\ΈN[tm\p\XIh\b\\;1m\\s\\\ 	a\.m7\\\\\]a\\\*\\ڎ\2]9UQ\ͨ߇[)F+\\B}dڛ\n\VKB&L\0$G\u\$\ڶk2d[\6*@\>Bqj%\s\\Z.+\\z\TE\^5\3\I\b\P\"o\0i\rj=J\\\ҷ+c,Ypa\\J\A\o\D[U?d5\'\\/$G$\Т=d}ƻhK<\aR7^+\0=\F7k\:\0M\5n\Z%z-Pl\]-U{\\xlYAc\'\E\a8ي\컪M\rLe@\dwiV\M|y\Z.ĄDL]\Z]Im\ҏڶғ#WZ=\*n+\V\`rJjMBuu\0\:nm\v\Z\r\	\t\@r\\#=A7%J\w\ !\$}k8.ѡ!\f\sڃ}au\\ضmsXG\>o\H\	\Sɠ\m,\hV[j\r\fڦ\lWZ.PH(0ĥv\\݊;	\Nrwk(]ސ`#gQ\	rdN\xFǖi\䶧˶8\rn\U\\g:ḻ\d)跾\\\'&=X\\0ȳȤ.`LLOwn<ڴr4\q\B\n&\\ϚU8l\\7F><I_~\c[\?<mo^','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(2064,'2018-05-20 18:42:53',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary '\]\o\HW\nem@V,J\\\0b\dv (%\\^\懲1\\b>L$SŪW\5\,\\#\dMn૗zgn\\\7YY\\\s>+\<\\u\7u4:5|\>\e\|,+<[gq:%>\n_eC_\\a\\M|Lz\\\|$\\Бc٬\?ٝJr]\?gMP])\ZU.\Mz\r\!\OJ}xByi\}:W6KWY\M\{tUI:7U-6\]\^f\mS#uq.n;dr\\\\\\?e\MYtOr\\Ӈ\'_\\ۃC=R._x7{ys޽ˋwחzfo.\po޾؇wy\AڍI\'W׍.R]\-n\:\_f\uCͳ<k\\/㝧7\\!^\~ڕ2\P$\M!oYܼ혝\\պ2uResSfi\JF_\vtxB7v<[\Z%\j|ժ2QM\F+L\fI/\B\\N\W|fgV-u\rC\'	Cd\I\'&\\\Web\9jsXJm\<aXzG\;,pRW\t2Vo̽Z\k]Hs\\eb\0\.tҴx[Y)TvLY,P\\\Da\R[#)\쳚7\\I%\xR\\\i8\:%v}Q\eUY\\nN雲0F<o\ie߁H\\\.>n\_ž)\jl2#j\\Ó\\\'gOwӜkf]\%0ifDW\\n:V\0\\\mƌl}^\\\\\>Cn<=<\K\\\X|\'\\\0\\Av57\\`lH\h*\Ƒ7\WD	Wygԩ3\kLm=̛\\\%\vfE)<֦\T\n\KhK.t42_lNG\0\vT\\(	\\\d%\<W\\\\.@\񭆵Ɗ\i\\\-9Yxd5\m\KRK\T6H)!s8=:\jQ\\0qG z\/\eȩ\z1 -LF\\nXAK&:t\F\0Q1CŴ\\r{J:nM*a\H1\R\\,7\\J#%b+8xj\'\e\ko\a\'\rlA_\ᬎ2qqy}\\?\\\}\\\_?\\GϿ\<\?8\|y}0MGg{n.o?\\^\\\dozߡ.\\\>\G\\俷:$kPz:5`;O\̃ UVYc\wn\{8vPP\Z޽\"\\M\9\(P\^\\m+ IYZ\m0{bNVYјdP\\\\n\\\p%]0Br\b֓u0}ˢ-hl8a\ikШ\K\"4Y82E\rT\3m|OI\a }g5.ʤ\rE\\0(59\^jԇP\\:CbH\cRW/\\ըp-\0\ڨlY\ L\\\^\$f\V\c]լ\3;*\\=\Rq]{m^p&pEv\HŽ\{X\}\b\0\]4\\m9g=\{r1-rE\\Hg[\mM1\pb\<×\/W0\Td8\\jzx|x6L\r\b\\\$}\n-uT\T~$0Pj>#KQٸ\\\D\Z2\\v\P\\\saG؝\\\x}fcuG\\0:+w,ixc`\w\\n\4PN{^勋\f@\_\I\\\\7-\\\\\\݅zww|\\U[\ڄv5UR\rm7(u\;:\\\\<MF\0x\f;ϫ\R0oP\\0\\\\I\¹/\Y\0Z\~$\+\:k\\\\@\y4\ho\\Gt%ʎ<T\P0\\K7ם	B3^\e\v\ݠET\m[\f؄\$\x\U\l#A\\nd\"Ckz\s\(\rjm\"(R\ntՀag\\9@cU~%t>\ҁ5b֦OMg?X\QOٰ	B\Uk\<\m[۪o\\>FV\\\f\ZgG\\0\\d\B^\vL^\,YȮ\Ze6\rp|\]8\\gH*fQSy\\\r\\pb\N˔?G4ILn\rk\\0\\"FZhzMƿ:Sbncw\t\D\y)A\0J\#bNMM\\\ӛhdF7U\\=g,\\3e\\59z߱|\0E1\\, މX\ \\(\"\0\\5lH\j *^\'Xox-\c+[4@1\F\骽\*=\' \udYO\$,w\ \W\\0|t\W\2Ki\\\H\'yG\<t	\\4\@u\\0l\Vk1@\r#ੈc\\6l\|\%H\]v\\}ԨC\\'\0rSszV/	܃\	b:>:/\\!0ON-(]瀂\2w1\If\\8GM2q_At\v\\V,XD~1>\\\\G\{\4B\>ل\\\$&\0\\[\rmA\DF\e[j=;D\GT\\N\i\%Qޚ=u<YS\YwW	DG7\L\dhXژ`_¸ae\b\\\qqJP-\p\qܰ\Y\)<p!JK\\,3`0\_I\0h1\I+H\#\\	i_\P3\\ﬀ|[N0\Z2\qGF\"zw]}t\/\\\\Ɖ\w\!4xᳳ7&C;\qN\hg_¦\\'di\M*CN]	\<}\\9\Z9Xi,h\\guug^c=\o\ `_|;\D\FF*<D+xdig\\W\\h/wd\@Wp>\0\\MZ\(@d;x\d\\?#\M\\i>\FǮ kFӁ\	\\ͰH(\~[\"\K]kw	O10[Xz\L*zG\GWB:\r\TPD\>Wf;lD\qݰ2\)Y#`\2D瓆KljVd\i1)N>!\0) \\w3a:Rs?>̱z?\W[`&{\9\4V1ae\0&\\7\\GYe\\\\V1b\;]UH4/\>Sj\F_ŤQ\U\Z	\r%\'\\'G>>\Pa\	v\\\ٔ.87\.P^fs\\r}:Gj\\GC\ʯ\Q\\:?0Ʀ;iSI\**dD\ܢ6&hyi\#\rY[\\8\\OD\8%&6\&cV_mA>A\\m\5\\"\#A\\\`\\'\\\\\\\؝<ǜJr\\8Щ/s\\"b?\LŹf\+υQQ\\ûx\\PQЛ屮ok5.`\\7Y61Oa\Zew\`צ\0\.\|T\_0?<I\;\RÍ;q)\\\\Z\8q+ίFtHJ\0LhJw\\0{\\\0	Ѷ\d\}7hA\L\JP8\'V.vS\zp͒I	ÔIҮQX\&\\nc?\0a\\jUr)3ui\02\-\ϖag3y\gliޖH`~\\\4~\6|\0ÒYms5\r=6K	\4|rD`\Z9}*HA-\%Km\N\'O\mǽ\~73\\38T2]\\?\޾\=$\\\vǊ-\hہӼx1H@S{tƒ0TZ\nг$\r\0ſdoР\\#\҅\",2pLBl\n\=Xa\n\0g\\\3TLEJ\.\\EVyq:OY\5ٷ8#|}\\\!0{\zg3d{<\H΁쏾S\\\.H\lȇi\-« v~pC\\W\\\+%\\l\\\\kD\KyWh.^r\D2\K\5εx`\9\\n*jQ7;RX~	y\T\:nq\b]d9\\/k\0\<\\{\0U(.P\'j<@D\\9Xɝ2+\8D\bǴ\	U,+\8`\؝3FjW*R\ˀuH\8\\\\j,K\\2<fD5MݶU\5z\\c-u\\\\%}\+Y@\\\S\!~a#\0[PS\\\nz%g\g\Sε%:O\\#IirL2\&hJO\Y<P\\r\- S\1G\\"8]\\h\(DTYp2\2\Fmlݣ\!\|\}	\I\rJ\\!rt n\Lt7E^x\ncn\"\'\\1\~E\0gV\Đ`a[vk9#\@g_T\\K\(YL\^.i(ƥ-n\"$!ss(NnC)D~xT9\4eOeُNq![\v*B +x_[\\\S0C\\o盓l4;\>#	\W\'+Qf\a-\\'GT<c\\"5\qD\Z\\ޣK\gX^o|֊\">H,l@g|7U~\K=\\\2%.\}\)wio\\ꇺUg*]\	\%{\\\"ɸz=+\Z!u!~j9\WK2\nrwkք\\$\\nP|\KX:9\h\\"8\(pyr8C\9xmpU\fj\y\'gO\Gg@;d\\?\D\\kt]\|\^{:\˝	$\"fB	mc\B\?rA\(m&\Q{ż1,\0]3\p:DpqPx:\I\0a[\0I\AddС[R*\\qwb\<\Lڔi\L{:(\(^Q)l<:\.\ݸ\\|Z7\ \\'{-Xp\xEe\\7Ɗ9\\i\'6\r\\<b\B\\YPF\\/dWoeY\\\"\#6,\Ȏ\r\Fǜ+nUf.nA/G@Hz\ML\3-؜\Cn*\tْl\BPɀMmXv\r^`h׿AAGUR%C\q \X&O}֍F!?V.\.:&)\\%©7~۸&\LXpSls\a\󈥗Rl%m\\\+k\:C<ҩ\\\\"P)\$(45X\)\)߁-\\\@<K7XQ\|*\rw\y\W\ndQϴ	\/\rT\\\N\ 9C}\'A/9I\G +ǌ\'\%ƣJϊ\-\0ԉZQYBl\F]fl\\BY\U^ר@\X0\\A\};Y3x/xS)!\\Xr\F\nE陑%\:\L~ikNx\ۂz*/\M\E\Eמcb*\P\YVX\\\6K3ޗMvS\\"VB,\VV\y\-g\\\/Tp\\l	k\%\\2j\>$\\,Ri4)~rh=UCr\\!ow2\*\y3\0wd˄0<\P>j\zb93\=\DnJL9B۝.O\γ\8k-\ѝ\\e`Yc\D!/+[,~@Hf\A-\IVQGY9\η̾^b5F\09\d(z-mN\ߟP\MuQ;\r^rD\َ36v߾g}\իp\n\7I\\y6I\\h\?\iÉ\:\}\t76\j\QP]Dtw\'H\n`Y![\72	\R\\\!<?\\n$i\C\J O\@s2.\\m=\o\mr1e\rl\\|-\\\W}A{kN\‖H\.G+<A\Z\\6J̠5K=t\CyW#>\`f(W8K[,\0&ݜogQp걓\tp\"<\czq*L4\rBwv5&	\0>/[A!	\"\`iN£z\\0\\\\4F57JFVY\0\\\00k\!(OZM}\\\"/V\\"{Y\|\n:Pd|H5 L\r?Ht:b\\]w,>NA\Iz\8\hOO\qcЎM\\\\\\vM\\\3\\H t\A|\\L$N\\'smt\\2J\r6߇\u\w\O	!\ל&o\֫8W *z֪\y\X|+TƷ8܏`\NTʓq\xa\'d	\(52	5\|(\Z\IEN\\\Z3tp\d{f\\]4-o%g$Ĳ\N9/\#D5L9wFq\,^Wl\gK4\\'\r)wm@\Z\\d\:F b/c?\H>*߉\\|HQsWQR\'o\n3\\ cnXtX~rq¹K\4-\8XeQO\\\ѯ\\\CB4GN\Z\|Wl5\}ԫo+\BҀ7\pԫ\\;O\Ѥ\0C\\0*٤>K\S#]0U\vhsޜ\r\nv|Mϲ}\~E\_Jpe\E(3Pj%b/<u\\\m횆nX\؎Iub;\'\DyJ;bz>wvHp&6`\ڬWv763yFl\\Bmb9\5f\0\i $\V\\fYȹ\nFDW\\PsPJZZ\\gmZy zkSaL܅o\2K}Zʶe7ȼ\qQlA\۰=g\\\z/\\禹ǒn\ATG\e}v۶Q۝4\\>\#\\t&_%V\@B9{s0\Z0,GwCTv\esJ[PIVm\0PaH\r)41\Z\-Q\\qt	G	\(\\\0ؤM۴\XNFh\\M\苳 3V\\\\r\C\c\\\HE\B\I$a,i8V}%\n8\k\qC\#	#\\H\\\M>R\ZC{X\)5J^\t^ZEo/\ί\\\\\lFnW6x!v\YҮ7H͆@zְ\\딜E㍹ı\",(\'C\n*\xݮEA̒~\\	\D._0\rW$\nu	\P\"\pvFDҶ\y\0;\\\\)\\#\A\\\.\\\M͉!\\0C\\\\\q\f\\\iz!M\+S\\Z2u\8$Sz\¹yEPeP kՑ\\(pR\\0E\;G\([~\\&Z@\\V4Crk\\Zr밎t\kBNM[61$&8O\ByJ3v,\09\9\\8d\u.\Yh\\\M\cTC~-\"Id\\Iu$E\By\']31Ic\K.jm\f\\\JN8\=[\9B˛̤\}a=ŴvO~A0\1k\A\$]aDMRŋ\!\"bc\ڂ\\\\#ݼJCG_ʔ\&p&\B\``\y4NKLvnk\\\)\"#,\v`Y27q玡^AQ\ڽ1\",7a3\^xt^osH\mV/	O\p|0\Y7<RטpzhE	w<E5\.YV 1kϬubdM\\:_ky\E\-\\\\cqnSbj](\"U\n\q;ݪMUf\\\$yɲU7P\rvxѪ.\EFx\L1IrԀ(\\/\aS\rk\\Zx@{\Jσg(-,\\\o:	\\Z9\ \Z6x.\\^Nxc\>|#3\s\\X\Z\0´~>Ok\?\8\7\Hk\\G\s<)\f~j*\%1\ӓu<ϤE\\#0\\cԕ\msS\\\\uG?\!o6֍rq6W\nEH\QmiI\\+,3̛/#\;CŇ\\"\n6x޹ˊG<&\rv>Vm\\ݜ]m\'G=|l\y\uzrB\"\aѝX~Z\ ~\m-_#\[4`\\\\[\Ñs\\\.\\73=\]w9+\c\tEg<\ೝ}\Lѵ8.;\nT\Na-\'ڽ\\cZe?d\lc\lp/n\"~N\*\\֑{A\?\^\$ǽ%l\w\)fg	2\_GNGp<0\<?;ב\q\\\v\/p+拜\n\;\N\?\;\*^,~B\.ng~­oi\\\ \K\\G&\\S\\~\\5h\\\Z\}D|Cu8x4]FR\\\4\K\l\ivTѭ\r\<\I\>R.Su\Pt-o	\J8	*l\4}\~=7Xrn	\gզ[6u6^4\F 31\.YZ\\ž MkY/vX\\?\6=/\\Z\\n\鑊:QG]dtW	0Q\]EI\0Ag)\D<s\\kSᇮ4\В\m\\ Y[\h\a*21dH\͛,\_\-|/\PߊOs(JGaO_\m\:zM#oy`&&jv\#j.}:\\N\}\\`?\m\4L\r\z{bե\\\LZ+I߳6E7tqevM\zRWXn\wrlz,\Տgd>cm/4\p\\\O\Z9gG.\NmK&\Q\&a{iv.y\9ѵ.U\wVqQF\L\Z.\QNb\\^j$r\ХM\*jd\\\\\Ը]hDI`G\@	V\'\.\NĚo6i76h!\\\2~\\\F\[GI \\YNp\el=N[\\D\\=kt#Z\\Q._8\\z)\Z :\\XįK\\\ϠP\R/7D\Va:\q!K\޽/84E\칞vV\MӸo\gr5\0\\"!\'w\_B\Lrr*\A\\\\o\:]<\\\/w\tzu[\Mא9\\l\\M[˦%\Ѯ$G\ \P#a	D%\$u(]\r\Љ\	$pW$;\n\\>-5+)k:(h\5\\\\z}?5{Z4t=\'aO#\.Qӡ/l\\ިM}Lx~Q\H<\ϥq4k2`k4\\4tݧ_^wܱD{i\\>]\\«JIqv<:\mȺa\g\\n\\Tk\\w-N	\7/\\\Ӄ8>h%\\\,\r.\rJ}\~eR T=|\併3\v헇\w|\)}\ũ:;p5\D/]vo@%x[τ\roc\\șǺ\=Zb\\\Dk.\41! |\nyE%kmYp\e\\\6\3<l|V\\Kq/\\\cSW\э\=۴Q\|K\F\D\6e\/E\L2c(4\rHdSN\<7Sw\o*J\)gٺ{R\]6Col\gz\k8Mw@\mС\w\S3^\a\r\Yv\A\oF\0q[1\;43X\\;5\`]\\]<\F;uF=V7Ɵ[\U8\\mt\8a++m\G\\Ot\m\ΈN[tm\p\XIh\b\\;1m\\s\\\ 	a\.m7\\\\\]a\\\*\\ڎ\2]9UQ\ͨ߇[)F+\\B}dڛ\n\VKB&L\0$G\u\$\ڶk2d[\6*@\>Bqj%\s\\Z.+\\z\TE\^5\3\I\b\P\"o\0i\rj=J\\\ҷ+c,Ypa\\J\A\o\D[U?d5\'\\/$G$\Т=d}ƻhK<\aR7^+\0=\F7k\:\0M\5n\Z%z-Pl\]-U{\\xlYAc\'\E\a8ي\컪M\rLe@\dwiV\M|y\Z.ĄDL]\Z]Im\ҏڶғ#WZ=\*n+\V\`rJjMBuu\0\:nm\v\Z\r\	\t\@r\\#=A7%J\w\ !\$}k8.ѡ!\f\sڃ}au\\ضmsXG\>o\H\	\Sɠ\m,\hV[j\r\fڦ\lWZ.PH(0ĥv\\݊;	\Nrwk(]ސ`#gQ\	rdN\xFǖi\䶧˶8\rn\U\\g:ḻ\d)跾\\\'&=X\\0ȳȤ.`LLOwn<ڴr4\q\B\n&\\ϚU8l\\7F><I_~\c[\?<mo^','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2065,'2018-05-20 18:42:53',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\]\o\HW\nem@V,J\\\0b\dv (%\\^\懲1\\b>L$SŪW\5\,\\#\dMn૗zgn\\\7YY\\\s>+\<\\u\7u4:5|\>\e\|,+<[gq:%>\n_eC_\\a\\M|Lz\\\|$\\Бc٬\?ٝJr]\?gMP])\ZU.\Mz\r\!\OJ}xByi\}:W6KWY\M\{tUI:7U-6\]\^f\mS#uq.n;dr\\\\\\?e\MYtOr\\Ӈ\'_\\ۃC=R._x7{ys޽ˋwחzfo.\po޾؇wy\AڍI\'W׍.R]\-n\:\_f\uCͳ<k\\/㝧7\\!^\~ڕ2\P$\M!oYܼ혝\\պ2uResSfi\JF_\vtxB7v<[\Z%\j|ժ2QM\F+L\fI/\B\\N\W|fgV-u\rC\'	Cd\I\'&\\\Web\9jsXJm\<aXzG\;,pRW\t2Vo̽Z\k]Hs\\eb\0\.tҴx[Y)TvLY,P\\\Da\R[#)\쳚7\\I%\xR\\\i8\:%v}Q\eUY\\nN雲0F<o\ie߁H\\\.>n\_ž)\jl2#j\\Ó\\\'gOwӜkf]\%0ifDW\\n:V\0\\\mƌl}^\\\\\>Cn<=<\K\\\X|\'\\\0\\Av57\\`lH\h*\Ƒ7\WD	Wygԩ3\kLm=̛\\\%\vfE)<֦\T\n\KhK.t42_lNG\0\vT\\(	\\\d%\<W\\\\.@\񭆵Ɗ\i\\\-9Yxd5\m\KRK\T6H)!s8=:\jQ\\0qG z\/\eȩ\z1 -LF\\nXAK&:t\F\0Q1CŴ\\r{J:nM*a\H1\R\\,7\\J#%b+8xj\'\e\ko\a\'\rlA_\ᬎ2qqy}\\?\\\}\\\_?\\GϿ\<\?8\|y}0MGg{n.o?\\^\\\dozߡ.\\\>\G\\俷:$kPz:5`;O\̃ UVYc\wn\{8vPP\Z޽\"\\M\9\(P\^\\m+ IYZ\m0{bNVYјdP\\\\n\\\p%]0Br\b֓u0}ˢ-hl8a\ikШ\K\"4Y82E\rT\3m|OI\a }g5.ʤ\rE\\0(59\^jԇP\\:CbH\cRW/\\ըp-\0\ڨlY\ L\\\^\$f\V\c]լ\3;*\\=\Rq]{m^p&pEv\HŽ\{X\}\b\0\]4\\m9g=\{r1-rE\\Hg[\mM1\pb\<×\/W0\Td8\\jzx|x6L\r\b\\\$}\n-uT\T~$0Pj>#KQٸ\\\D\Z2\\v\P\\\saG؝\\\x}fcuG\\0:+w,ixc`\w\\n\4PN{^勋\f@\_\I\\\\7-\\\\\\݅zww|\\U[\ڄv5UR\rm7(u\;:\\\\<MF\0x\f;ϫ\R0oP\\0\\\\I\¹/\Y\0Z\~$\+\:k\\\\@\y4\ho\\Gt%ʎ<T\P0\\K7ם	B3^\e\v\ݠET\m[\f؄\$\x\U\l#A\\nd\"Ckz\s\(\rjm\"(R\ntՀag\\9@cU~%t>\ҁ5b֦OMg?X\QOٰ	B\Uk\<\m[۪o\\>FV\\\f\ZgG\\0\\d\B^\vL^\,YȮ\Ze6\rp|\]8\\gH*fQSy\\\r\\pb\N˔?G4ILn\rk\\0\\"FZhzMƿ:Sbncw\t\D\y)A\0J\#bNMM\\\ӛhdF7U\\=g,\\3e\\59z߱|\0E1\\, މX\ \\(\"\0\\5lH\j *^\'Xox-\c+[4@1\F\骽\*=\' \udYO\$,w\ \W\\0|t\W\2Ki\\\H\'yG\<t	\\4\@u\\0l\Vk1@\r#ੈc\\6l\|\%H\]v\\}ԨC\\'\0rSszV/	܃\	b:>:/\\!0ON-(]瀂\2w1\If\\8GM2q_At\v\\V,XD~1>\\\\G\{\4B\>ل\\\$&\0\\[\rmA\DF\e[j=;D\GT\\N\i\%Qޚ=u<YS\YwW	DG7\L\dhXژ`_¸ae\b\\\qqJP-\p\qܰ\Y\)<p!JK\\,3`0\_I\0h1\I+H\#\\	i_\P3\\ﬀ|[N0\Z2\qGF\"zw]}t\/\\\\Ɖ\w\!4xᳳ7&C;\qN\hg_¦\\'di\M*CN]	\<}\\9\Z9Xi,h\\guug^c=\o\ `_|;\D\FF*<D+xdig\\W\\h/wd\@Wp>\0\\MZ\(@d;x\d\\?#\M\\i>\FǮ kFӁ\	\\ͰH(\~[\"\K]kw	O10[Xz\L*zG\GWB:\r\TPD\>Wf;lD\qݰ2\)Y#`\2D瓆KljVd\i1)N>!\0) \\w3a:Rs?>̱z?\W[`&{\9\4V1ae\0&\\7\\GYe\\\\V1b\;]UH4/\>Sj\F_ŤQ\U\Z	\r%\'\\'G>>\Pa\	v\\\ٔ.87\.P^fs\\r}:Gj\\GC\ʯ\Q\\:?0Ʀ;iSI\**dD\ܢ6&hyi\#\rY[\\8\\OD\8%&6\&cV_mA>A\\m\5\\"\#A\\\`\\'\\\\\\\؝<ǜJr\\8Щ/s\\"b?\LŹf\+υQQ\\ûx\\PQЛ屮ok5.`\\7Y61Oa\Zew\`צ\0\.\|T\_0?<I\;\RÍ;q)\\\\Z\8q+ίFtHJ\0LhJw\\0{\\\0	Ѷ\d\}7hA\L\JP8\'V.vS\zp͒I	ÔIҮQX\&\\nc?\0a\\jUr)3ui\02\-\ϖag3y\gliޖH`~\\\4~\6|\0ÒYms5\r=6K	\4|rD`\Z9}*HA-\%Km\N\'O\mǽ\~73\\38T2]\\?\޾\=$\\\vǊ-\hہӼx1H@S{tƒ0TZ\nг$\r\0ſdoР\\#\҅\",2pLBl\n\=Xa\n\0g\\\3TLEJ\.\\EVyq:OY\5ٷ8#|}\\\!0{\zg3d{<\H΁쏾S\\\.H\lȇi\-« v~pC\\W\\\+%\\l\\\\kD\KyWh.^r\D2\K\5εx`\9\\n*jQ7;RX~	y\T\:nq\b]d9\\/k\0\<\\{\0U(.P\'j<@D\\9Xɝ2+\8D\bǴ\	U,+\8`\؝3FjW*R\ˀuH\8\\\\j,K\\2<fD5MݶU\5z\\c-u\\\\%}\+Y@\\\S\!~a#\0[PS\\\nz%g\g\Sε%:O\\#IirL2\&hJO\Y<P\\r\- S\1G\\"8]\\h\(DTYp2\2\Fmlݣ\!\|\}	\I\rJ\\!rt n\Lt7E^x\ncn\"\'\\1\~E\0gV\Đ`a[vk9#\@g_T\\K\(YL\^.i(ƥ-n\"$!ss(NnC)D~xT9\4eOeُNq![\v*B +x_[\\\S0C\\o盓l4;\>#	\W\'+Qf\a-\\'GT<c\\"5\qD\Z\\ޣK\gX^o|֊\">H,l@g|7U~\K=\\\2%.\}\)wio\\ꇺUg*]\	\%{\\\"ɸz=+\Z!u!~j9\WK2\nrwkք\\$\\nP|\KX:9\h\\"8\(pyr8C\9xmpU\fj\y\'gO\Gg@;d\\?\D\\kt]\|\^{:\˝	$\"fB	mc\B\?rA\(m&\Q{ż1,\0]3\p:DpqPx:\I\0a[\0I\AddС[R*\\qwb\<\Lڔi\L{:(\(^Q)l<:\.\ݸ\\|Z7\ \\'{-Xp\xEe\\7Ɗ9\\i\'6\r\\<b\B\\YPF\\/dWoeY\\\"\#6,\Ȏ\r\Fǜ+nUf.nA/G@Hz\ML\3-؜\Cn*\tْl\BPɀMmXv\r^`h׿AAGUR%C\q \X&O}֍F!?V.\.:&)\\%©7~۸&\LXpSls\a\󈥗Rl%m\\\+k\:C<ҩ\\\\"P)\$(45X\)\)߁-\\\@<K7XQ\|*\rw\y\W\ndQϴ	\/\rT\\\N\ 9C}\'A/9I\G +ǌ\'\%ƣJϊ\-\0ԉZQYBl\F]fl\\BY\U^ר@\X0\\A\};Y3x/xS)!\\Xr\F\nE陑%\:\L~ikNx\ۂz*/\M\E\Eמcb*\P\YVX\\\6K3ޗMvS\\"VB,\VV\y\-g\\\/Tp\\l	k\%\\2j\>$\\,Ri4)~rh=UCr\\!ow2\*\y3\0wd˄0<\P>j\zb93\=\DnJL9B۝.O\γ\8k-\ѝ\\e`Yc\D!/+[,~@Hf\A-\IVQGY9\η̾^b5F\09\d(z-mN\ߟP\MuQ;\r^rD\َ36v߾g}\իp\n\7I\\y6I\\h\?\iÉ\:\}\t76\j\QP]Dtw\'H\n`Y![\72	\R\\\!<?\\n$i\C\J O\@s2.\\m=\o\mr1e\rl\\|-\\\W}A{kN\‖H\.G+<A\Z\\6J̠5K=t\CyW#>\`f(W8K[,\0&ݜogQp걓\tp\"<\czq*L4\rBwv5&	\0>/[A!	\"\`iN£z\\0\\\\4F57JFVY\0\\\00k\!(OZM}\\\"/V\\"{Y\|\n:Pd|H5 L\r?Ht:b\\]w,>NA\Iz\8\hOO\qcЎM\\\\\\vM\\\3\\H t\A|\\L$N\\'smt\\2J\r6߇\u\w\O	!\ל&o\֫8W *z֪\y\X|+TƷ8܏`\NTʓq\xa\'d	\(52	5\|(\Z\IEN\\\Z3tp\d{f\\]4-o%g$Ĳ\N9/\#D5L9wFq\,^Wl\gK4\\'\r)wm@\Z\\d\:F b/c?\H>*߉\\|HQsWQR\'o\n3\\ cnXtX~rq¹K\4-\8XeQO\\\ѯ\\\CB4GN\Z\|Wl5\}ԫo+\BҀ7\pԫ\\;O\Ѥ\0C\\0*٤>K\S#]0U\vhsޜ\r\nv|Mϲ}\~E\_Jpe\E(3Pj%b/<u\\\m횆nX\؎Iub;\'\DyJ;bz>wvHp&6`\ڬWv763yFl\\Bmb9\5f\0\i $\V\\fYȹ\nFDW\\PsPJZZ\\gmZy zkSaL܅o\2K}Zʶe7ȼ\qQlA\۰=g\\\z/\\禹ǒn\ATG\e}v۶Q۝4\\>\#\\t&_%V\@B9{s0\Z0,GwCTv\esJ[PIVm\0PaH\r)41\Z\-Q\\qt	G	\(\\\0ؤM۴\XNFh\\M\苳 3V\\\\r\C\c\\\HE\B\I$a,i8V}%\n8\k\qC\#	#\\H\\\M>R\ZC{X\)5J^\t^ZEo/\ί\\\\\lFnW6x!v\YҮ7H͆@zְ\\딜E㍹ı\",(\'C\n*\xݮEA̒~\\	\D._0\rW$\nu	\P\"\pvFDҶ\y\0;\\\\)\\#\A\\\.\\\M͉!\\0C\\\\\q\f\\\iz!M\+S\\Z2u\8$Sz\¹yEPeP kՑ\\(pR\\0E\;G\([~\\&Z@\\V4Crk\\Zr밎t\kBNM[61$&8O\ByJ3v,\09\9\\8d\u.\Yh\\\M\cTC~-\"Id\\Iu$E\By\']31Ic\K.jm\f\\\JN8\=[\9B˛̤\}a=ŴvO~A0\1k\A\$]aDMRŋ\!\"bc\ڂ\\\\#ݼJCG_ʔ\&p&\B\``\y4NKLvnk\\\)\"#,\v`Y27q玡^AQ\ڽ1\",7a3\^xt^osH\mV/	O\p|0\Y7<RטpzhE	w<E5\.YV 1kϬubdM\\:_ky\E\-\\\\cqnSbj](\"U\n\q;ݪMUf\\\$yɲU7P\rvxѪ.\EFx\L1IrԀ(\\/\aS\rk\\Zx@{\Jσg(-,\\\o:	\\Z9\ \Z6x.\\^Nxc\>|#3\s\\X\Z\0´~>Ok\?\8\7\Hk\\G\s<)\f~j*\%1\ӓu<ϤE\\#0\\cԕ\msS\\\\uG?\!o6֍rq6W\nEH\QmiI\\+,3̛/#\;CŇ\\"\n6x޹ˊG<&\rv>Vm\\ݜ]m\'G=|l\y\uzrB\"\aѝX~Z\ ~\m-_#\[4`\\\\[\Ñs\\\.\\73=\]w9+\c\tEg<\ೝ}\Lѵ8.;\nT\Na-\'ڽ\\cZe?d\lc\lp/n\"~N\*\\֑{A\?\^\$ǽ%l\w\)fg	2\_GNGp<0\<?;ב\q\\\v\/p+拜\n\;\N\?\;\*^,~B\.ng~­oi\\\ \K\\G&\\S\\~\\5h\\\Z\}D|Cu8x4]FR\\\4\K\l\ivTѭ\r\<\I\>R.Su\Pt-o	\J8	*l\4}\~=7Xrn	\gզ[6u6^4\F 31\.YZ\\ž MkY/vX\\?\6=/\\Z\\n\鑊:QG]dtW	0Q\]EI\0Ag)\D<s\\kSᇮ4\В\m\\ Y[\h\a*21dH\͛,\_\-|/\PߊOs(JGaO_\m\:zM#oy`&&jv\#j.}:\\N\}\\`?\m\4L\r\z{bե\\\LZ+I߳6E7tqevM\zRWXn\wrlz,\Տgd>cm/4\p\\\O\Z9gG.\NmK&\Q\&a{iv.y\9ѵ.U\wVqQF\L\Z.\QNb\\^j$r\ХM\*jd\\\\\Ը]hDI`G\@	V\'\.\NĚo6i76h!\\\2~\\\F\[GI \\YNp\el=N[\\D\\=kt#Z\\Q._8\\z)\Z :\\XįK\\\ϠP\R/7D\Va:\q!K\޽/84E\칞vV\MӸo\gr5\0\\"!\'w\_B\Lrr*\A\\\\o\:]<\\\/w\tzu[\Mא9\\l\\M[˦%\Ѯ$G\ \P#a	D%\$u(]\r\Љ\	$pW$;\n\\>-5+)k:(h\5\\\\z}?5{Z4t=\'aO#\.Qӡ/l\\ިM}Lx~Q\H<\ϥq4k2`k4\\4tݧ_^wܱD{i\\>]\\«JIqv<:\mȺa\g\\n\\Tk\\w-N	\7/\\\Ӄ8>h%\\\,\r.\rJ}\~eR T=|\併3\v헇\w|\)}\ũ:;p5\D/]vo@%x[τ\roc\\șǺ\=Zb\\\Dk.\41! |\nyE%kmYp\e\\\6\3<l|V\\Kq/\\\cSW\э\=۴Q\|K\F\D\6e\/E\L2c(4\rHdSN\<7Sw\o*J\)gٺ{R\]6Col\gz\k8Mw@\mС\w\S3^\a\r\Yv\A\oF\0q[1\;43X\\;5\`]\\]<\F;uF=V7Ɵ[\U8\\mt\8a++m\G\\Ot\m\ΈN[tm\p\XIh\b\\;1m\\s\\\ 	a\.m7\\\\\]a\\\*\\ڎ\2]9UQ\ͨ߇[)F+\\B}dڛ\n\VKB&L\0$G\u\$\ڶk2d[\6*@\>Bqj%\s\\Z.+\\z\TE\^5\3\I\b\P\"o\0i\rj=J\\\ҷ+c,Ypa\\J\A\o\D[U?d5\'\\/$G$\Т=d}ƻhK<\aR7^+\0=\F7k\:\0M\5n\Z%z-Pl\]-U{\\xlYAc\'\E\a8ي\컪M\rLe@\dwiV\M|y\Z.ĄDL]\Z]Im\ҏڶғ#WZ=\*n+\V\`rJjMBuu\0\:nm\v\Z\r\	\t\@r\\#=A7%J\w\ !\$}k8.ѡ!\f\sڃ}au\\ضmsXG\>o\H\	\Sɠ\m,\hV[j\r\fڦ\lWZ.PH(0ĥv\\݊;	\Nrwk(]ސ`#gQ\	rdN\xFǖi\䶧˶8\rn\U\\g:ḻ\d)跾\\\'&=X\\0ȳȤ.`LLOwn<ڴr4\q\B\n&\\ϚU8l\\7F><I_~\c[\?<mo^','EZ-Page with ID 11 updated.','info'),(2066,'2018-05-20 18:42:54',1,'ezpages.php','ezID=11','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2067,'2018-05-20 18:42:54',1,'ezpages.php','ezID=11','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2068,'2018-05-20 18:43:01',1,'ezpages.php','action=status_toc&current=1&ezID=12&page=1','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_toc. Review page_parameters and postdata for details.','info'),(2069,'2018-05-20 18:43:01',1,'ezpages.php','page=1&ezID=12','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2070,'2018-05-20 18:43:02',1,'ezpages.php','action=status_toc&current=1&ezID=12&page=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2071,'2018-05-20 18:43:02',1,'ezpages.php','action=status_toc&current=1&ezID=12&page=1','24.72.164.167',0,'',_binary '\0','EZ-Page ID 12 [status_toc] changed to 0','info'),(2072,'2018-05-20 18:43:02',1,'ezpages.php','page=1&ezID=12','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2073,'2018-05-20 18:43:02',1,'ezpages.php','page=1&ezID=12','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2074,'2018-05-20 18:43:02',1,'ezpages.php','page=1&ezID=12','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2075,'2018-05-20 18:43:07',1,'ezpages.php','page=1&ezID=12&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(2076,'2018-05-20 18:43:07',1,'ezpages.php','page=1&ezID=12&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2077,'2018-05-20 18:43:16',1,'ezpages.php','page=1&action=update','24.72.164.167',0,'',_binary 'V]o\\5+HЗU>\nR\n\n$(Vܽn}\?v{\9c{MD\w<sf\\qXԞ\Κ7\/6}mv\z\hל\\w]X\\<wG\M8\ɦ]JrI\\\\fB̻λm^0\a\=~~f>\X\\9蝞\`گ\C/&.~}}}_)\n}\\rwk\=)\^l/(EŔr{J%\A%StN\\K\\V/\.{\\9Z\'\\yv\$\n\v{uw;ĳ?wkw7\'tTcN3{ԁ\\nߑ\\\r\\P6rL:Tfd=\h\%\+sP^\Z_}\ʗQ\\\*,Jdv\+lVZYP)1\0k&~?\'`ʹpD\R\Z.Yl&+\9Lj\5892\\w=ya\׆s4\"=XC0+\r$\ĉq/\\\\exp\a\F\ZJ\n5?֦ɵ?\\\Zӄ\m\+\|\-0v\^-w۸T@7V\o$\Z<{Īu\*X[Q~\:K\\aLQ\\Y5XgAw2\7\qDgтS4@\"\KXԢȞAՁ&6\"\XjD4?6 :dJ^\sX\"{Tb\WG\,\"A\nX#)\\ϲLk;ZZu\m\\bE\\|1\4%pvɶ$)D`(~h\\Z!~e\sO0A\\}Wh$\:\\FYY/\^.NFy\\0\ӱAb%\\ҍ\VtdY\n\\@\DX;%\\\̭\V\JH\qi\H偝\\\"b2ހ(%ُ\w*w\'\"^\xAF\&޺S*@\\$򡬘3>\'C^yE;\ciQѤ	=WO^Rm9LkBb\ly!J\H*%\'\SIvď1t/\(A2ϡKnv^\)\j.\\\nYHnm\9I0U\o\l7n˛\\\ĝ\s\\\\n\;\\*7KZ\Z\O%\4\!\"2+=uX\X$&Ⱦ^,\\0\M[QCi\te\nQ\N\\\"e\\~@(yq]YzXyйm\9b*\RF9\\T\	`ʭɦ\YԘE\\s\Ty@UV3IE\\M\\f\r*\\έvn}q*\"m	,ò7\\K\\\\\'\xZ߯dm\NV\"mw7	+Q\{\\䁉\NN?','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(2078,'2018-05-20 18:43:16',1,'ezpages.php','page=1&action=update','24.72.164.167',1,'',_binary 'V]o\\5+HЗU>\nR\n\n$(Vܽn}\?v{\9c{MD\w<sf\\qXԞ\Κ7\/6}mv\z\hל\\w]X\\<wG\M8\ɦ]JrI\\\\fB̻λm^0\a\=~~f>\X\\9蝞\`گ\C/&.~}}}_)\n}\\rwk\=)\^l/(EŔr{J%\A%StN\\K\\V/\.{\\9Z\'\\yv\$\n\v{uw;ĳ?wkw7\'tTcN3{ԁ\\nߑ\\\r\\P6rL:Tfd=\h\%\+sP^\Z_}\ʗQ\\\*,Jdv\+lVZYP)1\0k&~?\'`ʹpD\R\Z.Yl&+\9Lj\5892\\w=ya\׆s4\"=XC0+\r$\ĉq/\\\\exp\a\F\ZJ\n5?֦ɵ?\\\Zӄ\m\+\|\-0v\^-w۸T@7V\o$\Z<{Īu\*X[Q~\:K\\aLQ\\Y5XgAw2\7\qDgтS4@\"\KXԢȞAՁ&6\"\XjD4?6 :dJ^\sX\"{Tb\WG\,\"A\nX#)\\ϲLk;ZZu\m\\bE\\|1\4%pvɶ$)D`(~h\\Z!~e\sO0A\\}Wh$\:\\FYY/\^.NFy\\0\ӱAb%\\ҍ\VtdY\n\\@\DX;%\\\̭\V\JH\qi\H偝\\\"b2ހ(%ُ\w*w\'\"^\xAF\&޺S*@\\$򡬘3>\'C^yE;\ciQѤ	=WO^Rm9LkBb\ly!J\H*%\'\SIvď1t/\(A2ϡKnv^\)\j.\\\nYHnm\9I0U\o\l7n˛\\\ĝ\s\\\\n\;\\*7KZ\Z\O%\4\!\"2+=uX\X$&Ⱦ^,\\0\M[QCi\te\nQ\N\\\"e\\~@(yq]YzXyйm\9b*\RF9\\T\	`ʭɦ\YԘE\\s\Ty@UV3IE\\M\\f\r*\\έvn}q*\"m	,ò7\\K\\\\\'\xZ߯dm\NV\"mw7	+Q\{\\䁉\NN?','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2079,'2018-05-20 18:43:16',1,'ezpages.php','page=1&action=update','24.72.164.167',0,'',_binary 'V]o\\5+HЗU>\nR\n\n$(Vܽn}\?v{\9c{MD\w<sf\\qXԞ\Κ7\/6}mv\z\hל\\w]X\\<wG\M8\ɦ]JrI\\\\fB̻λm^0\a\=~~f>\X\\9蝞\`گ\C/&.~}}}_)\n}\\rwk\=)\^l/(EŔr{J%\A%StN\\K\\V/\.{\\9Z\'\\yv\$\n\v{uw;ĳ?wkw7\'tTcN3{ԁ\\nߑ\\\r\\P6rL:Tfd=\h\%\+sP^\Z_}\ʗQ\\\*,Jdv\+lVZYP)1\0k&~?\'`ʹpD\R\Z.Yl&+\9Lj\5892\\w=ya\׆s4\"=XC0+\r$\ĉq/\\\\exp\a\F\ZJ\n5?֦ɵ?\\\Zӄ\m\+\|\-0v\^-w۸T@7V\o$\Z<{Īu\*X[Q~\:K\\aLQ\\Y5XgAw2\7\qDgтS4@\"\KXԢȞAՁ&6\"\XjD4?6 :dJ^\sX\"{Tb\WG\,\"A\nX#)\\ϲLk;ZZu\m\\bE\\|1\4%pvɶ$)D`(~h\\Z!~e\sO0A\\}Wh$\:\\FYY/\^.NFy\\0\ӱAb%\\ҍ\VtdY\n\\@\DX;%\\\̭\V\JH\qi\H偝\\\"b2ހ(%ُ\w*w\'\"^\xAF\&޺S*@\\$򡬘3>\'C^yE;\ciQѤ	=WO^Rm9LkBb\ly!J\H*%\'\SIvď1t/\(A2ϡKnv^\)\j.\\\nYHnm\9I0U\o\l7n˛\\\ĝ\s\\\\n\;\\*7KZ\Z\O%\4\!\"2+=uX\X$&Ⱦ^,\\0\M[QCi\te\nQ\N\\\"e\\~@(yq]YzXyйm\9b*\RF9\\T\	`ʭɦ\YԘE\\s\Ty@UV3IE\\M\\f\r*\\έvn}q*\"m	,ò7\\K\\\\\'\xZ߯dm\NV\"mw7	+Q\{\\䁉\NN?','EZ-Page with ID 12 updated.','info'),(2080,'2018-05-20 18:43:17',1,'ezpages.php','page=1&ezID=12','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2081,'2018-05-20 18:43:18',1,'ezpages.php','page=1&ezID=12','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2082,'2018-05-20 18:43:25',1,'ezpages.php','page=1&ezID=12','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2083,'2018-05-20 18:43:25',1,'ezpages.php','action=status_toc&current=0&ezID=12&page=1','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_toc. Review page_parameters and postdata for details.','info'),(2084,'2018-05-20 18:43:25',1,'ezpages.php','page=1&ezID=12','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2085,'2018-05-20 18:43:25',1,'ezpages.php','action=status_toc&current=0&ezID=12&page=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2086,'2018-05-20 18:43:25',1,'ezpages.php','action=status_toc&current=0&ezID=12&page=1','24.72.164.167',0,'',_binary '\0','EZ-Page ID 12 [status_toc] changed to 1','info'),(2087,'2018-05-20 18:43:25',1,'ezpages.php','page=1&ezID=12','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2088,'2018-05-20 18:43:26',1,'ezpages.php','page=1&ezID=12','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2089,'2018-05-20 18:43:30',1,'ezpages.php','action=status_toc&current=0&ezID=4&page=1','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_toc. Review page_parameters and postdata for details.','info'),(2090,'2018-05-20 18:43:31',1,'ezpages.php','action=status_toc&current=0&ezID=4&page=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2091,'2018-05-20 18:43:31',1,'ezpages.php','action=status_toc&current=0&ezID=4&page=1','24.72.164.167',0,'',_binary '\0','EZ-Page ID 4 [status_toc] changed to 1','info'),(2092,'2018-05-20 18:43:31',1,'ezpages.php','page=1&ezID=4','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2093,'2018-05-20 18:43:32',1,'ezpages.php','page=1&ezID=4','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2094,'2018-05-20 18:43:34',1,'ezpages.php','action=status_toc&current=0&ezID=9&page=1','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_toc. Review page_parameters and postdata for details.','info'),(2095,'2018-05-20 18:43:34',1,'ezpages.php','action=status_toc&current=0&ezID=9&page=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2096,'2018-05-20 18:43:34',1,'ezpages.php','action=status_toc&current=0&ezID=9&page=1','24.72.164.167',0,'',_binary '\0','EZ-Page ID 9 [status_toc] changed to 1','info'),(2097,'2018-05-20 18:43:35',1,'ezpages.php','page=1&ezID=9','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2098,'2018-05-20 18:43:35',1,'ezpages.php','page=1&ezID=9','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2099,'2018-05-20 18:43:38',1,'ezpages.php','action=status_toc&current=0&ezID=13&page=1','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_toc. Review page_parameters and postdata for details.','info'),(2100,'2018-05-20 18:43:39',1,'ezpages.php','action=status_toc&current=0&ezID=13&page=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2101,'2018-05-20 18:43:39',1,'ezpages.php','action=status_toc&current=0&ezID=13&page=1','24.72.164.167',0,'',_binary '\0','EZ-Page ID 13 [status_toc] changed to 1','info'),(2102,'2018-05-20 18:43:39',1,'ezpages.php','page=1&ezID=13','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2103,'2018-05-20 18:43:40',1,'ezpages.php','page=1&ezID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2104,'2018-05-20 18:49:26',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2105,'2018-05-20 18:49:27',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2106,'2018-05-20 18:49:33',1,'ezpages.php','ezID=4&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(2107,'2018-05-20 18:49:34',1,'ezpages.php','ezID=4&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2108,'2018-05-20 18:50:18',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'V\6*\"\\uZ8(,i \M\Dm\ْ\\{G?\:\\\d޾i\o\B\t\\\\\\\\Znj\=(nx\\\\\|\a9-`}\s\yK\\gZ\\LA\T|iL&\3\\ #}{D/4lB6f֌\p!\\\\ע2M\ 8(Η\+UXTL\\\"cEW/5_np)&;\@pJ>in\*o 7\d,Tʘ6\!R\\2\\\Z\#Zmj\\l\w\E},D#i\"\xJ\Z^;Ԝ⪷x}\\q\K\n\\DzPO&\i!#\`4BN\rJ&(g\W\\+[\\RȆ\\n+\\\#k)4SGw4\r\\ZNn9=Ml\\α۔r^KІ\u+\\r(Rq6*j<]FY\p:r֓/@+C\uw;^!k]q\n|ԓeR$F-=_\!?;%\\\\X/v?^ٵ%y\\P{\5%\0lVNkO\"\m8\gPS\Gv\"\E\L\O<k\\g`v\\n_+N1\Jkl\+i\\\Zѥ}\\^b#Ӵ*t\NGE!Q95ЕT\j|z\nHu\z{Mx\d\\4\\J_)@$5Q\zpk\])\\\\I\j\If\+\1\Z\n\F\\\\oB\ӹ]2\C=S:\\rVU׶R\\ZoY\Ժ\ចgS\GڤW\OR\i\&\;W\]\\&\"1|FoKɀLQ0T-&˴#<+v\nξ)\~\pn@\\of\],8D6m\@\)df\0?','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(2109,'2018-05-20 18:50:19',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary 'V\6*\"\\uZ8(,i \M\Dm\ْ\\{G?\:\\\d޾i\o\B\t\\\\\\\\Znj\=(nx\\\\\|\a9-`}\s\yK\\gZ\\LA\T|iL&\3\\ #}{D/4lB6f֌\p!\\\\ע2M\ 8(Η\+UXTL\\\"cEW/5_np)&;\@pJ>in\*o 7\d,Tʘ6\!R\\2\\\Z\#Zmj\\l\w\E},D#i\"\xJ\Z^;Ԝ⪷x}\\q\K\n\\DzPO&\i!#\`4BN\rJ&(g\W\\+[\\RȆ\\n+\\\#k)4SGw4\r\\ZNn9=Ml\\α۔r^KІ\u+\\r(Rq6*j<]FY\p:r֓/@+C\uw;^!k]q\n|ԓeR$F-=_\!?;%\\\\X/v?^ٵ%y\\P{\5%\0lVNkO\"\m8\gPS\Gv\"\E\L\O<k\\g`v\\n_+N1\Jkl\+i\\\Zѥ}\\^b#Ӵ*t\NGE!Q95ЕT\j|z\nHu\z{Mx\d\\4\\J_)@$5Q\zpk\])\\\\I\j\If\+\1\Z\n\F\\\\oB\ӹ]2\C=S:\\rVU׶R\\ZoY\Ժ\ចgS\GڤW\OR\i\&\;W\]\\&\"1|FoKɀLQ0T-&˴#<+v\nξ)\~\pn@\\of\],8D6m\@\)df\0?','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2110,'2018-05-20 18:50:19',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'V\6*\"\\uZ8(,i \M\Dm\ْ\\{G?\:\\\d޾i\o\B\t\\\\\\\\Znj\=(nx\\\\\|\a9-`}\s\yK\\gZ\\LA\T|iL&\3\\ #}{D/4lB6f֌\p!\\\\ע2M\ 8(Η\+UXTL\\\"cEW/5_np)&;\@pJ>in\*o 7\d,Tʘ6\!R\\2\\\Z\#Zmj\\l\w\E},D#i\"\xJ\Z^;Ԝ⪷x}\\q\K\n\\DzPO&\i!#\`4BN\rJ&(g\W\\+[\\RȆ\\n+\\\#k)4SGw4\r\\ZNn9=Ml\\α۔r^KІ\u+\\r(Rq6*j<]FY\p:r֓/@+C\uw;^!k]q\n|ԓeR$F-=_\!?;%\\\\X/v?^ٵ%y\\P{\5%\0lVNkO\"\m8\gPS\Gv\"\E\L\O<k\\g`v\\n_+N1\Jkl\+i\\\Zѥ}\\^b#Ӵ*t\NGE!Q95ЕT\j|z\nHu\z{Mx\d\\4\\J_)@$5Q\zpk\])\\\\I\j\If\+\1\Z\n\F\\\\oB\ӹ]2\C=S:\\rVU׶R\\ZoY\Ժ\ចgS\GڤW\OR\i\&\;W\]\\&\"1|FoKɀLQ0T-&˴#<+v\nξ)\~\pn@\\of\],8D6m\@\)df\0?','EZ-Page with ID 4 updated.','info'),(2111,'2018-05-20 18:50:19',1,'ezpages.php','ezID=4','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2112,'2018-05-20 18:50:19',1,'ezpages.php','ezID=4','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2113,'2018-05-20 18:59:53',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2114,'2018-05-20 18:59:53',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2115,'2018-05-20 18:59:57',1,'ezpages.php','page=1&ezID=9','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2116,'2018-05-20 18:59:58',1,'ezpages.php','ezID=9&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(2117,'2018-05-20 18:59:58',1,'ezpages.php','page=1&ezID=9','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2118,'2018-05-20 18:59:58',1,'ezpages.php','ezID=9&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2119,'2018-05-20 19:08:24',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\Zm\6+l\r-м\PvV\\}4`(6\'K.%\\H\y\0 ْO(\"RdN\cv;o:/\f\ S~pEᶢ)\\[ؕhcxm\\\>Xui{oZ*T>\QH-i\\Qm\-\)N\bElZ\Μ5mȴ\;\\8\UsG++,i\Ca​ԑ4\Ev$~\o\0\Zq\@\-d\{l\Z(\\F.\7\}z:}un\\'?Ө\評\L\C\'\	XQXGeu!nEle<\~\},y\\'e~?\*hg\;H\\\0wqׯ\oK,;\iȯ\b0(o!G=\7_\\\'\JNj\6`\\\Zlh\\Oβ\.Gp\\T\`De@{6\\1\\-0\=62rVG*mܶ\"]qNּ	%Kkh\2GeӵYbmpL\\JeEl\Dy\z\(Zy`j\1\0bOP|oG\\-A&\nA%9\:\\,\\-DI\\5=x\\nrCQ͔OH\:\Z\yw\r<Y&\5S]\J\\\"$BzK*B΁pYV\\|\Q\G51I!\'`Ɣ*Ŕ˖\K4AkZ\\"3|\\fzH 1\&K\u\ ,\ZիZ\\V@y6L\9m~F4\|3[\:XË\\Zn\T܌=zBRZ\rЮ\1<1\?\'~iDYW.a͌jҡP><\\ؼB)\q\\ɑ\J[.\q5Ƌ[kMU;\\jh\\nBϑE\r\\O\)rdQM)Asd\4y\\ؚS\\\PoMwΑ8\\n\nҥl\\\\Ud\rI\o\nM\Λ\.\\\G\)\rda+H\8<mY˧7̑\n\w\{\\0gҸtvz\a[}/9\`N\~/p=+7|r#<\'\<\ϸ\\k)ze\\\ѩ\\z\\wiK˥艸L*UA\\`;Ǽ͏ܐx\\\)ܵ\\$\?SDm!65H~|\4b\\\B/','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(2120,'2018-05-20 19:08:24',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary '\Zm\6+l\r-м\PvV\\}4`(6\'K.%\\H\y\0 ْO(\"RdN\cv;o:/\f\ S~pEᶢ)\\[ؕhcxm\\\>Xui{oZ*T>\QH-i\\Qm\-\)N\bElZ\Μ5mȴ\;\\8\UsG++,i\Ca​ԑ4\Ev$~\o\0\Zq\@\-d\{l\Z(\\F.\7\}z:}un\\'?Ө\評\L\C\'\	XQXGeu!nEle<\~\},y\\'e~?\*hg\;H\\\0wqׯ\oK,;\iȯ\b0(o!G=\7_\\\'\JNj\6`\\\Zlh\\Oβ\.Gp\\T\`De@{6\\1\\-0\=62rVG*mܶ\"]qNּ	%Kkh\2GeӵYbmpL\\JeEl\Dy\z\(Zy`j\1\0bOP|oG\\-A&\nA%9\:\\,\\-DI\\5=x\\nrCQ͔OH\:\Z\yw\r<Y&\5S]\J\\\"$BzK*B΁pYV\\|\Q\G51I!\'`Ɣ*Ŕ˖\K4AkZ\\"3|\\fzH 1\&K\u\ ,\ZիZ\\V@y6L\9m~F4\|3[\:XË\\Zn\T܌=zBRZ\rЮ\1<1\?\'~iDYW.a͌jҡP><\\ؼB)\q\\ɑ\J[.\q5Ƌ[kMU;\\jh\\nBϑE\r\\O\)rdQM)Asd\4y\\ؚS\\\PoMwΑ8\\n\nҥl\\\\Ud\rI\o\nM\Λ\.\\\G\)\rda+H\8<mY˧7̑\n\w\{\\0gҸtvz\a[}/9\`N\~/p=+7|r#<\'\<\ϸ\\k)ze\\\ѩ\\z\\wiK˥艸L*UA\\`;Ǽ͏ܐx\\\)ܵ\\$\?SDm!65H~|\4b\\\B/','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2121,'2018-05-20 19:08:24',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\Zm\6+l\r-м\PvV\\}4`(6\'K.%\\H\y\0 ْO(\"RdN\cv;o:/\f\ S~pEᶢ)\\[ؕhcxm\\\>Xui{oZ*T>\QH-i\\Qm\-\)N\bElZ\Μ5mȴ\;\\8\UsG++,i\Ca​ԑ4\Ev$~\o\0\Zq\@\-d\{l\Z(\\F.\7\}z:}un\\'?Ө\評\L\C\'\	XQXGeu!nEle<\~\},y\\'e~?\*hg\;H\\\0wqׯ\oK,;\iȯ\b0(o!G=\7_\\\'\JNj\6`\\\Zlh\\Oβ\.Gp\\T\`De@{6\\1\\-0\=62rVG*mܶ\"]qNּ	%Kkh\2GeӵYbmpL\\JeEl\Dy\z\(Zy`j\1\0bOP|oG\\-A&\nA%9\:\\,\\-DI\\5=x\\nrCQ͔OH\:\Z\yw\r<Y&\5S]\J\\\"$BzK*B΁pYV\\|\Q\G51I!\'`Ɣ*Ŕ˖\K4AkZ\\"3|\\fzH 1\&K\u\ ,\ZիZ\\V@y6L\9m~F4\|3[\:XË\\Zn\T܌=zBRZ\rЮ\1<1\?\'~iDYW.a͌jҡP><\\ؼB)\q\\ɑ\J[.\q5Ƌ[kMU;\\jh\\nBϑE\r\\O\)rdQM)Asd\4y\\ؚS\\\PoMwΑ8\\n\nҥl\\\\Ud\rI\o\nM\Λ\.\\\G\)\rda+H\8<mY˧7̑\n\w\{\\0gҸtvz\a[}/9\`N\~/p=+7|r#<\'\<\ϸ\\k)ze\\\ѩ\\z\\wiK˥艸L*UA\\`;Ǽ͏ܐx\\\)ܵ\\$\?SDm!65H~|\4b\\\B/','EZ-Page with ID 9 updated.','info'),(2122,'2018-05-20 19:08:25',1,'ezpages.php','ezID=9','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2123,'2018-05-20 19:08:25',1,'ezpages.php','ezID=9','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2124,'2018-05-20 19:16:42',1,'ezpages.php','ezID=9&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(2125,'2018-05-20 19:16:43',1,'ezpages.php','ezID=9&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2126,'2018-05-20 19:17:25',1,'ezpages.php','ezID=9','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2127,'2018-05-20 19:17:25',1,'ezpages.php','ezID=9','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2128,'2018-05-20 19:17:29',1,'ezpages.php','ezID=9&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(2129,'2018-05-20 19:17:30',1,'ezpages.php','ezID=9&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2130,'2018-05-20 19:18:10',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\Zm\6+l\r-P\宇\4\n\0tpрXt,\$\G%\k:H\-ȇ%YcPD\\\\y\\kd\[[n*U-4\[I.2\.}\w)8;\W.\QH\6g\\'\)s\m\ܙM\6\N\\4IsQOŹ#\ЉǕg\44f1\f\Zh\\0\rh,rd\C6Gmo#6bӹ\\\g9b\7@ax\kce\x\\C\\B{fV\+k\;x/HO7qׯ\ok,T\\\p1אZ䞛/^r3\0jaMc\;\y\\`\Rՠ$\\.y~f9-lP\\\J2K(\F\%J6ۥfS\C\&<BF\0\\Hd\~6?hL.\֜:\ro=c\\\@q\J+\RG1+\Xѹ2\r\"PV\\\ͅSi\\\\Џ{n\\0{\ksSx/Ҝc\o`\_\)\ZuJAWi΍!l\n\	3\Q*u8.\\h5ںC\rۙFڴ\n\Y!&T!\@IX+\rj´\x1׸M	\'`ZBJv)ŕ\"m)\δ&\x-\O\\$MT\\,\"+\p,r\E\f\'<\-\'uV\3g\x\;jp.q\M~\\&=5C]p;\\\Т]\\#s\FK\\ZHL6\n\c\\\\P(C)zX;yrw\\\/ktO8\Z\\ŭ\rx\p_\n54^pS\Ȣ\x9\\\'\\`9(\\\69Hdo攀984[S\]s$B\0\&C:צ\E\\"\nGF\\ac;\C:/\Z\DȞ7\\\r5\+ˑa)\"\p8tei>i<%d,o\\8ƥ53l_\r[\\W\ǃ*\\Zι\˫(\\|\;|\r7?\\D\'`]ar \	n\,J/ \\\3\\\RD\\&!o\1ӘN1\nw\I\Z	\\\\\X^R\U\1x>`S\)\F+>\0\;P','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(2131,'2018-05-20 19:18:10',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary '\Zm\6+l\r-P\宇\4\n\0tpрXt,\$\G%\k:H\-ȇ%YcPD\\\\y\\kd\[[n*U-4\[I.2\.}\w)8;\W.\QH\6g\\'\)s\m\ܙM\6\N\\4IsQOŹ#\ЉǕg\44f1\f\Zh\\0\rh,rd\C6Gmo#6bӹ\\\g9b\7@ax\kce\x\\C\\B{fV\+k\;x/HO7qׯ\ok,T\\\p1אZ䞛/^r3\0jaMc\;\y\\`\Rՠ$\\.y~f9-lP\\\J2K(\F\%J6ۥfS\C\&<BF\0\\Hd\~6?hL.\֜:\ro=c\\\@q\J+\RG1+\Xѹ2\r\"PV\\\ͅSi\\\\Џ{n\\0{\ksSx/Ҝc\o`\_\)\ZuJAWi΍!l\n\	3\Q*u8.\\h5ںC\rۙFڴ\n\Y!&T!\@IX+\rj´\x1׸M	\'`ZBJv)ŕ\"m)\δ&\x-\O\\$MT\\,\"+\p,r\E\f\'<\-\'uV\3g\x\;jp.q\M~\\&=5C]p;\\\Т]\\#s\FK\\ZHL6\n\c\\\\P(C)zX;yrw\\\/ktO8\Z\\ŭ\rx\p_\n54^pS\Ȣ\x9\\\'\\`9(\\\69Hdo攀984[S\]s$B\0\&C:צ\E\\"\nGF\\ac;\C:/\Z\DȞ7\\\r5\+ˑa)\"\p8tei>i<%d,o\\8ƥ53l_\r[\\W\ǃ*\\Zι\˫(\\|\;|\r7?\\D\'`]ar \	n\,J/ \\\3\\\RD\\&!o\1ӘN1\nw\I\Z	\\\\\X^R\U\1x>`S\)\F+>\0\;P','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2132,'2018-05-20 19:18:10',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary '\Zm\6+l\r-P\宇\4\n\0tpрXt,\$\G%\k:H\-ȇ%YcPD\\\\y\\kd\[[n*U-4\[I.2\.}\w)8;\W.\QH\6g\\'\)s\m\ܙM\6\N\\4IsQOŹ#\ЉǕg\44f1\f\Zh\\0\rh,rd\C6Gmo#6bӹ\\\g9b\7@ax\kce\x\\C\\B{fV\+k\;x/HO7qׯ\ok,T\\\p1אZ䞛/^r3\0jaMc\;\y\\`\Rՠ$\\.y~f9-lP\\\J2K(\F\%J6ۥfS\C\&<BF\0\\Hd\~6?hL.\֜:\ro=c\\\@q\J+\RG1+\Xѹ2\r\"PV\\\ͅSi\\\\Џ{n\\0{\ksSx/Ҝc\o`\_\)\ZuJAWi΍!l\n\	3\Q*u8.\\h5ںC\rۙFڴ\n\Y!&T!\@IX+\rj´\x1׸M	\'`ZBJv)ŕ\"m)\δ&\x-\O\\$MT\\,\"+\p,r\E\f\'<\-\'uV\3g\x\;jp.q\M~\\&=5C]p;\\\Т]\\#s\FK\\ZHL6\n\c\\\\P(C)zX;yrw\\\/ktO8\Z\\ŭ\rx\p_\n54^pS\Ȣ\x9\\\'\\`9(\\\69Hdo攀984[S\]s$B\0\&C:צ\E\\"\nGF\\ac;\C:/\Z\DȞ7\\\r5\+ˑa)\"\p8tei>i<%d,o\\8ƥ53l_\r[\\W\ǃ*\\Zι\˫(\\|\;|\r7?\\D\'`]ar \	n\,J/ \\\3\\\RD\\&!o\1ӘN1\nw\I\Z	\\\\\X^R\U\1x>`S\)\F+>\0\;P','EZ-Page with ID 9 updated.','info'),(2133,'2018-05-20 19:18:13',1,'ezpages.php','ezID=9','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2134,'2018-05-20 19:18:14',1,'ezpages.php','ezID=9','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2135,'2018-05-20 19:21:30',1,'ezpages.php','page=1&ezID=7','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2136,'2018-05-20 19:21:30',1,'ezpages.php','page=1&ezID=7','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2137,'2018-05-20 19:21:34',1,'ezpages.php','page=1&ezID=7&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(2138,'2018-05-20 19:21:34',1,'ezpages.php','page=1&ezID=7&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2139,'2018-05-20 19:21:45',1,'ezpages.php','page=1&ezID=7','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2140,'2018-05-20 19:21:45',1,'ezpages.php','page=1&ezID=7','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2141,'2018-05-20 19:21:49',1,'ezpages.php','page=1&ezID=6','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2142,'2018-05-20 19:21:49',1,'ezpages.php','ezID=6&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(2143,'2018-05-20 19:21:50',1,'ezpages.php','page=1&ezID=6','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2144,'2018-05-20 19:21:50',1,'ezpages.php','ezID=6&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2145,'2018-05-20 19:26:35',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'u\\n\0EEi7\\օ0\fj1S\\7!i\{\\=h%\\(9f\r\\\\0\т\	&mM(J{\d\Y\C\exr\6]\h^`J했W¯\\@\\>yh)5,r}C\347VU\z.q	M^a\\87','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(2146,'2018-05-20 19:26:36',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary 'u\\n\0EEi7\\օ0\fj1S\\7!i\{\\=h%\\(9f\r\\\\0\т\	&mM(J{\d\Y\C\exr\6]\h^`J했W¯\\@\\>yh)5,r}C\347VU\z.q	M^a\\87','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2147,'2018-05-20 19:26:36',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'u\\n\0EEi7\\օ0\fj1S\\7!i\{\\=h%\\(9f\r\\\\0\т\	&mM(J{\d\Y\C\exr\6]\h^`J했W¯\\@\\>yh)5,r}C\347VU\z.q	M^a\\87','EZ-Page with ID 6 updated.','info'),(2148,'2018-05-20 19:26:36',1,'ezpages.php','ezID=6','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2149,'2018-05-20 19:26:36',1,'ezpages.php','ezID=6','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2150,'2018-05-20 19:27:09',1,'ezpages.php','ezID=6&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(2151,'2018-05-20 19:27:09',1,'ezpages.php','page=1&ezID=6','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2152,'2018-05-20 19:27:10',1,'ezpages.php','ezID=6&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2153,'2018-05-20 19:27:10',1,'ezpages.php','page=1&ezID=6','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2154,'2018-05-20 19:27:22',1,'ezpages.php','ezID=6','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2155,'2018-05-20 19:27:23',1,'ezpages.php','ezID=6','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2156,'2018-05-20 19:27:26',1,'ezpages.php','ezID=7&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(2157,'2018-05-20 19:27:27',1,'ezpages.php','ezID=7&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2158,'2018-05-20 19:27:38',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'm=0E\l,\Z\XX\\\^*}H\#\\#1w[\=\\&/\\\':\J\\\I\cd\=ɳ\j\]NghpA7\%ߓv\ı\\Aҿ\e \:Ais\\Ǖ^=?2SE%\Y=\\4\$\Qqmqd\=\Yi(CZU.\"\Fx\0','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(2159,'2018-05-20 19:27:39',1,'ezpages.php','action=update','24.72.164.167',1,'',_binary 'm=0E\l,\Z\XX\\\^*}H\#\\#1w[\=\\&/\\\':\J\\\I\cd\=ɳ\j\]NghpA7\%ߓv\ı\\Aҿ\e \:Ais\\Ǖ^=?2SE%\Y=\\4\$\Qqmqd\=\Yi(CZU.\"\Fx\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2160,'2018-05-20 19:27:39',1,'ezpages.php','action=update','24.72.164.167',0,'',_binary 'm=0E\l,\Z\XX\\\^*}H\#\\#1w[\=\\&/\\\':\J\\\I\cd\=ɳ\j\]NghpA7\%ߓv\ı\\Aҿ\e \:Ais\\Ǖ^=?2SE%\Y=\\4\$\Qqmqd\=\Yi(CZU.\"\Fx\0','EZ-Page with ID 7 updated.','info'),(2161,'2018-05-20 19:27:39',1,'ezpages.php','ezID=7','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2162,'2018-05-20 19:27:40',1,'ezpages.php','ezID=7','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2163,'2018-05-20 19:31:00',1,'categories.php','','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(2164,'2018-05-20 19:31:00',1,'categories.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2165,'2018-05-20 19:31:06',1,'categories.php','cPath=3','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(2166,'2018-05-20 19:31:06',1,'categories.php','cPath=3','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2167,'2018-05-20 19:31:15',1,'product.php','page=1&product_type=1&cPath=3&pID=37&action=new_product','24.72.164.167',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(2168,'2018-05-20 19:31:15',1,'product.php','page=1&product_type=1&cPath=3&pID=37&action=new_product','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2169,'2018-05-20 19:33:41',1,'product_types.php','','24.72.164.167',0,'',_binary '\0','Accessed page [product_types.php]','info'),(2170,'2018-05-20 19:33:42',1,'product_types.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2171,'2018-05-20 19:34:19',1,'product_types.php','page=1&ptID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [product_types.php] with action=edit. Review page_parameters and postdata for details.','info'),(2172,'2018-05-20 19:34:19',1,'product_types.php','page=1&ptID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2173,'2018-05-20 19:34:55',1,'product_types.php','','24.72.164.167',0,'',_binary '\0','Accessed page [product_types.php]','info'),(2174,'2018-05-20 19:34:55',1,'product_types.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2175,'2018-05-20 19:35:02',1,'product_types.php','page=1&ptID=1&action=layout','24.72.164.167',0,'',_binary '\0','Accessed page [product_types.php] with action=layout. Review page_parameters and postdata for details.','info'),(2176,'2018-05-20 19:35:03',1,'product_types.php','page=1&ptID=1&action=layout','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2177,'2018-05-20 19:35:12',1,'product_types.php','ptID=1&cID=7&action=layout_edit','24.72.164.167',0,'',_binary '\0','Accessed page [product_types.php] with action=layout_edit. Review page_parameters and postdata for details.','info'),(2178,'2018-05-20 19:35:12',1,'product_types.php','ptID=1&cID=7&action=layout_edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2179,'2018-05-20 19:35:17',1,'product_types.php','ptID=1&cID=7&action=layout_save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\0','Accessed page [product_types.php] with action=layout_save. Review page_parameters and postdata for details.','info'),(2180,'2018-05-20 19:35:18',1,'product_types.php','ptID=1&cID=7&action=layout_save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2181,'2018-05-20 19:35:19',1,'product_types.php','cID=7&ptID=1&action=layout','24.72.164.167',0,'',_binary '\0','Accessed page [product_types.php] with action=layout. Review page_parameters and postdata for details.','info'),(2182,'2018-05-20 19:35:19',1,'product_types.php','cID=7&ptID=1&action=layout','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2183,'2018-05-20 19:35:21',1,'product_types.php','ptID=1&cID=8&action=layout_edit','24.72.164.167',0,'',_binary '\0','Accessed page [product_types.php] with action=layout_edit. Review page_parameters and postdata for details.','info'),(2184,'2018-05-20 19:35:22',1,'product_types.php','ptID=1&cID=8&action=layout_edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2185,'2018-05-20 19:35:27',1,'product_types.php','ptID=1&cID=8&action=layout_save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\0','Accessed page [product_types.php] with action=layout_save. Review page_parameters and postdata for details.','info'),(2186,'2018-05-20 19:35:27',1,'product_types.php','ptID=1&cID=8&action=layout_save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2187,'2018-05-20 19:35:27',1,'product_types.php','cID=8&ptID=1&action=layout','24.72.164.167',0,'',_binary '\0','Accessed page [product_types.php] with action=layout. Review page_parameters and postdata for details.','info'),(2188,'2018-05-20 19:35:28',1,'product_types.php','cID=8&ptID=1&action=layout','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2189,'2018-05-20 19:35:39',1,'product_types.php','ptID=1&cID=6&action=layout_edit','24.72.164.167',0,'',_binary '\0','Accessed page [product_types.php] with action=layout_edit. Review page_parameters and postdata for details.','info'),(2190,'2018-05-20 19:35:39',1,'product_types.php','ptID=1&cID=6&action=layout_edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2191,'2018-05-20 19:35:45',1,'product_types.php','ptID=1&cID=6&action=layout_save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\0','Accessed page [product_types.php] with action=layout_save. Review page_parameters and postdata for details.','info'),(2192,'2018-05-20 19:35:46',1,'product_types.php','ptID=1&cID=6&action=layout_save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2193,'2018-05-20 19:35:46',1,'product_types.php','cID=6&ptID=1&action=layout','24.72.164.167',0,'',_binary '\0','Accessed page [product_types.php] with action=layout. Review page_parameters and postdata for details.','info'),(2194,'2018-05-20 19:35:47',1,'product_types.php','cID=6&ptID=1&action=layout','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2195,'2018-05-20 19:35:55',1,'product_types.php','ptID=1&cID=4&action=layout_edit','24.72.164.167',0,'',_binary '\0','Accessed page [product_types.php] with action=layout_edit. Review page_parameters and postdata for details.','info'),(2196,'2018-05-20 19:35:55',1,'product_types.php','ptID=1&cID=4&action=layout_edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2197,'2018-05-20 19:36:00',1,'product_types.php','ptID=1&cID=4&action=layout_save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\0','Accessed page [product_types.php] with action=layout_save. Review page_parameters and postdata for details.','info'),(2198,'2018-05-20 19:36:00',1,'product_types.php','ptID=1&cID=4&action=layout_save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2199,'2018-05-20 19:36:01',1,'product_types.php','cID=4&ptID=1&action=layout','24.72.164.167',0,'',_binary '\0','Accessed page [product_types.php] with action=layout. Review page_parameters and postdata for details.','info'),(2200,'2018-05-20 19:36:01',1,'product_types.php','cID=4&ptID=1&action=layout','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2201,'2018-05-20 19:36:06',1,'product_types.php','ptID=1&cID=9&action=layout_edit','24.72.164.167',0,'',_binary '\0','Accessed page [product_types.php] with action=layout_edit. Review page_parameters and postdata for details.','info'),(2202,'2018-05-20 19:36:06',1,'product_types.php','ptID=1&cID=9&action=layout_edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2203,'2018-05-20 19:36:20',1,'product_types.php','ptID=1&cID=9&action=layout_save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\0','Accessed page [product_types.php] with action=layout_save. Review page_parameters and postdata for details.','info'),(2204,'2018-05-20 19:36:20',1,'product_types.php','ptID=1&cID=9&action=layout_save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2205,'2018-05-20 19:36:21',1,'product_types.php','cID=9&ptID=1&action=layout','24.72.164.167',0,'',_binary '\0','Accessed page [product_types.php] with action=layout. Review page_parameters and postdata for details.','info'),(2206,'2018-05-20 19:36:21',1,'product_types.php','cID=9&ptID=1&action=layout','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2207,'2018-05-20 19:36:23',1,'product_types.php','ptID=1&cID=10&action=layout_edit','24.72.164.167',0,'',_binary '\0','Accessed page [product_types.php] with action=layout_edit. Review page_parameters and postdata for details.','info'),(2208,'2018-05-20 19:36:24',1,'product_types.php','ptID=1&cID=10&action=layout_edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2209,'2018-05-20 19:36:32',1,'product_types.php','ptID=1&cID=10&action=layout_save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\0','Accessed page [product_types.php] with action=layout_save. Review page_parameters and postdata for details.','info'),(2210,'2018-05-20 19:36:33',1,'product_types.php','ptID=1&cID=10&action=layout_save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2211,'2018-05-20 19:36:34',1,'product_types.php','cID=10&ptID=1&action=layout','24.72.164.167',0,'',_binary '\0','Accessed page [product_types.php] with action=layout. Review page_parameters and postdata for details.','info'),(2212,'2018-05-20 19:36:34',1,'product_types.php','cID=10&ptID=1&action=layout','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2213,'2018-05-20 19:50:06',1,'categories.php','','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(2214,'2018-05-20 19:50:07',1,'categories.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2215,'2018-05-20 19:50:11',1,'categories.php','cPath=3','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(2216,'2018-05-20 19:50:11',1,'categories.php','cPath=3','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2217,'2018-05-20 19:50:15',1,'product.php','page=1&product_type=1&cPath=3&pID=36&action=new_product','24.72.164.167',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(2218,'2018-05-20 19:50:15',1,'product.php','page=1&product_type=1&cPath=3&pID=36&action=new_product','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2219,'2018-05-20 19:52:27',1,'product.php','cPath=3&product_type=1&pID=36&action=new_product_preview&page=1','24.72.164.167',0,'',_binary 'Tmk\0+6h\i\rcC	kic`Yqْ8l\4\_l\={\\9=ѩ\β`\"\rA\h\=\'N\\'\88\nN\i#eO\FZr\ե@gt\\6F\\0\r&jxL&Q\\\X\[\A\d\\\V~\y#\\1\4BL(^\B!+\\!#\fN\\\\Z@r̤\\ħ\+<┭k\\m\`\J8>~S]73};i&\\]\r\neYJ}\\j\\xD6)*\\e\"\tB\[\%!,7tR1\<\';|\J\,-\0\nKV\{2Т\4<#wh\c\X\~0[&\\\q9[b\\\32\e!tH~?\(\n\rI\?\\j+\\\P %\"EnVhoZ\r.$r#\#l\r\\1{\h6\߬B\"X\Nj+ \E4[fEmk\\\Ԍ\\Med?RmV\b\\M>­5\r.q{\&c\ڻ(w\\2\\n̶\\Z^d:m5>\Z','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(2220,'2018-05-20 19:52:28',1,'product.php','cPath=3&product_type=1&pID=36&action=new_product_preview&page=1','24.72.164.167',1,'',_binary 'Tmk\0+6h\i\rcC	kic`Yqْ8l\4\_l\={\\9=ѩ\β`\"\rA\h\=\'N\\'\88\nN\i#eO\FZr\ե@gt\\6F\\0\r&jxL&Q\\\X\[\A\d\\\V~\y#\\1\4BL(^\B!+\\!#\fN\\\\Z@r̤\\ħ\+<┭k\\m\`\J8>~S]73};i&\\]\r\neYJ}\\j\\xD6)*\\e\"\tB\[\%!,7tR1\<\';|\J\,-\0\nKV\{2Т\4<#wh\c\X\~0[&\\\q9[b\\\32\e!tH~?\(\n\rI\?\\j+\\\P %\"EnVhoZ\r.$r#\#l\r\\1{\h6\߬B\"X\Nj+ \E4[fEmk\\\Ԍ\\Med?RmV\b\\M>­5\r.q{\&c\ڻ(w\\2\\n̶\\Z^d:m5>\Z','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2221,'2018-05-20 19:52:28',1,'product.php','cPath=3&product_type=1&pID=36&action=new_product_preview&page=1','24.72.164.167',1,'',_binary 'Tmk\0+6h\i\rcC	kic`Yqْ8l\4\_l\={\\9=ѩ\β`\"\rA\h\=\'N\\'\88\nN\i#eO\FZr\ե@gt\\6F\\0\r&jxL&Q\\\X\[\A\d\\\V~\y#\\1\4BL(^\B!+\\!#\fN\\\\Z@r̤\\ħ\+<┭k\\m\`\J8>~S]73};i&\\]\r\neYJ}\\j\\xD6)*\\e\"\tB\[\%!,7tR1\<\';|\J\,-\0\nKV\{2Т\4<#wh\c\X\~0[&\\\q9[b\\\32\e!tH~?\(\n\rI\?\\j+\\\P %\"EnVhoZ\r.$r#\#l\r\\1{\h6\߬B\"X\Nj+ \E4[fEmk\\\Ԍ\\Med?RmV\b\\M>­5\r.q{\&c\ڻ(w\\2\\n̶\\Z^d:m5>\Z','Success: File upload saved successfully 500-12_400px.png','notice'),(2222,'2018-05-20 19:53:31',1,'product.php','cPath=3&product_type=1&pID=36&action=update_product&page=1','24.72.164.167',0,'',_binary 'T]k@+<\BcԤe!\r\C	\\a\'fvu\\GL(\jjӰ9\}F;\Rtatp5\(\0@]M\Wxp6(\:a\'fɚ<&\CFZr\\KA`xdkό\H.Ն\>\\0\\rC\-QOE\*37_#w\f\,O&\(\<\X\V{\\:;\so*-:3\\7J\J\<\\61p\\\FT\\On\VzwgOD\&R}Wҝ\S\]__\\\0F~\\VjO.0-\'ÛQ̈-6δCo\apz+Led\3\r\\i\ޅ*!罝m;Pc=5exR\&\a\s\-oT\wXx[\k\\ˍ,\\]\\9\N*;OK\09\'J\r,0aϢ\\(6\\~0]$\q1]4\\~\\0~?Fa|XHF?\\r#\a~\r\a%DO\\\T1_j%	˵G\\;f!\\*ؘa\\Mu\dd]\JF\,2]D:E0aJ^^','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(2223,'2018-05-20 19:53:32',1,'product.php','cPath=3&product_type=1&pID=36&action=update_product&page=1','24.72.164.167',1,'',_binary 'T]k@+<\BcԤe!\r\C	\\a\'fvu\\GL(\jjӰ9\}F;\Rtatp5\(\0@]M\Wxp6(\:a\'fɚ<&\CFZr\\KA`xdkό\H.Ն\>\\0\\rC\-QOE\*37_#w\f\,O&\(\<\X\V{\\:;\so*-:3\\7J\J\<\\61p\\\FT\\On\VzwgOD\&R}Wҝ\S\]__\\\0F~\\VjO.0-\'ÛQ̈-6δCo\apz+Led\3\r\\i\ޅ*!罝m;Pc=5exR\&\a\s\-oT\wXx[\k\\ˍ,\\]\\9\N*;OK\09\'J\r,0aϢ\\(6\\~0]$\q1]4\\~\\0~?Fa|XHF?\\r#\a~\r\a%DO\\\T1_j%	˵G\\;f!\\*ؘa\\Mu\dd]\JF\,2]D:E0aJ^^','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2224,'2018-05-20 19:53:32',1,'product.php','cPath=3&product_type=1&pID=36&action=update_product&page=1','24.72.164.167',0,'',_binary 'T]k@+<\BcԤe!\r\C	\\a\'fvu\\GL(\jjӰ9\}F;\Rtatp5\(\0@]M\Wxp6(\:a\'fɚ<&\CFZr\\KA`xdkό\H.Ն\>\\0\\rC\-QOE\*37_#w\f\,O&\(\<\X\V{\\:;\so*-:3\\7J\J\<\\61p\\\FT\\On\VzwgOD\&R}Wҝ\S\]__\\\0F~\\VjO.0-\'ÛQ̈-6δCo\apz+Led\3\r\\i\ޅ*!罝m;Pc=5exR\&\a\s\-oT\wXx[\k\\ˍ,\\]\\9\N*;OK\09\'J\r,0aϢ\\(6\\~0]$\q1]4\\~\\0~?Fa|XHF?\\r#\a~\r\a%DO\\\T1_j%	˵G\\;f!\\*ؘa\\Mu\dd]\JF\,2]D:E0aJ^^','Updated product 36 via admin console.','info'),(2225,'2018-05-20 19:53:32',1,'categories.php','cPath=3&pID=36&page=1','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(2226,'2018-05-20 19:53:32',1,'categories.php','cPath=3&pID=36&page=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2227,'2018-05-20 20:16:40',0,'login.php ','camefrom=define_pages_editor.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(2228,'2018-05-20 20:16:40',0,'login.php ','camefrom=define_pages_editor.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2229,'2018-05-20 20:16:58',0,'login.php Eagle','camefrom=define_pages_editor.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\OM424HN1L2HKI342LK60647JK552P\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=doea27990cd1b0fdf2921fc033972fe520. Review page_parameters and postdata for details.','info'),(2230,'2018-05-20 20:16:58',0,'login.php Eagle','camefrom=define_pages_editor.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\OM424HN1L2HKI342LK60647JK552P\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2231,'2018-05-20 20:17:00',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(2232,'2018-05-20 20:17:00',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2233,'2018-05-20 20:26:07',1,'banner_manager.php','','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2234,'2018-05-20 20:26:08',1,'banner_manager.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2235,'2018-05-20 20:27:38',1,'banner_manager.php','page=1&bID=9&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(2236,'2018-05-20 20:27:39',1,'banner_manager.php','page=1&bID=9&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2237,'2018-05-20 20:27:49',1,'banner_manager.php','page=1&bID=9','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2238,'2018-05-20 20:27:50',1,'banner_manager.php','page=1&bID=9','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2239,'2018-05-20 21:13:52',0,'login.php ','camefrom=categories.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(2240,'2018-05-20 21:13:53',0,'login.php ','camefrom=categories.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2241,'2018-05-20 21:14:07',0,'login.php Eagle','camefrom=categories.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\7041HLJJ2064NH4N6M210N54363W\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do083940abbb0313f8f93c5b4183e16367. Review page_parameters and postdata for details.','info'),(2242,'2018-05-20 21:14:07',0,'login.php Eagle','camefrom=categories.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\7041HLJJ2064NH4N6M210N54363W\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2243,'2018-05-20 21:14:08',1,'categories.php','','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(2244,'2018-05-20 21:14:08',1,'categories.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2245,'2018-05-20 21:14:17',1,'categories.php','cPath=3','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(2246,'2018-05-20 21:14:17',1,'categories.php','cPath=3','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2247,'2018-05-20 21:14:21',1,'product.php','page=1&product_type=1&cPath=3&pID=36&action=new_product','24.72.164.167',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(2248,'2018-05-20 21:14:21',1,'product.php','page=1&product_type=1&cPath=3&pID=36&action=new_product','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2249,'2018-05-20 21:14:48',1,'product.php','cPath=3&product_type=1&pID=36&action=new_product_preview&page=1','24.72.164.167',0,'',_binary 'TQk\0+6H\I\rc4108b\JrP\w\n\\wN\^atRrgYN0LxS/\n\`\pa8\x9Z\'\L\2Y\\:\R9\ gp\\6F\\\0\r%yǁ\\\X\\r{;:sCX\4\\v(\	Nq\M\\<\¤B*KGL\\\b\\f\\m\^ \\8\d\RY\Sᵕc؄3r]9\3=<~Im#S=Bޝ4\\&f\\Z\ʢ*\\Z\\\D\$AIH,TC\\"CQ*\\\\\l_\r\r#\'i<\	?YJ\޳\4NRrN\Pqt[X-a~b\\\0\6Nƨ\y2[ƣ\\u9[b\ڄw\\\\0\ok\{lb\\\m,\!\\YХi\׼ڐ\[ȍW\8\\e̎.\\F\v\Ddg%$vR$Sq°I{ a<զ]G\\I\D\TF6\zAv]\ά*k\Zn}xԜȺ\G-)H6z+!ӭ7˃VV/>\0','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(2250,'2018-05-20 21:14:49',1,'product.php','cPath=3&product_type=1&pID=36&action=new_product_preview&page=1','24.72.164.167',1,'',_binary 'TQk\0+6H\I\rc4108b\JrP\w\n\\wN\^atRrgYN0LxS/\n\`\pa8\x9Z\'\L\2Y\\:\R9\ gp\\6F\\\0\r%yǁ\\\X\\r{;:sCX\4\\v(\	Nq\M\\<\¤B*KGL\\\b\\f\\m\^ \\8\d\RY\Sᵕc؄3r]9\3=<~Im#S=Bޝ4\\&f\\Z\ʢ*\\Z\\\D\$AIH,TC\\"CQ*\\\\\l_\r\r#\'i<\	?YJ\޳\4NRrN\Pqt[X-a~b\\\0\6Nƨ\y2[ƣ\\u9[b\ڄw\\\\0\ok\{lb\\\m,\!\\YХi\׼ڐ\[ȍW\8\\e̎.\\F\v\Ddg%$vR$Sq°I{ a<զ]G\\I\D\TF6\zAv]\ά*k\Zn}xԜȺ\G-)H6z+!ӭ7˃VV/>\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2251,'2018-05-20 21:14:52',1,'product.php','cPath=3&product_type=1&pID=36&action=update_product&page=1','24.72.164.167',0,'',_binary 'T\j\@AO-ز$;RpLLbC)j-/vBȿw$\T/fΞ9sfנ2:\YLdMDq4\a<8o&I0JN\	k#e)N#-\^9\dt1\\F\\0\ru\Q\\\X\[\\=\Fe\V~\y#\Q\&-ID\QE񩰌3r\\YwhΏ_jm:7\\#\J\<\2\\\ٍ*u_܁g/\&R\n}W\]S\}_f)/u&궯h\'Ԟ.1\'DQ+a\23\\#>q\\n3y\\i\4wS;!Wm\rs=6%UxN\&`iP\R:Zwr7_~7[\\>4m\V \*x\\\\I\}Qt\n2x\"8X\nsR\I\\f\16\Y|ņ\)\Q=.t>/\\'\\:U\\\s%\\t#5\<.7\P\V*\DFڬ\ho\Z񵮖rskgC8\\\Mψ\nn̰6ur]f6Y\\Q;\\=','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(2252,'2018-05-20 21:14:52',1,'product.php','cPath=3&product_type=1&pID=36&action=update_product&page=1','24.72.164.167',1,'',_binary 'T\j\@AO-ز$;RpLLbC)j-/vBȿw$\T/fΞ9sfנ2:\YLdMDq4\a<8o&I0JN\	k#e)N#-\^9\dt1\\F\\0\ru\Q\\\X\[\\=\Fe\V~\y#\Q\&-ID\QE񩰌3r\\YwhΏ_jm:7\\#\J\<\2\\\ٍ*u_܁g/\&R\n}W\]S\}_f)/u&궯h\'Ԟ.1\'DQ+a\23\\#>q\\n3y\\i\4wS;!Wm\rs=6%UxN\&`iP\R:Zwr7_~7[\\>4m\V \*x\\\\I\}Qt\n2x\"8X\nsR\I\\f\16\Y|ņ\)\Q=.t>/\\'\\:U\\\s%\\t#5\<.7\P\V*\DFڬ\ho\Z񵮖rskgC8\\\Mψ\nn̰6ur]f6Y\\Q;\\=','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2253,'2018-05-20 21:14:52',1,'product.php','cPath=3&product_type=1&pID=36&action=update_product&page=1','24.72.164.167',0,'',_binary 'T\j\@AO-ز$;RpLLbC)j-/vBȿw$\T/fΞ9sfנ2:\YLdMDq4\a<8o&I0JN\	k#e)N#-\^9\dt1\\F\\0\ru\Q\\\X\[\\=\Fe\V~\y#\Q\&-ID\QE񩰌3r\\YwhΏ_jm:7\\#\J\<\2\\\ٍ*u_܁g/\&R\n}W\]S\}_f)/u&궯h\'Ԟ.1\'DQ+a\23\\#>q\\n3y\\i\4wS;!Wm\rs=6%UxN\&`iP\R:Zwr7_~7[\\>4m\V \*x\\\\I\}Qt\n2x\"8X\nsR\I\\f\16\Y|ņ\)\Q=.t>/\\'\\:U\\\s%\\t#5\<.7\P\V*\DFڬ\ho\Z񵮖rskgC8\\\Mψ\nn̰6ur]f6Y\\Q;\\=','Updated product 36 via admin console.','info'),(2254,'2018-05-20 21:14:52',1,'categories.php','cPath=3&pID=36&page=1','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(2255,'2018-05-20 21:14:53',1,'categories.php','cPath=3&pID=36&page=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2256,'2018-05-20 21:37:36',0,'login.php ','camefrom=banner_manager.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(2257,'2018-05-20 21:37:36',0,'login.php ','camefrom=banner_manager.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2258,'2018-05-20 21:37:54',0,'login.php Eagle','camefrom=banner_manager.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\75L30HIN50OLKJ5JH342JK636K32MHR\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do51f00dce07afbe2a8f122fc636f25d8b. Review page_parameters and postdata for details.','info'),(2259,'2018-05-20 21:37:54',0,'login.php Eagle','camefrom=banner_manager.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\75L30HIN50OLKJ5JH342JK636K32MHR\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2260,'2018-05-20 21:37:54',1,'banner_manager.php','','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2261,'2018-05-20 21:37:55',1,'banner_manager.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2262,'2018-05-21 07:12:19',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(2263,'2018-05-21 07:12:20',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2264,'2018-05-21 07:12:35',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\74NK4023622JJ3465K4O27L\\rtSr3\sS:\\\sRj','Accessed page [login.php] with action=do13fa0263222bf1356a7b72f1355f112a. Review page_parameters and postdata for details.','info'),(2265,'2018-05-21 07:12:36',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\74NK4023622JJ3465K4O27L\\rtSr3\sS:\\\sRj','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2266,'2018-05-21 07:12:36',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(2267,'2018-05-21 07:12:37',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2268,'2018-05-21 07:12:56',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(2269,'2018-05-21 07:12:56',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2270,'2018-05-21 07:13:05',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2271,'2018-05-21 07:13:05',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2272,'2018-05-21 07:13:09',1,'ezpages.php','ezID=9&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(2273,'2018-05-21 07:13:09',1,'ezpages.php','page=1&ezID=9','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2274,'2018-05-21 07:13:09',1,'ezpages.php','page=1&ezID=9','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2275,'2018-05-21 07:13:09',1,'ezpages.php','ezID=9&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2276,'2018-05-21 07:14:58',1,'developers_tool_kit.php','','24.72.164.167',0,'',_binary '\0','Accessed page [developers_tool_kit.php]','info'),(2277,'2018-05-21 07:14:59',1,'developers_tool_kit.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2278,'2018-05-21 07:15:11',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NT\$*e%\(dg+\(Uŧe\\"qK*RB@\JR+J\s2\j','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(2279,'2018-05-21 07:15:11',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NT\$*e%\(dg+\(Uŧe\\"qK*RB@\JR+J\s2\j','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2280,'2018-05-21 07:15:40',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NTRr\rprU\r\nsQ	V\Q*O\\I-*1D\TBV\\d恕(\\0','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(2281,'2018-05-21 07:15:40',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NTRr\rprU\r\nsQ	V\Q*O\\I-*1D\TBV\\d恕(\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2282,'2018-05-21 07:22:43',1,'categories.php','','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(2283,'2018-05-21 07:22:44',1,'categories.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2284,'2018-05-21 07:22:49',1,'categories.php','cPath=14','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(2285,'2018-05-21 07:22:49',1,'categories.php','cPath=14','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2286,'2018-05-21 07:23:23',1,'categories.php','','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(2287,'2018-05-21 07:23:23',1,'categories.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2288,'2018-05-21 07:23:29',1,'categories.php','cPath=2','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(2289,'2018-05-21 07:23:30',1,'categories.php','cPath=2','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2290,'2018-05-21 07:23:44',1,'product.php','page=1&product_type=1&cPath=2&pID=71&action=new_product','24.72.164.167',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(2291,'2018-05-21 07:23:45',1,'product.php','page=1&product_type=1&cPath=2&pID=71&action=new_product','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2292,'2018-05-21 07:24:00',1,'categories.php','cPath=2','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(2293,'2018-05-21 07:24:00',1,'categories.php','cPath=2','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2294,'2018-05-21 07:24:22',1,'product.php','page=1&product_type=1&cPath=2&pID=38&action=new_product','24.72.164.167',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(2295,'2018-05-21 07:24:22',1,'product.php','page=1&product_type=1&cPath=2&pID=38&action=new_product','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2296,'2018-05-21 07:24:41',1,'product_types.php','','24.72.164.167',0,'',_binary '\0','Accessed page [product_types.php]','info'),(2297,'2018-05-21 07:24:42',1,'product_types.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2298,'2018-05-21 07:24:50',1,'product_types.php','page=1&ptID=1&action=layout','24.72.164.167',0,'',_binary '\0','Accessed page [product_types.php] with action=layout. Review page_parameters and postdata for details.','info'),(2299,'2018-05-21 07:24:51',1,'product_types.php','page=1&ptID=1&action=layout','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2300,'2018-05-21 07:25:01',1,'product_types.php','','24.72.164.167',0,'',_binary '\0','Accessed page [product_types.php]','info'),(2301,'2018-05-21 07:25:02',1,'product_types.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2302,'2018-05-21 07:25:06',1,'product.php','page=1&product_type=1&cPath=2&pID=38&action=new_product','24.72.164.167',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(2303,'2018-05-21 07:25:06',1,'product.php','page=1&product_type=1&cPath=2&pID=38&action=new_product','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2304,'2018-05-21 07:25:28',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(2305,'2018-05-21 07:25:29',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2306,'2018-05-21 07:25:47',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2307,'2018-05-21 07:25:47',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2308,'2018-05-21 07:35:29',1,'categories.php','','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(2309,'2018-05-21 07:35:30',1,'categories.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2310,'2018-05-21 07:35:38',1,'categories.php','cID=2&action=edit_category','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php] with action=edit_category. Review page_parameters and postdata for details.','info'),(2311,'2018-05-21 07:35:38',1,'categories.php','cID=2&action=edit_category','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2312,'2018-05-21 07:36:35',1,'categories.php','action=update_category','24.72.164.167',0,'',_binary 'TMk\0+=&޴,lCŻPI\\&$\"K$\'-#%\\I\\\oIV\29\k\XS2|K\0v\Tp\\A\в<\6N\?\\n\M\fAq8znI{Xv\\R	\jvt\ZKkjeq\\>L\C]v\\0Ǣ\\0\Yh\lH\\<\\Sҥ:k\pIF<\\\Z^x+,ݕX_[z:jlZ[T(踈\ԃ\5P\MB\:\лWZzȍ\r8rT\\ͦ\qey*^քNC~\ u\%\\e8\up*]\~~3\\ +\\(\T *gUv\_,,\\x\6\\\\)t+QA\HE\Y&炒B]lq6X\`x\yPYZ\T\nxhJ)\BT9\X\+OY\o\w\\rhmG\#jt\'\\\Y^>^O\\\)\[]Z;qE(:BP.\zF/>O\?p\rG\\΅\߇\lr	\\\ngSǑvx\\\%[y\ɧ\/bE\Zuj\\YJR\哒3\ύ-)䟉?M\Z$\','Accessed page [categories.php] with action=update_category. Review page_parameters and postdata for details.','info'),(2313,'2018-05-21 07:36:37',1,'categories.php','action=update_category','24.72.164.167',1,'',_binary 'TMk\0+=&޴,lCŻPI\\&$\"K$\'-#%\\I\\\oIV\29\k\XS2|K\0v\Tp\\A\в<\6N\?\\n\M\fAq8znI{Xv\\R	\jvt\ZKkjeq\\>L\C]v\\0Ǣ\\0\Yh\lH\\<\\Sҥ:k\pIF<\\\Z^x+,ݕX_[z:jlZ[T(踈\ԃ\5P\MB\:\лWZzȍ\r8rT\\ͦ\qey*^քNC~\ u\%\\e8\up*]\~~3\\ +\\(\T *gUv\_,,\\x\6\\\\)t+QA\HE\Y&炒B]lq6X\`x\yPYZ\T\nxhJ)\BT9\X\+OY\o\w\\rhmG\#jt\'\\\Y^>^O\\\)\[]Z;qE(:BP.\zF/>O\?p\rG\\΅\߇\lr	\\\ngSǑvx\\\%[y\ɧ\/bE\Zuj\\YJR\哒3\ύ-)䟉?M\Z$\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2314,'2018-05-21 07:36:37',1,'categories.php','cID=2','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(2315,'2018-05-21 07:36:38',1,'categories.php','cID=2','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2316,'2018-05-21 07:37:30',1,'categories.php','cPath=2','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(2317,'2018-05-21 07:37:30',1,'categories.php','cID=2&action=edit_category','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php] with action=edit_category. Review page_parameters and postdata for details.','info'),(2318,'2018-05-21 07:37:30',1,'categories.php','cPath=2','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2319,'2018-05-21 07:37:31',1,'categories.php','cID=2&action=edit_category','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2320,'2018-05-21 07:38:43',1,'categories.php','action=update_category','24.72.164.167',0,'',_binary 'TMk1+\zN(&qٖB>ݜf;kB{G\r\zX$\Ǜ7oz\J\ϸʆ\'\]\k6Ȇ٤uޠkzp\r\0&{{Z/7ɳGl?\S\MM&\*U\րİcԠ|X8[C,wa1\\˕Hv`\A\\,aCt6\!.P5X\\+J4Z.6\\s\^`aݮt\\\\s6IgӺrBq˔\?K=h_b5QZ\$9Q#\:\Xxiܸ#HΚ\trEr9&v\Z\S\\E/\\ÏqZ\'٥\\\\'3\\rƹBw\U\\܁\GE9e\l!\\Z[|+QQ\DEX&磒B]li%6X\`h\yr8W\*fr\ДS,sTX\]\l*z\7\glf\r.\<پV\*]\LU~p5ur	3s\x|wv]ҊPj\\\\\\&ƏW\\r\\_M\'0\ZR+\z9\\{\\'YҬFӢ\9w4yfbօu\S18qf᥉A\\/','Accessed page [categories.php] with action=update_category. Review page_parameters and postdata for details.','info'),(2321,'2018-05-21 07:38:44',1,'categories.php','action=update_category','24.72.164.167',1,'',_binary 'TMk1+\zN(&qٖB>ݜf;kB{G\r\zX$\Ǜ7oz\J\ϸʆ\'\]\k6Ȇ٤uޠkzp\r\0&{{Z/7ɳGl?\S\MM&\*U\րİcԠ|X8[C,wa1\\˕Hv`\A\\,aCt6\!.P5X\\+J4Z.6\\s\^`aݮt\\\\s6IgӺrBq˔\?K=h_b5QZ\$9Q#\:\Xxiܸ#HΚ\trEr9&v\Z\S\\E/\\ÏqZ\'٥\\\\'3\\rƹBw\U\\܁\GE9e\l!\\Z[|+QQ\DEX&磒B]li%6X\`h\yr8W\*fr\ДS,sTX\]\l*z\7\glf\r.\<پV\*]\LU~p5ur	3s\x|wv]ҊPj\\\\\\&ƏW\\r\\_M\'0\ZR+\z9\\{\\'YҬFӢ\9w4yfbօu\S18qf᥉A\\/','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2322,'2018-05-21 07:38:44',1,'categories.php','cID=2','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(2323,'2018-05-21 07:38:44',1,'categories.php','cID=2','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2324,'2018-05-21 07:40:24',1,'categories.php','cID=14&action=edit_category','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php] with action=edit_category. Review page_parameters and postdata for details.','info'),(2325,'2018-05-21 07:40:25',1,'categories.php','cID=14&action=edit_category','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2326,'2018-05-21 07:40:29',1,'categories.php','cID=2','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(2327,'2018-05-21 07:40:30',1,'categories.php','cID=2','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2328,'2018-05-21 07:40:36',1,'categories.php','cPath=2','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(2329,'2018-05-21 07:40:36',1,'categories.php','cID=2&action=edit_category','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php] with action=edit_category. Review page_parameters and postdata for details.','info'),(2330,'2018-05-21 07:40:37',1,'categories.php','cPath=2','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2331,'2018-05-21 07:40:37',1,'categories.php','cID=2&action=edit_category','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2332,'2018-05-21 07:41:02',1,'categories.php','action=update_category','24.72.164.167',0,'',_binary 'TMk\0+=&޴,lCŻPI\\&$\"K$\'-#%\\I\\\oIV\29\k\XS2|K\0v\Tp\\A\в<\6N\?\\n\M\fAq8znI{Xv\\R	\jvt\ZKkjeq\\>L\C]v\\0Ǣ\\0\Yh\lH\\<\\Sҥ:k\pIF<\\\Z^x+,ݕX_[z:jlZ[T(踈\ԃ\5P\MB\:\лWZzȍ\r8rT\\ͦ\qey*^քNC~\ u\%\\e8\up*]\~~3\\ +\\(\T *gUv\_,,\\x\6\\\\)t+QA\HE\Y&炒B]lq6X\`x\yPYZ\T\nxhJ)\BT9\X\+OY\o\w\\rhmG\#jt\'\\\Y^>^O\\\)\[]Z;qE(:BP.\zF/>O#\w\\\\\\}{\&07y~\n\\z6xهw\j^7|ȻXѼFݢ\9wy$?\\scK\ngb\\\\k\','Accessed page [categories.php] with action=update_category. Review page_parameters and postdata for details.','info'),(2333,'2018-05-21 07:41:02',1,'categories.php','action=update_category','24.72.164.167',1,'',_binary 'TMk\0+=&޴,lCŻPI\\&$\"K$\'-#%\\I\\\oIV\29\k\XS2|K\0v\Tp\\A\в<\6N\?\\n\M\fAq8znI{Xv\\R	\jvt\ZKkjeq\\>L\C]v\\0Ǣ\\0\Yh\lH\\<\\Sҥ:k\pIF<\\\Z^x+,ݕX_[z:jlZ[T(踈\ԃ\5P\MB\:\лWZzȍ\r8rT\\ͦ\qey*^քNC~\ u\%\\e8\up*]\~~3\\ +\\(\T *gUv\_,,\\x\6\\\\)t+QA\HE\Y&炒B]lq6X\`x\yPYZ\T\nxhJ)\BT9\X\+OY\o\w\\rhmG\#jt\'\\\Y^>^O\\\)\[]Z;qE(:BP.\zF/>O#\w\\\\\\}{\&07y~\n\\z6xهw\j^7|ȻXѼFݢ\9wy$?\\scK\ngb\\\\k\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2334,'2018-05-21 07:41:03',1,'categories.php','cID=2','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(2335,'2018-05-21 07:41:03',1,'categories.php','cID=2','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2336,'2018-05-21 07:46:48',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(2337,'2018-05-21 07:46:49',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2338,'2018-05-21 07:46:58',1,'layout_controller.php','cID=136','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(2339,'2018-05-21 07:46:58',1,'layout_controller.php','cID=136&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(2340,'2018-05-21 07:46:59',1,'layout_controller.php','cID=136','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2341,'2018-05-21 07:46:59',1,'layout_controller.php','cID=136&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2342,'2018-05-21 07:47:06',1,'layout_controller.php','cID=136&action=save&layout_box_name=categories.php','24.72.164.167',0,'',_binary 'u\A\n \̺m\`))ΈEt̕Pm\\?!胲\L;h\0{E$H\\Cd\`>-\yevT\Zn>bF\\\\r','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(2343,'2018-05-21 07:47:06',1,'layout_controller.php','cID=136&action=save&layout_box_name=categories.php','24.72.164.167',1,'',_binary 'u\A\n \̺m\`))ΈEt̕Pm\\?!胲\L;h\0{E$H\\Cd\`>-\yevT\Zn>bF\\\\r','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2344,'2018-05-21 07:47:07',1,'layout_controller.php','cID=136','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(2345,'2018-05-21 07:47:07',1,'layout_controller.php','cID=136','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2346,'2018-05-21 07:47:14',1,'layout_controller.php','cID=142&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(2347,'2018-05-21 07:47:14',1,'layout_controller.php','cID=142&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2348,'2018-05-21 07:47:21',1,'layout_controller.php','cID=142&action=save&layout_box_name=information.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-ʙ\Z\/\\K\I1AW!28#,_R0P\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(2349,'2018-05-21 07:47:21',1,'layout_controller.php','cID=142&action=save&layout_box_name=information.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-ʙ\Z\/\\K\I1AW!28#,_R0P\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2350,'2018-05-21 07:47:22',1,'layout_controller.php','cID=142','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(2351,'2018-05-21 07:47:22',1,'layout_controller.php','cID=142','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2352,'2018-05-21 07:47:31',1,'layout_controller.php','cID=140','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(2353,'2018-05-21 07:47:31',1,'layout_controller.php','cID=140&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(2354,'2018-05-21 07:47:32',1,'layout_controller.php','cID=140','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2355,'2018-05-21 07:47:32',1,'layout_controller.php','cID=140&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2356,'2018-05-21 07:47:38',1,'layout_controller.php','cID=140&action=save&layout_box_name=ezpages.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-\\Z\/\\K\IŪl)BȆ\rdnf^|yfJIP\@\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(2357,'2018-05-21 07:47:39',1,'layout_controller.php','cID=140&action=save&layout_box_name=ezpages.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-\\Z\/\\K\IŪl)BȆ\rdnf^|yfJIP\@\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2358,'2018-05-21 07:47:39',1,'layout_controller.php','cID=140','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info');
INSERT INTO `admin_activity_log` VALUES (2359,'2018-05-21 07:47:39',1,'layout_controller.php','cID=140','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2360,'2018-05-21 07:49:41',1,'layout_controller.php','cID=132','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(2361,'2018-05-21 07:49:41',1,'layout_controller.php','cID=132&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(2362,'2018-05-21 07:49:41',1,'layout_controller.php','cID=132','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2363,'2018-05-21 07:49:41',1,'layout_controller.php','cID=132&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2364,'2018-05-21 07:49:51',1,'layout_controller.php','cID=132&action=save&layout_box_name=banner_box.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-\\/\\K\I*2ES!\r28#,_R0P\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(2365,'2018-05-21 07:49:51',1,'layout_controller.php','cID=132&action=save&layout_box_name=banner_box.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-\\/\\K\I*2ES!\r28#,_R0P\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2366,'2018-05-21 07:49:52',1,'layout_controller.php','cID=132','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(2367,'2018-05-21 07:49:52',1,'layout_controller.php','cID=132','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2368,'2018-05-21 11:31:22',0,'login.php ','camefrom=template_select.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(2369,'2018-05-21 11:31:23',0,'login.php ','camefrom=template_select.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2370,'2018-05-21 11:31:27',0,'login.php ','camefrom=layout_controller.php&cID=132','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(2371,'2018-05-21 11:31:27',0,'login.php ','camefrom=layout_controller.php&cID=132','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2372,'2018-05-21 11:31:41',0,'login.php Eagle','camefrom=layout_controller.php&cID=132','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\OKHL47014H33N445I45H04M44OJR\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=dofe8e9a70410f63a154e950c815a097bb. Review page_parameters and postdata for details.','info'),(2373,'2018-05-21 11:31:42',0,'login.php Eagle','camefrom=layout_controller.php&cID=132','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\OKHL47014H33N445I45H04M44OJR\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2374,'2018-05-21 11:31:42',1,'layout_controller.php','cID=132','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(2375,'2018-05-21 11:31:43',1,'layout_controller.php','cID=132','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2376,'2018-05-21 11:31:47',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(2377,'2018-05-21 11:31:47',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2378,'2018-05-21 11:31:54',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(2379,'2018-05-21 11:31:54',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2380,'2018-05-21 11:31:59',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(2381,'2018-05-21 11:32:00',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2382,'2018-05-22 21:28:23',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(2383,'2018-05-22 21:28:24',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2384,'2018-05-22 21:28:46',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\O6M45O34O5L1O67NJH4M4H65LKJK6Q\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=doc5a57f797e1d7c73bc88a5a0c51fbfc4. Review page_parameters and postdata for details.','info'),(2385,'2018-05-22 21:28:46',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\O6M45O34O5L1O67NJH4M4H65LKJK6Q\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2386,'2018-05-22 21:28:46',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(2387,'2018-05-22 21:28:47',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2388,'2018-05-22 21:32:36',1,'banner_manager.php','','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2389,'2018-05-22 21:32:37',1,'banner_manager.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2390,'2018-05-22 21:32:47',1,'banner_manager.php','page=1&bID=13','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2391,'2018-05-22 21:32:47',1,'banner_manager.php','page=1&bID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2392,'2018-05-22 21:32:51',1,'banner_manager.php','page=1&bID=13&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(2393,'2018-05-22 21:32:52',1,'banner_manager.php','page=1&bID=13&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2394,'2018-05-22 21:34:10',1,'banner_manager.php','page=1&action=upd','24.72.164.167',0,'',_binary 'e\N\ E\lZ]\Y	-\`3H\&\D\s§@Œ3gb(h>\s\h#V[):?\q\"\QR-{\\>\\ƶ8\̒{wUM\i\Z\\0\0\2\v\s\'\]Bs\\t\Z\\'N\{Z\\nyAg\\\vZ\s\O\r8P2\GwqKQlg	\irۯo','Accessed page [banner_manager.php] with action=upd. Review page_parameters and postdata for details.','info'),(2395,'2018-05-22 21:34:11',1,'banner_manager.php','page=1&action=upd','24.72.164.167',1,'',_binary 'e\N\ E\lZ]\Y	-\`3H\&\D\s§@Œ3gb(h>\s\h#V[):?\q\"\QR-{\\>\\ƶ8\̒{wUM\i\Z\\0\0\2\v\s\'\]Bs\\t\Z\\'N\{Z\\nyAg\\\vZ\s\O\r8P2\GwqKQlg	\irۯo','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2396,'2018-05-22 21:34:11',1,'banner_manager.php','page=1&bID=13','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2397,'2018-05-22 21:34:12',1,'banner_manager.php','page=1&bID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2398,'2018-05-22 21:37:46',1,'banner_manager.php','page=1&bID=13&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(2399,'2018-05-22 21:37:46',1,'banner_manager.php','page=1&bID=13&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(2400,'2018-05-22 21:37:46',1,'banner_manager.php','page=1&bID=13&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2401,'2018-05-22 21:37:47',1,'banner_manager.php','page=1&bID=13&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2402,'2018-05-22 21:38:30',1,'banner_manager.php','page=1&action=upd','24.72.164.167',0,'',_binary 'e\n\ Eb]%\\n\\_DBn$\0#lJ>ЇIW\\\rb\,\y4EԆ?\	Xm\v\ъCGI=\uSB\s	\\3K\\U5]q\Zk\0xb\0s\\K撺\,(6ޟwtv5\n͵g\\~\in8\r\ig+\U\!\j9;\-?5\@\ʼ+ݏ[b;O(vH\\','Accessed page [banner_manager.php] with action=upd. Review page_parameters and postdata for details.','info'),(2403,'2018-05-22 21:38:30',1,'banner_manager.php','page=1&action=upd','24.72.164.167',1,'',_binary 'e\n\ Eb]%\\n\\_DBn$\0#lJ>ЇIW\\\rb\,\y4EԆ?\	Xm\v\ъCGI=\uSB\s	\\3K\\U5]q\Zk\0xb\0s\\K撺\,(6ޟwtv5\n͵g\\~\in8\r\ig+\U\!\j9;\-?5\@\ʼ+ݏ[b;O(vH\\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2404,'2018-05-22 21:38:31',1,'banner_manager.php','page=1&bID=13','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2405,'2018-05-22 21:38:31',1,'banner_manager.php','page=1&bID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2406,'2018-05-22 21:38:40',1,'banner_manager.php','page=1&bID=13&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(2407,'2018-05-22 21:38:40',1,'banner_manager.php','page=1&bID=13&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(2408,'2018-05-22 21:38:41',1,'banner_manager.php','page=1&bID=13&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2409,'2018-05-22 21:38:42',1,'banner_manager.php','page=1&bID=13&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2410,'2018-05-22 21:42:42',1,'banner_manager.php','page=1&action=upd','24.72.164.167',0,'',_binary 'm\j\0Ex]f\ͺ\wmK^RȄ\9}\U=wqϯ\ѩ:>a)\>\9HiWE\}3d\O<ɴ&\Kޙk\Ŭ\\\빵v\"\7T&I;{\KB\Z9\\\\8u\G(\\'\\r\!V\Ԟt\\uZֈ+c+\\~S\3\','Accessed page [banner_manager.php] with action=upd. Review page_parameters and postdata for details.','info'),(2411,'2018-05-22 21:42:43',1,'banner_manager.php','page=1&action=upd','24.72.164.167',1,'',_binary 'm\j\0Ex]f\ͺ\wmK^RȄ\9}\U=wqϯ\ѩ:>a)\>\9HiWE\}3d\O<ɴ&\Kޙk\Ŭ\\\빵v\"\7T&I;{\KB\Z9\\\\8u\G(\\'\\r\!V\Ԟt\\uZֈ+c+\\~S\3\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2412,'2018-05-22 21:42:43',1,'banner_manager.php','page=1&action=upd','24.72.164.167',1,'',_binary 'm\j\0Ex]f\ͺ\wmK^RȄ\9}\U=wqϯ\ѩ:>a)\>\9HiWE\}3d\O<ɴ&\Kޙk\Ŭ\\\빵v\"\7T&I;{\KB\Z9\\\\8u\G(\\'\\r\!V\Ԟt\\uZֈ+c+\\~S\3\','Success: File upload saved successfully TEST_Picture1.png','notice'),(2413,'2018-05-22 21:42:43',1,'banner_manager.php','page=1&bID=13','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2414,'2018-05-22 21:42:43',1,'banner_manager.php','page=1&bID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2415,'2018-05-22 21:42:48',1,'banner_manager.php','page=1&bID=13&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(2416,'2018-05-22 21:42:48',1,'banner_manager.php','page=1&bID=13&action=setflag&flag=0','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(2417,'2018-05-22 21:42:48',1,'banner_manager.php','page=1&bID=13&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2418,'2018-05-22 21:42:49',1,'banner_manager.php','page=1&bID=13&action=setflag&flag=0','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2419,'2018-05-22 21:42:49',1,'banner_manager.php','page=1&bID=13','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2420,'2018-05-22 21:42:49',1,'banner_manager.php','page=1&bID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2421,'2018-05-22 21:42:55',1,'banner_manager.php','page=1&bID=13&action=setflag&flag=1','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(2422,'2018-05-22 21:42:55',1,'banner_manager.php','page=1&bID=13&action=setflag&flag=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2423,'2018-05-22 21:42:55',1,'banner_manager.php','page=1&bID=13','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2424,'2018-05-22 21:42:56',1,'banner_manager.php','page=1&bID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2425,'2018-05-22 21:42:58',1,'banner_manager.php','page=1&bID=13&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(2426,'2018-05-22 21:42:58',1,'banner_manager.php','page=1&bID=13&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(2427,'2018-05-22 21:42:59',1,'banner_manager.php','page=1&bID=13&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2428,'2018-05-22 21:42:59',1,'banner_manager.php','page=1&bID=13&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2429,'2018-05-22 21:54:58',1,'banner_manager.php','page=1&action=upd','24.72.164.167',0,'',_binary 'eMK1,\\\Pb	$\E\T>O/)!%oN\b(hQ\\\&lQ\r\Ɋ]\\yULB]\0\icVj9]\Ckm@7dL.Ǎ=se9b%\\\z{g\F6dc\\~o\2\Ϩ,\ZU\\wdV\#V܂2\vP,~qW','Accessed page [banner_manager.php] with action=upd. Review page_parameters and postdata for details.','info'),(2430,'2018-05-22 21:54:59',1,'banner_manager.php','page=1&action=upd','24.72.164.167',1,'',_binary 'eMK1,\\\Pb	$\E\T>O/)!%oN\b(hQ\\\&lQ\r\Ɋ]\\yULB]\0\icVj9]\Ckm@7dL.Ǎ=se9b%\\\z{g\F6dc\\~o\2\Ϩ,\ZU\\wdV\#V܂2\vP,~qW','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2431,'2018-05-22 21:54:59',1,'banner_manager.php','page=1&bID=13','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2432,'2018-05-22 21:55:00',1,'banner_manager.php','page=1&bID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2433,'2018-05-22 21:55:06',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(2434,'2018-05-22 21:55:07',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2435,'2018-05-22 21:55:11',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(2436,'2018-05-22 21:55:12',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2437,'2018-05-22 21:55:12',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(2438,'2018-05-22 21:55:12',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2439,'2018-05-22 21:55:20',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR\\LKU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(2440,'2018-05-22 21:55:20',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR\\LKU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2441,'2018-05-22 23:39:13',0,'login.php ','camefrom=template_select.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(2442,'2018-05-22 23:39:13',0,'login.php ','camefrom=template_select.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2443,'2018-05-22 23:39:33',0,'login.php Eagle','camefrom=template_select.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\77NJML4LL2K622564OrLLMRMSRtSr3\sS:\\\sRj','Accessed page [login.php] with action=do73beaa1ab6c225317ba1a045a4e5debc. Review page_parameters and postdata for details.','info'),(2444,'2018-05-22 23:39:33',0,'login.php Eagle','camefrom=template_select.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\77NJML4LL2K622564OrLLMRMSRtSr3\sS:\\\sRj','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2445,'2018-05-22 23:39:36',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(2446,'2018-05-22 23:39:36',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2447,'2018-05-22 23:39:40',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(2448,'2018-05-22 23:39:40',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2449,'2018-05-22 23:39:43',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(2450,'2018-05-22 23:39:43',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2451,'2018-05-22 23:39:49',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(2452,'2018-05-22 23:39:50',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2453,'2018-05-22 23:42:28',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(2454,'2018-05-22 23:42:28',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2455,'2018-05-22 23:42:32',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(2456,'2018-05-22 23:42:32',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2457,'2018-05-22 23:42:44',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR\\LKU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(2458,'2018-05-22 23:42:45',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR\\LKU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2459,'2018-05-23 10:32:00',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(2460,'2018-05-23 10:32:02',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2461,'2018-05-23 10:32:24',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJɷLI4JJ5I1KLKK4NN2H507M1OL4HJ3Q\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do9dc92be4d6b9ffa3cb0e075d7aa28bf4. Review page_parameters and postdata for details.','info'),(2462,'2018-05-23 10:32:25',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJɷLI4JJ5I1KLKK4NN2H507M1OL4HJ3Q\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2463,'2018-05-23 10:32:25',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(2464,'2018-05-23 10:32:26',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2465,'2018-05-23 10:32:39',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(2466,'2018-05-23 10:32:40',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2467,'2018-05-23 10:32:48',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(2468,'2018-05-23 10:32:48',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2469,'2018-05-23 10:32:55',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(2470,'2018-05-23 10:32:56',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2471,'2018-05-23 10:34:33',1,'banner_manager.php','','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2472,'2018-05-23 10:34:33',1,'banner_manager.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2473,'2018-05-23 10:34:46',1,'banner_manager.php','page=1&bID=14','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2474,'2018-05-23 10:34:47',1,'banner_manager.php','page=1&bID=14','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2475,'2018-05-23 10:34:56',1,'banner_manager.php','page=1&bID=14&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(2476,'2018-05-23 10:34:57',1,'banner_manager.php','page=1&bID=14&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2477,'2018-05-23 10:35:34',1,'banner_manager.php','page=1&bID=14','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2478,'2018-05-23 10:35:35',1,'banner_manager.php','page=1&bID=14','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2479,'2018-05-23 10:35:39',1,'banner_manager.php','page=1&bID=13','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2480,'2018-05-23 10:35:39',1,'banner_manager.php','page=1&bID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2481,'2018-05-23 10:35:43',1,'banner_manager.php','page=1&bID=13&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(2482,'2018-05-23 10:35:43',1,'banner_manager.php','page=1&bID=13&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2483,'2018-05-23 10:36:11',1,'banner_manager.php','page=1&bID=13','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2484,'2018-05-23 10:36:11',1,'banner_manager.php','page=1&bID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2485,'2018-05-23 10:36:23',1,'banner_manager.php','page=1&bID=14','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2486,'2018-05-23 10:36:24',1,'banner_manager.php','page=1&bID=14','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2487,'2018-05-23 10:36:31',1,'banner_manager.php','page=1&bID=14&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(2488,'2018-05-23 10:36:31',1,'banner_manager.php','page=1&bID=14&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2489,'2018-05-23 10:37:14',1,'banner_manager.php','page=1&action=upd','24.72.164.167',0,'',_binary 'e\j1_\\\6\r\[=\n\1`ԵK\^ٞf\}\Y@*v\M\f\ZEڰ\v4\~]{\']j\@Cb\UÉ\\ewٵ\&\0t\W\iNaE/%\<0\\\2\\Zfe\\\ټ\,\~\qG\n\q\\m#s*bRX~OaA\\\V\-SA6\{T(\0x\','Accessed page [banner_manager.php] with action=upd. Review page_parameters and postdata for details.','info'),(2490,'2018-05-23 10:37:14',1,'banner_manager.php','page=1&action=upd','24.72.164.167',1,'',_binary 'e\j1_\\\6\r\[=\n\1`ԵK\^ٞf\}\Y@*v\M\f\ZEڰ\v4\~]{\']j\@Cb\UÉ\\ewٵ\&\0t\W\iNaE/%\<0\\\2\\Zfe\\\ټ\,\~\qG\n\q\\m#s*bRX~OaA\\\V\-SA6\{T(\0x\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2491,'2018-05-23 10:37:14',1,'banner_manager.php','page=1&bID=14','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2492,'2018-05-23 10:37:15',1,'banner_manager.php','page=1&bID=14','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2493,'2018-05-23 10:37:21',1,'banner_manager.php','page=1&bID=10','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2494,'2018-05-23 10:37:21',1,'banner_manager.php','page=1&bID=10','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2495,'2018-05-23 10:37:24',1,'banner_manager.php','page=1&bID=10&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(2496,'2018-05-23 10:37:25',1,'banner_manager.php','page=1&bID=10&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2497,'2018-05-23 10:37:48',1,'banner_manager.php','page=1&action=upd','24.72.164.167',0,'',_binary 'ej1_%x.l۱Pڌ;-K%\^pNFɲe.Y,9s4y2EzՊ?eX;\-1[\QR-{3o\QRdO\<\\\\<\y{\\Z\0t\WaaaO9\0\\a\}kg\F\\\\\ɾѨ%\~H<3xǬ[\\*\\\\C3\\\xKQlg	\\޿','Accessed page [banner_manager.php] with action=upd. Review page_parameters and postdata for details.','info'),(2498,'2018-05-23 10:37:49',1,'banner_manager.php','page=1&action=upd','24.72.164.167',1,'',_binary 'ej1_%x.l۱Pڌ;-K%\^pNFɲe.Y,9s4y2EzՊ?eX;\-1[\QR-{3o\QRdO\<\\\\<\y{\\Z\0t\WaaaO9\0\\a\}kg\F\\\\\ɾѨ%\~H<3xǬ[\\*\\\\C3\\\xKQlg	\\޿','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2499,'2018-05-23 10:37:49',1,'banner_manager.php','page=1&bID=10','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2500,'2018-05-23 10:37:49',1,'banner_manager.php','page=1&bID=10','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2501,'2018-05-23 10:38:45',1,'banner_manager.php','page=1&bID=12','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2502,'2018-05-23 10:38:46',1,'banner_manager.php','page=1&bID=12','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2503,'2018-05-23 10:38:56',1,'banner_manager.php','page=1&bID=12&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(2504,'2018-05-23 10:38:56',1,'banner_manager.php','page=1&bID=12&action=setflag&flag=0','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(2505,'2018-05-23 10:38:56',1,'banner_manager.php','page=1&bID=12&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2506,'2018-05-23 10:38:56',1,'banner_manager.php','page=1&bID=12&action=setflag&flag=0','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2507,'2018-05-23 10:38:57',1,'banner_manager.php','page=1&bID=12','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2508,'2018-05-23 10:38:57',1,'banner_manager.php','page=1&bID=12','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2509,'2018-05-23 10:39:09',1,'banner_manager.php','page=1&bID=11&action=setflag&flag=0','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(2510,'2018-05-23 10:39:10',1,'banner_manager.php','page=1&bID=11&action=setflag&flag=0','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2511,'2018-05-23 10:39:10',1,'banner_manager.php','page=1&bID=11','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2512,'2018-05-23 10:39:10',1,'banner_manager.php','page=1&bID=11','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2513,'2018-05-23 10:40:18',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(2514,'2018-05-23 10:40:18',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2515,'2018-05-23 10:41:24',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2516,'2018-05-23 10:41:24',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2517,'2018-05-23 10:41:48',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2518,'2018-05-23 10:41:48',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2519,'2018-05-23 10:41:55',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*26$\\@\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(2520,'2018-05-23 10:41:55',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*26$\\@\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2521,'2018-05-23 10:41:55',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*26$\\@\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET3: ','warning'),(2522,'2018-05-23 10:41:55',1,'configuration.php','gID=19&cID=428','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2523,'2018-05-23 10:41:56',1,'configuration.php','gID=19&cID=428','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2524,'2018-05-23 10:42:25',1,'configuration.php','gID=19&cID=440&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2525,'2018-05-23 10:42:25',1,'configuration.php','gID=19&cID=440&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2526,'2018-05-23 10:42:44',1,'configuration.php','gID=19&cID=440&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,qvqut\rqt\nq	\r\0*2\"\L\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(2527,'2018-05-23 10:42:44',1,'configuration.php','gID=19&cID=440&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,qvqut\rqt\nq	\r\0*2\"\L\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2528,'2018-05-23 10:42:44',1,'configuration.php','gID=19&cID=440&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,qvqut\rqt\nq	\r\0*2\"\L\0','Configuration setting changed for CATEGORIES_TABS_STATUS: 0','warning'),(2529,'2018-05-23 10:42:44',1,'configuration.php','gID=19&cID=440','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2530,'2018-05-23 10:42:45',1,'configuration.php','gID=19&cID=440','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2531,'2018-05-23 10:43:03',1,'configuration.php','gID=19&cID=440&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2532,'2018-05-23 10:43:03',1,'configuration.php','gID=19&cID=440&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2533,'2018-05-23 10:43:08',1,'configuration.php','gID=19&cID=440&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,qvqut\rqt\nq	\r\0*2\"\\\\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(2534,'2018-05-23 10:43:09',1,'configuration.php','gID=19&cID=440&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,qvqut\rqt\nq	\r\0*2\"\\\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2535,'2018-05-23 10:43:09',1,'configuration.php','gID=19&cID=440&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,qvqut\rqt\nq	\r\0*2\"\\\\0','Configuration setting changed for CATEGORIES_TABS_STATUS: 1','warning'),(2536,'2018-05-23 10:43:09',1,'configuration.php','gID=19&cID=440','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2537,'2018-05-23 10:43:09',1,'configuration.php','gID=19&cID=440','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2538,'2018-05-23 10:45:27',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(2539,'2018-05-23 10:45:27',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2540,'2018-05-23 10:45:34',1,'template_select.php','','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php]','info'),(2541,'2018-05-23 10:45:35',1,'template_select.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2542,'2018-05-23 10:45:38',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(2543,'2018-05-23 10:45:38',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2544,'2018-05-23 10:45:44',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR\\LKU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(2545,'2018-05-23 10:45:44',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR\\LKU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2546,'2018-05-23 11:56:46',0,'login.php ','camefrom=template_select.php&page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [login.php] with action=edit. Review page_parameters and postdata for details.','info'),(2547,'2018-05-23 11:56:47',0,'login.php ','camefrom=template_select.php&page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2548,'2018-05-23 11:57:07',0,'login.php Eagle','camefrom=template_select.php&page=1&tID=1&action=edit','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\ON4O551N03J05H63IJ1HJ5544K5LV\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=docb97e543d862a850c64bd0be5116e59c. Review page_parameters and postdata for details.','info'),(2549,'2018-05-23 11:57:07',0,'login.php Eagle','camefrom=template_select.php&page=1&tID=1&action=edit','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\ON4O551N03J05H63IJ1HJ5544K5LV\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2550,'2018-05-23 11:57:08',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(2551,'2018-05-23 11:57:08',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2552,'2018-05-23 11:57:19',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(2553,'2018-05-23 11:57:19',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2554,'2018-05-23 12:39:45',0,'login.php ','camefrom=template_select.php&page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [login.php] with action=edit. Review page_parameters and postdata for details.','info'),(2555,'2018-05-23 12:39:47',0,'login.php ','camefrom=template_select.php&page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2556,'2018-05-23 12:40:16',0,'login.php Eagle','camefrom=template_select.php&page=1&tID=1&action=edit','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\75LIJNL33H4LJ405KKNJ6N1JKHJNNT\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do51dbcb9f60a1ba1856fcbc3d2fd8bcca. Review page_parameters and postdata for details.','info'),(2557,'2018-05-23 12:40:17',0,'login.php Eagle','camefrom=template_select.php&page=1&tID=1&action=edit','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\75LIJNL33H4LJ405KKNJ6N1JKHJNNT\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2558,'2018-05-23 12:40:17',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(2559,'2018-05-23 12:40:18',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2560,'2018-05-23 12:40:22',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(2561,'2018-05-23 12:40:22',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR*J-.\\+\,K/\HMK\L\IO\)MU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2562,'2018-05-23 12:40:25',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [template_select.php] with action=edit. Review page_parameters and postdata for details.','info'),(2563,'2018-05-23 12:40:26',1,'template_select.php','page=1&tID=1&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2564,'2018-05-23 12:40:30',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',0,'',_binary 'V\\SR\\LKU\0','Accessed page [template_select.php] with action=save. Review page_parameters and postdata for details.','info'),(2565,'2018-05-23 12:40:31',1,'template_select.php','page=1&tID=1&action=save','24.72.164.167',1,'',_binary 'V\\SR\\LKU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2566,'2018-05-23 12:41:05',1,'banner_manager.php','','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2567,'2018-05-23 12:41:06',1,'banner_manager.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2568,'2018-05-23 12:42:13',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(2569,'2018-05-23 12:42:14',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2570,'2018-05-23 12:42:20',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2571,'2018-05-23 12:42:21',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2572,'2018-05-23 12:42:36',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2573,'2018-05-23 12:42:37',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2574,'2018-05-23 12:42:43',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0 \T\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(2575,'2018-05-23 12:42:43',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0 \T\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2576,'2018-05-23 12:42:43',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0 \T\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET1: homepageslide','warning'),(2577,'2018-05-23 12:42:44',1,'configuration.php','gID=19&cID=426','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2578,'2018-05-23 12:42:44',1,'configuration.php','gID=19&cID=426','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2579,'2018-05-23 12:43:25',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2580,'2018-05-23 12:43:26',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2581,'2018-05-23 12:43:32',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*24\'\H\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(2582,'2018-05-23 12:43:32',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*24\'\H\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2583,'2018-05-23 12:43:32',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*24\'\H\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET1: ','warning'),(2584,'2018-05-23 12:43:33',1,'configuration.php','gID=19&cID=426','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2585,'2018-05-23 12:43:33',1,'configuration.php','gID=19&cID=426','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2586,'2018-05-23 12:43:41',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2587,'2018-05-23 12:43:41',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2588,'2018-05-23 12:43:48',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\06\"\\H\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(2589,'2018-05-23 12:43:48',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\06\"\\H\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2590,'2018-05-23 12:43:48',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\06\"\\H\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET2: homepageslide','warning'),(2591,'2018-05-23 12:43:49',1,'configuration.php','gID=19&cID=427','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2592,'2018-05-23 12:43:49',1,'configuration.php','gID=19&cID=427','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2593,'2018-05-23 12:55:25',1,'banner_manager.php','','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2594,'2018-05-23 12:55:26',1,'banner_manager.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2595,'2018-05-23 14:51:52',0,'login.php ','camefrom=configuration.php&gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(2596,'2018-05-23 14:51:52',0,'login.php ','camefrom=configuration.php&gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2597,'2018-05-23 14:52:10',0,'login.php Eagle','camefrom=configuration.php&gID=19','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\7224H4I216JN114I6O6NNNILMIKMR\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do2210f94b432cd47894c7c3ccdf9edfeb. Review page_parameters and postdata for details.','info'),(2598,'2018-05-23 14:52:10',0,'login.php Eagle','camefrom=configuration.php&gID=19','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\7224H4I216JN114I6O6NNNILMIKMR\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2599,'2018-05-23 14:52:11',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2600,'2018-05-23 14:52:11',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2601,'2018-05-23 14:52:19',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2602,'2018-05-23 14:52:19',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2603,'2018-05-23 14:52:25',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\04%\@\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(2604,'2018-05-23 14:52:26',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\04%\@\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2605,'2018-05-23 14:52:26',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\04%\@\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET3: homepageslide','warning'),(2606,'2018-05-23 14:52:26',1,'configuration.php','gID=19&cID=428','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2607,'2018-05-23 14:52:27',1,'configuration.php','gID=19&cID=428','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2608,'2018-05-23 14:52:30',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2609,'2018-05-23 14:52:30',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2610,'2018-05-23 14:52:36',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*2$L\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(2611,'2018-05-23 14:52:36',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*2$L\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2612,'2018-05-23 14:52:36',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*2$L\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET2: ','warning'),(2613,'2018-05-23 14:52:37',1,'configuration.php','gID=19&cID=427','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2614,'2018-05-23 14:52:37',1,'configuration.php','gID=19&cID=427','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2615,'2018-05-23 15:03:06',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2616,'2018-05-23 15:03:07',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2617,'2018-05-23 15:03:14',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*24%\R\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(2618,'2018-05-23 15:03:15',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*24%\R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2619,'2018-05-23 15:03:15',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*24%\R\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET3: ','warning'),(2620,'2018-05-23 15:03:15',1,'configuration.php','gID=19&cID=428','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2621,'2018-05-23 15:03:16',1,'configuration.php','gID=19&cID=428','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2622,'2018-05-23 15:03:47',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2623,'2018-05-23 15:03:47',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2624,'2018-05-23 15:03:51',1,'configuration.php','gID=19&cID=428','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2625,'2018-05-23 15:03:51',1,'configuration.php','gID=19&cID=428','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2626,'2018-05-23 15:03:58',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2627,'2018-05-23 15:03:59',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2628,'2018-05-23 15:04:03',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\04#\@\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(2629,'2018-05-23 15:04:04',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\04#\@\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2630,'2018-05-23 15:04:04',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\04#\@\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET2: homepageslide','warning'),(2631,'2018-05-23 15:04:04',1,'configuration.php','gID=19&cID=427','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2632,'2018-05-23 15:04:04',1,'configuration.php','gID=19&cID=427','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2633,'2018-05-23 16:07:51',0,'login.php ','camefrom=define_pages_editor.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(2634,'2018-05-23 16:07:52',0,'login.php ','camefrom=define_pages_editor.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2635,'2018-05-23 16:08:10',0,'login.php Eagle','camefrom=define_pages_editor.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\O301OHJ67K60125H56237JJ4K4M2U\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=dof7847e8bc76c0425198e32672ba6a5b5. Review page_parameters and postdata for details.','info'),(2636,'2018-05-23 16:08:11',0,'login.php Eagle','camefrom=define_pages_editor.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\O301OHJ67K60125H56237JJ4K4M2U\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2637,'2018-05-23 16:08:11',1,'define_pages_editor.php','','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(2638,'2018-05-23 16:08:12',1,'define_pages_editor.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2639,'2018-05-23 16:08:23',1,'define_pages_editor.php','define_it=5&action=new_page','24.72.164.167',0,'',_binary '\0','Accessed page [define_pages_editor.php] with action=new_page. Review page_parameters and postdata for details.','info'),(2640,'2018-05-23 16:08:24',1,'define_pages_editor.php','define_it=5&action=new_page','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2641,'2018-05-23 16:13:10',1,'developers_tool_kit.php','','24.72.164.167',0,'',_binary '\0','Accessed page [developers_tool_kit.php]','info'),(2642,'2018-05-23 16:13:11',1,'developers_tool_kit.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2643,'2018-05-23 16:13:34',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR\K,\M\\/J,(H-R\Q*O\\I-\\"qK*RB@cJR+J\s2\j','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(2644,'2018-05-23 16:13:35',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR\K,\M\\/J,(H-R\Q*O\\I-\\"qK*RB@cJR+J\s2\j','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2645,'2018-05-24 16:59:48',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(2646,'2018-05-24 16:59:49',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2647,'2018-05-24 17:00:17',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\OKJ5L1L376615LJL60J64244LK22V\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=dofbe1d19f733451bac02c49279159fb23. Review page_parameters and postdata for details.','info'),(2648,'2018-05-24 17:00:18',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\OKJ5L1L376615LJL60J64244LK22V\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2649,'2018-05-24 17:00:19',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(2650,'2018-05-24 17:00:20',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2651,'2018-05-24 17:00:51',1,'developers_tool_kit.php','','24.72.164.167',0,'',_binary '\0','Accessed page [developers_tool_kit.php]','info'),(2652,'2018-05-24 17:00:52',1,'developers_tool_kit.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2653,'2018-05-24 17:01:02',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NTRRI\)\L\,vˬHMV\Q*O\\I-\\"qK*RB@cJR+J\s2\j','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(2654,'2018-05-24 17:01:02',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NTRRI\)\L\,vˬHMV\Q*O\\I-\\"qK*RB@cJR+J\s2\j','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2655,'2018-05-24 17:20:35',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(2656,'2018-05-24 17:20:35',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2657,'2018-05-24 17:20:50',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\76J5L44HLJ5750HJNMJNLM2J&\J:J)yy@\9J\0','Accessed page [login.php] with action=do32e29a10abe75180bcebcb9eb2a9eb4c. Review page_parameters and postdata for details.','info'),(2658,'2018-05-24 17:20:50',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\76J5L44HLJ5750HJNMJNLM2J&\J:J)yy@\9J\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2659,'2018-05-24 17:20:51',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(2660,'2018-05-24 17:20:51',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2661,'2018-05-24 17:21:03',1,'developers_tool_kit.php','','24.72.164.167',0,'',_binary '\0','Accessed page [developers_tool_kit.php]','info'),(2662,'2018-05-24 17:21:03',1,'developers_tool_kit.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2663,'2018-05-24 17:21:20',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR*\/\\\LI\IU\Q*O\\I-\"qK*RBF@!%%9y`eJ\0','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(2664,'2018-05-24 17:21:21',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR*\/\\\LI\IU\Q*O\\I-\"qK*RBF@!%%9y`eJ\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2665,'2018-05-25 09:29:21',0,'login.php ','camefrom=index.php','174.235.133.91',0,'',_binary '\0','Accessed page [login.php]','info'),(2666,'2018-05-25 09:29:23',0,'login.php ','camefrom=index.php','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2667,'2018-05-25 09:29:38',0,'login.php Eagle','camefrom=index.php','174.235.133.91',0,'',_binary 'VJL.\\\SRJ\O62HL2J2LH3N3K3JI3HM300KIK46Q\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=doc20c9b2b1c8f3f6f2df68ef4806dfa34. Review page_parameters and postdata for details.','info'),(2668,'2018-05-25 09:29:39',0,'login.php Eagle','camefrom=index.php','174.235.133.91',1,'',_binary 'VJL.\\\SRJ\O62HL2J2LH3N3K3JI3HM300KIK46Q\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2669,'2018-05-25 09:29:39',1,'index.php','','174.235.133.91',0,'',_binary '\0','Accessed page [index.php]','info'),(2670,'2018-05-25 09:29:40',1,'index.php','','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2671,'2018-05-25 09:29:50',1,'developers_tool_kit.php','','174.235.133.91',0,'',_binary '\0','Accessed page [developers_tool_kit.php]','info'),(2672,'2018-05-25 09:29:50',1,'developers_tool_kit.php','','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2673,'2018-05-25 09:30:00',1,'developers_tool_kit.php','action=locate_all_files','174.235.133.91',0,'',_binary 'M1\n1E2La\b6z0e0&a6;Ż\\>E/äT$Ew\[\r\d|\dDx32\\n.8\̻;\gR\\\Ӝckn\\?\\?-','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(2674,'2018-05-25 09:30:00',1,'developers_tool_kit.php','action=locate_all_files','174.235.133.91',1,'',_binary 'M1\n1E2La\b6z0e0&a6;Ż\\>E/äT$Ew\[\r\d|\dDx32\\n.8\̻;\gR\\\Ӝckn\\?\\?-','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2675,'2018-05-25 09:32:15',1,'layout_controller.php','','174.235.133.91',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(2676,'2018-05-25 09:32:16',1,'layout_controller.php','','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2677,'2018-05-25 10:00:10',0,'login.php ','camefrom=layout_controller.php&cID=157','174.235.133.91',0,'',_binary '\0','Accessed page [login.php]','info'),(2678,'2018-05-25 10:00:12',0,'login.php ','camefrom=layout_controller.php&cID=157','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2679,'2018-05-25 10:00:30',0,'login.php Eagle','camefrom=layout_controller.php&cID=157','174.235.133.91',0,'',_binary 'VJL.\\\SRJ\74I17HMKJ2M2INM530J2H2J4362I64V\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do14d70efbb5b4cee6582b78b2a6324c13. Review page_parameters and postdata for details.','info'),(2680,'2018-05-25 10:00:31',0,'login.php Eagle','camefrom=layout_controller.php&cID=157','174.235.133.91',1,'',_binary 'VJL.\\\SRJ\74I17HMKJ2M2INM530J2H2J4362I64V\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2681,'2018-05-25 10:00:31',1,'layout_controller.php','cID=157','174.235.133.91',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(2682,'2018-05-25 10:00:32',1,'layout_controller.php','cID=157','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2683,'2018-05-25 10:00:39',1,'layout_controller.php','cID=146','174.235.133.91',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(2684,'2018-05-25 10:00:40',1,'layout_controller.php','cID=146','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2685,'2018-05-25 10:00:44',1,'layout_controller.php','cID=146&action=edit','174.235.133.91',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(2686,'2018-05-25 10:00:44',1,'layout_controller.php','cID=146&action=edit','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2687,'2018-05-25 10:01:06',1,'layout_controller.php','cID=141','174.235.133.91',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(2688,'2018-05-25 10:01:06',1,'layout_controller.php','cID=141','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2689,'2018-05-25 10:01:24',1,'banner_manager.php','','174.235.133.91',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2690,'2018-05-25 10:01:24',1,'banner_manager.php','','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2691,'2018-05-25 10:01:44',1,'banner_manager.php','page=1&bID=8','174.235.133.91',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2692,'2018-05-25 10:01:45',1,'banner_manager.php','page=1&bID=8','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2693,'2018-05-25 10:01:59',1,'banner_manager.php','page=1&bID=8&action=new','174.235.133.91',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(2694,'2018-05-25 10:01:59',1,'banner_manager.php','page=1&bID=8&action=new','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2695,'2018-05-25 10:02:08',1,'banner_manager.php','page=1&action=upd','174.235.133.91',0,'',_binary 'ej\0_\\c\alkc[\ae\>v\'\I\Y\9AG\"d`\1\␋p\AR	t\';\AF=^C/Z&\"!O\x\\\\\&}i51/Ǯ隔R\Zh\{\=\%\'Z4p:]xvMg=4\2JUQugϟoM<[Ű\p ϊ=\*h\\̰.\!\$W\,\0','Accessed page [banner_manager.php] with action=upd. Review page_parameters and postdata for details.','info'),(2696,'2018-05-25 10:02:08',1,'banner_manager.php','page=1&action=upd','174.235.133.91',1,'',_binary 'ej\0_\\c\alkc[\ae\>v\'\I\Y\9AG\"d`\1\␋p\AR	t\';\AF=^C/Z&\"!O\x\\\\\&}i51/Ǯ隔R\Zh\{\=\%\'Z4p:]xvMg=4\2JUQugϟoM<[Ű\p ϊ=\*h\\̰.\!\$W\,\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2697,'2018-05-25 10:02:09',1,'banner_manager.php','page=1&bID=8','174.235.133.91',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2698,'2018-05-25 10:02:09',1,'banner_manager.php','page=1&bID=8','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2699,'2018-05-25 10:03:22',1,'layout_controller.php','','174.235.133.91',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(2700,'2018-05-25 10:03:23',1,'layout_controller.php','','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2701,'2018-05-25 10:03:41',1,'configuration.php','gID=19','174.235.133.91',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2702,'2018-05-25 10:03:41',1,'configuration.php','gID=19','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2703,'2018-05-25 10:08:07',1,'ezpages.php','','174.235.133.91',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2704,'2018-05-25 10:08:08',1,'ezpages.php','','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2705,'2018-05-25 10:08:39',1,'ezpages.php','page=1&ezID=13','174.235.133.91',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2706,'2018-05-25 10:08:39',1,'ezpages.php','action=status_sidebox&current=1&ezID=13&page=1','174.235.133.91',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_sidebox. Review page_parameters and postdata for details.','info'),(2707,'2018-05-25 10:08:39',1,'ezpages.php','page=1&ezID=13','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2708,'2018-05-25 10:08:39',1,'ezpages.php','action=status_sidebox&current=1&ezID=13&page=1','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2709,'2018-05-25 10:08:39',1,'ezpages.php','action=status_sidebox&current=1&ezID=13&page=1','174.235.133.91',0,'',_binary '\0','EZ-Page ID 13 [status_sidebox] changed to 0','info'),(2710,'2018-05-25 10:08:40',1,'ezpages.php','page=1&ezID=13','174.235.133.91',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2711,'2018-05-25 10:08:40',1,'ezpages.php','page=1&ezID=13','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2712,'2018-05-25 10:08:42',1,'ezpages.php','action=status_sidebox&current=1&ezID=4&page=1','174.235.133.91',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_sidebox. Review page_parameters and postdata for details.','info'),(2713,'2018-05-25 10:08:43',1,'ezpages.php','action=status_sidebox&current=1&ezID=4&page=1','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2714,'2018-05-25 10:08:43',1,'ezpages.php','action=status_sidebox&current=1&ezID=4&page=1','174.235.133.91',0,'',_binary '\0','EZ-Page ID 4 [status_sidebox] changed to 0','info'),(2715,'2018-05-25 10:08:43',1,'ezpages.php','page=1&ezID=4','174.235.133.91',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2716,'2018-05-25 10:08:44',1,'ezpages.php','page=1&ezID=4','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2717,'2018-05-25 10:08:45',1,'ezpages.php','action=status_sidebox&current=1&ezID=10&page=1','174.235.133.91',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_sidebox. Review page_parameters and postdata for details.','info'),(2718,'2018-05-25 10:08:45',1,'ezpages.php','action=status_sidebox&current=1&ezID=10&page=1','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2719,'2018-05-25 10:08:45',1,'ezpages.php','action=status_sidebox&current=1&ezID=10&page=1','174.235.133.91',0,'',_binary '\0','EZ-Page ID 10 [status_sidebox] changed to 0','info'),(2720,'2018-05-25 10:08:46',1,'ezpages.php','page=1&ezID=10','174.235.133.91',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2721,'2018-05-25 10:08:46',1,'ezpages.php','page=1&ezID=10','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2722,'2018-05-25 10:08:48',1,'ezpages.php','page=1&ezID=11','174.235.133.91',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2723,'2018-05-25 10:08:48',1,'ezpages.php','page=1&ezID=11','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2724,'2018-05-25 10:08:51',1,'ezpages.php','action=status_sidebox&current=1&ezID=11&page=1','174.235.133.91',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_sidebox. Review page_parameters and postdata for details.','info'),(2725,'2018-05-25 10:08:51',1,'ezpages.php','action=status_sidebox&current=1&ezID=11&page=1','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2726,'2018-05-25 10:08:51',1,'ezpages.php','action=status_sidebox&current=1&ezID=11&page=1','174.235.133.91',0,'',_binary '\0','EZ-Page ID 11 [status_sidebox] changed to 0','info'),(2727,'2018-05-25 10:08:51',1,'ezpages.php','page=1&ezID=11','174.235.133.91',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2728,'2018-05-25 10:08:52',1,'ezpages.php','page=1&ezID=11','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2729,'2018-05-25 10:08:53',1,'ezpages.php','page=1&ezID=12','174.235.133.91',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2730,'2018-05-25 10:08:53',1,'ezpages.php','action=status_sidebox&current=1&ezID=12&page=1','174.235.133.91',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_sidebox. Review page_parameters and postdata for details.','info'),(2731,'2018-05-25 10:08:54',1,'ezpages.php','page=1&ezID=12','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2732,'2018-05-25 10:08:54',1,'ezpages.php','action=status_sidebox&current=1&ezID=12&page=1','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2733,'2018-05-25 10:08:54',1,'ezpages.php','action=status_sidebox&current=1&ezID=12&page=1','174.235.133.91',0,'',_binary '\0','EZ-Page ID 12 [status_sidebox] changed to 0','info'),(2734,'2018-05-25 10:08:54',1,'ezpages.php','page=1&ezID=12','174.235.133.91',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2735,'2018-05-25 10:08:55',1,'ezpages.php','page=1&ezID=12','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2736,'2018-05-25 10:08:56',1,'ezpages.php','page=1&ezID=7','174.235.133.91',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2737,'2018-05-25 10:08:56',1,'ezpages.php','action=status_sidebox&current=1&ezID=7&page=1','174.235.133.91',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_sidebox. Review page_parameters and postdata for details.','info'),(2738,'2018-05-25 10:08:57',1,'ezpages.php','page=1&ezID=7','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2739,'2018-05-25 10:08:57',1,'ezpages.php','action=status_sidebox&current=1&ezID=7&page=1','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2740,'2018-05-25 10:08:57',1,'ezpages.php','action=status_sidebox&current=1&ezID=7&page=1','174.235.133.91',0,'',_binary '\0','EZ-Page ID 7 [status_sidebox] changed to 0','info'),(2741,'2018-05-25 10:08:57',1,'ezpages.php','page=1&ezID=7','174.235.133.91',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(2742,'2018-05-25 10:08:57',1,'ezpages.php','page=1&ezID=7','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2743,'2018-05-25 10:09:22',1,'flexible_footer_menu.php','','174.235.133.91',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(2744,'2018-05-25 10:09:23',1,'flexible_footer_menu.php','','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2745,'2018-05-25 10:10:06',1,'flexible_footer_menu.php','bID=19','174.235.133.91',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(2746,'2018-05-25 10:10:07',1,'flexible_footer_menu.php','bID=19','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2747,'2018-05-25 10:10:12',1,'flexible_footer_menu.php','bID=19&action=new','174.235.133.91',0,'',_binary '\0','Accessed page [flexible_footer_menu.php] with action=new. Review page_parameters and postdata for details.','info'),(2748,'2018-05-25 10:10:12',1,'flexible_footer_menu.php','bID=19&action=new','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2749,'2018-05-25 10:10:30',1,'flexible_footer_menu.php','action=update','174.235.133.91',0,'',_binary '5]\n1\YD \AP\@4wݟ\ofђ;\\opO6(Mi\J\Z;P)\\\\/\IQ{\rM{\%grĶ;?\"\TSn]ZWjYa\\','Accessed page [flexible_footer_menu.php] with action=update. Review page_parameters and postdata for details.','info'),(2750,'2018-05-25 10:10:31',1,'flexible_footer_menu.php','action=update','174.235.133.91',1,'',_binary '5]\n1\YD \AP\@4wݟ\ofђ;\\opO6(Mi\J\Z;P)\\\\/\IQ{\rM{\%grĶ;?\"\TSn]ZWjYa\\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2751,'2018-05-25 10:10:31',1,'flexible_footer_menu.php','bID=19','174.235.133.91',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(2752,'2018-05-25 10:10:32',1,'flexible_footer_menu.php','bID=19','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2753,'2018-05-25 10:10:35',1,'flexible_footer_menu.php','bID=18','174.235.133.91',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(2754,'2018-05-25 10:10:36',1,'flexible_footer_menu.php','bID=18','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2755,'2018-05-25 10:10:39',1,'flexible_footer_menu.php','bID=18&action=new','174.235.133.91',0,'',_binary '\0','Accessed page [flexible_footer_menu.php] with action=new. Review page_parameters and postdata for details.','info'),(2756,'2018-05-25 10:10:40',1,'flexible_footer_menu.php','bID=18&action=new','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2757,'2018-05-25 10:10:46',1,'flexible_footer_menu.php','action=update','174.235.133.91',0,'',_binary '5K\n\0DR.M6P\\A`+{\Yy3d!\p\61\dMw-^_)rzW5>4\I\KaE<\g0>b3\\qGFUzW%\j*1\\','Accessed page [flexible_footer_menu.php] with action=update. Review page_parameters and postdata for details.','info'),(2758,'2018-05-25 10:10:47',1,'flexible_footer_menu.php','action=update','174.235.133.91',1,'',_binary '5K\n\0DR.M6P\\A`+{\Yy3d!\p\61\dMw-^_)rzW5>4\I\KaE<\g0>b3\\qGFUzW%\j*1\\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2759,'2018-05-25 10:10:47',1,'flexible_footer_menu.php','bID=18','174.235.133.91',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(2760,'2018-05-25 10:10:48',1,'flexible_footer_menu.php','bID=18','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2761,'2018-05-25 10:10:58',1,'flexible_footer_menu.php','bID=12&action=setflag&flag=0','174.235.133.91',0,'',_binary '\0','Accessed page [flexible_footer_menu.php] with action=setflag. Review page_parameters and postdata for details.','info'),(2762,'2018-05-25 10:10:58',1,'flexible_footer_menu.php','bID=12','174.235.133.91',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(2763,'2018-05-25 10:10:58',1,'flexible_footer_menu.php','bID=12&action=setflag&flag=0','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2764,'2018-05-25 10:10:58',1,'flexible_footer_menu.php','bID=12','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2765,'2018-05-25 10:10:58',1,'flexible_footer_menu.php','bID=12','174.235.133.91',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(2766,'2018-05-25 10:10:59',1,'flexible_footer_menu.php','bID=12','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2767,'2018-05-25 10:11:06',1,'flexible_footer_menu.php','bID=12&action=new','174.235.133.91',0,'',_binary '\0','Accessed page [flexible_footer_menu.php] with action=new. Review page_parameters and postdata for details.','info'),(2768,'2018-05-25 10:11:06',1,'flexible_footer_menu.php','bID=12&action=new','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2769,'2018-05-25 10:11:13',1,'flexible_footer_menu.php','action=update','174.235.133.91',0,'',_binary '5\\n\0EE,\\'Aď9\5B6ߗlܓp\\n\\8Ø\'r&ʻ L\\ojrT\C4\I\\\i+fO\%O]\\\\3\K$2\n-rX\#j*C;7','Accessed page [flexible_footer_menu.php] with action=update. Review page_parameters and postdata for details.','info'),(2770,'2018-05-25 10:11:14',1,'flexible_footer_menu.php','action=update','174.235.133.91',1,'',_binary '5\\n\0EE,\\'Aď9\5B6ߗlܓp\\n\\8Ø\'r&ʻ L\\ojrT\C4\I\\\i+fO\%O]\\\\3\K$2\n-rX\#j*C;7','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2771,'2018-05-25 10:11:14',1,'flexible_footer_menu.php','bID=12','174.235.133.91',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(2772,'2018-05-25 10:11:14',1,'flexible_footer_menu.php','bID=12','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2773,'2018-05-25 10:11:20',1,'flexible_footer_menu.php','bID=23','174.235.133.91',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(2774,'2018-05-25 10:11:20',1,'flexible_footer_menu.php','bID=23','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2775,'2018-05-25 10:11:26',1,'flexible_footer_menu.php','bID=23&action=new','174.235.133.91',0,'',_binary '\0','Accessed page [flexible_footer_menu.php] with action=new. Review page_parameters and postdata for details.','info'),(2776,'2018-05-25 10:11:26',1,'flexible_footer_menu.php','bID=23&action=new','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2777,'2018-05-25 10:11:31',1,'flexible_footer_menu.php','action=update','174.235.133.91',0,'',_binary '=[\n1E\"D\\k\r3A\wөy\I\M\\	\\L.P\x\\*d|\n\\%M\掿㥊!@\\\\Z\'l\\[FAU{Q/<rU̵/Fx\0','Accessed page [flexible_footer_menu.php] with action=update. Review page_parameters and postdata for details.','info'),(2778,'2018-05-25 10:11:31',1,'flexible_footer_menu.php','action=update','174.235.133.91',1,'',_binary '=[\n1E\"D\\k\r3A\wөy\I\M\\	\\L.P\x\\*d|\n\\%M\掿㥊!@\\\\Z\'l\\[FAU{Q/<rU̵/Fx\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2779,'2018-05-25 10:11:31',1,'flexible_footer_menu.php','bID=23','174.235.133.91',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(2780,'2018-05-25 10:11:32',1,'flexible_footer_menu.php','bID=23','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2781,'2018-05-25 10:22:14',1,'flexible_footer_menu.php','bID=23&action=new','174.235.133.91',0,'',_binary '\0','Accessed page [flexible_footer_menu.php] with action=new. Review page_parameters and postdata for details.','info'),(2782,'2018-05-25 10:22:15',1,'flexible_footer_menu.php','bID=23&action=new','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2783,'2018-05-25 10:38:14',0,'login.php ','camefrom=configuration.php&gID=19','174.235.133.91',0,'',_binary '\0','Accessed page [login.php]','info'),(2784,'2018-05-25 10:38:15',0,'login.php ','camefrom=configuration.php&gID=19','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2785,'2018-05-25 10:38:25',0,'login.php Eagle','camefrom=configuration.php&gID=19','174.235.133.91',0,'',_binary 'VJL.\\\SRJ\7073L65M2L2HJM04NL30HK5K2S\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do0761c55b789b28bef8493a9f080fe6b6. Review page_parameters and postdata for details.','info'),(2786,'2018-05-25 10:38:26',0,'login.php Eagle','camefrom=configuration.php&gID=19','174.235.133.91',1,'',_binary 'VJL.\\\SRJ\7073L65M2L2HJM04NL30HK5K2S\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2787,'2018-05-25 10:38:26',0,'login.php Eagle','camefrom=configuration.php&gID=19','174.235.133.91',1,'',_binary 'VJL.\\\SRJ\7073L65M2L2HJM04NL30HK5K2S\QJL\\̋\K\M\pML\IU\0','Failed admin login attempt:  Eagle','warning'),(2788,'2018-05-25 10:38:41',0,'login.php Eagle','camefrom=configuration.php&gID=19','174.235.133.91',0,'',_binary 'VJL.\\\SRJ\7073L65M2L2HJM04NL30HK5K2S\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do0761c55b789b28bef8493a9f080fe6b6. Review page_parameters and postdata for details.','info'),(2789,'2018-05-25 10:38:41',0,'login.php Eagle','camefrom=configuration.php&gID=19','174.235.133.91',1,'',_binary 'VJL.\\\SRJ\7073L65M2L2HJM04NL30HK5K2S\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2790,'2018-05-25 10:38:42',1,'configuration.php','gID=19','174.235.133.91',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2791,'2018-05-25 10:38:42',1,'configuration.php','gID=19','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2792,'2018-05-25 10:39:07',1,'configuration.php','gID=19&cID=409&action=edit','174.235.133.91',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2793,'2018-05-25 10:39:08',1,'configuration.php','gID=19&cID=409&action=edit','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2794,'2018-05-25 10:39:23',1,'configuration.php','gID=19&cID=409&action=save','174.235.133.91',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,q	quq	\r\0*02ŧ\\\\\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(2795,'2018-05-25 10:39:24',1,'configuration.php','gID=19&cID=409&action=save','174.235.133.91',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,q	quq	\r\0*02ŧ\\\\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2796,'2018-05-25 10:39:24',1,'configuration.php','gID=19&cID=409&action=save','174.235.133.91',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,q	quq	\r\0*02ŧ\\\\\0','Configuration setting changed for COLUMN_LEFT_STATUS: 0','warning'),(2797,'2018-05-25 10:39:24',1,'configuration.php','gID=19&cID=409','174.235.133.91',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2798,'2018-05-25 10:39:24',1,'configuration.php','gID=19&cID=409','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2799,'2018-05-25 10:39:28',1,'configuration.php','gID=19&cID=409','174.235.133.91',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2800,'2018-05-25 10:39:29',1,'configuration.php','gID=19&cID=409','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2801,'2018-05-25 10:45:21',1,'configuration.php','gID=19&cID=409','174.235.133.91',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2802,'2018-05-25 10:45:21',1,'configuration.php','gID=19&cID=409','174.235.133.91',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2803,'2018-05-25 17:59:35',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(2804,'2018-05-25 17:59:36',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2805,'2018-05-25 18:00:09',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJɷ4N41O14300I6471H1K224LL6O25S\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do93a47d1960284c09740d6b2129ac7b56. Review page_parameters and postdata for details.','info'),(2806,'2018-05-25 18:00:10',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJɷ4N41O14300I6471H1K224LL6O25S\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2807,'2018-05-25 18:00:10',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(2808,'2018-05-25 18:00:11',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2809,'2018-05-25 18:00:41',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(2810,'2018-05-25 18:00:41',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2811,'2018-05-25 18:00:54',1,'layout_controller.php','cID=136','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(2812,'2018-05-25 18:00:54',1,'layout_controller.php','cID=136','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2813,'2018-05-25 18:00:59',1,'layout_controller.php','cID=136&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(2814,'2018-05-25 18:00:59',1,'layout_controller.php','cID=136&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2815,'2018-05-25 18:01:07',1,'layout_controller.php','cID=136&action=save&layout_box_name=categories.php','24.72.164.167',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\pI\g\\bSI(]_\\̋/\L)\\0;\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(2816,'2018-05-25 18:01:08',1,'layout_controller.php','cID=136&action=save&layout_box_name=categories.php','24.72.164.167',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\pI\g\\bSI(]_\\̋/\L)\\0;\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2817,'2018-05-25 18:01:08',1,'layout_controller.php','cID=136','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(2818,'2018-05-25 18:01:09',1,'layout_controller.php','cID=136','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2819,'2018-05-25 18:12:18',1,'flexible_footer_menu.php','','24.72.164.167',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(2820,'2018-05-25 18:12:19',1,'flexible_footer_menu.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2821,'2018-05-25 18:12:35',1,'flexible_footer_menu.php','action=new','24.72.164.167',0,'',_binary '\0','Accessed page [flexible_footer_menu.php] with action=new. Review page_parameters and postdata for details.','info'),(2822,'2018-05-25 18:12:35',1,'flexible_footer_menu.php','action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2823,'2018-05-25 18:15:18',1,'flexible_footer_menu.php','action=insert','24.72.164.167',0,'',_binary 'E\n1D%gςx+BqH x˼&\n6*\p^u,!Vj\TIN\\%%J\њ]{\ӹ\x,.\\9\\s\','Accessed page [flexible_footer_menu.php] with action=insert. Review page_parameters and postdata for details.','info'),(2824,'2018-05-25 18:15:19',1,'flexible_footer_menu.php','action=insert','24.72.164.167',1,'',_binary 'E\n1D%gςx+BqH x˼&\n6*\p^u,!Vj\TIN\\%%J\њ]{\ӹ\x,.\\9\\s\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2825,'2018-05-25 18:15:40',1,'flexible_footer_menu.php','action=insert','24.72.164.167',0,'',_binary 'E\n1D%g*\Pl\Ҵd#,nx˼&G,2\\a\g\	zZ](\\\\$\L\\$$k\\K\Ċù{g]8z#*\\9\6slv̹\','Accessed page [flexible_footer_menu.php] with action=insert. Review page_parameters and postdata for details.','info'),(2826,'2018-05-25 18:15:41',1,'flexible_footer_menu.php','action=insert','24.72.164.167',1,'',_binary 'E\n1D%g*\Pl\Ҵd#,nx˼&G,2\\a\g\	zZ](\\\\$\L\\$$k\\K\Ċù{g]8z#*\\9\6slv̹\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2827,'2018-05-25 18:15:41',1,'flexible_footer_menu.php','bID=27','24.72.164.167',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(2828,'2018-05-25 18:15:42',1,'flexible_footer_menu.php','bID=27','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2829,'2018-05-25 18:15:44',1,'flexible_footer_menu.php','action=insert','24.72.164.167',0,'',_binary 'E\n1D%g*\Pl\Ҵd#,nx˼&G,2\\a\g\	zZ](\\\\$\L\\$$k\\K\Ċù{g]8z#*\\9\6slv̹\','Accessed page [flexible_footer_menu.php] with action=insert. Review page_parameters and postdata for details.','info'),(2830,'2018-05-25 18:15:44',1,'flexible_footer_menu.php','action=insert','24.72.164.167',1,'',_binary 'E\n1D%g*\Pl\Ҵd#,nx˼&G,2\\a\g\	zZ](\\\\$\L\\$$k\\K\Ċù{g]8z#*\\9\6slv̹\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2831,'2018-05-25 18:15:44',1,'flexible_footer_menu.php','bID=28','24.72.164.167',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(2832,'2018-05-25 18:15:45',1,'flexible_footer_menu.php','bID=28','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2833,'2018-05-25 18:16:55',1,'flexible_footer_menu.php','bID=19','24.72.164.167',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(2834,'2018-05-25 18:16:55',1,'flexible_footer_menu.php','bID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2835,'2018-05-25 18:17:00',1,'flexible_footer_menu.php','bID=19&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [flexible_footer_menu.php] with action=new. Review page_parameters and postdata for details.','info'),(2836,'2018-05-25 18:17:00',1,'flexible_footer_menu.php','bID=19&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2837,'2018-05-25 18:17:30',1,'flexible_footer_menu.php','action=update','24.72.164.167',0,'',_binary '5\n1De\YD{S\^JqhӒ\\\⿛\cf\df5Տ\09_\Kr|\0V\A\\Rk#%Z\"0<AfI\\r\n@\Zu\c3\'=,\\Z\={$ל\\v\XD#]\\~L\o\|','Accessed page [flexible_footer_menu.php] with action=update. Review page_parameters and postdata for details.','info'),(2838,'2018-05-25 18:17:31',1,'flexible_footer_menu.php','action=update','24.72.164.167',1,'',_binary '5\n1De\YD{S\^JqhӒ\\\⿛\cf\df5Տ\09_\Kr|\0V\A\\Rk#%Z\"0<AfI\\r\n@\Zu\c3\'=,\\Z\={$ל\\v\XD#]\\~L\o\|','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2839,'2018-05-25 18:17:31',1,'flexible_footer_menu.php','bID=19','24.72.164.167',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(2840,'2018-05-25 18:17:31',1,'flexible_footer_menu.php','bID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2841,'2018-05-25 18:18:38',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2842,'2018-05-25 18:18:38',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2843,'2018-05-25 22:41:53',0,'login.php ','camefrom=configuration.php&gID=19&cID=440&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [login.php] with action=edit. Review page_parameters and postdata for details.','info'),(2844,'2018-05-25 22:41:54',0,'login.php ','camefrom=configuration.php&gID=19&cID=440&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2845,'2018-05-25 22:42:21',0,'login.php Eagle','camefrom=configuration.php&gID=19&cID=440&action=edit','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\O44MJ47N2HL4LN35M46M4K04W\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=doa15bb9973b18aa69cf55c935b96d8297. Review page_parameters and postdata for details.','info'),(2846,'2018-05-25 22:42:21',0,'login.php Eagle','camefrom=configuration.php&gID=19&cID=440&action=edit','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\O44MJ47N2HL4LN35M46M4K04W\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2847,'2018-05-25 22:42:22',1,'configuration.php','gID=19&cID=440&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2848,'2018-05-25 22:42:22',1,'configuration.php','gID=19&cID=440&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2849,'2018-05-25 22:42:29',1,'configuration.php','gID=19&cID=440&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2850,'2018-05-25 22:42:30',1,'configuration.php','gID=19&cID=440&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2851,'2018-05-25 22:42:36',1,'configuration.php','gID=19&cID=440&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,qvqut\rqt\nq	\r\0*24\'\X\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(2852,'2018-05-25 22:42:36',1,'configuration.php','gID=19&cID=440&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,qvqut\rqt\nq	\r\0*24\'\X\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2853,'2018-05-25 22:42:36',1,'configuration.php','gID=19&cID=440&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,qvqut\rqt\nq	\r\0*24\'\X\0','Configuration setting changed for CATEGORIES_TABS_STATUS: 0','warning'),(2854,'2018-05-25 22:42:37',1,'configuration.php','gID=19&cID=440','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2855,'2018-05-25 22:42:37',1,'configuration.php','gID=19&cID=440','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2856,'2018-05-26 08:44:12',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(2857,'2018-05-26 08:44:13',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2858,'2018-05-26 08:44:31',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\7L1JLH26NK2L6M454OLN6IKK4H50KT\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do1d2a9e8b33fb1c5a517acc4ffa38e06a. Review page_parameters and postdata for details.','info'),(2859,'2018-05-26 08:44:32',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\7L1JLH26NK2L6M454OLN6IKK4H50KT\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2860,'2018-05-26 08:44:32',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(2861,'2018-05-26 08:44:33',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2862,'2018-05-26 08:44:38',1,'banner_manager.php','','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2863,'2018-05-26 08:44:39',1,'banner_manager.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2864,'2018-05-26 08:45:41',1,'banner_manager.php','action=new','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(2865,'2018-05-26 08:45:42',1,'banner_manager.php','action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2866,'2018-05-26 08:47:26',1,'banner_manager.php','','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2867,'2018-05-26 08:47:27',1,'banner_manager.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2868,'2018-05-26 08:57:55',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2869,'2018-05-26 08:57:58',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2870,'2018-05-26 09:01:09',1,'configuration.php','gID=19&cID=416&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2871,'2018-05-26 09:01:10',1,'configuration.php','gID=19&cID=416&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2872,'2018-05-26 09:06:42',1,'banner_manager.php','','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2873,'2018-05-26 09:06:43',1,'banner_manager.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2874,'2018-05-26 09:06:59',1,'banner_manager.php','page=1&bID=11&action=setflag&flag=1','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(2875,'2018-05-26 09:07:00',1,'banner_manager.php','page=1&bID=11&action=setflag&flag=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2876,'2018-05-26 09:07:00',1,'banner_manager.php','page=1&bID=11','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2877,'2018-05-26 09:07:00',1,'banner_manager.php','page=1&bID=11','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2878,'2018-05-26 09:07:16',1,'banner_manager.php','page=1&bID=14','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2879,'2018-05-26 09:07:16',1,'banner_manager.php','page=1&bID=14','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2880,'2018-05-26 09:07:19',1,'banner_manager.php','page=1&bID=14&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(2881,'2018-05-26 09:07:19',1,'banner_manager.php','page=1&bID=14&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2882,'2018-05-26 09:08:47',1,'banner_manager.php','page=1&action=upd','24.72.164.167',0,'',_binary 'e\j1_e\4\Sn-X($\Kke-\\B޽6ia=\73/3k2j\\A\SpLt+k\OK4[e\a\\!\ޑm\7 \),%+v\\qSk\	3\){α\l7\\ڲHo\h\'\\A\1S \(Vӂ\\1\`A͓ESω2\\^!\\C?\0','Accessed page [banner_manager.php] with action=upd. Review page_parameters and postdata for details.','info'),(2883,'2018-05-26 09:08:47',1,'banner_manager.php','page=1&action=upd','24.72.164.167',1,'',_binary 'e\j1_e\4\Sn-X($\Kke-\\B޽6ia=\73/3k2j\\A\SpLt+k\OK4[e\a\\!\ޑm\7 \),%+v\\qSk\	3\){α\l7\\ڲHo\h\'\\A\1S \(Vӂ\\1\`A͓ESω2\\^!\\C?\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2884,'2018-05-26 09:08:48',1,'banner_manager.php','page=1&bID=14','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2885,'2018-05-26 09:08:48',1,'banner_manager.php','page=1&bID=14','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2886,'2018-05-26 09:09:14',1,'banner_manager.php','page=1&bID=10','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2887,'2018-05-26 09:09:15',1,'banner_manager.php','page=1&bID=10','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2888,'2018-05-26 09:09:18',1,'banner_manager.php','page=1&bID=10&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(2889,'2018-05-26 09:09:18',1,'banner_manager.php','page=1&bID=10&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2890,'2018-05-26 09:09:37',1,'banner_manager.php','page=1&action=upd','24.72.164.167',0,'',_binary 'eMK1J\Y-\z֣ \c!\\4;d\\\\n\\}7__\\\,9\<QU\ԇ?L\\l\\\r|X\lE⦣zB8\\@\neO\=`\+(/\t\_\9\n\*\LieZO	 =t>\uV5Lݵf7;?\+\ZS\៩\hnX\w\\\Z\p+\ vS\`\0','Accessed page [banner_manager.php] with action=upd. Review page_parameters and postdata for details.','info'),(2891,'2018-05-26 09:09:38',1,'banner_manager.php','page=1&action=upd','24.72.164.167',1,'',_binary 'eMK1J\Y-\z֣ \c!\\4;d\\\\n\\}7__\\\,9\<QU\ԇ?L\\l\\\r|X\lE⦣zB8\\@\neO\=`\+(/\t\_\9\n\*\LieZO	 =t>\uV5Lݵf7;?\+\ZS\៩\hnX\w\\\Z\p+\ vS\`\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2892,'2018-05-26 09:09:38',1,'banner_manager.php','page=1&bID=10','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2893,'2018-05-26 09:09:39',1,'banner_manager.php','page=1&bID=10','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2894,'2018-05-26 09:09:46',1,'banner_manager.php','page=1&bID=10&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(2895,'2018-05-26 09:09:46',1,'banner_manager.php','page=1&bID=10&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2896,'2018-05-26 09:10:05',1,'banner_manager.php','page=1&action=upd','24.72.164.167',0,'',_binary 'ej1_%x.4\2c6cg\N`K\\Ձ\wM)\\\}?\>z\n\\\-ڧ6a\ȞJv|Xcq\1-{woYX\wϨ4J]J/\ft\_\\0\"]\t%\Ȓ/	3L6\\:\Z\(#\\/\\\yg	\;[\Uy)\}-j \qưD2\2T\\}B)C}K\?','Accessed page [banner_manager.php] with action=upd. Review page_parameters and postdata for details.','info'),(2897,'2018-05-26 09:10:05',1,'banner_manager.php','page=1&action=upd','24.72.164.167',1,'',_binary 'ej1_%x.4\2c6cg\N`K\\Ձ\wM)\\\}?\>z\n\\\-ڧ6a\ȞJv|Xcq\1-{woYX\wϨ4J]J/\ft\_\\0\"]\t%\Ȓ/	3L6\\:\Z\(#\\/\\\yg	\;[\Uy)\}-j \qưD2\2T\\}B)C}K\?','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2898,'2018-05-26 09:10:06',1,'banner_manager.php','page=1&bID=10','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(2899,'2018-05-26 09:10:06',1,'banner_manager.php','page=1&bID=10','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2900,'2018-05-26 09:11:24',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2901,'2018-05-26 09:11:24',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2902,'2018-05-26 09:11:36',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2903,'2018-05-26 09:11:37',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2904,'2018-05-26 09:11:59',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n\LI\uJ\\K-*V\Q*.M\\,	wrs\r\nw\rv\r1\0j01&\\\\\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(2905,'2018-05-26 09:11:59',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n\LI\uJ\\K-*V\Q*.M\\,	wrs\r\nw\rv\r1\0j01&\\\\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2906,'2018-05-26 09:11:59',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n\LI\uJ\\K-*V\Q*.M\\,	wrs\r\nw\rv\r1\0j01&\\\\\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET2: Wide-Banners','warning'),(2907,'2018-05-26 09:12:00',1,'configuration.php','gID=19&cID=427','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2908,'2018-05-26 09:12:00',1,'configuration.php','gID=19&cID=427','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2909,'2018-05-26 09:14:46',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2910,'2018-05-26 09:14:46',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2911,'2018-05-26 09:14:57',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n\LI\uJ\\K-*V\Q*.M\\,	wrs\r\nw\rv\r1\0j02%\\B\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(2912,'2018-05-26 09:14:57',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n\LI\uJ\\K-*V\Q*.M\\,	wrs\r\nw\rv\r1\0j02%\\B\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2913,'2018-05-26 09:14:57',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n\LI\uJ\\K-*V\Q*.M\\,	wrs\r\nw\rv\r1\0j02%\\B\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET1: Wide-Banners','warning'),(2914,'2018-05-26 09:14:57',1,'configuration.php','gID=19&cID=426','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2915,'2018-05-26 09:14:58',1,'configuration.php','gID=19&cID=426','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2916,'2018-05-26 09:15:21',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2917,'2018-05-26 09:15:21',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2918,'2018-05-26 09:15:21',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2919,'2018-05-26 09:15:21',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2920,'2018-05-26 09:15:22',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2921,'2018-05-26 09:15:22',1,'configuration.php','gID=19&cID=426&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2922,'2018-05-26 09:15:28',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*21$\\@\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(2923,'2018-05-26 09:15:28',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*21$\\@\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2924,'2018-05-26 09:15:28',1,'configuration.php','gID=19&cID=426&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*21$\\@\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET1: ','warning'),(2925,'2018-05-26 09:15:29',1,'configuration.php','gID=19&cID=426','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2926,'2018-05-26 09:15:29',1,'configuration.php','gID=19&cID=426','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2927,'2018-05-26 09:15:35',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2928,'2018-05-26 09:15:35',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2929,'2018-05-26 09:15:43',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n\LI\uJ\\K-*V\Q*.M\\,	wrs\r\nw\rv\r1\0j0 \R\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(2930,'2018-05-26 09:15:44',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n\LI\uJ\\K-*V\Q*.M\\,	wrs\r\nw\rv\r1\0j0 \R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2931,'2018-05-26 09:15:44',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n\LI\uJ\\K-*V\Q*.M\\,	wrs\r\nw\rv\r1\0j0 \R\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET3: Wide-Banners','warning'),(2932,'2018-05-26 09:15:44',1,'configuration.php','gID=19&cID=428','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2933,'2018-05-26 09:15:44',1,'configuration.php','gID=19&cID=428','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2934,'2018-05-26 09:16:41',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2935,'2018-05-26 09:16:42',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2936,'2018-05-26 09:16:42',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2937,'2018-05-26 09:16:42',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2938,'2018-05-26 09:16:43',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2939,'2018-05-26 09:16:43',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2940,'2018-05-26 09:16:49',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*22!\D\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(2941,'2018-05-26 09:16:50',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*22!\D\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2942,'2018-05-26 09:16:50',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*22!\D\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET3: ','warning'),(2943,'2018-05-26 09:16:50',1,'configuration.php','gID=19&cID=428','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2944,'2018-05-26 09:16:51',1,'configuration.php','gID=19&cID=428','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2945,'2018-05-26 09:46:58',0,'login.php ','camefrom=configuration.php&gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(2946,'2018-05-26 09:46:58',0,'login.php ','camefrom=configuration.php&gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2947,'2018-05-26 09:47:16',0,'login.php Eagle','camefrom=configuration.php&gID=19','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\O3LH4H3K1002I235N40KHJK261J3T\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=dof1f88a0f6d28024b653a06b8bfb342f1. Review page_parameters and postdata for details.','info'),(2948,'2018-05-26 09:47:16',0,'login.php Eagle','camefrom=configuration.php&gID=19','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\O3LH4H3K1002I235N40KHJK261J3T\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2949,'2018-05-26 09:47:18',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2950,'2018-05-26 09:47:18',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2951,'2018-05-26 09:47:26',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2952,'2018-05-26 09:47:26',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2953,'2018-05-26 09:47:42',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2954,'2018-05-26 09:47:43',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2955,'2018-05-26 09:47:49',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n\LI\uJ\\K-*V\Q*.M\\,	wrs\r\nw\rv\r1\0j04 \R\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(2956,'2018-05-26 09:47:50',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n\LI\uJ\\K-*V\Q*.M\\,	wrs\r\nw\rv\r1\0j04 \R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2957,'2018-05-26 09:47:50',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n\LI\uJ\\K-*V\Q*.M\\,	wrs\r\nw\rv\r1\0j04 \R\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET3: Wide-Banners','warning'),(2958,'2018-05-26 09:47:50',1,'configuration.php','gID=19&cID=428','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2959,'2018-05-26 09:47:51',1,'configuration.php','gID=19&cID=428','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2960,'2018-05-26 09:47:56',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2961,'2018-05-26 09:47:57',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2962,'2018-05-26 09:48:03',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*24%\T\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(2963,'2018-05-26 09:48:04',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*24%\T\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2964,'2018-05-26 09:48:04',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*24%\T\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET2: ','warning'),(2965,'2018-05-26 09:48:04',1,'configuration.php','gID=19&cID=427','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2966,'2018-05-26 09:48:04',1,'configuration.php','gID=19&cID=427','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2967,'2018-05-26 10:45:05',0,'login.php ','camefrom=configuration.php&gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(2968,'2018-05-26 10:45:05',0,'login.php ','camefrom=configuration.php&gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2969,'2018-05-26 10:45:21',0,'login.php Eagle','camefrom=configuration.php&gID=19','24.72.164.167',0,'',_binary 'VJL.\\\SRJɷ0N2JLIHJ6L571607MLKJNJMN4M1LI5U\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do83b2adb8bc1e743075afbcbeca5d1de5. Review page_parameters and postdata for details.','info'),(2970,'2018-05-26 10:45:22',0,'login.php Eagle','camefrom=configuration.php&gID=19','24.72.164.167',1,'',_binary 'VJL.\\\SRJɷ0N2JLIHJ6L571607MLKJNJMN4M1LI5U\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2971,'2018-05-26 10:45:22',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2972,'2018-05-26 10:45:23',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2973,'2018-05-26 10:47:48',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2974,'2018-05-26 10:47:48',1,'configuration.php','gID=19&cID=428&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2975,'2018-05-26 10:48:00',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*2$\T\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(2976,'2018-05-26 10:48:01',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*2$\T\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2977,'2018-05-26 10:48:01',1,'configuration.php','gID=19&cID=428&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*2$\T\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET3: ','warning'),(2978,'2018-05-26 10:48:01',1,'configuration.php','gID=19&cID=428','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2979,'2018-05-26 10:48:02',1,'configuration.php','gID=19&cID=428','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2980,'2018-05-26 10:48:09',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(2981,'2018-05-26 10:48:09',1,'configuration.php','gID=19&cID=427&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2982,'2018-05-26 10:48:16',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n\LI\uJ\\K-*V\Q*.M\\,	wrs\r\nw\rv\r1\0j04\"\R\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(2983,'2018-05-26 10:48:17',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n\LI\uJ\\K-*V\Q*.M\\,	wrs\r\nw\rv\r1\0j04\"\R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2984,'2018-05-26 10:48:17',1,'configuration.php','gID=19&cID=427&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n\LI\uJ\\K-*V\Q*.M\\,	wrs\r\nw\rv\r1\0j04\"\R\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET2: Wide-Banners','warning'),(2985,'2018-05-26 10:48:17',1,'configuration.php','gID=19&cID=427','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2986,'2018-05-26 10:48:17',1,'configuration.php','gID=19&cID=427','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2987,'2018-05-26 11:34:57',0,'login.php ','camefrom=developers_tool_kit.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(2988,'2018-05-26 11:34:58',0,'login.php ','camefrom=developers_tool_kit.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2989,'2018-05-26 11:35:16',0,'login.php Eagle','camefrom=developers_tool_kit.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJɷ4L2O0H4314156200O32427L340121Q\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do91b7c80a64145320687f21271f104244. Review page_parameters and postdata for details.','info'),(2990,'2018-05-26 11:35:16',0,'login.php Eagle','camefrom=developers_tool_kit.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJɷ4L2O0H4314156200O32427L340121Q\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2991,'2018-05-26 11:35:16',1,'developers_tool_kit.php','','24.72.164.167',0,'',_binary '\0','Accessed page [developers_tool_kit.php]','info'),(2992,'2018-05-26 11:35:17',1,'developers_tool_kit.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2993,'2018-05-26 11:35:34',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',0,'',_binary 'M\1\n0\dvPܼLJ\\b\n\\>w\\z$g7*0\D()tpeH+ieJc7:\r˗͜*qnax^','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(2994,'2018-05-26 11:35:34',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',1,'',_binary 'M\1\n0\dvPܼLJ\\b\n\\>w\\z$g7*0\D()tpeH+ieJc7:\r˗͜*qnax^','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2995,'2018-05-26 11:41:02',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(2996,'2018-05-26 11:41:02',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2997,'2018-05-26 11:41:43',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(2998,'2018-05-26 11:41:43',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(2999,'2018-05-26 11:44:00',1,'featured.php','','24.72.164.167',0,'',_binary '\0','Accessed page [featured.php]','info'),(3000,'2018-05-26 11:44:01',1,'featured.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3001,'2018-05-26 11:44:04',1,'featured.php','page=0&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [featured.php] with action=new. Review page_parameters and postdata for details.','info'),(3002,'2018-05-26 11:44:05',1,'featured.php','page=0&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3003,'2018-05-26 11:45:23',1,'featured.php','page=0&action=insert','24.72.164.167',0,'',_binary 'V*(\O)M.)\LQR2T\Ae&Eb\%E%fjHR-\0','Accessed page [featured.php] with action=insert. Review page_parameters and postdata for details.','info'),(3004,'2018-05-26 11:45:24',1,'featured.php','page=0&action=insert','24.72.164.167',1,'',_binary 'V*(\O)M.)\LQR2T\Ae&Eb\%E%fjHR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3005,'2018-05-26 11:45:24',1,'featured.php','fID=1','24.72.164.167',0,'',_binary '\0','Accessed page [featured.php]','info'),(3006,'2018-05-26 11:45:24',1,'featured.php','fID=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3007,'2018-05-26 11:46:04',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3008,'2018-05-26 11:46:04',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3009,'2018-05-26 11:48:17',1,'configuration.php','gID=8','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3010,'2018-05-26 11:48:17',1,'configuration.php','gID=8','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3011,'2018-05-26 11:48:42',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3012,'2018-05-26 11:48:42',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3013,'2018-05-26 11:48:53',1,'configuration.php','gID=19&cID=405&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3014,'2018-05-26 11:48:53',1,'configuration.php','gID=19&cID=405&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3015,'2018-05-26 11:49:02',1,'configuration.php','gID=19&cID=405&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	wvqut\rww	u	s\r\0j14%^}%HR-\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(3016,'2018-05-26 11:49:02',1,'configuration.php','gID=19&cID=405&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	wvqut\rww	u	s\r\0j14%^}%HR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3017,'2018-05-26 11:49:02',1,'configuration.php','gID=19&cID=405&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	wvqut\rww	u	s\r\0j14%^}%HR-\0','Configuration setting changed for SHOW_CATEGORIES_BOX_PRODUCTS_NEW: false','warning'),(3018,'2018-05-26 11:49:03',1,'configuration.php','gID=19&cID=405','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3019,'2018-05-26 11:49:03',1,'configuration.php','gID=19&cID=405','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3020,'2018-05-26 11:50:40',1,'configuration.php','gID=24','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3021,'2018-05-26 11:50:41',1,'configuration.php','gID=24','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3022,'2018-05-26 11:50:48',1,'configuration.php','gID=24&cID=500&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3023,'2018-05-26 11:50:48',1,'configuration.php','gID=24&cID=500&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3024,'2018-05-26 11:50:54',1,'configuration.php','gID=24&cID=500&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3025,'2018-05-26 11:50:55',1,'configuration.php','gID=24&cID=500&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3026,'2018-05-26 11:50:58',1,'configuration.php','gID=24&cID=500&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3027,'2018-05-26 11:50:58',1,'configuration.php','gID=24&cID=500&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3028,'2018-05-26 11:51:10',1,'configuration.php','gID=24&cID=500&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	usus\W\0u\R\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(3029,'2018-05-26 11:51:11',1,'configuration.php','gID=24&cID=500&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	usus\W\0u\R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3030,'2018-05-26 11:51:11',1,'configuration.php','gID=24&cID=500&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	usus\W\0u\R\0','Configuration setting changed for SHOW_PRODUCT_INFO_MAIN_NEW_PRODUCTS: 0','warning'),(3031,'2018-05-26 11:51:11',1,'configuration.php','gID=24&cID=500','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3032,'2018-05-26 11:51:12',1,'configuration.php','gID=24&cID=500','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3033,'2018-05-26 11:51:26',1,'configuration.php','gID=24&cID=504&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3034,'2018-05-26 11:51:26',1,'configuration.php','gID=24&cID=504&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3035,'2018-05-26 11:51:31',1,'configuration.php','gID=24&cID=504&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	uswvqus\\W\0u\\H\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(3036,'2018-05-26 11:51:32',1,'configuration.php','gID=24&cID=504&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	uswvqus\\W\0u\\H\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3037,'2018-05-26 11:51:32',1,'configuration.php','gID=24&cID=504&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	uswvqus\\W\0u\\H\0','Configuration setting changed for SHOW_PRODUCT_INFO_CATEGORY_NEW_PRODUCTS: 0','warning'),(3038,'2018-05-26 11:51:32',1,'configuration.php','gID=24&cID=504','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3039,'2018-05-26 11:51:33',1,'configuration.php','gID=24&cID=504','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3040,'2018-05-26 11:52:09',1,'configuration.php','gID=24&cID=504','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3041,'2018-05-26 11:52:09',1,'configuration.php','gID=24&cID=504','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3042,'2018-05-26 11:53:23',1,'featured.php','','24.72.164.167',0,'',_binary '\0','Accessed page [featured.php]','info'),(3043,'2018-05-26 11:53:23',1,'featured.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3044,'2018-05-26 11:53:27',1,'featured.php','page=1&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [featured.php] with action=new. Review page_parameters and postdata for details.','info'),(3045,'2018-05-26 11:53:27',1,'featured.php','page=1&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3046,'2018-05-26 11:53:41',1,'featured.php','page=1&action=insert','24.72.164.167',0,'',_binary 'V*(\O)M.)\LQR26T\Ae&Eb\%E%fjHR-\0','Accessed page [featured.php] with action=insert. Review page_parameters and postdata for details.','info'),(3047,'2018-05-26 11:53:42',1,'featured.php','page=1&action=insert','24.72.164.167',1,'',_binary 'V*(\O)M.)\LQR26T\Ae&Eb\%E%fjHR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3048,'2018-05-26 11:53:42',1,'featured.php','page=1&fID=2','24.72.164.167',0,'',_binary '\0','Accessed page [featured.php]','info'),(3049,'2018-05-26 11:53:43',1,'featured.php','page=1&fID=2','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3050,'2018-05-26 11:53:52',1,'featured.php','page=1&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [featured.php] with action=new. Review page_parameters and postdata for details.','info'),(3051,'2018-05-26 11:53:53',1,'featured.php','page=1&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3052,'2018-05-26 11:54:10',1,'featured.php','page=1&action=insert','24.72.164.167',0,'',_binary 'V*(\O)M.)\LQR2P\Ae&Eb\%E%fjHR-\0','Accessed page [featured.php] with action=insert. Review page_parameters and postdata for details.','info'),(3053,'2018-05-26 11:54:10',1,'featured.php','page=1&action=insert','24.72.164.167',1,'',_binary 'V*(\O)M.)\LQR2P\Ae&Eb\%E%fjHR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3054,'2018-05-26 11:54:10',1,'featured.php','page=1&fID=3','24.72.164.167',0,'',_binary '\0','Accessed page [featured.php]','info'),(3055,'2018-05-26 11:54:11',1,'featured.php','page=1&fID=3','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3056,'2018-05-26 11:54:14',1,'featured.php','page=1&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [featured.php] with action=new. Review page_parameters and postdata for details.','info'),(3057,'2018-05-26 11:54:14',1,'featured.php','page=1&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3058,'2018-05-26 11:54:26',1,'featured.php','page=1&action=insert','24.72.164.167',0,'',_binary 'V*(\O)M.)\LQR26S\Ae&Eb\%E%fjHR-\0','Accessed page [featured.php] with action=insert. Review page_parameters and postdata for details.','info'),(3059,'2018-05-26 11:54:26',1,'featured.php','page=1&action=insert','24.72.164.167',1,'',_binary 'V*(\O)M.)\LQR26S\Ae&Eb\%E%fjHR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3060,'2018-05-26 11:54:27',1,'featured.php','page=1&fID=4','24.72.164.167',0,'',_binary '\0','Accessed page [featured.php]','info'),(3061,'2018-05-26 11:54:27',1,'featured.php','page=1&fID=4','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3062,'2018-05-26 11:54:31',1,'featured.php','page=1&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [featured.php] with action=new. Review page_parameters and postdata for details.','info'),(3063,'2018-05-26 11:54:31',1,'featured.php','page=1&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3064,'2018-05-26 11:54:41',1,'featured.php','page=1&action=insert','24.72.164.167',0,'',_binary 'V*(\O)M.)\LQR2P\Ae&Eb\%E%fjHR-\0','Accessed page [featured.php] with action=insert. Review page_parameters and postdata for details.','info'),(3065,'2018-05-26 11:54:41',1,'featured.php','page=1&action=insert','24.72.164.167',1,'',_binary 'V*(\O)M.)\LQR2P\Ae&Eb\%E%fjHR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3066,'2018-05-26 11:54:41',1,'featured.php','page=1&fID=5','24.72.164.167',0,'',_binary '\0','Accessed page [featured.php]','info'),(3067,'2018-05-26 11:54:42',1,'featured.php','page=1&fID=5','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3068,'2018-05-26 11:54:46',1,'featured.php','page=1&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [featured.php] with action=new. Review page_parameters and postdata for details.','info'),(3069,'2018-05-26 11:54:46',1,'featured.php','page=1&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3070,'2018-05-26 11:55:02',1,'featured.php','page=1&action=insert','24.72.164.167',0,'',_binary 'V*(\O)M.)\LQR2S\Ae&b\%E%fjHR-\0','Accessed page [featured.php] with action=insert. Review page_parameters and postdata for details.','info'),(3071,'2018-05-26 11:55:02',1,'featured.php','page=1&action=insert','24.72.164.167',1,'',_binary 'V*(\O)M.)\LQR2S\Ae&b\%E%fjHR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3072,'2018-05-26 11:55:02',1,'featured.php','page=1&fID=6','24.72.164.167',0,'',_binary '\0','Accessed page [featured.php]','info'),(3073,'2018-05-26 11:55:03',1,'featured.php','page=1&fID=6','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3074,'2018-05-26 11:55:06',1,'featured.php','page=1&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [featured.php] with action=new. Review page_parameters and postdata for details.','info'),(3075,'2018-05-26 11:55:06',1,'featured.php','page=1&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3076,'2018-05-26 11:55:21',1,'featured.php','page=1&action=insert','24.72.164.167',0,'',_binary 'V*(\O)M.)\LQR24V\Ae&Eb\%E%fjHR-\0','Accessed page [featured.php] with action=insert. Review page_parameters and postdata for details.','info'),(3077,'2018-05-26 11:55:21',1,'featured.php','page=1&action=insert','24.72.164.167',1,'',_binary 'V*(\O)M.)\LQR24V\Ae&Eb\%E%fjHR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3078,'2018-05-26 11:55:22',1,'featured.php','page=1&fID=7','24.72.164.167',0,'',_binary '\0','Accessed page [featured.php]','info'),(3079,'2018-05-26 11:55:22',1,'featured.php','page=1&fID=7','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3080,'2018-05-26 11:55:25',1,'featured.php','page=1&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [featured.php] with action=new. Review page_parameters and postdata for details.','info'),(3081,'2018-05-26 11:55:25',1,'featured.php','page=1&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3082,'2018-05-26 11:56:04',1,'featured.php','page=1&action=insert','24.72.164.167',0,'',_binary 'V*(\O)M.)\LQR25P\Ae&Eb\%E%fjHR-\0','Accessed page [featured.php] with action=insert. Review page_parameters and postdata for details.','info'),(3083,'2018-05-26 11:56:04',1,'featured.php','page=1&action=insert','24.72.164.167',1,'',_binary 'V*(\O)M.)\LQR25P\Ae&Eb\%E%fjHR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3084,'2018-05-26 11:56:04',1,'featured.php','page=1&fID=8','24.72.164.167',0,'',_binary '\0','Accessed page [featured.php]','info'),(3085,'2018-05-26 11:56:05',1,'featured.php','page=1&fID=8','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3086,'2018-05-26 11:56:08',1,'featured.php','page=1&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [featured.php] with action=new. Review page_parameters and postdata for details.','info'),(3087,'2018-05-26 11:56:08',1,'featured.php','page=1&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3088,'2018-05-26 11:56:20',1,'featured.php','page=1&action=insert','24.72.164.167',0,'',_binary 'V*(\O)M.)\LQR27U\Ae&Eb\%E%fjHR-\0','Accessed page [featured.php] with action=insert. Review page_parameters and postdata for details.','info'),(3089,'2018-05-26 11:56:21',1,'featured.php','page=1&action=insert','24.72.164.167',1,'',_binary 'V*(\O)M.)\LQR27U\Ae&Eb\%E%fjHR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3090,'2018-05-26 11:56:21',1,'featured.php','page=1&fID=9','24.72.164.167',0,'',_binary '\0','Accessed page [featured.php]','info'),(3091,'2018-05-26 11:56:21',1,'featured.php','page=1&fID=9','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3092,'2018-05-26 12:26:25',0,'login.php ','camefrom=developers_tool_kit.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(3093,'2018-05-26 12:26:26',0,'login.php ','camefrom=developers_tool_kit.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3094,'2018-05-26 12:27:45',0,'login.php Eagle','camefrom=developers_tool_kit.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJɷ45H4L016KJKKL604562K5152H5LT\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do950a1d8436bffac4815326e452698e1a. Review page_parameters and postdata for details.','info'),(3095,'2018-05-26 12:27:46',0,'login.php Eagle','camefrom=developers_tool_kit.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJɷ45H4L016KJKKL604562K5152H5LT\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3096,'2018-05-26 12:27:48',1,'developers_tool_kit.php','','24.72.164.167',0,'',_binary '\0','Accessed page [developers_tool_kit.php]','info'),(3097,'2018-05-26 12:27:49',1,'developers_tool_kit.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3098,'2018-05-26 12:28:12',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR*\\\\\M\\\U\Q*O\\I-\"qK*RBf@!%%9y`eJ\0','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(3099,'2018-05-26 12:28:12',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR*\\\\\M\\\U\Q*O\\I-\"qK*RBf@!%%9y`eJ\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3100,'2018-05-26 12:39:19',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(3101,'2018-05-26 12:39:20',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3102,'2018-05-26 12:39:41',1,'ezpages.php','reset_ez_sort_order=3&action=set_ez_sort_order','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=set_ez_sort_order. Review page_parameters and postdata for details.','info'),(3103,'2018-05-26 12:39:42',1,'ezpages.php','reset_ez_sort_order=3&action=set_ez_sort_order','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3104,'2018-05-26 12:39:44',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(3105,'2018-05-26 12:39:45',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3106,'2018-05-26 12:42:34',1,'flexible_footer_menu.php','','24.72.164.167',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(3107,'2018-05-26 12:42:35',1,'flexible_footer_menu.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3108,'2018-05-26 12:43:26',1,'flexible_footer_menu.php','bID=27','24.72.164.167',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(3109,'2018-05-26 12:43:26',1,'flexible_footer_menu.php','bID=27','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3110,'2018-05-26 12:43:28',1,'flexible_footer_menu.php','bID=27&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [flexible_footer_menu.php] with action=new. Review page_parameters and postdata for details.','info'),(3111,'2018-05-26 12:43:29',1,'flexible_footer_menu.php','bID=27&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3112,'2018-05-26 12:44:16',1,'flexible_footer_menu.php','bID=27','24.72.164.167',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(3113,'2018-05-26 12:44:17',1,'flexible_footer_menu.php','bID=27','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3114,'2018-05-26 15:11:08',0,'login.php ','camefrom=categories.php','174.235.151.47',0,'',_binary '\0','Accessed page [login.php]','info'),(3115,'2018-05-26 15:11:09',0,'login.php ','camefrom=categories.php','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3116,'2018-05-26 15:11:27',0,'login.php Eagle','camefrom=categories.php','174.235.151.47',0,'',_binary 'VJL.\\\SRJ\700H0IH4514J2IL40OI6761S\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do68048b84c98e9954792b4f9a07dc7346. Review page_parameters and postdata for details.','info'),(3117,'2018-05-26 15:11:27',0,'login.php Eagle','camefrom=categories.php','174.235.151.47',1,'',_binary 'VJL.\\\SRJ\700H0IH4514J2IL40OI6761S\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3118,'2018-05-26 15:11:28',1,'categories.php','','174.235.151.47',0,'',_binary '\0','Accessed page [categories.php]','info'),(3119,'2018-05-26 15:11:28',1,'categories.php','','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3120,'2018-05-26 15:11:43',1,'categories.php','cPath=3','174.235.151.47',0,'',_binary '\0','Accessed page [categories.php]','info'),(3121,'2018-05-26 15:11:44',1,'categories.php','cPath=3','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3122,'2018-05-26 15:11:48',1,'product.php','page=1&product_type=1&cPath=3&pID=37&action=new_product','174.235.151.47',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3123,'2018-05-26 15:11:49',1,'product.php','page=1&product_type=1&cPath=3&pID=37&action=new_product','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3124,'2018-05-26 15:24:29',1,'product.php','cPath=3&product_type=1&pID=37&action=new_product_preview&page=1','174.235.151.47',0,'',_binary 'Wmo\6+?\\eip]w4A\} @8I\V\"5\\{9/mUxw|\玗oҚJ32,Y\w2\\`ZL&go&g\^W\\),\\*\b\ƯpF\T\\~_J_<W\-JR;cq\&Oc\\8Or|z;\ߒ\)\\\0XW+J}emv]408gx=~;Bڵ\\^\\jXZҮPį\ob ݪ-\Q\!pr矦\\f\\>&\J*6OqkRx\S5kkkL[e}ES\h_\*K׏\\\\\\?\\"\L͠B\\\zlA?Qi\݋Q\nu{,	\RJ~Z樂\_\?˛\\r&no\\Ws1\54W\\\̦˛;~Z\\_.\^D6\8\\GHd\lji\B\(QZ,yEj2^\nG#0!\!+\r!\@:Rk\\h\	p|r*~CLN&\7\\\R\b\\M\Y19y;\Llk\>SyA\N8fF{krqm@\h|oy\\\^_\X3\m/Ϣ{5=HJN-\6\Z\\FU\\\4\dB)ez\BxDwq[R\\)b<-\F\*\'Py\M\JCyN|\4TI\-u9\J^\p\r\d\F\\P!J\^SrPx:\0\\\Ʌ\\rCP#\h\\\~ԍ\}t\\\2\0#_%\\JR\P$\,UnX2L\H%\N\Z\̅2C^+F%c\0#t\0__\BS\2PJ\"7U&)y\otp\\H7L\\l	\7;w\0\́g\\\\\d{#h2\n\UهVTb\r\'!Ӎ6Y\)R\H\~0CF	;rGXI\g\re\Bb!jY\8h(ّS\Z3p\Uy(\e\\R\\p\1Bf&,|C/њX0\m\DR\8\ \\Z\xh.0@\\1O&ߝ\5\)\T\\n\\Z6jkmU\0kj\\G\JqgiIZ\$\\0\\{@\US\'InjMU4:Յ;5n^\\\r\n	b*ٶ\t\\nQx\%mC˵ўT8E\(\Ǻ%li-;YOVp`W\]*\Z<?PMm}xm\``\𜩵b\\?}?}8Jc	ol\sۯ\\\n\E4ZL\\e-\sq6k\%7kޒ\\ZSg|\r\\]p\nɼ\/rL52IaD%\'\\\\Z\Xc-f,6Ҭc\\\\n\G\Um[\^]ټݷ~!^0I\A\0\\I\xd\\\0h^qv\?','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3125,'2018-05-26 15:24:30',1,'product.php','cPath=3&product_type=1&pID=37&action=new_product_preview&page=1','174.235.151.47',1,'',_binary 'Wmo\6+?\\eip]w4A\} @8I\V\"5\\{9/mUxw|\玗oҚJ32,Y\w2\\`ZL&go&g\^W\\),\\*\b\ƯpF\T\\~_J_<W\-JR;cq\&Oc\\8Or|z;\ߒ\)\\\0XW+J}emv]408gx=~;Bڵ\\^\\jXZҮPį\ob ݪ-\Q\!pr矦\\f\\>&\J*6OqkRx\S5kkkL[e}ES\h_\*K׏\\\\\\?\\"\L͠B\\\zlA?Qi\݋Q\nu{,	\RJ~Z樂\_\?˛\\r&no\\Ws1\54W\\\̦˛;~Z\\_.\^D6\8\\GHd\lji\B\(QZ,yEj2^\nG#0!\!+\r!\@:Rk\\h\	p|r*~CLN&\7\\\R\b\\M\Y19y;\Llk\>SyA\N8fF{krqm@\h|oy\\\^_\X3\m/Ϣ{5=HJN-\6\Z\\FU\\\4\dB)ez\BxDwq[R\\)b<-\F\*\'Py\M\JCyN|\4TI\-u9\J^\p\r\d\F\\P!J\^SrPx:\0\\\Ʌ\\rCP#\h\\\~ԍ\}t\\\2\0#_%\\JR\P$\,UnX2L\H%\N\Z\̅2C^+F%c\0#t\0__\BS\2PJ\"7U&)y\otp\\H7L\\l	\7;w\0\́g\\\\\d{#h2\n\UهVTb\r\'!Ӎ6Y\)R\H\~0CF	;rGXI\g\re\Bb!jY\8h(ّS\Z3p\Uy(\e\\R\\p\1Bf&,|C/њX0\m\DR\8\ \\Z\xh.0@\\1O&ߝ\5\)\T\\n\\Z6jkmU\0kj\\G\JqgiIZ\$\\0\\{@\US\'InjMU4:Յ;5n^\\\r\n	b*ٶ\t\\nQx\%mC˵ўT8E\(\Ǻ%li-;YOVp`W\]*\Z<?PMm}xm\``\𜩵b\\?}?}8Jc	ol\sۯ\\\n\E4ZL\\e-\sq6k\%7kޒ\\ZSg|\r\\]p\nɼ\/rL52IaD%\'\\\\Z\Xc-f,6Ҭc\\\\n\G\Um[\^]ټݷ~!^0I\A\0\\I\xd\\\0h^qv\?','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3126,'2018-05-26 15:25:20',1,'product.php','cPath=3&product_type=1&pID=37&action=update_product&page=1','174.235.151.47',0,'',_binary 'Vo\6W0l?Ӵk,\[	b\D\l%R#);n\}\(ɑ\hP\\\WZUwqF^Ɣe2\NƓ`<LN\drzr6>\{9/m\"rm.V\nKiKM}\\\\\xeM8*3amd8\O7\y\գ\TNI\\'ZQ\++maK \G )\8\\\UI\T\\>Nsr\IOTP]\\Z皐\\VY_Q&\;\\5\n\R\\s81VB-~\\\IJ+\^\R\gWC\݅\d랿\\\1irLZ32ID\j\'\\\\Z\X\u>D\\)♭;\:\r\.\Zo<w\/\ښ\pB1/]K\ŕAO++ů\71\nՖ6kz\RJ~?\Ư\\\ty97w\\_\\+nf\\͝X\M?-/\\yb/\"iw^^\\\#X:\)ZZ3J7\\"5E\\\nǨ(\7Bޣ\nv0\Rk\\\ьx8>y+~CLN&\\\\\R\"b\\Mcrf(%\\\n\0+\'\yĝ,p̌\\\\\ϣ\\򢭯`8\'rg\\x_E#\ՈHJN-6\Z\\QFU\\\4\h2FAaY\$\'%\]\\B\\3@!\Ӣ\ [nxPV9\\Z7+\sb\CxDA,&R*/\\n\*r\GJ^cA8&\jƤ\ݭFAPH8\k$)\\!%\%g3\nl=}0Cp#\l\\\~ҍ\yt\\\2\0#%\\JR\P$\,Un\2L\X-Û4֙eeV\\\Q^\r\||r?MQR2H\cZxk^\?.tCt̖\0~s\0\x\1lmL&\:72\p*a߃]}hM(\8-w\\Z2\h_{\"\΀T\cA;TF.1+I|s\0A\rAeJ.\rafs\\nc%|obC[)JW\A\I.i\\\!\c\Lx\\rDkb\AK\\ZB&BkXR\6\0\J6s\\>\\BBM>;/zKD\n\#nl:E\\ު\1aqa\\\:1\(%id_mO4\\5:Ir\0]k:ѩ.\ \Ѹ>Wވ(S}˽v\d\i.iZ\\\|5l\Ʃ,S\f\\\J\0\Fv:&\ҁ^{4; k	\@\7J\nZ}xb\Tkx\\Z\r\Є\ޟ\>\8J\\\\}\_\\2Y\N\h1[L!\\٬\IzK֋ט\1\\\\o\vBt\|\\(\\','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3127,'2018-05-26 15:25:20',1,'product.php','cPath=3&product_type=1&pID=37&action=update_product&page=1','174.235.151.47',1,'',_binary 'Vo\6W0l?Ӵk,\[	b\D\l%R#);n\}\(ɑ\hP\\\WZUwqF^Ɣe2\NƓ`<LN\drzr6>\{9/m\"rm.V\nKiKM}\\\\\xeM8*3amd8\O7\y\գ\TNI\\'ZQ\++maK \G )\8\\\UI\T\\>Nsr\IOTP]\\Z皐\\VY_Q&\;\\5\n\R\\s81VB-~\\\IJ+\^\R\gWC\݅\d랿\\\1irLZ32ID\j\'\\\\Z\X\u>D\\)♭;\:\r\.\Zo<w\/\ښ\pB1/]K\ŕAO++ů\71\nՖ6kz\RJ~?\Ư\\\ty97w\\_\\+nf\\͝X\M?-/\\yb/\"iw^^\\\#X:\)ZZ3J7\\"5E\\\nǨ(\7Bޣ\nv0\Rk\\\ьx8>y+~CLN&\\\\\R\"b\\Mcrf(%\\\n\0+\'\yĝ,p̌\\\\\ϣ\\򢭯`8\'rg\\x_E#\ՈHJN-6\Z\\QFU\\\4\h2FAaY\$\'%\]\\B\\3@!\Ӣ\ [nxPV9\\Z7+\sb\CxDA,&R*/\\n\*r\GJ^cA8&\jƤ\ݭFAPH8\k$)\\!%\%g3\nl=}0Cp#\l\\\~ҍ\yt\\\2\0#%\\JR\P$\,Un\2L\X-Û4֙eeV\\\Q^\r\||r?MQR2H\cZxk^\?.tCt̖\0~s\0\x\1lmL&\:72\p*a߃]}hM(\8-w\\Z2\h_{\"\΀T\cA;TF.1+I|s\0A\rAeJ.\rafs\\nc%|obC[)JW\A\I.i\\\!\c\Lx\\rDkb\AK\\ZB&BkXR\6\0\J6s\\>\\BBM>;/zKD\n\#nl:E\\ު\1aqa\\\:1\(%id_mO4\\5:Ir\0]k:ѩ.\ \Ѹ>Wވ(S}˽v\d\i.iZ\\\|5l\Ʃ,S\f\\\J\0\Fv:&\ҁ^{4; k	\@\7J\nZ}xb\Tkx\\Z\r\Є\ޟ\>\8J\\\\}\_\\2Y\N\h1[L!\\٬\IzK֋ט\1\\\\o\vBt\|\\(\\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3128,'2018-05-26 15:25:20',1,'product.php','cPath=3&product_type=1&pID=37&action=update_product&page=1','174.235.151.47',0,'',_binary 'Vo\6W0l?Ӵk,\[	b\D\l%R#);n\}\(ɑ\hP\\\WZUwqF^Ɣe2\NƓ`<LN\drzr6>\{9/m\"rm.V\nKiKM}\\\\\xeM8*3amd8\O7\y\գ\TNI\\'ZQ\++maK \G )\8\\\UI\T\\>Nsr\IOTP]\\Z皐\\VY_Q&\;\\5\n\R\\s81VB-~\\\IJ+\^\R\gWC\݅\d랿\\\1irLZ32ID\j\'\\\\Z\X\u>D\\)♭;\:\r\.\Zo<w\/\ښ\pB1/]K\ŕAO++ů\71\nՖ6kz\RJ~?\Ư\\\ty97w\\_\\+nf\\͝X\M?-/\\yb/\"iw^^\\\#X:\)ZZ3J7\\"5E\\\nǨ(\7Bޣ\nv0\Rk\\\ьx8>y+~CLN&\\\\\R\"b\\Mcrf(%\\\n\0+\'\yĝ,p̌\\\\\ϣ\\򢭯`8\'rg\\x_E#\ՈHJN-6\Z\\QFU\\\4\h2FAaY\$\'%\]\\B\\3@!\Ӣ\ [nxPV9\\Z7+\sb\CxDA,&R*/\\n\*r\GJ^cA8&\jƤ\ݭFAPH8\k$)\\!%\%g3\nl=}0Cp#\l\\\~ҍ\yt\\\2\0#%\\JR\P$\,Un\2L\X-Û4֙eeV\\\Q^\r\||r?MQR2H\cZxk^\?.tCt̖\0~s\0\x\1lmL&\:72\p*a߃]}hM(\8-w\\Z2\h_{\"\΀T\cA;TF.1+I|s\0A\rAeJ.\rafs\\nc%|obC[)JW\A\I.i\\\!\c\Lx\\rDkb\AK\\ZB&BkXR\6\0\J6s\\>\\BBM>;/zKD\n\#nl:E\\ު\1aqa\\\:1\(%id_mO4\\5:Ir\0]k:ѩ.\ \Ѹ>Wވ(S}˽v\d\i.iZ\\\|5l\Ʃ,S\f\\\J\0\Fv:&\ҁ^{4; k	\@\7J\nZ}xb\Tkx\\Z\r\Є\ޟ\>\8J\\\\}\_\\2Y\N\h1[L!\\٬\IzK֋ט\1\\\\o\vBt\|\\(\\','Updated product 37 via admin console.','info'),(3129,'2018-05-26 15:25:22',1,'categories.php','cPath=3&pID=37&page=1','174.235.151.47',0,'',_binary '\0','Accessed page [categories.php]','info'),(3130,'2018-05-26 15:25:23',1,'categories.php','cPath=3&pID=37&page=1','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3131,'2018-05-26 15:30:13',1,'configuration.php','gID=19','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3132,'2018-05-26 15:30:14',1,'configuration.php','gID=19','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3133,'2018-05-26 15:30:36',1,'configuration.php','gID=19&cID=427&action=edit','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3134,'2018-05-26 15:30:36',1,'configuration.php','gID=19&cID=427&action=edit','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3135,'2018-05-26 15:30:38',1,'configuration.php','gID=19&cID=398&action=edit','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3136,'2018-05-26 15:30:39',1,'configuration.php','gID=19&cID=398&action=edit','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3137,'2018-05-26 15:30:50',1,'configuration.php','gID=19&cID=427&action=edit','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3138,'2018-05-26 15:30:50',1,'configuration.php','gID=19&cID=427&action=edit','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3139,'2018-05-26 15:31:06',1,'configuration.php','gID=19&cID=427','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3140,'2018-05-26 15:31:07',1,'configuration.php','gID=19&cID=427','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3141,'2018-05-26 15:31:30',1,'layout_controller.php','','174.235.151.47',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(3142,'2018-05-26 15:31:31',1,'layout_controller.php','','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3143,'2018-05-26 15:31:47',1,'banner_manager.php','','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3144,'2018-05-26 15:31:48',1,'banner_manager.php','','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3145,'2018-05-26 15:41:45',0,'login.php ','camefrom=configuration.php&gID=19','174.235.151.47',0,'',_binary '\0','Accessed page [login.php]','info'),(3146,'2018-05-26 15:41:45',0,'login.php ','camefrom=configuration.php&gID=19','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3147,'2018-05-26 15:42:02',0,'login.php Eagle','camefrom=configuration.php&gID=19','174.235.151.47',0,'',_binary 'VJL.\\\SRJɷ4J511L14710M5NJ1J2020O44022U\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do92e441d397405e3bd2b0207b92938225. Review page_parameters and postdata for details.','info'),(3148,'2018-05-26 15:42:02',0,'login.php Eagle','camefrom=configuration.php&gID=19','174.235.151.47',1,'',_binary 'VJL.\\\SRJɷ4J511L14710M5NJ1J2020O44022U\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3149,'2018-05-26 15:42:03',1,'configuration.php','gID=19','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3150,'2018-05-26 15:42:03',1,'configuration.php','gID=19','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3151,'2018-05-26 15:46:16',1,'configuration.php','gID=19&cID=427&action=edit','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3152,'2018-05-26 15:46:16',1,'configuration.php','gID=19&cID=427&action=edit','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3153,'2018-05-26 15:46:25',1,'configuration.php','gID=19&cID=427&action=save','174.235.151.47',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*22\'\T\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(3154,'2018-05-26 15:46:26',1,'configuration.php','gID=19&cID=427&action=save','174.235.151.47',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*22\'\T\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3155,'2018-05-26 15:46:26',1,'configuration.php','gID=19&cID=427&action=save','174.235.151.47',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*22\'\T\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET2: ','warning'),(3156,'2018-05-26 15:46:26',1,'configuration.php','gID=19&cID=427','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3157,'2018-05-26 15:46:27',1,'configuration.php','gID=19&cID=427','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3158,'2018-05-26 15:47:00',1,'banner_manager.php','','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3159,'2018-05-26 15:47:00',1,'banner_manager.php','','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3160,'2018-05-26 15:47:11',1,'banner_manager.php','action=new','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(3161,'2018-05-26 15:47:11',1,'banner_manager.php','action=new','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3162,'2018-05-26 15:49:08',1,'banner_manager.php','action=add','174.235.151.47',0,'',_binary 'ej1@\s$k1 Գrg\\Fq \\k\\d\3H~85\\n\~0F)B\n5Dꛎ\h\Z|/+\\Y>]\}u@D7cZV$\\\\MAHz8\Cw\P&\l\}5AO\W>4\\t\&鞃BwIXr;4\?\=','Accessed page [banner_manager.php] with action=add. Review page_parameters and postdata for details.','info'),(3163,'2018-05-26 15:49:08',1,'banner_manager.php','action=add','174.235.151.47',1,'',_binary 'ej1@\s$k1 Գrg\\Fq \\k\\d\3H~85\\n\~0F)B\n5Dꛎ\h\Z|/+\\Y>]\}u@D7cZV$\\\\MAHz8\Cw\P&\l\}5AO\W>4\\t\&鞃BwIXr;4\?\=','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3164,'2018-05-26 15:49:08',1,'banner_manager.php','bID=15','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3165,'2018-05-26 15:49:09',1,'banner_manager.php','bID=15','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3166,'2018-05-26 15:49:58',1,'configuration.php','gID=19','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3167,'2018-05-26 15:49:59',1,'configuration.php','gID=19','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3168,'2018-05-26 15:50:07',1,'configuration.php','gID=19&cID=427&action=edit','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3169,'2018-05-26 15:50:08',1,'configuration.php','gID=19&cID=427&action=edit','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3170,'2018-05-26 15:50:19',1,'configuration.php','gID=19&cID=427&action=save','174.235.151.47',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n.-*(\W\Q*.M\\,	wrs\r\nw\rv\r1\0*56 \\@\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(3171,'2018-05-26 15:50:19',1,'configuration.php','gID=19&cID=427&action=save','174.235.151.47',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n.-*(\W\Q*.M\\,	wrs\r\nw\rv\r1\0*56 \\@\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3172,'2018-05-26 15:50:19',1,'configuration.php','gID=19&cID=427&action=save','174.235.151.47',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n.-*(\W\Q*.M\\,	wrs\r\nw\rv\r1\0*56 \\@\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET2: Surpro','warning'),(3173,'2018-05-26 15:50:19',1,'configuration.php','gID=19&cID=427','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3174,'2018-05-26 15:50:20',1,'configuration.php','gID=19&cID=427','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3175,'2018-05-26 22:16:09',0,'login.php ','camefrom=banner_manager.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(3176,'2018-05-26 22:16:11',0,'login.php ','camefrom=banner_manager.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3177,'2018-05-26 22:16:30',0,'login.php Eagle','camefrom=banner_manager.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\74HHK5H354J205414566K0560O4Q\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do690b8fe68f512b0514595336b85307a4. Review page_parameters and postdata for details.','info'),(3178,'2018-05-26 22:16:31',0,'login.php Eagle','camefrom=banner_manager.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\74HHK5H354J205414566K0560O4Q\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3179,'2018-05-26 22:16:32',1,'banner_manager.php','','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3180,'2018-05-26 22:16:32',1,'banner_manager.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3181,'2018-05-26 22:17:12',1,'banner_manager.php','page=1&bID=15','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3182,'2018-05-26 22:17:13',1,'banner_manager.php','page=1&bID=15','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3183,'2018-05-26 22:17:13',1,'banner_manager.php','page=1&bID=15','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3184,'2018-05-26 22:17:13',1,'banner_manager.php','page=1&bID=15','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3185,'2018-05-26 22:17:16',1,'banner_manager.php','page=1&bID=15&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(3186,'2018-05-26 22:17:16',1,'banner_manager.php','page=1&bID=15&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3187,'2018-05-26 22:17:39',1,'banner_manager.php','page=1&action=upd','24.72.164.167',0,'',_binary 'e=k1@\rI.ٻ1 ԳrgYFq\Ǧ-\\.\{oLD!xwtO\\Њ\r3%HT乾\q-X\._\\\n\\l\\uWk1	\LU=	\s,\D\V\Dy\w4\hE\0\42\1\\\b\IC\x4g%鞃Bw$,-\Z8\s\'','Accessed page [banner_manager.php] with action=upd. Review page_parameters and postdata for details.','info'),(3188,'2018-05-26 22:17:40',1,'banner_manager.php','page=1&action=upd','24.72.164.167',1,'',_binary 'e=k1@\rI.ٻ1 ԳrgYFq\Ǧ-\\.\{oLD!xwtO\\Њ\r3%HT乾\q-X\._\\\n\\l\\uWk1	\LU=	\s,\D\V\Dy\w4\hE\0\42\1\\\b\IC\x4g%鞃Bw$,-\Z8\s\'','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3189,'2018-05-26 22:17:41',1,'banner_manager.php','page=1&bID=15','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3190,'2018-05-26 22:17:41',1,'banner_manager.php','page=1&bID=15','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3191,'2018-05-26 22:17:48',1,'banner_manager.php','action=new','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php] with action=new. Review page_parameters and postdata for details.','info'),(3192,'2018-05-26 22:17:48',1,'banner_manager.php','action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3193,'2018-05-26 22:18:49',1,'banner_manager.php','action=add','24.72.164.167',0,'',_binary 'm\n\0ߥgQ\k\QqͶBה$\v\MO\?y;5\\\\\gJB\r\s\	T\ZH\I\\E\r4\\\\q1{\c\ӪKnHnb^>L8D\02m\hS\+\'YG#\n$_\"\+!\mIr;\Z8\\r/','Accessed page [banner_manager.php] with action=add. Review page_parameters and postdata for details.','info'),(3194,'2018-05-26 22:18:50',1,'banner_manager.php','action=add','24.72.164.167',1,'',_binary 'm\n\0ߥgQ\k\QqͶBה$\v\MO\?y;5\\\\\gJB\r\s\	T\ZH\I\\E\r4\\\\q1{\c\ӪKnHnb^>L8D\02m\hS\+\'YG#\n$_\"\+!\mIr;\Z8\\r/','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3195,'2018-05-26 22:18:50',1,'banner_manager.php','action=add','24.72.164.167',1,'',_binary 'm\n\0ߥgQ\k\QqͶBה$\v\MO\?y;5\\\\\gJB\r\s\	T\ZH\I\\E\r4\\\\q1{\c\ӪKnHnb^>L8D\02m\hS\+\'YG#\n$_\"\+!\mIr;\Z8\\r/','Success: File upload saved successfully Test2.png','notice'),(3196,'2018-05-26 22:18:52',1,'banner_manager.php','bID=16','24.72.164.167',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3197,'2018-05-26 22:18:52',1,'banner_manager.php','bID=16','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3198,'2018-05-26 22:19:10',1,'configuration.php','gID=19','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3199,'2018-05-26 22:19:10',1,'configuration.php','gID=19','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3200,'2018-05-26 22:24:25',1,'banner_manager.php','','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3201,'2018-05-26 22:24:25',1,'banner_manager.php','','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3202,'2018-05-26 22:24:34',1,'banner_manager.php','page=1&bID=9&action=setflag&flag=0','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3203,'2018-05-26 22:24:34',1,'banner_manager.php','page=1&bID=9&action=setflag&flag=0','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3204,'2018-05-26 22:24:35',1,'banner_manager.php','page=1&bID=9','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3205,'2018-05-26 22:24:35',1,'banner_manager.php','page=1&bID=9','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3206,'2018-05-26 22:24:38',1,'banner_manager.php','page=1&bID=8&action=setflag&flag=0','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3207,'2018-05-26 22:24:39',1,'banner_manager.php','page=1&bID=8&action=setflag&flag=0','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3208,'2018-05-26 22:24:39',1,'banner_manager.php','page=1&bID=8','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3209,'2018-05-26 22:24:39',1,'banner_manager.php','page=1&bID=8','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3210,'2018-05-26 22:24:41',1,'banner_manager.php','page=1&bID=7','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3211,'2018-05-26 22:24:41',1,'banner_manager.php','page=1&bID=7&action=setflag&flag=0','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3212,'2018-05-26 22:24:42',1,'banner_manager.php','page=1&bID=7','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3213,'2018-05-26 22:24:42',1,'banner_manager.php','page=1&bID=7&action=setflag&flag=0','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3214,'2018-05-26 22:24:42',1,'banner_manager.php','page=1&bID=7','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3215,'2018-05-26 22:24:42',1,'banner_manager.php','page=1&bID=7','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3216,'2018-05-26 22:24:44',1,'banner_manager.php','page=1&bID=13','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3217,'2018-05-26 22:24:44',1,'banner_manager.php','page=1&bID=13&action=setflag&flag=0','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3218,'2018-05-26 22:24:44',1,'banner_manager.php','page=1&bID=13&action=setflag&flag=0','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3219,'2018-05-26 22:24:44',1,'banner_manager.php','page=1&bID=13','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3220,'2018-05-26 22:24:45',1,'banner_manager.php','page=1&bID=13','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3221,'2018-05-26 22:24:45',1,'banner_manager.php','page=1&bID=13','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3222,'2018-05-26 22:24:47',1,'banner_manager.php','page=1&bID=12&action=setflag&flag=1','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3223,'2018-05-26 22:24:47',1,'banner_manager.php','page=1&bID=12','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3224,'2018-05-26 22:24:47',1,'banner_manager.php','page=1&bID=12&action=setflag&flag=1','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3225,'2018-05-26 22:24:47',1,'banner_manager.php','page=1&bID=12','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3226,'2018-05-26 22:24:47',1,'banner_manager.php','page=1&bID=12','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3227,'2018-05-26 22:24:48',1,'banner_manager.php','page=1&bID=12','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3228,'2018-05-26 22:24:50',1,'banner_manager.php','page=1&bID=10&action=setflag&flag=0','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3229,'2018-05-26 22:24:50',1,'banner_manager.php','page=1&bID=10&action=setflag&flag=0','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3230,'2018-05-26 22:24:50',1,'banner_manager.php','page=1&bID=10','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3231,'2018-05-26 22:24:51',1,'banner_manager.php','page=1&bID=10','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3232,'2018-05-26 22:24:53',1,'banner_manager.php','page=1&bID=7','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3233,'2018-05-26 22:24:53',1,'banner_manager.php','page=1&bID=7&action=setflag&flag=1','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3234,'2018-05-26 22:24:53',1,'banner_manager.php','page=1&bID=7','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3235,'2018-05-26 22:24:53',1,'banner_manager.php','page=1&bID=7&action=setflag&flag=1','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3236,'2018-05-26 22:24:53',1,'banner_manager.php','page=1&bID=7','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3237,'2018-05-26 22:24:54',1,'banner_manager.php','page=1&bID=7','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3238,'2018-05-26 22:24:57',1,'banner_manager.php','page=1&bID=7&action=setflag&flag=0','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3239,'2018-05-26 22:24:57',1,'banner_manager.php','page=1&bID=7&action=setflag&flag=0','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3240,'2018-05-26 22:24:58',1,'banner_manager.php','page=1&bID=7','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3241,'2018-05-26 22:24:58',1,'banner_manager.php','page=1&bID=7','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3242,'2018-05-26 22:25:01',1,'banner_manager.php','page=1&bID=10','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3243,'2018-05-26 22:25:01',1,'banner_manager.php','page=1&bID=10','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3244,'2018-05-26 22:25:04',1,'banner_manager.php','page=1&bID=11','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3245,'2018-05-26 22:25:05',1,'banner_manager.php','page=1&bID=11&action=setflag&flag=0','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3246,'2018-05-26 22:25:05',1,'banner_manager.php','page=1&bID=11','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3247,'2018-05-26 22:25:05',1,'banner_manager.php','page=1&bID=11&action=setflag&flag=0','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3248,'2018-05-26 22:25:05',1,'banner_manager.php','page=1&bID=11','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3249,'2018-05-26 22:25:06',1,'banner_manager.php','page=1&bID=11','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3250,'2018-05-26 22:25:08',1,'banner_manager.php','page=1&bID=14','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3251,'2018-05-26 22:25:08',1,'banner_manager.php','page=1&bID=14&action=setflag&flag=0','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3252,'2018-05-26 22:25:09',1,'banner_manager.php','page=1&bID=14&action=setflag&flag=0','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3253,'2018-05-26 22:25:09',1,'banner_manager.php','page=1&bID=14','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3254,'2018-05-26 22:25:09',1,'banner_manager.php','page=1&bID=14','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3255,'2018-05-26 22:25:10',1,'banner_manager.php','page=1&bID=14','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3256,'2018-05-26 22:25:12',1,'banner_manager.php','page=1&bID=12','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3257,'2018-05-26 22:25:12',1,'banner_manager.php','page=1&bID=12&action=setflag&flag=0','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3258,'2018-05-26 22:25:12',1,'banner_manager.php','page=1&bID=12','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3259,'2018-05-26 22:25:12',1,'banner_manager.php','page=1&bID=12&action=setflag&flag=0','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3260,'2018-05-26 22:25:13',1,'banner_manager.php','page=1&bID=12','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3261,'2018-05-26 22:25:13',1,'banner_manager.php','page=1&bID=12','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3262,'2018-05-26 22:25:15',1,'banner_manager.php','page=1&bID=4&action=setflag&flag=0','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3263,'2018-05-26 22:25:16',1,'banner_manager.php','page=1&bID=4','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3264,'2018-05-26 22:25:16',1,'banner_manager.php','page=1&bID=4&action=setflag&flag=0','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3265,'2018-05-26 22:25:16',1,'banner_manager.php','page=1&bID=4','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3266,'2018-05-26 22:25:16',1,'banner_manager.php','page=1&bID=4','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3267,'2018-05-26 22:25:17',1,'banner_manager.php','page=1&bID=4','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3268,'2018-05-26 22:25:21',1,'banner_manager.php','page=1&bID=6&action=setflag&flag=0','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3269,'2018-05-26 22:25:21',1,'banner_manager.php','page=1&bID=6&action=setflag&flag=0','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3270,'2018-05-26 22:25:22',1,'banner_manager.php','page=1&bID=6','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3271,'2018-05-26 22:25:22',1,'banner_manager.php','page=1&bID=6','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3272,'2018-05-26 22:25:25',1,'banner_manager.php','page=1&bID=15','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3273,'2018-05-26 22:25:25',1,'banner_manager.php','page=1&bID=15&action=setflag&flag=0','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3274,'2018-05-26 22:25:25',1,'banner_manager.php','page=1&bID=15','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3275,'2018-05-26 22:25:25',1,'banner_manager.php','page=1&bID=15&action=setflag&flag=0','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3276,'2018-05-26 22:25:26',1,'banner_manager.php','page=1&bID=15','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3277,'2018-05-26 22:25:26',1,'banner_manager.php','page=1&bID=15','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3278,'2018-05-26 22:25:28',1,'banner_manager.php','page=1&bID=16&action=setflag&flag=0','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3279,'2018-05-26 22:25:28',1,'banner_manager.php','page=1&bID=16','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3280,'2018-05-26 22:25:29',1,'banner_manager.php','page=1&bID=16&action=setflag&flag=0','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3281,'2018-05-26 22:25:29',1,'banner_manager.php','page=1&bID=16','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3282,'2018-05-26 22:25:29',1,'banner_manager.php','page=1&bID=16','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3283,'2018-05-26 22:25:29',1,'banner_manager.php','page=1&bID=16','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3284,'2018-05-26 22:25:35',1,'banner_manager.php','page=1&bID=1&action=setflag&flag=0','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3285,'2018-05-26 22:25:35',1,'banner_manager.php','page=1&bID=1','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3286,'2018-05-26 22:25:36',1,'banner_manager.php','page=1&bID=1&action=setflag&flag=0','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3287,'2018-05-26 22:25:36',1,'banner_manager.php','page=1&bID=1','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3288,'2018-05-26 22:25:36',1,'banner_manager.php','page=1&bID=1','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3289,'2018-05-26 22:25:37',1,'banner_manager.php','page=1&bID=1','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3290,'2018-05-26 22:25:40',1,'banner_manager.php','page=1&bID=5&action=setflag&flag=0','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3291,'2018-05-26 22:25:40',1,'banner_manager.php','page=1&bID=5&action=setflag&flag=0','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3292,'2018-05-26 22:25:41',1,'banner_manager.php','page=1&bID=5','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3293,'2018-05-26 22:25:41',1,'banner_manager.php','page=1&bID=5','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3294,'2018-05-26 22:25:44',1,'banner_manager.php','page=1&bID=15&action=setflag&flag=1','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3295,'2018-05-26 22:25:44',1,'banner_manager.php','page=1&bID=15&action=setflag&flag=1','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3296,'2018-05-26 22:25:45',1,'banner_manager.php','page=1&bID=15','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3297,'2018-05-26 22:25:45',1,'banner_manager.php','page=1&bID=15','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3298,'2018-05-26 22:25:48',1,'banner_manager.php','page=1&bID=16&action=setflag&flag=1','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3299,'2018-05-26 22:25:48',1,'banner_manager.php','page=1&bID=16','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3300,'2018-05-26 22:25:48',1,'banner_manager.php','page=1&bID=16&action=setflag&flag=1','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3301,'2018-05-26 22:25:48',1,'banner_manager.php','page=1&bID=16','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3302,'2018-05-26 22:25:49',1,'banner_manager.php','page=1&bID=16','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3303,'2018-05-26 22:25:49',1,'banner_manager.php','page=1&bID=16','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3304,'2018-05-26 22:26:00',1,'banner_manager.php','page=1&bID=16','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3305,'2018-05-26 22:26:00',1,'banner_manager.php','page=1&bID=16','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3306,'2018-05-26 22:31:20',1,'configuration.php','gID=19','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3307,'2018-05-26 22:31:21',1,'configuration.php','gID=19','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3308,'2018-05-26 22:31:31',1,'configuration.php','gID=19&cID=427&action=edit','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3309,'2018-05-26 22:31:32',1,'configuration.php','gID=19&cID=427&action=edit','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3310,'2018-05-26 22:32:04',1,'configuration.php','gID=19&cID=427&action=save','174.235.151.47',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n.-*(\W\Q*.M\\,	wrs\r\nw\rv\r1\0*5 \L\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(3311,'2018-05-26 22:32:04',1,'configuration.php','gID=19&cID=427&action=save','174.235.151.47',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n.-*(\W\Q*.M\\,	wrs\r\nw\rv\r1\0*5 \L\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3312,'2018-05-26 22:32:04',1,'configuration.php','gID=19&cID=427&action=save','174.235.151.47',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n.-*(\W\Q*.M\\,	wrs\r\nw\rv\r1\0*5 \L\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET2: Surpro','warning'),(3313,'2018-05-26 22:32:05',1,'configuration.php','gID=19&cID=427','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3314,'2018-05-26 22:32:05',1,'configuration.php','gID=19&cID=427','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3315,'2018-05-26 22:33:31',1,'configuration.php','gID=19&cID=427&action=edit','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3316,'2018-05-26 22:33:31',1,'configuration.php','gID=19&cID=427&action=edit','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3317,'2018-05-26 22:33:31',1,'configuration.php','gID=19&cID=427&action=edit','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3318,'2018-05-26 22:33:31',1,'configuration.php','gID=19&cID=427&action=edit','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3319,'2018-05-26 22:33:38',1,'configuration.php','gID=19&cID=427&action=save','174.235.151.47',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*22$\T\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(3320,'2018-05-26 22:33:38',1,'configuration.php','gID=19&cID=427&action=save','174.235.151.47',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*22$\T\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3321,'2018-05-26 22:33:38',1,'configuration.php','gID=19&cID=427&action=save','174.235.151.47',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*22$\T\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET2: ','warning'),(3322,'2018-05-26 22:33:39',1,'configuration.php','gID=19&cID=427','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3323,'2018-05-26 22:33:39',1,'configuration.php','gID=19&cID=427','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3324,'2018-05-26 22:35:30',1,'configuration.php','gID=19','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3325,'2018-05-26 22:35:31',1,'configuration.php','gID=19','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3326,'2018-05-26 22:35:41',1,'configuration.php','gID=19&cID=427&action=edit','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3327,'2018-05-26 22:35:41',1,'configuration.php','gID=19&cID=427&action=edit','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3328,'2018-05-26 22:35:48',1,'configuration.php','gID=19&cID=427&action=save','174.235.151.47',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0#\\\\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(3329,'2018-05-26 22:35:49',1,'configuration.php','gID=19&cID=427&action=save','174.235.151.47',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0#\\\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3330,'2018-05-26 22:35:49',1,'configuration.php','gID=19&cID=427&action=save','174.235.151.47',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\\\M-HLO-\\LIU\Q*.M\\,	wrs\r\nw\rv\r1\0\0#\\\\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET2: homepageslide','warning'),(3331,'2018-05-26 22:35:49',1,'configuration.php','gID=19&cID=427','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3332,'2018-05-26 22:35:50',1,'configuration.php','gID=19&cID=427','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3333,'2018-05-26 22:36:06',1,'layout_controller.php','','174.235.151.47',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(3334,'2018-05-26 22:36:06',1,'layout_controller.php','','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3335,'2018-05-26 22:36:11',1,'banner_manager.php','','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3336,'2018-05-26 22:36:11',1,'banner_manager.php','','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3337,'2018-05-26 22:36:26',1,'banner_manager.php','page=1&bID=12','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3338,'2018-05-26 22:36:26',1,'banner_manager.php','page=1&bID=12&action=setflag&flag=1','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3339,'2018-05-26 22:36:27',1,'banner_manager.php','page=1&bID=12','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3340,'2018-05-26 22:36:27',1,'banner_manager.php','page=1&bID=12&action=setflag&flag=1','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3341,'2018-05-26 22:36:27',1,'banner_manager.php','page=1&bID=12','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3342,'2018-05-26 22:36:27',1,'banner_manager.php','page=1&bID=12','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3343,'2018-05-26 22:36:34',1,'banner_manager.php','page=1&bID=13','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3344,'2018-05-26 22:36:34',1,'banner_manager.php','page=1&bID=13&action=setflag&flag=1','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3345,'2018-05-26 22:36:34',1,'banner_manager.php','page=1&bID=13','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3346,'2018-05-26 22:36:34',1,'banner_manager.php','page=1&bID=13&action=setflag&flag=1','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3347,'2018-05-26 22:36:35',1,'banner_manager.php','page=1&bID=13','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3348,'2018-05-26 22:36:35',1,'banner_manager.php','page=1&bID=13','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3349,'2018-05-26 22:43:15',1,'banner_manager.php','page=1&bID=13&action=setflag&flag=0','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3350,'2018-05-26 22:43:16',1,'banner_manager.php','page=1&bID=13&action=setflag&flag=0','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3351,'2018-05-26 22:43:16',1,'banner_manager.php','page=1&bID=13','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3352,'2018-05-26 22:43:16',1,'banner_manager.php','page=1&bID=13','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3353,'2018-05-26 22:43:18',1,'banner_manager.php','page=1&bID=12&action=setflag&flag=0','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php] with action=setflag. Review page_parameters and postdata for details.','info'),(3354,'2018-05-26 22:43:19',1,'banner_manager.php','page=1&bID=12&action=setflag&flag=0','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3355,'2018-05-26 22:43:19',1,'banner_manager.php','page=1&bID=12','174.235.151.47',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3356,'2018-05-26 22:43:20',1,'banner_manager.php','page=1&bID=12','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3357,'2018-05-26 22:43:33',1,'configuration.php','gID=19','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3358,'2018-05-26 22:43:34',1,'configuration.php','gID=19','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3359,'2018-05-26 22:43:43',1,'configuration.php','gID=19&cID=427&action=edit','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3360,'2018-05-26 22:43:44',1,'configuration.php','gID=19&cID=427&action=edit','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3361,'2018-05-26 22:43:54',1,'configuration.php','gID=19&cID=427&action=save','174.235.151.47',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n.-*(\W\Q*.M\\,	wrs\r\nw\rv\r1\0*52$\\P\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(3362,'2018-05-26 22:43:54',1,'configuration.php','gID=19&cID=427&action=save','174.235.151.47',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n.-*(\W\Q*.M\\,	wrs\r\nw\rv\r1\0*52$\\P\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3363,'2018-05-26 22:43:54',1,'configuration.php','gID=19&cID=427&action=save','174.235.151.47',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n.-*(\W\Q*.M\\,	wrs\r\nw\rv\r1\0*52$\\P\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET2: Surpro','warning'),(3364,'2018-05-26 22:43:55',1,'configuration.php','gID=19&cID=427','174.235.151.47',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3365,'2018-05-26 22:43:55',1,'configuration.php','gID=19&cID=427','174.235.151.47',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3366,'2018-05-27 17:44:48',0,'login.php ','camefrom=index.php','174.235.129.141',0,'',_binary '\0','Accessed page [login.php]','info'),(3367,'2018-05-27 17:44:48',0,'login.php ','camefrom=index.php','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3368,'2018-05-27 18:23:51',0,'login.php ','camefrom=index.php','174.235.129.141',0,'',_binary '\0','Accessed page [login.php]','info'),(3369,'2018-05-27 18:23:51',0,'login.php ','camefrom=index.php','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3370,'2018-05-27 18:24:11',0,'login.php Eagle','camefrom=index.php','174.235.129.141',0,'',_binary 'VJL.\\\SRJ\77HI134K51O4700IM4LL60761Q\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do778dd616e47e99970484ea09e9c07344. Review page_parameters and postdata for details.','info'),(3371,'2018-05-27 18:24:11',0,'login.php Eagle','camefrom=index.php','174.235.129.141',1,'',_binary 'VJL.\\\SRJ\77HI134K51O4700IM4LL60761Q\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3372,'2018-05-27 18:24:11',1,'index.php','','174.235.129.141',0,'',_binary '\0','Accessed page [index.php]','info'),(3373,'2018-05-27 18:24:12',1,'index.php','','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3374,'2018-05-27 18:24:17',1,'flexible_footer_menu.php','','174.235.129.141',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(3375,'2018-05-27 18:24:18',1,'flexible_footer_menu.php','','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3376,'2018-05-27 18:24:30',1,'flexible_footer_menu.php','bID=28','174.235.129.141',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(3377,'2018-05-27 18:24:30',1,'flexible_footer_menu.php','bID=28','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3378,'2018-05-27 18:24:35',1,'flexible_footer_menu.php','bID=28&action=new','174.235.129.141',0,'',_binary '\0','Accessed page [flexible_footer_menu.php] with action=new. Review page_parameters and postdata for details.','info'),(3379,'2018-05-27 18:24:35',1,'flexible_footer_menu.php','bID=28&action=new','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3380,'2018-05-27 18:24:54',1,'flexible_footer_menu.php','action=update','174.235.129.141',0,'',_binary '5\n\0C\\1JOc0z\Wx!\Aa\\\\QOB\Z\\0P;7SJ\_5\Z	\'[vu2\	k\m8t\fjx!\=`\\\\~fUԂ\g\','Accessed page [flexible_footer_menu.php] with action=update. Review page_parameters and postdata for details.','info'),(3381,'2018-05-27 18:24:55',1,'flexible_footer_menu.php','action=update','174.235.129.141',1,'',_binary '5\n\0C\\1JOc0z\Wx!\Aa\\\\QOB\Z\\0P;7SJ\_5\Z	\'[vu2\	k\m8t\fjx!\=`\\\\~fUԂ\g\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3382,'2018-05-27 18:24:55',1,'flexible_footer_menu.php','bID=28','174.235.129.141',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(3383,'2018-05-27 18:24:55',1,'flexible_footer_menu.php','bID=28','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3384,'2018-05-27 18:25:42',1,'flexible_footer_menu.php','bID=25','174.235.129.141',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(3385,'2018-05-27 18:25:42',1,'flexible_footer_menu.php','bID=25','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3386,'2018-05-27 18:25:46',1,'flexible_footer_menu.php','bID=25&action=new','174.235.129.141',0,'',_binary '\0','Accessed page [flexible_footer_menu.php] with action=new. Review page_parameters and postdata for details.','info'),(3387,'2018-05-27 18:25:46',1,'flexible_footer_menu.php','bID=25&action=new','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3388,'2018-05-27 18:26:08',1,'flexible_footer_menu.php','bID=25','174.235.129.141',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(3389,'2018-05-27 18:26:08',1,'flexible_footer_menu.php','bID=25','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3390,'2018-05-27 18:26:20',1,'flexible_footer_menu.php','action=new','174.235.129.141',0,'',_binary '\0','Accessed page [flexible_footer_menu.php] with action=new. Review page_parameters and postdata for details.','info'),(3391,'2018-05-27 18:26:20',1,'flexible_footer_menu.php','action=new','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3392,'2018-05-27 18:26:31',1,'flexible_footer_menu.php','','174.235.129.141',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(3393,'2018-05-27 18:26:31',1,'flexible_footer_menu.php','','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3394,'2018-05-27 18:47:50',0,'login.php ','camefrom=flexible_footer_menu.php&bID=27','174.235.129.141',0,'',_binary '\0','Accessed page [login.php]','info'),(3395,'2018-05-27 18:47:51',0,'login.php ','camefrom=flexible_footer_menu.php&bID=27','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3396,'2018-05-27 18:48:07',0,'login.php Eagle','camefrom=flexible_footer_menu.php&bID=27','174.235.129.141',0,'',_binary 'VJL.\\\SRJ\712O2717136203K6L660OI4JKLN37M4P\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do427b7474632066c1c3387da2facf75a0. Review page_parameters and postdata for details.','info'),(3397,'2018-05-27 18:48:07',0,'login.php Eagle','camefrom=flexible_footer_menu.php&bID=27','174.235.129.141',1,'',_binary 'VJL.\\\SRJ\712O2717136203K6L660OI4JKLN37M4P\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3398,'2018-05-27 18:48:08',1,'flexible_footer_menu.php','bID=27','174.235.129.141',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(3399,'2018-05-27 18:48:08',1,'flexible_footer_menu.php','bID=27','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3400,'2018-05-27 18:48:14',1,'flexible_footer_menu.php','bID=27','174.235.129.141',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(3401,'2018-05-27 18:48:14',1,'flexible_footer_menu.php','bID=27','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3402,'2018-05-27 18:48:15',1,'flexible_footer_menu.php','bID=27&action=new','174.235.129.141',0,'',_binary '\0','Accessed page [flexible_footer_menu.php] with action=new. Review page_parameters and postdata for details.','info'),(3403,'2018-05-27 18:48:15',1,'flexible_footer_menu.php','bID=27&action=new','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3404,'2018-05-27 18:48:25',1,'flexible_footer_menu.php','bID=27','174.235.129.141',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(3405,'2018-05-27 18:48:25',1,'flexible_footer_menu.php','bID=27','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3406,'2018-05-27 18:48:44',1,'flexible_footer_menu.php','bID=27','174.235.129.141',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(3407,'2018-05-27 18:48:45',1,'flexible_footer_menu.php','bID=27','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3408,'2018-05-27 18:48:53',1,'flexible_footer_menu.php','bID=27&action=delete','174.235.129.141',0,'',_binary '\0','Accessed page [flexible_footer_menu.php] with action=delete. Review page_parameters and postdata for details.','info'),(3409,'2018-05-27 18:48:54',1,'flexible_footer_menu.php','bID=27&action=delete','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3410,'2018-05-27 18:48:59',1,'flexible_footer_menu.php','bID=27&action=deleteconfirm','174.235.129.141',0,'',_binary '\0','Accessed page [flexible_footer_menu.php] with action=deleteconfirm. Review page_parameters and postdata for details.','info'),(3411,'2018-05-27 18:48:59',1,'flexible_footer_menu.php','bID=27&action=deleteconfirm','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3412,'2018-05-27 18:48:59',1,'flexible_footer_menu.php','','174.235.129.141',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(3413,'2018-05-27 18:49:00',1,'flexible_footer_menu.php','','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3414,'2018-05-27 18:49:04',1,'flexible_footer_menu.php','bID=28&action=delete','174.235.129.141',0,'',_binary '\0','Accessed page [flexible_footer_menu.php] with action=delete. Review page_parameters and postdata for details.','info'),(3415,'2018-05-27 18:49:05',1,'flexible_footer_menu.php','bID=28&action=delete','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3416,'2018-05-27 18:49:07',1,'flexible_footer_menu.php','bID=28&action=deleteconfirm','174.235.129.141',0,'',_binary '\0','Accessed page [flexible_footer_menu.php] with action=deleteconfirm. Review page_parameters and postdata for details.','info'),(3417,'2018-05-27 18:49:07',1,'flexible_footer_menu.php','bID=28&action=deleteconfirm','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3418,'2018-05-27 18:49:08',1,'flexible_footer_menu.php','','174.235.129.141',0,'',_binary '\0','Accessed page [flexible_footer_menu.php]','info'),(3419,'2018-05-27 18:49:08',1,'flexible_footer_menu.php','','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3420,'2018-05-27 19:55:15',0,'login.php ','camefrom=configuration.php&gID=18','174.235.129.141',0,'',_binary '\0','Accessed page [login.php]','info'),(3421,'2018-05-27 19:55:16',0,'login.php ','camefrom=configuration.php&gID=18','174.235.129.141',0,'',_binary '\0','Accessed page [login.php]','info'),(3422,'2018-05-27 19:55:16',0,'login.php ','camefrom=configuration.php&gID=18','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3423,'2018-05-27 19:55:16',0,'login.php ','camefrom=configuration.php&gID=18','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3424,'2018-05-27 19:55:35',0,'login.php Eagle','camefrom=configuration.php&gID=18','174.235.129.141',0,'',_binary 'VJL.\\\SRJ\OL23NLMNKJ4H66OJMNM6L3H501677Q\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=doab63aecfba398c37becec1f0e4843774. Review page_parameters and postdata for details.','info'),(3425,'2018-05-27 19:55:35',0,'login.php Eagle','camefrom=configuration.php&gID=18','174.235.129.141',1,'',_binary 'VJL.\\\SRJ\OL23NLMNKJ4H66OJMNM6L3H501677Q\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3426,'2018-05-27 19:55:36',1,'configuration.php','gID=18','174.235.129.141',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3427,'2018-05-27 19:55:36',1,'configuration.php','gID=18','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3428,'2018-05-27 19:55:47',1,'configuration.php','gID=19','174.235.129.141',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3429,'2018-05-27 19:55:48',1,'configuration.php','gID=19','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3430,'2018-05-27 19:55:59',1,'configuration.php','gID=19&cID=431&action=edit','174.235.129.141',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3431,'2018-05-27 19:56:00',1,'configuration.php','gID=19&cID=431&action=edit','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3432,'2018-05-27 19:56:07',1,'configuration.php','gID=19&cID=431&action=save','174.235.129.141',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*22!\\L\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(3433,'2018-05-27 19:56:08',1,'configuration.php','gID=19&cID=431&action=save','174.235.129.141',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*22!\\L\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3434,'2018-05-27 19:56:08',1,'configuration.php','gID=19&cID=431&action=save','174.235.129.141',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*22!\\L\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET6: ','warning'),(3435,'2018-05-27 19:56:08',1,'configuration.php','gID=19&cID=431','174.235.129.141',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3436,'2018-05-27 19:56:08',1,'configuration.php','gID=19&cID=431','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3437,'2018-05-27 20:15:21',0,'login.php ','camefrom=configuration.php&gID=19&cID=427&action=edit','174.235.129.141',0,'',_binary '\0','Accessed page [login.php] with action=edit. Review page_parameters and postdata for details.','info'),(3438,'2018-05-27 20:15:22',0,'login.php ','camefrom=configuration.php&gID=19&cID=427&action=edit','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3439,'2018-05-27 20:15:39',0,'login.php Eagle','camefrom=configuration.php&gID=19&cID=427&action=edit','174.235.129.141',0,'',_binary 'VJL.\\\SRJ\760307LL2II24LKM4K2243I52J444Q\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do3060719ab4db11fea6b25964e22a5914. Review page_parameters and postdata for details.','info'),(3440,'2018-05-27 20:15:39',0,'login.php Eagle','camefrom=configuration.php&gID=19&cID=427&action=edit','174.235.129.141',1,'',_binary 'VJL.\\\SRJ\760307LL2II24LKM4K2243I52J444Q\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3441,'2018-05-27 20:15:40',1,'configuration.php','gID=19&cID=427&action=edit','174.235.129.141',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3442,'2018-05-27 20:15:40',1,'configuration.php','gID=19&cID=427&action=edit','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3443,'2018-05-27 20:15:50',1,'configuration.php','gID=19&cID=427&action=save','174.235.129.141',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*24#\T\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(3444,'2018-05-27 20:15:51',1,'configuration.php','gID=19&cID=427&action=save','174.235.129.141',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*24#\T\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3445,'2018-05-27 20:15:51',1,'configuration.php','gID=19&cID=427&action=save','174.235.129.141',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*24#\T\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET2: ','warning'),(3446,'2018-05-27 20:15:51',1,'configuration.php','gID=19&cID=427','174.235.129.141',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3447,'2018-05-27 20:15:52',1,'configuration.php','gID=19&cID=427','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3448,'2018-05-27 20:15:59',1,'configuration.php','gID=19&cID=431&action=edit','174.235.129.141',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3449,'2018-05-27 20:15:59',1,'configuration.php','gID=19&cID=431&action=edit','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3450,'2018-05-27 20:16:04',1,'configuration.php','gID=19&cID=431&action=save','174.235.129.141',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n.-*(\W\Q*.M\\,	wrs\r\nw\rv\r1\0*54\'\B\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(3451,'2018-05-27 20:16:05',1,'configuration.php','gID=19&cID=431&action=save','174.235.129.141',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n.-*(\W\Q*.M\\,	wrs\r\nw\rv\r1\0*54\'\B\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3452,'2018-05-27 20:16:05',1,'configuration.php','gID=19&cID=431&action=save','174.235.129.141',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n.-*(\W\Q*.M\\,	wrs\r\nw\rv\r1\0*54\'\B\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET6: Surpro','warning'),(3453,'2018-05-27 20:16:05',1,'configuration.php','gID=19&cID=431','174.235.129.141',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3454,'2018-05-27 20:16:06',1,'configuration.php','gID=19&cID=431','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3455,'2018-05-27 20:16:40',1,'configuration.php','gID=19&cID=431&action=edit','174.235.129.141',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3456,'2018-05-27 20:16:41',1,'configuration.php','gID=19&cID=431&action=edit','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3457,'2018-05-27 20:16:42',1,'configuration.php','gID=19&cID=431&action=edit','174.235.129.141',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3458,'2018-05-27 20:16:42',1,'configuration.php','gID=19&cID=431&action=edit','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3459,'2018-05-27 20:16:48',1,'configuration.php','gID=19&cID=431&action=save','174.235.129.141',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*2 \R\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(3460,'2018-05-27 20:16:48',1,'configuration.php','gID=19&cID=431&action=save','174.235.129.141',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*2 \R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3461,'2018-05-27 20:16:48',1,'configuration.php','gID=19&cID=431&action=save','174.235.129.141',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	wrs\r\nw\rv\r1\0*2 \R\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET6: ','warning'),(3462,'2018-05-27 20:16:49',1,'configuration.php','gID=19&cID=431','174.235.129.141',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3463,'2018-05-27 20:16:49',1,'configuration.php','gID=19&cID=431','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3464,'2018-05-27 20:16:56',1,'configuration.php','gID=19&cID=431&action=edit','174.235.129.141',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3465,'2018-05-27 20:16:56',1,'configuration.php','gID=19&cID=431&action=edit','174.235.129.141',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3466,'2018-05-27 20:16:57',1,'configuration.php','gID=19&cID=431&action=edit','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3467,'2018-05-27 20:16:57',1,'configuration.php','gID=19&cID=431&action=edit','174.235.129.141',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3468,'2018-05-27 20:42:26',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(3469,'2018-05-27 20:42:27',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3470,'2018-05-27 20:43:04',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\74N5H2M170J410I4H5KIML114NLV\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do13e0b5d702a404a78e6def9d4293b99c. Review page_parameters and postdata for details.','info'),(3471,'2018-05-27 20:43:04',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\74N5H2M170J410I4H5KIML114NLV\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3472,'2018-05-27 20:43:05',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(3473,'2018-05-27 20:43:05',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3474,'2018-05-27 20:43:26',1,'configuration.php','gID=1','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3475,'2018-05-27 20:43:26',1,'configuration.php','gID=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3476,'2018-05-27 20:45:04',1,'configuration.php','gID=1&cID=22&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3477,'2018-05-27 20:45:05',1,'configuration.php','gID=1&cID=22&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3478,'2018-05-27 20:45:18',1,'configuration.php','gID=1&cID=22&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	pt	wtv\ru\rwsrvu\0j11 MO%\\ZSZ\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(3479,'2018-05-27 20:45:18',1,'configuration.php','gID=1&cID=22&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	pt	wtv\ru\rwsrvu\0j11 MO%\\ZSZ\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3480,'2018-05-27 20:45:18',1,'configuration.php','gID=1&cID=22&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	pt	wtv\ru\rwsrvu\0j11 MO%\\ZSZ\0','Configuration setting changed for PADSS_ADMIN_SESSION_TIMEOUT_ENFORCED: 1','warning'),(3481,'2018-05-27 20:45:18',1,'configuration.php','gID=1&cID=22','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3482,'2018-05-27 20:45:19',1,'configuration.php','gID=1&cID=22','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3483,'2018-05-27 20:46:17',1,'configuration.php','gID=31','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3484,'2018-05-27 20:46:17',1,'configuration.php','gID=31','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3485,'2018-05-27 20:46:28',1,'configuration.php','gID=31&cID=547&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3486,'2018-05-27 20:46:28',1,'configuration.php','gID=31&cID=547&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3487,'2018-05-27 20:46:32',1,'configuration.php','gID=31&cID=548&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3488,'2018-05-27 20:46:33',1,'configuration.php','gID=31&cID=548&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3489,'2018-05-27 20:46:39',1,'configuration.php','gID=31&cID=546&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3490,'2018-05-27 20:46:40',1,'configuration.php','gID=31&cID=546&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3491,'2018-05-27 20:46:53',1,'configuration.php','gID=31&cID=547&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3492,'2018-05-27 20:46:53',1,'configuration.php','gID=31&cID=547&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3493,'2018-05-27 20:47:06',1,'configuration.php','gID=31&cID=547&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	\nvtq\rq	\r\012ţ\\\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(3494,'2018-05-27 20:47:06',1,'configuration.php','gID=31&cID=547&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	\nvtq\rq	\r\012ţ\\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3495,'2018-05-27 20:47:06',1,'configuration.php','gID=31&cID=547&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	\nvtq\rq	\r\012ţ\\\0','Configuration setting changed for RSB_SLIDER_STATUS: false','warning'),(3496,'2018-05-27 20:47:07',1,'configuration.php','gID=31&cID=547','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3497,'2018-05-27 20:47:07',1,'configuration.php','gID=31&cID=547','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3498,'2018-05-27 20:47:11',1,'configuration.php','gID=31&cID=548&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3499,'2018-05-27 20:47:11',1,'configuration.php','gID=31&cID=548&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3500,'2018-05-27 20:47:21',1,'configuration.php','gID=31&cID=548&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	wptw\ru\0*2\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(3501,'2018-05-27 20:47:21',1,'configuration.php','gID=31&cID=548&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	wptw\ru\0*2\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3502,'2018-05-27 20:47:21',1,'configuration.php','gID=31&cID=548&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	wptw\ru\0*2\0','Configuration setting changed for SHOW_EZ_PAGES_MENU: false','warning'),(3503,'2018-05-27 20:47:21',1,'configuration.php','gID=31&cID=548','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3504,'2018-05-27 20:47:22',1,'configuration.php','gID=31&cID=548','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3505,'2018-05-27 20:47:25',1,'configuration.php','gID=31&cID=548&action=save','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	wptw\ru\0*2ħ\\P\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(3506,'2018-05-27 20:47:26',1,'configuration.php','gID=31&cID=548&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	wptw\ru\0*2ħ\\P\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3507,'2018-05-27 20:47:26',1,'configuration.php','gID=31&cID=548&action=save','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	wptw\ru\0*2ħ\\P\0','Configuration setting changed for SHOW_EZ_PAGES_MENU: false','warning'),(3508,'2018-05-27 20:47:26',1,'configuration.php','gID=31&cID=548','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3509,'2018-05-27 20:47:26',1,'configuration.php','gID=31&cID=548','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3510,'2018-05-27 20:47:31',1,'configuration.php','gID=31&cID=546&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3511,'2018-05-27 20:47:32',1,'configuration.php','gID=31&cID=546&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3512,'2018-05-27 20:47:42',1,'configuration.php','gID=31&cID=546','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3513,'2018-05-27 20:47:42',1,'configuration.php','gID=31&cID=546','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3514,'2018-05-27 20:48:00',1,'server_info.php','','24.72.164.167',0,'',_binary '\0','Accessed page [server_info.php]','info'),(3515,'2018-05-27 20:48:00',1,'server_info.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3516,'2018-05-27 20:48:49',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(3517,'2018-05-27 20:48:50',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3518,'2018-05-27 20:49:13',1,'ezpages.php','action=status_toc&current=0&ezID=9&page=1','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_toc. Review page_parameters and postdata for details.','info'),(3519,'2018-05-27 20:49:13',1,'ezpages.php','action=status_toc&current=0&ezID=9&page=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3520,'2018-05-27 20:49:13',1,'ezpages.php','action=status_toc&current=0&ezID=9&page=1','24.72.164.167',0,'',_binary '\0','EZ-Page ID 9 [status_toc] changed to 1','info'),(3521,'2018-05-27 20:49:13',1,'ezpages.php','page=1&ezID=9','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(3522,'2018-05-27 20:49:14',1,'ezpages.php','page=1&ezID=9','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3523,'2018-05-27 20:49:18',1,'ezpages.php','action=status_toc&current=0&ezID=4&page=1','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_toc. Review page_parameters and postdata for details.','info'),(3524,'2018-05-27 20:49:18',1,'ezpages.php','action=status_toc&current=0&ezID=4&page=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3525,'2018-05-27 20:49:18',1,'ezpages.php','action=status_toc&current=0&ezID=4&page=1','24.72.164.167',0,'',_binary '\0','EZ-Page ID 4 [status_toc] changed to 1','info'),(3526,'2018-05-27 20:49:19',1,'ezpages.php','page=1&ezID=4','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(3527,'2018-05-27 20:49:19',1,'ezpages.php','page=1&ezID=4','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3528,'2018-05-27 20:49:36',1,'ezpages.php','page=1&ezID=13','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(3529,'2018-05-27 20:49:36',1,'ezpages.php','page=1&ezID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3530,'2018-05-27 20:50:21',1,'ezpages.php','page=1&ezID=13','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(3531,'2018-05-27 20:50:21',1,'ezpages.php','action=status_header&current=0&ezID=13&page=1','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_header. Review page_parameters and postdata for details.','info'),(3532,'2018-05-27 20:50:22',1,'ezpages.php','page=1&ezID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3533,'2018-05-27 20:50:22',1,'ezpages.php','action=status_header&current=0&ezID=13&page=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3534,'2018-05-27 20:50:22',1,'ezpages.php','action=status_header&current=0&ezID=13&page=1','24.72.164.167',0,'',_binary '\0','EZ-Page ID 13 [status_header] changed to 1','info'),(3535,'2018-05-27 20:50:22',1,'ezpages.php','page=1&ezID=13','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(3536,'2018-05-27 20:50:22',1,'ezpages.php','page=1&ezID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3537,'2018-05-27 20:52:31',0,'login.php ','camefrom=ezpages.php&page=1&ezID=13','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(3538,'2018-05-27 20:52:31',0,'login.php ','camefrom=ezpages.php&page=1&ezID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3539,'2018-05-27 20:52:53',0,'login.php Eagle','camefrom=ezpages.php&page=1&ezID=13','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\7M31KMN5MMLL6HL20I6J143I2K6W\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do5f46ece5ed9f99c78ab04c2d5964b6c7. Review page_parameters and postdata for details.','info'),(3540,'2018-05-27 20:52:53',0,'login.php Eagle','camefrom=ezpages.php&page=1&ezID=13','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\7M31KMN5MMLL6HL20I6J143I2K6W\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3541,'2018-05-27 20:52:54',1,'ezpages.php','page=1&ezID=13','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(3542,'2018-05-27 20:52:54',1,'ezpages.php','page=1&ezID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3543,'2018-05-27 20:53:04',1,'layout_controller.php','','24.72.164.167',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(3544,'2018-05-27 20:53:04',1,'layout_controller.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3545,'2018-05-27 20:53:14',1,'ezpages.php','','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(3546,'2018-05-27 20:53:14',1,'ezpages.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3547,'2018-05-27 20:53:20',1,'ezpages.php','page=1&ezID=13','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(3548,'2018-05-27 20:53:20',1,'ezpages.php','page=1&ezID=13','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(3549,'2018-05-27 20:53:21',1,'ezpages.php','page=1&ezID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3550,'2018-05-27 20:53:21',1,'ezpages.php','page=1&ezID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3551,'2018-05-27 20:53:29',1,'ezpages.php','page=1&ezID=13&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(3552,'2018-05-27 20:53:29',1,'ezpages.php','page=1&ezID=13&action=new','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(3553,'2018-05-27 20:53:30',1,'ezpages.php','page=1&ezID=13&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3554,'2018-05-27 20:53:30',1,'ezpages.php','page=1&ezID=13&action=new','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3555,'2018-05-27 20:54:02',1,'ezpages.php','page=1&action=update','24.72.164.167',0,'',_binary 'X\o\6W?)\\!\8\hΐ\Y$)g\EɴM\\Kc\}ǏwT4PR|r=\\\'6\paRoL\NʆT\Ma\"\}TLZs\'\LӊBNUG~jL*{`\r\*/4\\\"\062K\nꙣ\\v=\\c0*S\\Wқ\"\\l\}*\\oQHU\\\,Ni-	\l6g\;\\\\F\\rJ\\\2^N\\f\0u\z9-Zʗ/D.\?G2\\\SQE\8\~\ÓRcMQ|3A\rU=w̙\\̿f9\]]Gϰ+\dF{\/w{7\/rM1d^R1\kck\	^6yL\rGn\nztOsh\\\	fQcp0\<A˖۟\Yڡ\Fr\	 4hww\\\\nnc/fKn%<zla\ΰ,{Re\'Hj6V]LxR쨅j\lKEW\մ\\U՛܏߁6P\ris\`~p\nrVVf΋H\tuw{A\rdg\)@׉f	\\!uv3,\\r\D\jz\魆KJ*B \dN\5z0u\.*^\\\\'SQ \\X\\OdK<m0\q#V;25k-\ĸ\r8\iWzۄ\0d!mtU$a\n1-\\ruWwb\F(\\Tk}\\3A\5$KgÇb\\\t:\w\%IW\UG\\ҁ<H ۞\}EcԿ[7ǈ3݃\Z\sW\Ut$a\+\]\\p%c]\E׭O6vcLo@\m!\4\\F\xʌ\\;ъ\\'KCcD5Ϲ(\{[\(iSv@̇t?@\\Eg7cv8e[s|\\0\4\miTay\\	4DH2Z\v\l9\r\,e/\/\nzes?̺}>Bw\nooK\µ\\m\I_S}\d|\",S}@֫v7xȁ(؞&&Mڪ\?8v\Yd','Accessed page [ezpages.php] with action=update. Review page_parameters and postdata for details.','info'),(3556,'2018-05-27 20:54:03',1,'ezpages.php','page=1&action=update','24.72.164.167',1,'',_binary 'X\o\6W?)\\!\8\hΐ\Y$)g\EɴM\\Kc\}ǏwT4PR|r=\\\'6\paRoL\NʆT\Ma\"\}TLZs\'\LӊBNUG~jL*{`\r\*/4\\\"\062K\nꙣ\\v=\\c0*S\\Wқ\"\\l\}*\\oQHU\\\,Ni-	\l6g\;\\\\F\\rJ\\\2^N\\f\0u\z9-Zʗ/D.\?G2\\\SQE\8\~\ÓRcMQ|3A\rU=w̙\\̿f9\]]Gϰ+\dF{\/w{7\/rM1d^R1\kck\	^6yL\rGn\nztOsh\\\	fQcp0\<A˖۟\Yڡ\Fr\	 4hww\\\\nnc/fKn%<zla\ΰ,{Re\'Hj6V]LxR쨅j\lKEW\մ\\U՛܏߁6P\ris\`~p\nrVVf΋H\tuw{A\rdg\)@׉f	\\!uv3,\\r\D\jz\魆KJ*B \dN\5z0u\.*^\\\\'SQ \\X\\OdK<m0\q#V;25k-\ĸ\r8\iWzۄ\0d!mtU$a\n1-\\ruWwb\F(\\Tk}\\3A\5$KgÇb\\\t:\w\%IW\UG\\ҁ<H ۞\}EcԿ[7ǈ3݃\Z\sW\Ut$a\+\]\\p%c]\E׭O6vcLo@\m!\4\\F\xʌ\\;ъ\\'KCcD5Ϲ(\{[\(iSv@̇t?@\\Eg7cv8e[s|\\0\4\miTay\\	4DH2Z\v\l9\r\,e/\/\nzes?̺}>Bw\nooK\µ\\m\I_S}\d|\",S}@֫v7xȁ(؞&&Mڪ\?8v\Yd','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3557,'2018-05-27 20:54:03',1,'ezpages.php','page=1&action=update','24.72.164.167',0,'',_binary 'X\o\6W?)\\!\8\hΐ\Y$)g\EɴM\\Kc\}ǏwT4PR|r=\\\'6\paRoL\NʆT\Ma\"\}TLZs\'\LӊBNUG~jL*{`\r\*/4\\\"\062K\nꙣ\\v=\\c0*S\\Wқ\"\\l\}*\\oQHU\\\,Ni-	\l6g\;\\\\F\\rJ\\\2^N\\f\0u\z9-Zʗ/D.\?G2\\\SQE\8\~\ÓRcMQ|3A\rU=w̙\\̿f9\]]Gϰ+\dF{\/w{7\/rM1d^R1\kck\	^6yL\rGn\nztOsh\\\	fQcp0\<A˖۟\Yڡ\Fr\	 4hww\\\\nnc/fKn%<zla\ΰ,{Re\'Hj6V]LxR쨅j\lKEW\մ\\U՛܏߁6P\ris\`~p\nrVVf΋H\tuw{A\rdg\)@׉f	\\!uv3,\\r\D\jz\魆KJ*B \dN\5z0u\.*^\\\\'SQ \\X\\OdK<m0\q#V;25k-\ĸ\r8\iWzۄ\0d!mtU$a\n1-\\ruWwb\F(\\Tk}\\3A\5$KgÇb\\\t:\w\%IW\UG\\ҁ<H ۞\}EcԿ[7ǈ3݃\Z\sW\Ut$a\+\]\\p%c]\E׭O6vcLo@\m!\4\\F\xʌ\\;ъ\\'KCcD5Ϲ(\{[\(iSv@̇t?@\\Eg7cv8e[s|\\0\4\miTay\\	4DH2Z\v\l9\r\,e/\/\nzes?̺}>Bw\nooK\µ\\m\I_S}\d|\",S}@֫v7xȁ(؞&&Mڪ\?8v\Yd','EZ-Page with ID 13 updated.','info'),(3558,'2018-05-27 20:54:03',1,'ezpages.php','page=1&ezID=13','24.72.164.167',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(3559,'2018-05-27 20:54:03',1,'ezpages.php','page=1&ezID=13','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3560,'2018-05-27 20:55:31',1,'ezpages.php','action=status_header&current=1&ezID=13&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [ezpages.php] with action=status_header. Review page_parameters and postdata for details.','info'),(3561,'2018-05-27 20:55:31',1,'ezpages.php','action=status_header&current=1&ezID=13&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3562,'2018-05-27 20:55:31',1,'ezpages.php','action=status_header&current=1&ezID=13&page=1','174.235.133.72',0,'',_binary '\0','EZ-Page ID 13 [status_header] changed to 0','info'),(3563,'2018-05-27 20:55:32',1,'ezpages.php','page=1&ezID=13','174.235.133.72',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(3564,'2018-05-27 20:55:32',1,'ezpages.php','page=1&ezID=13','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3565,'2018-05-27 20:55:40',1,'configuration.php','gID=19','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3566,'2018-05-27 20:55:41',1,'configuration.php','gID=19','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3567,'2018-05-27 20:55:53',1,'configuration.php','gID=19&cID=428&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3568,'2018-05-27 20:55:53',1,'configuration.php','gID=19&cID=428&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3569,'2018-05-27 20:55:59',1,'configuration.php','gID=19&cID=428&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n.-*(\W\Q*.M\\,	wrs\r\nw\rv\r1\0*54#\@\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(3570,'2018-05-27 20:55:59',1,'configuration.php','gID=19&cID=428&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n.-*(\W\Q*.M\\,	wrs\r\nw\rv\r1\0*54#\@\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3571,'2018-05-27 20:55:59',1,'configuration.php','gID=19&cID=428&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n.-*(\W\Q*.M\\,	wrs\r\nw\rv\r1\0*54#\@\0','Configuration setting changed for SHOW_BANNERS_GROUP_SET3: Surpro','warning'),(3572,'2018-05-27 20:56:00',1,'configuration.php','gID=19&cID=428','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3573,'2018-05-27 20:56:00',1,'configuration.php','gID=19&cID=428','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3574,'2018-05-27 20:59:52',1,'categories.php','','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3575,'2018-05-27 20:59:54',1,'categories.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3576,'2018-05-27 20:59:57',1,'categories.php','cPath=18','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3577,'2018-05-27 20:59:58',1,'categories.php','cPath=18','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3578,'2018-05-27 21:00:01',1,'categories.php','cPath=18_21','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3579,'2018-05-27 21:00:01',1,'categories.php','cPath=18_21','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3580,'2018-05-27 21:00:05',1,'product.php','page=1&product_type=1&cPath=18_21&pID=11&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3581,'2018-05-27 21:00:07',1,'product.php','page=1&product_type=1&cPath=18_21&pID=11&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3582,'2018-05-27 21:01:25',1,'categories.php','cPath=18_21&pID=11&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3583,'2018-05-27 21:01:26',1,'categories.php','cPath=18_21&pID=11&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3584,'2018-05-27 21:01:32',1,'categories.php','','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3585,'2018-05-27 21:01:32',1,'categories.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3586,'2018-05-27 21:01:38',1,'categories.php','cPath=18','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3587,'2018-05-27 21:01:38',1,'categories.php','cID=18&action=edit_category','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php] with action=edit_category. Review page_parameters and postdata for details.','info'),(3588,'2018-05-27 21:01:38',1,'categories.php','cPath=18','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3589,'2018-05-27 21:01:39',1,'categories.php','cID=18&action=edit_category','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3590,'2018-05-27 21:06:21',1,'categories.php','action=update_category','174.235.133.72',0,'',_binary 'm\k\@\q\\\`c\r{2\\'ۂѝ݅\}[6~\}?\\'Sc6Sܱ5\\\ٹ\cOfdfisCa\<_Z8\	\~rܽ#\\ʬ*6pB\ L$E\\xe\	`\Z\':\n{#Fo!uA]\\\G;[Ǟ^ep\7@\xuF\\AqvB_[\`Fт`\P\0ʽ\n\ռ\n$Fru\\\\i\0e-iw\\\O\"o5BsbQ\\t%WJMC!&\,&\'E\06M{G\"T|/P\k\\޸Ά\0g٨=;!t\\<$-DsA8(\\]\{Z\1\\:\\ݧg=cN\FzvgYtI_W\[\\A\@oe%GI\nS+I;\e:t6*풢\','Accessed page [categories.php] with action=update_category. Review page_parameters and postdata for details.','info'),(3591,'2018-05-27 21:06:21',1,'categories.php','action=update_category','174.235.133.72',1,'',_binary 'm\k\@\q\\\`c\r{2\\'ۂѝ݅\}[6~\}?\\'Sc6Sܱ5\\\ٹ\cOfdfisCa\<_Z8\	\~rܽ#\\ʬ*6pB\ L$E\\xe\	`\Z\':\n{#Fo!uA]\\\G;[Ǟ^ep\7@\xuF\\AqvB_[\`Fт`\P\0ʽ\n\ռ\n$Fru\\\\i\0e-iw\\\O\"o5BsbQ\\t%WJMC!&\,&\'E\06M{G\"T|/P\k\\޸Ά\0g٨=;!t\\<$-DsA8(\\]\{Z\1\\:\\ݧg=cN\FzvgYtI_W\[\\A\@oe%GI\nS+I;\e:t6*풢\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3592,'2018-05-27 21:06:21',1,'categories.php','cID=18','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3593,'2018-05-27 21:06:22',1,'categories.php','cID=18','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3594,'2018-05-27 21:09:03',1,'layout_controller.php','','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(3595,'2018-05-27 21:09:03',1,'layout_controller.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3596,'2018-05-27 21:09:29',1,'layout_controller.php','cID=136&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(3597,'2018-05-27 21:09:30',1,'layout_controller.php','cID=136&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3598,'2018-05-27 21:09:43',1,'layout_controller.php','cID=136&action=save&layout_box_name=categories.php','174.235.133.72',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\pI\g\\bSI(]_\\̋/\L)\\0;\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(3599,'2018-05-27 21:09:44',1,'layout_controller.php','cID=136&action=save&layout_box_name=categories.php','174.235.133.72',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\pI\g\\bSI(]_\\̋/\L)\\0;\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3600,'2018-05-27 21:09:44',1,'layout_controller.php','cID=136','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(3601,'2018-05-27 21:09:45',1,'layout_controller.php','cID=136','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3602,'2018-05-27 21:10:21',1,'layout_controller.php','cID=142','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(3603,'2018-05-27 21:10:22',1,'layout_controller.php','cID=142','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3604,'2018-05-27 21:10:25',1,'layout_controller.php','cID=142&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(3605,'2018-05-27 21:10:25',1,'layout_controller.php','cID=142&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3606,'2018-05-27 21:10:59',1,'layout_controller.php','cID=142&action=save&layout_box_name=information.php','174.235.133.72',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-ʙ\Z\/\\K\I1AW!.\\/K\f\ŗgd-\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(3607,'2018-05-27 21:11:00',1,'layout_controller.php','cID=142&action=save&layout_box_name=information.php','174.235.133.72',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-ʙ\Z\/\\K\I1AW!.\\/K\f\ŗgd-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3608,'2018-05-27 21:11:00',1,'layout_controller.php','cID=142','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(3609,'2018-05-27 21:11:01',1,'layout_controller.php','cID=142','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3610,'2018-05-27 21:11:25',1,'layout_controller.php','cID=142&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(3611,'2018-05-27 21:11:26',1,'layout_controller.php','cID=142&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3612,'2018-05-27 21:11:44',1,'layout_controller.php','cID=142&action=save&layout_box_name=information.php','174.235.133.72',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\\LqJ\g\\՘[\\\_\\̋/\L)\\0[\\\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(3613,'2018-05-27 21:11:44',1,'layout_controller.php','cID=142&action=save&layout_box_name=information.php','174.235.133.72',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\\\\\\\LqJ\g\\՘[\\\_\\̋/\L)\\0[\\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3614,'2018-05-27 21:11:44',1,'layout_controller.php','cID=142','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(3615,'2018-05-27 21:11:45',1,'layout_controller.php','cID=142','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3616,'2018-05-27 21:12:10',1,'layout_controller.php','cID=142&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(3617,'2018-05-27 21:12:10',1,'layout_controller.php','cID=142&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3618,'2018-05-27 21:12:15',1,'layout_controller.php','cID=142&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(3619,'2018-05-27 21:12:16',1,'layout_controller.php','cID=142&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3620,'2018-05-27 21:13:41',1,'layout_controller.php','cID=142&action=save&layout_box_name=information.php','174.235.133.72',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-ʙ\Z\/\\K\I1AW!28#,_R0P\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(3621,'2018-05-27 21:13:42',1,'layout_controller.php','cID=142&action=save&layout_box_name=information.php','174.235.133.72',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-ʙ\Z\/\\K\I1AW!28#,_R0P\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3622,'2018-05-27 21:13:42',1,'layout_controller.php','cID=142','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(3623,'2018-05-27 21:13:42',1,'layout_controller.php','cID=142','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3624,'2018-05-27 21:14:57',1,'categories.php','','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3625,'2018-05-27 21:14:58',1,'categories.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3626,'2018-05-27 21:15:06',1,'categories.php','cPath=11','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3627,'2018-05-27 21:15:06',1,'categories.php','cPath=11','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3628,'2018-05-27 21:15:10',1,'product.php','page=1&product_type=1&cPath=11&pID=75&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3629,'2018-05-27 21:15:11',1,'product.php','page=1&product_type=1&cPath=11&pID=75&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3630,'2018-05-27 21:15:56',1,'categories.php','cPath=11','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3631,'2018-05-27 21:15:56',1,'categories.php','cPath=11','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3632,'2018-05-27 21:16:04',1,'categories.php','','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3633,'2018-05-27 21:16:05',1,'categories.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3634,'2018-05-27 21:16:12',1,'categories.php','cPath=5','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3635,'2018-05-27 21:16:13',1,'categories.php','cPath=5','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3636,'2018-05-27 21:16:20',1,'categories.php','cPath=5_26','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3637,'2018-05-27 21:16:20',1,'categories.php','cPath=5_26','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3638,'2018-05-27 21:16:29',1,'product.php','page=1&product_type=1&cPath=5_26&pID=20&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3639,'2018-05-27 21:16:29',1,'product.php','page=1&product_type=1&cPath=5_26&pID=20&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3640,'2018-05-27 21:17:06',1,'product.php','cPath=5_26&product_type=1&pID=20&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'SMo@++\\[rS\\F9%\i5\.x$\%\(\\\0vc\ZE\\0\\\{\\(H\rd$hmtIYY\+\7||I\ZdT̬G$\5cy0(-I\[\hvw\%\s%\VwwE\\9\'P\\\\0`\rE=T;E\\<\B\\wγI\\X\P\xK\v\\E\,^baĽ	X\\\o62#\?\Բ\%y,\"]\\ U\r\\uL+\H9G;n\=\2\m\Vuߨ;\P\-%d}ҠW\hn\i0\u\ǖ\ٓ?\r\5ZR\t}#\a\rlǐ5\\ZT\\,	/t\_\I\\\\\\\i3,y/ug\\#ӡmՠfgKf\T|/~\H\јt2\n\\\Y\;X>\d6\\`ᖿ\\pb','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3641,'2018-05-27 21:17:07',1,'product.php','cPath=5_26&product_type=1&pID=20&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'SMo@++\\[rS\\F9%\i5\.x$\%\(\\\0vc\ZE\\0\\\{\\(H\rd$hmtIYY\+\7||I\ZdT̬G$\5cy0(-I\[\hvw\%\s%\VwwE\\9\'P\\\\0`\rE=T;E\\<\B\\wγI\\X\P\xK\v\\E\,^baĽ	X\\\o62#\?\Բ\%y,\"]\\ U\r\\uL+\H9G;n\=\2\m\Vuߨ;\P\-%d}ҠW\hn\i0\u\ǖ\ٓ?\r\5ZR\t}#\a\rlǐ5\\ZT\\,	/t\_\I\\\\\\\i3,y/ug\\#ӡmՠfgKf\T|/~\H\јt2\n\\\Y\;X>\d6\\`ᖿ\\pb','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3642,'2018-05-27 21:17:11',1,'product.php','cPath=5_26&product_type=1&pID=20&action=update_product&page=1','174.235.133.72',0,'',_binary 'R]o0+\G\\-O!n-x!+M\5	\o!\5$7<㝝&w&F\rƠI6\2˳4\\|fo_/I\\RA\D^1B\e\Cf7A]y\^2:O%\\(	[-2\9c4͞@\rͨ<mlc%G\\MAV%\\\\Ō.\r̞\W\l \2t4]{r\9Bs&4{t\Qב/u_xЅ;\\\%eF^%?\ho\t\n):σi\\1_f\4\ynؓw\X\EMpuM\HxG4\fc\ϡ=R\\f\C\B+_E`ӟ`\P=A\\ꗳ\\o\'ީŇz#\\6y;/:\S\\\\\\QR;~HM\A=n\n:\d\IdU\`ڡ\\n\n\\b}>{v~+跿','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3643,'2018-05-27 21:17:11',1,'product.php','cPath=5_26&product_type=1&pID=20&action=update_product&page=1','174.235.133.72',1,'',_binary 'R]o0+\G\\-O!n-x!+M\5	\o!\5$7<㝝&w&F\rƠI6\2˳4\\|fo_/I\\RA\D^1B\e\Cf7A]y\^2:O%\\(	[-2\9c4͞@\rͨ<mlc%G\\MAV%\\\\Ō.\r̞\W\l \2t4]{r\9Bs&4{t\Qב/u_xЅ;\\\%eF^%?\ho\t\n):σi\\1_f\4\ynؓw\X\EMpuM\HxG4\fc\ϡ=R\\f\C\B+_E`ӟ`\P=A\\ꗳ\\o\'ީŇz#\\6y;/:\S\\\\\\QR;~HM\A=n\n:\d\IdU\`ڡ\\n\n\\b}>{v~+跿','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3644,'2018-05-27 21:17:11',1,'product.php','cPath=5_26&product_type=1&pID=20&action=update_product&page=1','174.235.133.72',0,'',_binary 'R]o0+\G\\-O!n-x!+M\5	\o!\5$7<㝝&w&F\rƠI6\2˳4\\|fo_/I\\RA\D^1B\e\Cf7A]y\^2:O%\\(	[-2\9c4͞@\rͨ<mlc%G\\MAV%\\\\Ō.\r̞\W\l \2t4]{r\9Bs&4{t\Qב/u_xЅ;\\\%eF^%?\ho\t\n):σi\\1_f\4\ynؓw\X\EMpuM\HxG4\fc\ϡ=R\\f\C\B+_E`ӟ`\P=A\\ꗳ\\o\'ީŇz#\\6y;/:\S\\\\\\QR;~HM\A=n\n:\d\IdU\`ڡ\\n\n\\b}>{v~+跿','Updated product 20 via admin console.','info'),(3645,'2018-05-27 21:17:11',1,'categories.php','cPath=5_26&pID=20&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3646,'2018-05-27 21:17:12',1,'categories.php','cPath=5_26&pID=20&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3647,'2018-05-27 21:18:05',1,'categories.php','','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3648,'2018-05-27 21:18:06',1,'categories.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3649,'2018-05-27 21:18:09',1,'categories.php','cPath=5','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3650,'2018-05-27 21:18:09',1,'categories.php','cPath=5','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3651,'2018-05-27 21:18:12',1,'categories.php','cPath=5_27','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3652,'2018-05-27 21:18:12',1,'categories.php','cPath=5_27','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3653,'2018-05-27 21:18:17',1,'product.php','page=1&product_type=1&cPath=5_27&pID=15&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3654,'2018-05-27 21:18:17',1,'product.php','page=1&product_type=1&cPath=5_27&pID=15&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3655,'2018-05-27 21:18:36',1,'product.php','cPath=5_27&product_type=1&pID=15&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\n\0B\\:\r|KP\XQkyQTȥ\]INb\55\ݝ\K\\Pg\\\h.\U\YgZ]饾Y7ŧ\f\"a24Q\rٳ\}A=et,t\k/>/\|ǜ\9	\' \;\9b<L{|\C+\,ng?{Hd\wZzߏԖx\F\WL\\$jDoׂs\Xjo9RlQ;c\\\\/\f\_CJ\1\\ධ5#ߜ}潩\\\3x&XKHZc\Ô=\>-톬NC\Fꘂ3Q8T+m\l,$\۠v%Iʮ$5so>\~j\pM\vK=57\B\[\ɣdԔz\\J\6H\Ӂ%$l0n#\r\I\\\}\ѽ\b\"cԬO\\u\\\rhQ','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3656,'2018-05-27 21:18:36',1,'product.php','cPath=5_27&product_type=1&pID=15&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\n\0B\\:\r|KP\XQkyQTȥ\]INb\55\ݝ\K\\Pg\\\h.\U\YgZ]饾Y7ŧ\f\"a24Q\rٳ\}A=et,t\k/>/\|ǜ\9	\' \;\9b<L{|\C+\,ng?{Hd\wZzߏԖx\F\WL\\$jDoׂs\Xjo9RlQ;c\\\\/\f\_CJ\1\\ධ5#ߜ}潩\\\3x&XKHZc\Ô=\>-톬NC\Fꘂ3Q8T+m\l,$\۠v%Iʮ$5so>\~j\pM\vK=57\B\[\ɣdԔz\\J\6H\Ӂ%$l0n#\r\I\\\}\ѽ\b\"cԬO\\u\\\rhQ','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3657,'2018-05-27 21:18:41',1,'product.php','cPath=5_27&product_type=1&pID=15&action=update_product&page=1','174.235.133.72',0,'',_binary 'SMo\0+\K`kW\֢\i@@ˌC̖\\\\d\Z\|\#\r4%0\Z(K,Uv\|녾VWzoWm%k 2cY@\r\r\o}\P>96oQ\|4\\sFȢ>H^\\\2\8EAD{`TCQ]Z\0H1<kZ\O+M7H|1\\\\Z\\e\@\\U1(\\'/ۄ8j[r\y\Wޛ\\f<{M\\C)m\\nSFr\u\Z\\r)\ǧ\4\~\\'\\7ܒO\wU\#s\eEkRS\хq\ˈ\"۝\b\\r\\\\\)\!U\u=J\\&tЈXew\\D\;Q=Ú\O\\\_#ިT\ \#U.{?=r6P\\\QE^\T\_\!_ـBR\y /E\\r4\D?;\','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3658,'2018-05-27 21:18:42',1,'product.php','cPath=5_27&product_type=1&pID=15&action=update_product&page=1','174.235.133.72',1,'',_binary 'SMo\0+\K`kW\֢\i@@ˌC̖\\\\d\Z\|\#\r4%0\Z(K,Uv\|녾VWzoWm%k 2cY@\r\r\o}\P>96oQ\|4\\sFȢ>H^\\\2\8EAD{`TCQ]Z\0H1<kZ\O+M7H|1\\\\Z\\e\@\\U1(\\'/ۄ8j[r\y\Wޛ\\f<{M\\C)m\\nSFr\u\Z\\r)\ǧ\4\~\\'\\7ܒO\wU\#s\eEkRS\хq\ˈ\"۝\b\\r\\\\\)\!U\u=J\\&tЈXew\\D\;Q=Ú\O\\\_#ިT\ \#U.{?=r6P\\\QE^\T\_\!_ـBR\y /E\\r4\D?;\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3659,'2018-05-27 21:18:42',1,'product.php','cPath=5_27&product_type=1&pID=15&action=update_product&page=1','174.235.133.72',0,'',_binary 'SMo\0+\K`kW\֢\i@@ˌC̖\\\\d\Z\|\#\r4%0\Z(K,Uv\|녾VWzoWm%k 2cY@\r\r\o}\P>96oQ\|4\\sFȢ>H^\\\2\8EAD{`TCQ]Z\0H1<kZ\O+M7H|1\\\\Z\\e\@\\U1(\\'/ۄ8j[r\y\Wޛ\\f<{M\\C)m\\nSFr\u\Z\\r)\ǧ\4\~\\'\\7ܒO\wU\#s\eEkRS\хq\ˈ\"۝\b\\r\\\\\)\!U\u=J\\&tЈXew\\D\;Q=Ú\O\\\_#ިT\ \#U.{?=r6P\\\QE^\T\_\!_ـBR\y /E\\r4\D?;\','Updated product 15 via admin console.','info'),(3660,'2018-05-27 21:18:42',1,'categories.php','cPath=5_27&pID=15&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3661,'2018-05-27 21:18:43',1,'categories.php','cPath=5_27&pID=15&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3662,'2018-05-27 21:19:12',1,'categories.php','cPath=5&cID=27','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3663,'2018-05-27 21:19:13',1,'categories.php','cPath=5&cID=27','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3664,'2018-05-27 21:19:17',1,'categories.php','cPath=5_19','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3665,'2018-05-27 21:19:17',1,'categories.php','cPath=5_19','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3666,'2018-05-27 21:19:20',1,'product.php','page=1&product_type=1&cPath=5_19&pID=1&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3667,'2018-05-27 21:19:21',1,'product.php','page=1&product_type=1&cPath=5_19&pID=1&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3668,'2018-05-27 21:19:37',1,'product.php','cPath=5_19&product_type=1&pID=1&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\n\0B\ؐڸi}\9m\\0Ě\)RY.@\R\òkT7j3çjh\-\`ղP7nf\G\\-\⮺zH\HAv\%\|\{L&\j}[9b 4NH2^|<\;\$ΩT\'\VL܂\L^؞^	\I,\\7\+$4\[~B\\{\\\-I\\_\sW\r̄\0\^]^&\QbJ/\\3K\wp8\\\ZCw>zW~\\JzCb\9=\\XNv\1zxݚ]bԋ\0\@\X\kzc\\\\FI삳DѭH\r\#\\$ZEP?\C8\;\\ojP+4u=kֹ-\,\L m\$a-\\\	\ZN3;eg\\v\y\-\?-ebMع\"\\Kwxth','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3669,'2018-05-27 21:19:37',1,'product.php','cPath=5_19&product_type=1&pID=1&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\n\0B\ؐڸi}\9m\\0Ě\)RY.@\R\òkT7j3çjh\-\`ղP7nf\G\\-\⮺zH\HAv\%\|\{L&\j}[9b 4NH2^|<\;\$ΩT\'\VL܂\L^؞^	\I,\\7\+$4\[~B\\{\\\-I\\_\sW\r̄\0\^]^&\QbJ/\\3K\wp8\\\ZCw>zW~\\JzCb\9=\\XNv\1zxݚ]bԋ\0\@\X\kzc\\\\FI삳DѭH\r\#\\$ZEP?\C8\;\\ojP+4u=kֹ-\,\L m\$a-\\\	\ZN3;eg\\v\y\-\?-ebMع\"\\Kwxth','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3670,'2018-05-27 21:19:41',1,'product.php','cPath=5_19&product_type=1&pID=1&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sn\0\&f\rܹkmwd-\\(t\ZM\\{K֓7\\r\`5\6*/V\gU\m7\\.\:lIWl<\r\Z&w5jX\5\\VVO7_s\1cH\\\0\B\&\ɱ5T\\\\A,\鶂И\威|\\AW-\󥆎M7\C8AΫGhmB؃;\{tͥ\3̞#8Fx22\\pR#C^\\0-؇\t?ƦƋ\<_\\>J\4)\\GqF4v>\=\ti{\\K{͎1\vR6e>:\mvN}\ڪPzNo\ra\\\\\$l+pFNv4ziW\*\\UГe\\xg=)ٲA\c\9L,}k!\ϡJ/\n뙇H\\~9׿','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3671,'2018-05-27 21:19:41',1,'product.php','cPath=5_19&product_type=1&pID=1&action=update_product&page=1','174.235.133.72',1,'',_binary 'Sn\0\&f\rܹkmwd-\\(t\ZM\\{K֓7\\r\`5\6*/V\gU\m7\\.\:lIWl<\r\Z&w5jX\5\\VVO7_s\1cH\\\0\B\&\ɱ5T\\\\A,\鶂И\威|\\AW-\󥆎M7\C8AΫGhmB؃;\{tͥ\3̞#8Fx22\\pR#C^\\0-؇\t?ƦƋ\<_\\>J\4)\\GqF4v>\=\ti{\\K{͎1\vR6e>:\mvN}\ڪPzNo\ra\\\\\$l+pFNv4ziW\*\\UГe\\xg=)ٲA\c\9L,}k!\ϡJ/\n뙇H\\~9׿','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3672,'2018-05-27 21:19:41',1,'product.php','cPath=5_19&product_type=1&pID=1&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sn\0\&f\rܹkmwd-\\(t\ZM\\{K֓7\\r\`5\6*/V\gU\m7\\.\:lIWl<\r\Z&w5jX\5\\VVO7_s\1cH\\\0\B\&\ɱ5T\\\\A,\鶂И\威|\\AW-\󥆎M7\C8AΫGhmB؃;\{tͥ\3̞#8Fx22\\pR#C^\\0-؇\t?ƦƋ\<_\\>J\4)\\GqF4v>\=\ti{\\K{͎1\vR6e>:\mvN}\ڪPzNo\ra\\\\\$l+pFNv4ziW\*\\UГe\\xg=)ٲA\c\9L,}k!\ϡJ/\n뙇H\\~9׿','Updated product 1 via admin console.','info'),(3673,'2018-05-27 21:19:42',1,'categories.php','cPath=5_19&pID=1&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3674,'2018-05-27 21:19:42',1,'categories.php','cPath=5_19&pID=1&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3675,'2018-05-27 21:19:47',1,'product.php','page=1&product_type=1&cPath=5_19&pID=10&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3676,'2018-05-27 21:19:47',1,'product.php','page=1&product_type=1&cPath=5_19&pID=10&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3677,'2018-05-27 21:20:01',1,'product.php','cPath=5_19&product_type=1&pID=10&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\n\0B\\Sh|KP\XQ(E*˥e#ȿ\DkT7j;3×#_F\AFAY2\f7\W\\ɏ\&\~\J}\ZlH鄬=	\nM>:բȷ爎P<%q\\u9&0p\Ba\qb+\\\q\m>\lN|\ʈX\C@-~z\'~?=r#\\(\Wv\\[+!mc\j;8(`&,\"_ŰW\B8}y6~5yu\\\`{8L;\`ס\y\n\"sǘ \\`X\"C\\\~\\2&hѻik\\L6\'\\F\\0\'\ދ`:$h=ͭ~`\^\\\>\}2߬d.ޘ<m|Q\uUb[7BSLGT\Ț|p</ZO\!R${bFonxhe\ӛ9_','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3678,'2018-05-27 21:20:02',1,'product.php','cPath=5_19&product_type=1&pID=10&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\n\0B\\Sh|KP\XQ(E*˥e#ȿ\DkT7j;3×#_F\AFAY2\f7\W\\ɏ\&\~\J}\ZlH鄬=	\nM>:բȷ爎P<%q\\u9&0p\Ba\qb+\\\q\m>\lN|\ʈX\C@-~z\'~?=r#\\(\Wv\\[+!mc\j;8(`&,\"_ŰW\B8}y6~5yu\\\`{8L;\`ס\y\n\"sǘ \\`X\"C\\\~\\2&hѻik\\L6\'\\F\\0\'\ދ`:$h=ͭ~`\^\\\>\}2߬d.ޘ<m|Q\uUb[7BSLGT\Ț|p</ZO\!R${bFonxhe\ӛ9_','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3679,'2018-05-27 21:20:05',1,'product.php','cPath=5_19&product_type=1&pID=10&action=update_product&page=1','174.235.133.72',0,'',_binary 'SMo\0+\K`uٰ\֢\i@@KM̖\\\\d\Z\\\{\#uޙ9(\nAm\\\\\\gqo\n\>e-FtBV\EXަ\;\eŇS6_Lһ\yҨIildu\8Ay\=jh\cK\=c\%Bj/\Z\\ƌ*\n=c\+\@8*]/\r4\r]y\rݑ\\u\pfP#[]\An\\K˔ Λٖ\R#%^\ii?؇\!>7u\\7+˹o#\-T>\\\\r]Q\V\\#۝ۡ\=3\	;\\\yGj\nͮ2\\\C\\\fN%\'(Y\C -~:+~?=q-\cF0\U6{;?r\S\\\9mA8՛^h	$w\"`>kh*\3\\,`\_','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3680,'2018-05-27 21:20:06',1,'product.php','cPath=5_19&product_type=1&pID=10&action=update_product&page=1','174.235.133.72',1,'',_binary 'SMo\0+\K`uٰ\֢\i@@KM̖\\\\d\Z\\\{\#uޙ9(\nAm\\\\\\gqo\n\>e-FtBV\EXަ\;\eŇS6_Lһ\yҨIildu\8Ay\=jh\cK\=c\%Bj/\Z\\ƌ*\n=c\+\@8*]/\r4\r]y\rݑ\\u\pfP#[]\An\\K˔ Λٖ\R#%^\ii?؇\!>7u\\7+˹o#\-T>\\\\r]Q\V\\#۝ۡ\=3\	;\\\yGj\nͮ2\\\C\\\fN%\'(Y\C -~:+~?=q-\cF0\U6{;?r\S\\\9mA8՛^h	$w\"`>kh*\3\\,`\_','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3681,'2018-05-27 21:20:06',1,'product.php','cPath=5_19&product_type=1&pID=10&action=update_product&page=1','174.235.133.72',0,'',_binary 'SMo\0+\K`uٰ\֢\i@@KM̖\\\\d\Z\\\{\#uޙ9(\nAm\\\\\\gqo\n\>e-FtBV\EXަ\;\eŇS6_Lһ\yҨIildu\8Ay\=jh\cK\=c\%Bj/\Z\\ƌ*\n=c\+\@8*]/\r4\r]y\rݑ\\u\pfP#[]\An\\K˔ Λٖ\R#%^\ii?؇\!>7u\\7+˹o#\-T>\\\\r]Q\V\\#۝ۡ\=3\	;\\\yGj\nͮ2\\\C\\\fN%\'(Y\C -~:+~?=q-\cF0\U6{;?r\S\\\9mA8՛^h	$w\"`>kh*\3\\,`\_','Updated product 10 via admin console.','info'),(3682,'2018-05-27 21:20:06',1,'categories.php','cPath=5_19&pID=10&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3683,'2018-05-27 21:20:06',1,'categories.php','cPath=5_19&pID=10&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3684,'2018-05-27 21:20:09',1,'product.php','page=1&product_type=1&cPath=5_19&pID=2&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3685,'2018-05-27 21:20:10',1,'product.php','page=1&product_type=1&cPath=5_19&pID=2&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3686,'2018-05-27 21:20:23',1,'product.php','cPath=5_19&product_type=1&pID=2&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'SM0+焚f\nszkR\c$kdlvl\j{m\n iTN<\\K֑NHJJf\#/\bǊ\=\bmW$l,rk>\*~\TEQma\'ޏ\\\gq|p\=8j(u<mlB\r\\6_b}}\Z_P{\>|c==ְ?\\]d8hO^R\0\	\\o\0J;/z{f\rY\ΐe\\\5A0\;bסi\>Qv#s\0\1B,\\0\LX#ANÔϵ\UGk.f~b+;s\rF\d\\z\*a\#q\:\ֻ\r\JE.go\t0 \\KiTI\\nm:\r\\dmmż\n^\\r\m/͙PV\\'E=\dƦ\O/KF+\\\SUv\=f','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3687,'2018-05-27 21:20:24',1,'product.php','cPath=5_19&product_type=1&pID=2&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'SM0+焚f\nszkR\c$kdlvl\j{m\n iTN<\\K֑NHJJf\#/\bǊ\=\bmW$l,rk>\*~\TEQma\'ޏ\\\gq|p\=8j(u<mlB\r\\6_b}}\Z_P{\>|c==ְ?\\]d8hO^R\0\	\\o\0J;/z{f\rY\ΐe\\\5A0\;bסi\>Qv#s\0\1B,\\0\LX#ANÔϵ\UGk.f~b+;s\rF\d\\z\*a\#q\:\ֻ\r\JE.go\t0 \\KiTI\\nm:\r\\dmmż\n^\\r\m/͙PV\\'E=\dƦ\O/KF+\\\SUv\=f','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3688,'2018-05-27 21:20:27',1,'product.php','cPath=5_19&product_type=1&pID=2&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sn\0\ēb\rv\V`\q@[C@\\JmIv\I$O\K֑NHJJf\|ˋmc\Þ}\6Y\+UD6P9	\\|3\\;|5)j\5#pR\~(\<~\#R\'\bj| Ej\WX*2E+\\¤(G\\t\awR\\\tCֹ\2{Dm{\;`סiu(J;xxK2NE%\"\:-ӂM1*5^\s\--SG!Z\Bm8n:Bm\\<	%\"?6{T\NrflZ\\T9ta1s\\\\\\~{\Z_P{\\r\Fd\~Z\~\^/wZh͙\3[\\;8RuڎJrdmٰ\ZR:\\0!>_\:\ֻ\r\J\\@Mu_','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3689,'2018-05-27 21:20:27',1,'product.php','cPath=5_19&product_type=1&pID=2&action=update_product&page=1','174.235.133.72',1,'',_binary 'Sn\0\ēb\rv\V`\q@[C@\\JmIv\I$O\K֑NHJJf\|ˋmc\Þ}\6Y\+UD6P9	\\|3\\;|5)j\5#pR\~(\<~\#R\'\bj| Ej\WX*2E+\\¤(G\\t\awR\\\tCֹ\2{Dm{\;`סiu(J;xxK2NE%\"\:-ӂM1*5^\s\--SG!Z\Bm8n:Bm\\<	%\"?6{T\NrflZ\\T9ta1s\\\\\\~{\Z_P{\\r\Fd\~Z\~\^/wZh͙\3[\\;8RuڎJrdmٰ\ZR:\\0!>_\:\ֻ\r\J\\@Mu_','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3690,'2018-05-27 21:20:27',1,'product.php','cPath=5_19&product_type=1&pID=2&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sn\0\ēb\rv\V`\q@[C@\\JmIv\I$O\K֑NHJJf\|ˋmc\Þ}\6Y\+UD6P9	\\|3\\;|5)j\5#pR\~(\<~\#R\'\bj| Ej\WX*2E+\\¤(G\\t\awR\\\tCֹ\2{Dm{\;`סiu(J;xxK2NE%\"\:-ӂM1*5^\s\--SG!Z\Bm8n:Bm\\<	%\"?6{T\NrflZ\\T9ta1s\\\\\\~{\Z_P{\\r\Fd\~Z\~\^/wZh͙\3[\\;8RuڎJrdmٰ\ZR:\\0!>_\:\ֻ\r\J\\@Mu_','Updated product 2 via admin console.','info'),(3691,'2018-05-27 21:20:28',1,'categories.php','cPath=5_19&pID=2&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3692,'2018-05-27 21:20:28',1,'categories.php','cPath=5_19&pID=2&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3693,'2018-05-27 21:20:34',1,'product.php','page=1&product_type=1&cPath=5_19&pID=3&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3694,'2018-05-27 21:20:34',1,'product.php','page=1&product_type=1&cPath=5_19&pID=3&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3695,'2018-05-27 21:20:55',1,'product.php','cPath=5_19&product_type=1&pID=3&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\n\0\Mjg	\\m\\0c\.QYr)\IP\G9\\Z\'\r\\扼\^I5Gmc)\Ţ\YYͪ/.\媸+:lIׂl\Z3&>\<k>V\͢n(t:I#\j^\sb<\=\n\0l]<2Y:=?\\Y\\\~C\jdȨ\D\\wd3x\W\(Z\\\>Uhp\^Ja\\\A<Q>~k3\\b<AΫ\'p\4\\pԠ\=r\6\o,%gH #\\	SDȷ\t:5a\\>\J;#P?CkX\OVu@ϖ;%]֨&,գ\.%QjBq?\\\ojP\T˲Uj\S\!0hIuY\[l]+YQ\"\Y~\_,\cu\\;1༔Ƚoldgr(hS.o','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3696,'2018-05-27 21:20:55',1,'product.php','cPath=5_19&product_type=1&pID=3&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\n\0\Mjg	\\m\\0c\.QYr)\IP\G9\\Z\'\r\\扼\^I5Gmc)\Ţ\YYͪ/.\媸+:lIׂl\Z3&>\<k>V\͢n(t:I#\j^\sb<\=\n\0l]<2Y:=?\\Y\\\~C\jdȨ\D\\wd3x\W\(Z\\\>Uhp\^Ja\\\A<Q>~k3\\b<AΫ\'p\4\\pԠ\=r\6\o,%gH #\\	SDȷ\t:5a\\>\J;#P?CkX\OVu@ϖ;%]֨&,գ\.%QjBq?\\\ojP\T˲Uj\S\!0hIuY\[l]+YQ\"\Y~\_,\cu\\;1༔Ƚoldgr(hS.o','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3697,'2018-05-27 21:20:59',1,'product.php','cPath=5_19&product_type=1&pID=3&action=update_product&page=1','174.235.133.72',0,'',_binary 'S]o\0+VM8\׻{d-VM\t\T(\\G޲%mc\\\\"/Y^̊o\\\*{\ZlI¬=\r\Z!؇\Gǚ4uEet\8\rAy.\5\'0p\y=\6m\\\nJd\\\ \M\tZB\|\Z\\\Q3\6Mp\e\\t}S\5ΔkG\\}Lhp<ՠ\]}\\GFpBdd-ps3Ci0,اh:7Ʀeϊ\\b\\\\}PW>]\ż\J\ֲwt\Z\\"j2w\[\ޏ\M+44\Z\[wf-\\r	F&\l9N=ae\_X\7\\0\c~{md\\[nCI\1zw\{JYl`%\Z*飃E+\\U-Ћe\\A\n\\\ZUyR};\\sT\BFm \\|b\','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3698,'2018-05-27 21:20:59',1,'product.php','cPath=5_19&product_type=1&pID=3&action=update_product&page=1','174.235.133.72',1,'',_binary 'S]o\0+VM8\׻{d-VM\t\T(\\G޲%mc\\\\"/Y^̊o\\\*{\ZlI¬=\r\Z!؇\Gǚ4uEet\8\rAy.\5\'0p\y=\6m\\\nJd\\\ \M\tZB\|\Z\\\Q3\6Mp\e\\t}S\5ΔkG\\}Lhp<ՠ\]}\\GFpBdd-ps3Ci0,اh:7Ʀeϊ\\b\\\\}PW>]\ż\J\ֲwt\Z\\"j2w\[\ޏ\M+44\Z\[wf-\\r	F&\l9N=ae\_X\7\\0\c~{md\\[nCI\1zw\{JYl`%\Z*飃E+\\U-Ћe\\A\n\\\ZUyR};\\sT\BFm \\|b\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3699,'2018-05-27 21:20:59',1,'product.php','cPath=5_19&product_type=1&pID=3&action=update_product&page=1','174.235.133.72',0,'',_binary 'S]o\0+VM8\׻{d-VM\t\T(\\G޲%mc\\\\"/Y^̊o\\\*{\ZlI¬=\r\Z!؇\Gǚ4uEet\8\rAy.\5\'0p\y=\6m\\\nJd\\\ \M\tZB\|\Z\\\Q3\6Mp\e\\t}S\5ΔkG\\}Lhp<ՠ\]}\\GFpBdd-ps3Ci0,اh:7Ʀeϊ\\b\\\\}PW>]\ż\J\ֲwt\Z\\"j2w\[\ޏ\M+44\Z\[wf-\\r	F&\l9N=ae\_X\7\\0\c~{md\\[nCI\1zw\{JYl`%\Z*飃E+\\U-Ћe\\A\n\\\ZUyR};\\sT\BFm \\|b\','Updated product 3 via admin console.','info'),(3700,'2018-05-27 21:21:00',1,'categories.php','cPath=5_19&pID=3&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3701,'2018-05-27 21:21:00',1,'categories.php','cPath=5_19&pID=3&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3702,'2018-05-27 21:21:04',1,'product.php','page=1&product_type=1&cPath=5_19&pID=4&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3703,'2018-05-27 21:21:04',1,'product.php','page=1&product_type=1&cPath=5_19&pID=4&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3704,'2018-05-27 21:21:17',1,'product.php','cPath=5_19&product_type=1&pID=4&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\n\0\Mj/ٺ\\]\1XKT\\rQN/q`~1l\==j\\0[\r\XSOeU\\jV-TuUݬ_Ȗt-\6ڨ1[X\YR-/uC\	kc T7弔\8\<y\{0\0:غ<yd\S5\'\NO\gU,g\;l\r\r\\z\\\rQ\\jh~\o\4Fd?H\kp\2\40n\akK\9\\: qwN\G\r:\cߣo?\}\ކxF2?0E$|yN1\\Xz{\=\\JT?GV|oU`Yq0pR\[oj)\\ \R=q\\;QbA*\\8\u\l@,\Y>\{1\X\	C6!Yռ\Fصr\\%}Q,\\\\z\|1\׍M\l\_\҄dG(','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3705,'2018-05-27 21:21:17',1,'product.php','cPath=5_19&product_type=1&pID=4&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\n\0\Mj/ٺ\\]\1XKT\\rQN/q`~1l\==j\\0[\r\XSOeU\\jV-TuUݬ_Ȗt-\6ڨ1[X\YR-/uC\	kc T7弔\8\<y\{0\0:غ<yd\S5\'\NO\gU,g\;l\r\r\\z\\\rQ\\jh~\o\4Fd?H\kp\2\40n\akK\9\\: qwN\G\r:\cߣo?\}\ކxF2?0E$|yN1\\Xz{\=\\JT?GV|oU`Yq0pR\[oj)\\ \R=q\\;QbA*\\8\u\l@,\Y>\{1\X\	C6!Yռ\Fصr\\%}Q,\\\\z\|1\׍M\l\_\҄dG(','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3706,'2018-05-27 21:21:26',1,'product.php','cPath=5_19&product_type=1&pID=4&action=update_product&page=1','174.235.133.72',0,'',_binary 'S\n\0B\ؑ\ZiM{@EJ^\"\R\߻ƲcTA\\\\EO6V1\\\SYU7n/\U\AdKfmԘ\՝`\:\<k\V\\"\n\)\'\)n\y)\1\'2p\y=0\0:X\<&YzM\(\I\|Zs3z\LN|V\N\\\\\n:\RrH\7\\\S\\'\\u\]\\S\(@F&ۡvgSFȗ}:܍!ϧ邱jQ\\,\i\\!I\;hsHƮ\j\b#T\Z\;:~di\K[\{\\+46\Zl7g5	\\&N\`Y,f\{l\r\r\\ ~\*р8\rY^Y,^W\ƚgM>\\\\G)Bo\-+WJT֨&\]\8\B\AID\\{r~a/','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3707,'2018-05-27 21:21:26',1,'product.php','cPath=5_19&product_type=1&pID=4&action=update_product&page=1','174.235.133.72',1,'',_binary 'S\n\0B\ؑ\ZiM{@EJ^\"\R\߻ƲcTA\\\\EO6V1\\\SYU7n/\U\AdKfmԘ\՝`\:\<k\V\\"\n\)\'\)n\y)\1\'2p\y=0\0:X\<&YzM\(\I\|Zs3z\LN|V\N\\\\\n:\RrH\7\\\S\\'\\u\]\\S\(@F&ۡvgSFȗ}:܍!ϧ邱jQ\\,\i\\!I\;hsHƮ\j\b#T\Z\;:~di\K[\{\\+46\Zl7g5	\\&N\`Y,f\{l\r\r\\ ~\*р8\rY^Y,^W\ƚgM>\\\\G)Bo\-+WJT֨&\]\8\B\AID\\{r~a/','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3708,'2018-05-27 21:21:26',1,'product.php','cPath=5_19&product_type=1&pID=4&action=update_product&page=1','174.235.133.72',0,'',_binary 'S\n\0B\ؑ\ZiM{@EJ^\"\R\߻ƲcTA\\\\EO6V1\\\SYU7n/\U\AdKfmԘ\՝`\:\<k\V\\"\n\)\'\)n\y)\1\'2p\y=0\0:X\<&YzM\(\I\|Zs3z\LN|V\N\\\\\n:\RrH\7\\\S\\'\\u\]\\S\(@F&ۡvgSFȗ}:܍!ϧ邱jQ\\,\i\\!I\;hsHƮ\j\b#T\Z\;:~di\K[\{\\+46\Zl7g5	\\&N\`Y,f\{l\r\r\\ ~\*р8\rY^Y,^W\ƚgM>\\\\G)Bo\-+WJT֨&\]\8\B\AID\\{r~a/','Updated product 4 via admin console.','info'),(3709,'2018-05-27 21:21:26',1,'categories.php','cPath=5_19&pID=4&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3710,'2018-05-27 21:21:27',1,'categories.php','cPath=5_19&pID=4&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3711,'2018-05-27 21:21:31',1,'product.php','page=1&product_type=1&cPath=5_19&pID=5&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3712,'2018-05-27 21:21:31',1,'product.php','page=1&product_type=1&cPath=5_19&pID=5&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3713,'2018-05-27 21:21:48',1,'product.php','cPath=5_19&product_type=1&pID=5&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'Sn\@ρ\چsoMZ\i5\c3\z\ٝ5(\YCE\\yyޛ׬%]\*[f\\'y1)\Tm9+\"\Z^l\'\g\n5\;j~k\\sD\DI\\/i.SL`\\\Q\a\ڤ\ck(9zGXh*}\|V=P\7Ԭ\\h\\S=`\b\Y\\W\FSMl\c_\{\r̞֑/Db\\\@8.\\Z\B8BN=y`.i\\\:\\\\\]%e%?\.&\_\\n\\8\0JO\>PaV*\Gz\|X\T-gdŮ.\XT\E{\\8C\ ɓZ;0]=\\'\\olP\*L<\b!ؓb}+Z\%\:/\r\3$(Y\\G\\~\ix\sBpZ޼+6\dI\\:6\\','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3714,'2018-05-27 21:21:49',1,'product.php','cPath=5_19&product_type=1&pID=5&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'Sn\@ρ\چsoMZ\i5\c3\z\ٝ5(\YCE\\yyޛ׬%]\*[f\\'y1)\Tm9+\"\Z^l\'\g\n5\;j~k\\sD\DI\\/i.SL`\\\Q\a\ڤ\ck(9zGXh*}\|V=P\7Ԭ\\h\\S=`\b\Y\\W\FSMl\c_\{\r̞֑/Db\\\@8.\\Z\B8BN=y`.i\\\:\\\\\]%e%?\.&\_\\n\\8\0JO\>PaV*\Gz\|X\T-gdŮ.\XT\E{\\8C\ ɓZ;0]=\\'\\olP\*L<\b!ؓb}+Z\%\:/\r\3$(Y\\G\\~\ix\sBpZ޼+6\dI\\:6\\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3715,'2018-05-27 21:21:53',1,'product.php','cPath=5_19&product_type=1&pID=5&action=update_product&page=1','174.235.133.72',0,'',_binary 'S\n\0B\ܸؑm|\i4= \\"%/B\r)\\]\Ic\1 \hf碧`R\Q`kU(rVVꓪ\jYWE-\Zm Qc&W\`Cy\[Aˋn(t:\\\ż\8\\<\\0]v\@͉,}Ec$d>\k`&\\\'>ak\\Kn)\J9F$N\\c\\P\{\\\:\.\)gJ #\\3)#y\\>\\\\\\t\\\xuS\\Z\{9m0$iymnp\\uY\[l]+{Gя,-\\`iK8~Oby\\C[\n&)k{h@\C\'\b \xuUa}f]\Yuh~\*^w\ƚgM\.\'xb\'?z%\r\X\=ZV쯔`\QM %7\\Q=qT靅(WF \ܛ\\\0^','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3716,'2018-05-27 21:21:53',1,'product.php','cPath=5_19&product_type=1&pID=5&action=update_product&page=1','174.235.133.72',1,'',_binary 'S\n\0B\ܸؑm|\i4= \\"%/B\r)\\]\Ic\1 \hf碧`R\Q`kU(rVVꓪ\jYWE-\Zm Qc&W\`Cy\[Aˋn(t:\\\ż\8\\<\\0]v\@͉,}Ec$d>\k`&\\\'>ak\\Kn)\J9F$N\\c\\P\{\\\:\.\)gJ #\\3)#y\\>\\\\\\t\\\xuS\\Z\{9m0$iymnp\\uY\[l]+{Gя,-\\`iK8~Oby\\C[\n&)k{h@\C\'\b \xuUa}f]\Yuh~\*^w\ƚgM\.\'xb\'?z%\r\X\=ZV쯔`\QM %7\\Q=qT靅(WF \ܛ\\\0^','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3717,'2018-05-27 21:21:53',1,'product.php','cPath=5_19&product_type=1&pID=5&action=update_product&page=1','174.235.133.72',0,'',_binary 'S\n\0B\ܸؑm|\i4= \\"%/B\r)\\]\Ic\1 \hf碧`R\Q`kU(rVVꓪ\jYWE-\Zm Qc&W\`Cy\[Aˋn(t:\\\ż\8\\<\\0]v\@͉,}Ec$d>\k`&\\\'>ak\\Kn)\J9F$N\\c\\P\{\\\:\.\)gJ #\\3)#y\\>\\\\\\t\\\xuS\\Z\{9m0$iymnp\\uY\[l]+{Gя,-\\`iK8~Oby\\C[\n&)k{h@\C\'\b \xuUa}f]\Yuh~\*^w\ƚgM\.\'xb\'?z%\r\X\=ZV쯔`\QM %7\\Q=qT靅(WF \ܛ\\\0^','Updated product 5 via admin console.','info'),(3718,'2018-05-27 21:21:53',1,'categories.php','cPath=5_19&pID=5&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3719,'2018-05-27 21:21:54',1,'categories.php','cPath=5_19&pID=5&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3720,'2018-05-27 21:25:46',1,'categories.php','cPath=5&cID=19','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3721,'2018-05-27 21:25:46',1,'categories.php','cPath=5&cID=19','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3722,'2018-05-27 21:25:50',1,'categories.php','cID=5','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3723,'2018-05-27 21:25:51',1,'categories.php','cID=5','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3724,'2018-05-27 21:25:55',1,'categories.php','cPath=5','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3725,'2018-05-27 21:25:55',1,'categories.php','cPath=5','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3726,'2018-05-27 21:25:58',1,'categories.php','cID=5','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3727,'2018-05-27 21:25:59',1,'categories.php','cID=5','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3728,'2018-05-27 21:26:01',1,'categories.php','cPath=5','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3729,'2018-05-27 21:26:01',1,'categories.php','cID=5&action=edit_category','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php] with action=edit_category. Review page_parameters and postdata for details.','info'),(3730,'2018-05-27 21:26:02',1,'categories.php','cPath=5','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3731,'2018-05-27 21:26:02',1,'categories.php','cID=5&action=edit_category','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3732,'2018-05-27 21:29:27',1,'categories.php','action=update_category','174.235.133.72',0,'',_binary 'uAo\0\ns-v\-b@m\S\0h,\Z\.(\K%b\E(\=z\r\Z\rL\\_W#k\n\p\=V\dxz\#Ny2G$܀\^U\4y.`*q\~@%\s!\ʜ#؞\E4\VoS+ス\\\cgr`RY|7\]k1qL\OmVG%\\'\\n\QnjLݧf)\9\\\\Iyr_\3D\\0h\]\"wډuLi\0g\Zfa8l_\\Op9<6\Ǹ>LG\r\\CU\JD\#4^*\z6+/xo\#ZkN\','Accessed page [categories.php] with action=update_category. Review page_parameters and postdata for details.','info'),(3733,'2018-05-27 21:29:28',1,'categories.php','action=update_category','174.235.133.72',1,'',_binary 'uAo\0\ns-v\-b@m\S\0h,\Z\.(\K%b\E(\=z\r\Z\rL\\_W#k\n\p\=V\dxz\#Ny2G$܀\^U\4y.`*q\~@%\s!\ʜ#؞\E4\VoS+ス\\\cgr`RY|7\]k1qL\OmVG%\\'\\n\QnjLݧf)\9\\\\Iyr_\3D\\0h\]\"wډuLi\0g\Zfa8l_\\Op9<6\Ǹ>LG\r\\CU\JD\#4^*\z6+/xo\#ZkN\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3734,'2018-05-27 21:29:28',1,'categories.php','cID=5','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3735,'2018-05-27 21:29:28',1,'categories.php','cID=5','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3736,'2018-05-27 21:31:32',1,'layout_controller.php','','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(3737,'2018-05-27 21:31:32',1,'layout_controller.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3738,'2018-05-27 21:32:10',1,'layout_controller.php','cID=153','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(3739,'2018-05-27 21:32:11',1,'layout_controller.php','cID=153','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3740,'2018-05-27 21:32:15',1,'layout_controller.php','cID=153&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(3741,'2018-05-27 21:32:16',1,'layout_controller.php','cID=153&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3742,'2018-05-27 21:32:28',1,'layout_controller.php','cID=153&action=save&layout_box_name=search.php','174.235.133.72',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-\\/\\K\IAW!\r28#,_R\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(3743,'2018-05-27 21:32:28',1,'layout_controller.php','cID=153&action=save&layout_box_name=search.php','174.235.133.72',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2T\A\\ON,\\\Ô)\/*\/JI-\\/\\K\IAW!\r28#,_R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3744,'2018-05-27 21:32:28',1,'layout_controller.php','cID=153','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(3745,'2018-05-27 21:32:29',1,'layout_controller.php','cID=153','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3746,'2018-05-27 21:32:54',1,'layout_controller.php','cID=153&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(3747,'2018-05-27 21:32:54',1,'layout_controller.php','cID=153&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3748,'2018-05-27 21:33:01',1,'layout_controller.php','cID=153&action=save&layout_box_name=search.php','174.235.133.72',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\pI\g\\b!\r28#,_R\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(3749,'2018-05-27 21:33:02',1,'layout_controller.php','cID=153&action=save&layout_box_name=search.php','174.235.133.72',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\pI\g\\b!\r28#,_R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3750,'2018-05-27 21:33:02',1,'layout_controller.php','cID=153','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(3751,'2018-05-27 21:33:03',1,'layout_controller.php','cID=153','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3752,'2018-05-27 21:33:10',1,'layout_controller.php','cID=136','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(3753,'2018-05-27 21:33:10',1,'layout_controller.php','cID=136','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3754,'2018-05-27 21:33:14',1,'layout_controller.php','cID=136&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(3755,'2018-05-27 21:33:14',1,'layout_controller.php','cID=136&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3756,'2018-05-27 21:33:23',1,'layout_controller.php','cID=136&action=save&layout_box_name=categories.php','174.235.133.72',0,'',_binary 'u\A\n \̺m\`))ΈEt̕Pm\\?!胲\L;h\0{E$H\\Cd\`>-\yevT\Zn>bF\\\\r','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(3757,'2018-05-27 21:33:24',1,'layout_controller.php','cID=136&action=save&layout_box_name=categories.php','174.235.133.72',1,'',_binary 'u\A\n \̺m\`))ΈEt̕Pm\\?!胲\L;h\0{E$H\\Cd\`>-\yevT\Zn>bF\\\\r','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3758,'2018-05-27 21:33:24',1,'layout_controller.php','cID=136','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(3759,'2018-05-27 21:33:24',1,'layout_controller.php','cID=136','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3760,'2018-05-27 21:34:22',1,'categories.php','','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3761,'2018-05-27 21:34:22',1,'categories.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3762,'2018-05-27 21:34:25',1,'categories.php','cPath=18','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3763,'2018-05-27 21:34:26',1,'categories.php','cPath=18','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3764,'2018-05-27 21:34:31',1,'categories.php','cID=18','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3765,'2018-05-27 21:34:31',1,'categories.php','cID=18','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3766,'2018-05-27 21:34:37',1,'categories.php','cID=18&action=edit_category','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php] with action=edit_category. Review page_parameters and postdata for details.','info'),(3767,'2018-05-27 21:34:37',1,'categories.php','cPath=18','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3768,'2018-05-27 21:34:37',1,'categories.php','cPath=18','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3769,'2018-05-27 21:34:37',1,'categories.php','cID=18&action=edit_category','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3770,'2018-05-27 21:36:11',1,'categories.php','action=update_category','174.235.133.72',0,'',_binary 'u\k\@\q\i\yA`>\dt\POP2j0:\}\\\С\ \TZaq}\r\r?\'8<o\Z#Ny2\	nA	\ϧ3\B\n_U\4{\\ì/\J;_a.\Gs;<=\1\\)\\	q\Q\CtƈyY90T֟\\A9#eL\B\d$S[;U\;\\'\n\\(GOuguL])\\Z9XY\\\\\<蕤\#^4\S\"\\f\eI;wF7}\\\5\y\"\_]\'CY=\Au1ԩZ\_	\*k\_Ik\\.?','Accessed page [categories.php] with action=update_category. Review page_parameters and postdata for details.','info'),(3771,'2018-05-27 21:36:11',1,'categories.php','action=update_category','174.235.133.72',1,'',_binary 'u\k\@\q\i\yA`>\dt\POP2j0:\}\\\С\ \TZaq}\r\r?\'8<o\Z#Ny2\	nA	\ϧ3\B\n_U\4{\\ì/\J;_a.\Gs;<=\1\\)\\	q\Q\CtƈyY90T֟\\A9#eL\B\d$S[;U\;\\'\n\\(GOuguL])\\Z9XY\\\\\<蕤\#^4\S\"\\f\eI;wF7}\\\5\y\"\_]\'CY=\Au1ԩZ\_	\*k\_Ik\\.?','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3772,'2018-05-27 21:36:12',1,'categories.php','cID=18','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3773,'2018-05-27 21:36:12',1,'categories.php','cID=18','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3774,'2018-05-27 21:38:42',1,'categories.php','cPath=18','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3775,'2018-05-27 21:38:43',1,'categories.php','cPath=18','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3776,'2018-05-27 21:39:13',1,'categories.php','cPath=18_22','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3777,'2018-05-27 21:39:13',1,'categories.php','cPath=18_22','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3778,'2018-05-27 21:39:19',1,'product.php','page=1&product_type=1&cPath=18_22&pID=21&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3779,'2018-05-27 21:39:19',1,'product.php','page=1&product_type=1&cPath=18_22&pID=21&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3780,'2018-05-27 21:39:40',1,'product.php','cPath=18_22&product_type=1&pID=21&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'Sak\0+\LN\[\l\΁-\))\;\\j\'\r7\\\޽\\XPP\Z\(\\\d,e&S\J,j\]\@ \U\\y4A\\0^r\\u᪼YTw\%X\I\\].$SL \\\֐\䁱%\'\\r\u+~bi\3$lO\\\\\_\\\\~iu\NZ\\"y+a!H^\\bԫ.dZݣ5MЍ;öE[]\}N\\xC\\!\kE8^M#E=\͹\&[Bg\F>n6[\;\A?Ħ喽\u6\f+\\KuNp\	k\\\5p\CmW;+J\Y\\$	{jso\ZM\1[ʇ4˹uf.\\rTsK17Jf\nK\bSclo̠s~?xg\>\RY\Վt5?Ì','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3781,'2018-05-27 21:39:40',1,'product.php','cPath=18_22&product_type=1&pID=21&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'Sak\0+\LN\[\l\΁-\))\;\\j\'\r7\\\޽\\XPP\Z\(\\\d,e&S\J,j\]\@ \U\\y4A\\0^r\\u᪼YTw\%X\I\\].$SL \\\֐\䁱%\'\\r\u+~bi\3$lO\\\\\_\\\\~iu\NZ\\"y+a!H^\\bԫ.dZݣ5MЍ;öE[]\}N\\xC\\!\kE8^M#E=\͹\&[Bg\F>n6[\;\A?Ħ喽\u6\f+\\KuNp\	k\\\5p\CmW;+J\Y\\$	{jso\ZM\1[ʇ4˹uf.\\rTsK17Jf\nK\bSclo̠s~?xg\>\RY\Վt5?Ì','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3782,'2018-05-27 21:39:44',1,'product.php','cPath=18_22&product_type=1&pID=21&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sn\0\:\rТ@\\\0d-\\(t\ZM|\\#\\XPP\Z\(\\\d,e&S\J,j\M\@ \U\\y4A\H^2YC\%E}k*k.\¨\<wb\Os\h6=\֐\C\Q%\')\nK0\"hu0^\<\\tU\N\\:]yrv\)B}-\=\T\aۢ.Rrw\5%d7۠Wh\4x\KtOi6\\ϛl)\\L.]dw5obn\\Ŧ\\ŏ4\%Ϳ\\\=u\4Z\\rV;\\j1\ф\Z\Z\ur>X\Z%o[\œ{)y?j\n-\7nH/\'_b\rJgBl\r\9\h\J3\ԋ!N<acj\YQBηHh=ϙ','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3783,'2018-05-27 21:39:45',1,'product.php','cPath=18_22&product_type=1&pID=21&action=update_product&page=1','174.235.133.72',1,'',_binary 'Sn\0\:\rТ@\\\0d-\\(t\ZM|\\#\\XPP\Z\(\\\d,e&S\J,j\M\@ \U\\y4A\H^2YC\%E}k*k.\¨\<wb\Os\h6=\֐\C\Q%\')\nK0\"hu0^\<\\tU\N\\:]yrv\)B}-\=\T\aۢ.Rrw\5%d7۠Wh\4x\KtOi6\\ϛl)\\L.]dw5obn\\Ŧ\\ŏ4\%Ϳ\\\=u\4Z\\rV;\\j1\ф\Z\Z\ur>X\Z%o[\œ{)y?j\n-\7nH/\'_b\rJgBl\r\9\h\J3\ԋ!N<acj\YQBηHh=ϙ','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3784,'2018-05-27 21:39:45',1,'product.php','cPath=18_22&product_type=1&pID=21&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sn\0\:\rТ@\\\0d-\\(t\ZM|\\#\\XPP\Z\(\\\d,e&S\J,j\M\@ \U\\y4A\H^2YC\%E}k*k.\¨\<wb\Os\h6=\֐\C\Q%\')\nK0\"hu0^\<\\tU\N\\:]yrv\)B}-\=\T\aۢ.Rrw\5%d7۠Wh\4x\KtOi6\\ϛl)\\L.]dw5obn\\Ŧ\\ŏ4\%Ϳ\\\=u\4Z\\rV;\\j1\ф\Z\Z\ur>X\Z%o[\œ{)y?j\n-\7nH/\'_b\rJgBl\r\9\h\J3\ԋ!N<acj\YQBηHh=ϙ','Updated product 21 via admin console.','info'),(3785,'2018-05-27 21:39:45',1,'categories.php','cPath=18_22&pID=21&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3786,'2018-05-27 21:39:46',1,'categories.php','cPath=18_22&pID=21&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3787,'2018-05-27 21:41:19',1,'product.php','page=1&product_type=1&cPath=18_22&pID=22&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3788,'2018-05-27 21:41:20',1,'product.php','page=1&product_type=1&cPath=18_22&pID=22&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3789,'2018-05-27 21:41:36',1,'product.php','cPath=18_22&product_type=1&pID=22&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'Sю0\㊓6U*EڪR\#Y6\J9{M\߻@҃Qy\3\ݙYE:\\2\n6:\DD&q\"cY6K\\\83W8}\A\АSkMpfsu܉\k)O@3*g`Y\w&nB9g\y\\j&qMA#~ba\\nmk)밃J@\O%zVat9T\?i9\\DpTy<\\{\zL\nǄ\\0Q/ضؔ\}_\2{ck)\i^\Z1\x\a\\r\>5o|\%\%\mi\߾& y\\w|3z\\$Ǐ}ṳզwnn\\"Y\2Y΍7\\Ph\>\nQ|,`.\%ooL\\\j\K<d7.Bg:\\\\zdA\6z','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3790,'2018-05-27 21:41:36',1,'product.php','cPath=18_22&product_type=1&pID=22&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'Sю0\㊓6U*EڪR\#Y6\J9{M\߻@҃Qy\3\ݙYE:\\2\n6:\DD&q\"cY6K\\\83W8}\A\АSkMpfsu܉\k)O@3*g`Y\w&nB9g\y\\j&qMA#~ba\\nmk)밃J@\O%zVat9T\?i9\\DpTy<\\{\zL\nǄ\\0Q/ضؔ\}_\2{ck)\i^\Z1\x\a\\r\>5o|\%\%\mi\߾& y\\w|3z\\$Ǐ}ṳզwnn\\"Y\2Y΍7\\Ph\>\nQ|,`.\%ooL\\\j\K<d7.Bg:\\\\zdA\6z','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3791,'2018-05-27 21:41:40',1,'product.php','cPath=18_22&product_type=1&pID=22&action=update_product&page=1','174.235.133.72',0,'',_binary 'SQo@+\'K\%[\\rM4mӤNj	\蝏$\g ]!)\Zo\\\{ZgWVPv\*I\X\J\֛\E\rx\N\̬C\\c\u\\6Rtn5\\"JgkF\0\\[\J}\Jy7\x\nQ9=\֐սб	%\vn\SznA_5\Gs\+TvV@\0t3I\5\m\@\Е\_(SCG\\6>\yA\'l[4յ\3UfO=0L\\6hǀӍҲN\>Dܘ\\\*\\2Y\}\\~7P\y\nVd.6_?\\g;\YS#?)t\X=\\\Yю&bh\M(I|ڧ\!;\$;z^ÖКJ4\i	܉G~Q\H[N\\\irp[\,d\\_','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3792,'2018-05-27 21:41:41',1,'product.php','cPath=18_22&product_type=1&pID=22&action=update_product&page=1','174.235.133.72',1,'',_binary 'SQo@+\'K\%[\\rM4mӤNj	\蝏$\g ]!)\Zo\\\{ZgWVPv\*I\X\J\֛\E\rx\N\̬C\\c\u\\6Rtn5\\"JgkF\0\\[\J}\Jy7\x\nQ9=\֐սб	%\vn\SznA_5\Gs\+TvV@\0t3I\5\m\@\Е\_(SCG\\6>\yA\'l[4յ\3UfO=0L\\6hǀӍҲN\>Dܘ\\\*\\2Y\}\\~7P\y\nVd.6_?\\g;\YS#?)t\X=\\\Yю&bh\M(I|ڧ\!;\$;z^ÖКJ4\i	܉G~Q\H[N\\\irp[\,d\\_','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3793,'2018-05-27 21:41:41',1,'product.php','cPath=18_22&product_type=1&pID=22&action=update_product&page=1','174.235.133.72',0,'',_binary 'SQo@+\'K\%[\\rM4mӤNj	\蝏$\g ]!)\Zo\\\{ZgWVPv\*I\X\J\֛\E\rx\N\̬C\\c\u\\6Rtn5\\"JgkF\0\\[\J}\Jy7\x\nQ9=\֐սб	%\vn\SznA_5\Gs\+TvV@\0t3I\5\m\@\Е\_(SCG\\6>\yA\'l[4յ\3UfO=0L\\6hǀӍҲN\>Dܘ\\\*\\2Y\}\\~7P\y\nVd.6_?\\g;\YS#?)t\X=\\\Yю&bh\M(I|ڧ\!;\$;z^ÖКJ4\i	܉G~Q\H[N\\\irp[\,d\\_','Updated product 22 via admin console.','info'),(3794,'2018-05-27 21:41:41',1,'categories.php','cPath=18_22&pID=22&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3795,'2018-05-27 21:41:42',1,'categories.php','cPath=18_22&pID=22&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3796,'2018-05-27 21:41:45',1,'product.php','page=1&product_type=1&cPath=18_22&pID=23&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3797,'2018-05-27 21:41:45',1,'product.php','page=1&product_type=1&cPath=18_22&pID=23&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3798,'2018-05-27 21:42:02',1,'product.php','cPath=18_22&product_type=1&pID=23&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\n\0\u\'9Y\\\i-l˕(\'Am\'k4߬;;\=j\CF^\@FC<ZFT2*V3\\r\\Z<3f֡\Zr\\G\r\riڷQyԅ%u\\N}s\'\UڃM\w&nBg\q\+\r\L|\:\hF\5$ҵP\u\A%\\\\F\2̅\4T\\7{\rD7\"\\-SF\Jg?R\\ǄjQضؔ}\h7vw\\0\r!S\y;jlǀ\U)#4HԸtÖ\6DWiڧ&\NƉG|\OJE\67k\tOM7\a\P\\z6FKu_b\\K^{7n\@\YtJq[\D\\\7x\\\n:\\\Z,_O\\¯itYt','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3799,'2018-05-27 21:42:02',1,'product.php','cPath=18_22&product_type=1&pID=23&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\n\0\u\'9Y\\\i-l˕(\'Am\'k4߬;;\=j\CF^\@FC<ZFT2*V3\\r\\Z<3f֡\Zr\\G\r\riڷQyԅ%u\\N}s\'\UڃM\w&nBg\q\+\r\L|\:\hF\5$ҵP\u\A%\\\\F\2̅\4T\\7{\rD7\"\\-SF\Jg?R\\ǄjQضؔ}\h7vw\\0\r!S\y;jlǀ\U)#4HԸtÖ\6DWiڧ&\NƉG|\OJE\67k\tOM7\a\P\\z6FKu_b\\K^{7n\@\YtJq[\D\\\7x\\\n:\\\Z,_O\\¯itYt','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3800,'2018-05-27 21:42:06',1,'product.php','cPath=18_22&product_type=1&pID=23&action=update_product&page=1','174.235.133.72',0,'',_binary 'SQo@+\'KǑ,[&EiR\\I\'DU+$E\\}g6AkM\3r*\\n\\\6#\J\r]oGڪ3Q]f|CNf4ZUaM}\h-fZ9cY\\\m\ߔ\\;F\0@XAZ\CǍ/ #o=w\q\>AU}\Xғ\"\*ӗ\Z.q\LZP]	\N\\=c\bS^\\I\\ً)\\\\Z1\x0giY\\p`}|nLmr\Ov26\s\tƳ\59o|U$oK,u\Wg\\4\%\Nۃ\\=kj\4X?\Z\g\\z~|	H5\em	A#~b\\n?_v\^\XGo;\H\\w6=o\2-i\K풤?Ep#\"i9c\\V\Ioo','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3801,'2018-05-27 21:42:06',1,'product.php','cPath=18_22&product_type=1&pID=23&action=update_product&page=1','174.235.133.72',1,'',_binary 'SQo@+\'KǑ,[&EiR\\I\'DU+$E\\}g6AkM\3r*\\n\\\6#\J\r]oGڪ3Q]f|CNf4ZUaM}\h-fZ9cY\\\m\ߔ\\;F\0@XAZ\CǍ/ #o=w\q\>AU}\Xғ\"\*ӗ\Z.q\LZP]	\N\\=c\bS^\\I\\ً)\\\\Z1\x0giY\\p`}|nLmr\Ov26\s\tƳ\59o|U$oK,u\Wg\\4\%\Nۃ\\=kj\4X?\Z\g\\z~|	H5\em	A#~b\\n?_v\^\XGo;\H\\w6=o\2-i\K풤?Ep#\"i9c\\V\Ioo','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3802,'2018-05-27 21:42:06',1,'product.php','cPath=18_22&product_type=1&pID=23&action=update_product&page=1','174.235.133.72',0,'',_binary 'SQo@+\'KǑ,[&EiR\\I\'DU+$E\\}g6AkM\3r*\\n\\\6#\J\r]oGڪ3Q]f|CNf4ZUaM}\h-fZ9cY\\\m\ߔ\\;F\0@XAZ\CǍ/ #o=w\q\>AU}\Xғ\"\*ӗ\Z.q\LZP]	\N\\=c\bS^\\I\\ً)\\\\Z1\x0giY\\p`}|nLmr\Ov26\s\tƳ\59o|U$oK,u\Wg\\4\%\Nۃ\\=kj\4X?\Z\g\\z~|	H5\em	A#~b\\n?_v\^\XGo;\H\\w6=o\2-i\K풤?Ep#\"i9c\\V\Ioo','Updated product 23 via admin console.','info'),(3803,'2018-05-27 21:42:07',1,'categories.php','cPath=18_22&pID=23&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3804,'2018-05-27 21:42:07',1,'categories.php','cPath=18_22&pID=23&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3805,'2018-05-27 21:42:09',1,'product.php','page=1&product_type=1&cPath=18_22&pID=24&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3806,'2018-05-27 21:42:10',1,'product.php','page=1&product_type=1&cPath=18_22&pID=24&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3807,'2018-05-27 21:42:10',1,'product.php','page=1&product_type=1&cPath=18_22&pID=24&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3808,'2018-05-27 21:42:10',1,'product.php','page=1&product_type=1&cPath=18_22&pID=24&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3809,'2018-05-27 21:42:30',1,'product.php','cPath=18_22&product_type=1&pID=24&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\j\0\\\'9ifG{}<k[vl˕VNBɿ\\N\⤡~f3:g\\PVQ\"\B$jT+DwQ\93+\\x#y\A\В}g7A]:\\\2:\\:\\أLs\'\Uڣ:3\8\\Z&~p\V<ci\J\?\\\FŃx	\j$^_~G54za.9\\\n\59\]9D\y\r8\[L\U\z=:\nP_	\߰밭.\^gvw\\0-!S+x;\Zlb\ÜZ\}\Z܍K:O\\aGh\S\4Ҋ|p\'^y\\Ov|\OJE\60kt+07\h\@5DS\QȌ\\TnڼƳ2\<\\;l\9\\}9ӱ5X.¯irv\_','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3810,'2018-05-27 21:42:30',1,'product.php','cPath=18_22&product_type=1&pID=24&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\j\0\\\'9ifG{}<k[vl˕VNBɿ\\N\⤡~f3:g\\PVQ\"\B$jT+DwQ\93+\\x#y\A\В}g7A]:\\\2:\\:\\أLs\'\Uڣ:3\8\\Z&~p\V<ci\J\?\\\FŃx	\j$^_~G54za.9\\\n\59\]9D\y\r8\[L\U\z=:\nP_	\߰밭.\^gvw\\0-!S+x;\Zlb\ÜZ\}\Z܍K:O\\aGh\S\4Ҋ|p\'^y\\Ov|\OJE\60kt+07\h\@5DS\QȌ\\TnڼƳ2\<\\;l\9\\}9ӱ5X.¯irv\_','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3811,'2018-05-27 21:42:33',1,'product.php','cPath=18_22&product_type=1&pID=24&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sn@\ҝ!iW\\riVJ{\\i\@-Cg<$Q\_\\6~\~yZg\9ѐ\&6Q\"\J$jVD7Q\r\3K\\x\>\\lhHө5\EP\֗\af\\V7\x\nQ5=\Vz\\&QpƝL\\s\d͠l,\\"@W\uV?+]/\r4]:\2E;tn\Ŧ\}\\\g\ZBXfklǀ\\Ze\ZÁ}1\M?.ݪD\\J\\}3\~\P\\y\n{-`.\%_?\44g;\\\`:,_\\,hGzh4Ps7\\ƏЈ,\AA\\\6\	Ou\A%~!\\\\(MӞ.\F</%~唎M&W}$\\K','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3812,'2018-05-27 21:42:34',1,'product.php','cPath=18_22&product_type=1&pID=24&action=update_product&page=1','174.235.133.72',1,'',_binary 'Sn@\ҝ!iW\\riVJ{\\i\@-Cg<$Q\_\\6~\~yZg\9ѐ\&6Q\"\J$jVD7Q\r\3K\\x\>\\lhHө5\EP\֗\af\\V7\x\nQ5=\Vz\\&QpƝL\\s\d͠l,\\"@W\uV?+]/\r4]:\2E;tn\Ŧ\}\\\g\ZBXfklǀ\\Ze\ZÁ}1\M?.ݪD\\J\\}3\~\P\\y\n{-`.\%_?\44g;\\\`:,_\\,hGzh4Ps7\\ƏЈ,\AA\\\6\	Ou\A%~!\\\\(MӞ.\F</%~唎M&W}$\\K','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3813,'2018-05-27 21:42:34',1,'product.php','cPath=18_22&product_type=1&pID=24&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sn@\ҝ!iW\\riVJ{\\i\@-Cg<$Q\_\\6~\~yZg\9ѐ\&6Q\"\J$jVD7Q\r\3K\\x\>\\lhHө5\EP\֗\af\\V7\x\nQ5=\Vz\\&QpƝL\\s\d͠l,\\"@W\uV?+]/\r4]:\2E;tn\Ŧ\}\\\g\ZBXfklǀ\\Ze\ZÁ}1\M?.ݪD\\J\\}3\~\P\\y\n{-`.\%_?\44g;\\\`:,_\\,hGzh4Ps7\\ƏЈ,\AA\\\6\	Ou\A%~!\\\\(MӞ.\F</%~唎M&W}$\\K','Updated product 24 via admin console.','info'),(3814,'2018-05-27 21:42:34',1,'categories.php','cPath=18_22&pID=24&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3815,'2018-05-27 21:42:35',1,'categories.php','cPath=18_22&pID=24&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3816,'2018-05-27 21:44:33',1,'layout_controller.php','','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(3817,'2018-05-27 21:44:34',1,'layout_controller.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3818,'2018-05-27 21:44:53',1,'configuration.php','gID=19','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3819,'2018-05-27 21:44:53',1,'configuration.php','gID=19','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3820,'2018-05-27 21:47:00',1,'layout_controller.php','','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(3821,'2018-05-27 21:47:00',1,'layout_controller.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3822,'2018-05-27 21:47:25',1,'ezpages.php','','174.235.133.72',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(3823,'2018-05-27 21:47:25',1,'ezpages.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3824,'2018-05-27 21:48:21',1,'ezpages.php','reset_ez_sort_order=2&action=set_ez_sort_order','174.235.133.72',0,'',_binary '\0','Accessed page [ezpages.php] with action=set_ez_sort_order. Review page_parameters and postdata for details.','info'),(3825,'2018-05-27 21:48:22',1,'ezpages.php','reset_ez_sort_order=2&action=set_ez_sort_order','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3826,'2018-05-27 21:48:22',1,'ezpages.php','','174.235.133.72',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(3827,'2018-05-27 21:48:22',1,'ezpages.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3828,'2018-05-27 21:49:15',1,'template_select.php','','174.235.133.72',0,'',_binary '\0','Accessed page [template_select.php]','info'),(3829,'2018-05-27 21:49:16',1,'template_select.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3830,'2018-05-27 21:50:45',1,'configuration.php','gID=10','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3831,'2018-05-27 21:50:46',1,'configuration.php','gID=10','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3832,'2018-05-27 21:50:54',1,'configuration.php','gID=12','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3833,'2018-05-27 21:50:55',1,'configuration.php','gID=12','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3834,'2018-05-27 21:51:16',1,'configuration.php','gID=12&cID=282&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(3835,'2018-05-27 21:51:16',1,'configuration.php','gID=12&cID=282&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3836,'2018-05-27 21:51:29',1,'configuration.php','gID=12&cID=282','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3837,'2018-05-27 21:51:29',1,'configuration.php','gID=12&cID=282','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3838,'2018-05-27 21:52:22',1,'configuration.php','gID=19','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(3839,'2018-05-27 21:52:23',1,'configuration.php','gID=19','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3840,'2018-05-27 21:54:49',1,'banner_manager.php','','174.235.133.72',0,'',_binary '\0','Accessed page [banner_manager.php]','info'),(3841,'2018-05-27 21:54:49',1,'banner_manager.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3842,'2018-05-27 21:55:55',1,'developers_tool_kit.php','','174.235.133.72',0,'',_binary '\0','Accessed page [developers_tool_kit.php]','info'),(3843,'2018-05-27 21:55:56',1,'developers_tool_kit.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3844,'2018-05-27 21:56:12',1,'developers_tool_kit.php','action=locate_all_files','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NT$&ė+\(Uŧe\\\r%P!Ԋ\<2Z\0','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(3845,'2018-05-27 21:56:12',1,'developers_tool_kit.php','action=locate_all_files','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NT$&ė+\(Uŧe\\\r%P!Ԋ\<2Z\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3846,'2018-05-27 23:10:41',0,'login.php ','camefrom=index.php','174.235.133.72',0,'',_binary '\0','Accessed page [login.php]','info'),(3847,'2018-05-27 23:10:42',0,'login.php ','camefrom=index.php','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3848,'2018-05-27 23:11:01',0,'login.php Eagle','camefrom=index.php','174.235.133.72',0,'',_binary 'VJL.\\\SRJ\717KIJI5366510HMHI503724744NR\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do476dbde63354580eb98de0672171913b. Review page_parameters and postdata for details.','info'),(3849,'2018-05-27 23:11:01',0,'login.php Eagle','camefrom=index.php','174.235.133.72',1,'',_binary 'VJL.\\\SRJ\717KIJI5366510HMHI503724744NR\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3850,'2018-05-27 23:11:02',1,'index.php','','174.235.133.72',0,'',_binary '\0','Accessed page [index.php]','info'),(3851,'2018-05-27 23:11:02',1,'index.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3852,'2018-05-27 23:11:17',1,'categories.php','','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3853,'2018-05-27 23:11:18',1,'categories.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3854,'2018-05-27 23:11:27',1,'categories.php','cPath=18','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3855,'2018-05-27 23:11:27',1,'categories.php','cPath=18','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3856,'2018-05-27 23:11:27',1,'categories.php','cPath=18','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3857,'2018-05-27 23:11:27',1,'categories.php','cPath=18','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3858,'2018-05-27 23:11:35',1,'categories.php','cPath=18&cID=24&action=edit_category','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php] with action=edit_category. Review page_parameters and postdata for details.','info'),(3859,'2018-05-27 23:11:35',1,'categories.php','cPath=18&cID=24&action=edit_category','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3860,'2018-05-27 23:11:43',1,'categories.php','cPath=18','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3861,'2018-05-27 23:11:44',1,'categories.php','cPath=18','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3862,'2018-05-27 23:11:48',1,'categories.php','cPath=18_24','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3863,'2018-05-27 23:11:48',1,'categories.php','cPath=18_24','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3864,'2018-05-27 23:11:56',1,'product.php','page=1&product_type=1&cPath=18_24&pID=26&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3865,'2018-05-27 23:11:57',1,'product.php','page=1&product_type=1&cPath=18_24&pID=26&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3866,'2018-05-27 23:12:14',1,'product.php','cPath=18_24&product_type=1&pID=26&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\j\@Eϑ+҂ߌ!Ph$y,,#\Jv\Y\\"\\;\Fk7\9s=g>\YrRi	Jime&q\\J,\\fM\CT\'\d\\\:\^\@^3}n!I]Mpf4s-u\\\z.O@3\rdU_y\؄r\nNs\5?8\J\\'0\Z@A\\m:lN>Gc%zn__\rؿ\PUJɬ@\0t\+\.o\\-c\\X\g\m\Q\MЍ3HAS^\}Nftg\\!SS\\Z\p0gtNsյ\6\\\|\\z\\;MCZbo\'\Z	[UNp\	m\\\"\SMWY#\n\xߋ\ZL4J\=K6X:\D:ݢ\r,y\re/b\RȴL\Es.h\\ہ\3\\n\\\S(겪\G\u]\\Cߣ\?','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3867,'2018-05-27 23:12:15',1,'product.php','cPath=18_24&product_type=1&pID=26&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\j\@Eϑ+҂ߌ!Ph$y,,#\Jv\Y\\"\\;\Fk7\9s=g>\YrRi	Jime&q\\J,\\fM\CT\'\d\\\:\^\@^3}n!I]Mpf4s-u\\\z.O@3\rdU_y\؄r\nNs\5?8\J\\'0\Z@A\\m:lN>Gc%zn__\rؿ\PUJɬ@\0t\+\.o\\-c\\X\g\m\Q\MЍ3HAS^\}Nftg\\!SS\\Z\p0gtNsյ\6\\\|\\z\\;MCZbo\'\Z	[UNp\	m\\\"\SMWY#\n\xߋ\ZL4J\=K6X:\D:ݢ\r,y\re/b\RȴL\Es.h\\ہ\3\\n\\\S(겪\G\u]\\Cߣ\?','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3868,'2018-05-27 23:12:18',1,'product.php','cPath=18_24&product_type=1&pID=26&action=update_product&page=1','174.235.133.72',0,'',_binary 'S]k\0+\\u\\\\-\nW\nm\ڒ[rS\o\W;iެ\ٝE*\\\\*\F\$M\$ӕX\\z,O\ɜuāf\\CF3̂pf4s-u\\fJ	\O@3NzdU<LlB9\e\\G\WC9T՗)ufn#8ɼQ-[\t\\m\Q\vLНwM\}Nf4\\k\0C\\_FN7\nSF0H:5}\Scjt\\>]r$\!#\t6\5/O!\2I%\ź\Թ\\l\\\=\\\4X?\Z\\j3%lC?ǈ@a\0FB\'(H؃M\'MՉ\\\}k\s\r5-\w\%p\'^$~]\%VƓ\b-\AC\\*P\'Bі3Z\z\*kDq1!\Cz>\?','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3869,'2018-05-27 23:12:18',1,'product.php','cPath=18_24&product_type=1&pID=26&action=update_product&page=1','174.235.133.72',1,'',_binary 'S]k\0+\\u\\\\-\nW\nm\ڒ[rS\o\W;iެ\ٝE*\\\\*\F\$M\$ӕX\\z,O\ɜuāf\\CF3̂pf4s-u\\fJ	\O@3NzdU<LlB9\e\\G\WC9T՗)ufn#8ɼQ-[\t\\m\Q\vLНwM\}Nf4\\k\0C\\_FN7\nSF0H:5}\Scjt\\>]r$\!#\t6\5/O!\2I%\ź\Թ\\l\\\=\\\4X?\Z\\j3%lC?ǈ@a\0FB\'(H؃M\'MՉ\\\}k\s\r5-\w\%p\'^$~]\%VƓ\b-\AC\\*P\'Bі3Z\z\*kDq1!\Cz>\?','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3870,'2018-05-27 23:12:18',1,'product.php','cPath=18_24&product_type=1&pID=26&action=update_product&page=1','174.235.133.72',0,'',_binary 'S]k\0+\\u\\\\-\nW\nm\ڒ[rS\o\W;iެ\ٝE*\\\\*\F\$M\$ӕX\\z,O\ɜuāf\\CF3̂pf4s-u\\fJ	\O@3NzdU<LlB9\e\\G\WC9T՗)ufn#8ɼQ-[\t\\m\Q\vLНwM\}Nf4\\k\0C\\_FN7\nSF0H:5}\Scjt\\>]r$\!#\t6\5/O!\2I%\ź\Թ\\l\\\=\\\4X?\Z\\j3%lC?ǈ@a\0FB\'(H؃M\'MՉ\\\}k\s\r5-\w\%p\'^$~]\%VƓ\b-\AC\\*P\'Bі3Z\z\*kDq1!\Cz>\?','Updated product 26 via admin console.','info'),(3871,'2018-05-27 23:12:18',1,'categories.php','cPath=18_24&pID=26&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3872,'2018-05-27 23:12:19',1,'categories.php','cPath=18_24&pID=26&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3873,'2018-05-27 23:12:22',1,'product.php','page=1&product_type=1&cPath=18_24&pID=27&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3874,'2018-05-27 23:12:22',1,'product.php','page=1&product_type=1&cPath=18_24&pID=27&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3875,'2018-05-27 23:12:43',1,'product.php','cPath=18_24&product_type=1&pID=27&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\n0\gmr\;1+$\@r\\\r\xwgg5\f!%3 !\LTr&\L݉Z=,VJF7Q\)3\\x=:\Sj\th*sgsF\05\[ǝ{X\J\O@3&{-`	I\u\\'C)g\q\\Z*&~p%g?17b9\\:ވG%^kR@/Ͽ54za΄v)\?\e:9h r\^%㴗ׯ-eX\\\G\m\QrL(wp4hMuq\:+{P2ź\Qa?\/:LFާ\}ҩƧB[]\q\\\i)\Fr\ĳҚl\\ǯ}&\U63\\6Z\9&J\MoZ\r\\\8~-0g.VG\\r\\i</N\@n\\Z]{\\Pp\I\D\\`F|z~Q\vZF\0','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3876,'2018-05-27 23:12:43',1,'product.php','cPath=18_24&product_type=1&pID=27&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\n0\gmr\;1+$\@r\\\r\xwgg5\f!%3 !\LTr&\L݉Z=,VJF7Q\)3\\x=:\Sj\th*sgsF\05\[ǝ{X\J\O@3&{-`	I\u\\'C)g\q\\Z*&~p%g?17b9\\:ވG%^kR@/Ͽ54za΄v)\?\e:9h r\^%㴗ׯ-eX\\\G\m\QrL(wp4hMuq\:+{P2ź\Qa?\/:LFާ\}ҩƧB[]\q\\\i)\Fr\ĳҚl\\ǯ}&\U63\\6Z\9&J\MoZ\r\\\8~-0g.VG\\r\\i</N\@n\\Z]{\\Pp\I\D\\`F|z~Q\vZF\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3877,'2018-05-27 23:12:49',1,'product.php','cPath=18_24&product_type=1&pID=27&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sn@\ˤm\\rU\]XidZ\xH^\rg?ټF:d\2\n6:ZG\XƋX.\X\\j-\\\"q*cfa\Z\'_3Y}fCMa4U\lu\hfFy\X\˘1\P\I\~\\CFw\3E\\I]41҃\"i\*+\\\\Z.H-:\nP	\\\?c\`]\\Av?\\K)\i\lw؟)LFשp\ؗh\ZSYm\F.$e|5ʹh]AѹyRbyY`\\\\n:7,).i/϶\\\IS;\13X<W\L`h\Z*\݄P?\\\\&ي;)kRFy9lmQj$mqÅx\_JI\)-<NH\\|{{','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3878,'2018-05-27 23:12:50',1,'product.php','cPath=18_24&product_type=1&pID=27&action=update_product&page=1','174.235.133.72',1,'',_binary 'Sn@\ˤm\\rU\]XidZ\xH^\rg?ټF:d\2\n6:ZG\XƋX.\X\\j-\\\"q*cfa\Z\'_3Y}fCMa4U\lu\hfFy\X\˘1\P\I\~\\CFw\3E\\I]41҃\"i\*+\\\\Z.H-:\nP	\\\?c\`]\\Av?\\K)\i\lw؟)LFשp\ؗh\ZSYm\F.$e|5ʹh]AѹyRbyY`\\\\n:7,).i/϶\\\IS;\13X<W\L`h\Z*\݄P?\\\\&ي;)kRFy9lmQj$mqÅx\_JI\)-<NH\\|{{','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3879,'2018-05-27 23:12:50',1,'product.php','cPath=18_24&product_type=1&pID=27&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sn@\ˤm\\rU\]XidZ\xH^\rg?ټF:d\2\n6:ZG\XƋX.\X\\j-\\\"q*cfa\Z\'_3Y}fCMa4U\lu\hfFy\X\˘1\P\I\~\\CFw\3E\\I]41҃\"i\*+\\\\Z.H-:\nP	\\\?c\`]\\Av?\\K)\i\lw؟)LFשp\ؗh\ZSYm\F.$e|5ʹh]AѹyRbyY`\\\\n:7,).i/϶\\\IS;\13X<W\L`h\Z*\݄P?\\\\&ي;)kRFy9lmQj$mqÅx\_JI\)-<NH\\|{{','Updated product 27 via admin console.','info'),(3880,'2018-05-27 23:12:50',1,'categories.php','cPath=18_24&pID=27&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3881,'2018-05-27 23:12:50',1,'categories.php','cPath=18_24&pID=27&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3882,'2018-05-27 23:12:54',1,'product.php','page=1&product_type=1&cPath=18_24&pID=28&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3883,'2018-05-27 23:12:54',1,'product.php','page=1&product_type=1&cPath=18_24&pID=28&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3884,'2018-05-27 23:13:09',1,'product.php','cPath=18_24&product_type=1&pID=28&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'Sю0\\jh\;\\rUTU\=F0\J`s$:ݿwIg3~:g\PW%VP\Q*\$N>4Yy\\2Z*Y[\+\+\>\/l0\\iF\MPUζ\a;1U&\\o\<ɢ(l o\\\&TPPpڝ_1\2\p-#~b\*ݧMI\z\?\\\\ou\\iMOuʏ\n恮VDpPE4\[[6W;\2G{t=\'\rʿ`ס/\Q\pc!S+9-1\p\a\\vcJk_8\9[ɲۃ;̑\E\^;33?ʏYX\\R\fNZ.^h\B=\Sr(\Z\\Ɗ\֜}7\oL:\\j\1C5g{\\ahIM\e\1z','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3885,'2018-05-27 23:13:09',1,'product.php','cPath=18_24&product_type=1&pID=28&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'Sю0\\jh\;\\rUTU\=F0\J`s$:ݿwIg3~:g\PW%VP\Q*\$N>4Yy\\2Z*Y[\+\+\>\/l0\\iF\MPUζ\a;1U&\\o\<ɢ(l o\\\&TPPpڝ_1\2\p-#~b\*ݧMI\z\?\\\\ou\\iMOuʏ\n恮VDpPE4\[[6W;\2G{t=\'\rʿ`ס/\Q\pc!S+9-1\p\a\\vcJk_8\9[ɲۃ;̑\E\^;33?ʏYX\\R\fNZ.^h\B=\Sr(\Z\\Ɗ\֜}7\oL:\\j\1C5g{\\ahIM\e\1z','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3886,'2018-05-27 23:13:13',1,'product.php','cPath=18_24&product_type=1&pID=28&action=update_product&page=1','174.235.133.72',0,'',_binary 'S]o@+\'\\ n\rUT5U%\'Nd%#w{\V\\v;3EE\ɫH+(\n]D(\\\xߊ$\|{\$2\ZʙYY\+\k\>\\m0\\jF\\"JgsF\0\\[ǝqr-r<\h<=\\0k\\0	%\vi?SzA\r\Gs\/+TvT@\0t\\Z\eQt\\'\\\QrLp5(m:\JG\Âg!S+x\r1\p\a\iO\Dܘ\Kq\\'\\7ݡ\r\wU\ni%\\\nK\bSչqMqIoy\n\pxφ\Z\r\O\\8%\hCS\@\߸Apx\R$n\N>\\\\\'x~O\[\aKh\Gm\{	W\)C-t\49#i_2\/','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3887,'2018-05-27 23:13:13',1,'product.php','cPath=18_24&product_type=1&pID=28&action=update_product&page=1','174.235.133.72',1,'',_binary 'S]o@+\'\\ n\rUT5U%\'Nd%#w{\V\\v;3EE\ɫH+(\n]D(\\\xߊ$\|{\$2\ZʙYY\+\k\>\\m0\\jF\\"JgsF\0\\[ǝqr-r<\h<=\\0k\\0	%\vi?SzA\r\Gs\/+TvT@\0t\\Z\eQt\\'\\\QrLp5(m:\JG\Âg!S+x\r1\p\a\iO\Dܘ\Kq\\'\\7ݡ\r\wU\ni%\\\nK\bSչqMqIoy\n\pxφ\Z\r\O\\8%\hCS\@\߸Apx\R$n\N>\\\\\'x~O\[\aKh\Gm\{	W\)C-t\49#i_2\/','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3888,'2018-05-27 23:13:13',1,'product.php','cPath=18_24&product_type=1&pID=28&action=update_product&page=1','174.235.133.72',0,'',_binary 'S]o@+\'\\ n\rUT5U%\'Nd%#w{\V\\v;3EE\ɫH+(\n]D(\\\xߊ$\|{\$2\ZʙYY\+\k\>\\m0\\jF\\"JgsF\0\\[ǝqr-r<\h<=\\0k\\0	%\vi?SzA\r\Gs\/+TvT@\0t\\Z\eQt\\'\\\QrLp5(m:\JG\Âg!S+x\r1\p\a\iO\Dܘ\Kq\\'\\7ݡ\r\wU\ni%\\\nK\bSչqMqIoy\n\pxφ\Z\r\O\\8%\hCS\@\߸Apx\R$n\N>\\\\\'x~O\[\aKh\Gm\{	W\)C-t\49#i_2\/','Updated product 28 via admin console.','info'),(3889,'2018-05-27 23:13:14',1,'categories.php','cPath=18_24&pID=28&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3890,'2018-05-27 23:13:14',1,'categories.php','cPath=18_24&pID=28&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3891,'2018-05-27 23:13:16',1,'product.php','page=1&product_type=1&cPath=18_24&pID=29&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3892,'2018-05-27 23:13:17',1,'product.php','page=1&product_type=1&cPath=18_24&pID=29&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3893,'2018-05-27 23:13:30',1,'product.php','cPath=18_24&product_type=1&pID=29&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\j\@C\qzcB&\nҖGñҝ\NۓmB+\n$;zvvvgg4\\XPP\Z\(\\\d\e*g21\\-dr\\xU0tMP؃Ƀpђcc*o\λ\x,\n\$={\\(\^@XA^um\AA\\v\bf\;0+~\Έ\r\H\\\\Fx\*I<I>(\\\(\PU_\*?* G:AӺ\2\\.d\\m\S\zMp4MFGÍÿEq^s<jC\j\-\\95N\7\:{te[\\\GNY\-\[#?\\i\\\;m\mu:瘤r9i\EsGs(\F\\c.9~H_\ut6{DԀ\R\[7.E_uNd\\r\_\\Z\\K>','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3894,'2018-05-27 23:13:31',1,'product.php','cPath=18_24&product_type=1&pID=29&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\j\@C\qzcB&\nҖGñҝ\NۓmB+\n$;zvvvgg4\\XPP\Z\(\\\d\e*g21\\-dr\\xU0tMP؃Ƀpђcc*o\λ\x,\n\$={\\(\^@XA^um\AA\\v\bf\;0+~\Έ\r\H\\\\Fx\*I<I>(\\\(\PU_\*?* G:AӺ\2\\.d\\m\S\zMp4MFGÍÿEq^s<jC\j\-\\95N\7\:{te[\\\GNY\-\[#?\\i\\\;m\mu:瘤r9i\EsGs(\F\\c.9~H_\ut6{DԀ\R\[7.E_uNd\\r\_\\Z\\K>','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3895,'2018-05-27 23:14:48',0,'login.php ','camefrom=index.php','174.235.133.72',0,'',_binary '\0','Accessed page [login.php]','info'),(3896,'2018-05-27 23:14:49',0,'login.php ','camefrom=index.php','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3897,'2018-05-27 23:15:14',0,'login.php Eagle','camefrom=index.php','174.235.133.72',0,'',_binary 'VJL.\\\SRJ\O5H1K666N1NMM45I57N50HLM3M3H5KT\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=doe0d6c333d3eea54e73e780c9ef5f0e6a. Review page_parameters and postdata for details.','info'),(3898,'2018-05-27 23:15:14',0,'login.php Eagle','camefrom=index.php','174.235.133.72',1,'',_binary 'VJL.\\\SRJ\O5H1K666N1NMM45I57N50HLM3M3H5KT\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3899,'2018-05-27 23:15:15',1,'index.php','','174.235.133.72',0,'',_binary '\0','Accessed page [index.php]','info'),(3900,'2018-05-27 23:15:15',1,'index.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3901,'2018-05-27 23:15:22',1,'categories.php','','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3902,'2018-05-27 23:15:22',1,'categories.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3903,'2018-05-27 23:15:25',1,'categories.php','cPath=18','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3904,'2018-05-27 23:15:26',1,'categories.php','cPath=18','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3905,'2018-05-27 23:15:29',1,'categories.php','cPath=18_24','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3906,'2018-05-27 23:15:29',1,'categories.php','cPath=18_24','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3907,'2018-05-27 23:15:32',1,'product.php','page=1&product_type=1&cPath=18_24&pID=29&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3908,'2018-05-27 23:15:32',1,'product.php','page=1&product_type=1&cPath=18_24&pID=29&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3909,'2018-05-27 23:15:45',1,'product.php','cPath=18_24&product_type=1&pID=29&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\n0禵FUNtV\'}d-`\J&-4:\`fgwvϨq6)y\rYfhͥ3fj!\󕔫n\n<Sf֡\Z{=c\:\SjҴo*sgsF\05\[ǝ{P[\Ϙ\	(xF\D7\]\~\:\Rp\\P1uXKΞO\\noZ,\Kp-P?H\\ot\\ه9s\}M,t\d\a\bE;\\^_\ʰ\Y1ڢ\0\\Pna?x\\\\\ubwW&duǣ\\]t2BtO>\:lm}:\:k\~=H9[\\r\\AǪ\LMVs\\\M6*(\d=\n\R\3c\\4I\,n\\Z]\ʓǉ\\r\M\b;\\','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3910,'2018-05-27 23:15:46',1,'product.php','cPath=18_24&product_type=1&pID=29&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\n0禵FUNtV\'}d-`\J&-4:\`fgwvϨq6)y\rYfhͥ3fj!\󕔫n\n<Sf֡\Z{=c\:\SjҴo*sgsF\05\[ǝ{P[\Ϙ\	(xF\D7\]\~\:\Rp\\P1uXKΞO\\noZ,\Kp-P?H\\ot\\ه9s\}M,t\d\a\bE;\\^_\ʰ\Y1ڢ\0\\Pna?x\\\\\ubwW&duǣ\\]t2BtO>\:lm}:\:k\~=H9[\\r\\AǪ\LMVs\\\M6*(\d=\n\R\3c\\4I\,n\\Z]\ʓǉ\\r\M\b;\\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3911,'2018-05-27 23:15:49',1,'product.php','cPath=18_24&product_type=1&pID=29&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sn@\;$\*EvJi+\\\IT\\@\\\\\~6\Q\l2*\\n\\\\&Z\X.dWb\HY\\*v*cfij\'\0U}f!E\F3*gAU8[3\ZV\:Vb\6^\\\K\O@3\ZOjU\wlBݩۯ[\gMv\\\\r9L]LGpPYt>7\0t\\'\m\Q\MpfPMyFG\Ìgo!S\y5pP2Aש\ط(\\\\@ms\ͽK/2\mE\\\Z\\ܜO!\J\\%\ź\s\\{\\l\\a4p\C{\+qp=\\nvc;\\<\b\_\d\'\\Z<\b$^yk9lMp%^\"i8e\\UIq\0','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3912,'2018-05-27 23:15:49',1,'product.php','cPath=18_24&product_type=1&pID=29&action=update_product&page=1','174.235.133.72',1,'',_binary 'Sn@\;$\*EvJi+\\\IT\\@\\\\\~6\Q\l2*\\n\\\\&Z\X.dWb\HY\\*v*cfij\'\0U}f!E\F3*gAU8[3\ZV\:Vb\6^\\\K\O@3\ZOjU\wlBݩۯ[\gMv\\\\r9L]LGpPYt>7\0t\\'\m\Q\MpfPMyFG\Ìgo!S\y5pP2Aש\ط(\\\\@ms\ͽK/2\mE\\\Z\\ܜO!\J\\%\ź\s\\{\\l\\a4p\C{\+qp=\\nvc;\\<\b\_\d\'\\Z<\b$^yk9lMp%^\"i8e\\UIq\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3913,'2018-05-27 23:15:49',1,'product.php','cPath=18_24&product_type=1&pID=29&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sn@\;$\*EvJi+\\\IT\\@\\\\\~6\Q\l2*\\n\\\\&Z\X.dWb\HY\\*v*cfij\'\0U}f!E\F3*gAU8[3\ZV\:Vb\6^\\\K\O@3\ZOjU\wlBݩۯ[\gMv\\\\r9L]LGpPYt>7\0t\\'\m\Q\MpfPMyFG\Ìgo!S\y5pP2Aש\ط(\\\\@ms\ͽK/2\mE\\\Z\\ܜO!\J\\%\ź\s\\{\\l\\a4p\C{\+qp=\\nvc;\\<\b\_\d\'\\Z<\b$^yk9lMp%^\"i8e\\UIq\0','Updated product 29 via admin console.','info'),(3914,'2018-05-27 23:15:50',1,'categories.php','cPath=18_24&pID=29&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3915,'2018-05-27 23:15:50',1,'categories.php','cPath=18_24&pID=29&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3916,'2018-05-27 23:19:39',1,'ezpages.php','','174.235.133.72',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(3917,'2018-05-27 23:19:40',1,'ezpages.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3918,'2018-05-27 23:20:55',1,'developers_tool_kit.php','','174.235.133.72',0,'',_binary '\0','Accessed page [developers_tool_kit.php]','info'),(3919,'2018-05-27 23:20:56',1,'developers_tool_kit.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3920,'2018-05-27 23:21:08',1,'developers_tool_kit.php','action=locate_all_files','174.235.133.72',0,'',_binary 'MA0br\H< JACCC\q\\\Z\N1٧\0\\!Ç\/`\'\hH\ͦc\ܖ\\yiFX/\','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(3921,'2018-05-27 23:21:08',1,'developers_tool_kit.php','action=locate_all_files','174.235.133.72',1,'',_binary 'MA0br\H< JACCC\q\\\Z\N1٧\0\\!Ç\/`\'\hH\ͦc\ܖ\\yiFX/\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3922,'2018-05-28 00:28:14',0,'login.php ','camefrom=categories.php','174.235.133.72',0,'',_binary '\0','Accessed page [login.php]','info'),(3923,'2018-05-28 00:28:15',0,'login.php ','camefrom=categories.php','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3924,'2018-05-28 00:28:34',0,'login.php Eagle','camefrom=categories.php','174.235.133.72',0,'',_binary 'VJL.\\\SRJ\7H205N47JJN3L63N1H42JLN04K1V\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do0b053a72bcf099c63d78a22acd8696d3. Review page_parameters and postdata for details.','info'),(3925,'2018-05-28 00:28:35',0,'login.php Eagle','camefrom=categories.php','174.235.133.72',1,'',_binary 'VJL.\\\SRJ\7H205N47JJN3L63N1H42JLN04K1V\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3926,'2018-05-28 00:28:35',1,'categories.php','','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3927,'2018-05-28 00:28:36',1,'categories.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3928,'2018-05-28 00:28:40',1,'categories.php','cPath=5','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3929,'2018-05-28 00:28:40',1,'categories.php','cPath=5','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3930,'2018-05-28 00:28:46',1,'categories.php','cPath=5_20','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3931,'2018-05-28 00:28:47',1,'categories.php','cPath=5_20','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3932,'2018-05-28 00:30:50',1,'product.php','page=1&product_type=1&cPath=5_20&pID=6&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3933,'2018-05-28 00:30:51',1,'product.php','page=1&product_type=1&cPath=5_20&pID=6&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3934,'2018-05-28 00:31:11',1,'product.php','cPath=5_20&product_type=1&pID=6&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\n\0\\M`\>r\y{Yv	ȒKQy\/elP=Cr\=:\Z\\\\\\UZTjn\nu^ݭWQvْ6\l\ZG`>MH5z+\uP7sFOhd`\vY\7\DN1\\[@\'}jp\"KG\ߥϺ|X_<BDS\\/\p|\sU1p{ZkS\\A3\&=\Ͱ\\A<\,vT-)E\\R&\t|žGߞ\}\ބK%B	TK:\1`1a\HC,\~\h{\\OJ`Sˉ\]m>z\n1$16[\\[Բ\Fصo\Z#6D#\\Q\B\\n\rv\W\oo\)?,?','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3935,'2018-05-28 00:31:11',1,'product.php','cPath=5_20&product_type=1&pID=6&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\n\0\\M`\>r\y{Yv	ȒKQy\/elP=Cr\=:\Z\\\\\\UZTjn\nu^ݭWQvْ6\l\ZG`>MH5z+\uP7sFOhd`\vY\7\DN1\\[@\'}jp\"KG\ߥϺ|X_<BDS\\/\p|\sU1p{ZkS\\A3\&=\Ͱ\\A<\,vT-)E\\R&\t|žGߞ\}\ބK%B	TK:\1`1a\HC,\~\h{\\OJ`Sˉ\]m>z\n1$16[\\[Բ\Fصo\Z#6D#\\Q\B\\n\rv\W\oo\)?,?','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3936,'2018-05-28 00:31:22',1,'product.php','cPath=5_20&product_type=1&pID=6&action=update_product&page=1','174.235.133.72',0,'',_binary 'S\n\0\\&Rt\\0m\#\.[r)*{);E\\Q3CWޑ/\K`,mUE\:S\\\z򫼅f\	m\8;\`|t\YA\A]o\:xN\\e!ߘ8Njl\4s\\\\nGtt{hbL\Oc\40n\"\s{m\Z\N򹁆k!)ct\K\\\0̠\v\\'\\g2\⩔Ͷ\ǀE)#:\>-\M\\`Z_\4z(Ff\D\Bu謬[jYc%Tlk7\ZV޳o#\\\MӇ>v\N7?Qs\\f8h4X\\'p\?hGl\ng\\e\o/m0w\'I?V&\r\*&\3)}\0','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3937,'2018-05-28 00:31:22',1,'product.php','cPath=5_20&product_type=1&pID=6&action=update_product&page=1','174.235.133.72',1,'',_binary 'S\n\0\\&Rt\\0m\#\.[r)*{);E\\Q3CWޑ/\K`,mUE\:S\\\z򫼅f\	m\8;\`|t\YA\A]o\:xN\\e!ߘ8Njl\4s\\\\nGtt{hbL\Oc\40n\"\s{m\Z\N򹁆k!)ct\K\\\0̠\v\\'\\g2\⩔Ͷ\ǀE)#:\>-\M\\`Z_\4z(Ff\D\Bu謬[jYc%Tlk7\ZV޳o#\\\MӇ>v\N7?Qs\\f8h4X\\'p\?hGl\ng\\e\o/m0w\'I?V&\r\*&\3)}\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3938,'2018-05-28 00:31:22',1,'product.php','cPath=5_20&product_type=1&pID=6&action=update_product&page=1','174.235.133.72',0,'',_binary 'S\n\0\\&Rt\\0m\#\.[r)*{);E\\Q3CWޑ/\K`,mUE\:S\\\z򫼅f\	m\8;\`|t\YA\A]o\:xN\\e!ߘ8Njl\4s\\\\nGtt{hbL\Oc\40n\"\s{m\Z\N򹁆k!)ct\K\\\0̠\v\\'\\g2\⩔Ͷ\ǀE)#:\>-\M\\`Z_\4z(Ff\D\Bu謬[jYc%Tlk7\ZV޳o#\\\MӇ>v\N7?Qs\\f8h4X\\'p\?hGl\ng\\e\o/m0w\'I?V&\r\*&\3)}\0','Updated product 6 via admin console.','info'),(3939,'2018-05-28 00:31:22',1,'categories.php','cPath=5_20&pID=6&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3940,'2018-05-28 00:31:23',1,'categories.php','cPath=5_20&pID=6&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3941,'2018-05-28 00:31:26',1,'product.php','page=1&product_type=1&cPath=5_20&pID=72&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3942,'2018-05-28 00:31:27',1,'product.php','page=1&product_type=1&cPath=5_20&pID=72&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3943,'2018-05-28 00:31:43',1,'product.php','cPath=5_20&product_type=1&pID=72&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S0sTm\jڮ\X\\Z\\c\\\,$\\rޛ7/I\l*R\Z\\>\\E\\\Vl}i\wI3[\Py3>\+I\Z{\\}P6\v׌\a\'\\Ň]\x\n\b\{Z`\0\P\8yRlB\Y\\@\\\Ov\70\+6J\G0œѣn)yK\1~@\\U\r@\ts4\\{o\:\Dt@\\}q\A=z\3;\'`b]\\\	kF0H\tx6^\aOh\\Lb+Vf\\\ZOkT-l#\n1\\Ã;e{H5f(̙\$\ d$	\\\tV\.\\\\55\r\vm֠QXY\rSkqsh\'\\%9\N頋\\\%{\G\b|V\"\8;\\\\','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3944,'2018-05-28 00:31:43',1,'product.php','cPath=5_20&product_type=1&pID=72&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S0sTm\jڮ\X\\Z\\c\\\,$\\rޛ7/I\l*R\Z\\>\\E\\\Vl}i\wI3[\Py3>\+I\Z{\\}P6\v׌\a\'\\Ň]\x\n\b\{Z`\0\P\8yRlB\Y\\@\\\Ov\70\+6J\G0œѣn)yK\1~@\\U\r@\ts4\\{o\:\Dt@\\}q\A=z\3;\'`b]\\\	kF0H\tx6^\aOh\\Lb+Vf\\\ZOkT-l#\n1\\Ã;e{H5f(̙\$\ d$	\\\tV\.\\\\55\r\vm֠QXY\rSkqsh\'\\%9\N頋\\\%{\G\b|V\"\8;\\\\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3945,'2018-05-28 00:31:47',1,'product.php','cPath=5_20&product_type=1&pID=72&action=update_product&page=1','174.235.133.72',0,'',_binary 'R0sTm\jڮ\X\\Z!#\\c\\\ݐ,Zn\\<%*T\\\*\\'\\kيM/\]!\vbfcj/q&3\}e!Ic]e\lw\\VZz\X).>K\'\-\6*OM\;}-\ق2_+h\7)Yn#8ɪV-_hq\3\\Q\&G\?`ߣiui=d2\:ś\мǀӍҺN\\D\2\*/vyn\m\;hb\u˼\\Z]\\\O,\\\\\\\\3s\\L_BǴ\f\\\31\q\'\\'k-~AM\\=ۏ\i!yi\+=5/]D*X\Ľ5\h%l-\Z1UF\\N@\ѢflY0l!:\kK/\Wr','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3946,'2018-05-28 00:31:47',1,'product.php','cPath=5_20&product_type=1&pID=72&action=update_product&page=1','174.235.133.72',1,'',_binary 'R0sTm\jڮ\X\\Z!#\\c\\\ݐ,Zn\\<%*T\\\*\\'\\kيM/\]!\vbfcj/q&3\}e!Ic]e\lw\\VZz\X).>K\'\-\6*OM\;}-\ق2_+h\7)Yn#8ɪV-_hq\3\\Q\&G\?`ߣiui=d2\:ś\мǀӍҺN\\D\2\*/vyn\m\;hb\u˼\\Z]\\\O,\\\\\\\\3s\\L_BǴ\f\\\31\q\'\\'k-~AM\\=ۏ\i!yi\+=5/]D*X\Ľ5\h%l-\Z1UF\\N@\ѢflY0l!:\kK/\Wr','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3947,'2018-05-28 00:31:47',1,'product.php','cPath=5_20&product_type=1&pID=72&action=update_product&page=1','174.235.133.72',0,'',_binary 'R0sTm\jڮ\X\\Z!#\\c\\\ݐ,Zn\\<%*T\\\*\\'\\kيM/\]!\vbfcj/q&3\}e!Ic]e\lw\\VZz\X).>K\'\-\6*OM\;}-\ق2_+h\7)Yn#8ɪV-_hq\3\\Q\&G\?`ߣiui=d2\:ś\мǀӍҺN\\D\2\*/vyn\m\;hb\u˼\\Z]\\\O,\\\\\\\\3s\\L_BǴ\f\\\31\q\'\\'k-~AM\\=ۏ\i!yi\+=5/]D*X\Ľ5\h%l-\Z1UF\\N@\ѢflY0l!:\kK/\Wr','Updated product 72 via admin console.','info'),(3948,'2018-05-28 00:31:48',1,'categories.php','cPath=5_20&pID=72&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3949,'2018-05-28 00:31:48',1,'categories.php','cPath=5_20&pID=72&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3950,'2018-05-28 00:31:52',1,'product.php','page=1&product_type=1&cPath=5_20&pID=7&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3951,'2018-05-28 00:31:53',1,'product.php','page=1&product_type=1&cPath=5_20&pID=7&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3952,'2018-05-28 00:32:14',1,'product.php','cPath=5_20&product_type=1&pID=7&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\n\0\Mj\'\\ֵ\c\QYr)\IP\G\i\'\C\/\g-J\\0[\r\XE^䳼KUܯ\\>\\ZlI\ZGľ`,C\Z^\Bsh	Kc \\[\\\SLd\%ZLrt6<t\S%\'t\F\g=\~WXY*V\57@Fu؁S?\S\\9J1\,l\\9ћf\M\t-_>\\\^M!\#\4\!qw\&\t\bۢ\\Ao\\no	<@H\_T\"G^\ԩl,	[\\?e}\z\6)UlD\B\nU\"%oj^-+7J`\QU %vb,բ,\Qj$Bq~b\ަ\4؞\!\g\\\\"\Sl!\t\'Pފu^\kM-KD\업BgiG8\'GlNC\\'[Iv\Nn\\nI\G','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3953,'2018-05-28 00:32:15',1,'product.php','cPath=5_20&product_type=1&pID=7&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\n\0\Mj\'\\ֵ\c\QYr)\IP\G\i\'\C\/\g-J\\0[\r\XE^䳼KUܯ\\>\\ZlI\ZGľ`,C\Z^\Bsh	Kc \\[\\\SLd\%ZLrt6<t\S%\'t\F\g=\~WXY*V\57@Fu؁S?\S\\9J1\,l\\9ћf\M\t-_>\\\^M!\#\4\!qw\&\t\bۢ\\Ao\\no	<@H\_T\"G^\ԩl,	[\\?e}\z\6)UlD\B\nU\"%oj^-+7J`\QU %vb,բ,\Qj$Bq~b\ަ\4؞\!\g\\\\"\Sl!\t\'Pފu^\kM-KD\업BgiG8\'GlNC\\'[Iv\Nn\\nI\G','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3954,'2018-05-28 00:32:19',1,'product.php','cPath=5_20&product_type=1&pID=7&action=update_product&page=1','174.235.133.72',0,'',_binary 'S\n\0\Mj\'\\֭@\c\QYr)\IP\G\\\Z\'\r\C<Gg-J\\0[\r\XE^䳼KUܯ\\>\\ZlI¬\ZG`_:ː<k>V\렮(4猖:L\2\r\"(h1\\n\\0l\\yp\S%\'ttuEc\d-o9h`&\$aK\Ƣk\n1)h\	ܥMp;85\ŶE_\}\ބ%B	dd\r1`a\HzÂ}ic`l_x\\\vi\l!I\{VƮb^c%Tlj\;\ZG?\\\pH\~\B;%\\LS\vl@?N\KU0^=be\3Tv/koZ\'\~\"\?\\\t\m,	[\\?{/6\r\\\B*h֪\ղ\`\pDko)پNގj\J\,Dy4j8xH\>sO\WF','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3955,'2018-05-28 00:32:20',1,'product.php','cPath=5_20&product_type=1&pID=7&action=update_product&page=1','174.235.133.72',1,'',_binary 'S\n\0\Mj\'\\֭@\c\QYr)\IP\G\\\Z\'\r\C<Gg-J\\0[\r\XE^䳼KUܯ\\>\\ZlI¬\ZG`_:ː<k>V\렮(4猖:L\2\r\"(h1\\n\\0l\\yp\S%\'ttuEc\d-o9h`&\$aK\Ƣk\n1)h\	ܥMp;85\ŶE_\}\ބ%B	dd\r1`a\HzÂ}ic`l_x\\\vi\l!I\{VƮb^c%Tlj\;\ZG?\\\pH\~\B;%\\LS\vl@?N\KU0^=be\3Tv/koZ\'\~\"\?\\\t\m,	[\\?{/6\r\\\B*h֪\ղ\`\pDko)پNގj\J\,Dy4j8xH\>sO\WF','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3956,'2018-05-28 00:32:20',1,'product.php','cPath=5_20&product_type=1&pID=7&action=update_product&page=1','174.235.133.72',0,'',_binary 'S\n\0\Mj\'\\֭@\c\QYr)\IP\G\\\Z\'\r\C<Gg-J\\0[\r\XE^䳼KUܯ\\>\\ZlI¬\ZG`_:ː<k>V\렮(4猖:L\2\r\"(h1\\n\\0l\\yp\S%\'ttuEc\d-o9h`&\$aK\Ƣk\n1)h\	ܥMp;85\ŶE_\}\ބ%B	dd\r1`a\HzÂ}ic`l_x\\\vi\l!I\{VƮb^c%Tlj\;\ZG?\\\pH\~\B;%\\LS\vl@?N\KU0^=be\3Tv/koZ\'\~\"\?\\\t\m,	[\\?{/6\r\\\B*h֪\ղ\`\pDko)پNގj\J\,Dy4j8xH\>sO\WF','Updated product 7 via admin console.','info'),(3957,'2018-05-28 00:32:20',1,'categories.php','cPath=5_20&pID=7&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3958,'2018-05-28 00:32:20',1,'categories.php','cPath=5_20&pID=7&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3959,'2018-05-28 00:32:24',1,'product.php','page=1&product_type=1&cPath=5_20&pID=8&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3960,'2018-05-28 00:32:25',1,'product.php','page=1&product_type=1&cPath=5_20&pID=8&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3961,'2018-05-28 00:32:44',1,'product.php','cPath=5_20&product_type=1&pID=8&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S]o\0+\N\_Xeƒ\R\mm4\\;G\\%k)Tr\\j0ƚl-\"\ŬX\n\\yv5ْ.YB5d>\`,C\ZAМ3Z\\\H:|:\\;\DNQ\bR{tq}\AO\\Q\\_\*\0\Tvko\RT\Dv\\wd3xw+{}1\@l\o	\}:ћf\M\]1\u\ u_^q5SC\\R&\t\bۢ\>Ao\\	<P\I\_t2Gާ\il,	[\\߼}z\6?Ulď\BUb%oj,+7J`\QU %\$]E8UZg!J\&Bq~9M0_~q\\v!\͖Sl!퍨Go%\:/\5VBŦDc\\{BgiG8\'p\n%roۚL\\\r\"E\e\0','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3962,'2018-05-28 00:32:45',1,'product.php','cPath=5_20&product_type=1&pID=8&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S]o\0+\N\_Xeƒ\R\mm4\\;G\\%k)Tr\\j0ƚl-\"\ŬX\n\\yv5ْ.YB5d>\`,C\ZAМ3Z\\\H:|:\\;\DNQ\bR{tq}\AO\\Q\\_\*\0\Tvko\RT\Dv\\wd3xw+{}1\@l\o	\}:ћf\M\]1\u\ u_^q5SC\\R&\t\bۢ\>Ao\\	<P\I\_t2Gާ\il,	[\\߼}z\6?Ulď\BUb%oj,+7J`\QU %\$]E8UZg!J\&Bq~9M0_~q\\v!\͖Sl!퍨Go%\:/\5VBŦDc\\{BgiG8\'p\n%roۚL\\\r\"E\e\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3963,'2018-05-28 00:32:48',1,'product.php','cPath=5_20&product_type=1&pID=8&action=update_product&page=1','174.235.133.72',0,'',_binary 'S\n\0B\ؑlMM{@EJ^\"\R\߻ƲcD7r3d-J\\0[\r\XE^䳼KUܭ\\\"\n\"[ҥ0\@hƑ,ػ\2$Ϛ:+\n\9%,ĩ\\\<\8EAP@\`\z\!O\\1\Q\"سm	\}\\\A3\&Eu{]:G\\\\n\Z)\x\'p1\\0֠\\}}\\	+={N\\\d1`\0e$|ݧ`1M0/\Yx\͖\\\C7P\r譌]\ż\J\Բw4~`i\:K;\\<5r\Z\n\,\[\\$Lc;E<4\"\~zʪ?P\=ޮ2\KQu؁Sߑ\\\\\\t\m,	[\\\D@6!Y\\B$E(\\U\rГe\\F\n\\\ZUR@E8*\\Q \$C\"\=2\','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3964,'2018-05-28 00:32:49',1,'product.php','cPath=5_20&product_type=1&pID=8&action=update_product&page=1','174.235.133.72',1,'',_binary 'S\n\0B\ؑlMM{@EJ^\"\R\߻ƲcD7r3d-J\\0[\r\XE^䳼KUܭ\\\"\n\"[ҥ0\@hƑ,ػ\2$Ϛ:+\n\9%,ĩ\\\<\8EAP@\`\z\!O\\1\Q\"سm	\}\\\A3\&Eu{]:G\\\\n\Z)\x\'p1\\0֠\\}}\\	+={N\\\d1`\0e$|ݧ`1M0/\Yx\͖\\\C7P\r譌]\ż\J\Բw4~`i\:K;\\<5r\Z\n\,\[\\$Lc;E<4\"\~zʪ?P\=ޮ2\KQu؁Sߑ\\\\\\t\m,	[\\\D@6!Y\\B$E(\\U\rГe\\F\n\\\ZUR@E8*\\Q \$C\"\=2\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3965,'2018-05-28 00:32:49',1,'product.php','cPath=5_20&product_type=1&pID=8&action=update_product&page=1','174.235.133.72',0,'',_binary 'S\n\0B\ؑlMM{@EJ^\"\R\߻ƲcD7r3d-J\\0[\r\XE^䳼KUܭ\\\"\n\"[ҥ0\@hƑ,ػ\2$Ϛ:+\n\9%,ĩ\\\<\8EAP@\`\z\!O\\1\Q\"سm	\}\\\A3\&Eu{]:G\\\\n\Z)\x\'p1\\0֠\\}}\\	+={N\\\d1`\0e$|ݧ`1M0/\Yx\͖\\\C7P\r譌]\ż\J\Բw4~`i\:K;\\<5r\Z\n\,\[\\$Lc;E<4\"\~zʪ?P\=ޮ2\KQu؁Sߑ\\\\\\t\m,	[\\\D@6!Y\\B$E(\\U\rГe\\F\n\\\ZUR@E8*\\Q \$C\"\=2\','Updated product 8 via admin console.','info'),(3966,'2018-05-28 00:32:49',1,'categories.php','cPath=5_20&pID=8&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3967,'2018-05-28 00:32:49',1,'categories.php','cPath=5_20&pID=8&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3968,'2018-05-28 00:32:53',1,'product.php','page=1&product_type=1&cPath=5_20&pID=9&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3969,'2018-05-28 00:32:53',1,'product.php','page=1&product_type=1&cPath=5_20&pID=9&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3970,'2018-05-28 00:33:10',1,'product.php','cPath=5_20&product_type=1&pID=9&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'Sn\0\&mXr\mm;vʒ+QN>\N\8Y0\\D>>>fm&F\rƠ\\\\"/Y^̊*\\ŗ\&k 2]\n0j\Zɂ}֡X\XEA\n9gJ\\\$\rZ\sN9S\\,ll\yP\R%\FRgf\\U~C\jtmڣzLISeoe4E\f\`\?\3zs\h\$.-ģ\\\\|H9E;\n^\\8[j[ry\>\\_%cFҐ䈯ih?\t\Z\0eɻ\Qe\Gh|\Z\Z\ȊÍ*T;4A\Jd=ǡJk\Im !\O\6]N\\r\<OY\\\t}ؑOF\	ՑCI΋yMP\	1\K!\a\\Z\kFn\Z\0B)\w&\\\Dd2\o&{','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3971,'2018-05-28 00:33:11',1,'product.php','cPath=5_20&product_type=1&pID=9&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'Sn\0\&mXr\mm;vʒ+QN>\N\8Y0\\D>>>fm&F\rƠ\\\\"/Y^̊*\\ŗ\&k 2]\n0j\Zɂ}֡X\XEA\n9gJ\\\$\rZ\sN9S\\,ll\yP\R%\FRgf\\U~C\jtmڣzLISeoe4E\f\`\?\3zs\h\$.-ģ\\\\|H9E;\n^\\8[j[ry\>\\_%cFҐ䈯ih?\t\Z\0eɻ\Qe\Gh|\Z\Z\ȊÍ*T;4A\Jd=ǡJk\Im !\O\6]N\\r\<OY\\\t}ؑOF\	ՑCI΋yMP\	1\K!\a\\Z\kFn\Z\0B)\w&\\\Dd2\o&{','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3972,'2018-05-28 00:33:14',1,'product.php','cPath=5_20&product_type=1&pID=9&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sn\0\&mXr\m];vʒ+QN>\N\8i0ߤ\Hfm&F\rƠ\\\\"/Y^̊*\\ŗ\&k 2]\n0j\Zɂ}ԡX\XEA\n9gJ\\QlX-\|\)\nZLj\rt@6WTA\)`8x)<3\ߖ`\ƌ\40\$\aKtZCc\u1)hG\K`wp{\qKmK>\}\\\^8&`d\r1`0e$G|]`4\\/Vy>+n\\\4:\\\'ؑC΋yMPe\\8(\0\\r牭ۯ\)C\\jb_\1VF꿊\0_\\U~C\jtmڣzLI\S\\Xj{v\;\\nQ\\-\\^I\rޢj <#+7JP\Ш\%\ɟZ\PQ~8xHkO\\\/','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3973,'2018-05-28 00:33:14',1,'product.php','cPath=5_20&product_type=1&pID=9&action=update_product&page=1','174.235.133.72',1,'',_binary 'Sn\0\&mXr\m];vʒ+QN>\N\8i0ߤ\Hfm&F\rƠ\\\\"/Y^̊*\\ŗ\&k 2]\n0j\Zɂ}ԡX\XEA\n9gJ\\QlX-\|\)\nZLj\rt@6WTA\)`8x)<3\ߖ`\ƌ\40\$\aKtZCc\u1)hG\K`wp{\qKmK>\}\\\^8&`d\r1`0e$G|]`4\\/Vy>+n\\\4:\\\'ؑC΋yMPe\\8(\0\\r牭ۯ\)C\\jb_\1VF꿊\0_\\U~C\jtmڣzLI\S\\Xj{v\;\\nQ\\-\\^I\rޢj <#+7JP\Ш\%\ɟZ\PQ~8xHkO\\\/','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3974,'2018-05-28 00:33:14',1,'product.php','cPath=5_20&product_type=1&pID=9&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sn\0\&mXr\m];vʒ+QN>\N\8i0ߤ\Hfm&F\rƠ\\\\"/Y^̊*\\ŗ\&k 2]\n0j\Zɂ}ԡX\XEA\n9gJ\\QlX-\|\)\nZLj\rt@6WTA\)`8x)<3\ߖ`\ƌ\40\$\aKtZCc\u1)hG\K`wp{\qKmK>\}\\\^8&`d\r1`0e$G|]`4\\/Vy>+n\\\4:\\\'ؑC΋yMPe\\8(\0\\r牭ۯ\)C\\jb_\1VF꿊\0_\\U~C\jtmڣzLI\S\\Xj{v\;\\nQ\\-\\^I\rޢj <#+7JP\Ш\%\ɟZ\PQ~8xHkO\\\/','Updated product 9 via admin console.','info'),(3975,'2018-05-28 00:33:14',1,'categories.php','cPath=5_20&pID=9&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3976,'2018-05-28 00:33:15',1,'categories.php','cPath=5_20&pID=9&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3977,'2018-05-28 00:36:19',1,'categories.php','','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3978,'2018-05-28 00:36:20',1,'categories.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3979,'2018-05-28 00:36:23',1,'categories.php','cPath=11','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3980,'2018-05-28 00:36:24',1,'categories.php','cPath=11','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3981,'2018-05-28 00:36:27',1,'product.php','page=1&product_type=1&cPath=11&pID=75&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(3982,'2018-05-28 00:36:27',1,'product.php','page=1&product_type=1&cPath=11&pID=75&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3983,'2018-05-28 00:38:08',1,'product.php','cPath=11&product_type=1&pID=75&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'V[O\8+G<fehZFH븍\\\364mYE!\~suP\ZV\\$eN$,MEzp~\\\\'\\i7\S<8\tptP0\I8$\\Ha\\7;\r])e)\\LfF\\\$VxGQ\\ߦu\U\s[C/L\l{\!bU\wfb\jr\\\\bۄ&\'\~G]p\\nX\\\Ұ~7i\J\S9\)\t0猜Vn\'\^3yW=hj\F[\\H\*\\[\9$6e)\|\\LTL9	mRH!\G\u\C[Rҽ類U\= ,7tR]\\'b\\}UL9/t\\un?O\)\\0z+\\e@<=\rr2]\<\\Z1PF\)G\{7@{\ě\\\\&#\Y\E\G$˄!0-\\\+˥*<Ŕ\T36\UjGl*\\<V9UP#`9\nc9\J_h#f#|X\\\T\;777O\!\\Ӏ%=3h\[`\MD562\\j8f3\:\Pe>{Dۋ	kE\C\S@(\Wt\̘Ǯ\He\qT%ϫ\\\\/*lё\5\&љ Tp\8\\0¬ #^V\0s!\\\\ާBೝ \"\*}_\"\ۀ\ǘn7\	J\-\0No\1E&\0ؾM1EUxijkC\n\ε\Fz5J$\G\\Ъ\\\\\H!|G%s\*1`l+\$CM>!\r&9ea\\Q\\T\\˂\\k\\ZK7LO7GM\5\o\'\\zH&m6\9\y4\,(\:\\u\5\\\iC?Whq#&A*4{\/˗_N/`x\B}Q/aʖܨ;\G%\LKE\eK11\h\J%&πEF\羿KƟ\\\֗\MOS׋멺\JYu#XT\qKO@z\Sb%&I?\m֌WSIW~n,\k!3\ⰶ\؉\t~?\es\E\`\F4-3\\\\޺R\n?+ 7\n/9Jd!Uau\A\xxz2$ao\\Ϣ\\\4Tq+䢹0#\w뢨e\MVeG~\\3\\|;gMaKx\ց~\\','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(3984,'2018-05-28 00:38:09',1,'product.php','cPath=11&product_type=1&pID=75&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'V[O\8+G<fehZFH븍\\\364mYE!\~suP\ZV\\$eN$,MEzp~\\\\'\\i7\S<8\tptP0\I8$\\Ha\\7;\r])e)\\LfF\\\$VxGQ\\ߦu\U\s[C/L\l{\!bU\wfb\jr\\\\bۄ&\'\~G]p\\nX\\\Ұ~7i\J\S9\)\t0猜Vn\'\^3yW=hj\F[\\H\*\\[\9$6e)\|\\LTL9	mRH!\G\u\C[Rҽ類U\= ,7tR]\\'b\\}UL9/t\\un?O\)\\0z+\\e@<=\rr2]\<\\Z1PF\)G\{7@{\ě\\\\&#\Y\E\G$˄!0-\\\+˥*<Ŕ\T36\UjGl*\\<V9UP#`9\nc9\J_h#f#|X\\\T\;777O\!\\Ӏ%=3h\[`\MD562\\j8f3\:\Pe>{Dۋ	kE\C\S@(\Wt\̘Ǯ\He\qT%ϫ\\\\/*lё\5\&љ Tp\8\\0¬ #^V\0s!\\\\ާBೝ \"\*}_\"\ۀ\ǘn7\	J\-\0No\1E&\0ؾM1EUxijkC\n\ε\Fz5J$\G\\Ъ\\\\\H!|G%s\*1`l+\$CM>!\r&9ea\\Q\\T\\˂\\k\\ZK7LO7GM\5\o\'\\zH&m6\9\y4\,(\:\\u\5\\\iC?Whq#&A*4{\/˗_N/`x\B}Q/aʖܨ;\G%\LKE\eK11\h\J%&πEF\羿KƟ\\\֗\MOS׋멺\JYu#XT\qKO@z\Sb%&I?\m֌WSIW~n,\k!3\ⰶ\؉\t~?\es\E\`\F4-3\\\\޺R\n?+ 7\n/9Jd!Uau\A\xxz2$ao\\Ϣ\\\4Tq+䢹0#\w뢨e\MVeG~\\3\\|;gMaKx\ց~\\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3985,'2018-05-28 00:38:12',1,'product.php','cPath=11&product_type=1&pID=75&action=update_product&page=1','174.235.133.72',0,'',_binary 'V]O\8+W<fehXv\"\qJw4}64mY胯\\\\AitZqg94\At{ݸO\|\\A&\Мk#MWcܽ\J\-K\޻\\\b[4\jH\h4z\Ա\ۖ\P9\>r\XU3\]eYefH\V^\Y\M,M˄9g\r;\9\U]\nm\JeE\ZW|7M/ز!,K\\qe2կ\`b\Ih\e>\`;\\Z\8|\r\{V\N/\\\\_\e5\"u6\\Zay%%\\\\\\pa\?s\\b\n4A\<~fad8Ҭu=\cl^-g\[DkXASp~0\\~G6\\I\\Q&ܰ|\\\Ұ\I{md\V\\yR0\\*S3׹<9<z\Psu4\\t-8>\k\ Kz\\\\1o\\s%Rr@[A\>.\8@c@̵\3\+x\bJlIHb*6dt#L\M+\*Tac9\J\F\Fd)B3\wnnn>u\\C!<^OzF%\A\#\D[\c!\\c6\Q#\rS\G4yЋV\8Px<`ӈ\\n\0\\\"JN\\Z%`#\yz\\S\1ԹƦqhG\\\a\\@tī`n*8\Zz\T-MՃP\\rBW\F\\\?\t`N\Tjnp*<9:ǨD4\f,\k,D\\\\īC#\#=\wܔkoj\05E|Yw\b\3\3\\\te$!C90}%\\0t~R=b	\\Zr[\n.gS\pŝ\\Â\\k\\Z+tO\7GM\5\oǓh\=\\6MLM\E}/wM\(:ElD\:\\\o(n\\\\\n-vD\'H\\Il\'\\|ŝuz\x/p\0eKU3\G%\MPKE\eO\}\4CwgpEF\\\%\\،`\\뷆\S\\⺫nzR`0\*\T9nH]3\*VsMe\nt\3\\E\Q4Dv=^\>?}\χܶ|H!Bl;\Ȧ\&j\\\\Xout7_w϶/:','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(3986,'2018-05-28 00:38:13',1,'product.php','cPath=11&product_type=1&pID=75&action=update_product&page=1','174.235.133.72',1,'',_binary 'V]O\8+W<fehXv\"\qJw4}64mY胯\\\\AitZqg94\At{ݸO\|\\A&\Мk#MWcܽ\J\-K\޻\\\b[4\jH\h4z\Ա\ۖ\P9\>r\XU3\]eYefH\V^\Y\M,M˄9g\r;\9\U]\nm\JeE\ZW|7M/ز!,K\\qe2կ\`b\Ih\e>\`;\\Z\8|\r\{V\N/\\\\_\e5\"u6\\Zay%%\\\\\\pa\?s\\b\n4A\<~fad8Ҭu=\cl^-g\[DkXASp~0\\~G6\\I\\Q&ܰ|\\\Ұ\I{md\V\\yR0\\*S3׹<9<z\Psu4\\t-8>\k\ Kz\\\\1o\\s%Rr@[A\>.\8@c@̵\3\+x\bJlIHb*6dt#L\M+\*Tac9\J\F\Fd)B3\wnnn>u\\C!<^OzF%\A\#\D[\c!\\c6\Q#\rS\G4yЋV\8Px<`ӈ\\n\0\\\"JN\\Z%`#\yz\\S\1ԹƦqhG\\\a\\@tī`n*8\Zz\T-MՃP\\rBW\F\\\?\t`N\Tjnp*<9:ǨD4\f,\k,D\\\\īC#\#=\wܔkoj\05E|Yw\b\3\3\\\te$!C90}%\\0t~R=b	\\Zr[\n.gS\pŝ\\Â\\k\\Z+tO\7GM\5\oǓh\=\\6MLM\E}/wM\(:ElD\:\\\o(n\\\\\n-vD\'H\\Il\'\\|ŝuz\x/p\0eKU3\G%\MPKE\eO\}\4CwgpEF\\\%\\،`\\뷆\S\\⺫nzR`0\*\T9nH]3\*VsMe\nt\3\\E\Q4Dv=^\>?}\χܶ|H!Bl;\Ȧ\&j\\\\Xout7_w϶/:','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3987,'2018-05-28 00:38:13',1,'product.php','cPath=11&product_type=1&pID=75&action=update_product&page=1','174.235.133.72',0,'',_binary 'V]O\8+W<fehXv\"\qJw4}64mY胯\\\\AitZqg94\At{ݸO\|\\A&\Мk#MWcܽ\J\-K\޻\\\b[4\jH\h4z\Ա\ۖ\P9\>r\XU3\]eYefH\V^\Y\M,M˄9g\r;\9\U]\nm\JeE\ZW|7M/ز!,K\\qe2կ\`b\Ih\e>\`;\\Z\8|\r\{V\N/\\\\_\e5\"u6\\Zay%%\\\\\\pa\?s\\b\n4A\<~fad8Ҭu=\cl^-g\[DkXASp~0\\~G6\\I\\Q&ܰ|\\\Ұ\I{md\V\\yR0\\*S3׹<9<z\Psu4\\t-8>\k\ Kz\\\\1o\\s%Rr@[A\>.\8@c@̵\3\+x\bJlIHb*6dt#L\M+\*Tac9\J\F\Fd)B3\wnnn>u\\C!<^OzF%\A\#\D[\c!\\c6\Q#\rS\G4yЋV\8Px<`ӈ\\n\0\\\"JN\\Z%`#\yz\\S\1ԹƦqhG\\\a\\@tī`n*8\Zz\T-MՃP\\rBW\F\\\?\t`N\Tjnp*<9:ǨD4\f,\k,D\\\\īC#\#=\wܔkoj\05E|Yw\b\3\3\\\te$!C90}%\\0t~R=b	\\Zr[\n.gS\pŝ\\Â\\k\\Z+tO\7GM\5\oǓh\=\\6MLM\E}/wM\(:ElD\:\\\o(n\\\\\n-vD\'H\\Il\'\\|ŝuz\x/p\0eKU3\G%\MPKE\eO\}\4CwgpEF\\\%\\،`\\뷆\S\\⺫nzR`0\*\T9nH]3\*VsMe\nt\3\\E\Q4Dv=^\>?}\χܶ|H!Bl;\Ȧ\&j\\\\Xout7_w϶/:','Updated product 75 via admin console.','info'),(3988,'2018-05-28 00:38:13',1,'categories.php','cPath=11&pID=75&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(3989,'2018-05-28 00:38:13',1,'categories.php','cPath=11&pID=75&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3990,'2018-05-28 09:47:10',0,'login.php ','camefrom=index.php','174.235.133.72',0,'',_binary '\0','Accessed page [login.php]','info'),(3991,'2018-05-28 09:47:10',0,'login.php ','camefrom=index.php','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3992,'2018-05-28 09:47:30',0,'login.php Eagle','camefrom=index.php','174.235.133.72',0,'',_binary 'VJL.\\\SRJɷ4L5N57O0LM65HL1HNML4H42N1IJ46V\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do91e3e77a81ec50ad0ceaa78a23d4ba33. Review page_parameters and postdata for details.','info'),(3993,'2018-05-28 09:47:31',0,'login.php Eagle','camefrom=index.php','174.235.133.72',1,'',_binary 'VJL.\\\SRJɷ4L5N57O0LM65HL1HNML4H42N1IJ46V\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3994,'2018-05-28 09:47:31',0,'login.php Eagle','camefrom=index.php','174.235.133.72',1,'',_binary 'VJL.\\\SRJɷ4L5N57O0LM65HL1HNML4H42N1IJ46V\QJL\\̋\K\M\pML\IU\0','Failed admin login attempt:  Eagle','warning'),(3995,'2018-05-28 09:47:48',0,'login.php Eagle','camefrom=index.php','174.235.133.72',0,'',_binary 'VJL.\\\SRJɷ4L5N57O0LM65HL1HNML4H42N1IJ46V\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do91e3e77a81ec50ad0ceaa78a23d4ba33. Review page_parameters and postdata for details.','info'),(3996,'2018-05-28 09:47:48',0,'login.php Eagle','camefrom=index.php','174.235.133.72',1,'',_binary 'VJL.\\\SRJɷ4L5N57O0LM65HL1HNML4H42N1IJ46V\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3997,'2018-05-28 09:47:49',1,'index.php','','174.235.133.72',0,'',_binary '\0','Accessed page [index.php]','info'),(3998,'2018-05-28 09:47:49',1,'index.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(3999,'2018-05-28 09:47:55',1,'categories.php','','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4000,'2018-05-28 09:47:55',1,'categories.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4001,'2018-05-28 09:47:59',1,'categories.php','cPath=5','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4002,'2018-05-28 09:47:59',1,'categories.php','cPath=5','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4003,'2018-05-28 09:48:02',1,'categories.php','cPath=5_19','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4004,'2018-05-28 09:48:02',1,'categories.php','cPath=5_19','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4005,'2018-05-28 09:48:07',1,'categories.php','cPath=5&cID=19','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4006,'2018-05-28 09:48:07',1,'categories.php','cPath=5&cID=19','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4007,'2018-05-28 09:48:12',1,'categories.php','cPath=5&cID=19&action=edit_category','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php] with action=edit_category. Review page_parameters and postdata for details.','info'),(4008,'2018-05-28 09:48:12',1,'categories.php','cPath=5&cID=19&action=edit_category','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4009,'2018-05-28 09:48:28',1,'categories.php','cPath=5&cID=19','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4010,'2018-05-28 09:48:28',1,'categories.php','cPath=5&cID=19','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4011,'2018-05-28 09:48:39',1,'categories.php','cPath=5_19','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4012,'2018-05-28 09:48:40',1,'categories.php','cPath=5_19','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4013,'2018-05-28 09:48:44',1,'product.php','page=1&product_type=1&cPath=5_19&pID=1&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4014,'2018-05-28 09:48:44',1,'product.php','page=1&product_type=1&cPath=5_19&pID=1&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4015,'2018-05-28 09:49:03',1,'categories.php','cPath=5_19&pID=1&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4016,'2018-05-28 09:49:03',1,'categories.php','cPath=5_19&pID=1&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4017,'2018-05-28 09:49:06',1,'product.php','page=1&product_type=1&cPath=5_19&pID=10&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4018,'2018-05-28 09:49:06',1,'product.php','page=1&product_type=1&cPath=5_19&pID=10&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4019,'2018-05-28 09:49:13',1,'categories.php','cPath=5_19&pID=10&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4020,'2018-05-28 09:49:14',1,'categories.php','cPath=5_19&pID=10&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4021,'2018-05-28 09:49:17',1,'product.php','page=1&product_type=1&cPath=5_19&pID=2&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4022,'2018-05-28 09:49:17',1,'product.php','page=1&product_type=1&cPath=5_19&pID=2&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4023,'2018-05-28 09:49:25',1,'categories.php','cPath=5_19&pID=2&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4024,'2018-05-28 09:49:25',1,'categories.php','cPath=5_19&pID=2&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4025,'2018-05-28 09:49:28',1,'product.php','page=1&product_type=1&cPath=5_19&pID=3&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4026,'2018-05-28 09:49:29',1,'product.php','page=1&product_type=1&cPath=5_19&pID=3&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4027,'2018-05-28 09:49:38',1,'categories.php','cPath=5_19&pID=3&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4028,'2018-05-28 09:49:39',1,'categories.php','cPath=5_19&pID=3&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4029,'2018-05-28 09:49:42',1,'product.php','page=1&product_type=1&cPath=5_19&pID=4&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4030,'2018-05-28 09:49:42',1,'product.php','page=1&product_type=1&cPath=5_19&pID=4&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4031,'2018-05-28 09:49:42',1,'product.php','page=1&product_type=1&cPath=5_19&pID=4&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4032,'2018-05-28 09:49:42',1,'product.php','page=1&product_type=1&cPath=5_19&pID=4&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4033,'2018-05-28 09:49:49',1,'product.php','cPath=5_19&product_type=1&pID=4&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S]o\0+\^u\_Xeƒ]\R\\m,_\'xwz)z\n&\\ZXʪլQ\\eu\\|)\"[ҵ \@h\\\cgͻ\JX\\r\\\V\@2)n\y)\1&2py\0\`\䑱O\rԜ\ҁ\\0_ϲX̾W\X\ZV\7@Fr)Up\Yw\e!{r[s\\\\N3\:V[];\\\/ɳ\r\\8;	n:>bߣoO\>N\\	<@\I؞M\"G<\\\il	{\\߼\md%~؉	Z\J~z8\])邭F5(:HT.p\BXu\n\Q>fnSs`lZ\z>\fj0$vmB\"	.y@k\&\>\#Jv=Ba!\'\\R8.%rojM6\ج]\фd{tS','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4034,'2018-05-28 09:49:49',1,'product.php','cPath=5_19&product_type=1&pID=4&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S]o\0+\^u\_Xeƒ]\R\\m,_\'xwz)z\n&\\ZXʪլQ\\eu\\|)\"[ҵ \@h\\\cgͻ\JX\\r\\\V\@2)n\y)\1&2py\0\`\䑱O\rԜ\ҁ\\0_ϲX̾W\X\ZV\7@Fr)Up\Yw\e!{r[s\\\\N3\:V[];\\\/ɳ\r\\8;	n:>bߣoO\>N\\	<@\I؞M\"G<\\\il	{\\߼\md%~؉	Z\J~z8\])邭F5(:HT.p\BXu\n\Q>fnSs`lZ\z>\fj0$vmB\"	.y@k\&\>\#Jv=Ba!\'\\R8.%rojM6\ج]\фd{tS','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4035,'2018-05-28 09:49:55',1,'product.php','cPath=5_19&product_type=1&pID=4&action=update_product&page=1','174.235.133.72',0,'',_binary 'S\N\0+\,KaًdMc\'p\0\,MKE^\"s撗`R\Q`kE\YYͪkU}[T\\\ %]\r6j\\\NwuH5o{+hy\\r\\\V\@┃T\e)\!\'2p\y=0\0:X\<&Yڧ}Dc(d\j`&\\%>akq\tvEb\S\Ә\ְ\ՠ\#=\z6gz3\n%\v\?c\\a\HOq>D1]06^\\rV=\\U7򾞶\67	d캬.[l]+{Gя,-\`iM8\'vܼBc\&a\\\ \Љ,\xuUa~Z2xd\oZ&\Zp\0#\_\\\\X\\@6!;Y\|\~\"hUГe\B\n\\Z\R@G8*\\Q \\ID\\{rv\ \=S]','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4036,'2018-05-28 09:49:56',1,'product.php','cPath=5_19&product_type=1&pID=4&action=update_product&page=1','174.235.133.72',1,'',_binary 'S\N\0+\,KaًdMc\'p\0\,MKE^\"s撗`R\Q`kE\YYͪkU}[T\\\ %]\r6j\\\NwuH5o{+hy\\r\\\V\@┃T\e)\!\'2p\y=0\0:X\<&Yڧ}Dc(d\j`&\\%>akq\tvEb\S\Ә\ְ\ՠ\#=\z6gz3\n%\v\?c\\a\HOq>D1]06^\\rV=\\U7򾞶\67	d캬.[l]+{Gя,-\`iM8\'vܼBc\&a\\\ \Љ,\xuUa~Z2xd\oZ&\Zp\0#\_\\\\X\\@6!;Y\|\~\"hUГe\B\n\\Z\R@G8*\\Q \\ID\\{rv\ \=S]','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4037,'2018-05-28 09:49:59',1,'categories.php','cPath=5_19&pID=4&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4038,'2018-05-28 09:49:59',1,'categories.php','cPath=5_19&pID=4&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4039,'2018-05-28 09:50:02',1,'product.php','page=1&product_type=1&cPath=5_19&pID=5&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4040,'2018-05-28 09:50:02',1,'product.php','page=1&product_type=1&cPath=5_19&pID=5&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4041,'2018-05-28 09:50:09',1,'categories.php','cPath=5_19&pID=5&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4042,'2018-05-28 09:50:10',1,'categories.php','cPath=5_19&pID=5&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4043,'2018-05-28 09:50:35',1,'categories.php','cPath=5&cID=19','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4044,'2018-05-28 09:50:35',1,'categories.php','cPath=5&cID=19','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4045,'2018-05-28 09:50:38',1,'categories.php','cPath=5_26','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4046,'2018-05-28 09:50:38',1,'categories.php','cPath=5_26','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4047,'2018-05-28 09:50:44',1,'product.php','page=1&product_type=1&cPath=5_26&pID=20&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4048,'2018-05-28 09:50:45',1,'product.php','page=1&product_type=1&cPath=5_26&pID=20&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4049,'2018-05-28 09:50:53',1,'categories.php','cPath=5_26&pID=20&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4050,'2018-05-28 09:50:53',1,'categories.php','cPath=5_26&pID=20&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4051,'2018-05-28 09:50:56',1,'categories.php','cPath=5&cID=26','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4052,'2018-05-28 09:50:56',1,'categories.php','cPath=5&cID=26','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4053,'2018-05-28 09:50:59',1,'categories.php','cPath=5_27','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4054,'2018-05-28 09:50:59',1,'categories.php','cPath=5_27','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4055,'2018-05-28 09:51:02',1,'product.php','page=1&product_type=1&cPath=5_27&pID=15&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4056,'2018-05-28 09:51:03',1,'product.php','page=1&product_type=1&cPath=5_27&pID=15&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4057,'2018-05-28 09:51:09',1,'categories.php','cPath=5_27&pID=15&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4058,'2018-05-28 09:51:09',1,'categories.php','cPath=5_27&pID=15&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4059,'2018-05-28 09:51:12',1,'categories.php','cPath=5&cID=27','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4060,'2018-05-28 09:51:13',1,'categories.php','cPath=5&cID=27','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4061,'2018-05-28 09:51:16',1,'categories.php','cPath=5_20','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4062,'2018-05-28 09:51:16',1,'categories.php','cPath=5_20','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4063,'2018-05-28 09:51:20',1,'product.php','page=1&product_type=1&cPath=5_20&pID=6&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4064,'2018-05-28 09:51:20',1,'product.php','page=1&product_type=1&cPath=5_20&pID=6&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4065,'2018-05-28 09:51:27',1,'categories.php','cPath=5_20&pID=6&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4066,'2018-05-28 09:51:28',1,'categories.php','cPath=5_20&pID=6&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4067,'2018-05-28 09:51:30',1,'product.php','page=1&product_type=1&cPath=5_20&pID=9&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4068,'2018-05-28 09:51:31',1,'product.php','page=1&product_type=1&cPath=5_20&pID=9&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4069,'2018-05-28 09:51:38',1,'categories.php','cPath=5_20&pID=9&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4070,'2018-05-28 09:51:38',1,'categories.php','cPath=5_20&pID=9&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4071,'2018-05-28 09:51:41',1,'categories.php','cPath=5&cID=20','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4072,'2018-05-28 09:51:42',1,'categories.php','cPath=5&cID=20','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4073,'2018-05-28 09:51:47',1,'categories.php','cPath=5_28','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4074,'2018-05-28 09:51:47',1,'categories.php','cPath=5_28','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4075,'2018-05-28 09:51:50',1,'product.php','page=1&product_type=1&cPath=5_28&pID=25&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4076,'2018-05-28 09:51:51',1,'product.php','page=1&product_type=1&cPath=5_28&pID=25&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4077,'2018-05-28 09:52:03',1,'product.php','cPath=5_28&product_type=1&pID=25&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'Sn\0\%hs\V\n@\c\0d-\\(d\zO$\\{\x 5\\:YY:KYl\֋\KRC \bf\< q \1Yrђ17AYxW_2\Z\\\<wb\\\n7\\lR{\VW}\abPi\W,\L|\:\\+=OX\PΊ\߿\~U<ȕ\k̍x0K|&1 s!?UPUe\I G\A\n\i\\\\s\\a\]\'\m\S\zL\5ȰæA[^}N\\pÁ)\k\I8\\u2Eݧ\\\iLPBg\\p6g\h\\n3\v3\Y\\Zo\AO]\\B\[\9Ő\i\/e-8WYM1-Ⱦ\P.jNqd\K,u\o\\:\X\!\q\\?}\,C\W\}Lt\\r;\\\r\	M`h|','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4078,'2018-05-28 09:52:04',1,'product.php','cPath=5_28&product_type=1&pID=25&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'Sn\0\%hs\V\n@\c\0d-\\(d\zO$\\{\x 5\\:YY:KYl\֋\KRC \bf\< q \1Yrђ17AYxW_2\Z\\\<wb\\\n7\\lR{\VW}\abPi\W,\L|\:\\+=OX\PΊ\߿\~U<ȕ\k̍x0K|&1 s!?UPUe\I G\A\n\i\\\\s\\a\]\'\m\S\zL\5ȰæA[^}N\\pÁ)\k\I8\\u2Eݧ\\\iLPBg\\p6g\h\\n3\v3\Y\\Zo\AO]\\B\[\9Ő\i\/e-8WYM1-Ⱦ\P.jNqd\K,u\o\\:\X\!\q\\?}\,C\W\}Lt\\r;\\\r\	M`h|','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4079,'2018-05-28 09:52:06',1,'product.php','cPath=5_28&product_type=1&pID=25&action=update_product&page=1','174.235.133.72',0,'',_binary 'Rn\0\%hs\Vv@\\\0h-\\(t\|O|||MZ\L,8h\ZAE4eK\֫lM$\rFaV\M#F>\n-k\[4\n\һ\\z*P\EIoۛy*\)\'0pfޣǉm,\\\x)\x6\P-?\\\\)|\a\Z\Q\5Cӕw!)hG#ԗcB\A--\\\\{\^\"X&8od\r\1`0eDK|]x`C}\ZL\Ɵ6\BN2KinؑwՐ\s\QټR\Tru%[\\\<\\p@c\ڲ\\Y\\BhuXhg`\O*Q=A\\;*ԣ\/Uݹ(>ԳQw\\\c(<Lξ7\l`/(\Z\JE\ܫ\FA+o;,:̢*T\\\"[B.7hD_ԯ','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4080,'2018-05-28 09:52:06',1,'product.php','cPath=5_28&product_type=1&pID=25&action=update_product&page=1','174.235.133.72',1,'',_binary 'Rn\0\%hs\Vv@\\\0h-\\(t\|O|||MZ\L,8h\ZAE4eK\֫lM$\rFaV\M#F>\n-k\[4\n\һ\\z*P\EIoۛy*\)\'0pfޣǉm,\\\x)\x6\P-?\\\\)|\a\Z\Q\5Cӕw!)hG#ԗcB\A--\\\\{\^\"X&8od\r\1`0eDK|]x`C}\ZL\Ɵ6\BN2KinؑwՐ\s\QټR\Tru%[\\\<\\p@c\ڲ\\Y\\BhuXhg`\O*Q=A\\;*ԣ\/Uݹ(>ԳQw\\\c(<Lξ7\l`/(\Z\JE\ܫ\FA+o;,:̢*T\\\"[B.7hD_ԯ','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4081,'2018-05-28 09:52:06',1,'product.php','cPath=5_28&product_type=1&pID=25&action=update_product&page=1','174.235.133.72',0,'',_binary 'Rn\0\%hs\Vv@\\\0h-\\(t\|O|||MZ\L,8h\ZAE4eK\֫lM$\rFaV\M#F>\n-k\[4\n\һ\\z*P\EIoۛy*\)\'0pfޣǉm,\\\x)\x6\P-?\\\\)|\a\Z\Q\5Cӕw!)hG#ԗcB\A--\\\\{\^\"X&8od\r\1`0eDK|]x`C}\ZL\Ɵ6\BN2KinؑwՐ\s\QټR\Tru%[\\\<\\p@c\ڲ\\Y\\BhuXhg`\O*Q=A\\;*ԣ\/Uݹ(>ԳQw\\\c(<Lξ7\l`/(\Z\JE\ܫ\FA+o;,:̢*T\\\"[B.7hD_ԯ','Updated product 25 via admin console.','info'),(4082,'2018-05-28 09:52:07',1,'categories.php','cPath=5_28&pID=25&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4083,'2018-05-28 09:52:07',1,'categories.php','cPath=5_28&pID=25&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4084,'2018-05-28 09:52:16',1,'categories.php','cPath=5&cID=28','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4085,'2018-05-28 09:52:17',1,'categories.php','cPath=5&cID=28','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4086,'2018-05-28 09:52:20',1,'categories.php','cPath=5_29','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4087,'2018-05-28 09:52:20',1,'categories.php','cPath=5_29','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4088,'2018-05-28 09:52:25',1,'product.php','page=1&product_type=1&cPath=5_29&pID=30&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4089,'2018-05-28 09:52:25',1,'product.php','page=1&product_type=1&cPath=5_29&pID=30&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4090,'2018-05-28 09:52:42',1,'product.php','cPath=5_29&product_type=1&pID=30&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S]0+\M\nyK{~H\{d-!+\\kt\$\\\\%i\QQ\Z\H\\\d\i\lmDo\\CK\ZdT̬G$\ό\\\$o\r\MP\5֣228ϝ\>S\@@10-j:\Zz\<Nlc	74\/\\k\\`\7,x\\g\ӯ\w+XqoV6y[Mb`A\Bp)Sˢ@䱈t+T5\\\\ogZa\]\'\\\SzL\O\Zd\cۢ.>S/w\sK\\5\A?:,\\"\\\\q\2&(-go:\3jp\\ԋ\N@\w;q7\\`ھfK(x\\o\o6\rwYΙ\\l\\\EjpPs%\l]a\\\l*~\'~\HcIL:G\\\"?\;ϻX\8ħ\\o2`','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4091,'2018-05-28 09:52:42',1,'product.php','cPath=5_29&product_type=1&pID=30&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S]0+\M\nyK{~H\{d-!+\\kt\$\\\\%i\QQ\Z\H\\\d\i\lmDo\\CK\ZdT̬G$\ό\\\$o\r\MP\5֣228ϝ\>S\@@10-j:\Zz\<Nlc	74\/\\k\\`\7,x\\g\ӯ\w+XqoV6y[Mb`A\Bp)Sˢ@䱈t+T5\\\\ogZa\]\'\\\SzL\O\Zd\cۢ.>S/w\sK\\5\A?:,\\"\\\\q\2&(-go:\3jp\\ԋ\N@\w;q7\\`ھfK(x\\o\o6\rwYΙ\\l\\\EjpPs%\l]a\\\l*~\'~\HcIL:G\\\"?\;ϻX\8ħ\\o2`','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4092,'2018-05-28 09:52:51',1,'product.php','cPath=5_29&product_type=1&pID=30&action=update_product&page=1','174.235.133.72',0,'',_binary 'R]o\0+\vVl\[O\0>hvؒ+QN}qҠ~3\\\tޙXr\5&Y\'y4[d+\\t&ץ0k\	U\>J-k:4\n\ʻ\y*Q\EI\\2\8AY\\@\@ь\\\6VPr\Ӿ>\d<r\4oft1h`TDpǰ\e\t\ڻS\'\\1\pÖl}ȃ.\Jf,P7ٖ\{\_(\\_\ii?؛\X\:\]g\"Kynؓw\s,PٲJ\\ru%_\\\<M\\x@S\޲Wgg)G{a2r\nYhE\I\?T\7T_Ϊ?\\\Gu\Q\D\b\&ϧ\19\h\&\6\\$3t0R\Јl\r}\{V?','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4093,'2018-05-28 09:52:51',1,'product.php','cPath=5_29&product_type=1&pID=30&action=update_product&page=1','174.235.133.72',1,'',_binary 'R]o\0+\vVl\[O\0>hvؒ+QN}qҠ~3\\\tޙXr\5&Y\'y4[d+\\t&ץ0k\	U\>J-k:4\n\ʻ\y*Q\EI\\2\8AY\\@\@ь\\\6VPr\Ӿ>\d<r\4oft1h`TDpǰ\e\t\ڻS\'\\1\pÖl}ȃ.\Jf,P7ٖ\{\_(\\_\ii?؛\X\:\]g\"Kynؓw\s,PٲJ\\ru%_\\\<M\\x@S\޲Wgg)G{a2r\nYhE\I\?T\7T_Ϊ?\\\Gu\Q\D\b\&ϧ\19\h\&\6\\$3t0R\Јl\r}\{V?','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4094,'2018-05-28 09:52:51',1,'product.php','cPath=5_29&product_type=1&pID=30&action=update_product&page=1','174.235.133.72',0,'',_binary 'R]o\0+\vVl\[O\0>hvؒ+QN}qҠ~3\\\tޙXr\5&Y\'y4[d+\\t&ץ0k\	U\>J-k:4\n\ʻ\y*Q\EI\\2\8AY\\@\@ь\\\6VPr\Ӿ>\d<r\4oft1h`TDpǰ\e\t\ڻS\'\\1\pÖl}ȃ.\Jf,P7ٖ\{\_(\\_\ii?؛\X\:\]g\"Kynؓw\s,PٲJ\\ru%_\\\<M\\x@S\޲Wgg)G{a2r\nYhE\I\?T\7T_Ϊ?\\\Gu\Q\D\b\&ϧ\19\h\&\6\\$3t0R\Јl\r}\{V?','Updated product 30 via admin console.','info'),(4095,'2018-05-28 09:52:52',1,'categories.php','cPath=5_29&pID=30&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4096,'2018-05-28 09:52:52',1,'categories.php','cPath=5_29&pID=30&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4097,'2018-05-28 09:52:55',1,'categories.php','cPath=5&cID=29','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4098,'2018-05-28 09:52:55',1,'categories.php','cPath=5&cID=29','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4099,'2018-05-28 09:52:58',1,'categories.php','cID=5','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4100,'2018-05-28 09:52:59',1,'categories.php','cID=5','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4101,'2018-05-28 09:53:01',1,'categories.php','cPath=18','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4102,'2018-05-28 09:53:02',1,'categories.php','cPath=18','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4103,'2018-05-28 09:53:04',1,'categories.php','cPath=18_21','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4104,'2018-05-28 09:53:05',1,'categories.php','cPath=18_21','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4105,'2018-05-28 09:53:10',1,'categories.php','cPath=18&cID=21','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4106,'2018-05-28 09:53:10',1,'categories.php','cPath=18&cID=21','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4107,'2018-05-28 09:53:12',1,'categories.php','cPath=18_21','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4108,'2018-05-28 09:53:12',1,'categories.php','cPath=18_21','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4109,'2018-05-28 09:53:18',1,'product.php','page=1&product_type=1&cPath=18_21&pID=11&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4110,'2018-05-28 09:53:18',1,'product.php','page=1&product_type=1&cPath=18_21&pID=11&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4111,'2018-05-28 09:53:29',1,'product.php','cPath=18_21&product_type=1&pID=11&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\j\0\\\';;.oP(\\)}<[vdɕVILɿ\\N{q\p~wvgvv\ձj u-R2E^,DY,e\\|Ϯi*FΣ\nGps0T.ZR4bQ5\u\cUp\\E\Zs	W\\\@kG\66PQ\\X\\s\M\0V\F\'hHl|\A<Z3\\l٪0z}_Z1_\T\\:ҙ1;U\헼j\\09n\Ss.\i^\Ѷo4\]-%d5C?\\\h.t9?Ǟ\ُCޭV\Z\O	W⅃&\\Ū\\r\1;M	\\\kO7y!˹\z.:h\i\Z=gSna4v-\\O\\\۳\Z8\v)\\Kћ5gl5(Mގ','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4112,'2018-05-28 09:53:30',1,'product.php','cPath=18_21&product_type=1&pID=11&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\j\0\\\';;.oP(\\)}<[vdɕVILɿ\\N{q\p~wvgvv\ձj u-R2E^,DY,e\\|Ϯi*FΣ\nGps0T.ZR4bQ5\u\cUp\\E\Zs	W\\\@kG\66PQ\\X\\s\M\0V\F\'hHl|\A<Z3\\l٪0z}_Z1_\T\\:ҙ1;U\헼j\\09n\Ss.\i^\Ѷo4\]-%d5C?\\\h.t9?Ǟ\ُCޭV\Z\O	W⅃&\\Ū\\r\1;M	\\\kO7y!˹\z.:h\i\Z=gSna4v-\\O\\\۳\Z8\v)\\Kћ5gl5(Mގ','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4113,'2018-05-28 09:53:35',1,'product.php','cPath=18_21&product_type=1&pID=11&action=update_product&page=1','174.235.133.72',0,'',_binary 'SQk\0+&\M\亍\\Q(6\n]F8S[\](\S\\5,o>\IyMZ\\XPP%VPLI.3\,\6\"϶2\n&WIW#k\Q#8\\G\\\Mʻ\\z,\n\3\\{\1b\\x47\\\n\n^ڏ%\3C\0c>V}\\>\\tGU\'\򵁦k\B8A\\=E02fP\\m}\Bڻ\g/,!C/y\r\!\xDD\\\q<OC|Ѻq\~\\eI3/m\\v7P\V.z^9dv]c\hlj>;?m~*nm\u\<	;\\\\<u\X?\Pcq|\,4\\\&V\JGH|\\^<XӋ\\\u(<ξw\\Xz]x\_I\ߋ]\5;޼W-\뎽','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4114,'2018-05-28 09:53:36',1,'product.php','cPath=18_21&product_type=1&pID=11&action=update_product&page=1','174.235.133.72',1,'',_binary 'SQk\0+&\M\亍\\Q(6\n]F8S[\](\S\\5,o>\IyMZ\\XPP%VPLI.3\,\6\"϶2\n&WIW#k\Q#8\\G\\\Mʻ\\z,\n\3\\{\1b\\x47\\\n\n^ڏ%\3C\0c>V}\\>\\tGU\'\򵁦k\B8A\\=E02fP\\m}\Bڻ\g/,!C/y\r\!\xDD\\\q<OC|Ѻq\~\\eI3/m\\v7P\V.z^9dv]c\hlj>;?m~*nm\u\<	;\\\\<u\X?\Pcq|\,4\\\&V\JGH|\\^<XӋ\\\u(<ξw\\Xz]x\_I\ߋ]\5;޼W-\뎽','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4115,'2018-05-28 09:53:36',1,'product.php','cPath=18_21&product_type=1&pID=11&action=update_product&page=1','174.235.133.72',0,'',_binary 'SQk\0+&\M\亍\\Q(6\n]F8S[\](\S\\5,o>\IyMZ\\XPP%VPLI.3\,\6\"϶2\n&WIW#k\Q#8\\G\\\Mʻ\\z,\n\3\\{\1b\\x47\\\n\n^ڏ%\3C\0c>V}\\>\\tGU\'\򵁦k\B8A\\=E02fP\\m}\Bڻ\g/,!C/y\r\!\xDD\\\q<OC|Ѻq\~\\eI3/m\\v7P\V.z^9dv]c\hlj>;?m~*nm\u\<	;\\\\<u\X?\Pcq|\,4\\\&V\JGH|\\^<XӋ\\\u(<ξw\\Xz]x\_I\ߋ]\5;޼W-\뎽','Updated product 11 via admin console.','info'),(4116,'2018-05-28 09:53:36',1,'categories.php','cPath=18_21&pID=11&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4117,'2018-05-28 09:53:37',1,'categories.php','cPath=18_21&pID=11&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4118,'2018-05-28 09:53:40',1,'product.php','page=1&product_type=1&cPath=18_21&pID=12&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4119,'2018-05-28 09:53:40',1,'product.php','page=1&product_type=1&cPath=18_21&pID=12&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4120,'2018-05-28 09:53:51',1,'product.php','cPath=18_21&product_type=1&pID=12&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S]o\0+\Nj\0 \c\0el\$(\G\ik\'\7N$\xzIZS\\PHVɝT2*UqVj!@\뜙hƁ!w!M\\0*>gsܩe\V7\\y\A@hag\\\M,!\?M;\@\\J\oh\/,\@Ib\6\\w؁?\\ß\\*̙\o\S[wG\rDw.\"8\\B8\r{y\'ow!(SCO\\`p5\mMu\z\Wl\2\\Qc?.:\Aާ\Ð\M\=y[\:\m?J8q/\t\m3Y\G\\\n\T\\\yӡ\Z~?Gin+,u\\c\"l\{\0x$8g\Fn\a}S(zudoz!W\oj4׿','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4121,'2018-05-28 09:53:52',1,'product.php','cPath=18_21&product_type=1&pID=12&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S]o\0+\Nj\0 \c\0el\$(\G\ik\'\7N$\xzIZS\\PHVɝT2*UqVj!@\뜙hƁ!w!M\\0*>gsܩe\V7\\y\A@hag\\\M,!\?M;\@\\J\oh\/,\@Ib\6\\w؁?\\ß\\*̙\o\S[wG\rDw.\"8\\B8\r{y\'ow!(SCO\\`p5\mMu\z\Wl\2\\Qc?.:\Aާ\Ð\M\=y[\:\m?J8q/\t\m3Y\G\\\n\T\\\yӡ\Z~?Gin+,u\\c\"l\{\0x$8g\Fn\a}S(zudoz!W\oj4׿','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4122,'2018-05-28 09:53:55',1,'product.php','cPath=18_21&product_type=1&pID=12&action=update_product&page=1','174.235.133.72',0,'',_binary 'S\N\0+τiE\'UBp:dm\'\^~@\]\\ݙݾEYH\\\h\2E\J*KR+s\ET\'\t\\\:4^cOV}A\PCcΝN\\ho+u-o.%\O@3:\hKؖr\9qG_%\Z=[0\'&\\[c\49\:`\Q\|na\\Y1ڢ\0\M(wpf\\\Tzk3	b]ƛg\nSF\u*\-ڽOlf7\Z)\\Ls3-\yWPt\\68\9y,0g6VߝV\575볭q;\\\N\/\\jr|C4Fjej\I\U\1[(\=xz\\\aCh\N\$\h\k	\S\\N$\r״:j>\?','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4123,'2018-05-28 09:53:55',1,'product.php','cPath=18_21&product_type=1&pID=12&action=update_product&page=1','174.235.133.72',1,'',_binary 'S\N\0+τiE\'UBp:dm\'\^~@\]\\ݙݾEYH\\\h\2E\J*KR+s\ET\'\t\\\:4^cOV}A\PCcΝN\\ho+u-o.%\O@3:\hKؖr\9qG_%\Z=[0\'&\\[c\49\:`\Q\|na\\Y1ڢ\0\M(wpf\\\Tzk3	b]ƛg\nSF\u*\-ڽOlf7\Z)\\Ls3-\yWPt\\68\9y,0g6VߝV\575볭q;\\\N\/\\jr|C4Fjej\I\U\1[(\=xz\\\aCh\N\$\h\k	\S\\N$\r״:j>\?','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4124,'2018-05-28 09:53:55',1,'product.php','cPath=18_21&product_type=1&pID=12&action=update_product&page=1','174.235.133.72',0,'',_binary 'S\N\0+τiE\'UBp:dm\'\^~@\]\\ݙݾEYH\\\h\2E\J*KR+s\ET\'\t\\\:4^cOV}A\PCcΝN\\ho+u-o.%\O@3:\hKؖr\9qG_%\Z=[0\'&\\[c\49\:`\Q\|na\\Y1ڢ\0\M(wpf\\\Tzk3	b]ƛg\nSF\u*\-ڽOlf7\Z)\\Ls3-\yWPt\\68\9y,0g6VߝV\575볭q;\\\N\/\\jr|C4Fjej\I\U\1[(\=xz\\\aCh\N\$\h\k	\S\\N$\r״:j>\?','Updated product 12 via admin console.','info'),(4125,'2018-05-28 09:53:56',1,'categories.php','cPath=18_21&pID=12&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4126,'2018-05-28 09:53:56',1,'categories.php','cPath=18_21&pID=12&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4127,'2018-05-28 09:53:59',1,'product.php','page=1&product_type=1&cPath=18_21&pID=13&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4128,'2018-05-28 09:53:59',1,'product.php','page=1&product_type=1&cPath=18_21&pID=13&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4129,'2018-05-28 09:54:12',1,'product.php','cPath=18_21&product_type=1&pID=13&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\n0\\\I\\\*E\N\>dm\=L\5IT\\oQx\\̬ߢ\\<d\U\Σe4Kd\'2s1\\\r&Oکu\au\g6Ԥh\hF*N\L+ow\j/\\\	?c\'\6\6\\O\\2\nN\\#5TL|\:\\&k(HlXk!gR<\bFB\O\ᣆB\2\\o\|).W\"@g\Tf=?~ɔ\Y1ڢ\0\|L0[\\Z<\J{	b]\\QavgP#]\S\_\i\gB[\'J\.~x\\"mL\_\\Swq\\\smLnb~\m\*(h\n/J\d*V%ogFϣ\{\"h\v\\63\\Z\'*\Z\\ҿ\\Lͣ\','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4130,'2018-05-28 09:54:12',1,'product.php','cPath=18_21&product_type=1&pID=13&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\n0\\\I\\\*E\N\>dm\=L\5IT\\oQx\\̬ߢ\\<d\U\Σe4Kd\'2s1\\\r&Oکu\au\g6Ԥh\hF*N\L+ow\j/\\\	?c\'\6\6\\O\\2\nN\\#5TL|\:\\&k(HlXk!gR<\bFB\O\ᣆB\2\\o\|).W\"@g\Tf=?~ɔ\Y1ڢ\0\|L0[\\Z<\J{	b]\\QavgP#]\S\_\i\gB[\'J\.~x\\"mL\_\\Swq\\\smLnb~\m\*(h\n/J\d*V%ogFϣ\{\"h\v\\63\\Z\'*\Z\\ҿ\\Lͣ\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4131,'2018-05-28 09:54:15',1,'product.php','cPath=18_21&product_type=1&pID=13&action=update_product&page=1','174.235.133.72',0,'',_binary 'SQo@+\'Kǥղ\\rMTmӤN\p\\#}g6/QK.{[ynh-ĉZ\Um\\UTgK&f\78{\̅\rZ+h2\\}\h	3k#Q\k/\ny\\:\\0+\V\q\n\8S\)`Ϛ\TՇ\f{0L\r|1\\d\e\@ǡKrޟ(cC\\0\eP\\p\'l[l\s\g>\\xa\\6[c\nSFh\uj\!*\]n7\Z\\6wj\\7pd\&\\\RXrst\\2R\_\,\\IKGn>chg|\~O_\'G)\'{@\\Z\4\\'Vm`en^h\*Y=>^\\m}F\2\\:M{Z}zJ\߫N<g޲&\^','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4132,'2018-05-28 09:54:16',1,'product.php','cPath=18_21&product_type=1&pID=13&action=update_product&page=1','174.235.133.72',1,'',_binary 'SQo@+\'Kǥղ\\rMTmӤN\p\\#}g6/QK.{[ynh-ĉZ\Um\\UTgK&f\78{\̅\rZ+h2\\}\h	3k#Q\k/\ny\\:\\0+\V\q\n\8S\)`Ϛ\TՇ\f{0L\r|1\\d\e\@ǡKrޟ(cC\\0\eP\\p\'l[l\s\g>\\xa\\6[c\nSFh\uj\!*\]n7\Z\\6wj\\7pd\&\\\RXrst\\2R\_\,\\IKGn>chg|\~O_\'G)\'{@\\Z\4\\'Vm`en^h\*Y=>^\\m}F\2\\:M{Z}zJ\߫N<g޲&\^','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4133,'2018-05-28 09:54:16',1,'product.php','cPath=18_21&product_type=1&pID=13&action=update_product&page=1','174.235.133.72',0,'',_binary 'SQo@+\'Kǥղ\\rMTmӤN\p\\#}g6/QK.{[ynh-ĉZ\Um\\UTgK&f\78{\̅\rZ+h2\\}\h	3k#Q\k/\ny\\:\\0+\V\q\n\8S\)`Ϛ\TՇ\f{0L\r|1\\d\e\@ǡKrޟ(cC\\0\eP\\p\'l[l\s\g>\\xa\\6[c\nSFh\uj\!*\]n7\Z\\6wj\\7pd\&\\\RXrst\\2R\_\,\\IKGn>chg|\~O_\'G)\'{@\\Z\4\\'Vm`en^h\*Y=>^\\m}F\2\\:M{Z}zJ\߫N<g޲&\^','Updated product 13 via admin console.','info'),(4134,'2018-05-28 09:54:16',1,'categories.php','cPath=18_21&pID=13&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4135,'2018-05-28 09:54:17',1,'categories.php','cPath=18_21&pID=13&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4136,'2018-05-28 09:54:20',1,'product.php','page=1&product_type=1&cPath=18_21&pID=14&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4137,'2018-05-28 09:54:20',1,'product.php','page=1&product_type=1&cPath=18_21&pID=14&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4138,'2018-05-28 09:54:33',1,'product.php','cPath=18_21&product_type=1&pID=14&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\n\0\ug5i7\\؆i,;d˕(;A\dY4\dx<\\=i+\n (L,Lfi&S9r!\\[r\\xY9&(k`\.6h\\Zf7DQyf\\l.\3\1b\\x\ZXہy%h\\\W\Z\}\<+(I,󕐳G}XIN\n\0B\ZP\\\;Dב6DU\B8N{}\R\9v\)l6ض\ToSk\r!C/856!`{\0E\\6O\1SM\[Bל-\\Z\7E\댷\n\J$R\\\\\+gS<?\\S\?b\H]a\<\\\ӡlk\r\`b\\xRp*ƺ\\'\)˚SJ{\y\>z|^\[\DHo\\\\\wpa\`','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4139,'2018-05-28 09:54:34',1,'product.php','cPath=18_21&product_type=1&pID=14&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\n\0\ug5i7\\؆i,;d˕(;A\dY4\dx<\\=i+\n (L,Lfi&S9r!\\[r\\xY9&(k`\.6h\\Zf7DQyf\\l.\3\1b\\x\ZXہy%h\\\W\Z\}\<+(I,󕐳G}XIN\n\0B\ZP\\\;Dב6DU\B8N{}\R\9v\)l6ض\ToSk\r!C/856!`{\0E\\6O\1SM\[Bל-\\Z\7E\댷\n\J$R\\\\\+gS<?\\S\?b\H]a\<\\\ӡlk\r\`b\\xRp*ƺ\\'\)˚SJ{\y\>z|^\[\DHo\\\\\wpa\`','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4140,'2018-05-28 09:54:37',1,'product.php','cPath=18_21&product_type=1&pID=14&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sao0+K\rMTmӤ\'Yc\I}DU\ZH\7=w\x\Zgɫ\(\2E\.I\Xĝ\\d\Dx2Nif֡\nd\C&E\0,*wd4Q\:vbl	S\'\\r%\\\y9h\nθsOz.\\\\j(\O\\\\>\UwGKg\\K\rM\zL\(˄\؃l\ZK\:=.d&duO\8^9\FZ8,اh?lfw\V\d\\~i\7\\[\\sfcUڹqQym\\YU#ߠ!)\,ԏjc\nH\r뿲/\O̍\ANe\\\݋\Zl?\\\\m\\k\rߥD\{mk\	\ X華	m	܈g\\HVoy S\\\\','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4141,'2018-05-28 09:54:38',1,'product.php','cPath=18_21&product_type=1&pID=14&action=update_product&page=1','174.235.133.72',1,'',_binary 'Sao0+K\rMTmӤ\'Yc\I}DU\ZH\7=w\x\Zgɫ\(\2E\.I\Xĝ\\d\Dx2Nif֡\nd\C&E\0,*wd4Q\:vbl	S\'\\r%\\\y9h\nθsOz.\\\\j(\O\\\\>\UwGKg\\K\rM\zL\(˄\؃l\ZK\:=.d&duO\8^9\FZ8,اh?lfw\V\d\\~i\7\\[\\sfcUڹqQym\\YU#ߠ!)\,ԏjc\nH\r뿲/\O̍\ANe\\\݋\Zl?\\\\m\\k\rߥD\{mk\	\ X華	m	܈g\\HVoy S\\\\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4142,'2018-05-28 09:54:38',1,'product.php','cPath=18_21&product_type=1&pID=14&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sao0+K\rMTmӤ\'Yc\I}DU\ZH\7=w\x\Zgɫ\(\2E\.I\Xĝ\\d\Dx2Nif֡\nd\C&E\0,*wd4Q\:vbl	S\'\\r%\\\y9h\nθsOz.\\\\j(\O\\\\>\UwGKg\\K\rM\zL\(˄\؃l\ZK\:=.d&duO\8^9\FZ8,اh?lfw\V\d\\~i\7\\[\\sfcUڹqQym\\YU#ߠ!)\,ԏjc\nH\r뿲/\O̍\ANe\\\݋\Zl?\\\\m\\k\rߥD\{mk\	\ X華	m	܈g\\HVoy S\\\\','Updated product 14 via admin console.','info'),(4143,'2018-05-28 09:54:38',1,'categories.php','cPath=18_21&pID=14&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4144,'2018-05-28 09:54:39',1,'categories.php','cPath=18_21&pID=14&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4145,'2018-05-28 09:54:51',1,'categories.php','cPath=18&cID=21','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4146,'2018-05-28 09:54:51',1,'categories.php','cPath=18&cID=21','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4147,'2018-05-28 09:54:54',1,'categories.php','cPath=18_22','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4148,'2018-05-28 09:54:55',1,'categories.php','cPath=18_22','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4149,'2018-05-28 09:54:57',1,'product.php','page=1&product_type=1&cPath=18_22&pID=21&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4150,'2018-05-28 09:54:58',1,'product.php','page=1&product_type=1&cPath=18_22&pID=21&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4151,'2018-05-28 09:55:08',1,'categories.php','cPath=18_22&pID=21&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4152,'2018-05-28 09:55:08',1,'categories.php','cPath=18_22&pID=21&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4153,'2018-05-28 09:55:10',1,'product.php','page=1&product_type=1&cPath=18_22&pID=22&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4154,'2018-05-28 09:55:11',1,'product.php','page=1&product_type=1&cPath=18_22&pID=22&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4155,'2018-05-28 09:55:17',1,'categories.php','cPath=18_22&pID=22&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4156,'2018-05-28 09:55:18',1,'categories.php','cPath=18_22&pID=22&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4157,'2018-05-28 09:55:21',1,'product.php','page=1&product_type=1&cPath=18_22&pID=24&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4158,'2018-05-28 09:55:21',1,'product.php','page=1&product_type=1&cPath=18_22&pID=24&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4159,'2018-05-28 09:55:27',1,'categories.php','cPath=18_22&pID=24&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4160,'2018-05-28 09:55:27',1,'categories.php','cPath=18_22&pID=24&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4161,'2018-05-28 09:55:29',1,'product.php','page=1&product_type=1&cPath=18_22&pID=24&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4162,'2018-05-28 09:55:29',1,'product.php','page=1&product_type=1&cPath=18_22&pID=24&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4163,'2018-05-28 09:55:33',1,'categories.php','cPath=18_22&pID=24&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4164,'2018-05-28 09:55:33',1,'categories.php','cPath=18_22&pID=24&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4165,'2018-05-28 09:55:36',1,'categories.php','cPath=18&cID=22','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4166,'2018-05-28 09:55:36',1,'categories.php','cPath=18&cID=22','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4167,'2018-05-28 09:55:39',1,'categories.php','cPath=18_23','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4168,'2018-05-28 09:55:39',1,'categories.php','cPath=18_23','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4169,'2018-05-28 09:55:43',1,'product.php','page=1&product_type=1&cPath=18_23&pID=16&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4170,'2018-05-28 09:55:44',1,'product.php','page=1&product_type=1&cPath=18_23&pID=16&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4171,'2018-05-28 09:55:54',1,'product.php','cPath=18_23&product_type=1&pID=16&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S]k\0+\\uOJ\\\-\nBbc\\,\*)ﷶ\^44o\\~\\\#k/SAQ@FCY2[d3d.U\b\bv]d\rD2A̬}@5\9c`,|rk\r,\cF0:\KɿCN$Uރ5\\'TAA)\\A\\\\n\'p\+#^\"\o;\l\'^<gR7G[M^u\ZCՅ__u1\)\\Z%k\@7j\\r\]}<:\3v\'pL\P4\~bd\9\rnlNnb%\\e\Fx堉lf\\rv\\Nmm|iz\^J\\\\\\\uFZ\r\m:\a\R]\X1\\\r,\՚\.ap(\Z}pB)\O/jL\2t\','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4172,'2018-05-28 09:55:54',1,'product.php','cPath=18_23&product_type=1&pID=16&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S]k\0+\\uOJ\\\-\nBbc\\,\*)ﷶ\^44o\\~\\\#k/SAQ@FCY2[d3d.U\b\bv]d\rD2A̬}@5\9c`,|rk\r,\cF0:\KɿCN$Uރ5\\'TAA)\\A\\\\n\'p\+#^\"\o;\l\'^<gR7G[M^u\ZCՅ__u1\)\\Z%k\@7j\\r\]}<:\3v\'pL\P4\~bd\9\rnlNnb%\\e\Fx堉lf\\rv\\Nmm|iz\^J\\\\\\\uFZ\r\m:\a\R]\X1\\\r,\՚\.ap(\Z}pB)\O/jL\2t\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4173,'2018-05-28 09:55:57',1,'product.php','cPath=18_23&product_type=1&pID=16&action=update_product&page=1','174.235.133.72',0,'',_binary 'S]k\0+\\uOJ\\\-\n;\n>-\J+\'\\NvRӼY33;yK\Z\Q\9ѐ\&O6\J*JXY]%I\r\3K\\y\\g4uaT.>e43\\Z]\\\JM9b`T\z\^yplcEo\\g\̉\5\Xw\"Hg\tVA8*/\r4]z2E[:	\q^iЖ\\;,d\Z2\7[39#Ze\ZÁ}\`j~\R6Ur5\ʹ\\"\]C٧k\\Z޹\ĂX|t~\\\\ߝk\{gFn?CSho|fW\7;f\Ps7\$\o\F<AAb\X\t\\VxOڄ\cC\\Gw7.\3\Ã\6\\\r\\諏\B\\\\0','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4174,'2018-05-28 09:55:57',1,'product.php','cPath=18_23&product_type=1&pID=16&action=update_product&page=1','174.235.133.72',1,'',_binary 'S]k\0+\\uOJ\\\-\n;\n>-\J+\'\\NvRӼY33;yK\Z\Q\9ѐ\&O6\J*JXY]%I\r\3K\\y\\g4uaT.>e43\\Z]\\\JM9b`T\z\^yplcEo\\g\̉\5\Xw\"Hg\tVA8*/\r4]z2E[:	\q^iЖ\\;,d\Z2\7[39#Ze\ZÁ}\`j~\R6Ur5\ʹ\\"\]C٧k\\Z޹\ĂX|t~\\\\ߝk\{gFn?CSho|fW\7;f\Ps7\$\o\F<AAb\X\t\\VxOڄ\cC\\Gw7.\3\Ã\6\\\r\\諏\B\\\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4175,'2018-05-28 09:55:57',1,'product.php','cPath=18_23&product_type=1&pID=16&action=update_product&page=1','174.235.133.72',0,'',_binary 'S]k\0+\\uOJ\\\-\n;\n>-\J+\'\\NvRӼY33;yK\Z\Q\9ѐ\&O6\J*JXY]%I\r\3K\\y\\g4uaT.>e43\\Z]\\\JM9b`T\z\^yplcEo\\g\̉\5\Xw\"Hg\tVA8*/\r4]z2E[:	\q^iЖ\\;,d\Z2\7[39#Ze\ZÁ}\`j~\R6Ur5\ʹ\\"\]C٧k\\Z޹\ĂX|t~\\\\ߝk\{gFn?CSho|fW\7;f\Ps7\$\o\F<AAb\X\t\\VxOڄ\cC\\Gw7.\3\Ã\6\\\r\\諏\B\\\\0','Updated product 16 via admin console.','info'),(4176,'2018-05-28 09:55:58',1,'categories.php','cPath=18_23&pID=16&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4177,'2018-05-28 09:55:58',1,'categories.php','cPath=18_23&pID=16&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4178,'2018-05-28 09:56:01',1,'product.php','page=1&product_type=1&cPath=18_23&pID=17&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4179,'2018-05-28 09:56:02',1,'product.php','page=1&product_type=1&cPath=18_23&pID=17&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4180,'2018-05-28 09:56:13',1,'product.php','cPath=18_23&product_type=1&pID=17&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\n\0\ug9\\\\؆i-;dɕ(\'A\di4\\;<\\-鼫bIAU@ZAU\*\'y&4\\\|\\.i!df\<\p$\{tђ]\ndtK܉ٗ}\\9\'P\I\Q@h`e\\\6\PR\=be\י\'\/\\'\Z,&iQ,\7)\#~ \\\TBa`B\c>\V\N\UlUi ~k\'5ޅp=z`\\A\nk\:\e\Wک\\XkK\\+G\^u2Eݧ\\ѩ:;BgOMwV\A\7\i-\d\koT\\B\\"M?dp\'^8\\I\\1\Æ\B\\1\lj\\E6fѢ՜O\kb\񇌎,e)$\\\y\">Z|Eo\c\"cYӐϓ\\\`C\/','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4181,'2018-05-28 09:56:13',1,'product.php','cPath=18_23&product_type=1&pID=17&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\n\0\ug9\\\\؆i-;dɕ(\'A\di4\\;<\\-鼫bIAU@ZAU\*\'y&4\\\|\\.i!df\<\p$\{tђ]\ndtK܉ٗ}\\9\'P\I\Q@h`e\\\6\PR\=be\י\'\/\\'\Z,&iQ,\7)\#~ \\\TBa`B\c>\V\N\UlUi ~k\'5ޅp=z`\\A\nk\:\e\Wک\\XkK\\+G\^u2Eݧ\\ѩ:;BgOMwV\A\7\i-\d\koT\\B\\"M?dp\'^8\\I\\1\Æ\B\\1\lj\\E6fѢ՜O\kb\񇌎,e)$\\\y\">Z|Eo\c\"cYӐϓ\\\`C\/','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4182,'2018-05-28 09:56:16',1,'product.php','cPath=18_23&product_type=1&pID=17&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sao0+Kɶv&EiRڏr\\>C}\ZH\7=w\xZgWVP\Q\$Nd,W\"\4]\'2\ZʙYY\+\+\\u\\6Rtl5\\"JgKF\0\\[\N|MoO@3*g\c`\rzp+6\\\\\K\E9\jwT@\p\;\kg\\K\rL:\nP_	u\S\\m\T\tT;{X\\9!duOA?\`}\Z<!:\σilƷ\F\\>\j\\λjHנ\<s\\\nKbSҹ\\GbE6;\i\;ϳN\a\\P\\0ϳ\=e\\1аK-P\|\d[M\\:\?\\\\\u\\\[BkޔD\Kmȡ\=\^\Tm2\d٠K\F<\'Dֲ|\\\ZW3\/$','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4183,'2018-05-28 09:56:17',1,'product.php','cPath=18_23&product_type=1&pID=17&action=update_product&page=1','174.235.133.72',1,'',_binary 'Sao0+Kɶv&EiRڏr\\>C}\ZH\7=w\xZgWVP\Q\$Nd,W\"\4]\'2\ZʙYY\+\+\\u\\6Rtl5\\"JgKF\0\\[\N|MoO@3*g\c`\rzp+6\\\\\K\E9\jwT@\p\;\kg\\K\rL:\nP_	u\S\\m\T\tT;{X\\9!duOA?\`}\Z<!:\σilƷ\F\\>\j\\λjHנ\<s\\\nKbSҹ\\GbE6;\i\;ϳN\a\\P\\0ϳ\=e\\1аK-P\|\d[M\\:\?\\\\\u\\\[BkޔD\Kmȡ\=\^\Tm2\d٠K\F<\'Dֲ|\\\ZW3\/$','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4184,'2018-05-28 09:56:17',1,'product.php','cPath=18_23&product_type=1&pID=17&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sao0+Kɶv&EiRڏr\\>C}\ZH\7=w\xZgWVP\Q\$Nd,W\"\4]\'2\ZʙYY\+\+\\u\\6Rtl5\\"JgKF\0\\[\N|MoO@3*g\c`\rzp+6\\\\\K\E9\jwT@\p\;\kg\\K\rL:\nP_	u\S\\m\T\tT;{X\\9!duOA?\`}\Z<!:\σilƷ\F\\>\j\\λjHנ\<s\\\nKbSҹ\\GbE6;\i\;ϳN\a\\P\\0ϳ\=e\\1аK-P\|\d[M\\:\?\\\\\u\\\[BkޔD\Kmȡ\=\^\Tm2\d٠K\F<\'Dֲ|\\\ZW3\/$','Updated product 17 via admin console.','info'),(4185,'2018-05-28 09:56:17',1,'categories.php','cPath=18_23&pID=17&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4186,'2018-05-28 09:56:17',1,'categories.php','cPath=18_23&pID=17&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4187,'2018-05-28 09:56:20',1,'product.php','page=1&product_type=1&cPath=18_23&pID=18&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4188,'2018-05-28 09:56:21',1,'product.php','page=1&product_type=1&cPath=18_23&pID=18&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4189,'2018-05-28 09:56:31',1,'product.php','cPath=18_23&product_type=1&pID=18&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\j\0\\g%=˛9k9Hx 6\,Ȓ+\\IC&\hwggޕJ ,u̓I&4O\\\]\@ \U\\y\A\@2\EKvf4	ʻ\\z,\n\s\'Ʀ\}\\9\'P\Q\A@h`e\\\6VPP\=ba\י\'x\J%T$6-)^\#~!\\\TCa`Bh\0c>W\N\U\rlUa ~k)\\ޅpz`\\A\nkl[e\wک\\\{K\\KNG+l:\\"\\\\v\\}\n-\'GEˮ;+\nh\b\\7J\*6Xb罱\\\\\S<=\\2F?؁ƕ\2_H\R=\r\\\6P6Z2y_c\Tlj~!ҁŲ>{\q8\}\ϡ\Ϳ}dl4\k\}\L\\','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4190,'2018-05-28 09:56:32',1,'product.php','cPath=18_23&product_type=1&pID=18&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\j\0\\g%=˛9k9Hx 6\,Ȓ+\\IC&\hwggޕJ ,u̓I&4O\\\]\@ \U\\y\A\@2\EKvf4	ʻ\\z,\n\s\'Ʀ\}\\9\'P\Q\A@h`e\\\6VPP\=ba\י\'x\J%T$6-)^\#~!\\\TCa`Bh\0c>W\N\U\rlUa ~k)\\ޅpz`\\A\nkl[e\wک\\\{K\\KNG+l:\\"\\\\v\\}\n-\'GEˮ;+\nh\b\\7J\*6Xb罱\\\\\S<=\\2F?؁ƕ\2_H\R=\r\\\6P6Z2y_c\Tlj~!ҁŲ>{\q8\}\ϡ\Ϳ}dl4\k\}\L\\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4191,'2018-05-28 09:56:35',1,'product.php','cPath=18_23&product_type=1&pID=18&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sao0+KIv&EiRڏr\\>C}\ZH\7=w\xZgWVP\Q\$Nd,W\"\n\D\rx\N\̬C\\c:\s):\dT\%uk\c\'\V\\m\ߔ\	(xF\L{laW\c\&Spڝx\s	\\6B\\n\]uGpPy\r\t|Sӕޟ)SCG\\2\\x\A=-\\jg0L\\6hǀÕÜҲOq>Ey0-\6\H<\2\;n\Z\5h4\\\%\Tt\4XQ\\v\\w؟1)\k4\\l+ygO04_ـK-P\|\d[!S)밃Z@\O\vk;l	y-o5\"r\OH{CWBؒE,6Y6(\\\\\G,\<F\f','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4192,'2018-05-28 09:56:35',1,'product.php','cPath=18_23&product_type=1&pID=18&action=update_product&page=1','174.235.133.72',1,'',_binary 'Sao0+KIv&EiRڏr\\>C}\ZH\7=w\xZgWVP\Q\$Nd,W\"\n\D\rx\N\̬C\\c:\s):\dT\%uk\c\'\V\\m\ߔ\	(xF\L{laW\c\&Spڝx\s	\\6B\\n\]uGpPy\r\t|Sӕޟ)SCG\\2\\x\A=-\\jg0L\\6hǀÕÜҲOq>Ey0-\6\H<\2\;n\Z\5h4\\\%\Tt\4XQ\\v\\w؟1)\k4\\l+ygO04_ـK-P\|\d[!S)밃Z@\O\vk;l	y-o5\"r\OH{CWBؒE,6Y6(\\\\\G,\<F\f','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4193,'2018-05-28 09:56:35',1,'product.php','cPath=18_23&product_type=1&pID=18&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sao0+KIv&EiRڏr\\>C}\ZH\7=w\xZgWVP\Q\$Nd,W\"\n\D\rx\N\̬C\\c:\s):\dT\%uk\c\'\V\\m\ߔ\	(xF\L{laW\c\&Spڝx\s	\\6B\\n\]uGpPy\r\t|Sӕޟ)SCG\\2\\x\A=-\\jg0L\\6hǀÕÜҲOq>Ey0-\6\H<\2\;n\Z\5h4\\\%\Tt\4XQ\\v\\w؟1)\k4\\l+ygO04_ـK-P\|\d[!S)밃Z@\O\vk;l	y-o5\"r\OH{CWBؒE,6Y6(\\\\\G,\<F\f','Updated product 18 via admin console.','info'),(4194,'2018-05-28 09:56:35',1,'categories.php','cPath=18_23&pID=18&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4195,'2018-05-28 09:56:36',1,'categories.php','cPath=18_23&pID=18&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4196,'2018-05-28 09:56:39',1,'product.php','page=1&product_type=1&cPath=18_23&pID=19&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4197,'2018-05-28 09:56:39',1,'product.php','page=1&product_type=1&cPath=18_23&pID=19&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4198,'2018-05-28 09:56:49',1,'product.php','cPath=18_23&product_type=1&pID=19&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\n\0+\M/\JyC\'!U\\$\Ǔ%q\J\\\0\(93\\\$wE\)H+(\n]$d\,\d*\b$g\h\%5\^\̬G\1cu0\.ZRk4\MP\՗\cUp;1}\>\\(F\v/42]\~bK\)z\Ӟ_P3\̒ixR%$6-\K!\\Z}-$\^\'S\re\\\R\\V;DW6DUpWyr\)\v\r*i\V}\iVn{c\\,!S/85\1`{\aȈ\v\Z}H\\{l=9*\Zv\YC9\`]qPW\n9X\睱\χ\\S<=y\\[\bn+t\\|!e6Me6\Z[t\lh5TeXWB!=e}\nI7\c?pCћ\\h\\%eP{xzL','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4199,'2018-05-28 09:56:50',1,'product.php','cPath=18_23&product_type=1&pID=19&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\n\0+\M/\JyC\'!U\\$\Ǔ%q\J\\\0\(93\\\$wE\)H+(\n]$d\,\d*\b$g\h\%5\^\̬G\1cu0\.ZRk4\MP\՗\cUp;1}\>\\(F\v/42]\~bK\)z\Ӟ_P3\̒ixR%$6-\K!\\Z}-$\^\'S\re\\\R\\V;DW6DUpWyr\)\v\r*i\V}\iVn{c\\,!S/85\1`{\aȈ\v\Z}H\\{l=9*\Zv\YC9\`]qPW\n9X\睱\χ\\S<=y\\[\bn+t\\|!e6Me6\Z[t\lh5TeXWB!=e}\nI7\c?pCћ\\h\\%eP{xzL','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4200,'2018-05-28 09:56:53',1,'product.php','cPath=18_23&product_type=1&pID=19&action=update_product&page=1','174.235.133.72',0,'',_binary 'S\n0\\\\rMNT\>dm$﷐\\\͞\\\\!\'\n (t-4I\X\D*\\2]D7QS93+\P{y\ا\Cf4U\ls\h\Zy\؉\	\O@3*G\C`\rw*6\\T\\K\E9\jsP@\p\;\k\'\\S\rD9G;t.\=(ŶES]\Am\~\"\\0)\<\\r3Aip?,ؗh?\_g+)E,87ݡ\rwUAy\*LŦ\sǹ,Ŋcv\n\p8j:r?v\Z-\Z\wC\ZhX\r\\"F<a\\ZJ?\V\Z\\\\<\axD/Ͽ\\>w\Z!%Z\jkD-䜟\!m\]\\naK!SUϻn\|\\Ad-\w<s\\\','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4201,'2018-05-28 09:56:53',1,'product.php','cPath=18_23&product_type=1&pID=19&action=update_product&page=1','174.235.133.72',1,'',_binary 'S\n0\\\\rMNT\>dm$﷐\\\͞\\\\!\'\n (t-4I\X\D*\\2]D7QS93+\P{y\ا\Cf4U\ls\h\Zy\؉\	\O@3*G\C`\rw*6\\T\\K\E9\jsP@\p\;\k\'\\S\rD9G;t.\=(ŶES]\Am\~\"\\0)\<\\r3Aip?,ؗh?\_g+)E,87ݡ\rwUAy\*LŦ\sǹ,Ŋcv\n\p8j:r?v\Z-\Z\wC\ZhX\r\\"F<a\\ZJ?\V\Z\\\\<\axD/Ͽ\\>w\Z!%Z\jkD-䜟\!m\]\\naK!SUϻn\|\\Ad-\w<s\\\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4202,'2018-05-28 09:56:53',1,'product.php','cPath=18_23&product_type=1&pID=19&action=update_product&page=1','174.235.133.72',0,'',_binary 'S\n0\\\\rMNT\>dm$﷐\\\͞\\\\!\'\n (t-4I\X\D*\\2]D7QS93+\P{y\ا\Cf4U\ls\h\Zy\؉\	\O@3*G\C`\rw*6\\T\\K\E9\jsP@\p\;\k\'\\S\rD9G;t.\=(ŶES]\Am\~\"\\0)\<\\r3Aip?,ؗh?\_g+)E,87ݡ\rwUAy\*LŦ\sǹ,Ŋcv\n\p8j:r?v\Z-\Z\wC\ZhX\r\\"F<a\\ZJ?\V\Z\\\\<\axD/Ͽ\\>w\Z!%Z\jkD-䜟\!m\]\\naK!SUϻn\|\\Ad-\w<s\\\','Updated product 19 via admin console.','info'),(4203,'2018-05-28 09:56:53',1,'categories.php','cPath=18_23&pID=19&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4204,'2018-05-28 09:56:54',1,'categories.php','cPath=18_23&pID=19&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4205,'2018-05-28 09:56:59',1,'categories.php','cPath=18&cID=23','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4206,'2018-05-28 09:56:59',1,'categories.php','cPath=18&cID=23','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4207,'2018-05-28 09:57:02',1,'categories.php','cPath=18_24','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4208,'2018-05-28 09:57:02',1,'categories.php','cPath=18_24','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4209,'2018-05-28 09:57:06',1,'product.php','page=1&product_type=1&cPath=18_24&pID=26&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4210,'2018-05-28 09:57:06',1,'product.php','page=1&product_type=1&cPath=18_24&pID=26&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4211,'2018-05-28 09:57:13',1,'categories.php','cPath=18_24&pID=26&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4212,'2018-05-28 09:57:13',1,'categories.php','cPath=18_24&pID=26&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4213,'2018-05-28 09:57:16',1,'product.php','page=1&product_type=1&cPath=18_24&pID=29&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4214,'2018-05-28 09:57:17',1,'product.php','page=1&product_type=1&cPath=18_24&pID=29&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4215,'2018-05-28 09:57:22',1,'categories.php','cPath=18_24&pID=29&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4216,'2018-05-28 09:57:22',1,'categories.php','cPath=18_24&pID=29&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4217,'2018-05-28 09:57:24',1,'product.php','page=1&product_type=1&cPath=18_24&pID=29&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4218,'2018-05-28 09:57:25',1,'product.php','page=1&product_type=1&cPath=18_24&pID=29&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4219,'2018-05-28 09:57:29',1,'categories.php','cPath=18_24&pID=29&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4220,'2018-05-28 09:57:30',1,'categories.php','cPath=18_24&pID=29&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4221,'2018-05-28 09:57:32',1,'categories.php','cPath=18&cID=24','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4222,'2018-05-28 09:57:32',1,'categories.php','cPath=18&cID=24','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4223,'2018-05-28 09:57:35',1,'categories.php','cPath=18_25','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4224,'2018-05-28 09:57:35',1,'categories.php','cPath=18_25','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4225,'2018-05-28 09:57:39',1,'product.php','page=1&product_type=1&cPath=18_25&pID=31&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4226,'2018-05-28 09:57:39',1,'product.php','page=1&product_type=1&cPath=18_25&pID=31&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4227,'2018-05-28 09:57:50',1,'product.php','cPath=18_25&product_type=1&pID=31&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\j\0\\:g\\-\nW\nm\ڒ[rSﷶ\\8Y;}D*\\\*\DY&q\\ȲM\\?DwQ#+\P{#x͵{\6Է\͢,m.\BKoO\\u\O@s5]\=.\֐\\䑱	%v\'\r?+_Xj%\\o;0\ų{}\虾Xp8-y/\a\J,j\'\\ĘW;t	i\ضh˹\\\\o\2\:ũh\ǫ	KD0H\4xùt]\aKh\\\\\vp+\H\Nq\\Om\j%v\xrܬ\k\X\\\\'0ڶN-\n\5^͒EpJڿlӌ&\\:ݡ\rly\`\\RȵL\U%cѸ)#7f\9?L\]&\\y),\b\jO||m\'i','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4228,'2018-05-28 09:57:51',1,'product.php','cPath=18_25&product_type=1&pID=31&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\j\0\\:g\\-\nW\nm\ڒ[rSﷶ\\8Y;}D*\\\*\DY&q\\ȲM\\?DwQ#+\P{#x͵{\6Է\͢,m.\BKoO\\u\O@s5]\=.\֐\\䑱	%v\'\r?+_Xj%\\o;0\ų{}\虾Xp8-y/\a\J,j\'\\ĘW;t	i\ضh˹\\\\o\2\:ũh\ǫ	KD0H\4xùt]\aKh\\\\\vp+\H\Nq\\Om\j%v\xrܬ\k\X\\\\'0ڶN-\n\5^͒EpJڿlӌ&\\:ݡ\rly\`\\RȵL\U%cѸ)#7f\9?L\]&\\y),\b\jO||m\'i','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4229,'2018-05-28 09:57:54',1,'product.php','cPath=18_25&product_type=1&pID=31&action=update_product&page=1','174.235.133.72',0,'',_binary 'S\j\0\\:g\\-\nW\nm\ڒ[rSﷶ\k\4o\\\\\nޢ\Y\nRi	Jim,I8I\Vd\&YonO\ɂuđf\\CV3,td-u\\\us<\h:\=\֐׃\؄\n\nN\\-\\ku1%^\<\\tGY\\OJ\\KMCW\z:\nP_ۄ\04{l[4ե\+2ǅ\^BXx\r\pR3AZ\i8ؗ\>J?m\\,\\4\\\m\toBe*,M\W\ŏ4\-\\N\{fj\4F4V{\ǻY\N!f\4,\\ndK-$qcƶx4u/^־p\Z\\~h\W7\K\ض\\\i;k<9.\J\R\5t}b(Om9@EaaF5f?g\K','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4230,'2018-05-28 09:57:54',1,'product.php','cPath=18_25&product_type=1&pID=31&action=update_product&page=1','174.235.133.72',1,'',_binary 'S\j\0\\:g\\-\nW\nm\ڒ[rSﷶ\k\4o\\\\\nޢ\Y\nRi	Jim,I8I\Vd\&YonO\ɂuđf\\CV3,td-u\\\us<\h:\=\֐׃\؄\n\nN\\-\\ku1%^\<\\tGY\\OJ\\KMCW\z:\nP_ۄ\04{l[4ե\+2ǅ\^BXx\r\pR3AZ\i8ؗ\>J?m\\,\\4\\\m\toBe*,M\W\ŏ4\-\\N\{fj\4F4V{\ǻY\N!f\4,\\ndK-$qcƶx4u/^־p\Z\\~h\W7\K\ض\\\i;k<9.\J\R\5t}b(Om9@EaaF5f?g\K','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4231,'2018-05-28 09:57:54',1,'product.php','cPath=18_25&product_type=1&pID=31&action=update_product&page=1','174.235.133.72',0,'',_binary 'S\j\0\\:g\\-\nW\nm\ڒ[rSﷶ\k\4o\\\\\nޢ\Y\nRi	Jim,I8I\Vd\&YonO\ɂuđf\\CV3,td-u\\\us<\h:\=\֐׃\؄\n\nN\\-\\ku1%^\<\\tGY\\OJ\\KMCW\z:\nP_ۄ\04{l[4ե\+2ǅ\^BXx\r\pR3AZ\i8ؗ\>J?m\\,\\4\\\m\toBe*,M\W\ŏ4\-\\N\{fj\4F4V{\ǻY\N!f\4,\\ndK-$qcƶx4u/^־p\Z\\~h\W7\K\ض\\\i;k<9.\J\R\5t}b(Om9@EaaF5f?g\K','Updated product 31 via admin console.','info'),(4232,'2018-05-28 09:57:54',1,'categories.php','cPath=18_25&pID=31&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4233,'2018-05-28 09:57:55',1,'categories.php','cPath=18_25&pID=31&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4234,'2018-05-28 09:57:58',1,'product.php','page=1&product_type=1&cPath=18_25&pID=32&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4235,'2018-05-28 09:57:58',1,'product.php','page=1&product_type=1&cPath=18_25&pID=32&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4236,'2018-05-28 09:58:14',1,'product.php','cPath=18_25&product_type=1&pID=32&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\n\0+\%;\\IH:\\\NXձS{@U6]ޜ\\̎?\;\nRi	Ji,i\4g31.\b=%5\^̬G$\ƾ\`(\\$\\hFӻ,\B\\<wbl>dKN \{-\tm,\?M{y\B\\õ\g\	K-\P\mk#/ѷ؂H\\w\2\\o\SA\<ҍC{Yio\3\h\\\]\'\%ڢ\vL0;85ȰŦA[]}\\\\,!SW\Z\\0dDtO>\\\Pxl=ot\\v\\Z08K,\jՖt VPºC\TZ8+hE\rM \0\+(lyˡ\r\ZG\\r\&rǈ|I\nvJw\Y/Wٔ\ru.r(jy#N1\2\&\ź\\\	\i\	\	c\~\?;r\\\ޜ\\\\\9;Yj\\S','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4237,'2018-05-28 09:58:15',1,'product.php','cPath=18_25&product_type=1&pID=32&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\n\0+\%;\\IH:\\\NXձS{@U6]ޜ\\̎?\;\nRi	Ji,i\4g31.\b=%5\^̬G$\ƾ\`(\\$\\hFӻ,\B\\<wbl>dKN \{-\tm,\?M{y\B\\õ\g\	K-\P\mk#/ѷ؂H\\w\2\\o\SA\<ҍC{Yio\3\h\\\]\'\%ڢ\vL0;85ȰŦA[]}\\\\,!SW\Z\\0dDtO>\\\Pxl=ot\\v\\Z08K,\jՖt VPºC\TZ8+hE\rM \0\+(lyˡ\r\ZG\\r\&rǈ|I\nvJw\Y/Wٔ\ru.r(jy#N1\2\&\ź\\\	\i\	\	c\~\?;r\\\ޜ\\\\\9;Yj\\S','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4238,'2018-05-28 09:58:18',1,'product.php','cPath=18_25&product_type=1&pID=32&action=update_product&page=1','174.235.133.72',0,'',_binary 'S]k\0+\\I\v(\[8\\ \c@-\YjKrJ\Z\'\r՛vF;zM:gU(\K%(Ur\iN\l\Eߧd\I;Y28\ȃCMordtK-u\\\"\f)s\'\\Fz&*M\;x\"ѳ}a2FKhO)Y$9,]UGetVAǢkg?Q\\hmBñ\\uh\K\:\\\o\%!du\'ۢ+1#\:-\qcZt,|\\eyOt>\\\\wu\\\S(LYsy\\qMrJx\n\pLq֟C;88S\\\cb2в++DdxJ5T$vo\Z\\cp=Ј\H\\ov\ڗ;Bk\S\H\\0O\/\I\\m\C4=	0J\:^:(8a-gM\D\F+QY\'x1{V\ƒt\I\g#5\\F[z','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4239,'2018-05-28 09:58:18',1,'product.php','cPath=18_25&product_type=1&pID=32&action=update_product&page=1','174.235.133.72',1,'',_binary 'S]k\0+\\I\v(\[8\\ \c@-\YjKrJ\Z\'\r՛vF;zM:gU(\K%(Ur\iN\l\Eߧd\I;Y28\ȃCMordtK-u\\\"\f)s\'\\Fz&*M\;x\"ѳ}a2FKhO)Y$9,]UGetVAǢkg?Q\\hmBñ\\uh\K\:\\\o\%!du\'ۢ+1#\:-\qcZt,|\\eyOt>\\\\wu\\\S(LYsy\\qMrJx\n\pLq֟C;88S\\\cb2в++DdxJ5T$vo\Z\\cp=Ј\H\\ov\ڗ;Bk\S\H\\0O\/\I\\m\C4=	0J\:^:(8a-gM\D\F+QY\'x1{V\ƒt\I\g#5\\F[z','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4240,'2018-05-28 09:58:18',1,'product.php','cPath=18_25&product_type=1&pID=32&action=update_product&page=1','174.235.133.72',0,'',_binary 'S]k\0+\\I\v(\[8\\ \c@-\YjKrJ\Z\'\r՛vF;zM:gU(\K%(Ur\iN\l\Eߧd\I;Y28\ȃCMordtK-u\\\"\f)s\'\\Fz&*M\;x\"ѳ}a2FKhO)Y$9,]UGetVAǢkg?Q\\hmBñ\\uh\K\:\\\o\%!du\'ۢ+1#\:-\qcZt,|\\eyOt>\\\\wu\\\S(LYsy\\qMrJx\n\pLq֟C;88S\\\cb2в++DdxJ5T$vo\Z\\cp=Ј\H\\ov\ڗ;Bk\S\H\\0O\/\I\\m\C4=	0J\:^:(8a-gM\D\F+QY\'x1{V\ƒt\I\g#5\\F[z','Updated product 32 via admin console.','info'),(4241,'2018-05-28 09:58:18',1,'categories.php','cPath=18_25&pID=32&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4242,'2018-05-28 09:58:19',1,'categories.php','cPath=18_25&pID=32&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4243,'2018-05-28 09:58:22',1,'product.php','page=1&product_type=1&cPath=18_25&pID=33&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4244,'2018-05-28 09:58:22',1,'product.php','page=1&product_type=1&cPath=18_25&pID=33&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4245,'2018-05-28 09:58:33',1,'product.php','cPath=18_25&product_type=1&pID=33&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\j\0\\\';WBfG{}<kKvl˕VNBɿ\\N\⤡~v43;:gu(\+\rdhmtR\X&qi\2\Zd*YY\+\\σ%E\pU\,\\\\9,\q\'-\\\\\\	(x&3\Q@XC^ǉ\PBAwJ\r?\\K#6P\\6\"I\\=\\	IHz\a.\\\\n恮,\"ة-W&\*g?BΫ=:\nP_	\߰밭.\^\vw\\0-!C\ۯ\0G\vwcJ\\7p\\\u\rۊ,%܉W)|	@:w\m5\'!}n\\^Vհ\Z\٣%\nK\bSq\\Ƴ2\y\m3EvRpI\L\\`F|\?\١\\":','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4246,'2018-05-28 09:58:34',1,'product.php','cPath=18_25&product_type=1&pID=33&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\j\0\\\';WBfG{}<kKvl˕VNBɿ\\N\⤡~v43;:gu(\+\rdhmtR\X&qi\2\Zd*YY\+\\σ%E\pU\,\\\\9,\q\'-\\\\\\	(x&3\Q@XC^ǉ\PBAwJ\r?\\K#6P\\6\"I\\=\\	IHz\a.\\\\n恮,\"ة-W&\*g?BΫ=:\nP_	\߰밭.\^\vw\\0-!C\ۯ\0G\vwcJ\\7p\\\u\rۊ,%܉W)|	@:w\m5\'!}n\\^Vհ\Z\٣%\nK\bSq\\Ƴ2\y\m3EvRpI\L\\`F|\?\١\\":','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4247,'2018-05-28 09:58:37',1,'product.php','cPath=18_25&product_type=1&pID=33&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sn@\\d\"\JiFj	:\!{\r-$E\m\g\\>#r  \ulXF2QDo\\f\Zi2fƢv\n-c\u\e\7\\jF\\"\nk\sFk1\\\J\ݵ\o\q\Ѭ0@XAZ\CǍ/ #o=u\q\>AU\Xң\"\*.ӗ\Z.q\DZP]	\\ʽ`\bS\\Q\\٫)\\\\Z1\p0giY\\p`?}|nLmr\KQ\a$\}\\Z\~\P\\yV2.`.\%_?\\_\3{\{\\\\h~\n\5/\\xv|	}\jf7V`$Xh\f\(JEO\kYl	MYk$=-p%D\rJ\6O>f%\\?\0','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4248,'2018-05-28 09:58:37',1,'product.php','cPath=18_25&product_type=1&pID=33&action=update_product&page=1','174.235.133.72',1,'',_binary 'Sn@\\d\"\JiFj	:\!{\r-$E\m\g\\>#r  \ulXF2QDo\\f\Zi2fƢv\n-c\u\e\7\\jF\\"\nk\sFk1\\\J\ݵ\o\q\Ѭ0@XAZ\CǍ/ #o=u\q\>AU\Xң\"\*.ӗ\Z.q\DZP]	\\ʽ`\bS\\Q\\٫)\\\\Z1\p0giY\\p`?}|nLmr\KQ\a$\}\\Z\~\P\\yV2.`.\%_?\\_\3{\{\\\\h~\n\5/\\xv|	}\jf7V`$Xh\f\(JEO\kYl	MYk$=-p%D\rJ\6O>f%\\?\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4249,'2018-05-28 09:58:37',1,'product.php','cPath=18_25&product_type=1&pID=33&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sn@\\d\"\JiFj	:\!{\r-$E\m\g\\>#r  \ulXF2QDo\\f\Zi2fƢv\n-c\u\e\7\\jF\\"\nk\sFk1\\\J\ݵ\o\q\Ѭ0@XAZ\CǍ/ #o=u\q\>AU\Xң\"\*.ӗ\Z.q\DZP]	\\ʽ`\bS\\Q\\٫)\\\\Z1\p0giY\\p`?}|nLmr\KQ\a$\}\\Z\~\P\\yV2.`.\%_?\\_\3{\{\\\\h~\n\5/\\xv|	}\jf7V`$Xh\f\(JEO\kYl	MYk$=-p%D\rJ\6O>f%\\?\0','Updated product 33 via admin console.','info'),(4250,'2018-05-28 09:58:37',1,'categories.php','cPath=18_25&pID=33&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4251,'2018-05-28 09:58:38',1,'categories.php','cPath=18_25&pID=33&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4252,'2018-05-28 09:58:42',1,'product.php','page=1&product_type=1&cPath=18_25&pID=34&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4253,'2018-05-28 09:58:42',1,'product.php','page=1&product_type=1&cPath=18_25&pID=34&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4254,'2018-05-28 09:58:58',1,'product.php','cPath=18_25&product_type=1&pID=34&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\n@\qT~C,UMT\\c\\0	v\\,\;\\Z;Vy9s9>\\2\U	.e\2^\r!\E,\\>\\&jv`dmjp\\7}a!ENs5ZT\9sXh\\M\\>>\\b<\U9=\țax	vkO[\9<+Y\Xi\\\*[y\\z\?\\\hwB\<\\kM%R\;D@lUр?{\~MI\Y\\j4gB\\Aw\:4\ک\n2ĺ\Ѣ\`\iq;tnÎК,\Z|\Fq\\u\\s\\й-\:[Ʉ3\"\t.\\6z\\Qȵ\mc9n\\[ttq\ф\"<vZ\n9\h߉3\iRv\\\0','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4255,'2018-05-28 09:58:58',1,'product.php','cPath=18_25&product_type=1&pID=34&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\n@\qT~C,UMT\\c\\0	v\\,\;\\Z;Vy9s9>\\2\U	.e\2^\r!\E,\\>\\&jv`dmjp\\7}a!ENs5ZT\9sXh\\M\\>>\\b<\U9=\țax	vkO[\9<+Y\Xi\\\*[y\\z\?\\\hwB\<\\kM%R\;D@lUр?{\~MI\Y\\j4gB\\Aw\:4\ک\n2ĺ\Ѣ\`\iq;tnÎК,\Z|\Fq\\u\\s\\й-\:[Ʉ3\"\t.\\6z\\Qȵ\mc9n\\[ttq\ф\"<vZ\n9\h߉3\iRv\\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4256,'2018-05-28 09:59:01',1,'product.php','cPath=18_25&product_type=1&pID=34&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sn@\2$4\\Pɱ\\@,Cf<쮢{\rl\Z\\r\n{\k\YS*\E	\HFa$Cy#\x#\\VWAU93+cQ;#9a\\;\h\nҚ\\Y̵rƲc?\w\s# \\\\0=`\rY=(\\\GB\-\&huicʎ\n,f.#8wRL_h\Zƹeh\C}\&\{8N3(]muBGÊg/ZB[flb\Ba\-ҺN>EҘ\z|ne,\PF\\7ݣ\w\\n\'i\\\nK\bS\\i#MqIy\voq|/\\ϡ\\8,4\d\P\vа++0Xj\\m&\\C-\\\\\m~\\\;BӾ\ڦ\@\Ep%D\qJ\6ϓߓ5\\','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4257,'2018-05-28 09:59:01',1,'product.php','cPath=18_25&product_type=1&pID=34&action=update_product&page=1','174.235.133.72',1,'',_binary 'Sn@\2$4\\Pɱ\\@,Cf<쮢{\rl\Z\\r\n{\k\YS*\E	\HFa$Cy#\x#\\VWAU93+cQ;#9a\\;\h\nҚ\\Y̵rƲc?\w\s# \\\\0=`\rY=(\\\GB\-\&huicʎ\n,f.#8wRL_h\Zƹeh\C}\&\{8N3(]muBGÊg/ZB[flb\Ba\-ҺN>EҘ\z|ne,\PF\\7ݣ\w\\n\'i\\\nK\bS\\i#MqIy\voq|/\\ϡ\\8,4\d\P\vа++0Xj\\m&\\C-\\\\\m~\\\;BӾ\ڦ\@\Ep%D\qJ\6ϓߓ5\\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4258,'2018-05-28 09:59:01',1,'product.php','cPath=18_25&product_type=1&pID=34&action=update_product&page=1','174.235.133.72',0,'',_binary 'Sn@\2$4\\Pɱ\\@,Cf<쮢{\rl\Z\\r\n{\k\YS*\E	\HFa$Cy#\x#\\VWAU93+cQ;#9a\\;\h\nҚ\\Y̵rƲc?\w\s# \\\\0=`\rY=(\\\GB\-\&huicʎ\n,f.#8wRL_h\Zƹeh\C}\&\{8N3(]muBGÊg/ZB[flb\Ba\-ҺN>EҘ\z|ne,\PF\\7ݣ\w\\n\'i\\\nK\bS\\i#MqIy\voq|/\\ϡ\\8,4\d\P\vа++0Xj\\m&\\C-\\\\\m~\\\;BӾ\ڦ\@\Ep%D\qJ\6ϓߓ5\\','Updated product 34 via admin console.','info'),(4259,'2018-05-28 09:59:01',1,'categories.php','cPath=18_25&pID=34&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4260,'2018-05-28 09:59:02',1,'categories.php','cPath=18_25&pID=34&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4261,'2018-05-28 09:59:07',1,'categories.php','cPath=18&cID=25','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4262,'2018-05-28 09:59:08',1,'categories.php','cPath=18&cID=25','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4263,'2018-05-28 09:59:14',1,'categories.php','cPath=18_25','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4264,'2018-05-28 09:59:14',1,'categories.php','cPath=18&cID=25&action=edit_category','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php] with action=edit_category. Review page_parameters and postdata for details.','info'),(4265,'2018-05-28 09:59:14',1,'categories.php','cPath=18_25','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4266,'2018-05-28 09:59:14',1,'categories.php','cPath=18&cID=25&action=edit_category','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4267,'2018-05-28 09:59:48',1,'categories.php','cPath=18&cID=25','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4268,'2018-05-28 09:59:48',1,'categories.php','cPath=18&cID=25','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4269,'2018-05-28 09:59:56',1,'categories.php','cID=18','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4270,'2018-05-28 09:59:56',1,'categories.php','cID=18','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4271,'2018-05-28 10:00:07',1,'categories.php','cPath=2','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4272,'2018-05-28 10:00:08',1,'categories.php','cPath=2','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4273,'2018-05-28 10:00:15',1,'product.php','page=1&product_type=1&cPath=2&pID=38&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4274,'2018-05-28 10:00:15',1,'product.php','page=1&product_type=1&cPath=2&pID=38&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4275,'2018-05-28 10:16:22',0,'login.php ','camefrom=index.php','174.235.133.72',0,'',_binary '\0','Accessed page [login.php]','info'),(4276,'2018-05-28 10:16:22',0,'login.php ','camefrom=index.php','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4277,'2018-05-28 10:16:39',0,'login.php Eagle','camefrom=index.php','174.235.133.72',0,'',_binary 'VJL.\\\SRJ\774053L1M4H6OKJLMN1MKI2KM2506LQ\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do710561d5c90c7fbc9ecd5fdb6eb5031d. Review page_parameters and postdata for details.','info'),(4278,'2018-05-28 10:16:39',0,'login.php Eagle','camefrom=index.php','174.235.133.72',1,'',_binary 'VJL.\\\SRJ\774053L1M4H6OKJLMN1MKI2KM2506LQ\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4279,'2018-05-28 10:16:40',1,'index.php','','174.235.133.72',0,'',_binary '\0','Accessed page [index.php]','info'),(4280,'2018-05-28 10:16:40',1,'index.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4281,'2018-05-28 10:16:47',1,'categories.php','','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4282,'2018-05-28 10:16:48',1,'categories.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4283,'2018-05-28 10:16:57',1,'categories.php','cPath=2','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4284,'2018-05-28 10:16:58',1,'categories.php','cPath=2','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4285,'2018-05-28 10:17:01',1,'product.php','page=1&product_type=1&cPath=2&pID=38&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4286,'2018-05-28 10:17:02',1,'product.php','page=1&product_type=1&cPath=2&pID=38&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4287,'2018-05-28 10:17:24',1,'product.php','cPath=2&product_type=1&pID=38&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'Sn\0\Z\/\Ȏ\"ӄ\[\) Ŀ\meh\rK\ӚN\,˳IOf$/\e>6\nA\XB\4\n+>\F\ݠڐƈ0*xBml\	A\N|ham۲Z7Pp$Cg?)*%\2]18\r\\9O^E]\`6yANO\ \ͨ\0kmGA3\:\'{UXg_m\}*ɇ0&5H\\nC^wkt嘼\Z@<iY\n\_\\T\"C_\}\aP֌\c\\\[U^;ZL>\t*(\Y|\",~ԥ*e\tQg\eʾ1#\\zl0\~53X\\Vv?','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4288,'2018-05-28 10:17:25',1,'product.php','cPath=2&product_type=1&pID=38&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'Sn\0\Z\/\Ȏ\"ӄ\[\) Ŀ\meh\rK\ӚN\,˳IOf$/\e>6\nA\XB\4\n+>\F\ݠڐƈ0*xBml\	A\N|ham۲Z7Pp$Cg?)*%\2]18\r\\9O^E]\`6yANO\ \ͨ\0kmGA3\:\'{UXg_m\}*ɇ0&5H\\nC^wkt嘼\Z@<iY\n\_\\T\"C_\}\aP֌\c\\\[U^;ZL>\t*(\Y|\",~ԥ*e\tQg\eʾ1#\\zl0\~53X\\Vv?','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4289,'2018-05-28 10:17:28',1,'product.php','cPath=2&product_type=1&pID=38&action=update_product&page=1','174.235.133.72',0,'',_binary 'R\N\@(g\n	B8#\\\.a޴Uſ\$\GDnY\x\҆%N7\mg,_\\%z^o*!!U\n&(\Riѱ\cc],\FO\"\ծ3~\ |Ը7\Z(l\'ۻuJd\\08\^KvѕV\Q3ay6\Z\A\YiN_f\"\\"q;7v\\n;l\ZtՔ\GUÅmGp\5p)\!_֩\\j*\wֵ\Ǝ\-ʴ\l\\\\צ֕dNP\\|_ɷ\À\SŽj\ӱd#O\'\IN\\&yȓ\'I{\b6yDN?~gׄa\_H7z_\\\\'','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4290,'2018-05-28 10:17:29',1,'product.php','cPath=2&product_type=1&pID=38&action=update_product&page=1','174.235.133.72',1,'',_binary 'R\N\@(g\n	B8#\\\.a޴Uſ\$\GDnY\x\҆%N7\mg,_\\%z^o*!!U\n&(\Riѱ\cc],\FO\"\ծ3~\ |Ը7\Z(l\'ۻuJd\\08\^KvѕV\Q3ay6\Z\A\YiN_f\"\\"q;7v\\n;l\ZtՔ\GUÅmGp\5p)\!_֩\\j*\wֵ\Ǝ\-ʴ\l\\\\צ֕dNP\\|_ɷ\À\SŽj\ӱd#O\'\IN\\&yȓ\'I{\b6yDN?~gׄa\_H7z_\\\\'','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4291,'2018-05-28 10:17:29',1,'product.php','cPath=2&product_type=1&pID=38&action=update_product&page=1','174.235.133.72',0,'',_binary 'R\N\@(g\n	B8#\\\.a޴Uſ\$\GDnY\x\҆%N7\mg,_\\%z^o*!!U\n&(\Riѱ\cc],\FO\"\ծ3~\ |Ը7\Z(l\'ۻuJd\\08\^KvѕV\Q3ay6\Z\A\YiN_f\"\\"q;7v\\n;l\ZtՔ\GUÅmGp\5p)\!_֩\\j*\wֵ\Ǝ\-ʴ\l\\\\צ֕dNP\\|_ɷ\À\SŽj\ӱd#O\'\IN\\&yȓ\'I{\b6yDN?~gׄa\_H7z_\\\\'','Updated product 38 via admin console.','info'),(4292,'2018-05-28 10:17:29',1,'categories.php','cPath=2&pID=38&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4293,'2018-05-28 10:17:30',1,'categories.php','cPath=2&pID=38&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4294,'2018-05-28 10:19:43',1,'product.php','page=1&product_type=1&cPath=2&pID=71&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4295,'2018-05-28 10:19:44',1,'product.php','page=1&product_type=1&cPath=2&pID=71&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4296,'2018-05-28 10:20:40',1,'product.php','cPath=2&product_type=1&pID=71&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\n\0O+v\ k+0\\dɥ(\'A\c\4lD\NIM9]\0\rEad\\,I\l9[,o~$ߓ\nҹ KOh\,\6rk>\F\Ţޒƈ07:xAR\NSy1H1n\768\\\rd\ĵ\A%W\L~FWZ#5؀U\\\Vcf\7k\P\\A3\&\\":NΏ_\ޭ$B\$`\I\S\\5r<z\1\n\S!	\	CDtȗ\To8؄f\ݷU`\?ڐZ_߭i\\BT$j\I\U!K\ԣ\4\&R\\!+\\\\'i3(|a\(t5}\+(6?\\"/\u)PJ(ԝkQ\"ܚ\Ў\C㩑\\\w\\'>6ʦ%\\N}','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4297,'2018-05-28 10:20:40',1,'product.php','cPath=2&product_type=1&pID=71&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\n\0O+v\ k+0\\dɥ(\'A\c\4lD\NIM9]\0\rEad\\,I\l9[,o~$ߓ\nҹ KOh\,\6rk>\F\Ţޒƈ07:xAR\NSy1H1n\768\\\rd\ĵ\A%W\L~FWZ#5؀U\\\Vcf\7k\P\\A3\&\\":NΏ_\ޭ$B\$`\I\S\\5r<z\1\n\S!	\	CDtȗ\To8؄f\ݷU`\?ڐZ_߭i\\BT$j\I\U!K\ԣ\4\&R\\!+\\\\'i3(|a\(t5}\+(6?\\"/\u)PJ(ԝkQ\"ܚ\Ў\C㩑\\\w\\'>6ʦ%\\N}','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4298,'2018-05-28 10:20:47',1,'product.php','cPath=2&product_type=1&pID=71&action=update_product&page=1','174.235.133.72',0,'',_binary 'R\n\0OvP#[-0\\dɥ(\'A\m\\Xݑw$\-\!\'/EZ\EVq/\\"I\jY7ߣoQ<i93K\\g$j\`<\=jʨr-Cb\67xR<ɨugQ`TfZ\ί\r{S@g%<;\\k꫐\I*\",\\p27ʟ.\g\\G.\y\3`HAK\ԩ@gk\TN2sǙe	\\V`\P\1#Xy\n]ZW\ftvUxÕ*\}[\Zh|KBUrʰ\X\\\r\B\綉QSՃڂd\1\\'\Ū\Xb=t\S\Ze\#P>L9BM\\G\\:[\])\\\\n;`H{\"\b)s\H\8Y$B|y͑L\\4nF\3','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4299,'2018-05-28 10:20:47',1,'product.php','cPath=2&product_type=1&pID=71&action=update_product&page=1','174.235.133.72',1,'',_binary 'R\n\0OvP#[-0\\dɥ(\'A\m\\Xݑw$\-\!\'/EZ\EVq/\\"I\jY7ߣoQ<i93K\\g$j\`<\=jʨr-Cb\67xR<ɨugQ`TfZ\ί\r{S@g%<;\\k꫐\I*\",\\p27ʟ.\g\\G.\y\3`HAK\ԩ@gk\TN2sǙe	\\V`\P\1#Xy\n]ZW\ftvUxÕ*\}[\Zh|KBUrʰ\X\\\r\B\綉QSՃڂd\1\\'\Ū\Xb=t\S\Ze\#P>L9BM\\G\\:[\])\\\\n;`H{\"\b)s\H\8Y$B|y͑L\\4nF\3','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4300,'2018-05-28 10:20:47',1,'product.php','cPath=2&product_type=1&pID=71&action=update_product&page=1','174.235.133.72',0,'',_binary 'R\n\0OvP#[-0\\dɥ(\'A\m\\Xݑw$\-\!\'/EZ\EVq/\\"I\jY7ߣoQ<i93K\\g$j\`<\=jʨr-Cb\67xR<ɨugQ`TfZ\ί\r{S@g%<;\\k꫐\I*\",\\p27ʟ.\g\\G.\y\3`HAK\ԩ@gk\TN2sǙe	\\V`\P\1#Xy\n]ZW\ftvUxÕ*\}[\Zh|KBUrʰ\X\\\r\B\綉QSՃڂd\1\\'\Ū\Xb=t\S\Ze\#P>L9BM\\G\\:[\])\\\\n;`H{\"\b)s\H\8Y$B|y͑L\\4nF\3','Updated product 71 via admin console.','info'),(4301,'2018-05-28 10:20:48',1,'categories.php','cPath=2&pID=71&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4302,'2018-05-28 10:20:48',1,'categories.php','cPath=2&pID=71&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4303,'2018-05-28 10:23:00',1,'product.php','page=1&product_type=1&cPath=2&pID=39&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4304,'2018-05-28 10:23:00',1,'product.php','page=1&product_type=1&cPath=2&pID=39&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4305,'2018-05-28 10:23:28',1,'product.php','cPath=2&product_type=1&pID=39&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'SMO@+Vh`=lv\.\\\\\\0\jc\"7x\\{gڐױ\4Q\\:]fyv\\˻$_oW\\}z\ؐ*YyBde0>:V\5F\\"6\\9!,\nĨ\<1O\n\[@\m.n\HJ\B:\i <\$_\ɳdL\"؂M\A0H|3kZ6U\)`&,\"MaJ\;\\aӪȇ0HnL\+6\rj.\N~wa\P<i9\Z\_؝9L\!_q7\\\t\&\rw^\\C\w\\\N!Ӣ\Z~#\\*\oM%4+9p\Z5C2Zsصo\rm	I\'#?W;F?\Mbo\rV<jیd\\0','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4306,'2018-05-28 10:23:29',1,'product.php','cPath=2&product_type=1&pID=39&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'SMO@+Vh`=lv\.\\\\\\0\jc\"7x\\{gڐױ\4Q\\:]fyv\\˻$_oW\\}z\ؐ*YyBde0>:V\5F\\"6\\9!,\nĨ\<1O\n\[@\m.n\HJ\B:\i <\$_\ɳdL\"؂M\A0H|3kZ6U\)`&,\"MaJ\;\\aӪȇ0HnL\+6\rj.\N~wa\P<i9\Z\_؝9L\!_q7\\\t\&\rw^\\C\w\\\N!Ӣ\Z~#\\*\oM%4+9p\Z5C2Zsصo\rm	I\'#?W;F?\Mbo\rV<jیd\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4307,'2018-05-28 10:23:32',1,'product.php','cPath=2&product_type=1&pID=39&action=update_product&page=1','174.235.133.72',0,'',_binary 'R\N\0(g(I\\\dmb7,8vX\V\&ڤ8[<3ϴ%c\Ai`@k\\"]fyv\\˻$_by^\r6*a֞\Y\GǊw05f\h	+\'1\E&\1!0p\\!|h\\\5T\\w\C\ fڳ*w\n	\\\'1lUe!|;\fl&¼C\4 \\r\\*bۢ\\S\^\G\(OZ٠\)#:\\>\rn:\\D\\ɶA}\6P|GVYxkkaS\m\X30H\-\Іpd\qc~\y\e-:F4\")E\\4Nm\\M/\Yn>y\a6y@N\lBE\2zHz~fj/','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4308,'2018-05-28 10:23:32',1,'product.php','cPath=2&product_type=1&pID=39&action=update_product&page=1','174.235.133.72',1,'',_binary 'R\N\0(g(I\\\dmb7,8vX\V\&ڤ8[<3ϴ%c\Ai`@k\\"]fyv\\˻$_by^\r6*a֞\Y\GǊw05f\h	+\'1\E&\1!0p\\!|h\\\5T\\w\C\ fڳ*w\n	\\\'1lUe!|;\fl&¼C\4 \\r\\*bۢ\\S\^\G\(OZ٠\)#:\\>\rn:\\D\\ɶA}\6P|GVYxkkaS\m\X30H\-\Іpd\qc~\y\e-:F4\")E\\4Nm\\M/\Yn>y\a6y@N\lBE\2zHz~fj/','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4309,'2018-05-28 10:23:32',1,'product.php','cPath=2&product_type=1&pID=39&action=update_product&page=1','174.235.133.72',0,'',_binary 'R\N\0(g(I\\\dmb7,8vX\V\&ڤ8[<3ϴ%c\Ai`@k\\"]fyv\\˻$_by^\r6*a֞\Y\GǊw05f\h	+\'1\E&\1!0p\\!|h\\\5T\\w\C\ fڳ*w\n	\\\'1lUe!|;\fl&¼C\4 \\r\\*bۢ\\S\^\G\(OZ٠\)#:\\>\rn:\\D\\ɶA}\6P|GVYxkkaS\m\X30H\-\Іpd\qc~\y\e-:F4\")E\\4Nm\\M/\Yn>y\a6y@N\lBE\2zHz~fj/','Updated product 39 via admin console.','info'),(4310,'2018-05-28 10:23:33',1,'categories.php','cPath=2&pID=39&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4311,'2018-05-28 10:23:33',1,'categories.php','cPath=2&pID=39&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4312,'2018-05-28 10:23:37',1,'product.php','page=1&product_type=1&cPath=2&pID=40&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4313,'2018-05-28 10:23:38',1,'product.php','page=1&product_type=1&cPath=2&pID=40&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4314,'2018-05-28 10:23:59',1,'product.php','cPath=2&product_type=1&pID=40&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'S\n@ĹI!\\zlVlۅ%^/!\5&\ZU\3c\\Vd3SVe:p\\,gu/\*Y.§\0ǚT*\\j#t+.d\\J=Ֆl1fTVΒ4jy$\=1wŃ\Z\ƴm;\Bʞ4]\KJ(x:Iot,Ӯw1y\"\N\z4Y5c~&Sf\I$J\ré\r΍E5{0S`p\\+ê\2|T\<Hy\dL\/4C/)\\qk\Rі\߭\\gʹIEF\e9\\*U\?\\hX\r\\k:3d[k:v\zn{0\\\L5}И\xfI\n\n\\','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4315,'2018-05-28 10:24:00',1,'product.php','cPath=2&product_type=1&pID=40&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'S\n@ĹI!\\zlVlۅ%^/!\5&\ZU\3c\\Vd3SVe:p\\,gu/\*Y.§\0ǚT*\\j#t+.d\\J=Ֆl1fTVΒ4jy$\=1wŃ\Z\ƴm;\Bʞ4]\KJ(x:Iot,Ӯw1y\"\N\z4Y5c~&Sf\I$J\ré\r΍E5{0S`p\\+ê\2|T\<Hy\dL\/4C/)\\qk\Rі\߭\\gʹIEF\e9\\*U\?\\hX\r\\k:3d[k:v\zn{0\\\L5}И\xfI\n\n\\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4316,'2018-05-28 10:24:03',1,'product.php','cPath=2&product_type=1&pID=40&action=update_product&page=1','174.235.133.72',0,'',_binary 'SMo0+\A?.w\q;N\\H@\P}@I㖼s\n+O٩X+\2I\hų\:\j,\SXcM*fn	SؑAZ_\cjK3*\T+gIZl\wKp\@p41m[HٓKҫD=J\ަ`\\T\0n<OZchTj]\\\dj$`\اWnUe>\6y0Q(2y\˿\L_\"?)\\\.*\A\\f\^\zny;\/d\\*\Z\}%[k:v\A\n\n\Z\n7oY\-RB!\OR?	_>\\Y\\\Zk0+rx]]\Rі{2?9','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4317,'2018-05-28 10:24:03',1,'product.php','cPath=2&product_type=1&pID=40&action=update_product&page=1','174.235.133.72',1,'',_binary 'SMo0+\A?.w\q;N\\H@\P}@I㖼s\n+O٩X+\2I\hų\:\j,\SXcM*fn	SؑAZ_\cjK3*\T+gIZl\wKp\@p41m[HٓKҫD=J\ަ`\\T\0n<OZchTj]\\\dj$`\اWnUe>\6y0Q(2y\˿\L_\"?)\\\.*\A\\f\^\zny;\/d\\*\Z\}%[k:v\A\n\n\Z\n7oY\-RB!\OR?	_>\\Y\\\Zk0+rx]]\Rі{2?9','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4318,'2018-05-28 10:24:03',1,'product.php','cPath=2&product_type=1&pID=40&action=update_product&page=1','174.235.133.72',0,'',_binary 'SMo0+\A?.w\q;N\\H@\P}@I㖼s\n+O٩X+\2I\hų\:\j,\SXcM*fn	SؑAZ_\cjK3*\T+gIZl\wKp\@p41m[HٓKҫD=J\ަ`\\T\0n<OZchTj]\\\dj$`\اWnUe>\6y0Q(2y\˿\L_\"?)\\\.*\A\\f\^\zny;\/d\\*\Z\}%[k:v\A\n\n\Z\n7oY\-RB!\OR?	_>\\Y\\\Zk0+rx]]\Rі{2?9','Updated product 40 via admin console.','info'),(4319,'2018-05-28 10:24:04',1,'categories.php','cPath=2&pID=40&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4320,'2018-05-28 10:24:04',1,'categories.php','cPath=2&pID=40&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4321,'2018-05-28 10:24:12',1,'product.php','page=1&product_type=1&cPath=2&pID=38&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4322,'2018-05-28 10:24:13',1,'product.php','page=1&product_type=1&cPath=2&pID=38&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4323,'2018-05-28 10:24:29',1,'categories.php','cPath=2&pID=38&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4324,'2018-05-28 10:24:30',1,'categories.php','cPath=2&pID=38&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4325,'2018-05-28 10:24:47',1,'categories.php','cID=2','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4326,'2018-05-28 10:24:47',1,'categories.php','cID=2','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4327,'2018-05-28 10:24:52',1,'categories.php','cPath=16','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4328,'2018-05-28 10:24:52',1,'categories.php','cPath=16','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4329,'2018-05-28 10:24:56',1,'product.php','page=1&product_type=1&cPath=16&pID=82&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4330,'2018-05-28 10:24:57',1,'product.php','page=1&product_type=1&cPath=16&pID=82&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4331,'2018-05-28 10:25:54',1,'product.php','cPath=16&product_type=1&pID=82&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'Tk\0WT\\\ܵJ\`ЍB\>  Ζ\h%WqL\qҲ\\{\\\\\h\Kg)\)0\Y2M\\\|~\Ze9\&\4]$\Z㆖\R\9\^[ju]\1K\}DcDɩ\+a\b\oa8oC\A\(\rBB!c\4\Fʕ_B\\fzF\#f&b\\OnNj)\\$?!%S2\@>w|s\\r\\\\T\nd\n\{moKͣ3Zt3\6`g8ݲ\\Fnl- %l\SM#T_uЛwf\A9m\\T\"\:\DmiD\V\3\hU]\\\G84:n\r\%\ۆA\E\;- f\VT+EK\\\(\\jq\e\\w[\͔\0/\\t \nDz\\|`x@\DvL||\W\'ѤP\5\';&}\v\cۺZ3?4_\ц5TtyVYNrf\M$QW_ǑHbncZ#\`p=6n\n\<\I\\|;|1k\\'?y','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4332,'2018-05-28 10:25:55',1,'product.php','cPath=16&product_type=1&pID=82&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'Tk\0WT\\\ܵJ\`ЍB\>  Ζ\h%WqL\qҲ\\{\\\\\h\Kg)\)0\Y2M\\\|~\Ze9\&\4]$\Z㆖\R\9\^[ju]\1K\}DcDɩ\+a\b\oa8oC\A\(\rBB!c\4\Fʕ_B\\fzF\#f&b\\OnNj)\\$?!%S2\@>w|s\\r\\\\T\nd\n\{moKͣ3Zt3\6`g8ݲ\\Fnl- %l\SM#T_uЛwf\A9m\\T\"\:\DmiD\V\3\hU]\\\G84:n\r\%\ۆA\E\;- f\VT+EK\\\(\\jq\e\\w[\͔\0/\\t \nDz\\|`x@\DvL||\W\'ѤP\5\';&}\v\cۺZ3?4_\ц5TtyVYNrf\M$QW_ǑHbncZ#\`p=6n\n\<\I\\|;|1k\\'?y','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4333,'2018-05-28 10:25:59',1,'product.php','cPath=16&product_type=1&pID=82&action=update_product&page=1','174.235.133.72',0,'',_binary 'Tk\0W\\\\ܵ!J\`ЍB\>  Ζ\h%WqL\q\А@r\޻w\<\rj/g\\\"I/ɧat<I\\\\à븡\"KmTpz\>\\+G][s\&Gtit(8\ 殯F	vց6:Gkry$\wT\n\\r7[կ\TX\ĆhR)Ѽ\wS:\\B\2=X7zi[\<\C h;ԮD]U\s>\zsĹG\	h\pP\!`s\Gx%\qJl⑽\\l7Qi\\ܿ\Y\.ڣ\R)57\8I:[X$o\tkx]\ih{:l8hn\\\9{׉۹vQPa\'\?ܡT[Gn\\ZJp\p\i󌐆,\ɜ\r\r\7#sQ*\{\F\NhB0\hU\|\\	Ɇ8dgj\r\%~5/B9\3\";d\0\Ƚm\\47(\fa*|\\\A\3.e7vqJw2]oٷ\{]f\Gtܿ\kBnnq>[	\\LWPby\rU\rJ\\4]\Ytr\\g\ o\1','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4334,'2018-05-28 10:25:59',1,'product.php','cPath=16&product_type=1&pID=82&action=update_product&page=1','174.235.133.72',1,'',_binary 'Tk\0W\\\\ܵ!J\`ЍB\>  Ζ\h%WqL\q\А@r\޻w\<\rj/g\\\"I/ɧat<I\\\\à븡\"KmTpz\>\\+G][s\&Gtit(8\ 殯F	vց6:Gkry$\wT\n\\r7[կ\TX\ĆhR)Ѽ\wS:\\B\2=X7zi[\<\C h;ԮD]U\s>\zsĹG\	h\pP\!`s\Gx%\qJl⑽\\l7Qi\\ܿ\Y\.ڣ\R)57\8I:[X$o\tkx]\ih{:l8hn\\\9{׉۹vQPa\'\?ܡT[Gn\\ZJp\p\i󌐆,\ɜ\r\r\7#sQ*\{\F\NhB0\hU\|\\	Ɇ8dgj\r\%~5/B9\3\";d\0\Ƚm\\47(\fa*|\\\A\3.e7vqJw2]oٷ\{]f\Gtܿ\kBnnq>[	\\LWPby\rU\rJ\\4]\Ytr\\g\ o\1','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4335,'2018-05-28 10:25:59',1,'product.php','cPath=16&product_type=1&pID=82&action=update_product&page=1','174.235.133.72',0,'',_binary 'Tk\0W\\\\ܵ!J\`ЍB\>  Ζ\h%WqL\q\А@r\޻w\<\rj/g\\\"I/ɧat<I\\\\à븡\"KmTpz\>\\+G][s\&Gtit(8\ 殯F	vց6:Gkry$\wT\n\\r7[կ\TX\ĆhR)Ѽ\wS:\\B\2=X7zi[\<\C h;ԮD]U\s>\zsĹG\	h\pP\!`s\Gx%\qJl⑽\\l7Qi\\ܿ\Y\.ڣ\R)57\8I:[X$o\tkx]\ih{:l8hn\\\9{׉۹vQPa\'\?ܡT[Gn\\ZJp\p\i󌐆,\ɜ\r\r\7#sQ*\{\F\NhB0\hU\|\\	Ɇ8dgj\r\%~5/B9\3\";d\0\Ƚm\\47(\fa*|\\\A\3.e7vqJw2]oٷ\{]f\Gtܿ\kBnnq>[	\\LWPby\rU\rJ\\4]\Ytr\\g\ o\1','Updated product 82 via admin console.','info'),(4336,'2018-05-28 10:25:59',1,'categories.php','cPath=16&pID=82&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4337,'2018-05-28 10:26:00',1,'categories.php','cPath=16&pID=82&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4338,'2018-05-28 10:26:06',1,'product.php','page=1&product_type=1&cPath=16&pID=84&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4339,'2018-05-28 10:26:07',1,'product.php','page=1&product_type=1&cPath=16&pID=84&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4340,'2018-05-28 10:28:26',1,'product.php','cPath=16&product_type=1&pID=84&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'Tik\@+>>MHSMhv\$+\f>\ndϛ\α2\J20jJi\r~w~\\\\g\\\\$+1D\dda=\ p앇\"n\hݠXx[\"\'E8v\\g\"\j\=\\\n\`nj\\o(c\?y\Md\\f\o0OGM矾O.\\\rt3kBp}ű\\t=\n|}p\_Ƽy8%=\)U(\FH\\\q\Ei\VxB؍\Ǆ\\\"5n[\",\9C͇ݼSU$Xx2J͑\>\"U\\)i\\~\u\\$[W?\~^\\U`c).t\\Wa\-5\0솊J+XXXec%\Zp6Pm\\kX߂ )K.\(Xk*\0:\2\`p=\\}\A\Zeh\n>Q\%n/`,C\NXJ\3FkQ.\h\sqm\!6\Z<\{vt\~=W<i0ֺK\RЌw9\\\\8)\\i\ͳ\\\vp\"J9XV\l\(\b49%چ;Wp\n\3\o\< F]i\\[_\Zxy4wC\\Ns#','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4341,'2018-05-28 10:28:27',1,'product.php','cPath=16&product_type=1&pID=84&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'Tik\@+>>MHSMhv\$+\f>\ndϛ\α2\J20jJi\r~w~\\\\g\\\\$+1D\dda=\ p앇\"n\hݠXx[\"\'E8v\\g\"\j\=\\\n\`nj\\o(c\?y\Md\\f\o0OGM矾O.\\\rt3kBp}ű\\t=\n|}p\_Ƽy8%=\)U(\FH\\\q\Ei\VxB؍\Ǆ\\\"5n[\",\9C͇ݼSU$Xx2J͑\>\"U\\)i\\~\u\\$[W?\~^\\U`c).t\\Wa\-5\0솊J+XXXec%\Zp6Pm\\kX߂ )K.\(Xk*\0:\2\`p=\\}\A\Zeh\n>Q\%n/`,C\NXJ\3FkQ.\h\sqm\!6\Z<\{vt\~=W<i0ֺK\RЌw9\\\\8)\\i\ͳ\\\vp\"J9XV\l\(\b49%چ;Wp\n\3\o\< F]i\\[_\Zxy4wC\\Ns#','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4342,'2018-05-28 10:28:30',1,'product.php','cPath=16&product_type=1&pID=84&action=update_product&page=1','174.235.133.72',0,'',_binary 'Tkk\@+>~4M78%PЂ\Xݝ\MN:\~߳Ʋ5l\\\\ޜ\YeBa\\*&n\\?\w\Ά_\I\	\\\:\^P\}\\yicDؖ\wb\l(I-uĵ\.v>`\m1\WHSS\\~@\\\\[ \\\_\D4\n4\_ۏ\9\}\rحȅ\\\"5n\/,\5\Vvξ\"b\3ͩ6\"\\\iSG\hu9J\qU\+כcV-b4=#n.G73q;\:we\-g4\\htߑٕvkG[\\ךeF+\f	\n̙\\G\\\\G\h\%\Z5Cj2-l\\E\\^41\\wȗ|\-5vCY,,\r\Se\kAZQ7$\\"gL2\\wv}\\zi\\\+}Fh [\ay\R1\n\5\\ ML鸉S^C\Z\=;:a75k˚K\\\{Ќ/K\\\SX\3ΓqTS\'ֹEg^ϫ\}z','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4343,'2018-05-28 10:28:30',1,'product.php','cPath=16&product_type=1&pID=84&action=update_product&page=1','174.235.133.72',1,'',_binary 'Tkk\@+>~4M78%PЂ\Xݝ\MN:\~߳Ʋ5l\\\\ޜ\YeBa\\*&n\\?\w\Ά_\I\	\\\:\^P\}\\yicDؖ\wb\l(I-uĵ\.v>`\m1\WHSS\\~@\\\\[ \\\_\D4\n4\_ۏ\9\}\rحȅ\\\"5n\/,\5\Vvξ\"b\3ͩ6\"\\\iSG\hu9J\qU\+כcV-b4=#n.G73q;\:we\-g4\\htߑٕvkG[\\ךeF+\f	\n̙\\G\\\\G\h\%\Z5Cj2-l\\E\\^41\\wȗ|\-5vCY,,\r\Se\kAZQ7$\\"gL2\\wv}\\zi\\\+}Fh [\ay\R1\n\5\\ ML鸉S^C\Z\=;:a75k˚K\\\{Ќ/K\\\SX\3ΓqTS\'ֹEg^ϫ\}z','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4344,'2018-05-28 10:28:30',1,'product.php','cPath=16&product_type=1&pID=84&action=update_product&page=1','174.235.133.72',0,'',_binary 'Tkk\@+>~4M78%PЂ\Xݝ\MN:\~߳Ʋ5l\\\\ޜ\YeBa\\*&n\\?\w\Ά_\I\	\\\:\^P\}\\yicDؖ\wb\l(I-uĵ\.v>`\m1\WHSS\\~@\\\\[ \\\_\D4\n4\_ۏ\9\}\rحȅ\\\"5n\/,\5\Vvξ\"b\3ͩ6\"\\\iSG\hu9J\qU\+כcV-b4=#n.G73q;\:we\-g4\\htߑٕvkG[\\ךeF+\f	\n̙\\G\\\\G\h\%\Z5Cj2-l\\E\\^41\\wȗ|\-5vCY,,\r\Se\kAZQ7$\\"gL2\\wv}\\zi\\\+}Fh [\ay\R1\n\5\\ ML鸉S^C\Z\=;:a75k˚K\\\{Ќ/K\\\SX\3ΓqTS\'ֹEg^ϫ\}z','Updated product 84 via admin console.','info'),(4345,'2018-05-28 10:28:31',1,'categories.php','cPath=16&pID=84&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4346,'2018-05-28 10:28:31',1,'categories.php','cPath=16&pID=84&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4347,'2018-05-28 10:29:40',1,'product.php','page=1&product_type=1&cPath=16&pID=79&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4348,'2018-05-28 10:29:40',1,'product.php','page=1&product_type=1&cPath=16&pID=79&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4349,'2018-05-28 10:33:57',1,'product.php','cPath=16&product_type=1&pID=79&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'Tmo\0+@6:V\"\TVu,\p\ę}}\Z\\C\\\﹗Znt\8X0%HjZ;V\km\n?\ԚYrD.\R\\\H˵ˀBOtntzȍ\Zm0\:\׋\0?Eex\LŤb3\fn\88#\6\}|A?Z8\\ߑvKnn[Q<\nu`2G\\\*-\"JRΔ:[^Bge\0F\؆r\\\\\\\hk+ľr%\r8Ndj͊j2\e8\n:ӛ\Zױ$BIp9R!\"6\'.qTn\\\	ˍ\A\\F:5\\\'3@\\\:Ow`I\\\\\IO\8\0/\]\zV\=$S@\\x:wA\ؙȵ\\xQT\9	ac;pt\4$\k<\~4ȗ\G\Wa3\@zH%|\Dfs\|-\\VC`Ե\72sIR%3\$Kf2a-aYB\Ăay҂B`4Ε\ W\0\Ei\qF\Z,\n\Rr.#\0b_/vm!u\"Թx\d\ZH]5^\\tĕԻGC6\IbA\vNDaGCF+\\\9_Lx\LudJ3\J%\C5k#\fWXJQG\y\s\W\go\C>`\\}V\','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4350,'2018-05-28 10:33:57',1,'product.php','cPath=16&product_type=1&pID=79&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'Tmo\0+@6:V\"\TVu,\p\ę}}\Z\\C\\\﹗Znt\8X0%HjZ;V\km\n?\ԚYrD.\R\\\H˵ˀBOtntzȍ\Zm0\:\׋\0?Eex\LŤb3\fn\88#\6\}|A?Z8\\ߑvKnn[Q<\nu`2G\\\*-\"JRΔ:[^Bge\0F\؆r\\\\\\\hk+ľr%\r8Ndj͊j2\e8\n:ӛ\Zױ$BIp9R!\"6\'.qTn\\\	ˍ\A\\F:5\\\'3@\\\:Ow`I\\\\\IO\8\0/\]\zV\=$S@\\x:wA\ؙȵ\\xQT\9	ac;pt\4$\k<\~4ȗ\G\Wa3\@zH%|\Dfs\|-\\VC`Ե\72sIR%3\$Kf2a-aYB\Ăay҂B`4Ε\ W\0\Ei\qF\Z,\n\Rr.#\0b_/vm!u\"Թx\d\ZH]5^\\tĕԻGC6\IbA\vNDaGCF+\\\9_Lx\LudJ3\J%\C5k#\fWXJQG\y\s\W\go\C>`\\}V\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4351,'2018-05-28 10:34:00',1,'product.php','cPath=16&product_type=1&pID=79&action=update_product&page=1','174.235.133.72',0,'',_binary 'Tao\0+\'>m\"t\LD\TVu\"\pę}}\V	޽ww~\s-\*M3c\\-\\\n\\Ԛ:\\\*-{z+aE.>F\SD%Q(\	>_xB2uYɄ\\'\\֛\\hлZ_S\"iqR\\,Iޭ+\E\[|\m\fޛJ~\V\T\\Zj,y[$K6:\J\̖\j{fb-\PD\N5!lF\a3\uR9u2T\\u>?Çv{?\Zǣk,M<eK7_\DΩ\u/{\|\~p/)WKPE\"ZѲ\\Qa\\8m\\\%tJ.s\t\R\&~-|o\&@\\m\v:j5ZnLF?(6\p4z^eRe\6ӳ\;\΅\\]\>6\&M\+\\ֽ4xexPoSЙxAcւk\n*\\\\Z\8UEW1\.ӯ\W^>\V=_g,\~\+\j!\	sS\G,݅IDR\H\\}\&΄1V\W`P	4DԊ\(\\L`UJj6U\\řJ\B<1K \\\/czB\\;Ձ\&ssd\\\E\g\\\','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4352,'2018-05-28 10:34:01',1,'product.php','cPath=16&product_type=1&pID=79&action=update_product&page=1','174.235.133.72',1,'',_binary 'Tao\0+\'>m\"t\LD\TVu\"\pę}}\V	޽ww~\s-\*M3c\\-\\\n\\Ԛ:\\\*-{z+aE.>F\SD%Q(\	>_xB2uYɄ\\'\\֛\\hлZ_S\"iqR\\,Iޭ+\E\[|\m\fޛJ~\V\T\\Zj,y[$K6:\J\̖\j{fb-\PD\N5!lF\a3\uR9u2T\\u>?Çv{?\Zǣk,M<eK7_\DΩ\u/{\|\~p/)WKPE\"ZѲ\\Qa\\8m\\\%tJ.s\t\R\&~-|o\&@\\m\v:j5ZnLF?(6\p4z^eRe\6ӳ\;\΅\\]\>6\&M\+\\ֽ4xexPoSЙxAcւk\n*\\\\Z\8UEW1\.ӯ\W^>\V=_g,\~\+\j!\	sS\G,݅IDR\H\\}\&΄1V\W`P	4DԊ\(\\L`UJj6U\\řJ\B<1K \\\/czB\\;Ձ\&ssd\\\E\g\\\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4353,'2018-05-28 10:34:01',1,'product.php','cPath=16&product_type=1&pID=79&action=update_product&page=1','174.235.133.72',0,'',_binary 'Tao\0+\'>m\"t\LD\TVu\"\pę}}\V	޽ww~\s-\*M3c\\-\\\n\\Ԛ:\\\*-{z+aE.>F\SD%Q(\	>_xB2uYɄ\\'\\֛\\hлZ_S\"iqR\\,Iޭ+\E\[|\m\fޛJ~\V\T\\Zj,y[$K6:\J\̖\j{fb-\PD\N5!lF\a3\uR9u2T\\u>?Çv{?\Zǣk,M<eK7_\DΩ\u/{\|\~p/)WKPE\"ZѲ\\Qa\\8m\\\%tJ.s\t\R\&~-|o\&@\\m\v:j5ZnLF?(6\p4z^eRe\6ӳ\;\΅\\]\>6\&M\+\\ֽ4xexPoSЙxAcւk\n*\\\\Z\8UEW1\.ӯ\W^>\V=_g,\~\+\j!\	sS\G,݅IDR\H\\}\&΄1V\W`P	4DԊ\(\\L`UJj6U\\řJ\B<1K \\\/czB\\;Ձ\&ssd\\\E\g\\\','Updated product 79 via admin console.','info'),(4354,'2018-05-28 10:34:01',1,'categories.php','cPath=16&pID=79&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4355,'2018-05-28 10:34:02',1,'categories.php','cPath=16&pID=79&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4356,'2018-05-28 10:35:05',1,'product.php','page=1&product_type=1&cPath=16&pID=79&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4357,'2018-05-28 10:35:05',1,'product.php','page=1&product_type=1&cPath=16&pID=79&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4358,'2018-05-28 10:35:20',1,'product.php','cPath=16&product_type=1&pID=79&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'T\n\@OBb0)}\"*0Bi\t\uXQ6$\\<\Ȟ9sf\rk8f\rI\&	OjZ;V\kmhNvj\ZJ\0D.\\\ha\e\\"\:\Bk81Jc\"u>cu\uy5ΥO\\7sʬ\\\\\z\\\ӯ\\\\ڽ.\ܶ\o&܏a2z\\x0]ƣa\商RQ)\-/!Pk;{\#KIj\knA[\-2B:\B[G\!\Т\s-O\\hfBNp9R!\"Ag.\<\\i[\LϲT[t\uw`\\\\\\F\8\0o}Ѻ	ޘ\@O\AgD}X*hƊ\HmcQk\0eہ\0*iv	5~\\~4\\\QC!\0[Q_TƇx\"[H\@=;\a-f\s$H&θ1@VXM&lV\XͭVY\`i\\\0\J1\r\nTcQ\>D\nzo\\f\\ݞB5>]97|[D\':I=5ڏ\\B9`J^n!\Ze\\r:Q	q0\n|\"]\妫ÍU\8PѢ>\\\n\/R.\~j۔U{\ѵwf2\\?','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4359,'2018-05-28 10:35:20',1,'product.php','cPath=16&product_type=1&pID=79&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'T\n\@OBb0)}\"*0Bi\t\uXQ6$\\<\Ȟ9sf\rk8f\rI\&	OjZ;V\kmhNvj\ZJ\0D.\\\ha\e\\"\:\Bk81Jc\"u>cu\uy5ΥO\\7sʬ\\\\\z\\\ӯ\\\\ڽ.\ܶ\o&܏a2z\\x0]ƣa\商RQ)\-/!Pk;{\#KIj\knA[\-2B:\B[G\!\Т\s-O\\hfBNp9R!\"Ag.\<\\i[\LϲT[t\uw`\\\\\\F\8\0o}Ѻ	ޘ\@O\AgD}X*hƊ\HmcQk\0eہ\0*iv	5~\\~4\\\QC!\0[Q_TƇx\"[H\@=;\a-f\s$H&θ1@VXM&lV\XͭVY\`i\\\0\J1\r\nTcQ\>D\nzo\\f\\ݞB5>]97|[D\':I=5ڏ\\B9`J^n!\Ze\\r:Q	q0\n|\"]\妫ÍU\8PѢ>\\\n\/R.\~j۔U{\ѵwf2\\?','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4360,'2018-05-28 10:35:23',1,'product.php','cPath=16&product_type=1&pID=79&action=update_product&page=1','174.235.133.72',0,'',_binary 'T\n\@OBb0)}\"*0\F\\jY/\uXQ64%=3\\\>7r%cˌ&15\8\qc\\z~\]\\^\H6\\+\D`]ef\f\"\:\R\4\"WqB \>\!\Pc5:Z\\r	]$\7KʌU\\\{}M!BcGge4I\\+&PcXX󆜡;\\SL?çRR\*\ع\Xm&[ZT^<\\)\B\\(\\\*Ʃ\"È\{P0\qR\\n.\DT\\1F\\Cwпút|#E\SrbQ8\\^\\\)_aHWZ2 \n;N\jD]Qź*\q\\rZЯ-*nq%\)錦Xa:7\h\$Z\Zf\\h~Nƍ\\)!6W\;Uf6]p5\\XrkN\\\~ѹ\0o\0Gi+*\(GRe\]#rU%a\ׂO4VUg,-~`k\@e| eBP\ҽ\0Q¬\\q\x\Te\\kYLI\֠ykM!%pfĆ9/52E4[B?u@X\'\~q\\A\'t\3ڟq2,tmJkP\\x','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4361,'2018-05-28 10:35:23',1,'product.php','cPath=16&product_type=1&pID=79&action=update_product&page=1','174.235.133.72',1,'',_binary 'T\n\@OBb0)}\"*0\F\\jY/\uXQ64%=3\\\>7r%cˌ&15\8\qc\\z~\]\\^\H6\\+\D`]ef\f\"\:\R\4\"WqB \>\!\Pc5:Z\\r	]$\7KʌU\\\{}M!BcGge4I\\+&PcXX󆜡;\\SL?çRR\*\ع\Xm&[ZT^<\\)\B\\(\\\*Ʃ\"È\{P0\qR\\n.\DT\\1F\\Cwпút|#E\SrbQ8\\^\\\)_aHWZ2 \n;N\jD]Qź*\q\\rZЯ-*nq%\)錦Xa:7\h\$Z\Zf\\h~Nƍ\\)!6W\;Uf6]p5\\XrkN\\\~ѹ\0o\0Gi+*\(GRe\]#rU%a\ׂO4VUg,-~`k\@e| eBP\ҽ\0Q¬\\q\x\Te\\kYLI\֠ykM!%pfĆ9/52E4[B?u@X\'\~q\\A\'t\3ڟq2,tmJkP\\x','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4362,'2018-05-28 10:35:23',1,'product.php','cPath=16&product_type=1&pID=79&action=update_product&page=1','174.235.133.72',0,'',_binary 'T\n\@OBb0)}\"*0\F\\jY/\uXQ64%=3\\\>7r%cˌ&15\8\qc\\z~\]\\^\H6\\+\D`]ef\f\"\:\R\4\"WqB \>\!\Pc5:Z\\r	]$\7KʌU\\\{}M!BcGge4I\\+&PcXX󆜡;\\SL?çRR\*\ع\Xm&[ZT^<\\)\B\\(\\\*Ʃ\"È\{P0\qR\\n.\DT\\1F\\Cwпút|#E\SrbQ8\\^\\\)_aHWZ2 \n;N\jD]Qź*\q\\rZЯ-*nq%\)錦Xa:7\h\$Z\Zf\\h~Nƍ\\)!6W\;Uf6]p5\\XrkN\\\~ѹ\0o\0Gi+*\(GRe\]#rU%a\ׂO4VUg,-~`k\@e| eBP\ҽ\0Q¬\\q\x\Te\\kYLI\֠ykM!%pfĆ9/52E4[B?u@X\'\~q\\A\'t\3ڟq2,tmJkP\\x','Updated product 79 via admin console.','info'),(4363,'2018-05-28 10:35:24',1,'categories.php','cPath=16&pID=79&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4364,'2018-05-28 10:35:24',1,'categories.php','cPath=16&pID=79&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4365,'2018-05-28 10:35:32',1,'product.php','page=1&product_type=1&cPath=16&pID=80&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4366,'2018-05-28 10:35:33',1,'product.php','page=1&product_type=1&cPath=16&pID=80&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4367,'2018-05-28 10:36:47',1,'product.php','cPath=16&product_type=1&pID=80&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'T\n\Z1\'B\D\ZDR\\Z\7XEwC\%\C@x\̙<W2#\'\Pr\"UzF\A6X#\5[YU(\r\\j\ʃR\(+Kc\/|atrȌ[m\\\\>Β2<.\_a{\E[@gyu\$\\ӫ\\\ݘ5:-vs[j\j8\\7)\'w\dv1\Z\\W^\x<\\K\E|s@4j\H[.bU0.e\F[[\"ke\A|\Z$\\\],S\\\\|T\A \D4J	\\n\*$j+O\NZaTJ\әK\\X߿3A\\në\Y5;UWVN\\T\$\7\Algv\t\ˠQVk1\A\raKev<\h\AovÂZ;Z&V\3\h\Tٜ9\nm\*5JkFX1\Z۬Ř F\@!8\	lCi(҃w|W\"Z 6\\~Ԏ<ёc|ؘ\=kOK,\\Iڍ\\e\C*c=l\\lI\*Y\q2\(\hb\1xX}3n\\Zgn^9ϗ','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4368,'2018-05-28 10:36:48',1,'product.php','cPath=16&product_type=1&pID=80&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'T\n\Z1\'B\D\ZDR\\Z\7XEwC\%\C@x\̙<W2#\'\Pr\"UzF\A6X#\5[YU(\r\\j\ʃR\(+Kc\/|atrȌ[m\\\\>Β2<.\_a{\E[@gyu\$\\ӫ\\\ݘ5:-vs[j\j8\\7)\'w\dv1\Z\\W^\x<\\K\E|s@4j\H[.bU0.e\F[[\"ke\A|\Z$\\\],S\\\\|T\A \D4J	\\n\*$j+O\NZaTJ\әK\\X߿3A\\në\Y5;UWVN\\T\$\7\Algv\t\ˠQVk1\A\raKev<\h\AovÂZ;Z&V\3\h\Tٜ9\nm\*5JkFX1\Z۬Ř F\@!8\	lCi(҃w|W\"Z 6\\~Ԏ<ёc|ؘ\=kOK,\\Iڍ\\e\C*c=l\\lI\*Y\q2\(\hb\1xX}3n\\Zgn^9ϗ','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4369,'2018-05-28 10:36:51',1,'product.php','cPath=16&product_type=1&pID=80&action=update_product&page=1','174.235.133.72',0,'',_binary 'Tao\0+mRL\TH\\pĩ}}礬j\Zܽ{w\\\Zft\ZJQ$Z\\n\n38o-\\n\N?l\\Z,J\!\(i\Ro4\\n\R\g\$_\"2\VjDv\4\>\\"+\\kP1\c߸7u\4peiy0\n\\<\h\\\;q[.bR\SJ^\Zmm\OA!!\@^*\vL\îO\q\\A \DtJ	\\w*GY\1?݁1W>~\\h:Z\'\J;r<0|;\\Nuѻ\xA3\\\\lI\*Y\r:Nm\\\ki6F\Jߩ\<S+ʦ\\Z\N!!gjЯ\\\-\\Mf2l0R:,\"Ç܍\\xxU{\\ziQ*\'\\\R٭K\\Y\q~(\G>k\\\v\U^YY4ycgt\\ZO\A6\\\.\!y92R!\3Zg*Yfg\3\'\\9\\\{a}L+\x\T\lNWX\\\\"u\(\\}esE9U*l&\2H#&Fb\rd\rY)1AD\wKj-B&pj%؆.$Cb(Q\o<3\\0+^\?','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4370,'2018-05-28 10:36:52',1,'product.php','cPath=16&product_type=1&pID=80&action=update_product&page=1','174.235.133.72',1,'',_binary 'Tao\0+mRL\TH\\pĩ}}礬j\Zܽ{w\\\Zft\ZJQ$Z\\n\n38o-\\n\N?l\\Z,J\!\(i\Ro4\\n\R\g\$_\"2\VjDv\4\>\\"+\\kP1\c߸7u\4peiy0\n\\<\h\\\;q[.bR\SJ^\Zmm\OA!!\@^*\vL\îO\q\\A \DtJ	\\w*GY\1?݁1W>~\\h:Z\'\J;r<0|;\\Nuѻ\xA3\\\\lI\*Y\r:Nm\\\ki6F\Jߩ\<S+ʦ\\Z\N!!gjЯ\\\-\\Mf2l0R:,\"Ç܍\\xxU{\\ziQ*\'\\\R٭K\\Y\q~(\G>k\\\v\U^YY4ycgt\\ZO\A6\\\.\!y92R!\3Zg*Yfg\3\'\\9\\\{a}L+\x\T\lNWX\\\\"u\(\\}esE9U*l&\2H#&Fb\rd\rY)1AD\wKj-B&pj%؆.$Cb(Q\o<3\\0+^\?','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4371,'2018-05-28 10:36:52',1,'product.php','cPath=16&product_type=1&pID=80&action=update_product&page=1','174.235.133.72',0,'',_binary 'Tao\0+mRL\TH\\pĩ}}礬j\Zܽ{w\\\Zft\ZJQ$Z\\n\n38o-\\n\N?l\\Z,J\!\(i\Ro4\\n\R\g\$_\"2\VjDv\4\>\\"+\\kP1\c߸7u\4peiy0\n\\<\h\\\;q[.bR\SJ^\Zmm\OA!!\@^*\vL\îO\q\\A \DtJ	\\w*GY\1?݁1W>~\\h:Z\'\J;r<0|;\\Nuѻ\xA3\\\\lI\*Y\r:Nm\\\ki6F\Jߩ\<S+ʦ\\Z\N!!gjЯ\\\-\\Mf2l0R:,\"Ç܍\\xxU{\\ziQ*\'\\\R٭K\\Y\q~(\G>k\\\v\U^YY4ycgt\\ZO\A6\\\.\!y92R!\3Zg*Yfg\3\'\\9\\\{a}L+\x\T\lNWX\\\\"u\(\\}esE9U*l&\2H#&Fb\rd\rY)1AD\wKj-B&pj%؆.$Cb(Q\o<3\\0+^\?','Updated product 80 via admin console.','info'),(4372,'2018-05-28 10:36:52',1,'categories.php','cPath=16&pID=80&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4373,'2018-05-28 10:36:52',1,'categories.php','cPath=16&pID=80&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4374,'2018-05-28 10:39:01',1,'configuration.php','gID=8','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4375,'2018-05-28 10:39:01',1,'configuration.php','gID=8','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4376,'2018-05-28 10:39:18',1,'configuration.php','gID=8&cID=220&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4377,'2018-05-28 10:39:19',1,'configuration.php','gID=8&cID=220&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4378,'2018-05-28 10:39:27',1,'configuration.php','gID=8&cID=220&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	uwt\002dR-\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4379,'2018-05-28 10:39:28',1,'configuration.php','gID=8&cID=220&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	uwt\002dR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4380,'2018-05-28 10:39:28',1,'configuration.php','gID=8&cID=220&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	uwt\002dR-\0','Configuration setting changed for PRODUCT_LIST_WEIGHT: 1','warning'),(4381,'2018-05-28 10:39:28',1,'configuration.php','gID=8&cID=220','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4382,'2018-05-28 10:39:28',1,'configuration.php','gID=8&cID=220','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4383,'2018-05-28 10:39:45',1,'configuration.php','gID=8&cID=223&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4384,'2018-05-28 10:39:46',1,'configuration.php','gID=8&cID=223&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4385,'2018-05-28 10:39:54',1,'configuration.php','gID=8&cID=223&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2V\Q*.M\\,	r\rswrwv\0*22\"\\B\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4386,'2018-05-28 10:39:54',1,'configuration.php','gID=8&cID=223&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2V\Q*.M\\,	r\rswrwv\0*22\"\\B\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4387,'2018-05-28 10:39:54',1,'configuration.php','gID=8&cID=223&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2V\Q*.M\\,	r\rswrwv\0*22\"\\B\0','Configuration setting changed for PREV_NEXT_BAR_LOCATION: 3','warning'),(4388,'2018-05-28 10:39:54',1,'configuration.php','gID=8&cID=223','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4389,'2018-05-28 10:39:55',1,'configuration.php','gID=8&cID=223','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4390,'2018-05-28 10:40:19',1,'configuration.php','gID=8&cID=225&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4391,'2018-05-28 10:40:20',1,'configuration.php','gID=8&cID=225&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4392,'2018-05-28 10:40:30',1,'configuration.php','gID=8&cID=225&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	utvw\n\0*$Fa%\DCZ\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4393,'2018-05-28 10:40:30',1,'configuration.php','gID=8&cID=225&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	utvw\n\0*$Fa%\DCZ\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4394,'2018-05-28 10:40:30',1,'configuration.php','gID=8&cID=225&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	utvw\n\0*$Fa%\DCZ\0','Configuration setting changed for PRODUCT_LIST_PRICE_BUY_NOW: 1','warning'),(4395,'2018-05-28 10:40:31',1,'configuration.php','gID=8&cID=225','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4396,'2018-05-28 10:40:31',1,'configuration.php','gID=8&cID=225','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4397,'2018-05-28 10:40:40',1,'configuration.php','gID=8&cID=227&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4398,'2018-05-28 10:40:40',1,'configuration.php','gID=8&cID=227&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4399,'2018-05-28 10:40:49',1,'configuration.php','gID=8&cID=227&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	uwq\rv\0)3%\X\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4400,'2018-05-28 10:40:50',1,'configuration.php','gID=8&cID=227&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	uwq\rv\0)3%\X\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4401,'2018-05-28 10:40:50',1,'configuration.php','gID=8&cID=227&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	uwq\rv\0)3%\X\0','Configuration setting changed for PRODUCT_LIST_DESCRIPTION: 1','warning'),(4402,'2018-05-28 10:40:50',1,'configuration.php','gID=8&cID=227','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4403,'2018-05-28 10:40:50',1,'configuration.php','gID=8&cID=227','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4404,'2018-05-28 11:49:02',0,'login.php ','camefrom=categories.php','174.235.133.72',0,'',_binary '\0','Accessed page [login.php]','info'),(4405,'2018-05-28 11:49:03',0,'login.php ','camefrom=categories.php','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4406,'2018-05-28 11:49:18',0,'login.php Eagle','camefrom=categories.php','174.235.133.72',0,'',_binary 'VJL.\\\SRJ\77MHK1704451IMN66043NJ63L3LNM4S\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do75e8fd7011544ecc30163bc61f39cea6. Review page_parameters and postdata for details.','info'),(4407,'2018-05-28 11:49:19',0,'login.php Eagle','camefrom=categories.php','174.235.133.72',1,'',_binary 'VJL.\\\SRJ\77MHK1704451IMN66043NJ63L3LNM4S\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4408,'2018-05-28 11:49:19',1,'categories.php','','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4409,'2018-05-28 11:49:20',1,'categories.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4410,'2018-05-28 11:49:24',1,'categories.php','cPath=3','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4411,'2018-05-28 11:49:25',1,'categories.php','cPath=3','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4412,'2018-05-28 11:49:31',1,'product.php','page=1&product_type=1&cPath=3&pID=45&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4413,'2018-05-28 11:49:31',1,'product.php','page=1&product_type=1&cPath=3&pID=45&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4414,'2018-05-28 11:52:05',1,'product.php','cPath=3&product_type=1&pID=45&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'XO+7W\8j/		ҧBy(Т;!EήصۛT\\\n@>Gb\\o\[w\Dx9I\"Π\\u{\`D\x`<\\tv2ἴ\ctS\\\ڪQ.6S_\7skU:cq\qt-\\f\`JT\R8ث}amm\\"\\3޹\\:ͤ]Htaୱtgv0vO/\v\h*_\oy5i&\Y9\[5+0y<S\j\ 2U\8WI7W\B\\ZSTy\\O\\*\n\"\&G\I\w7(ߓ\\0\\.*\\&Ǔ\d{yB\\\\\	\L\48<\\.w?\,=|>\\\3)Bn\_\XsNhae\\\	M~))Qz&%\\\ȩ<5.mI\r4l\B\LW2	\Lз\V*\\\R5d\ܻ\\\\n\\\niKh\s\0\2{^KdRcUJ-O`\BڤfQ\C\nX\\)*`\!ki\Eg};\\(,-\r03k3<*~LKq\\%be\n4RɎ67sM5\\\"-=<R\x	\\Zk\u\n`;\\%\U&!t9\Ĉn,CH\\aWj%҈`\\0I1ԞVRx$\+2\`M\`\A}\"[+ɹ\\?:Dt\\\\Z\ V	V.3-ԁ1=\6)\۴\0ž:\\\z3\	+;jiaY\\\=6Hi\\LzV\\D4	}\ \nB+y\\.\lr&&\n\f,-)K>\\XX\\`6>\ç\\U\4\A\rn\a=VMQ\Ԝ\u\aPI5yε62k\\0xA:\P\"Ns\nx\r`Y\\be\By[\"g[LI+z`(w𡉲ZsE@g\Rā&`MBڬ7(g\~\	$e2x\j\\r\d\\r0>\i\p՘N\n.b\\01j\r;\'eֵQZg\mT7P.\3\2QǪ	\"\"\\\6:4oWIoUKpXA\6K&#qfI\\m.cd\l8808&GML\@\\\n\\	Ե\\ncG%\\Mm0\#v|\\W\`3\BBݙD\\t\Vbt\0Ȫܤ4R f\^!2%r*$\\X\'1DYFs\|\0y2\\$,(C\\(\\REO!y\nH0F2\1b	#\:$K	0vl\Fϥ\r^\0P\sxḊ\MoU\\#i&\%U?^Wc]\Q\1\\\\'l\^\"\iWt\\Y\\0\ZfHhwðߏ=\{ɱQ4$B\}RW΄H\ZЮ6/\0\\	v/My1\JIG<3+\"َ\98vG{(f7\T\SS3\eq\U\\ߐ+\Vg\f\ʃߐ]Qs\\0f.[q\p\wuE7\\nwЫ>O\\ݕy\pM\1\FS;\_ \0jC\MZ?\`.\|\ՙ60\9G+Pg=9C \.%bQ_՜YJ&\1]\"\'0\㊍6P\Y)J\KE\\}\O\\w0ǥ\6̕\P\\k\\n\0\=0B\\ا:OTW=\P\π3cK\'\\\_g\nr	Fl.lPq\܈D\\Ft\Z\p=}𩻟fnm[U(lA\nL\\St\F7	{\n)\1\\1l\n\\&\_2t\\e\Z[C\9}\hh)\]eb\\.\\5(PMg	:\\"AoY\\\)\TpO\G4\\z!*-\O3<\o\\\>|\\.f\WRg<FV	\T\>a\\ |\J]\_Q]jjM_?շ\\\\\"ã;g~3e~=\\y\0P\E\-{:~D\8\4QB\3<3kkZ\f@\9in}\\:P[Eܓ2\v','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4415,'2018-05-28 11:52:05',1,'product.php','cPath=3&product_type=1&pID=45&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'XO+7W\8j/		ҧBy(Т;!EήصۛT\\\n@>Gb\\o\[w\Dx9I\"Π\\u{\`D\x`<\\tv2ἴ\ctS\\\ڪQ.6S_\7skU:cq\qt-\\f\`JT\R8ث}amm\\"\\3޹\\:ͤ]Htaୱtgv0vO/\v\h*_\oy5i&\Y9\[5+0y<S\j\ 2U\8WI7W\B\\ZSTy\\O\\*\n\"\&G\I\w7(ߓ\\0\\.*\\&Ǔ\d{yB\\\\\	\L\48<\\.w?\,=|>\\\3)Bn\_\XsNhae\\\	M~))Qz&%\\\ȩ<5.mI\r4l\B\LW2	\Lз\V*\\\R5d\ܻ\\\\n\\\niKh\s\0\2{^KdRcUJ-O`\BڤfQ\C\nX\\)*`\!ki\Eg};\\(,-\r03k3<*~LKq\\%be\n4RɎ67sM5\\\"-=<R\x	\\Zk\u\n`;\\%\U&!t9\Ĉn,CH\\aWj%҈`\\0I1ԞVRx$\+2\`M\`\A}\"[+ɹ\\?:Dt\\\\Z\ V	V.3-ԁ1=\6)\۴\0ž:\\\z3\	+;jiaY\\\=6Hi\\LzV\\D4	}\ \nB+y\\.\lr&&\n\f,-)K>\\XX\\`6>\ç\\U\4\A\rn\a=VMQ\Ԝ\u\aPI5yε62k\\0xA:\P\"Ns\nx\r`Y\\be\By[\"g[LI+z`(w𡉲ZsE@g\Rā&`MBڬ7(g\~\	$e2x\j\\r\d\\r0>\i\p՘N\n.b\\01j\r;\'eֵQZg\mT7P.\3\2QǪ	\"\"\\\6:4oWIoUKpXA\6K&#qfI\\m.cd\l8808&GML\@\\\n\\	Ե\\ncG%\\Mm0\#v|\\W\`3\BBݙD\\t\Vbt\0Ȫܤ4R f\^!2%r*$\\X\'1DYFs\|\0y2\\$,(C\\(\\REO!y\nH0F2\1b	#\:$K	0vl\Fϥ\r^\0P\sxḊ\MoU\\#i&\%U?^Wc]\Q\1\\\\'l\^\"\iWt\\Y\\0\ZfHhwðߏ=\{ɱQ4$B\}RW΄H\ZЮ6/\0\\	v/My1\JIG<3+\"َ\98vG{(f7\T\SS3\eq\U\\ߐ+\Vg\f\ʃߐ]Qs\\0f.[q\p\wuE7\\nwЫ>O\\ݕy\pM\1\FS;\_ \0jC\MZ?\`.\|\ՙ60\9G+Pg=9C \.%bQ_՜YJ&\1]\"\'0\㊍6P\Y)J\KE\\}\O\\w0ǥ\6̕\P\\k\\n\0\=0B\\ا:OTW=\P\π3cK\'\\\_g\nr	Fl.lPq\܈D\\Ft\Z\p=}𩻟fnm[U(lA\nL\\St\F7	{\n)\1\\1l\n\\&\_2t\\e\Z[C\9}\hh)\]eb\\.\\5(PMg	:\\"AoY\\\)\TpO\G4\\z!*-\O3<\o\\\>|\\.f\WRg<FV	\T\>a\\ |\J]\_Q]jjM_?շ\\\\\"ã;g~3e~=\\y\0P\E\-{:~D\8\4QB\3<3kkZ\f@\9in}\\:P[Eܓ2\v','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4416,'2018-05-28 11:52:20',1,'product.php','cPath=3&product_type=1&pID=45&action=update_product&page=1','174.235.133.72',0,'',_binary 'XN\H:N\m\IB\@vZ\\10p\u\N҇\m\	f~\vb`f\\\W^\ܚ&\˩H\w~\\w#\\\a	祝ư\\*6\\\֍r)2X\}8[ȭ\\8?m\/\\WBb!^]\E\+m\v\T9D \\\ocߍ+\ʩުY\\%\\4NOz|\8WYW\B\\ZUSTy\\O\\=B{cT5S\,\^[Z\\\s \wW~x\^\L\"9\\a5\\rL3`LA#\S+\S\t:</Iep\VuS8ڙk\C*[\Ojo70c+xe\^\\"\a?޹\h\;\Lڅ\qIMe,\Y]<\Ow{;9.]lU\э\\\\rm\\-]_\̈́J \⹻yef\\\\A~=č^\'ZXY=^9!\/%e\>JO\$9\"WozaS\_\\oҖ,GXhIJ&	XJ%9\R撬{5K\-V~	z\\'#\~nTd\ؕ\*\D\\"%/\6YP@\\8Š:$v^<\\?PЏF\\Ҡ_H&3?NfSBŏi\"V\\\*9\\dA\\\4Y#%\\\ᑓ\\K׸\\NW \\*#2	Kc\B8%®\J}!\#b٬3\-Rx\+@qN\`ԁZ+ɵ\\?:Dt\afHb>	\n$\\(%p\A=)9\0\\`Ω[G\%pR$\dL:\\6	e\\{@JS\g\fnx\nH?\0\M<8x\\\ljt3\%oBOp͐s,\\@|AĠs\᷺\\r\U\4\FȪ\riaa?VMSΞ\Ԝ\\}\PI5yν	m@Ft\r\r8\1C	,L\\4\r-\\ƅD\[I+z,\\ZP\\e_s\\E`W\R\A&MBڬ7,g\y\	\"e2djɀFn2\FZXCO\p8jL\'J}2Dnh\IX\"\0e\uPz\\[TXЕ.\\j\wȹvus\i\\\\\,^\\`\\6K#8O\CW\w\\6B1Όe5`[|\S×\r&\	lhN\\\\rTQsŨ\\\\0\\9\D\o=paa\C\t\V\%\'UIi&a\@\LQG\<\ebۃ-qKph2H\\e\\\c2\B @\ LKh!\y)\nP\)O\\BEAj.eN\Q\ft|\p\n\\ϥ\rϑ^\0.\0U	x[\9p\E}˃7C٪RE\Tiŉ\%U?_W\*P\kėOX ^\\YV_.\ep\w~tУg8\\h!\aԯ\~4\Q\߇{!\\\哺s&|\\jK\O{mڋE\DTbN:\\`%$ۏ\}\r\\^m;AuR\)\v\2\*^J\oX̕uU	rs\*v\P]Qk\\0f-Zԃ\wuE7\\nwЫ~\\;+P\Z$c\\v^  \0kô\MZb>\.\?A\jOC	Ɏ\գ5C\.%j*A%.\\\\J\$Ac\\htv\Rk\A3v\7otKǥ6\\\\k\\Z\\\\?\0W\l8ii\\=Pћ\3cK\\~s7\"66,``\\:7\"Q\f{\\sL#GWUtF8~|\\ONUsom\[u(b\nM,\?Rt\F6	kǔ\ąӯ\0-c\{/\M5t\Wq	Dn;U&\\\uoу\t6`	-\\?\ݝM\\\^1\PKBf[^/\=\T`A\@\n\\>\/\^\>|\\.fO/:\\Z\Z-8\"	W\0\\<\\=\\\\\¦\g\ǇL\~y\/Ý?','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4417,'2018-05-28 11:52:20',1,'product.php','cPath=3&product_type=1&pID=45&action=update_product&page=1','174.235.133.72',1,'',_binary 'XN\H:N\m\IB\@vZ\\10p\u\N҇\m\	f~\vb`f\\\W^\ܚ&\˩H\w~\\w#\\\a	祝ư\\*6\\\֍r)2X\}8[ȭ\\8?m\/\\WBb!^]\E\+m\v\T9D \\\ocߍ+\ʩުY\\%\\4NOz|\8WYW\B\\ZUSTy\\O\\=B{cT5S\,\^[Z\\\s \wW~x\^\L\"9\\a5\\rL3`LA#\S+\S\t:</Iep\VuS8ڙk\C*[\Ojo70c+xe\^\\"\a?޹\h\;\Lڅ\qIMe,\Y]<\Ow{;9.]lU\э\\\\rm\\-]_\̈́J \⹻yef\\\\A~=č^\'ZXY=^9!\/%e\>JO\$9\"WozaS\_\\oҖ,GXhIJ&	XJ%9\R撬{5K\-V~	z\\'#\~nTd\ؕ\*\D\\"%/\6YP@\\8Š:$v^<\\?PЏF\\Ҡ_H&3?NfSBŏi\"V\\\*9\\dA\\\4Y#%\\\ᑓ\\K׸\\NW \\*#2	Kc\B8%®\J}!\#b٬3\-Rx\+@qN\`ԁZ+ɵ\\?:Dt\afHb>	\n$\\(%p\A=)9\0\\`Ω[G\%pR$\dL:\\6	e\\{@JS\g\fnx\nH?\0\M<8x\\\ljt3\%oBOp͐s,\\@|AĠs\᷺\\r\U\4\FȪ\riaa?VMSΞ\Ԝ\\}\PI5yν	m@Ft\r\r8\1C	,L\\4\r-\\ƅD\[I+z,\\ZP\\e_s\\E`W\R\A&MBڬ7,g\y\	\"e2djɀFn2\FZXCO\p8jL\'J}2Dnh\IX\"\0e\uPz\\[TXЕ.\\j\wȹvus\i\\\\\,^\\`\\6K#8O\CW\w\\6B1Όe5`[|\S×\r&\	lhN\\\\rTQsŨ\\\\0\\9\D\o=paa\C\t\V\%\'UIi&a\@\LQG\<\ebۃ-qKph2H\\e\\\c2\B @\ LKh!\y)\nP\)O\\BEAj.eN\Q\ft|\p\n\\ϥ\rϑ^\0.\0U	x[\9p\E}˃7C٪RE\Tiŉ\%U?_W\*P\kėOX ^\\YV_.\ep\w~tУg8\\h!\aԯ\~4\Q\߇{!\\\哺s&|\\jK\O{mڋE\DTbN:\\`%$ۏ\}\r\\^m;AuR\)\v\2\*^J\oX̕uU	rs\*v\P]Qk\\0f-Zԃ\wuE7\\nwЫ~\\;+P\Z$c\\v^  \0kô\MZb>\.\?A\jOC	Ɏ\գ5C\.%j*A%.\\\\J\$Ac\\htv\Rk\A3v\7otKǥ6\\\\k\\Z\\\\?\0W\l8ii\\=Pћ\3cK\\~s7\"66,``\\:7\"Q\f{\\sL#GWUtF8~|\\ONUsom\[u(b\nM,\?Rt\F6	kǔ\ąӯ\0-c\{/\M5t\Wq	Dn;U&\\\uoу\t6`	-\\?\ݝM\\\^1\PKBf[^/\=\T`A\@\n\\>\/\^\>|\\.fO/:\\Z\Z-8\"	W\0\\<\\=\\\\\¦\g\ǇL\~y\/Ý?','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4418,'2018-05-28 11:52:42',1,'product.php','cPath=3&product_type=1&pID=45&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'X\rO#9+uڤ\'		\\h!\Hp-R\t;n\	\jrw\'\r,#1$v\\^}\'&)b黎r*D&;\A\\\\x\\\\d\yi1$\*馊U\\l\n\%6{nN\\do%rb9u\\\"\\ \\_[\y\\+\P|qWs\J[\\>Eߡgs#\?/~$\Z\4v!u\\҅\ҝ\e\\,\=\\ci|o\\X\zLg\Txoլ\\\\4Nm~\T[X\\\%\\\\)\7RkQVL\R\ҋ>r:3\\\+\0\%!\\Z\\|OL_#@ت\+OnhYN\\z}K\\'t|3\\O\\<2\\}ЭgR0ܘ\\<	\\\\\\2RR&\\M\"J>\ÑS/2\nykMڒb\@i؊$doT),j.ɊwQcѹ\\\XIk\Ъ\*eD\\0r%SǪF[X)y/I͢0ʍSTC_\\΋t\\QXZ\Z``gr1S)2\\cg6	y*T8)\`K\\hmn\0Z&kDZz|yd\'n*5.$9ւ\@vJȫLBR\Isn\X®\J}\#abR=僭HH\+Ve\	DVs;t8\5\"A|P\'\\(fZcz@\mRķi\}ug׭g\)VvԂ%\,T=3\&!z~l\ԇ\i*<\"\A,Vz703\\\i\\\ML\\XZjS,|59ϱl|\Ou(#P\2i\\ \\\zBI^+\=O\r9\\àkks%mdD\-t̡D,L\b4\r\0-\\ƅD\V&bp\rQ\\Ce_\"\8Y.\0+ϥMYoPΌ\nH\d*Ւ\Ɍja=}\\\1*]Đ$b\pv23(OʬkL\\ۨ0!9o*]g;dU^DDιmth\\0L.\\02hf\<+ۈ.\yb$:Nqf,\\\\\\s\Z!61\J\0e+ps\'\\P\n+\r79\0 0v\\q]:QF̄qtg#\\[\LN \"p\\JJ,{x\Ķ[\ȕ`rWc\\Qf\9&-p\\P!(p!J=\)\"Tʀ[\d	&܏\w6\,%L\\\رq\?x\n\6\G{q\00@!\"t\\"\\\*b\#4]n\V*\"\dݴ\F\\%U_񃮊lh8\\6w/٫:i	\LЏz_GkC$;\\a\\G\\\^\\\(\Zy\h\\>+h\\$\rhW\]\0eq\٦̘L\Ot@%#\lGi\\@Z}\)x)\Zw\28*^JsH̕uU*r3qbQ\Aہ\Ȳ93\'Ut;Çכ\h;\U\'{Nm\\<d&q˘{aȂ7`^\0k\&-ѧf0\N\\L	ʎ\٣(J\\\!n]j\\"E%.Zq\J\H\܍Q%\֢\~\'otL\Rd\\u\\{\n\\\\?\0V\lq\\\F\\\'^\w荏g%ռ3}~s7366(\VvnD{\]tL#GUUtF~|\\ON`U36*\\?:\bٛ\\}Ņw~1`\uh\3ދxo2[􂜾i]L@v\\21.{\Z\Mh 7?,\\\h*`EC\#E\nmiPx\{\V@AɁ\nݖ\\'\clo>\\nV\\\+3\\\v:r0\nmW灯\WW5צ\\[o\\\Qȳ\n?_\L\wC\0D}wx\\=N?\R\b([a!\\\͓ǚ5|XdPo,Qشyrd\"\\՛w;','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4419,'2018-05-28 11:52:42',1,'product.php','cPath=3&product_type=1&pID=45&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'X\rO#9+uڤ\'		\\h!\Hp-R\t;n\	\jrw\'\r,#1$v\\^}\'&)b黎r*D&;\A\\\\x\\\\d\yi1$\*馊U\\l\n\%6{nN\\do%rb9u\\\"\\ \\_[\y\\+\P|qWs\J[\\>Eߡgs#\?/~$\Z\4v!u\\҅\ҝ\e\\,\=\\ci|o\\X\zLg\Txoլ\\\\4Nm~\T[X\\\%\\\\)\7RkQVL\R\ҋ>r:3\\\+\0\%!\\Z\\|OL_#@ت\+OnhYN\\z}K\\'t|3\\O\\<2\\}ЭgR0ܘ\\<	\\\\\\2RR&\\M\"J>\ÑS/2\nykMڒb\@i؊$doT),j.ɊwQcѹ\\\XIk\Ъ\*eD\\0r%SǪF[X)y/I͢0ʍSTC_\\΋t\\QXZ\Z``gr1S)2\\cg6	y*T8)\`K\\hmn\0Z&kDZz|yd\'n*5.$9ւ\@vJȫLBR\Isn\X®\J}\#abR=僭HH\+Ve\	DVs;t8\5\"A|P\'\\(fZcz@\mRķi\}ug׭g\)VvԂ%\,T=3\&!z~l\ԇ\i*<\"\A,Vz703\\\i\\\ML\\XZjS,|59ϱl|\Ou(#P\2i\\ \\\zBI^+\=O\r9\\àkks%mdD\-t̡D,L\b4\r\0-\\ƅD\V&bp\rQ\\Ce_\"\8Y.\0+ϥMYoPΌ\nH\d*Ւ\Ɍja=}\\\1*]Đ$b\pv23(OʬkL\\ۨ0!9o*]g;dU^DDιmth\\0L.\\02hf\<+ۈ.\yb$:Nqf,\\\\\\s\Z!61\J\0e+ps\'\\P\n+\r79\0 0v\\q]:QF̄qtg#\\[\LN \"p\\JJ,{x\Ķ[\ȕ`rWc\\Qf\9&-p\\P!(p!J=\)\"Tʀ[\d	&܏\w6\,%L\\\رq\?x\n\6\G{q\00@!\"t\\"\\\*b\#4]n\V*\"\dݴ\F\\%U_񃮊lh8\\6w/٫:i	\LЏz_GkC$;\\a\\G\\\^\\\(\Zy\h\\>+h\\$\rhW\]\0eq\٦̘L\Ot@%#\lGi\\@Z}\)x)\Zw\28*^JsH̕uU*r3qbQ\Aہ\Ȳ93\'Ut;Çכ\h;\U\'{Nm\\<d&q˘{aȂ7`^\0k\&-ѧf0\N\\L	ʎ\٣(J\\\!n]j\\"E%.Zq\J\H\܍Q%\֢\~\'otL\Rd\\u\\{\n\\\\?\0V\lq\\\F\\\'^\w荏g%ռ3}~s7366(\VvnD{\]tL#GUUtF~|\\ON`U36*\\?:\bٛ\\}Ņw~1`\uh\3ދxo2[􂜾i]L@v\\21.{\Z\Mh 7?,\\\h*`EC\#E\nmiPx\{\V@AɁ\nݖ\\'\clo>\\nV\\\+3\\\v:r0\nmW灯\WW5צ\\[o\\\Qȳ\n?_\L\wC\0D}wx\\=N?\R\b([a!\\\͓ǚ5|XdPo,Qشyrd\"\\՛w;','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4420,'2018-05-28 11:53:03',1,'product.php','cPath=3&product_type=1&pID=45&action=update_product&page=1','174.235.133.72',0,'',_binary 'XN\H:N\mb0pܢ;!Eaw\vY\﫶7\\\]]\ի[w\Dx9I\"֠\\u{\`D\xo<\ou2ἴ\;\*馊7\a\Ōr)2X\}8[ݑ[˩3Q\[pX\2\_	Y\u1//G\\G~4_\tVNV\\n.8/q*\\}\\\SƹjG{q/D\IEYE0uK\J/\\\\\\<}\c!W\blfJ\\\;\n\d\)뻫x?<l/d&\\\Z.R\0ʙX0ݩ\1Ua:~\ZD\88gSܙk\K̟}{i-\b\\`\V ʠEcx\Z_\\$ѰO\'\\\r\XBLyO\owhs\\ت\+Gk\eg\ϫ:?\	@\\sw\\\\\\{{[JE\\\QMΓ\	-N^\䗒2a\'oQ\+GN=\p(pol\7iKM\R,4\$y%`\{K,̜La)UsIV̽\ZΤ\-V~	z\\'#\~jTd\ؔ\*\x\\"%/\6Yt_@\\8Š:$v^<\\?PЏF\\Ҡ^&3=f\B\i\"V\\*9\\fA\\\4Y#$\\\၃\\Kո\\\nnS \M^e;4\\\\2@\\nR+F\.KeK\ W\0e\	;MQZl$\wP`\m5\"\:&(\#rz\&E|6\\0X\v\:Z/q\"ae \xe\\FόI\,mރ\Rp?4s\\Tx$YY\n\"\\k\\pe7(nMX!\\1\\ZD\Z1~\\\@Z_L\Jj\Z\\yjpL͙\\GX\\\\\\0dDW\0\@xAG3\\tNA @/J\0\XٸPޖș`u+ieR]\Ҡ\+t\\\\8\I\A\x!P9AL\Y-P\\Mf\Hk\\SW\P\C&Q\\rm8HnK̺v\T\y*,E΋AJwL\X5`;PD䜻\G\4\\r*vige\\&#8O`CG\\&B2Ne5`Y8|\S\C\;H67w\u\B\bTb^or\0nscu ߎꊷ\kb&\\(Xl\$CPv\0-]`\*6)\$)\r\jl\\Wx%!*\ZpE\>DYe4\ܷ\1\'SN\Z2\F(U0W\zЪ\*o)p?\٬Cg\&lt\\Z)p\p	\\\0`\\"t\"\\*\\#4]n\V*\"/\-3	iō&/s\T}\,\\q\.W/xLk\\![nx&\G=zC1FA!\F\\AX\G\\\N\]h\r\<\vh/\4\ɛ\.\3\\E)3S\S~\?@|,0shmvꭘE\\S4OC,\ณ\\\WRrc\\\YW:+7\(U,ZS\1kT4[\`Hg;/zY^dޙ\\m\\"\d\^\/,3,t\\vn\}jwx\nrWg\Z\LPvLg\ TJ\\At\9,\c\G*6lP\\(J\KEE\\%O\\w0ϥ\6ܕ\P\\k\w\n\\\\\W\l8ii\\=\TћO3cKugT\n~};266,``\\+;\\"Qa½\.:ݡFC#\\G?\\vcx\̯M~\n/\\cPqG\^ѬM\ڧ\1\(F_q\\)@C@^\\Ѝil\rݠ\U\bC\\b\]&\\\uoP\t:	-$\?\ޞMhu\\H!-\\n_Up\XP2P\{\cl/\w{t	\\N\]<NV	\\\\b\)!<캄^f_\^\\\~TYXش|@S\;hK\\\O','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4421,'2018-05-28 11:53:04',1,'product.php','cPath=3&product_type=1&pID=45&action=update_product&page=1','174.235.133.72',1,'',_binary 'XN\H:N\mb0pܢ;!Eaw\vY\﫶7\\\]]\ի[w\Dx9I\"֠\\u{\`D\xo<\ou2ἴ\;\*馊7\a\Ōr)2X\}8[ݑ[˩3Q\[pX\2\_	Y\u1//G\\G~4_\tVNV\\n.8/q*\\}\\\SƹjG{q/D\IEYE0uK\J/\\\\\\<}\c!W\blfJ\\\;\n\d\)뻫x?<l/d&\\\Z.R\0ʙX0ݩ\1Ua:~\ZD\88gSܙk\K̟}{i-\b\\`\V ʠEcx\Z_\\$ѰO\'\\\r\XBLyO\owhs\\ت\+Gk\eg\ϫ:?\	@\\sw\\\\\\{{[JE\\\QMΓ\	-N^\䗒2a\'oQ\+GN=\p(pol\7iKM\R,4\$y%`\{K,̜La)UsIV̽\ZΤ\-V~	z\\'#\~jTd\ؔ\*\x\\"%/\6Yt_@\\8Š:$v^<\\?PЏF\\Ҡ^&3=f\B\i\"V\\*9\\fA\\\4Y#$\\\၃\\Kո\\\nnS \M^e;4\\\\2@\\nR+F\.KeK\ W\0e\	;MQZl$\wP`\m5\"\:&(\#rz\&E|6\\0X\v\:Z/q\"ae \xe\\FόI\,mރ\Rp?4s\\Tx$YY\n\"\\k\\pe7(nMX!\\1\\ZD\Z1~\\\@Z_L\Jj\Z\\yjpL͙\\GX\\\\\\0dDW\0\@xAG3\\tNA @/J\0\XٸPޖș`u+ieR]\Ҡ\+t\\\\8\I\A\x!P9AL\Y-P\\Mf\Hk\\SW\P\C&Q\\rm8HnK̺v\T\y*,E΋AJwL\X5`;PD䜻\G\4\\r*vige\\&#8O`CG\\&B2Ne5`Y8|\S\C\;H67w\u\B\bTb^or\0nscu ߎꊷ\kb&\\(Xl\$CPv\0-]`\*6)\$)\r\jl\\Wx%!*\ZpE\>DYe4\ܷ\1\'SN\Z2\F(U0W\zЪ\*o)p?\٬Cg\&lt\\Z)p\p	\\\0`\\"t\"\\*\\#4]n\V*\"/\-3	iō&/s\T}\,\\q\.W/xLk\\![nx&\G=zC1FA!\F\\AX\G\\\N\]h\r\<\vh/\4\ɛ\.\3\\E)3S\S~\?@|,0shmvꭘE\\S4OC,\ณ\\\WRrc\\\YW:+7\(U,ZS\1kT4[\`Hg;/zY^dޙ\\m\\"\d\^\/,3,t\\vn\}jwx\nrWg\Z\LPvLg\ TJ\\At\9,\c\G*6lP\\(J\KEE\\%O\\w0ϥ\6ܕ\P\\k\w\n\\\\\W\l8ii\\=\TћO3cKugT\n~};266,``\\+;\\"Qa½\.:ݡFC#\\G?\\vcx\̯M~\n/\\cPqG\^ѬM\ڧ\1\(F_q\\)@C@^\\Ѝil\rݠ\U\bC\\b\]&\\\uoP\t:	-$\?\ޞMhu\\H!-\\n_Up\XP2P\{\cl/\w{t	\\N\]<NV	\\\\b\)!<캄^f_\^\\\~TYXش|@S\;hK\\\O','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4422,'2018-05-28 11:53:49',1,'product.php','cPath=3&product_type=1&pID=45&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'X\rO#9+uڤ\'		\\h!\Hp-R\t;n\	\jrw&,#1$v\\^}\'&)b黎r*D&;\A\\\\x\\\\d\yi1$\*馊F\\O}Kl>ܜέɶ%rb9u\\\"\\ \\_[\y\\\P|qWs\J[\\>Eߡgs#\?/~$\Z\4v!u\\҅\ҝ\e\\,\=\\ci|[\j,\O=Lr*jVwa\y\Z\\6?Ad\-qhoH\)ҵ(+n\\\\O\\*\n\"\&G_I\w7(ߓ\\0ӷ.*\\&Ǔ\d{yB^\\\	\L\\48<\\.w?\,=|`t\\!7ٯXks\9OB\'rz\愌&	(=y\@p\ԋBƚ~\d9\Zbi&\+e&\[b+d\d\nKKb\]\Xt.\\s4V\Z%\Je\=/%M\\\Ա*Q\\\'lEJ^\KmR(\\0C\r\\\\׵\"݄>hPX\\\T\5ؙM^\n?%N8.\|2(dG9\Ʀ\\Z._ى[)l\nhI\F\:P|*T:F\o[bD7!$+iD\|\\b[jO`+R~)<Bqi0\L\\\\\"kafHb+\?	+	\@tm\xb_\\u\h\v\`\4\\FόI\,m\4a~&=fl\"y\nH\0!ލ̉g\qZ6ڊKKmŒ&8g9\ru> b\. \Cs%2~j}UF2\:||b[8`XO(US\k\15gpryTRbMsm\r\\ZA06\0^9\A\0^lAeXٸPޖș\NS\ʤ^,!\|h쫎\\'k\\f\q	XУ6\\rʙ_rI^Zr@}C7q~C-L\qZ8\\5B2D\Zn`\Nf\@um\Y5*LEΛAJ\\c\\\0s\jz8+Ӥ\7ڥY8,\\ \6K&#qfI\\m.cd\l8808&\'ML\@\\\n\\	Ե\\n\G%\\Mm0\#~|\\W\`3\BBMD\\t\Vb\0Ȫܤ4R f\^!2Z-rK\JU0J9H+N\c(\8d\IXQ\KQB&`*@ZU}Qe-c2\ \G\;?uH&.a\ظ! x\n\6\G{q\00G!\"t\\"\\\*b\#4]n\V*/[mݴ\FS7\\\4BWE6CTx	ĻA\\\3ny6\G=zƯ#5F)\Fj\0\a\lu^rlh\rɼ\nhoԕ4\\\.\\0\lSnL\\':}\O\ɊX^\'k\\@Z3	\\)\ZXw\2*^JwH̕uUJr3jQ\Aہ\ȶ\37et\;Çכ\h;\U\'{Nm\\<d&s͘{aȂ?`^\0š{\&-ѯf0\^\L	ʎ\٣J\\!o\j\\"I%.Vq\N\H\܍Q\֢\\\'	otM\Rd\\u\\{\n\\\\?\0V\lq\\\F\\\'^\wh\\3\\ؒj~>ׁ?\Y\\!p`\\+;7\"Qaҽ\n:ݣG#\\O?>|\\\'\'cV\n[БǀBcS\bٛ\\Ņg~1`\uh\7ދxo2[􄜾i_L@z]fb\\.\\5(PMg	:\\"Ao~Y\\\)\Tp0\G\\z҅!*-\O3<%\o\\\>|\\.f\7Rg<VV	\)\=|\H\B*u:|Eu;\6}V\z!:<\)\\Z}\xg\;@\w(\'n\\\ o!-\\<^ܼyY\\k%\+Ea\\9ƑumEܣ\'4\v','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4423,'2018-05-28 11:53:50',1,'product.php','cPath=3&product_type=1&pID=45&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'X\rO#9+uڤ\'		\\h!\Hp-R\t;n\	\jrw&,#1$v\\^}\'&)b黎r*D&;\A\\\\x\\\\d\yi1$\*馊F\\O}Kl>ܜέɶ%rb9u\\\"\\ \\_[\y\\\P|qWs\J[\\>Eߡgs#\?/~$\Z\4v!u\\҅\ҝ\e\\,\=\\ci|[\j,\O=Lr*jVwa\y\Z\\6?Ad\-qhoH\)ҵ(+n\\\\O\\*\n\"\&G_I\w7(ߓ\\0ӷ.*\\&Ǔ\d{yB^\\\	\L\\48<\\.w?\,=|`t\\!7ٯXks\9OB\'rz\愌&	(=y\@p\ԋBƚ~\d9\Zbi&\+e&\[b+d\d\nKKb\]\Xt.\\s4V\Z%\Je\=/%M\\\Ա*Q\\\'lEJ^\KmR(\\0C\r\\\\׵\"݄>hPX\\\T\5ؙM^\n?%N8.\|2(dG9\Ʀ\\Z._ى[)l\nhI\F\:P|*T:F\o[bD7!$+iD\|\\b[jO`+R~)<Bqi0\L\\\\\"kafHb+\?	+	\@tm\xb_\\u\h\v\`\4\\FόI\,m\4a~&=fl\"y\nH\0!ލ̉g\qZ6ڊKKmŒ&8g9\ru> b\. \Cs%2~j}UF2\:||b[8`XO(US\k\15gpryTRbMsm\r\\ZA06\0^9\A\0^lAeXٸPޖș\NS\ʤ^,!\|h쫎\\'k\\f\q	XУ6\\rʙ_rI^Zr@}C7q~C-L\qZ8\\5B2D\Zn`\Nf\@um\Y5*LEΛAJ\\c\\\0s\jz8+Ӥ\7ڥY8,\\ \6K&#qfI\\m.cd\l8808&\'ML\@\\\n\\	Ե\\n\G%\\Mm0\#~|\\W\`3\BBMD\\t\Vb\0Ȫܤ4R f\^!2Z-rK\JU0J9H+N\c(\8d\IXQ\KQB&`*@ZU}Qe-c2\ \G\;?uH&.a\ظ! x\n\6\G{q\00G!\"t\\"\\\*b\#4]n\V*/[mݴ\FS7\\\4BWE6CTx	ĻA\\\3ny6\G=zƯ#5F)\Fj\0\a\lu^rlh\rɼ\nhoԕ4\\\.\\0\lSnL\\':}\O\ɊX^\'k\\@Z3	\\)\ZXw\2*^JwH̕uUJr3jQ\Aہ\ȶ\37et\;Çכ\h;\U\'{Nm\\<d&s͘{aȂ?`^\0š{\&-ѯf0\^\L	ʎ\٣J\\!o\j\\"I%.Vq\N\H\܍Q\֢\\\'	otM\Rd\\u\\{\n\\\\?\0V\lq\\\F\\\'^\wh\\3\\ؒj~>ׁ?\Y\\!p`\\+;7\"Qaҽ\n:ݣG#\\O?>|\\\'\'cV\n[БǀBcS\bٛ\\Ņg~1`\uh\7ދxo2[􄜾i_L@z]fb\\.\\5(PMg	:\\"Ao~Y\\\)\Tp0\G\\z҅!*-\O3<%\o\\\>|\\.f\7Rg<VV	\)\=|\H\B*u:|Eu;\6}V\z!:<\)\\Z}\xg\;@\w(\'n\\\ o!-\\<^ܼyY\\k%\+Ea\\9ƑumEܣ\'4\v','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4424,'2018-05-28 11:54:05',1,'product.php','cPath=3&product_type=1&pID=45&action=update_product&page=1','174.235.133.72',0,'',_binary 'X\rO#9+uڤIB\@v4Z\\10,p\9\N\\nlwB\\ݡ\F\\x<o\\$E\\4^NE\dk5\{\^;Q8\\[L8/\4\\X%\T^\(B/s\އӹ5\[ܪXN\8܏z\q^\aJu0%T*f)_\\\\\ľ\ֶ*\y5i]鬜\nﭚs^<M\T\?ryasD{s/D\HEYy0uK\J/\\\\\\<}\Bh blfJxzw\kB+=z\n\\.և\\$_K)\L,8ݩ\1Ua:~\ZD\80g)\M\\JڵU\\%,\\'ľjo0b ΠEC~u-ݯ\0h\ۧLڅ\qI\Ee,\Z]<\O\\'\;[1.]lU\э£\5m΋g\\\r]\\N@\\ww\\\\\\{{[JE\\3\a\'ZXY}\\}>&\/%e\>HO\$9Pz\P\X\oҖ,G9XhIJ&A	\J%9\R撬{5I\-V~	zQFt\~Td\X\\+\X\\"%/\6Yt_\!dqcJ\\Z\yn\Z~4\nKKY\\\T\n7ؙM^?%N8.\|XdG9\Ʀ\\Z.\č6^Bƅ$\Zpt>\W	yIH*#i7\-1\WؕZ4>X|\p1LR̞|)	Bz\\n\8X\4u@i\\Jr\qݶ0F$1:\xV.Ck@ۤo\\\ ή[G\%ΰS$\\KY.6zfMBfls>\ 3\T36<MGBH\J\\\g\qZ6zw3\%BMp\\s,\\}0AĀs᷺\\U\4\A\rn\a=VMQ\Ԝ\u\aPI5yε	\\nA06\0^9\A\0^lAeXٸPޖș`+ieR\\C;\\9N\\"3\\s)\@&m\3B\2\ng\n2\ZJO\pjLǅJ}1d\05\\\DY\Fj_P\\t!\:VM0x\r9箶ѡ}\02M|\ʠ]\n\"`2\lpt\\\\2VHƩ\#cOyjxV\\\+\r͝pA]*jи8*1Vor\0ls;a#ߎꊷ\\lb&\\(Xc!Qx0;-]@\*7)\ )Ĳ\j\\L\`\LR\.\	}eќc20߂ \0\@:	Kp!\i)\nT\SH\L\A/eL\H|f\R:1:\\1\\OۆH`/\0fNUxS\9p\\E\}ˍ7CڪTEMe$a7\\ԍ\\n~N՗j\Z\\"!*<]|\\\Om\^=s\qK\g~ߣ\'8\\h\"\aԯV\~?\Z(\vZ\\\EhH晶E{	\4mmtw)\l_drcRu?\>蛎=\\\yh{Sb&3P\<1U\NZ\@\K\JiuVnf?@-<h;\r\5c\&wAp\\\0yG?Swx_z\)mw\\Sۡ\2ɜA3\_hjg\@q\޹IK\EW:\fc:Ch*ǥR2v\\ED,꫚sHpR\>0Q|T\"&\3wc>+E)z蠸o\I\\\n\نr\|C\41չF(\AQ\j\+z\\)pflI5L\\r\_\N.ͅ\r\n80k0\^q7ӈ\PUUCݡ\w{\1j\\&U\t\1И#G/\h&a\\rc\Eסm\x/\e\ʿ\4n\r\~!\R2\tqp\Ԡ@5N&\pBIAdO\'@S=\,Zr)R\nK\\#\a\\nJT\?5Nӿe{wp\;KX]\6/2:Nyrz/S\\H\Bz_f_\^\d>TJ,lڼ_\e(?\Gp\|\{?','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4425,'2018-05-28 11:54:06',1,'product.php','cPath=3&product_type=1&pID=45&action=update_product&page=1','174.235.133.72',1,'',_binary 'X\rO#9+uڤIB\@v4Z\\10,p\9\N\\nlwB\\ݡ\F\\x<o\\$E\\4^NE\dk5\{\^;Q8\\[L8/\4\\X%\T^\(B/s\އӹ5\[ܪXN\8܏z\q^\aJu0%T*f)_\\\\\ľ\ֶ*\y5i]鬜\nﭚs^<M\T\?ryasD{s/D\HEYy0uK\J/\\\\\\<}\Bh blfJxzw\kB+=z\n\\.և\\$_K)\L,8ݩ\1Ua:~\ZD\80g)\M\\JڵU\\%,\\'ľjo0b ΠEC~u-ݯ\0h\ۧLڅ\qI\Ee,\Z]<\O\\'\;[1.]lU\э£\5m΋g\\\r]\\N@\\ww\\\\\\{{[JE\\3\a\'ZXY}\\}>&\/%e\>HO\$9Pz\P\X\oҖ,G9XhIJ&A	\J%9\R撬{5I\-V~	zQFt\~Td\X\\+\X\\"%/\6Yt_\!dqcJ\\Z\yn\Z~4\nKKY\\\T\n7ؙM^?%N8.\|XdG9\Ʀ\\Z.\č6^Bƅ$\Zpt>\W	yIH*#i7\-1\WؕZ4>X|\p1LR̞|)	Bz\\n\8X\4u@i\\Jr\qݶ0F$1:\xV.Ck@ۤo\\\ ή[G\%ΰS$\\KY.6zfMBfls>\ 3\T36<MGBH\J\\\g\qZ6zw3\%BMp\\s,\\}0AĀs᷺\\U\4\A\rn\a=VMQ\Ԝ\u\aPI5yε	\\nA06\0^9\A\0^lAeXٸPޖș`+ieR\\C;\\9N\\"3\\s)\@&m\3B\2\ng\n2\ZJO\pjLǅJ}1d\05\\\DY\Fj_P\\t!\:VM0x\r9箶ѡ}\02M|\ʠ]\n\"`2\lpt\\\\2VHƩ\#cOyjxV\\\+\r͝pA]*jи8*1Vor\0ls;a#ߎꊷ\\lb&\\(Xc!Qx0;-]@\*7)\ )Ĳ\j\\L\`\LR\.\	}eќc20߂ \0\@:	Kp!\i)\nT\SH\L\A/eL\H|f\R:1:\\1\\OۆH`/\0fNUxS\9p\\E\}ˍ7CڪTEMe$a7\\ԍ\\n~N՗j\Z\\"!*<]|\\\Om\^=s\qK\g~ߣ\'8\\h\"\aԯV\~?\Z(\vZ\\\EhH晶E{	\4mmtw)\l_drcRu?\>蛎=\\\yh{Sb&3P\<1U\NZ\@\K\JiuVnf?@-<h;\r\5c\&wAp\\\0yG?Swx_z\)mw\\Sۡ\2ɜA3\_hjg\@q\޹IK\EW:\fc:Ch*ǥR2v\\ED,꫚sHpR\>0Q|T\"&\3wc>+E)z蠸o\I\\\n\نr\|C\41չF(\AQ\j\+z\\)pflI5L\\r\_\N.ͅ\r\n80k0\^q7ӈ\PUUCݡ\w{\1j\\&U\t\1И#G/\h&a\\rc\Eסm\x/\e\ʿ\4n\r\~!\R2\tqp\Ԡ@5N&\pBIAdO\'@S=\,Zr)R\nK\\#\a\\nJT\?5Nӿe{wp\;KX]\6/2:Nyrz/S\\H\Bz_f_\^\d>TJ,lڼ_\e(?\Gp\|\{?','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4426,'2018-05-28 11:54:19',1,'product.php','cPath=3&product_type=1&pID=45&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'XO#W\Q5YpN\IW\"g\I\\v\\&,U~\\\rד8{<\|3揭ܚ&\˩Hl~\\w#\\{\a	祝Ɛ\\*\\֋\Z\bSh?e.\ps:&{+[˩3Q\\"\_8l_毄J\,勃\V\\\-2=\k\}ѰO\'\\\r5n\.Sf\\\\֟MS\\|\-\\"M\\d:+\{f&/q*\\m\D\n\\\Z\*\JY_\"]`\*ϕ^їәy \^A\\Ȕ\'	\\V\{2`\Z\\V\^\dhrM\rb/Ξ\׫:?\	}G>m\{w\\\\\\{{[O`1־/\90\<	\\\\\\\\\c2RR&\\M\"JF\\ȩg|5&mI\r5l\B\LW2	\Lз\V*\\\R5d\ܻ\L\n\\\niKh\s\0\2;^KdRcUJ-O`\BڤfQ\}*\\).\\!ki\Ek}{\\(,-\r3k3\<*~HKq\\%be\nTRɎ67sM5\\\"-=<7R\x	\\Zk\u\n\0a;\\%\U&!t9\Ĉn,CH\\aWj%҈`\\0I1ԞVRx$\+2\`M\`\A\"[+ɹ\\?<Dt\\\\Z\ X	\V.3.ԁ9= \6)\۴\0ž:\\\z3\	+;iaY\\\=6Hi\\LzV\\D4	}\ \nB+y\\.\lr&&\n\f,-)K>\\XX\\`6>\ç\\U\4\A\rn\a=VMQ\Ԝ\u\aPI5yε62+\\0xA:\P\"Ns\nx\r`Y\\be\By[\"g[MI+z`(w𡉲ZsE@g\Rā&`MBڬ7(g\~\	$e2x\j\\r\d\\r0<\i\p՘.b\\01j\r;\'eֵQZgᗨ0!9o*]g;dU^DDιmth\\0L.\\02hf\<+.\yb$<F7qj,\\\\\\S\Z%61\J\0e+ps\'\\P\n+79\0 0v\\\Q]:F̄qti#\\[LN \"p\\JJ,{x\\K\r\-+U(\ !\:!\2sL\[\ȓ^\'a	.DBP>-E\B*z\n\SI0=hUE\L\\l\!YJ!c\6\\Z\)`\p	\\ \o<\tfH[޶[Fv\\nMN\\S\\ZG\\f\n\wA{\^=t\qK\g~ߣ\':\_\h\"\aԯV\~?\Z(\vZ\\$ǆFѐ\3mG{q]I.i@\\\\R<0;/ؾ\6\Ƥ\~}*\7Θ\e\<\	=کE1XJmu\'-Êa\\z\\\YW:+78Ul[ρ1s؋ [\`Hg;/zY^yC\\v\\Ck2gЌi\F,\Pwn\js>\ \4\ΐ=ZJ\q̡v\=\\/T2\9\U\H} $\\\\JQ^j-:(.\\\.yFwۄ.Ea\\(_k\P0\|L}`u\\v\>-mԡ=\EZ\qǊ\x\n[R\\?ӧ:`:\׷0dsake\Z$*LW\M\4;TU\Pwh\\\\\\^r9\oUy(4f0H\6I\wH9\_\\xG\S\0]~㽈+&\\\ZAO\\F@K\\e&\\\uoP\t:\	-${\?\ޞ\0Mhy\\HA-\\nO]r((9P\2\8\SbL\\n\.au1\<\\T:\ʵJp0\LI\~#O\ۋ\%\,\5&\Z}\\px\~?\\\c\ׯjAS\1!\\0jߝ(O\O\|C*[Le?4y<KSy\xFol\n͟)\n6\\WտU\=zC\`\Ͽ\0','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4427,'2018-05-28 11:54:20',1,'product.php','cPath=3&product_type=1&pID=45&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'XO#W\Q5YpN\IW\"g\I\\v\\&,U~\\\rד8{<\|3揭ܚ&\˩Hl~\\w#\\{\a	祝Ɛ\\*\\֋\Z\bSh?e.\ps:&{+[˩3Q\\"\_8l_毄J\,勃\V\\\-2=\k\}ѰO\'\\\r5n\.Sf\\\\֟MS\\|\-\\"M\\d:+\{f&/q*\\m\D\n\\\Z\*\JY_\"]`\*ϕ^їәy \^A\\Ȕ\'	\\V\{2`\Z\\V\^\dhrM\rb/Ξ\׫:?\	}G>m\{w\\\\\\{{[O`1־/\90\<	\\\\\\\\\c2RR&\\M\"JF\\ȩg|5&mI\r5l\B\LW2	\Lз\V*\\\R5d\ܻ\L\n\\\niKh\s\0\2;^KdRcUJ-O`\BڤfQ\}*\\).\\!ki\Ek}{\\(,-\r3k3\<*~HKq\\%be\nTRɎ67sM5\\\"-=<7R\x	\\Zk\u\n\0a;\\%\U&!t9\Ĉn,CH\\aWj%҈`\\0I1ԞVRx$\+2\`M\`\A\"[+ɹ\\?<Dt\\\\Z\ X	\V.3.ԁ9= \6)\۴\0ž:\\\z3\	+;iaY\\\=6Hi\\LzV\\D4	}\ \nB+y\\.\lr&&\n\f,-)K>\\XX\\`6>\ç\\U\4\A\rn\a=VMQ\Ԝ\u\aPI5yε62+\\0xA:\P\"Ns\nx\r`Y\\be\By[\"g[MI+z`(w𡉲ZsE@g\Rā&`MBڬ7(g\~\	$e2x\j\\r\d\\r0<\i\p՘.b\\01j\r;\'eֵQZgᗨ0!9o*]g;dU^DDιmth\\0L.\\02hf\<+.\yb$<F7qj,\\\\\\S\Z%61\J\0e+ps\'\\P\n+79\0 0v\\\Q]:F̄qti#\\[LN \"p\\JJ,{x\\K\r\-+U(\ !\:!\2sL\[\ȓ^\'a	.DBP>-E\B*z\n\SI0=hUE\L\\l\!YJ!c\6\\Z\)`\p	\\ \o<\tfH[޶[Fv\\nMN\\S\\ZG\\f\n\wA{\^=t\qK\g~ߣ\':\_\h\"\aԯV\~?\Z(\vZ\\$ǆFѐ\3mG{q]I.i@\\\\R<0;/ؾ\6\Ƥ\~}*\7Θ\e\<\	=کE1XJmu\'-Êa\\z\\\YW:+78Ul[ρ1s؋ [\`Hg;/zY^yC\\v\\Ck2gЌi\F,\Pwn\js>\ \4\ΐ=ZJ\q̡v\=\\/T2\9\U\H} $\\\\JQ^j-:(.\\\.yFwۄ.Ea\\(_k\P0\|L}`u\\v\>-mԡ=\EZ\qǊ\x\n[R\\?ӧ:`:\׷0dsake\Z$*LW\M\4;TU\Pwh\\\\\\^r9\oUy(4f0H\6I\wH9\_\\xG\S\0]~㽈+&\\\ZAO\\F@K\\e&\\\uoP\t:\	-${\?\ޞ\0Mhy\\HA-\\nO]r((9P\2\8\SbL\\n\.au1\<\\T:\ʵJp0\LI\~#O\ۋ\%\,\5&\Z}\\px\~?\\\c\ׯjAS\1!\\0jߝ(O\O\|C*[Le?4y<KSy\xFol\n͟)\n6\\WտU\=zC\`\Ͽ\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4428,'2018-05-28 11:54:28',1,'product.php','cPath=3&product_type=1&pID=45&action=update_product&page=1','174.235.133.72',0,'',_binary 'X\rO\H+u\\$!a ;\Z-da	EwB:v\'\\\6\\\~\v00\ A\\\\x̟[5I{7MS$2\\Zo\rz^\\F\\\Vg+\K;!0VI7U,5\Ŧ\~\\\\b\\tnMV\"*Sg,.b;~\\"\_8l_毄J\,勃\V\\֗#S\`|c#\\"MkW2S\U¿s΋i\nW\T./qhoH\)ҵ(+n\\\\\[}9\"X\DM\L\Iw7(ߓ\0\\b}x\\\L\"\\Au\JQ\Ăc\niߝZ\S\\A\|C*[\0s\{B\\ά][_]R\2~B\\[kK\0#\n\\[Zd\\'\\[\\F\r{tI:.\ܠ[+˔i\vg\6ƥʽ2Qx4R\yqL_\\\1]O\\\m<w>>\,\\~T\n.7\\\E=GU9OB\'z8z}LF_Jʄ}IDIsx?9,á?-)6Yz[\4\L2-J2s2T\%Y1.j,:[\Z+iZ\\%\UA\\\Ա*AX\\'lEJ^\KmR(\\0\\rC\r\\!ǵ\"\ĵ>hu38n3\<*~HKq\\%x2ESɎ67sM5\\\"-=؉)l\nhI\F\:P*T:F\o[bD7!$+iD_}\\b>kO`+R~)<Bqi0\Ӑ\\\\\"mafHb	L\'\\(\)P\\AIߦ8,\A]\KaHX\!\1LP]l\\2\\\\}@JS\g\fl\"y\n>K\0!ލ\@x\\.\lr&&\n\f,-)K>\\XX\\`6>\÷\\U\4\AЫ\rn\a=VMQ\Ԝ\u\aPI5yε	\\nA06\0^9\A\0^lAeXٸPޖș`+ieR\\C;\D\Wl\\'k\\f\q	XЃ6\\rʙ_rI^Zr@}C7q~C-̥\'OqZ8\\5\B2D\Zn`\Nr{\"ʬkL\\/QaB(r\\BU\pw\D&sW\\\?\0^&]We\.\\ayVE7]0	\68H:tytnr+$\\Xf\1ɧ<5<,mbrǕ\0\W\\N\\05W\\\79\0ðڑ\oGGu\\\61.,\1ѐ(<. \J[`rYfV\n\\Ubًp5\U&^jEn	F\nF)	qE\>2\h\1oAc Oz%eAQ\)$Oa|\U\U\2&SL}\~$٬Cg\\mLS\>؋A\y/W{\r\͐*Um$\6>\\U5\e\/>\\bxǶf:\%póA?\\\>cS$=\\A\\G\\\N\]h\r\<\vhoו4\I\.\3\0\lSnL\ڧ}\0&+byyy\<\	=کE1XJmu\'-Êa\\z\\\YW:+7\Ul[ρ1s؋ [\`Hg_;/zY^}C\\v\\Ck2gЌiM\#@(\;7i~5\nWg\Z\LTvLg\@TJ\\|螈E}Us\7	N*\t7*vB>\Dp@}\n\g(E/\o<Ix;\m\\\\"\0WC\?5\q(Pf>>:e;c6\\\\"P]cEo|<Ό-\_\SSA\\\AƵs-&\+\c\Z\j;4\wnw/9U\\䷪P؂<\Z3\\\\\$\}RbS0\LXt\\"^Lck\=!\Z\-%\K׽A\r\nT\\d\'H\\Dr{{4\c0̢\!w\"+e;\X@AɁ\nݖ\WSJ\߲\;\\\%.fW2:Nyrz/S\\H\Bxz_f_\^\d>TXشy=|\\','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4429,'2018-05-28 11:54:29',1,'product.php','cPath=3&product_type=1&pID=45&action=update_product&page=1','174.235.133.72',1,'',_binary 'X\rO\H+u\\$!a ;\Z-da	EwB:v\'\\\6\\\~\v00\ A\\\\x̟[5I{7MS$2\\Zo\rz^\\F\\\Vg+\K;!0VI7U,5\Ŧ\~\\\\b\\tnMV\"*Sg,.b;~\\"\_8l_毄J\,勃\V\\֗#S\`|c#\\"MkW2S\U¿s΋i\nW\T./qhoH\)ҵ(+n\\\\\[}9\"X\DM\L\Iw7(ߓ\0\\b}x\\\L\"\\Au\JQ\Ăc\niߝZ\S\\A\|C*[\0s\{B\\ά][_]R\2~B\\[kK\0#\n\\[Zd\\'\\[\\F\r{tI:.\ܠ[+˔i\vg\6ƥʽ2Qx4R\yqL_\\\1]O\\\m<w>>\,\\~T\n.7\\\E=GU9OB\'z8z}LF_Jʄ}IDIsx?9,á?-)6Yz[\4\L2-J2s2T\%Y1.j,:[\Z+iZ\\%\UA\\\Ա*AX\\'lEJ^\KmR(\\0\\rC\r\\!ǵ\"\ĵ>hu38n3\<*~HKq\\%x2ESɎ67sM5\\\"-=؉)l\nhI\F\:P*T:F\o[bD7!$+iD_}\\b>kO`+R~)<Bqi0\Ӑ\\\\\"mafHb	L\'\\(\)P\\AIߦ8,\A]\KaHX\!\1LP]l\\2\\\\}@JS\g\fl\"y\n>K\0!ލ\@x\\.\lr&&\n\f,-)K>\\XX\\`6>\÷\\U\4\AЫ\rn\a=VMQ\Ԝ\u\aPI5yε	\\nA06\0^9\A\0^lAeXٸPޖș`+ieR\\C;\D\Wl\\'k\\f\q	XЃ6\\rʙ_rI^Zr@}C7q~C-̥\'OqZ8\\5\B2D\Zn`\Nr{\"ʬkL\\/QaB(r\\BU\pw\D&sW\\\?\0^&]We\.\\ayVE7]0	\68H:tytnr+$\\Xf\1ɧ<5<,mbrǕ\0\W\\N\\05W\\\79\0ðڑ\oGGu\\\61.,\1ѐ(<. \J[`rYfV\n\\Ubًp5\U&^jEn	F\nF)	qE\>2\h\1oAc Oz%eAQ\)$Oa|\U\U\2&SL}\~$٬Cg\\mLS\>؋A\y/W{\r\͐*Um$\6>\\U5\e\/>\\bxǶf:\%póA?\\\>cS$=\\A\\G\\\N\]h\r\<\vhoו4\I\.\3\0\lSnL\ڧ}\0&+byyy\<\	=کE1XJmu\'-Êa\\z\\\YW:+7\Ul[ρ1s؋ [\`Hg_;/zY^}C\\v\\Ck2gЌiM\#@(\;7i~5\nWg\Z\LTvLg\@TJ\\|螈E}Us\7	N*\t7*vB>\Dp@}\n\g(E/\o<Ix;\m\\\\"\0WC\?5\q(Pf>>:e;c6\\\\"P]cEo|<Ό-\_\SSA\\\AƵs-&\+\c\Z\j;4\wnw/9U\\䷪P؂<\Z3\\\\\$\}RbS0\LXt\\"^Lck\=!\Z\-%\K׽A\r\nT\\d\'H\\Dr{{4\c0̢\!w\"+e;\X@AɁ\nݖ\WSJ\߲\;\\\%.fW2:Nyrz/S\\H\Bxz_f_\^\d>TXشy=|\\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4430,'2018-05-28 11:54:29',1,'product.php','cPath=3&product_type=1&pID=45&action=update_product&page=1','174.235.133.72',0,'',_binary 'X\rO\H+u\\$!a ;\Z-da	EwB:v\'\\\6\\\~\v00\ A\\\\x̟[5I{7MS$2\\Zo\rz^\\F\\\Vg+\K;!0VI7U,5\Ŧ\~\\\\b\\tnMV\"*Sg,.b;~\\"\_8l_毄J\,勃\V\\֗#S\`|c#\\"MkW2S\U¿s΋i\nW\T./qhoH\)ҵ(+n\\\\\[}9\"X\DM\L\Iw7(ߓ\0\\b}x\\\L\"\\Au\JQ\Ăc\niߝZ\S\\A\|C*[\0s\{B\\ά][_]R\2~B\\[kK\0#\n\\[Zd\\'\\[\\F\r{tI:.\ܠ[+˔i\vg\6ƥʽ2Qx4R\yqL_\\\1]O\\\m<w>>\,\\~T\n.7\\\E=GU9OB\'z8z}LF_Jʄ}IDIsx?9,á?-)6Yz[\4\L2-J2s2T\%Y1.j,:[\Z+iZ\\%\UA\\\Ա*AX\\'lEJ^\KmR(\\0\\rC\r\\!ǵ\"\ĵ>hu38n3\<*~HKq\\%x2ESɎ67sM5\\\"-=؉)l\nhI\F\:P*T:F\o[bD7!$+iD_}\\b>kO`+R~)<Bqi0\Ӑ\\\\\"mafHb	L\'\\(\)P\\AIߦ8,\A]\KaHX\!\1LP]l\\2\\\\}@JS\g\fl\"y\n>K\0!ލ\@x\\.\lr&&\n\f,-)K>\\XX\\`6>\÷\\U\4\AЫ\rn\a=VMQ\Ԝ\u\aPI5yε	\\nA06\0^9\A\0^lAeXٸPޖș`+ieR\\C;\D\Wl\\'k\\f\q	XЃ6\\rʙ_rI^Zr@}C7q~C-̥\'OqZ8\\5\B2D\Zn`\Nr{\"ʬkL\\/QaB(r\\BU\pw\D&sW\\\?\0^&]We\.\\ayVE7]0	\68H:tytnr+$\\Xf\1ɧ<5<,mbrǕ\0\W\\N\\05W\\\79\0ðڑ\oGGu\\\61.,\1ѐ(<. \J[`rYfV\n\\Ubًp5\U&^jEn	F\nF)	qE\>2\h\1oAc Oz%eAQ\)$Oa|\U\U\2&SL}\~$٬Cg\\mLS\>؋A\y/W{\r\͐*Um$\6>\\U5\e\/>\\bxǶf:\%póA?\\\>cS$=\\A\\G\\\N\]h\r\<\vhoו4\I\.\3\0\lSnL\ڧ}\0&+byyy\<\	=کE1XJmu\'-Êa\\z\\\YW:+7\Ul[ρ1s؋ [\`Hg_;/zY^}C\\v\\Ck2gЌiM\#@(\;7i~5\nWg\Z\LTvLg\@TJ\\|螈E}Us\7	N*\t7*vB>\Dp@}\n\g(E/\o<Ix;\m\\\\"\0WC\?5\q(Pf>>:e;c6\\\\"P]cEo|<Ό-\_\SSA\\\AƵs-&\+\c\Z\j;4\wnw/9U\\䷪P؂<\Z3\\\\\$\}RbS0\LXt\\"^Lck\=!\Z\-%\K׽A\r\nT\\d\'H\\Dr{{4\c0̢\!w\"+e;\X@AɁ\nݖ\WSJ\߲\;\\\%.fW2:Nyrz/S\\H\Bxz_f_\^\d>TXشy=|\\','Updated product 45 via admin console.','info'),(4431,'2018-05-28 11:54:29',1,'categories.php','cPath=3&pID=45&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4432,'2018-05-28 11:54:30',1,'categories.php','cPath=3&pID=45&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4433,'2018-05-28 11:55:12',1,'product.php','page=1&product_type=1&cPath=3&pID=45&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4434,'2018-05-28 11:55:12',1,'product.php','page=1&product_type=1&cPath=3&pID=45&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4435,'2018-05-28 11:56:22',1,'product.php','cPath=3&product_type=1&pID=45&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'XO#WT\5YpN\I\'\\u?v\\&,Uw7,Pړ8{<\|3揭ܚ&\˩Hl~\\w#\\{\a	祝Ɛ\\*\\֋\Z\bSh?e.\ps:&{+[˩3Q\\"\_8l_毄J\,勃\V\\\-2=\k\}ѰO\'\\\r5n\.Sf\\\\֟MS\\|\-\\"M\\d:+\{f&/q*\\m\D\n\\\Z\*\JY_\"]`\*ϕ^їәy \^A\\Ȕ\'	\\V\{2`\Z\\V\^\dhrM\rb/Ξ\׫:?\	}O>m\{w\\\\\\{{\F/JPr\\\\9P\<	\\\\\\\\\c2RR&\\M\"JX\ˑS\2\n5.mI\r\7l\B\LW2	\Lз\V*\\\R5d\ܻ\L\n\\\niKh\s\0\2;^K\RcUJ-O`\BڤfQ\}r(\\)7\0\!ki\Et}\\(,-\rб3l3T=*~HKq\\%be\nRɎ67sM5\\\"-=<7R\x	\\Zk\u\na;\\%\U&!t9\Ĉn,CH\\aWj%҈`\\0I1\ԞVRx$\+2\`M\`\A\\"[+ɹ\\?<Dt\\\\ZĠ\\	\'\\(\`z\mRķi\}ug׭g\)Vv%\,T=3\&!zzl\ԇ\i*<,\\ \nB+&y\\.\lr&&\n\f,-)K>\\XX\\`6>\ç\\U\4\AP\rn\a=VMQ\Ԝ\u\aPI5yε62+\\0xA:\P\"Ns\nx\r\Y\\be\By[\"gOI+z`(w𡉲sE@g\Rā&`MBڬ7(g.~\	$e2x\j\\r\d\\r0<\i\p՘.b\\01j\r;\'eֵQZgᗨ0!9o*]g;dU^DDιmth\\0L.\\02hf\<+o\MDLF\<1\]\~\\\\n\85ـqpdapL)O\r\q%.k7@E\\nJ\՛\0\`V;r\訮x[#f86\h\­\P&\'UIia@\LQ%WC<_e\[\ȕ`rWj\\Qf\9&-p\\P!(p!J=\))Tʀ[\d\&܏\w6\,%L\\\رqsA.-m\\0`BPE\7E\\U\\Gh\x3JUDo\|3\2 Virw\\T}F,\\#`xHz0\\rOhGOuȿ\(pGB\è_~4\Q\\\I!g\\\\㺶&<Ҁ\ݥxvqm\ni\DT:⑞QZQ\\͙%h{SbJ3R\<C1yNZ\ZC\K\\0JruVnt/<h;\r5۞/cf+E7\\P~\\fS\\z\\\Sۡ\29\a4\?hjg`u\\IKt\E`:\f\c:ChrR2vt\E?E,꫚sHTɔ>\V|T\"&*6wcP+Eqz\ܸ\\\\\&نr\|CR51չF(\AQ\j\=,z\\)pflI5\L\\_\N.ͅ\r\n80k0^qӈ\PUUݡ\w{\1j&\&U\\1И#G/\h&a\\_!\(F\q\=_LXt\Z	:\"^>Lck\]\"\Z\r-%\\Kߙ׽A\r\nT\\d\'H\\Dt{{4\u0ޢ	\"w\"+<a\.\@\n\\\1G7zC\\llSJ\-\*27]	<?o/R૳WT\\ګ\n\j\CO\\a\S?_\M{C\0D}wx\>N?\r\R\b([1\"\\\\͟x\Y˷\J6\OM7\+Gց\\*\]yg\','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4436,'2018-05-28 11:56:23',1,'product.php','cPath=3&product_type=1&pID=45&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'XO#WT\5YpN\I\'\\u?v\\&,Uw7,Pړ8{<\|3揭ܚ&\˩Hl~\\w#\\{\a	祝Ɛ\\*\\֋\Z\bSh?e.\ps:&{+[˩3Q\\"\_8l_毄J\,勃\V\\\-2=\k\}ѰO\'\\\r5n\.Sf\\\\֟MS\\|\-\\"M\\d:+\{f&/q*\\m\D\n\\\Z\*\JY_\"]`\*ϕ^їәy \^A\\Ȕ\'	\\V\{2`\Z\\V\^\dhrM\rb/Ξ\׫:?\	}O>m\{w\\\\\\{{\F/JPr\\\\9P\<	\\\\\\\\\c2RR&\\M\"JX\ˑS\2\n5.mI\r\7l\B\LW2	\Lз\V*\\\R5d\ܻ\L\n\\\niKh\s\0\2;^K\RcUJ-O`\BڤfQ\}r(\\)7\0\!ki\Et}\\(,-\rб3l3T=*~HKq\\%be\nRɎ67sM5\\\"-=<7R\x	\\Zk\u\na;\\%\U&!t9\Ĉn,CH\\aWj%҈`\\0I1\ԞVRx$\+2\`M\`\A\\"[+ɹ\\?<Dt\\\\ZĠ\\	\'\\(\`z\mRķi\}ug׭g\)Vv%\,T=3\&!zzl\ԇ\i*<,\\ \nB+&y\\.\lr&&\n\f,-)K>\\XX\\`6>\ç\\U\4\AP\rn\a=VMQ\Ԝ\u\aPI5yε62+\\0xA:\P\"Ns\nx\r\Y\\be\By[\"gOI+z`(w𡉲sE@g\Rā&`MBڬ7(g.~\	$e2x\j\\r\d\\r0<\i\p՘.b\\01j\r;\'eֵQZgᗨ0!9o*]g;dU^DDιmth\\0L.\\02hf\<+o\MDLF\<1\]\~\\\\n\85ـqpdapL)O\r\q%.k7@E\\nJ\՛\0\`V;r\訮x[#f86\h\­\P&\'UIia@\LQ%WC<_e\[\ȕ`rWj\\Qf\9&-p\\P!(p!J=\))Tʀ[\d\&܏\w6\,%L\\\رqsA.-m\\0`BPE\7E\\U\\Gh\x3JUDo\|3\2 Virw\\T}F,\\#`xHz0\\rOhGOuȿ\(pGB\è_~4\Q\\\I!g\\\\㺶&<Ҁ\ݥxvqm\ni\DT:⑞QZQ\\͙%h{SbJ3R\<C1yNZ\ZC\K\\0JruVnt/<h;\r5۞/cf+E7\\P~\\fS\\z\\\Sۡ\29\a4\?hjg`u\\IKt\E`:\f\c:ChrR2vt\E?E,꫚sHTɔ>\V|T\"&*6wcP+Eqz\ܸ\\\\\&نr\|CR51չF(\AQ\j\=,z\\)pflI5\L\\_\N.ͅ\r\n80k0^qӈ\PUUݡ\w{\1j&\&U\\1И#G/\h&a\\_!\(F\q\=_LXt\Z	:\"^>Lck\]\"\Z\r-%\\Kߙ׽A\r\nT\\d\'H\\Dt{{4\u0ޢ	\"w\"+<a\.\@\n\\\1G7zC\\llSJ\-\*27]	<?o/R૳WT\\ګ\n\j\CO\\a\S?_\M{C\0D}wx\>N?\r\R\b([1\"\\\\͟x\Y˷\J6\OM7\+Gց\\*\]yg\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4437,'2018-05-28 11:56:31',1,'product.php','cPath=3&product_type=1&pID=45&action=update_product&page=1','174.235.133.72',0,'',_binary 'X\rO\H+u\\$!a ;\Z-d\	EwB:v\'\\\6\\\~\v00\Đ\ի2l\\$E\\4^NE\dk5\{\^;Q8\\[L8/\4\\X%\T^\(B/s\އӹ5\[ܪXN0\~\G=k8/|\p\:*\ru1//W\\G~\Z4_\tVNV\\n.8/q*\\m\\B^X\\\%\>\\)\wRkQVL\R\ҋV}92X\DMP\L\Iw^KZ\d\)뻧x><ld&\\:]rL,gb9\Nt\\\\ _%-9[\=\OTnjgVҮ\n\_d?!T{[%O\#-2\\k\u\'}:ɤ]Htn\T\ҭ\e\}r~g\\\V\^\(<\\\F)\8{^\\\1]O\\\	m|\\}\Z}Y\ro\uH\\˩\,n~~\bs>sNhae\\\\1M~))Az&%\p\Գ\ƚ~\d9:4\B\LW2	\Lз\Q*\\\R5d\ܻ\L\n\\\niKh\s 2;~\\J\JU)\r\n>g-R2^jEI\o8\h	|]K;/\M\\?QЏF\\Ҡ&3ٍ>fS\B\i\"_L\\TreNiFHǗ\F\n/Z\Bc-(]\0\UB^eJ\(\`%FvcR\\nR+F\\%ńZG\[K\Q WʌgX\ZI=lP`\m;	3kDc%p\#rx\@ݦDlMp Y8n\AC h<2̓ʰ\3#l*\`\f\0)M})\i*<\n,\_ \nB+x3\lj&\'\n\f,-)K\!\XX\\\v>\ç\\r\U\4\E\ra\a=VMSl\Skj\\\>pĚ<\\kDFt$\0/\\BǜJ\\\tN \0/\ вPl\\(oK\L02!\|h\+~t\\\n\\8\I\A\̅!\9L\]-9\8fד8-L\P\\" \p<2\\)S=gᗬ0!9+]\g*Q\I?DDε}t(\0L.[U[px<+.\yb$<F7qj,\\\\\\S\Z^69\N\0e+`Խ\\nsB\6Oh8Vr\\\x[\\Z\'f8v#\\[LN \"p\\J*,GLC<\e\[\``rWNc\(\\Z8d\EXцOKQB\*ZUsQe-c2\\\:$K\x\\p\n\\^K<l#8XCT&\M\\qq.\eJ\\1\l(HF\Ն9U_.l<\n8 >\ծ9:n	\Џ{_kw$=Փpޏ=\\(\Zy\ho\>>{k\\:\rh[\]g@h٦f\/O%&#~iaVT%h{SbKA|3RU\<C1yNZ\ZC\K\\0*ruWnD/\"h\r5۞/cf+\E\\\~\\fS\\z\\\Sۡ\25\a4\4+Y0\n\\:\ܤ%&\\\"}@0`_\i`3w\1z\T)U;:\b\"\\o,U2\\",\oU|L} \$\\\TJќ^j-:h7\\.yFwxM/E\\\&x(_k\TU\|L}`u\\v\>-mԡ=\@u\3,z\)pflI5\J\ğ\_\N.תεHT\}xiDw\j\\\\\\\\\^rͶoա3z(4n0L\6I8=Ř8.5aL\:L \Esw\\\\rDN_52ZJ&31.{\\\3Oh\?,\h*x\`\D\+E\n\"ni=Wx#wغ:-\/x\dwp\;Kx]\6mt*_I\Z-8^&w%\E\|u\}\{\\m&Qիda\\\T','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4438,'2018-05-28 11:56:32',1,'product.php','cPath=3&product_type=1&pID=45&action=update_product&page=1','174.235.133.72',1,'',_binary 'X\rO\H+u\\$!a ;\Z-d\	EwB:v\'\\\6\\\~\v00\Đ\ի2l\\$E\\4^NE\dk5\{\^;Q8\\[L8/\4\\X%\T^\(B/s\އӹ5\[ܪXN0\~\G=k8/|\p\:*\ru1//W\\G~\Z4_\tVNV\\n.8/q*\\m\\B^X\\\%\>\\)\wRkQVL\R\ҋV}92X\DMP\L\Iw^KZ\d\)뻧x><ld&\\:]rL,gb9\Nt\\\\ _%-9[\=\OTnjgVҮ\n\_d?!T{[%O\#-2\\k\u\'}:ɤ]Htn\T\ҭ\e\}r~g\\\V\^\(<\\\F)\8{^\\\1]O\\\	m|\\}\Z}Y\ro\uH\\˩\,n~~\bs>sNhae\\\\1M~))Az&%\p\Գ\ƚ~\d9:4\B\LW2	\Lз\Q*\\\R5d\ܻ\L\n\\\niKh\s 2;~\\J\JU)\r\n>g-R2^jEI\o8\h	|]K;/\M\\?QЏF\\Ҡ&3ٍ>fS\B\i\"_L\\TreNiFHǗ\F\n/Z\Bc-(]\0\UB^eJ\(\`%FvcR\\nR+F\\%ńZG\[K\Q WʌgX\ZI=lP`\m;	3kDc%p\#rx\@ݦDlMp Y8n\AC h<2̓ʰ\3#l*\`\f\0)M})\i*<\n,\_ \nB+x3\lj&\'\n\f,-)K\!\XX\\\v>\ç\\r\U\4\E\ra\a=VMSl\Skj\\\>pĚ<\\kDFt$\0/\\BǜJ\\\tN \0/\ вPl\\(oK\L02!\|h\+~t\\\n\\8\I\A\̅!\9L\]-9\8fד8-L\P\\" \p<2\\)S=gᗬ0!9+]\g*Q\I?DDε}t(\0L.[U[px<+.\yb$<F7qj,\\\\\\S\Z^69\N\0e+`Խ\\nsB\6Oh8Vr\\\x[\\Z\'f8v#\\[LN \"p\\J*,GLC<\e\[\``rWNc\(\\Z8d\EXцOKQB\*ZUsQe-c2\\\:$K\x\\p\n\\^K<l#8XCT&\M\\qq.\eJ\\1\l(HF\Ն9U_.l<\n8 >\ծ9:n	\Џ{_kw$=Փpޏ=\\(\Zy\ho\>>{k\\:\rh[\]g@h٦f\/O%&#~iaVT%h{SbKA|3RU\<C1yNZ\ZC\K\\0*ruWnD/\"h\r5۞/cf+\E\\\~\\fS\\z\\\Sۡ\25\a4\4+Y0\n\\:\ܤ%&\\\"}@0`_\i`3w\1z\T)U;:\b\"\\o,U2\\",\oU|L} \$\\\TJќ^j-:h7\\.yFwxM/E\\\&x(_k\TU\|L}`u\\v\>-mԡ=\@u\3,z\)pflI5\J\ğ\_\N.תεHT\}xiDw\j\\\\\\\\\^rͶoա3z(4n0L\6I8=Ř8.5aL\:L \Esw\\\\rDN_52ZJ&31.{\\\3Oh\?,\h*x\`\D\+E\n\"ni=Wx#wغ:-\/x\dwp\;Kx]\6mt*_I\Z-8^&w%\E\|u\}\{\\m&Qիda\\\T','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4439,'2018-05-28 11:56:32',1,'product.php','cPath=3&product_type=1&pID=45&action=update_product&page=1','174.235.133.72',0,'',_binary 'X\rO\H+u\\$!a ;\Z-d\	EwB:v\'\\\6\\\~\v00\Đ\ի2l\\$E\\4^NE\dk5\{\^;Q8\\[L8/\4\\X%\T^\(B/s\އӹ5\[ܪXN0\~\G=k8/|\p\:*\ru1//W\\G~\Z4_\tVNV\\n.8/q*\\m\\B^X\\\%\>\\)\wRkQVL\R\ҋV}92X\DMP\L\Iw^KZ\d\)뻧x><ld&\\:]rL,gb9\Nt\\\\ _%-9[\=\OTnjgVҮ\n\_d?!T{[%O\#-2\\k\u\'}:ɤ]Htn\T\ҭ\e\}r~g\\\V\^\(<\\\F)\8{^\\\1]O\\\	m|\\}\Z}Y\ro\uH\\˩\,n~~\bs>sNhae\\\\1M~))Az&%\p\Գ\ƚ~\d9:4\B\LW2	\Lз\Q*\\\R5d\ܻ\L\n\\\niKh\s 2;~\\J\JU)\r\n>g-R2^jEI\o8\h	|]K;/\M\\?QЏF\\Ҡ&3ٍ>fS\B\i\"_L\\TreNiFHǗ\F\n/Z\Bc-(]\0\UB^eJ\(\`%FvcR\\nR+F\\%ńZG\[K\Q WʌgX\ZI=lP`\m;	3kDc%p\#rx\@ݦDlMp Y8n\AC h<2̓ʰ\3#l*\`\f\0)M})\i*<\n,\_ \nB+x3\lj&\'\n\f,-)K\!\XX\\\v>\ç\\r\U\4\E\ra\a=VMSl\Skj\\\>pĚ<\\kDFt$\0/\\BǜJ\\\tN \0/\ вPl\\(oK\L02!\|h\+~t\\\n\\8\I\A\̅!\9L\]-9\8fד8-L\P\\" \p<2\\)S=gᗬ0!9+]\g*Q\I?DDε}t(\0L.[U[px<+.\yb$<F7qj,\\\\\\S\Z^69\N\0e+`Խ\\nsB\6Oh8Vr\\\x[\\Z\'f8v#\\[LN \"p\\J*,GLC<\e\[\``rWNc\(\\Z8d\EXцOKQB\*ZUsQe-c2\\\:$K\x\\p\n\\^K<l#8XCT&\M\\qq.\eJ\\1\l(HF\Ն9U_.l<\n8 >\ծ9:n	\Џ{_kw$=Փpޏ=\\(\Zy\ho\>>{k\\:\rh[\]g@h٦f\/O%&#~iaVT%h{SbKA|3RU\<C1yNZ\ZC\K\\0*ruWnD/\"h\r5۞/cf+\E\\\~\\fS\\z\\\Sۡ\25\a4\4+Y0\n\\:\ܤ%&\\\"}@0`_\i`3w\1z\T)U;:\b\"\\o,U2\\",\oU|L} \$\\\TJќ^j-:h7\\.yFwxM/E\\\&x(_k\TU\|L}`u\\v\>-mԡ=\@u\3,z\)pflI5\J\ğ\_\N.תεHT\}xiDw\j\\\\\\\\\^rͶoա3z(4n0L\6I8=Ř8.5aL\:L \Esw\\\\rDN_52ZJ&31.{\\\3Oh\?,\h*x\`\D\+E\n\"ni=Wx#wغ:-\/x\dwp\;Kx]\6mt*_I\Z-8^&w%\E\|u\}\{\\m&Qիda\\\T','Updated product 45 via admin console.','info'),(4440,'2018-05-28 11:56:32',1,'categories.php','cPath=3&pID=45&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4441,'2018-05-28 11:56:33',1,'categories.php','cPath=3&pID=45&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4442,'2018-05-28 11:58:35',1,'configuration.php','gID=8','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4443,'2018-05-28 11:58:36',1,'configuration.php','gID=8','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4444,'2018-05-28 11:58:45',1,'configuration.php','gID=8&cID=216&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4445,'2018-05-28 11:58:45',1,'configuration.php','gID=8&cID=216&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4446,'2018-05-28 11:58:51',1,'configuration.php','gID=8&cID=216&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	uwq\0)0ŧ\\P\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4447,'2018-05-28 11:58:51',1,'configuration.php','gID=8&cID=216&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	uwq\0)0ŧ\\P\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4448,'2018-05-28 11:58:51',1,'configuration.php','gID=8&cID=216&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	uwq\0)0ŧ\\P\0','Configuration setting changed for PRODUCT_LIST_MODEL: 1','warning'),(4449,'2018-05-28 11:58:51',1,'configuration.php','gID=8&cID=216','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4450,'2018-05-28 11:58:52',1,'configuration.php','gID=8&cID=216','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4451,'2018-05-28 11:59:41',1,'configuration.php','gID=8&cID=216&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4452,'2018-05-28 11:59:42',1,'configuration.php','gID=8&cID=216&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4453,'2018-05-28 11:59:52',1,'configuration.php','gID=8&cID=216&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	uwq\0*06\\H\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4454,'2018-05-28 11:59:53',1,'configuration.php','gID=8&cID=216&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	uwq\0*06\\H\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4455,'2018-05-28 11:59:53',1,'configuration.php','gID=8&cID=216&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	uwq\0*06\\H\0','Configuration setting changed for PRODUCT_LIST_MODEL: 0','warning'),(4456,'2018-05-28 11:59:53',1,'configuration.php','gID=8&cID=216','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4457,'2018-05-28 11:59:53',1,'configuration.php','gID=8&cID=216','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4458,'2018-05-28 12:00:35',1,'configuration.php','gID=8&cID=220&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4459,'2018-05-28 12:00:36',1,'configuration.php','gID=8&cID=220&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4460,'2018-05-28 12:00:43',1,'configuration.php','gID=8&cID=220&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	uwt\00¯\T\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4461,'2018-05-28 12:00:43',1,'configuration.php','gID=8&cID=220&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	uwt\00¯\T\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4462,'2018-05-28 12:00:43',1,'configuration.php','gID=8&cID=220&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	uwt\00¯\T\0','Configuration setting changed for PRODUCT_LIST_WEIGHT: 0','warning'),(4463,'2018-05-28 12:00:43',1,'configuration.php','gID=8&cID=220','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4464,'2018-05-28 12:00:44',1,'configuration.php','gID=8&cID=220','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4465,'2018-05-28 12:00:58',1,'configuration.php','gID=8&cID=217&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4466,'2018-05-28 12:00:59',1,'configuration.php','gID=8&cID=217&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4467,'2018-05-28 12:01:12',1,'configuration.php','gID=8&cID=217&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	usu\0\\SP	T`T\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4468,'2018-05-28 12:01:13',1,'configuration.php','gID=8&cID=217&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	usu\0\\SP	T`T\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4469,'2018-05-28 12:01:13',1,'configuration.php','gID=8&cID=217&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	usu\0\\SP	T`T\0','Configuration setting changed for PRODUCT_LIST_NAME: 0','warning'),(4470,'2018-05-28 12:01:13',1,'configuration.php','gID=8&cID=217','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4471,'2018-05-28 12:01:13',1,'configuration.php','gID=8&cID=217','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4472,'2018-05-28 12:01:50',1,'configuration.php','gID=8&cID=218&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4473,'2018-05-28 12:01:50',1,'configuration.php','gID=8&cID=218&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4474,'2018-05-28 12:01:51',1,'configuration.php','gID=8&cID=218&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4475,'2018-05-28 12:01:51',1,'configuration.php','gID=8&cID=218&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4476,'2018-05-28 12:02:03',1,'configuration.php','gID=8&cID=218&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	utv \0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4477,'2018-05-28 12:02:03',1,'configuration.php','gID=8&cID=218&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	utv \0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4478,'2018-05-28 12:02:03',1,'configuration.php','gID=8&cID=218&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	utv \0','Configuration setting changed for PRODUCT_LIST_PRICE: 0','warning'),(4479,'2018-05-28 12:02:04',1,'configuration.php','gID=8&cID=218','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4480,'2018-05-28 12:02:04',1,'configuration.php','gID=8&cID=218','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4481,'2018-05-28 12:02:50',1,'configuration.php','gID=8&cID=218&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4482,'2018-05-28 12:02:50',1,'configuration.php','gID=8&cID=218&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4483,'2018-05-28 12:03:01',1,'configuration.php','gID=8&cID=218&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	utv\0*02ŧdR-\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4484,'2018-05-28 12:03:01',1,'configuration.php','gID=8&cID=218&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	utv\0*02ŧdR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4485,'2018-05-28 12:03:01',1,'configuration.php','gID=8&cID=218&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	utv\0*02ŧdR-\0','Configuration setting changed for PRODUCT_LIST_PRICE: 1','warning'),(4486,'2018-05-28 12:03:02',1,'configuration.php','gID=8&cID=218','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4487,'2018-05-28 12:03:02',1,'configuration.php','gID=8&cID=218','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4488,'2018-05-28 12:04:43',1,'configuration.php','gID=8&cID=221&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4489,'2018-05-28 12:04:44',1,'configuration.php','gID=8&cID=221&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4490,'2018-05-28 12:04:55',1,'configuration.php','gID=8&cID=221&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR240P\Q*.M\\,	w	u	tvt	\04$Ba%\HZ\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4491,'2018-05-28 12:04:55',1,'configuration.php','gID=8&cID=221&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR240P\Q*.M\\,	w	u	tvt	\04$Ba%\HZ\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4492,'2018-05-28 12:04:55',1,'configuration.php','gID=8&cID=221&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR240P\Q*.M\\,	w	u	tvt	\04$Ba%\HZ\0','Configuration setting changed for PRODUCTS_LIST_PRICE_WIDTH: 100','warning'),(4493,'2018-05-28 12:04:56',1,'configuration.php','gID=8&cID=221','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4494,'2018-05-28 12:04:56',1,'configuration.php','gID=8&cID=221','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4495,'2018-05-28 12:05:27',1,'configuration.php','gID=8&cID=226&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4496,'2018-05-28 12:05:27',1,'configuration.php','gID=8&cID=226&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4497,'2018-05-28 12:05:45',1,'configuration.php','gID=8&cID=226&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2V\Q*.M\\,	w	us\r	qwtqwv\n\0j14%MO%PR-\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4498,'2018-05-28 12:05:45',1,'configuration.php','gID=8&cID=226&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2V\Q*.M\\,	w	us\r	qwtqwv\n\0j14%MO%PR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4499,'2018-05-28 12:05:45',1,'configuration.php','gID=8&cID=226&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2V\Q*.M\\,	w	us\r	qwtqwv\n\0j14%MO%PR-\0','Configuration setting changed for PRODUCT_LISTING_MULTIPLE_ADD_TO_CART: 3','warning'),(4500,'2018-05-28 12:05:46',1,'configuration.php','gID=8&cID=226','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4501,'2018-05-28 12:05:46',1,'configuration.php','gID=8&cID=226','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4502,'2018-05-28 12:06:21',1,'configuration.php','gID=8&cID=226&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4503,'2018-05-28 12:06:22',1,'configuration.php','gID=8&cID=226&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4504,'2018-05-28 12:06:26',1,'configuration.php','gID=8&cID=226&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	us\r	qwtqwv\n\0j14\'MO%PR-\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4505,'2018-05-28 12:06:26',1,'configuration.php','gID=8&cID=226&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	us\r	qwtqwv\n\0j14\'MO%PR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4506,'2018-05-28 12:06:26',1,'configuration.php','gID=8&cID=226&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	us\r	qwtqwv\n\0j14\'MO%PR-\0','Configuration setting changed for PRODUCT_LISTING_MULTIPLE_ADD_TO_CART: 0','warning'),(4507,'2018-05-28 12:06:27',1,'configuration.php','gID=8&cID=226','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4508,'2018-05-28 12:06:27',1,'configuration.php','gID=8&cID=226','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4509,'2018-05-28 12:06:31',1,'configuration.php','gID=8&cID=227&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4510,'2018-05-28 12:06:32',1,'configuration.php','gID=8&cID=227&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4511,'2018-05-28 12:06:40',1,'configuration.php','gID=8&cID=227&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	uwq\rv\0)3\"\R\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4512,'2018-05-28 12:06:41',1,'configuration.php','gID=8&cID=227&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	uwq\rv\0)3\"\R\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4513,'2018-05-28 12:06:41',1,'configuration.php','gID=8&cID=227&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	uwq\rv\0)3\"\R\0','Configuration setting changed for PRODUCT_LIST_DESCRIPTION: 1','warning'),(4514,'2018-05-28 12:06:41',1,'configuration.php','gID=8&cID=227','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4515,'2018-05-28 12:06:41',1,'configuration.php','gID=8&cID=227','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4516,'2018-05-28 12:06:48',1,'configuration.php','gID=8&cID=551&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4517,'2018-05-28 12:06:48',1,'configuration.php','gID=8&cID=551&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4518,'2018-05-28 12:06:54',1,'configuration.php','gID=8&cID=551&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR*\//V\Q*.M\\,	w	usq\rq\06 Nm%PR-\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4519,'2018-05-28 12:06:55',1,'configuration.php','gID=8&cID=551&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR*\//V\Q*.M\\,	w	usq\rq\06 Nm%PR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4520,'2018-05-28 12:06:55',1,'configuration.php','gID=8&cID=551&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR*\//V\Q*.M\\,	w	usq\rq\06 Nm%PR-\0','Configuration setting changed for PRODUCT_LISTING_LAYOUT_STYLE: rows','warning'),(4521,'2018-05-28 12:06:56',1,'configuration.php','gID=8&cID=551','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4522,'2018-05-28 12:06:56',1,'configuration.php','gID=8&cID=551','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4523,'2018-05-28 12:07:26',1,'configuration.php','gID=8&cID=551&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4524,'2018-05-28 12:07:27',1,'configuration.php','gID=8&cID=551&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4525,'2018-05-28 12:07:37',1,'configuration.php','gID=8&cID=551&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MU\\\+\(&\f:\xx\8F\D\W\05\\P\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4526,'2018-05-28 12:07:37',1,'configuration.php','gID=8&cID=551&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MU\\\+\(&\f:\xx\8F\D\W\05\\P\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4527,'2018-05-28 12:07:37',1,'configuration.php','gID=8&cID=551&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MU\\\+\(&\f:\xx\8F\D\W\05\\P\0','Configuration setting changed for PRODUCT_LISTING_LAYOUT_STYLE: columns','warning'),(4528,'2018-05-28 12:07:37',1,'configuration.php','gID=8&cID=551','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4529,'2018-05-28 12:07:38',1,'configuration.php','gID=8&cID=551','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4530,'2018-05-28 12:08:13',1,'categories.php','','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4531,'2018-05-28 12:08:14',1,'categories.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4532,'2018-05-28 12:08:20',1,'categories.php','cPath=3','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4533,'2018-05-28 12:08:20',1,'categories.php','cPath=3','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4534,'2018-05-28 12:08:29',1,'product.php','page=1&product_type=1&cPath=3&pID=37&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4535,'2018-05-28 12:08:30',1,'product.php','page=1&product_type=1&cPath=3&pID=37&action=new_product','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4536,'2018-05-28 12:08:49',1,'product.php','cPath=3&product_type=1&pID=37&action=new_product_preview&page=1','174.235.133.72',0,'',_binary 'Wmo\6+?\\eip]w4A\} @8I\V\"5\\{9/mUxw|\玗oҚJ32,Y\w2\\`ZL&go&g\^W\\),\\*\b\ƯpF\T\\~_J_<W\-JR;cq\&Oc\\8Or|z;\ߒ\)\\\0XW+J}emv]408gx=~;Bڵ\\^\\jXZҮPį\ob ݪ-\Q\!pr矦\\f\\>&\J*6OqkRx\S5kkkL[e}ES\h_\*K׏\\\\\\?\\"\L͠B\\\zlA?Qi\݋Q\nu{,	\RJ~Z樂\_\?˛\\r&no\\Ws1\54W\\\̦˛;~Z\\_.\^D6\8\\GHd\lji\B\(QZ,yEj2^\nG#0!\!+\r!\@:Rk\\h\	p|r*~CLN&\7\\\R\b\\M\Y19y;\Llk\>SyA\N8fF{krqm@\h|oy\\\^_\X3\m/Ϣ{5=HJN-\6\Z\\FU\\\4\dB)ez\BxDwq[R\\)b<-\F\*\'Py\M\JCyN|\4TI\-u9\J^\p\r\d\F\\P!J\^SrPx:\0\\\Ʌ\\rCP#\h\\\~ԍ\}t\\\2\0#_%\\JR\P$\,UnX2L\H%\N\Z\̅2C^+F%c\0#t\0__\BS\2PJ\"7U&)y\otp\\H7L\\l	\7;w\0\́g\\\\\d{#h2\n\UهVTb\r\'!Ӎ6Y\)R\H\~0CF	;rGXI\g\re\Bb!jY\8h(ّS\Z3p\Uy(\e\\R\\p\1Bf&,|C/њX0\m\DR\8\ \\Z\xh.0@\\1O&ߝ\5\)\T\\n\\Z6jkmU\0kj\\G\JqgiIZ\$\\0\\{@\US\'InjMU4:Յ;5n^\\\r\n	b*ٶ\t\\nQx\%mC˵ўT8E\(\Ǻ%li-;YOVp`W\]*\Z<?PMm}xm\``\𜩵b\\?}?}8Jc	ol\sۯ\\\n\E4ZL\\e-\sq6k\%7kޒ\\ZSg|\r\\]p\nɼ\/rL52IaD%\'\\\\Z\Xc-f,6Ҭc\\\\n\G\Um[\^]ټݷ~!^0I\A\0\\I\xd\\\0h^qv\?','Accessed page [product.php] with action=new_product_preview. Review page_parameters and postdata for details.','info'),(4537,'2018-05-28 12:08:49',1,'product.php','cPath=3&product_type=1&pID=37&action=new_product_preview&page=1','174.235.133.72',1,'',_binary 'Wmo\6+?\\eip]w4A\} @8I\V\"5\\{9/mUxw|\玗oҚJ32,Y\w2\\`ZL&go&g\^W\\),\\*\b\ƯpF\T\\~_J_<W\-JR;cq\&Oc\\8Or|z;\ߒ\)\\\0XW+J}emv]408gx=~;Bڵ\\^\\jXZҮPį\ob ݪ-\Q\!pr矦\\f\\>&\J*6OqkRx\S5kkkL[e}ES\h_\*K׏\\\\\\?\\"\L͠B\\\zlA?Qi\݋Q\nu{,	\RJ~Z樂\_\?˛\\r&no\\Ws1\54W\\\̦˛;~Z\\_.\^D6\8\\GHd\lji\B\(QZ,yEj2^\nG#0!\!+\r!\@:Rk\\h\	p|r*~CLN&\7\\\R\b\\M\Y19y;\Llk\>SyA\N8fF{krqm@\h|oy\\\^_\X3\m/Ϣ{5=HJN-\6\Z\\FU\\\4\dB)ez\BxDwq[R\\)b<-\F\*\'Py\M\JCyN|\4TI\-u9\J^\p\r\d\F\\P!J\^SrPx:\0\\\Ʌ\\rCP#\h\\\~ԍ\}t\\\2\0#_%\\JR\P$\,UnX2L\H%\N\Z\̅2C^+F%c\0#t\0__\BS\2PJ\"7U&)y\otp\\H7L\\l	\7;w\0\́g\\\\\d{#h2\n\UهVTb\r\'!Ӎ6Y\)R\H\~0CF	;rGXI\g\re\Bb!jY\8h(ّS\Z3p\Uy(\e\\R\\p\1Bf&,|C/њX0\m\DR\8\ \\Z\xh.0@\\1O&ߝ\5\)\T\\n\\Z6jkmU\0kj\\G\JqgiIZ\$\\0\\{@\US\'InjMU4:Յ;5n^\\\r\n	b*ٶ\t\\nQx\%mC˵ўT8E\(\Ǻ%li-;YOVp`W\]*\Z<?PMm}xm\``\𜩵b\\?}?}8Jc	ol\sۯ\\\n\E4ZL\\e-\sq6k\%7kޒ\\ZSg|\r\\]p\nɼ\/rL52IaD%\'\\\\Z\Xc-f,6Ҭc\\\\n\G\Um[\^]ټݷ~!^0I\A\0\\I\xd\\\0h^qv\?','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4538,'2018-05-28 12:09:00',1,'product.php','cPath=3&product_type=1&pID=37&action=update_product&page=1','174.235.133.72',0,'',_binary 'Vo\6W0l?Ӵk,\[	b\D\l%R#);n\}\(ɑ\hP\\\WZUwqF^Ɣe2\NƓ`<LN\drzr6>\{9/m\"rm.V\nKiKM}\\\\\xeM8*3amd8\O7\y\գ\TNI\\'ZQ\++maK \G )\8\\\UI\T\\>Nsr\IOTP]\\Z皐\\VY_Q&\;\\5\n\R\\s81VB-~\\\IJ+\^\R\gWC\݅\d랿\\\1irLZ32ID\j\'\\\\Z\X\u>D\\)♭;\:\r\.\Zo<w\/\ښ\pB1/]K\ŕAO++ů\71\nՖ6kz\RJ~?\Ư\\\ty97w\\_\\+nf\\͝X\M?-/\\yb/\"iw^^\\\#X:\)ZZ3J7\\"5E\\\nǨ(\7Bޣ\nv0\Rk\\\ьx8>y+~CLN&\\\\\R\"b\\Mcrf(%\\\n\0+\'\yĝ,p̌\\\\\ϣ\\򢭯`8\'rg\\x_E#\ՈHJN-6\Z\\QFU\\\4\h2FAaY\$\'%\]\\B\\3@!\Ӣ\ [nxPV9\\Z7+\sb\CxDA,&R*/\\n\*r\GJ^cA8&\jƤ\ݭFAPH8\k$)\\!%\%g3\nl=}0Cp#\l\\\~ҍ\yt\\\2\0#%\\JR\P$\,Un\2L\X-Û4֙eeV\\\Q^\r\||r?MQR2H\cZxk^\?.tCt̖\0~s\0\x\1lmL&\:72\p*a߃]}hM(\8-w\\Z2\h_{\"\΀T\cA;TF.1+I|s\0A\rAeJ.\rafs\\nc%|obC[)JW\A\I.i\\\!\c\Lx\\rDkb\AK\\ZB&BkXR\6\0\J6s\\>\\BBM>;/zKD\n\#nl:E\\ު\1aqa\\\:1\(%id_mO4\\5:Ir\0]k:ѩ.\ \Ѹ>Wވ(S}˽v\d\i.iZ\\\|5l\Ʃ,S\f\\\J\0\Fv:&\ҁ^{4; k	\@\7J\nZ}xb\Tkx\\Z\r\Є\ޟ\>\8J\\\\}\_\\2Y\N\h1[L!\\٬\IzK֋ט\1\\\\o\vBt\|\\(\\','Accessed page [product.php] with action=update_product. Review page_parameters and postdata for details.','info'),(4539,'2018-05-28 12:09:01',1,'product.php','cPath=3&product_type=1&pID=37&action=update_product&page=1','174.235.133.72',1,'',_binary 'Vo\6W0l?Ӵk,\[	b\D\l%R#);n\}\(ɑ\hP\\\WZUwqF^Ɣe2\NƓ`<LN\drzr6>\{9/m\"rm.V\nKiKM}\\\\\xeM8*3amd8\O7\y\գ\TNI\\'ZQ\++maK \G )\8\\\UI\T\\>Nsr\IOTP]\\Z皐\\VY_Q&\;\\5\n\R\\s81VB-~\\\IJ+\^\R\gWC\݅\d랿\\\1irLZ32ID\j\'\\\\Z\X\u>D\\)♭;\:\r\.\Zo<w\/\ښ\pB1/]K\ŕAO++ů\71\nՖ6kz\RJ~?\Ư\\\ty97w\\_\\+nf\\͝X\M?-/\\yb/\"iw^^\\\#X:\)ZZ3J7\\"5E\\\nǨ(\7Bޣ\nv0\Rk\\\ьx8>y+~CLN&\\\\\R\"b\\Mcrf(%\\\n\0+\'\yĝ,p̌\\\\\ϣ\\򢭯`8\'rg\\x_E#\ՈHJN-6\Z\\QFU\\\4\h2FAaY\$\'%\]\\B\\3@!\Ӣ\ [nxPV9\\Z7+\sb\CxDA,&R*/\\n\*r\GJ^cA8&\jƤ\ݭFAPH8\k$)\\!%\%g3\nl=}0Cp#\l\\\~ҍ\yt\\\2\0#%\\JR\P$\,Un\2L\X-Û4֙eeV\\\Q^\r\||r?MQR2H\cZxk^\?.tCt̖\0~s\0\x\1lmL&\:72\p*a߃]}hM(\8-w\\Z2\h_{\"\΀T\cA;TF.1+I|s\0A\rAeJ.\rafs\\nc%|obC[)JW\A\I.i\\\!\c\Lx\\rDkb\AK\\ZB&BkXR\6\0\J6s\\>\\BBM>;/zKD\n\#nl:E\\ު\1aqa\\\:1\(%id_mO4\\5:Ir\0]k:ѩ.\ \Ѹ>Wވ(S}˽v\d\i.iZ\\\|5l\Ʃ,S\f\\\J\0\Fv:&\ҁ^{4; k	\@\7J\nZ}xb\Tkx\\Z\r\Є\ޟ\>\8J\\\\}\_\\2Y\N\h1[L!\\٬\IzK֋ט\1\\\\o\vBt\|\\(\\','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4540,'2018-05-28 12:09:01',1,'product.php','cPath=3&product_type=1&pID=37&action=update_product&page=1','174.235.133.72',0,'',_binary 'Vo\6W0l?Ӵk,\[	b\D\l%R#);n\}\(ɑ\hP\\\WZUwqF^Ɣe2\NƓ`<LN\drzr6>\{9/m\"rm.V\nKiKM}\\\\\xeM8*3amd8\O7\y\գ\TNI\\'ZQ\++maK \G )\8\\\UI\T\\>Nsr\IOTP]\\Z皐\\VY_Q&\;\\5\n\R\\s81VB-~\\\IJ+\^\R\gWC\݅\d랿\\\1irLZ32ID\j\'\\\\Z\X\u>D\\)♭;\:\r\.\Zo<w\/\ښ\pB1/]K\ŕAO++ů\71\nՖ6kz\RJ~?\Ư\\\ty97w\\_\\+nf\\͝X\M?-/\\yb/\"iw^^\\\#X:\)ZZ3J7\\"5E\\\nǨ(\7Bޣ\nv0\Rk\\\ьx8>y+~CLN&\\\\\R\"b\\Mcrf(%\\\n\0+\'\yĝ,p̌\\\\\ϣ\\򢭯`8\'rg\\x_E#\ՈHJN-6\Z\\QFU\\\4\h2FAaY\$\'%\]\\B\\3@!\Ӣ\ [nxPV9\\Z7+\sb\CxDA,&R*/\\n\*r\GJ^cA8&\jƤ\ݭFAPH8\k$)\\!%\%g3\nl=}0Cp#\l\\\~ҍ\yt\\\2\0#%\\JR\P$\,Un\2L\X-Û4֙eeV\\\Q^\r\||r?MQR2H\cZxk^\?.tCt̖\0~s\0\x\1lmL&\:72\p*a߃]}hM(\8-w\\Z2\h_{\"\΀T\cA;TF.1+I|s\0A\rAeJ.\rafs\\nc%|obC[)JW\A\I.i\\\!\c\Lx\\rDkb\AK\\ZB&BkXR\6\0\J6s\\>\\BBM>;/zKD\n\#nl:E\\ު\1aqa\\\:1\(%id_mO4\\5:Ir\0]k:ѩ.\ \Ѹ>Wވ(S}˽v\d\i.iZ\\\|5l\Ʃ,S\f\\\J\0\Fv:&\ҁ^{4; k	\@\7J\nZ}xb\Tkx\\Z\r\Є\ޟ\>\8J\\\\}\_\\2Y\N\h1[L!\\٬\IzK֋ט\1\\\\o\vBt\|\\(\\','Updated product 37 via admin console.','info'),(4541,'2018-05-28 12:09:02',1,'categories.php','cPath=3&pID=37&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4542,'2018-05-28 12:09:02',1,'categories.php','cPath=3&pID=37&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4543,'2018-05-28 12:09:31',1,'product.php','page=1&product_type=1&cPath=3&pID=37&action=new_product','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4544,'2018-05-28 12:09:31',1,'product.php','page=1&product_type=1&cPath=3&pID=37&action=new_product_meta_tags','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product_meta_tags. Review page_parameters and postdata for details.','info'),(4545,'2018-05-28 12:09:31',1,'product.php','page=1&product_type=1&cPath=3&pID=37&action=new_product_meta_tags','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4546,'2018-05-28 12:09:46',1,'categories.php','cPath=3&pID=37&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4547,'2018-05-28 12:09:46',1,'categories.php','cPath=3&pID=37&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4548,'2018-05-28 12:09:58',1,'product.php','page=1&product_type=1&cPath=3&pID=35&action=new_product_meta_tags','174.235.133.72',0,'',_binary '\0','Accessed page [product.php] with action=new_product_meta_tags. Review page_parameters and postdata for details.','info'),(4549,'2018-05-28 12:09:59',1,'product.php','page=1&product_type=1&cPath=3&pID=35&action=new_product_meta_tags','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4550,'2018-05-28 12:10:04',1,'categories.php','cPath=3&pID=37&page=1','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4551,'2018-05-28 12:10:05',1,'categories.php','cPath=3&pID=37&page=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4552,'2018-05-28 12:13:22',1,'configuration.php','gID=18','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4553,'2018-05-28 12:13:23',1,'configuration.php','gID=18','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4554,'2018-05-28 12:13:31',1,'configuration.php','gID=18&cID=391&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4555,'2018-05-28 12:13:32',1,'configuration.php','gID=18&cID=391&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4556,'2018-05-28 12:13:39',1,'configuration.php','gID=18&cID=391&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	r\r\rsq+ꌌPX	2\D\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4557,'2018-05-28 12:13:39',1,'configuration.php','gID=18&cID=391&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	r\r\rsq+ꌌPX	2\D\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4558,'2018-05-28 12:13:39',1,'configuration.php','gID=18&cID=391&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	r\r\rsq+ꌌPX	2\D\0','Configuration setting changed for SHOW_PREVIOUS_NEXT_STATUS: 1','warning'),(4559,'2018-05-28 12:13:39',1,'configuration.php','gID=18&cID=391','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4560,'2018-05-28 12:13:40',1,'configuration.php','gID=18&cID=391','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4561,'2018-05-28 12:14:24',1,'configuration.php','gID=18&cID=388&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4562,'2018-05-28 12:14:24',1,'configuration.php','gID=18&cID=388&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4563,'2018-05-28 12:14:35',1,'configuration.php','gID=18&cID=388&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	usw	w	\rrpvu	\0\76JJ\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4564,'2018-05-28 12:14:35',1,'configuration.php','gID=18&cID=388&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	usw	w	\rrpvu	\0\76JJ\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4565,'2018-05-28 12:14:35',1,'configuration.php','gID=18&cID=388&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2P\Q*.M\\,	w	usw	w	\rrpvu	\0\76JJ\0','Configuration setting changed for SHOW_PRODUCT_INFO_COLUMNS_ALSO_PURCHASED_PRODUCTS: 0','warning'),(4566,'2018-05-28 12:14:36',1,'configuration.php','gID=18&cID=388','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4567,'2018-05-28 12:14:36',1,'configuration.php','gID=18&cID=388','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4568,'2018-05-28 12:17:08',1,'configuration.php','gID=8','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4569,'2018-05-28 12:17:09',1,'configuration.php','gID=8','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4570,'2018-05-28 12:17:47',1,'configuration.php','gID=8&cID=227&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4571,'2018-05-28 12:17:47',1,'configuration.php','gID=8&cID=227&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4572,'2018-05-28 12:17:53',1,'configuration.php','gID=8&cID=227&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	uwq\rv\0)3!\\\\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4573,'2018-05-28 12:17:53',1,'configuration.php','gID=8&cID=227&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	uwq\rv\0)3!\\\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4574,'2018-05-28 12:17:53',1,'configuration.php','gID=8&cID=227&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	uwq\rv\0)3!\\\\0','Configuration setting changed for PRODUCT_LIST_DESCRIPTION: 1','warning'),(4575,'2018-05-28 12:17:53',1,'configuration.php','gID=8&cID=227','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4576,'2018-05-28 12:17:54',1,'configuration.php','gID=8&cID=227','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4577,'2018-05-28 12:18:33',1,'configuration.php','gID=1','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4578,'2018-05-28 12:18:33',1,'configuration.php','gID=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4579,'2018-05-28 12:18:43',1,'configuration.php','gID=19','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4580,'2018-05-28 12:18:44',1,'configuration.php','gID=19','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4581,'2018-05-28 12:19:14',1,'configuration.php','gID=19&cID=403&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4582,'2018-05-28 12:19:14',1,'configuration.php','gID=19&cID=403&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4583,'2018-05-28 12:19:40',1,'configuration.php','gID=19&cID=404&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4584,'2018-05-28 12:19:40',1,'configuration.php','gID=19&cID=404&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4585,'2018-05-28 12:19:47',1,'configuration.php','gID=19&cID=404&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	wvqut\rwput	\0*74#Nm%HR-\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4586,'2018-05-28 12:19:47',1,'configuration.php','gID=19&cID=404&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	wvqut\rwput	\0*74#Nm%HR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4587,'2018-05-28 12:19:47',1,'configuration.php','gID=19&cID=404&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURJK\)NU\Q*.M\\,	wvqut\rwput	\0*74#Nm%HR-\0','Configuration setting changed for SHOW_CATEGORIES_BOX_SPECIALS: false','warning'),(4588,'2018-05-28 12:19:48',1,'configuration.php','gID=19&cID=404','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4589,'2018-05-28 12:19:48',1,'configuration.php','gID=19&cID=404','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4590,'2018-05-28 12:19:54',1,'configuration.php','gID=19&cID=407&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4591,'2018-05-28 12:19:54',1,'configuration.php','gID=19&cID=407&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4592,'2018-05-28 12:19:59',1,'configuration.php','gID=19&cID=407&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR*)R:JťI%\Ύ!\ANn!A.A.\!@mf$ji2U\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4593,'2018-05-28 12:20:00',1,'configuration.php','gID=19&cID=407&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR*)R:JťI%\Ύ!\ANn!A.A.\!@mf$ji2U\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4594,'2018-05-28 12:20:00',1,'configuration.php','gID=19&cID=407&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR*)R:JťI%\Ύ!\ANn!A.A.\!@mf$ji2U\0','Configuration setting changed for SHOW_CATEGORIES_BOX_FEATURED_PRODUCTS: true','warning'),(4595,'2018-05-28 12:20:00',1,'configuration.php','gID=19&cID=407','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4596,'2018-05-28 12:20:00',1,'configuration.php','gID=19&cID=407','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4597,'2018-05-28 12:20:26',1,'configuration.php','gID=19&cID=420&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4598,'2018-05-28 12:20:27',1,'configuration.php','gID=19&cID=420&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4599,'2018-05-28 12:20:35',1,'configuration.php','gID=19&cID=420&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n)R:JťI%Ύ!\A>!.@\12\ȒJ:Z\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4600,'2018-05-28 12:20:36',1,'configuration.php','gID=19&cID=420&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n)R:JťI%Ύ!\A>!.@\12\ȒJ:Z\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4601,'2018-05-28 12:20:36',1,'configuration.php','gID=19&cID=420&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR\n)R:JťI%Ύ!\A>!.@\12\ȒJ:Z\0','Configuration setting changed for CATEGORIES_SPLIT_DISPLAY: True','warning'),(4602,'2018-05-28 12:20:36',1,'configuration.php','gID=19&cID=420','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4603,'2018-05-28 12:20:36',1,'configuration.php','gID=19&cID=420','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4604,'2018-05-28 12:21:27',1,'configuration.php','gID=19&cID=442&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4605,'2018-05-28 12:21:27',1,'configuration.php','gID=19&cID=442&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4606,'2018-05-28 12:21:43',1,'configuration.php','gID=19&cID=442','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4607,'2018-05-28 12:21:43',1,'configuration.php','gID=19&cID=442','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4608,'2018-05-28 12:21:52',1,'configuration.php','gID=19&cID=440&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4609,'2018-05-28 12:21:52',1,'configuration.php','gID=19&cID=440&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4610,'2018-05-28 12:21:57',1,'configuration.php','gID=19&cID=440&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,qvqut\rqt\nq	\r\0*$dR-\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4611,'2018-05-28 12:21:57',1,'configuration.php','gID=19&cID=440&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,qvqut\rqt\nq	\r\0*$dR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4612,'2018-05-28 12:21:57',1,'configuration.php','gID=19&cID=440&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,qvqut\rqt\nq	\r\0*$dR-\0','Configuration setting changed for CATEGORIES_TABS_STATUS: 1','warning'),(4613,'2018-05-28 12:21:58',1,'configuration.php','gID=19&cID=440','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4614,'2018-05-28 12:21:58',1,'configuration.php','gID=19&cID=440','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4615,'2018-05-28 12:22:54',1,'layout_controller.php','','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(4616,'2018-05-28 12:22:55',1,'layout_controller.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4617,'2018-05-28 12:23:03',1,'layout_controller.php','cID=136','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(4618,'2018-05-28 12:23:04',1,'layout_controller.php','cID=136','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4619,'2018-05-28 12:23:07',1,'layout_controller.php','cID=136&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php] with action=edit. Review page_parameters and postdata for details.','info'),(4620,'2018-05-28 12:23:07',1,'layout_controller.php','cID=136&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4621,'2018-05-28 12:23:12',1,'layout_controller.php','cID=136&action=save&layout_box_name=categories.php','174.235.133.72',0,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\pI\g\\bSI^\0','Accessed page [layout_controller.php] with action=save. Review page_parameters and postdata for details.','info'),(4622,'2018-05-28 12:23:13',1,'layout_controller.php','cID=136&action=save&layout_box_name=categories.php','174.235.133.72',1,'',_binary 'V\I\/-Oʯ/.I,)-VR2P\A\\ON,\\\\\\\\\pI\g\\bSI^\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4623,'2018-05-28 12:23:13',1,'layout_controller.php','cID=136','174.235.133.72',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(4624,'2018-05-28 12:23:14',1,'layout_controller.php','cID=136','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4625,'2018-05-28 12:30:22',1,'categories.php','','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4626,'2018-05-28 12:30:23',1,'categories.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4627,'2018-05-28 12:30:26',1,'categories.php','cPath=5','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4628,'2018-05-28 12:30:26',1,'categories.php','cPath=5','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4629,'2018-05-28 12:30:32',1,'categories.php','cID=5','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4630,'2018-05-28 12:30:32',1,'categories.php','cID=5','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4631,'2018-05-28 12:30:37',1,'categories.php','cID=5&action=edit_category','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php] with action=edit_category. Review page_parameters and postdata for details.','info'),(4632,'2018-05-28 12:30:37',1,'categories.php','cID=5&action=edit_category','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4633,'2018-05-28 12:31:12',1,'categories.php','cID=5','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4634,'2018-05-28 12:31:13',1,'categories.php','cID=5','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4635,'2018-05-28 12:31:17',1,'categories.php','cID=3&action=edit_category','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php] with action=edit_category. Review page_parameters and postdata for details.','info'),(4636,'2018-05-28 12:31:17',1,'categories.php','cID=3&action=edit_category','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4637,'2018-05-28 12:40:42',1,'categories.php','cID=5','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4638,'2018-05-28 12:40:43',1,'categories.php','cID=5','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4639,'2018-05-28 12:40:47',1,'categories.php','cPath=5','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4640,'2018-05-28 12:40:47',1,'categories.php','cPath=5','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4641,'2018-05-28 12:40:56',1,'categories.php','cID=5','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4642,'2018-05-28 12:40:57',1,'categories.php','cID=5','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4643,'2018-05-28 12:41:03',1,'categories.php','cID=5&action=edit_category','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php] with action=edit_category. Review page_parameters and postdata for details.','info'),(4644,'2018-05-28 12:41:04',1,'categories.php','cID=5&action=edit_category','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4645,'2018-05-28 12:41:17',1,'categories.php','cID=5','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4646,'2018-05-28 12:41:17',1,'categories.php','cID=5','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4647,'2018-05-28 12:41:22',1,'categories.php','cID=18&action=edit_category','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php] with action=edit_category. Review page_parameters and postdata for details.','info'),(4648,'2018-05-28 12:41:22',1,'categories.php','cID=18&action=edit_category','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4649,'2018-05-28 12:41:30',1,'categories.php','cID=5','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4650,'2018-05-28 12:41:30',1,'categories.php','cID=5','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4651,'2018-05-28 12:41:34',1,'categories.php','cID=3&action=edit_category','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php] with action=edit_category. Review page_parameters and postdata for details.','info'),(4652,'2018-05-28 12:41:35',1,'categories.php','cID=3&action=edit_category','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4653,'2018-05-28 12:41:46',1,'categories.php','cID=5','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4654,'2018-05-28 12:41:46',1,'categories.php','cID=5','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4655,'2018-05-28 12:41:51',1,'categories.php','cPath=12','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4656,'2018-05-28 12:41:51',1,'categories.php','cID=12&action=edit_category','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php] with action=edit_category. Review page_parameters and postdata for details.','info'),(4657,'2018-05-28 12:41:52',1,'categories.php','cPath=12','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4658,'2018-05-28 12:41:52',1,'categories.php','cID=12&action=edit_category','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4659,'2018-05-28 12:41:58',1,'categories.php','cID=5','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4660,'2018-05-28 12:41:58',1,'categories.php','cID=5','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4661,'2018-05-28 12:42:06',1,'categories.php','cID=2&action=edit_category','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php] with action=edit_category. Review page_parameters and postdata for details.','info'),(4662,'2018-05-28 12:42:06',1,'categories.php','cPath=2','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4663,'2018-05-28 12:42:07',1,'categories.php','cPath=2','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4664,'2018-05-28 12:42:07',1,'categories.php','cID=2&action=edit_category','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4665,'2018-05-28 12:42:19',1,'categories.php','cID=5','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4666,'2018-05-28 12:42:19',1,'categories.php','cID=5','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4667,'2018-05-28 12:42:23',1,'categories.php','cPath=3','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4668,'2018-05-28 12:42:23',1,'categories.php','cID=3&action=edit_category','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php] with action=edit_category. Review page_parameters and postdata for details.','info'),(4669,'2018-05-28 12:42:24',1,'categories.php','cPath=3','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4670,'2018-05-28 12:42:24',1,'categories.php','cID=3&action=edit_category','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4671,'2018-05-28 12:43:47',1,'categories.php','action=update_category','174.235.133.72',0,'',_binary 'U\jA_K\"D\&\!,,\N6̏+\"{fI4PU\ױ\*(x|{WG\\-\\mSb-\N\(\$_OF8B{\L\\\rY\>lJ3<\ ?\\\D\NmҪ\ԯ@\'	\"`T\؈ә\\~x:t(Ts\\C\'@{@<\L&f~kޞqľu\\f\K\m\t\PA7F\#\\kJVkzY*(jt\\\\r','Accessed page [categories.php] with action=update_category. Review page_parameters and postdata for details.','info'),(4672,'2018-05-28 12:43:48',1,'categories.php','action=update_category','174.235.133.72',1,'',_binary 'U\jA_K\"D\&\!,,\N6̏+\"{fI4PU\ױ\*(x|{WG\\-\\mSb-\N\(\$_OF8B{\L\\\rY\>lJ3<\ ?\\\D\NmҪ\ԯ@\'	\"`T\؈ә\\~x:t(Ts\\C\'@{@<\L&f~kޞqľu\\f\K\m\t\PA7F\#\\kJVkzY*(jt\\\\r','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4673,'2018-05-28 12:43:48',1,'categories.php','action=update_category','174.235.133.72',1,'',_binary 'U\jA_K\"D\&\!,,\N6̏+\"{fI4PU\ױ\*(x|{WG\\-\\mSb-\N\(\$_OF8B{\L\\\rY\>lJ3<\ ?\\\D\NmҪ\ԯ@\'	\"`T\؈ә\\~x:t(Ts\\C\'@{@<\L&f~kޞqľu\\f\K\m\t\PA7F\#\\kJVkzY*(jt\\\\r','Success: File upload saved successfully transmitters.png','notice'),(4674,'2018-05-28 12:43:48',1,'categories.php','cID=3','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4675,'2018-05-28 12:43:48',1,'categories.php','cID=3','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4676,'2018-05-28 12:47:13',1,'categories.php','cPath=5','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4677,'2018-05-28 12:47:14',1,'categories.php','cPath=5','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4678,'2018-05-28 12:47:28',1,'categories.php','cID=3','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4679,'2018-05-28 12:47:28',1,'categories.php','cID=3','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4680,'2018-05-28 12:47:31',1,'categories.php','cPath=3','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4681,'2018-05-28 12:47:32',1,'categories.php','cPath=3','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4682,'2018-05-28 12:47:45',1,'categories.php','cID=3','174.235.133.72',0,'',_binary '\0','Accessed page [categories.php]','info'),(4683,'2018-05-28 12:47:45',1,'categories.php','cID=3','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4684,'2018-05-28 12:52:09',1,'index.php','','174.235.133.72',0,'',_binary '\0','Accessed page [index.php]','info'),(4685,'2018-05-28 12:52:10',1,'index.php','','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4686,'2018-05-28 12:52:33',1,'configuration.php','gID=3','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4687,'2018-05-28 12:52:33',1,'configuration.php','gID=3','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4688,'2018-05-28 12:53:11',1,'configuration.php','gID=3&cID=75&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4689,'2018-05-28 12:53:12',1,'configuration.php','gID=3&cID=75&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4690,'2018-05-28 12:53:18',1,'configuration.php','gID=3&cID=75&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2V\Q*.M\\,uwqwvqut\rp\r\0*6\'Vq%PR-\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4691,'2018-05-28 12:53:18',1,'configuration.php','gID=3&cID=75&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2V\Q*.M\\,uwqwvqut\rp\r\0*6\'Vq%PR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4692,'2018-05-28 12:53:18',1,'configuration.php','gID=3&cID=75&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2V\Q*.M\\,uwqwvqut\rp\r\0*6\'Vq%PR-\0','Configuration setting changed for MAX_DISPLAY_CATEGORIES_PER_ROW: 3','warning'),(4693,'2018-05-28 12:53:18',1,'configuration.php','gID=3&cID=75','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4694,'2018-05-28 12:53:19',1,'configuration.php','gID=3&cID=75','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4695,'2018-05-28 12:54:25',1,'configuration.php','gID=3&cID=85&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4696,'2018-05-28 12:54:25',1,'configuration.php','gID=3&cID=85&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4697,'2018-05-28 12:54:59',1,'configuration.php','gID=3&cID=85','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4698,'2018-05-28 12:55:00',1,'configuration.php','gID=3&cID=85','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4699,'2018-05-28 12:55:20',1,'configuration.php','gID=3&cID=94&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4700,'2018-05-28 12:55:21',1,'configuration.php','gID=3&cID=94&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4701,'2018-05-28 12:55:40',1,'configuration.php','gID=3&cID=94','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4702,'2018-05-28 12:55:40',1,'configuration.php','gID=3&cID=94','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4703,'2018-05-28 12:55:55',1,'configuration.php','gID=3&cID=101&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4704,'2018-05-28 12:55:55',1,'configuration.php','gID=3&cID=101&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4705,'2018-05-28 12:56:04',1,'configuration.php','gID=3&cID=101&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2V\Q*.M\\,uwqw	u	wvqut\rw	\0j44 Gg%HR-\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4706,'2018-05-28 12:56:04',1,'configuration.php','gID=3&cID=101&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2V\Q*.M\\,uwqw	u	wvqut\rw	\0j44 Gg%HR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4707,'2018-05-28 12:56:04',1,'configuration.php','gID=3&cID=101&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2V\Q*.M\\,uwqw	u	wvqut\rw	\0j44 Gg%HR-\0','Configuration setting changed for MAX_DISPLAY_PRODUCTS_TO_CATEGORIES_COLUMNS: 3','warning'),(4708,'2018-05-28 12:56:04',1,'configuration.php','gID=3&cID=101','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4709,'2018-05-28 12:56:05',1,'configuration.php','gID=3&cID=101','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4710,'2018-05-28 12:57:27',1,'configuration.php','gID=1','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4711,'2018-05-28 12:57:27',1,'configuration.php','gID=1','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4712,'2018-05-28 12:57:41',1,'configuration.php','gID=3&cID=101','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4713,'2018-05-28 12:57:42',1,'configuration.php','gID=3&cID=101','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4714,'2018-05-28 13:20:42',0,'login.php ','camefrom=configuration.php&gID=8','174.235.133.72',0,'',_binary '\0','Accessed page [login.php]','info'),(4715,'2018-05-28 13:20:42',0,'login.php ','camefrom=configuration.php&gID=8','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4716,'2018-05-28 13:21:07',0,'login.php Eagle','camefrom=configuration.php&gID=8','174.235.133.72',0,'',_binary 'VJL.\\\SRJ\O5005LK2L14004647M40O606HJMS\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=doe0051fb69d103813175c91887c030bef. Review page_parameters and postdata for details.','info'),(4717,'2018-05-28 13:21:07',0,'login.php Eagle','camefrom=configuration.php&gID=8','174.235.133.72',1,'',_binary 'VJL.\\\SRJ\O5005LK2L14004647M40O606HJMS\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4718,'2018-05-28 13:21:08',1,'configuration.php','gID=8','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4719,'2018-05-28 13:21:08',1,'configuration.php','gID=8','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4720,'2018-05-28 13:21:45',1,'configuration.php','gID=8&cID=224&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4721,'2018-05-28 13:21:46',1,'configuration.php','gID=8&cID=224&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4722,'2018-05-28 13:21:52',1,'configuration.php','gID=8&cID=224&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	w	uswqus	\nrq\r\076 EG%PR-\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4723,'2018-05-28 13:21:53',1,'configuration.php','gID=8&cID=224&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	w	uswqus	\nrq\r\076 EG%PR-\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4724,'2018-05-28 13:21:53',1,'configuration.php','gID=8&cID=224&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MURR\Q*.M\\,	w	uswqus	\nrq\r\076 EG%PR-\0','Configuration setting changed for PRODUCT_LISTING_DEFAULT_SORT_ORDER: ','warning'),(4725,'2018-05-28 13:21:53',1,'configuration.php','gID=8&cID=224','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4726,'2018-05-28 13:21:54',1,'configuration.php','gID=8&cID=224','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4727,'2018-05-28 13:22:05',1,'configuration.php','gID=8&cID=227&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4728,'2018-05-28 13:22:06',1,'configuration.php','gID=8&cID=227&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4729,'2018-05-28 13:22:09',1,'configuration.php','gID=8&cID=227&action=save','174.235.133.72',0,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	uwq\rv\0*35\"\\\\0','Accessed page [configuration.php] with action=save. Review page_parameters and postdata for details.','info'),(4730,'2018-05-28 13:22:10',1,'configuration.php','gID=8&cID=227&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	uwq\rv\0*35\"\\\\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4731,'2018-05-28 13:22:10',1,'configuration.php','gID=8&cID=227&action=save','174.235.133.72',1,'',_binary 'VJ\\K\L/-J,\\ϋ/K\)MUR2T\Q*.M\\,	w	uwq\rv\0*35\"\\\\0','Configuration setting changed for PRODUCT_LIST_DESCRIPTION: 1','warning'),(4732,'2018-05-28 13:22:10',1,'configuration.php','gID=8&cID=227','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php]','info'),(4733,'2018-05-28 13:22:10',1,'configuration.php','gID=8&cID=227','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4734,'2018-05-28 13:22:24',1,'configuration.php','gID=8&cID=551&action=edit','174.235.133.72',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4735,'2018-05-28 13:22:24',1,'configuration.php','gID=8&cID=551&action=edit','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4736,'2018-05-28 14:19:14',0,'login.php ','camefrom=configuration.php&gID=8&cID=551&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [login.php] with action=edit. Review page_parameters and postdata for details.','info'),(4737,'2018-05-28 14:19:15',0,'login.php ','camefrom=configuration.php&gID=8&cID=551&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4738,'2018-05-28 14:19:35',0,'login.php Eagle','camefrom=configuration.php&gID=8&cID=551&action=edit','24.72.164.167',0,'',_binary 'VJL.\\\SRJɷLL23N52O03143JM45ON21LI6HN3NV\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do9ab63e27c864162ed957cb41dc48cf3c. Review page_parameters and postdata for details.','info'),(4739,'2018-05-28 14:19:36',0,'login.php Eagle','camefrom=configuration.php&gID=8&cID=551&action=edit','24.72.164.167',1,'',_binary 'VJL.\\\SRJɷLL23N52O03143JM45ON21LI6HN3NV\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4740,'2018-05-28 14:19:36',1,'configuration.php','gID=8&cID=551&action=edit','24.72.164.167',0,'',_binary '\0','Accessed page [configuration.php] with action=edit. Review page_parameters and postdata for details.','info'),(4741,'2018-05-28 14:19:37',1,'configuration.php','gID=8&cID=551&action=edit','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4742,'2018-05-28 14:19:51',1,'developers_tool_kit.php','','24.72.164.167',0,'',_binary '\0','Accessed page [developers_tool_kit.php]','info'),(4743,'2018-05-28 14:19:51',1,'developers_tool_kit.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4744,'2018-05-28 14:20:32',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR\\/JU\\K\W\Q*O\\I-\n\"qK*RB@JR+J\s2\j','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(4745,'2018-05-28 14:20:33',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR\\/JU\\K\W\Q*O\\I-\n\"qK*RB@JR+J\s2\j','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4746,'2018-05-28 14:21:15',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',0,'',_binary 'MA\n0\"9{ЫoJT56w[\qg`v4\*	30\*b\'#@g2<\ry\\\ZWh\"r$TEa','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(4747,'2018-05-28 14:21:15',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',1,'',_binary 'MA\n0\"9{ЫoJT56w[\qg`v4\*	30\*b\'#@g2<\ry\\\ZWh\"r$TEa','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4748,'2018-05-28 14:21:36',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',0,'',_binary 'M\1\n0\Hf]L)J&\\b\\NM[F\n\,!-\ieŏ\\\\$~Wtdk(\\r','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(4749,'2018-05-28 14:21:37',1,'developers_tool_kit.php','action=locate_all_files','24.72.164.167',1,'',_binary 'M\1\n0\Hf]L)J&\\b\\NM[F\n\,!-\ieŏ\\\\$~Wtdk(\\r','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4750,'2018-05-28 16:53:49',0,'login.php ','camefrom=index.php','174.235.133.72',0,'',_binary '\0','Accessed page [login.php]','info'),(4751,'2018-05-28 16:53:50',0,'login.php ','camefrom=index.php','174.235.133.72',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4752,'2018-05-28 20:58:41',0,'login.php ','camefrom=index.php','174.235.146.7',0,'',_binary '\0','Accessed page [login.php]','info'),(4753,'2018-05-28 20:58:42',0,'login.php ','camefrom=index.php','174.235.146.7',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4754,'2018-05-28 20:59:03',0,'login.php Eagle','camefrom=index.php','174.235.146.7',0,'',_binary 'VJL.\\\SRJ\OLNLL1M603K1JI1L560K2O132HJNK26W\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=doacaad5c066d2dd1e3286b7d620bcfb37. Review page_parameters and postdata for details.','info'),(4755,'2018-05-28 20:59:03',0,'login.php Eagle','camefrom=index.php','174.235.146.7',1,'',_binary 'VJL.\\\SRJ\OLNLL1M603K1JI1L560K2O132HJNK26W\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4756,'2018-05-28 20:59:04',1,'index.php','','174.235.146.7',0,'',_binary '\0','Accessed page [index.php]','info'),(4757,'2018-05-28 20:59:04',1,'index.php','','174.235.146.7',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4758,'2018-05-28 20:59:14',1,'developers_tool_kit.php','','174.235.146.7',0,'',_binary '\0','Accessed page [developers_tool_kit.php]','info'),(4759,'2018-05-28 20:59:14',1,'developers_tool_kit.php','','174.235.146.7',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4760,'2018-05-28 20:59:27',1,'ezpages.php','','174.235.146.7',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(4761,'2018-05-28 20:59:28',1,'ezpages.php','','174.235.146.7',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4762,'2018-05-28 21:01:55',1,'ezpages.php','page=1&ezID=13','174.235.146.7',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(4763,'2018-05-28 21:01:55',1,'ezpages.php','page=1&ezID=13','174.235.146.7',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4764,'2018-05-28 21:02:01',1,'ezpages.php','page=1&ezID=13&action=new','174.235.146.7',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(4765,'2018-05-28 21:02:02',1,'ezpages.php','page=1&ezID=13&action=new','174.235.146.7',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4766,'2018-05-28 22:45:15',0,'login.php ','camefrom=index.php','174.235.146.7',0,'',_binary '\0','Accessed page [login.php]','info'),(4767,'2018-05-28 22:45:16',0,'login.php ','camefrom=index.php','174.235.146.7',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4768,'2018-05-28 22:45:51',0,'login.php ','camefrom=index.php','174.235.146.7',0,'',_binary '\0','Accessed page [login.php]','info'),(4769,'2018-05-28 22:45:52',0,'login.php ','camefrom=index.php','174.235.146.7',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4770,'2018-05-29 14:02:44',0,'login.php ','camefrom=index.php','174.235.137.110',0,'',_binary '\0','Accessed page [login.php]','info'),(4771,'2018-05-29 14:02:45',0,'login.php ','camefrom=index.php','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4772,'2018-05-29 17:31:12',0,'login.php ','camefrom=index.php','174.235.137.110',0,'',_binary '\0','Accessed page [login.php]','info'),(4773,'2018-05-29 17:31:12',0,'login.php ','camefrom=index.php','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4774,'2018-05-29 17:31:34',0,'login.php Eagle','camefrom=index.php','174.235.137.110',0,'',_binary 'VJL.\\\SRJ\O4H5OIIM26IM377N5I\DD\\DsT%Ĕ\̼\\T\\TZ\0','Accessed page [login.php] with action=doa28e7ddeb34ef773e4c3e4a4fa1ca76e. Review page_parameters and postdata for details.','info'),(4775,'2018-05-29 17:31:35',0,'login.php Eagle','camefrom=index.php','174.235.137.110',1,'',_binary 'VJL.\\\SRJ\O4H5OIIM26IM377N5I\DD\\DsT%Ĕ\̼\\T\\TZ\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4776,'2018-05-29 17:31:35',1,'index.php','','174.235.137.110',0,'',_binary '\0','Accessed page [index.php]','info'),(4777,'2018-05-29 17:31:36',1,'index.php','','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4778,'2018-05-29 17:31:45',1,'categories.php','','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php]','info'),(4779,'2018-05-29 17:31:46',1,'categories.php','','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4780,'2018-05-29 17:31:55',1,'categories.php','cPath=30','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php]','info'),(4781,'2018-05-29 17:31:56',1,'categories.php','cPath=30','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4782,'2018-05-29 17:32:00',1,'categories.php','cID=30','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php]','info'),(4783,'2018-05-29 17:32:00',1,'categories.php','cID=30','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4784,'2018-05-29 17:32:40',1,'categories.php','cPath=5','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php]','info'),(4785,'2018-05-29 17:32:41',1,'categories.php','cPath=5','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4786,'2018-05-29 17:33:51',1,'categories.php','cPath=5&cID=19&action=edit_category','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php] with action=edit_category. Review page_parameters and postdata for details.','info'),(4787,'2018-05-29 17:33:51',1,'categories.php','cPath=5&cID=19&action=edit_category','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4788,'2018-05-29 17:35:31',1,'categories.php','cPath=5','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php]','info'),(4789,'2018-05-29 17:35:32',1,'categories.php','cPath=5','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4790,'2018-05-29 17:35:35',1,'categories.php','cID=30','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php]','info'),(4791,'2018-05-29 17:35:35',1,'categories.php','cID=30','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4792,'2018-05-29 17:35:39',1,'categories.php','cPath=5','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php]','info'),(4793,'2018-05-29 17:35:39',1,'categories.php','cPath=5','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4794,'2018-05-29 17:35:47',1,'categories.php','cPath=5_19','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php]','info'),(4795,'2018-05-29 17:35:47',1,'categories.php','cPath=5_19','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4796,'2018-05-29 17:35:51',1,'categories.php','cPath=5','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php]','info'),(4797,'2018-05-29 17:35:52',1,'categories.php','cPath=5','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4798,'2018-05-29 17:39:32',1,'categories.php','cPath=5_19','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php]','info'),(4799,'2018-05-29 17:39:32',1,'categories.php','cPath=5_19','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4800,'2018-05-29 17:41:35',1,'product.php','page=1&product_type=1&cPath=5_19&pID=1&action=new_product','174.235.137.110',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4801,'2018-05-29 17:41:35',1,'product.php','page=1&product_type=1&cPath=5_19&pID=1&action=new_product','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4802,'2018-05-29 17:58:47',0,'login.php ','camefrom=categories.php&cPath=5_19&pID=1&page=1','174.235.137.110',0,'',_binary '\0','Accessed page [login.php]','info'),(4803,'2018-05-29 17:58:48',0,'login.php ','camefrom=categories.php&cPath=5_19&pID=1&page=1','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4804,'2018-05-29 17:59:05',0,'login.php Eagle','camefrom=categories.php&cPath=5_19&pID=1&page=1','174.235.137.110',0,'',_binary 'VJL.\\\SRJ\71JIH3O2HHM65L5H4J6067KI2LT\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do42db8f7b18e8ec51e098a2c18376db1a. Review page_parameters and postdata for details.','info'),(4805,'2018-05-29 17:59:06',0,'login.php Eagle','camefrom=categories.php&cPath=5_19&pID=1&page=1','174.235.137.110',1,'',_binary 'VJL.\\\SRJ\71JIH3O2HHM65L5H4J6067KI2LT\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4806,'2018-05-29 17:59:06',1,'categories.php','cPath=5_19&pID=1&page=1','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php]','info'),(4807,'2018-05-29 17:59:07',1,'categories.php','cPath=5_19&pID=1&page=1','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4808,'2018-05-29 17:59:13',1,'product.php','page=1&product_type=1&cPath=5_19&pID=10&action=new_product','174.235.137.110',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4809,'2018-05-29 17:59:14',1,'product.php','page=1&product_type=1&cPath=5_19&pID=10&action=new_product','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4810,'2018-05-29 18:03:07',1,'categories.php','cPath=5_19&pID=10&page=1','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php]','info'),(4811,'2018-05-29 18:03:07',1,'categories.php','cPath=5_19&pID=10&page=1','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4812,'2018-05-29 19:49:29',0,'login.php ','camefrom=product.php&page=1&product_type=1&cPath=5_19&pID=2&action=new_product','174.235.137.110',0,'',_binary '\0','Accessed page [login.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4813,'2018-05-29 19:49:30',0,'login.php ','camefrom=product.php&page=1&product_type=1&cPath=5_19&pID=2&action=new_product','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4814,'2018-05-29 19:49:46',0,'login.php Eagle','camefrom=product.php&page=1&product_type=1&cPath=5_19&pID=2&action=new_product','174.235.137.110',0,'',_binary 'VJL.\\\SRJ\OKH262O50M2JJ43K31L2H47400J2S\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=dofb8b327e485b2ba66f41b38a710802b6. Review page_parameters and postdata for details.','info'),(4815,'2018-05-29 19:49:46',0,'login.php Eagle','camefrom=product.php&page=1&product_type=1&cPath=5_19&pID=2&action=new_product','174.235.137.110',1,'',_binary 'VJL.\\\SRJ\OKH262O50M2JJ43K31L2H47400J2S\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4816,'2018-05-29 19:49:46',1,'product.php','page=1&product_type=1&cPath=5_19&pID=2&action=new_product','174.235.137.110',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4817,'2018-05-29 19:49:47',1,'product.php','page=1&product_type=1&cPath=5_19&pID=2&action=new_product','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4818,'2018-05-29 20:39:24',0,'login.php ','camefrom=product.php&page=1&product_type=1&cPath=5_19&pID=2&action=new_product','174.235.137.110',0,'',_binary '\0','Accessed page [login.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4819,'2018-05-29 20:39:25',0,'login.php ','camefrom=product.php&page=1&product_type=1&cPath=5_19&pID=2&action=new_product','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4820,'2018-05-29 20:39:38',0,'login.php Eagle','camefrom=product.php&page=1&product_type=1&cPath=5_19&pID=2&action=new_product','174.235.137.110',0,'',_binary 'VJL.\\\SRJ\7H34KL1I255J237O4M4375ML147P\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do28f16b9d4b552b677a5e96755ad29970. Review page_parameters and postdata for details.','info'),(4821,'2018-05-29 20:39:39',0,'login.php Eagle','camefrom=product.php&page=1&product_type=1&cPath=5_19&pID=2&action=new_product','174.235.137.110',1,'',_binary 'VJL.\\\SRJ\7H34KL1I255J237O4M4375ML147P\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4822,'2018-05-29 20:39:39',1,'product.php','page=1&product_type=1&cPath=5_19&pID=2&action=new_product','174.235.137.110',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4823,'2018-05-29 20:39:39',1,'product.php','page=1&product_type=1&cPath=5_19&pID=2&action=new_product','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4824,'2018-05-29 20:40:00',1,'login.php','camefrom=product.php&page=1&product_type=1&cPath=5_19&pID=2&action=new_product','174.235.137.110',0,'',_binary '\0','Accessed page [login.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4825,'2018-05-29 20:40:01',1,'login.php','camefrom=product.php&page=1&product_type=1&cPath=5_19&pID=2&action=new_product','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4826,'2018-05-29 20:40:05',1,'product.php','page=1&product_type=1&cPath=5_19&pID=2&action=new_product','174.235.137.110',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4827,'2018-05-29 20:40:05',1,'product.php','page=1&product_type=1&cPath=5_19&pID=2&action=new_product','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4828,'2018-05-29 20:40:10',1,'categories.php','','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php]','info'),(4829,'2018-05-29 20:40:10',1,'categories.php','','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4830,'2018-05-29 20:40:14',1,'categories.php','cPath=5','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php]','info'),(4831,'2018-05-29 20:40:14',1,'categories.php','cPath=5','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4832,'2018-05-29 20:40:17',1,'categories.php','cPath=5_19','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php]','info'),(4833,'2018-05-29 20:40:18',1,'categories.php','cPath=5_19','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4834,'2018-05-29 20:40:27',1,'product.php','page=1&product_type=1&cPath=5_19&pID=3&action=new_product','174.235.137.110',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4835,'2018-05-29 20:40:28',1,'product.php','page=1&product_type=1&cPath=5_19&pID=3&action=new_product','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4836,'2018-05-29 20:43:05',1,'categories.php','','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php]','info'),(4837,'2018-05-29 20:43:05',1,'categories.php','','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4838,'2018-05-29 20:43:08',1,'categories.php','cPath=5','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php]','info'),(4839,'2018-05-29 20:43:09',1,'categories.php','cPath=5','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4840,'2018-05-29 20:43:12',1,'categories.php','cPath=5_19','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php]','info'),(4841,'2018-05-29 20:43:13',1,'categories.php','cPath=5_19','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4842,'2018-05-29 20:43:17',1,'product.php','page=1&product_type=1&cPath=5_19&pID=4&action=new_product','174.235.137.110',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4843,'2018-05-29 20:43:17',1,'product.php','page=1&product_type=1&cPath=5_19&pID=4&action=new_product','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4844,'2018-05-29 20:45:24',1,'categories.php','cPath=5_19&pID=4&page=1','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php]','info'),(4845,'2018-05-29 20:45:24',1,'categories.php','cPath=5_19&pID=4&page=1','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4846,'2018-05-29 20:45:29',1,'product.php','page=1&product_type=1&cPath=5_19&pID=5&action=new_product','174.235.137.110',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4847,'2018-05-29 20:45:29',1,'product.php','page=1&product_type=1&cPath=5_19&pID=5&action=new_product','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4848,'2018-05-29 20:52:10',1,'categories.php','','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php]','info'),(4849,'2018-05-29 20:52:10',1,'categories.php','','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4850,'2018-05-29 20:52:15',1,'categories.php','cPath=5','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php]','info'),(4851,'2018-05-29 20:52:15',1,'categories.php','cPath=5','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4852,'2018-05-29 20:52:21',1,'categories.php','cPath=5&cID=19&action=edit_category','174.235.137.110',0,'',_binary '\0','Accessed page [categories.php] with action=edit_category. Review page_parameters and postdata for details.','info'),(4853,'2018-05-29 20:52:21',1,'categories.php','cPath=5&cID=19&action=edit_category','174.235.137.110',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4854,'2018-05-29 21:20:27',0,'login.php ','camefrom=categories.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(4855,'2018-05-29 21:20:27',0,'login.php ','camefrom=categories.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4856,'2018-05-29 21:20:44',0,'login.php Eagle','camefrom=categories.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\7M12JNIN667O521L-̒\SLS-̕tSr3\sS:\\\sRj','Accessed page [login.php] with action=do5d22cdcc377e241fcdccc806b7d4ae87. Review page_parameters and postdata for details.','info'),(4857,'2018-05-29 21:20:44',0,'login.php Eagle','camefrom=categories.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\7M12JNIN667O521L-̒\SLS-̕tSr3\sS:\\\sRj','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4858,'2018-05-29 21:20:45',1,'categories.php','','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(4859,'2018-05-29 21:20:46',1,'categories.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4860,'2018-05-29 21:20:50',1,'categories.php','cPath=18','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(4861,'2018-05-29 21:20:51',1,'categories.php','cPath=18','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4862,'2018-05-29 21:21:06',1,'categories.php','cPath=18_21','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(4863,'2018-05-29 21:21:07',1,'categories.php','cPath=18_21','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4864,'2018-05-29 21:21:12',1,'product.php','page=1&product_type=1&cPath=18_21&pID=12&action=new_product','24.72.164.167',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4865,'2018-05-29 21:21:12',1,'product.php','page=1&product_type=1&cPath=18_21&pID=12&action=new_product','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4866,'2018-05-29 21:25:00',1,'categories.php','cPath=18_21','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(4867,'2018-05-29 21:25:00',1,'categories.php','cPath=18_21','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4868,'2018-05-29 21:25:04',1,'product.php','page=1&product_type=1&cPath=18_21&pID=13&action=new_product','24.72.164.167',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4869,'2018-05-29 21:25:05',1,'product.php','page=1&product_type=1&cPath=18_21&pID=13&action=new_product','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4870,'2018-05-29 21:26:51',1,'categories.php','cPath=18_21&pID=13&page=1','24.72.164.167',0,'',_binary '\0','Accessed page [categories.php]','info'),(4871,'2018-05-29 21:26:51',1,'categories.php','cPath=18_21&pID=13&page=1','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4872,'2018-05-29 21:26:55',1,'product.php','page=1&product_type=1&cPath=18_21&pID=14&action=new_product','24.72.164.167',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4873,'2018-05-29 21:26:56',1,'product.php','page=1&product_type=1&cPath=18_21&pID=14&action=new_product','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4874,'2018-05-30 13:05:39',0,'login.php ','camefrom=index.php','174.235.150.93',0,'',_binary '\0','Accessed page [login.php]','info'),(4875,'2018-05-30 13:05:41',0,'login.php ','camefrom=index.php','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4876,'2018-05-30 13:05:51',0,'login.php ','camefrom=index.php','174.235.150.93',0,'',_binary '\0','Accessed page [login.php]','info'),(4877,'2018-05-30 13:05:52',0,'login.php ','camefrom=index.php','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4878,'2018-05-30 13:40:40',0,'login.php ','camefrom=index.php','174.235.150.93',0,'',_binary '\0','Accessed page [login.php]','info'),(4879,'2018-05-30 13:40:41',0,'login.php ','camefrom=index.php','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4880,'2018-05-30 13:41:46',0,'login.php Eagle','camefrom=index.php','174.235.150.93',0,'',_binary 'VJL.\\\SRJ\7K2LK325762655J2JN66I044JJM21KIU\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do6b1ff257323552b2cc34a8112beb46de. Review page_parameters and postdata for details.','info'),(4881,'2018-05-30 13:41:46',0,'login.php Eagle','camefrom=index.php','174.235.150.93',1,'',_binary 'VJL.\\\SRJ\7K2LK325762655J2JN66I044JJM21KIU\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4882,'2018-05-30 13:41:47',0,'login.php Eagle','camefrom=index.php','174.235.150.93',1,'',_binary 'VJL.\\\SRJ\7K2LK325762655J2JN66I044JJM21KIU\QJL\\̋\K\M\pML\IU\0','Failed admin login attempt:  Eagle','warning'),(4883,'2018-05-30 13:41:56',0,'login.php Eagle','camefrom=index.php','174.235.150.93',0,'',_binary 'VJL.\\\SRJ\7K2LK325762655J2JN66I044JJM21KIU\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do6b1ff257323552b2cc34a8112beb46de. Review page_parameters and postdata for details.','info'),(4884,'2018-05-30 13:41:56',0,'login.php Eagle','camefrom=index.php','174.235.150.93',1,'',_binary 'VJL.\\\SRJ\7K2LK325762655J2JN66I044JJM21KIU\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4885,'2018-05-30 13:41:57',1,'index.php','','174.235.150.93',0,'',_binary '\0','Accessed page [index.php]','info'),(4886,'2018-05-30 13:41:57',1,'index.php','','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4887,'2018-05-30 13:42:03',1,'categories.php','','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4888,'2018-05-30 13:42:03',1,'categories.php','','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4889,'2018-05-30 13:43:12',1,'categories.php','cPath=18','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4890,'2018-05-30 13:43:13',1,'categories.php','cPath=18','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4891,'2018-05-30 13:46:37',1,'categories.php','cID=18','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4892,'2018-05-30 13:46:38',1,'categories.php','cID=18','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4893,'2018-05-30 13:46:41',1,'categories.php','cPath=3','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4894,'2018-05-30 13:46:41',1,'categories.php','cPath=3','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4895,'2018-05-30 13:46:46',1,'categories.php','cID=3','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4896,'2018-05-30 13:46:47',1,'categories.php','cID=3','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4897,'2018-05-30 13:46:50',1,'categories.php','cPath=12','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4898,'2018-05-30 13:46:50',1,'categories.php','cPath=12','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4899,'2018-05-30 13:46:53',1,'categories.php','cID=12','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4900,'2018-05-30 13:46:53',1,'categories.php','cID=12','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4901,'2018-05-30 13:46:56',1,'categories.php','cPath=2','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4902,'2018-05-30 13:46:57',1,'categories.php','cPath=2','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4903,'2018-05-30 13:47:00',1,'categories.php','cID=2','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4904,'2018-05-30 13:47:00',1,'categories.php','cID=2','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4905,'2018-05-30 13:47:04',1,'categories.php','cPath=18','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4906,'2018-05-30 13:47:05',1,'categories.php','cPath=18','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4907,'2018-05-30 13:47:08',1,'categories.php','cPath=18_21','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4908,'2018-05-30 13:47:09',1,'categories.php','cPath=18_21','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4909,'2018-05-30 13:47:49',1,'categories.php','cPath=18&cID=21','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4910,'2018-05-30 13:47:50',1,'categories.php','cPath=18&cID=21','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4911,'2018-05-30 13:47:53',1,'categories.php','cPath=18_22','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4912,'2018-05-30 13:47:53',1,'categories.php','cPath=18_22','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4913,'2018-05-30 13:48:17',1,'product.php','page=1&product_type=1&cPath=18_22&pID=21&action=new_product','174.235.150.93',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4914,'2018-05-30 13:48:17',1,'product.php','page=1&product_type=1&cPath=18_22&pID=21&action=new_product','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4915,'2018-05-30 13:49:30',1,'categories.php','cPath=18_22','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4916,'2018-05-30 13:49:30',1,'categories.php','cPath=18_22','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4917,'2018-05-30 13:50:49',1,'product.php','page=1&product_type=1&cPath=18_22&pID=21&action=new_product','174.235.150.93',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4918,'2018-05-30 13:50:50',1,'product.php','page=1&product_type=1&cPath=18_22&pID=21&action=new_product','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4919,'2018-05-30 13:51:28',1,'categories.php','cPath=18_22','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4920,'2018-05-30 13:51:28',1,'categories.php','cPath=18_22','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4921,'2018-05-30 13:53:17',1,'product.php','page=1&product_type=1&cPath=18_22&pID=22&action=new_product','174.235.150.93',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4922,'2018-05-30 13:53:17',1,'product.php','page=1&product_type=1&cPath=18_22&pID=22&action=new_product','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4923,'2018-05-30 13:53:26',1,'categories.php','cPath=18_22&pID=22&page=1','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4924,'2018-05-30 13:53:27',1,'categories.php','cPath=18_22&pID=22&page=1','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4925,'2018-05-30 13:55:14',1,'product.php','page=1&product_type=1&cPath=18_22&pID=23&action=new_product','174.235.150.93',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4926,'2018-05-30 13:55:14',1,'product.php','page=1&product_type=1&cPath=18_22&pID=23&action=new_product','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4927,'2018-05-30 13:55:22',1,'categories.php','cPath=18_22&pID=23&page=1','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4928,'2018-05-30 13:55:23',1,'categories.php','cPath=18_22&pID=23&page=1','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4929,'2018-05-30 13:56:29',1,'product.php','page=1&product_type=1&cPath=18_22&pID=24&action=new_product','174.235.150.93',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4930,'2018-05-30 13:56:30',1,'product.php','page=1&product_type=1&cPath=18_22&pID=24&action=new_product','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4931,'2018-05-30 13:56:36',1,'categories.php','cPath=18_22&pID=24&page=1','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4932,'2018-05-30 13:56:37',1,'categories.php','cPath=18_22&pID=24&page=1','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4933,'2018-05-30 13:57:21',1,'categories.php','cPath=18&cID=22','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4934,'2018-05-30 13:57:21',1,'categories.php','cPath=18&cID=22','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4935,'2018-05-30 13:57:24',1,'categories.php','cPath=18_23','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4936,'2018-05-30 13:57:25',1,'categories.php','cPath=18_23','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4937,'2018-05-30 13:59:47',1,'product.php','page=1&product_type=1&cPath=18_23&pID=16&action=new_product','174.235.150.93',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4938,'2018-05-30 13:59:48',1,'product.php','page=1&product_type=1&cPath=18_23&pID=16&action=new_product','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4939,'2018-05-30 13:59:57',1,'categories.php','cPath=18_23&pID=16&page=1','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4940,'2018-05-30 13:59:57',1,'categories.php','cPath=18_23&pID=16&page=1','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4941,'2018-05-30 14:01:13',1,'product.php','page=1&product_type=1&cPath=18_23&pID=17&action=new_product','174.235.150.93',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4942,'2018-05-30 14:01:14',1,'product.php','page=1&product_type=1&cPath=18_23&pID=17&action=new_product','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4943,'2018-05-30 14:01:20',1,'categories.php','cPath=18_23&pID=17&page=1','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4944,'2018-05-30 14:01:21',1,'categories.php','cPath=18_23&pID=17&page=1','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4945,'2018-05-30 14:03:02',1,'product.php','page=1&product_type=1&cPath=18_23&pID=18&action=new_product','174.235.150.93',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4946,'2018-05-30 14:03:02',1,'product.php','page=1&product_type=1&cPath=18_23&pID=18&action=new_product','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4947,'2018-05-30 14:03:08',1,'categories.php','cPath=18_23&pID=18&page=1','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4948,'2018-05-30 14:03:08',1,'categories.php','cPath=18_23&pID=18&page=1','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4949,'2018-05-30 14:04:33',1,'product.php','page=1&product_type=1&cPath=18_23&pID=19&action=new_product','174.235.150.93',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4950,'2018-05-30 14:04:34',1,'product.php','page=1&product_type=1&cPath=18_23&pID=19&action=new_product','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4951,'2018-05-30 14:04:43',1,'categories.php','cPath=18_23&pID=19&page=1','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4952,'2018-05-30 14:04:44',1,'categories.php','cPath=18_23&pID=19&page=1','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4953,'2018-05-30 14:04:56',1,'product.php','page=1&product_type=1&cPath=18_23&pID=19&action=new_product','174.235.150.93',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4954,'2018-05-30 14:04:56',1,'product.php','page=1&product_type=1&cPath=18_23&pID=19&action=new_product','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4955,'2018-05-30 14:05:03',1,'categories.php','cPath=18_23&pID=19&page=1','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4956,'2018-05-30 14:05:04',1,'categories.php','cPath=18_23&pID=19&page=1','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4957,'2018-05-30 14:09:45',1,'categories.php','cPath=18&cID=23','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4958,'2018-05-30 14:09:46',1,'categories.php','cPath=18&cID=23','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4959,'2018-05-30 14:09:49',1,'categories.php','cPath=18_24','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4960,'2018-05-30 14:09:49',1,'categories.php','cPath=18_24','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4961,'2018-05-30 14:13:04',1,'product.php','page=1&product_type=1&cPath=18_24&pID=26&action=new_product','174.235.150.93',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4962,'2018-05-30 14:13:05',1,'product.php','page=1&product_type=1&cPath=18_24&pID=26&action=new_product','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4963,'2018-05-30 14:14:15',1,'categories.php','cPath=18_24&pID=26&page=1','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4964,'2018-05-30 14:14:16',1,'categories.php','cPath=18_24&pID=26&page=1','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4965,'2018-05-30 14:15:12',1,'product.php','page=1&product_type=1&cPath=18_24&pID=27&action=new_product','174.235.150.93',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4966,'2018-05-30 14:15:13',1,'product.php','page=1&product_type=1&cPath=18_24&pID=27&action=new_product','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4967,'2018-05-30 14:15:18',1,'categories.php','cPath=18_24&pID=27&page=1','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4968,'2018-05-30 14:15:19',1,'categories.php','cPath=18_24&pID=27&page=1','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4969,'2018-05-30 14:17:05',1,'product.php','page=1&product_type=1&cPath=18_24&pID=28&action=new_product','174.235.150.93',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4970,'2018-05-30 14:17:06',1,'product.php','page=1&product_type=1&cPath=18_24&pID=28&action=new_product','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4971,'2018-05-30 14:17:11',1,'categories.php','cPath=18_24&pID=28&page=1','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4972,'2018-05-30 14:17:12',1,'categories.php','cPath=18_24&pID=28&page=1','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4973,'2018-05-30 14:18:36',1,'product.php','page=1&product_type=1&cPath=18_24&pID=29&action=new_product','174.235.150.93',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4974,'2018-05-30 14:18:37',1,'product.php','page=1&product_type=1&cPath=18_24&pID=29&action=new_product','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4975,'2018-05-30 14:18:41',1,'categories.php','cPath=18_24&pID=29&page=1','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4976,'2018-05-30 14:18:42',1,'categories.php','cPath=18_24&pID=29&page=1','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4977,'2018-05-30 14:19:03',1,'categories.php','cPath=18&cID=24','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4978,'2018-05-30 14:19:03',1,'categories.php','cPath=18&cID=24','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4979,'2018-05-30 14:19:06',1,'categories.php','cPath=18_25','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4980,'2018-05-30 14:19:06',1,'categories.php','cPath=18_25','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4981,'2018-05-30 14:20:34',1,'product.php','page=1&product_type=1&cPath=18_25&pID=31&action=new_product','174.235.150.93',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4982,'2018-05-30 14:20:35',1,'product.php','page=1&product_type=1&cPath=18_25&pID=31&action=new_product','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4983,'2018-05-30 14:20:40',1,'categories.php','cPath=18_25&pID=31&page=1','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4984,'2018-05-30 14:20:40',1,'categories.php','cPath=18_25&pID=31&page=1','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4985,'2018-05-30 14:22:14',1,'product.php','page=1&product_type=1&cPath=18_25&pID=32&action=new_product','174.235.150.93',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4986,'2018-05-30 14:22:15',1,'product.php','page=1&product_type=1&cPath=18_25&pID=32&action=new_product','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4987,'2018-05-30 14:22:21',1,'categories.php','cPath=18_25&pID=32&page=1','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4988,'2018-05-30 14:22:21',1,'categories.php','cPath=18_25&pID=32&page=1','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4989,'2018-05-30 14:23:30',1,'product.php','page=1&product_type=1&cPath=18_25&pID=33&action=new_product','174.235.150.93',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4990,'2018-05-30 14:23:30',1,'product.php','page=1&product_type=1&cPath=18_25&pID=33&action=new_product','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4991,'2018-05-30 14:24:21',1,'categories.php','cPath=18_25&pID=33&page=1','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4992,'2018-05-30 14:24:21',1,'categories.php','cPath=18_25&pID=33&page=1','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4993,'2018-05-30 14:25:09',1,'product.php','page=1&product_type=1&cPath=18_25&pID=34&action=new_product','174.235.150.93',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(4994,'2018-05-30 14:25:10',1,'product.php','page=1&product_type=1&cPath=18_25&pID=34&action=new_product','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4995,'2018-05-30 14:25:17',1,'categories.php','cPath=18_25&pID=34&page=1','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(4996,'2018-05-30 14:25:18',1,'categories.php','cPath=18_25&pID=34&page=1','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4997,'2018-05-30 14:43:41',0,'login.php ','camefrom=categories.php&cPath=18&cID=25','174.235.150.93',0,'',_binary '\0','Accessed page [login.php]','info'),(4998,'2018-05-30 14:43:41',0,'login.php ','camefrom=categories.php&cPath=18&cID=25','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(4999,'2018-05-30 14:44:13',0,'login.php Eagle','camefrom=categories.php&cPath=18&cID=25','174.235.150.93',0,'',_binary 'VJL.\\\SRJ\OKM33H64KI1OL30M2LJ4LK2H011Q\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=dofef60c196dd7af1985b1ba1fb58d8444. Review page_parameters and postdata for details.','info'),(5000,'2018-05-30 14:44:14',0,'login.php Eagle','camefrom=categories.php&cPath=18&cID=25','174.235.150.93',1,'',_binary 'VJL.\\\SRJ\OKM33H64KI1OL30M2LJ4LK2H011Q\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5001,'2018-05-30 14:44:15',1,'categories.php','cPath=18&cID=25','174.235.150.93',0,'',_binary '\0','Accessed page [categories.php]','info'),(5002,'2018-05-30 14:44:16',1,'categories.php','cPath=18&cID=25','174.235.150.93',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5003,'2018-05-31 09:43:19',0,'login.php ','camefrom=index.php','174.235.144.75',0,'',_binary '\0','Accessed page [login.php]','info'),(5004,'2018-05-31 09:43:20',0,'login.php ','camefrom=index.php','174.235.144.75',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5005,'2018-06-01 22:35:51',0,'login.php ','camefrom=index.php','75.144.113.87',0,'',_binary '\0','Accessed page [login.php]','info'),(5006,'2018-06-01 22:35:52',0,'login.php ','camefrom=index.php','75.144.113.87',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5007,'2018-06-03 11:38:49',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5008,'2018-06-03 11:38:50',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5009,'2018-06-03 16:31:37',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5010,'2018-06-03 16:31:38',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5011,'2018-06-03 16:32:16',0,'login.php life','camefrom=index.php','107.213.69.182',0,'',_binary '\r\1\n0\08wJ\g!1Kҿ\w\lx\(93vvVVCj\+e?f','Accessed page [login.php] with action=dodae65936f0520dede88298e8c8cd2363. Review page_parameters and postdata for details.','info'),(5012,'2018-06-03 16:32:16',0,'login.php life','camefrom=index.php','107.213.69.182',1,'',_binary '\r\1\n0\08wJ\g!1Kҿ\w\lx\(93vvVVCj\+e?f','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5013,'2018-06-03 16:32:16',0,'login.php life','camefrom=index.php','107.213.69.182',1,'',_binary '\r\1\n0\08wJ\g!1Kҿ\w\lx\(93vvVVCj\+e?f','Failed admin login attempt:  life','warning'),(5014,'2018-06-03 16:32:44',0,'login.php Eagle','camefrom=index.php','107.213.69.182',0,'',_binary 'VJL.\\\SRJ\OIL5346K3052HIMI0HHHN1263V\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=dodae65936f0520dede88298e8c8cd2363. Review page_parameters and postdata for details.','info'),(5015,'2018-06-03 16:32:44',0,'login.php Eagle','camefrom=index.php','107.213.69.182',1,'',_binary 'VJL.\\\SRJ\OIL5346K3052HIMI0HHHN1263V\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5016,'2018-06-03 16:32:45',1,'index.php','','107.213.69.182',0,'',_binary '\0','Accessed page [index.php]','info'),(5017,'2018-06-03 16:32:45',1,'index.php','','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5018,'2018-06-03 16:32:49',1,'ezpages.php','','107.213.69.182',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(5019,'2018-06-03 16:32:50',1,'ezpages.php','','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5020,'2018-06-03 16:32:54',1,'ezpages.php','page=1&ezID=9','107.213.69.182',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(5021,'2018-06-03 16:32:54',1,'ezpages.php','ezID=9&action=new','107.213.69.182',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(5022,'2018-06-03 16:32:55',1,'ezpages.php','page=1&ezID=9','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5023,'2018-06-03 16:32:55',1,'ezpages.php','ezID=9&action=new','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5024,'2018-06-03 16:51:00',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5025,'2018-06-03 16:51:00',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5026,'2018-06-03 16:51:26',0,'login.php Eagle','camefrom=index.php','107.213.69.182',0,'',_binary 'VJL.\\\SRJ\7II3HL47OMI3L3H3H0043445HQ\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do4df58c9f977edf1f68f0e9801611558d. Review page_parameters and postdata for details.','info'),(5027,'2018-06-03 16:51:27',0,'login.php Eagle','camefrom=index.php','107.213.69.182',1,'',_binary 'VJL.\\\SRJ\7II3HL47OMI3L3H3H0043445HQ\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5028,'2018-06-03 16:51:27',1,'index.php','','107.213.69.182',0,'',_binary '\0','Accessed page [index.php]','info'),(5029,'2018-06-03 16:51:28',1,'index.php','','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5030,'2018-06-03 16:51:36',1,'ezpages.php','','107.213.69.182',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(5031,'2018-06-03 16:51:37',1,'ezpages.php','','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5032,'2018-06-03 16:59:06',1,'categories.php','','107.213.69.182',0,'',_binary '\0','Accessed page [categories.php]','info'),(5033,'2018-06-03 16:59:06',1,'categories.php','','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5034,'2018-06-03 16:59:14',1,'categories.php','cPath=2','107.213.69.182',0,'',_binary '\0','Accessed page [categories.php]','info'),(5035,'2018-06-03 16:59:15',1,'categories.php','cPath=2','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5036,'2018-06-03 16:59:21',1,'categories.php','','107.213.69.182',0,'',_binary '\0','Accessed page [categories.php]','info'),(5037,'2018-06-03 16:59:22',1,'categories.php','','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5038,'2018-06-03 16:59:27',1,'categories.php','cID=2&action=edit_category','107.213.69.182',0,'',_binary '\0','Accessed page [categories.php] with action=edit_category. Review page_parameters and postdata for details.','info'),(5039,'2018-06-03 16:59:27',1,'categories.php','cID=2&action=edit_category','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5040,'2018-06-03 19:48:07',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5041,'2018-06-03 19:48:08',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5042,'2018-06-03 20:44:35',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5043,'2018-06-03 20:44:36',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5044,'2018-06-03 20:44:51',0,'login.php Eagle','camefrom=index.php','107.213.69.182',0,'',_binary 'VJL.\\\SRJ\O41NN4L6NH12H23265HNKK176KT\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=doc943ca789c3a8d2388b62350cffd736a. Review page_parameters and postdata for details.','info'),(5045,'2018-06-03 20:44:52',0,'login.php Eagle','camefrom=index.php','107.213.69.182',1,'',_binary 'VJL.\\\SRJ\O41NN4L6NH12H23265HNKK176KT\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5046,'2018-06-03 20:44:52',1,'index.php','','107.213.69.182',0,'',_binary '\0','Accessed page [index.php]','info'),(5047,'2018-06-03 20:44:53',1,'index.php','','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5048,'2018-06-03 20:45:01',1,'ezpages.php','','107.213.69.182',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(5049,'2018-06-03 20:45:02',1,'ezpages.php','','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5050,'2018-06-04 03:03:04',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5051,'2018-06-04 03:03:05',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5052,'2018-06-04 07:16:00',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5053,'2018-06-04 07:16:01',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5054,'2018-06-04 07:17:49',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5055,'2018-06-04 07:17:50',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5056,'2018-06-05 07:34:43',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5057,'2018-06-05 07:34:44',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5058,'2018-06-05 07:35:35',0,'login.php try10','camefrom=index.php','107.213.69.182',0,'',_binary 'VJL.\\\SRJ\765KLKK4HMKIMILL2K04224I10L5P\QJL\\̋\K\M\()44P\0','Accessed page [login.php] with action=do356affa18efdedaab6e8122094d079e0. Review page_parameters and postdata for details.','info'),(5059,'2018-06-05 07:35:36',0,'login.php try10','camefrom=index.php','107.213.69.182',1,'',_binary 'VJL.\\\SRJ\765KLKK4HMKIMILL2K04224I10L5P\QJL\\̋\K\M\()44P\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5060,'2018-06-05 07:35:36',0,'login.php try10','camefrom=index.php','107.213.69.182',1,'',_binary 'VJL.\\\SRJ\765KLKK4HMKIMILL2K04224I10L5P\QJL\\̋\K\M\()44P\0','Failed admin login attempt:  try10','warning'),(5061,'2018-06-05 07:35:58',0,'login.php try10','camefrom=index.php','107.213.69.182',0,'',_binary 'VJL.\\\SRJ\765KLKK4HMKIMILL2K04224I10L5P\QJL\\̋\K\M\()44P\0','Accessed page [login.php] with action=do356affa18efdedaab6e8122094d079e0. Review page_parameters and postdata for details.','info'),(5062,'2018-06-05 07:35:58',0,'login.php try10','camefrom=index.php','107.213.69.182',1,'',_binary 'VJL.\\\SRJ\765KLKK4HMKIMILL2K04224I10L5P\QJL\\̋\K\M\()44P\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5063,'2018-06-05 07:35:58',0,'login.php try10','camefrom=index.php','107.213.69.182',1,'',_binary 'VJL.\\\SRJ\765KLKK4HMKIMILL2K04224I10L5P\QJL\\̋\K\M\()44P\0','Failed admin login attempt:  try10','warning'),(5064,'2018-06-05 20:16:23',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5065,'2018-06-05 20:16:24',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5066,'2018-06-06 17:36:06',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5067,'2018-06-06 17:36:07',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5068,'2018-06-07 06:12:38',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5069,'2018-06-07 06:12:39',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5070,'2018-06-07 20:34:38',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5071,'2018-06-07 20:34:39',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5072,'2018-06-07 20:34:57',0,'login.php Eagle','camefrom=index.php','107.213.69.182',0,'',_binary 'VJL.\\\SRJ\71M4K6IJ435ON3L6007LIJLH0LK1T\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do45a6c4ba657cf1c198071dbab8f81fd1. Review page_parameters and postdata for details.','info'),(5073,'2018-06-07 20:34:57',0,'login.php Eagle','camefrom=index.php','107.213.69.182',1,'',_binary 'VJL.\\\SRJ\71M4K6IJ435ON3L6007LIJLH0LK1T\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5074,'2018-06-07 20:34:57',1,'index.php','','107.213.69.182',0,'',_binary '\0','Accessed page [index.php]','info'),(5075,'2018-06-07 20:34:58',1,'index.php','','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5076,'2018-06-07 20:35:03',1,'categories.php','','107.213.69.182',0,'',_binary '\0','Accessed page [categories.php]','info'),(5077,'2018-06-07 20:35:03',1,'categories.php','','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5078,'2018-06-07 20:35:07',1,'categories.php','cPath=3','107.213.69.182',0,'',_binary '\0','Accessed page [categories.php]','info'),(5079,'2018-06-07 20:35:07',1,'categories.php','cPath=3','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5080,'2018-06-07 20:35:12',1,'product.php','page=1&product_type=1&cPath=3&pID=36&action=new_product','107.213.69.182',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(5081,'2018-06-07 20:35:13',1,'product.php','page=1&product_type=1&cPath=3&pID=36&action=new_product','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5082,'2018-06-07 20:43:40',1,'categories.php','cPath=3','107.213.69.182',0,'',_binary '\0','Accessed page [categories.php]','info'),(5083,'2018-06-07 20:43:41',1,'categories.php','cPath=3','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5084,'2018-06-07 20:43:44',1,'product.php','page=1&product_type=1&cPath=3&pID=45&action=new_product','107.213.69.182',0,'',_binary '\0','Accessed page [product.php] with action=new_product. Review page_parameters and postdata for details.','info'),(5085,'2018-06-07 20:43:44',1,'product.php','page=1&product_type=1&cPath=3&pID=45&action=new_product','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5086,'2018-06-07 21:16:25',0,'login.php ','camefrom=categories.php&cPath=3&pID=45&page=1','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5087,'2018-06-07 21:16:26',0,'login.php ','camefrom=categories.php&cPath=3&pID=45&page=1','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5088,'2018-06-08 07:19:34',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5089,'2018-06-08 07:19:35',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5090,'2018-06-08 10:17:47',0,'login.php ','camefrom=index.php','174.228.152.34',0,'',_binary '\0','Accessed page [login.php]','info'),(5091,'2018-06-08 10:17:47',0,'login.php ','camefrom=index.php','174.228.152.34',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5092,'2018-06-08 20:23:24',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5093,'2018-06-08 20:23:25',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5094,'2018-06-09 09:43:07',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5095,'2018-06-09 09:43:08',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5096,'2018-06-10 06:10:23',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5097,'2018-06-10 06:10:24',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5098,'2018-06-10 18:04:42',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5099,'2018-06-10 18:04:42',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5100,'2018-06-10 18:05:05',0,'login.php Eagle','camefrom=index.php','107.213.69.182',0,'',_binary 'VJL.\\\SRJɷLINN50I30IL54L42O5LKL62I4NS\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do9dcce284f04c9e7891a27e1fac24f93f. Review page_parameters and postdata for details.','info'),(5101,'2018-06-10 18:05:05',0,'login.php Eagle','camefrom=index.php','107.213.69.182',1,'',_binary 'VJL.\\\SRJɷLINN50I30IL54L42O5LKL62I4NS\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5102,'2018-06-10 18:05:06',1,'index.php','','107.213.69.182',0,'',_binary '\0','Accessed page [index.php]','info'),(5103,'2018-06-10 18:05:06',1,'index.php','','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5104,'2018-06-10 18:06:00',1,'define_pages_editor.php','','107.213.69.182',0,'',_binary '\0','Accessed page [define_pages_editor.php]','info'),(5105,'2018-06-10 18:06:01',1,'define_pages_editor.php','','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5106,'2018-06-10 18:06:05',1,'ezpages.php','','107.213.69.182',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(5107,'2018-06-10 18:06:06',1,'ezpages.php','','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5108,'2018-06-10 18:06:20',1,'ezpages.php','page=1&ezID=4','107.213.69.182',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(5109,'2018-06-10 18:06:20',1,'ezpages.php','ezID=4&action=new','107.213.69.182',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(5110,'2018-06-10 18:06:21',1,'ezpages.php','page=1&ezID=4','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5111,'2018-06-10 18:06:21',1,'ezpages.php','ezID=4&action=new','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5112,'2018-06-10 18:08:13',1,'ezpages.php','ezID=4','107.213.69.182',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(5113,'2018-06-10 18:08:13',1,'ezpages.php','ezID=4','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5114,'2018-06-10 18:08:24',1,'ezpages.php','page=1&ezID=10','107.213.69.182',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(5115,'2018-06-10 18:08:25',1,'ezpages.php','ezID=10&action=new','107.213.69.182',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(5116,'2018-06-10 18:08:25',1,'ezpages.php','page=1&ezID=10','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5117,'2018-06-10 18:08:25',1,'ezpages.php','ezID=10&action=new','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5118,'2018-06-10 18:09:57',1,'ezpages.php','ezID=10','107.213.69.182',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(5119,'2018-06-10 18:09:58',1,'ezpages.php','ezID=10','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5120,'2018-06-10 18:10:04',1,'ezpages.php','page=1&ezID=11','107.213.69.182',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(5121,'2018-06-10 18:10:04',1,'ezpages.php','ezID=11&action=new','107.213.69.182',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(5122,'2018-06-10 18:10:04',1,'ezpages.php','page=1&ezID=11','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5123,'2018-06-10 18:10:04',1,'ezpages.php','ezID=11&action=new','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5124,'2018-06-10 18:11:33',1,'ezpages.php','ezID=11','107.213.69.182',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(5125,'2018-06-10 18:11:34',1,'ezpages.php','ezID=11','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5126,'2018-06-10 18:11:40',1,'ezpages.php','ezID=12&action=new','107.213.69.182',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(5127,'2018-06-10 18:11:40',1,'ezpages.php','page=1&ezID=12','107.213.69.182',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(5128,'2018-06-10 18:11:41',1,'ezpages.php','ezID=12&action=new','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5129,'2018-06-10 18:12:36',1,'ezpages.php','ezID=12','107.213.69.182',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(5130,'2018-06-10 18:12:36',1,'ezpages.php','ezID=12','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5131,'2018-06-10 18:12:42',1,'ezpages.php','page=1&ezID=7','107.213.69.182',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(5132,'2018-06-10 18:12:42',1,'ezpages.php','ezID=7&action=new','107.213.69.182',0,'',_binary '\0','Accessed page [ezpages.php] with action=new. Review page_parameters and postdata for details.','info'),(5133,'2018-06-10 18:12:42',1,'ezpages.php','page=1&ezID=7','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5134,'2018-06-10 18:12:42',1,'ezpages.php','ezID=7&action=new','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5135,'2018-06-10 18:14:34',1,'ezpages.php','ezID=7','107.213.69.182',0,'',_binary '\0','Accessed page [ezpages.php]','info'),(5136,'2018-06-10 18:14:34',1,'ezpages.php','ezID=7','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5137,'2018-06-10 19:18:22',0,'login.php ','camefrom=ezpages.php&ezID=7&action=new','107.213.69.182',0,'',_binary '\0','Accessed page [login.php] with action=new. Review page_parameters and postdata for details.','info'),(5138,'2018-06-10 19:18:23',0,'login.php ','camefrom=ezpages.php&ezID=7&action=new','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5139,'2018-06-10 19:18:42',0,'login.php try10','camefrom=ezpages.php&ezID=7&action=new','107.213.69.182',0,'',_binary 'VJL.\\\SRJ\70NJ62531J51I304ILK43L0I404JJS\QJL\\̋\K\M\()44P\0','Accessed page [login.php] with action=do03bc25642e44f0394afa61a984a012bf. Review page_parameters and postdata for details.','info'),(5140,'2018-06-10 19:18:43',0,'login.php try10','camefrom=ezpages.php&ezID=7&action=new','107.213.69.182',1,'',_binary 'VJL.\\\SRJ\70NJ62531J51I304ILK43L0I404JJS\QJL\\̋\K\M\()44P\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5141,'2018-06-10 19:18:43',0,'login.php try10','camefrom=ezpages.php&ezID=7&action=new','107.213.69.182',1,'',_binary 'VJL.\\\SRJ\70NJ62531J51I304ILK43L0I404JJS\QJL\\̋\K\M\()44P\0','Failed admin login attempt:  try10','warning'),(5142,'2018-06-10 23:23:35',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5143,'2018-06-10 23:23:35',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5144,'2018-06-10 23:23:42',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5145,'2018-06-10 23:23:42',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5146,'2018-06-10 23:25:29',0,'login.php Eagle','camefrom=index.php','107.213.69.182',0,'',_binary 'VJL.\\\SRJ\7JN35L0NK2O544LN60L34I617J20V\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do2cf51d83fb7e0911cc029f794c472b03. Review page_parameters and postdata for details.','info'),(5147,'2018-06-10 23:25:29',0,'login.php Eagle','camefrom=index.php','107.213.69.182',1,'',_binary 'VJL.\\\SRJ\7JN35L0NK2O544LN60L34I617J20V\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5148,'2018-06-10 23:25:30',1,'index.php','','107.213.69.182',0,'',_binary '\0','Accessed page [index.php]','info'),(5149,'2018-06-10 23:25:30',1,'index.php','','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5150,'2018-06-10 23:25:55',1,'layout_controller.php','','107.213.69.182',0,'',_binary '\0','Accessed page [layout_controller.php]','info'),(5151,'2018-06-10 23:25:55',1,'layout_controller.php','','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5152,'2018-06-10 23:27:08',1,'configuration.php','gID=19','107.213.69.182',0,'',_binary '\0','Accessed page [configuration.php]','info'),(5153,'2018-06-10 23:27:08',1,'configuration.php','gID=19','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5154,'2018-06-11 07:23:46',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5155,'2018-06-11 07:23:47',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5156,'2018-06-11 07:37:31',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5157,'2018-06-11 07:37:31',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5158,'2018-06-11 07:37:52',0,'login.php Eagle','camefrom=index.php','107.213.69.182',0,'',_binary 'VJL.\\\SRJɷHKIL5766M03H123674154K2H65M2P\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=do8fdae7335d9860d2637145596b0c55b0. Review page_parameters and postdata for details.','info'),(5159,'2018-06-11 07:37:52',0,'login.php Eagle','camefrom=index.php','107.213.69.182',1,'',_binary 'VJL.\\\SRJɷHKIL5766M03H123674154K2H65M2P\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5160,'2018-06-11 07:37:53',1,'index.php','','107.213.69.182',0,'',_binary '\0','Accessed page [index.php]','info'),(5161,'2018-06-11 07:37:53',1,'index.php','','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5162,'2018-06-11 07:38:00',1,'developers_tool_kit.php','','107.213.69.182',0,'',_binary '\0','Accessed page [developers_tool_kit.php]','info'),(5163,'2018-06-11 07:38:00',1,'developers_tool_kit.php','','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5164,'2018-06-11 07:38:20',1,'developers_tool_kit.php','action=locate_all_files','107.213.69.182',0,'',_binary 'M;\n0\"[[hkg\9\Su5Ż\\\\\\\[e+fBj缍\f!]h\MMSM\\j\\\\0 \#Z','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(5165,'2018-06-11 07:38:20',1,'developers_tool_kit.php','action=locate_all_files','107.213.69.182',1,'',_binary 'M;\n0\"[[hkg\9\Su5Ż\\\\\\\[e+fBj缍\f!]h\MMSM\\j\\\\0 \#Z','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5166,'2018-06-11 07:39:01',1,'developers_tool_kit.php','action=locate_all_files','107.213.69.182',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NTRr,((\/KMQp,\+\(Uŧe\\r%P!I%%9y`eJ\0','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(5167,'2018-06-11 07:39:02',1,'developers_tool_kit.php','action=locate_all_files','107.213.69.182',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NTRr,((\/KMQp,\+\(Uŧe\\r%P!I%%9y`eJ\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5168,'2018-06-11 07:44:49',1,'developers_tool_kit.php','action=locate_all_files','107.213.69.182',0,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR*IL\\\KU\Q*O\\I-\n\Z\"qK*RB@%% \r eJ\0','Accessed page [developers_tool_kit.php] with action=locate_all_files. Review page_parameters and postdata for details.','info'),(5169,'2018-06-11 07:44:50',1,'developers_tool_kit.php','action=locate_all_files','107.213.69.182',1,'',_binary 'VJ\\K\L/-J,\\ϋ\NTR*IL\\\KU\Q*O\\I-\n\Z\"qK*RB@%% \r eJ\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5170,'2018-06-12 09:02:02',0,'login.php ','camefrom=index.php','107.213.69.182',0,'',_binary '\0','Accessed page [login.php]','info'),(5171,'2018-06-12 09:02:02',0,'login.php ','camefrom=index.php','107.213.69.182',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5172,'2018-06-14 22:16:33',0,'login.php ','camefrom=index.php','174.227.3.218',0,'',_binary '\0','Accessed page [login.php]','info'),(5173,'2018-06-14 22:16:35',0,'login.php ','camefrom=index.php','174.227.3.218',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5174,'2018-06-17 11:04:38',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(5175,'2018-06-17 11:04:40',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5176,'2018-06-17 11:04:53',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(5177,'2018-06-17 11:04:54',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5178,'2018-06-17 13:06:27',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(5179,'2018-06-17 13:06:28',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5180,'2018-06-17 13:07:28',0,'login.php surpro','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\OH5J2471074456N40KI61KMNP\QJL\\̋\K\M\(.-*(\W\0','Accessed page [login.php] with action=dob8e2b174188709979533f906dc46ecf8. Review page_parameters and postdata for details.','info'),(5181,'2018-06-17 13:07:29',0,'login.php surpro','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\OH5J2471074456N40KI61KMNP\QJL\\̋\K\M\(.-*(\W\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5182,'2018-06-17 13:07:29',0,'login.php surpro','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\OH5J2471074456N40KI61KMNP\QJL\\̋\K\M\(.-*(\W\0','Failed admin login attempt:  surpro','warning'),(5183,'2018-06-17 13:08:10',0,'login.php Eagle','camefrom=index.php','24.72.164.167',0,'',_binary 'VJL.\\\SRJ\OH5J2471074456N40KI61KMNP\QJL\\̋\K\M\pML\IU\0','Accessed page [login.php] with action=dob8e2b174188709979533f906dc46ecf8. Review page_parameters and postdata for details.','info'),(5184,'2018-06-17 13:08:10',0,'login.php Eagle','camefrom=index.php','24.72.164.167',1,'',_binary 'VJL.\\\SRJ\OH5J2471074456N40KI61KMNP\QJL\\̋\K\M\pML\IU\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5185,'2018-06-17 13:08:10',1,'index.php','','24.72.164.167',0,'',_binary '\0','Accessed page [index.php]','info'),(5186,'2018-06-17 13:08:11',1,'index.php','','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5187,'2018-06-17 15:31:31',0,'login.php ','camefrom=index.php','174.235.135.130',0,'',_binary '\0','Accessed page [login.php]','info'),(5188,'2018-06-17 15:31:32',0,'login.php ','camefrom=index.php','174.235.135.130',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5189,'2018-06-17 16:19:33',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(5190,'2018-06-17 16:19:34',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5191,'2018-06-19 20:09:08',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(5192,'2018-06-19 20:09:09',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5193,'2018-06-19 20:13:48',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(5194,'2018-06-19 20:13:49',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5195,'2018-06-20 08:00:54',0,'login.php ','camefrom=index.php','24.72.164.167',0,'',_binary '\0','Accessed page [login.php]','info'),(5196,'2018-06-20 08:00:57',0,'login.php ','camefrom=index.php','24.72.164.167',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning'),(5197,'2018-06-20 21:04:10',0,'login.php ','camefrom=index.php','174.235.16.65',0,'',_binary '\0','Accessed page [login.php]','info'),(5198,'2018-06-20 21:04:11',0,'login.php ','camefrom=index.php','174.235.16.65',1,'',_binary '\0','Registered new admin menu page \\\"configRESPONSIVE_SHEFFIELD_BLUE\\\"','warning');
/*!40000 ALTER TABLE `admin_activity_log` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_menus`
--

DROP TABLE IF EXISTS `admin_menus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_menus` (
  `menu_key` varchar(255) NOT NULL DEFAULT '',
  `language_key` varchar(255) NOT NULL DEFAULT '',
  `sort_order` int(11) NOT NULL DEFAULT '0',
  UNIQUE KEY `menu_key` (`menu_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_menus`
--

LOCK TABLES `admin_menus` WRITE;
/*!40000 ALTER TABLE `admin_menus` DISABLE KEYS */;
INSERT INTO `admin_menus` VALUES ('configuration','BOX_HEADING_CONFIGURATION',1),('catalog','BOX_HEADING_CATALOG',2),('modules','BOX_HEADING_MODULES',3),('customers','BOX_HEADING_CUSTOMERS',4),('taxes','BOX_HEADING_LOCATION_AND_TAXES',5),('localization','BOX_HEADING_LOCALIZATION',6),('reports','BOX_HEADING_REPORTS',7),('tools','BOX_HEADING_TOOLS',8),('gv','BOX_HEADING_GV_ADMIN',9),('access','BOX_HEADING_ADMIN_ACCESS',10),('extras','BOX_HEADING_EXTRAS',11);
/*!40000 ALTER TABLE `admin_menus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_pages`
--

DROP TABLE IF EXISTS `admin_pages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_pages` (
  `page_key` varchar(255) NOT NULL DEFAULT '',
  `language_key` varchar(255) NOT NULL DEFAULT '',
  `main_page` varchar(255) NOT NULL DEFAULT '',
  `page_params` varchar(255) NOT NULL DEFAULT '',
  `menu_key` varchar(255) NOT NULL DEFAULT '',
  `display_on_menu` char(1) NOT NULL DEFAULT 'N',
  `sort_order` int(11) NOT NULL DEFAULT '0',
  UNIQUE KEY `page_key` (`page_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_pages`
--

LOCK TABLES `admin_pages` WRITE;
/*!40000 ALTER TABLE `admin_pages` DISABLE KEYS */;
INSERT INTO `admin_pages` VALUES ('configMyStore','BOX_CONFIGURATION_MY_STORE','FILENAME_CONFIGURATION','gID=1','configuration','Y',1),('configMinimumValues','BOX_CONFIGURATION_MINIMUM_VALUES','FILENAME_CONFIGURATION','gID=2','configuration','Y',2),('configMaximumValues','BOX_CONFIGURATION_MAXIMUM_VALUES','FILENAME_CONFIGURATION','gID=3','configuration','Y',3),('configImages','BOX_CONFIGURATION_IMAGES','FILENAME_CONFIGURATION','gID=4','configuration','Y',4),('configCustomerDetails','BOX_CONFIGURATION_CUSTOMER_DETAILS','FILENAME_CONFIGURATION','gID=5','configuration','Y',5),('configShipping','BOX_CONFIGURATION_SHIPPING_PACKAGING','FILENAME_CONFIGURATION','gID=7','configuration','Y',6),('configProductListing','BOX_CONFIGURATION_PRODUCT_LISTING','FILENAME_CONFIGURATION','gID=8','configuration','Y',7),('configStock','BOX_CONFIGURATION_STOCK','FILENAME_CONFIGURATION','gID=9','configuration','Y',8),('configLogging','BOX_CONFIGURATION_LOGGING','FILENAME_CONFIGURATION','gID=10','configuration','Y',9),('configEmail','BOX_CONFIGURATION_EMAIL_OPTIONS','FILENAME_CONFIGURATION','gID=12','configuration','Y',10),('configAttributes','BOX_CONFIGURATION_ATTRIBUTE_OPTIONS','FILENAME_CONFIGURATION','gID=13','configuration','Y',11),('configGzipCompression','BOX_CONFIGURATION_GZIP_COMPRESSION','FILENAME_CONFIGURATION','gID=14','configuration','Y',12),('configSessions','BOX_CONFIGURATION_SESSIONS','FILENAME_CONFIGURATION','gID=15','configuration','Y',13),('configRegulations','BOX_CONFIGURATION_REGULATIONS','FILENAME_CONFIGURATION','gID=11','configuration','Y',14),('configGvCoupons','BOX_CONFIGURATION_GV_COUPONS','FILENAME_CONFIGURATION','gID=16','configuration','Y',15),('configCreditCards','BOX_CONFIGURATION_CREDIT_CARDS','FILENAME_CONFIGURATION','gID=17','configuration','Y',16),('configProductInfo','BOX_CONFIGURATION_PRODUCT_INFO','FILENAME_CONFIGURATION','gID=18','configuration','Y',17),('configLayoutSettings','BOX_CONFIGURATION_LAYOUT_SETTINGS','FILENAME_CONFIGURATION','gID=19','configuration','Y',18),('configWebsiteMaintenance','BOX_CONFIGURATION_WEBSITE_MAINTENANCE','FILENAME_CONFIGURATION','gID=20','configuration','Y',19),('configNewListing','BOX_CONFIGURATION_NEW_LISTING','FILENAME_CONFIGURATION','gID=21','configuration','Y',20),('configFeaturedListing','BOX_CONFIGURATION_FEATURED_LISTING','FILENAME_CONFIGURATION','gID=22','configuration','Y',21),('configAllListing','BOX_CONFIGURATION_ALL_LISTING','FILENAME_CONFIGURATION','gID=23','configuration','Y',22),('configIndexListing','BOX_CONFIGURATION_INDEX_LISTING','FILENAME_CONFIGURATION','gID=24','configuration','Y',23),('configDefinePageStatus','BOX_CONFIGURATION_DEFINE_PAGE_STATUS','FILENAME_CONFIGURATION','gID=25','configuration','Y',24),('configEzPagesSettings','BOX_CONFIGURATION_EZPAGES_SETTINGS','FILENAME_CONFIGURATION','gID=30','configuration','Y',25),('categories','BOX_CATALOG_CATEGORIES_PRODUCTS','FILENAME_CATEGORIES','','catalog','Y',1),('productTypes','BOX_CATALOG_PRODUCT_TYPES','FILENAME_PRODUCT_TYPES','','catalog','Y',2),('priceManager','BOX_CATALOG_PRODUCTS_PRICE_MANAGER','FILENAME_PRODUCTS_PRICE_MANAGER','','catalog','Y',3),('optionNames','BOX_CATALOG_CATEGORIES_OPTIONS_NAME_MANAGER','FILENAME_OPTIONS_NAME_MANAGER','','catalog','Y',4),('optionValues','BOX_CATALOG_CATEGORIES_OPTIONS_VALUES_MANAGER','FILENAME_OPTIONS_VALUES_MANAGER','','catalog','Y',5),('attributes','BOX_CATALOG_CATEGORIES_ATTRIBUTES_CONTROLLER','FILENAME_ATTRIBUTES_CONTROLLER','','catalog','Y',6),('downloads','BOX_CATALOG_CATEGORIES_ATTRIBUTES_DOWNLOADS_MANAGER','FILENAME_DOWNLOADS_MANAGER','','catalog','Y',7),('optionNameSorter','BOX_CATALOG_PRODUCT_OPTIONS_NAME','FILENAME_PRODUCTS_OPTIONS_NAME','','catalog','Y',8),('optionValueSorter','BOX_CATALOG_PRODUCT_OPTIONS_VALUES','FILENAME_PRODUCTS_OPTIONS_VALUES','','catalog','Y',9),('manufacturers','BOX_CATALOG_MANUFACTURERS','FILENAME_MANUFACTURERS','','catalog','Y',10),('reviews','BOX_CATALOG_REVIEWS','FILENAME_REVIEWS','','catalog','Y',11),('specials','BOX_CATALOG_SPECIALS','FILENAME_SPECIALS','','catalog','Y',12),('featured','BOX_CATALOG_FEATURED','FILENAME_FEATURED','','catalog','Y',13),('salemaker','BOX_CATALOG_SALEMAKER','FILENAME_SALEMAKER','','catalog','Y',14),('productsExpected','BOX_CATALOG_PRODUCTS_EXPECTED','FILENAME_PRODUCTS_EXPECTED','','catalog','Y',15),('product','BOX_CATALOG_PRODUCT','FILENAME_PRODUCT','','catalog','N',16),('productsToCategories','BOX_CATALOG_PRODUCTS_TO_CATEGORIES','FILENAME_PRODUCTS_TO_CATEGORIES','','catalog','N',17),('payment','BOX_MODULES_PAYMENT','FILENAME_MODULES','set=payment','modules','Y',1),('shipping','BOX_MODULES_SHIPPING','FILENAME_MODULES','set=shipping','modules','Y',2),('orderTotal','BOX_MODULES_ORDER_TOTAL','FILENAME_MODULES','set=ordertotal','modules','Y',3),('customers','BOX_CUSTOMERS_CUSTOMERS','FILENAME_CUSTOMERS','','customers','Y',1),('orders','BOX_CUSTOMERS_ORDERS','FILENAME_ORDERS','','customers','Y',2),('groupPricing','BOX_CUSTOMERS_GROUP_PRICING','FILENAME_GROUP_PRICING','','customers','Y',3),('paypal','BOX_CUSTOMERS_PAYPAL','FILENAME_PAYPAL','','customers','Y',4),('invoice','BOX_CUSTOMERS_INVOICE','FILENAME_ORDERS_INVOICE','','customers','N',5),('packingslip','BOX_CUSTOMERS_PACKING_SLIP','FILENAME_ORDERS_PACKINGSLIP','','customers','N',6),('countries','BOX_TAXES_COUNTRIES','FILENAME_COUNTRIES','','taxes','Y',1),('zones','BOX_TAXES_ZONES','FILENAME_ZONES','','taxes','Y',2),('geoZones','BOX_TAXES_GEO_ZONES','FILENAME_GEO_ZONES','','taxes','Y',3),('taxClasses','BOX_TAXES_TAX_CLASSES','FILENAME_TAX_CLASSES','','taxes','Y',4),('taxRates','BOX_TAXES_TAX_RATES','FILENAME_TAX_RATES','','taxes','Y',5),('currencies','BOX_LOCALIZATION_CURRENCIES','FILENAME_CURRENCIES','','localization','Y',1),('languages','BOX_LOCALIZATION_LANGUAGES','FILENAME_LANGUAGES','','localization','Y',2),('ordersStatus','BOX_LOCALIZATION_ORDERS_STATUS','FILENAME_ORDERS_STATUS','','localization','Y',3),('reportCustomers','BOX_REPORTS_ORDERS_TOTAL','FILENAME_STATS_CUSTOMERS','','reports','Y',1),('reportReferrals','BOX_REPORTS_CUSTOMERS_REFERRALS','FILENAME_STATS_CUSTOMERS_REFERRALS','','reports','Y',2),('reportLowStock','BOX_REPORTS_PRODUCTS_LOWSTOCK','FILENAME_STATS_PRODUCTS_LOWSTOCK','','reports','Y',3),('reportProductsSold','BOX_REPORTS_PRODUCTS_PURCHASED','FILENAME_STATS_PRODUCTS_PURCHASED','','reports','Y',4),('reportProductsViewed','BOX_REPORTS_PRODUCTS_VIEWED','FILENAME_STATS_PRODUCTS_VIEWED','','reports','Y',5),('templateSelect','BOX_TOOLS_TEMPLATE_SELECT','FILENAME_TEMPLATE_SELECT','','tools','Y',1),('layoutController','BOX_TOOLS_LAYOUT_CONTROLLER','FILENAME_LAYOUT_CONTROLLER','','tools','Y',2),('banners','BOX_TOOLS_BANNER_MANAGER','FILENAME_BANNER_MANAGER','','tools','Y',3),('mail','BOX_TOOLS_MAIL','FILENAME_MAIL','','tools','Y',4),('newsletters','BOX_TOOLS_NEWSLETTER_MANAGER','FILENAME_NEWSLETTERS','','tools','Y',5),('server','BOX_TOOLS_SERVER_INFO','FILENAME_SERVER_INFO','','tools','Y',6),('whosOnline','BOX_TOOLS_WHOS_ONLINE','FILENAME_WHOS_ONLINE','','tools','Y',7),('storeManager','BOX_TOOLS_STORE_MANAGER','FILENAME_STORE_MANAGER','','tools','Y',9),('developersToolKit','BOX_TOOLS_DEVELOPERS_TOOL_KIT','FILENAME_DEVELOPERS_TOOL_KIT','','tools','Y',10),('ezpages','BOX_TOOLS_EZPAGES','FILENAME_EZPAGES_ADMIN','','tools','Y',11),('definePagesEditor','BOX_TOOLS_DEFINE_PAGES_EDITOR','FILENAME_DEFINE_PAGES_EDITOR','','tools','Y',12),('sqlPatch','BOX_TOOLS_SQLPATCH','FILENAME_SQLPATCH','','tools','Y',13),('couponAdmin','BOX_COUPON_ADMIN','FILENAME_COUPON_ADMIN','','gv','Y',1),('couponRestrict','BOX_COUPON_RESTRICT','FILENAME_COUPON_RESTRICT','','gv','N',1),('gvQueue','BOX_GV_ADMIN_QUEUE','FILENAME_GV_QUEUE','','gv','Y',2),('gvMail','BOX_GV_ADMIN_MAIL','FILENAME_GV_MAIL','','gv','Y',3),('gvSent','BOX_GV_ADMIN_SENT','FILENAME_GV_SENT','','gv','Y',4),('profiles','BOX_ADMIN_ACCESS_PROFILES','FILENAME_PROFILES','','access','Y',1),('users','BOX_ADMIN_ACCESS_USERS','FILENAME_USERS','','access','Y',2),('pageRegistration','BOX_ADMIN_ACCESS_PAGE_REGISTRATION','FILENAME_ADMIN_PAGE_REGISTRATION','','access','Y',3),('adminlogs','BOX_ADMIN_ACCESS_LOGS','FILENAME_ADMIN_ACTIVITY','','access','Y',4),('recordArtists','BOX_CATALOG_RECORD_ARTISTS','FILENAME_RECORD_ARTISTS','','extras','Y',1),('recordCompanies','BOX_CATALOG_RECORD_COMPANY','FILENAME_RECORD_COMPANY','','extras','Y',2),('musicGenre','BOX_CATALOG_MUSIC_GENRE','FILENAME_MUSIC_GENRE','','extras','Y',3),('mediaManager','BOX_CATALOG_MEDIA_MANAGER','FILENAME_MEDIA_MANAGER','','extras','Y',4),('mediaTypes','BOX_CATALOG_MEDIA_TYPES','FILENAME_MEDIA_TYPES','','extras','Y',5),('flexibleFooterMenu','BOX_TOOLS_FLEXIBLE_FOOTER_MENU','FILENAME_FLEXIBLE_FOOTER_MENU','','tools','Y',26),('configZenColorbox','BOX_CONFIGURATION_ZEN_COLORBOX','FILENAME_CONFIGURATION','gID=32','configuration','Y',32),('configRESPONSIVE_SHEFFIELD_BLUE','BOX_RESPONSIVE_SHEFFIELD_BLUE','FILENAME_CONFIGURATION','gID=31','configuration','Y',31);
/*!40000 ALTER TABLE `admin_pages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_pages_to_profiles`
--

DROP TABLE IF EXISTS `admin_pages_to_profiles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_pages_to_profiles` (
  `profile_id` int(11) NOT NULL DEFAULT '0',
  `page_key` varchar(255) NOT NULL DEFAULT '',
  UNIQUE KEY `profile_page` (`profile_id`,`page_key`),
  UNIQUE KEY `page_profile` (`page_key`,`profile_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_pages_to_profiles`
--

LOCK TABLES `admin_pages_to_profiles` WRITE;
/*!40000 ALTER TABLE `admin_pages_to_profiles` DISABLE KEYS */;
INSERT INTO `admin_pages_to_profiles` VALUES (2,'currencies'),(2,'customers'),(2,'gvMail'),(2,'gvQueue'),(2,'gvSent'),(2,'invoice'),(2,'orders'),(2,'packingslip'),(2,'paypal'),(2,'reportCustomers'),(2,'reportLowStock'),(2,'reportProductsSold'),(2,'reportProductsViewed'),(2,'reportReferrals'),(2,'whosOnline');
/*!40000 ALTER TABLE `admin_pages_to_profiles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `admin_profiles`
--

DROP TABLE IF EXISTS `admin_profiles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_profiles` (
  `profile_id` int(11) NOT NULL AUTO_INCREMENT,
  `profile_name` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`profile_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `admin_profiles`
--

LOCK TABLES `admin_profiles` WRITE;
/*!40000 ALTER TABLE `admin_profiles` DISABLE KEYS */;
INSERT INTO `admin_profiles` VALUES (1,'Superuser'),(2,'Order Processing');
/*!40000 ALTER TABLE `admin_profiles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `authorizenet`
--

DROP TABLE IF EXISTS `authorizenet`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `authorizenet` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `customer_id` int(11) NOT NULL DEFAULT '0',
  `order_id` int(11) NOT NULL DEFAULT '0',
  `response_code` int(1) NOT NULL DEFAULT '0',
  `response_text` varchar(255) NOT NULL DEFAULT '',
  `authorization_type` varchar(50) NOT NULL DEFAULT '',
  `transaction_id` varchar(64) DEFAULT NULL,
  `sent` longtext NOT NULL,
  `received` longtext NOT NULL,
  `time` varchar(50) NOT NULL DEFAULT '',
  `session_id` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `authorizenet`
--

LOCK TABLES `authorizenet` WRITE;
/*!40000 ALTER TABLE `authorizenet` DISABLE KEYS */;
/*!40000 ALTER TABLE `authorizenet` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `banners`
--

DROP TABLE IF EXISTS `banners`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `banners` (
  `banners_id` int(11) NOT NULL AUTO_INCREMENT,
  `banners_title` varchar(64) NOT NULL DEFAULT '',
  `banners_url` varchar(255) NOT NULL DEFAULT '',
  `banners_image` varchar(64) NOT NULL DEFAULT '',
  `banners_group` varchar(15) NOT NULL DEFAULT '',
  `banners_html_text` text,
  `expires_impressions` int(7) DEFAULT '0',
  `expires_date` datetime DEFAULT NULL,
  `date_scheduled` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_status_change` datetime DEFAULT NULL,
  `status` int(1) NOT NULL DEFAULT '1',
  `banners_open_new_windows` int(1) NOT NULL DEFAULT '1',
  `banners_on_ssl` int(1) NOT NULL DEFAULT '1',
  `banners_sort_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`banners_id`),
  KEY `idx_status_group_zen` (`status`,`banners_group`),
  KEY `idx_expires_date_zen` (`expires_date`),
  KEY `idx_date_scheduled_zen` (`date_scheduled`)
) ENGINE=MyISAM AUTO_INCREMENT=17 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `banners`
--

LOCK TABLES `banners` WRITE;
/*!40000 ALTER TABLE `banners` DISABLE KEYS */;
INSERT INTO `banners` VALUES (1,'Zen Cart','http://www.zen-cart.com','banners/zencart_468_60_02.gif','Wide-Banners','',0,NULL,NULL,'2004-01-11 20:59:12','2018-05-26 22:25:36',0,1,1,0),(2,'Zen Cart the art of e-commerce','http://www.zen-cart.com','banners/125zen_logo.gif','SideBox-Banners','',0,NULL,NULL,'2004-01-11 20:59:12','2018-04-22 10:29:07',0,1,1,0),(3,'Zen Cart the art of e-commerce','http://www.zen-cart.com','banners/125x125_zen_logo.gif','SideBox-Banners','',0,NULL,NULL,'2004-01-11 20:59:12','2018-04-22 10:29:00',0,1,1,0),(4,'if you have to think ... you haven\'t been Zenned!','http://www.zen-cart.com','banners/think_anim.gif','Wide-Banners','',0,NULL,NULL,'2004-01-12 20:53:18','2018-05-26 22:25:16',0,1,1,0),(5,'Zen Cart the art of e-commerce','http://www.zen-cart.com','banners/bw_zen_88wide.gif','BannersAll','',0,NULL,NULL,'2005-05-13 10:54:38','2018-05-26 22:25:40',0,1,1,10),(6,'Zen Cart','http://www.zen-cart.com','','Wide-Banners','<script><!--//<![CDATA[\r\n   var loc = \'//pan.zen-cart.com/display/group/1/\';\r\n   var rd = Math.floor(Math.random()*99999999999);\r\n   document.write (\"<scr\"+\"ipt src=\'\"+loc);\r\n   document.write (\'?rd=\' + rd);\r\n   document.write (\"\'></scr\"+\"ipt>\");\r\n//]]>--></script>',0,NULL,NULL,'2004-01-11 20:59:12','2018-05-26 22:25:21',0,1,1,0),(7,'eStart Your Web Store with Zen Cart(R)','http://www.zen-cart.com/book','banners/big-book-ad.gif','Wide-Banners','',0,NULL,NULL,'2007-02-10 00:00:00','2018-05-26 22:24:57',0,1,1,1),(8,'eStart Your Web Store with Zen Cart(R)','http://www.zen-cart.com/book','banners/tall-book.gif','SideBox-Banners','',NULL,NULL,NULL,'2007-02-10 00:00:00','2018-05-26 22:24:39',0,1,1,1),(9,'eStart Your Web Store with Zen Cart(R)','http://www.zen-cart.com/book','banners/tall-book.gif','BannersAll','',0,NULL,NULL,'2007-02-10 00:00:00','2018-05-26 22:24:34',0,1,1,15),(10,'Modern Responsive Design','http://www.aaaliferafts.com','TEST2.png','homepageslide','',NULL,NULL,NULL,'0001-01-01 00:00:00','2018-05-26 22:24:50',0,0,1,3),(11,'Rafts','http://www.aaasurvivalproducts.com','banners/aaa_banner_vest.gif','homepageslide','',NULL,NULL,NULL,'0001-01-01 00:00:00','2018-05-26 22:25:05',0,1,1,4),(12,'Packed with Features','http://www.picaflor-azul.com','banners/slide5op.jpg','homepageslide',NULL,0,NULL,NULL,'0001-01-01 00:00:00','2018-05-26 22:43:19',0,1,0,5),(13,'Extensive Documentation','http://www.aaaliferafts.com','TEST_Picture1.png','homepageslide','',NULL,NULL,NULL,'0001-01-01 00:00:00','2018-05-26 22:43:16',0,0,1,2),(14,'Manage Slide show via the Admin','http://www.aaaliferafts.com','TEST_Picture1.png','Wide-Banners','',NULL,NULL,NULL,'0001-01-01 00:00:00','2018-05-26 22:25:09',0,0,1,1),(15,'TEST','http://www.aaaliferafts.com','TEST_Picture1.png','Surpro','',NULL,NULL,NULL,'2018-05-26 15:49:08','2018-05-26 22:25:44',1,1,1,10),(16,'Test2','http://www.aaaliferafts.com','Test2.png','Surpro','',NULL,NULL,NULL,'2018-05-26 22:18:50','2018-05-26 22:25:48',1,1,1,0);
/*!40000 ALTER TABLE `banners` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `banners_history`
--

DROP TABLE IF EXISTS `banners_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `banners_history` (
  `banners_history_id` int(11) NOT NULL AUTO_INCREMENT,
  `banners_id` int(11) NOT NULL DEFAULT '0',
  `banners_shown` int(5) NOT NULL DEFAULT '0',
  `banners_clicked` int(5) NOT NULL DEFAULT '0',
  `banners_history_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`banners_history_id`),
  KEY `idx_banners_id_zen` (`banners_id`)
) ENGINE=MyISAM AUTO_INCREMENT=250 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `banners_history`
--

LOCK TABLES `banners_history` WRITE;
/*!40000 ALTER TABLE `banners_history` DISABLE KEYS */;
INSERT INTO `banners_history` VALUES (1,8,5,0,'2018-04-19 20:36:05'),(2,5,5,0,'2018-04-19 20:36:05'),(3,9,5,0,'2018-04-19 20:36:05'),(4,8,5,0,'2018-04-19 20:36:05'),(5,7,1,0,'2018-04-19 20:36:05'),(6,2,3,0,'2018-04-19 20:36:16'),(7,2,3,0,'2018-04-19 20:36:16'),(8,4,3,0,'2018-04-19 20:36:16'),(9,1,1,0,'2018-04-19 20:45:48'),(10,2,27,0,'2018-04-20 13:18:53'),(11,5,31,0,'2018-04-20 13:18:53'),(12,9,31,0,'2018-04-20 13:18:53'),(13,2,27,0,'2018-04-20 13:18:53'),(14,4,11,0,'2018-04-20 13:18:53'),(15,14,32,0,'2018-04-20 13:57:01'),(16,13,32,2,'2018-04-20 13:57:01'),(17,10,32,0,'2018-04-20 13:57:01'),(18,11,32,0,'2018-04-20 13:57:01'),(19,12,32,0,'2018-04-20 13:57:01'),(20,1,13,0,'2018-04-20 13:57:01'),(21,7,4,0,'2018-04-20 13:57:23'),(22,3,15,0,'2018-04-20 13:59:19'),(23,3,15,0,'2018-04-20 13:59:19'),(24,8,17,0,'2018-04-20 15:54:47'),(25,8,17,0,'2018-04-20 15:54:47'),(26,6,5,0,'2018-04-20 16:51:06'),(27,14,2,0,'2018-04-21 02:04:39'),(28,13,2,0,'2018-04-21 02:04:39'),(29,10,2,0,'2018-04-21 02:04:39'),(30,11,2,0,'2018-04-21 02:04:39'),(31,12,2,0,'2018-04-21 02:04:39'),(32,2,1,0,'2018-04-21 02:04:39'),(33,5,2,0,'2018-04-21 02:04:39'),(34,9,2,0,'2018-04-21 02:04:39'),(35,2,1,0,'2018-04-21 02:04:39'),(36,7,1,0,'2018-04-21 02:04:40'),(37,8,1,0,'2018-04-21 02:29:04'),(38,8,1,0,'2018-04-21 02:29:05'),(39,4,1,0,'2018-04-21 02:29:05'),(40,14,15,0,'2018-04-22 09:03:03'),(41,13,15,0,'2018-04-22 09:03:03'),(42,10,15,0,'2018-04-22 09:03:03'),(43,11,15,0,'2018-04-22 09:03:03'),(44,12,15,0,'2018-04-22 09:03:03'),(45,2,1,0,'2018-04-22 09:03:03'),(46,5,20,0,'2018-04-22 09:03:03'),(47,9,20,0,'2018-04-22 09:03:03'),(48,2,1,0,'2018-04-22 09:03:03'),(49,4,3,0,'2018-04-22 09:03:03'),(50,8,23,0,'2018-04-22 09:44:00'),(51,8,23,0,'2018-04-22 09:44:00'),(52,6,6,0,'2018-04-22 09:44:00'),(53,3,1,0,'2018-04-22 09:44:18'),(54,3,1,0,'2018-04-22 09:44:18'),(55,1,9,0,'2018-04-22 09:44:18'),(56,7,2,0,'2018-04-22 10:54:00'),(57,8,1,0,'2018-04-24 20:40:29'),(58,5,1,0,'2018-04-24 20:40:29'),(59,9,1,0,'2018-04-24 20:40:29'),(60,8,1,0,'2018-04-24 20:40:29'),(61,6,1,0,'2018-04-24 20:40:29'),(62,8,5,0,'2018-04-29 21:55:19'),(63,5,3,0,'2018-04-29 21:55:19'),(64,9,3,0,'2018-04-29 21:55:19'),(65,8,5,0,'2018-04-29 21:55:19'),(66,4,1,0,'2018-04-29 21:55:19'),(67,1,1,0,'2018-04-29 21:55:25'),(68,6,1,0,'2018-04-29 21:55:33'),(69,8,9,0,'2018-05-10 18:51:29'),(70,5,5,0,'2018-05-10 18:51:29'),(71,9,5,0,'2018-05-10 18:51:29'),(72,8,9,0,'2018-05-10 18:51:29'),(73,6,3,0,'2018-05-10 18:51:29'),(74,7,2,0,'2018-05-10 19:03:20'),(75,8,19,0,'2018-05-12 15:08:26'),(76,5,8,0,'2018-05-12 15:08:26'),(77,9,8,0,'2018-05-12 15:08:26'),(78,8,19,0,'2018-05-12 15:08:26'),(79,1,3,0,'2018-05-12 15:08:26'),(80,14,4,0,'2018-05-12 15:10:11'),(81,13,4,0,'2018-05-12 15:10:11'),(82,10,4,0,'2018-05-12 15:10:11'),(83,11,4,0,'2018-05-12 15:10:11'),(84,12,4,0,'2018-05-12 15:10:11'),(85,6,1,0,'2018-05-12 15:31:38'),(86,4,2,0,'2018-05-12 15:33:20'),(87,7,2,0,'2018-05-12 15:34:35'),(88,14,14,0,'2018-05-13 11:48:45'),(89,13,11,0,'2018-05-13 11:48:45'),(90,10,17,1,'2018-05-13 11:48:45'),(91,11,13,0,'2018-05-13 11:48:45'),(92,12,19,0,'2018-05-13 11:48:45'),(93,8,90,0,'2018-05-13 11:48:45'),(94,5,4,0,'2018-05-13 11:54:53'),(95,9,4,0,'2018-05-13 11:54:53'),(96,6,19,0,'2018-05-13 11:54:53'),(97,7,21,0,'2018-05-13 12:12:08'),(98,1,18,0,'2018-05-13 13:10:06'),(99,4,24,0,'2018-05-13 13:10:13'),(100,8,56,0,'2018-05-14 17:13:51'),(101,12,17,0,'2018-05-14 17:13:51'),(102,4,12,0,'2018-05-14 17:13:52'),(103,14,20,0,'2018-05-14 17:24:10'),(104,7,18,0,'2018-05-14 17:24:10'),(105,11,13,0,'2018-05-14 17:28:34'),(106,10,16,0,'2018-05-14 17:34:14'),(107,6,12,0,'2018-05-14 18:22:01'),(108,13,14,0,'2018-05-14 18:22:27'),(109,5,1,0,'2018-05-14 21:03:21'),(110,9,1,0,'2018-05-14 21:03:21'),(111,1,7,0,'2018-05-14 21:15:53'),(112,8,45,0,'2018-05-15 08:03:39'),(113,11,14,0,'2018-05-15 08:03:40'),(114,1,9,0,'2018-05-15 08:03:40'),(115,14,10,0,'2018-05-15 08:04:34'),(116,6,7,0,'2018-05-15 08:09:19'),(117,4,9,0,'2018-05-15 09:13:12'),(118,10,14,0,'2018-05-15 09:13:18'),(119,7,14,0,'2018-05-15 09:13:19'),(120,12,11,0,'2018-05-15 09:20:00'),(121,13,14,0,'2018-05-15 10:48:34'),(122,5,2,0,'2018-05-15 22:54:22'),(123,9,2,0,'2018-05-15 22:54:22'),(124,8,128,0,'2018-05-16 10:49:54'),(125,10,28,0,'2018-05-16 10:49:54'),(126,4,32,0,'2018-05-16 10:49:54'),(127,14,18,0,'2018-05-16 10:50:50'),(128,1,30,0,'2018-05-16 10:50:50'),(129,6,38,0,'2018-05-16 10:55:27'),(130,12,20,0,'2018-05-16 11:04:58'),(131,7,28,0,'2018-05-16 11:04:58'),(132,13,11,0,'2018-05-16 11:05:03'),(133,11,18,0,'2018-05-16 11:13:58'),(134,8,26,0,'2018-05-17 13:24:10'),(135,6,8,0,'2018-05-17 13:24:10'),(136,4,9,0,'2018-05-17 13:27:11'),(137,7,2,0,'2018-05-17 13:30:37'),(138,1,7,0,'2018-05-17 16:52:44'),(139,8,28,0,'2018-05-19 16:32:56'),(140,4,5,0,'2018-05-19 16:32:56'),(141,7,5,0,'2018-05-19 18:31:29'),(142,14,6,0,'2018-05-19 19:28:34'),(143,13,5,0,'2018-05-19 19:28:34'),(144,10,6,0,'2018-05-19 19:28:34'),(145,11,4,0,'2018-05-19 19:28:34'),(146,12,5,0,'2018-05-19 19:28:34'),(147,6,10,0,'2018-05-19 20:12:06'),(148,1,6,0,'2018-05-19 20:54:27'),(149,8,125,0,'2018-05-20 13:01:37'),(150,12,23,0,'2018-05-20 13:01:37'),(151,7,23,0,'2018-05-20 13:01:37'),(152,14,15,0,'2018-05-20 13:34:30'),(153,13,24,0,'2018-05-20 13:41:05'),(154,1,22,0,'2018-05-20 13:41:06'),(155,11,26,0,'2018-05-20 13:41:20'),(156,10,13,0,'2018-05-20 13:41:36'),(157,4,33,0,'2018-05-20 13:41:41'),(158,6,23,0,'2018-05-20 14:11:37'),(159,8,45,0,'2018-05-21 06:25:36'),(160,13,6,0,'2018-05-21 06:25:36'),(161,4,3,0,'2018-05-21 06:25:37'),(162,10,3,0,'2018-05-21 06:27:11'),(163,1,5,0,'2018-05-21 06:27:11'),(164,6,1,0,'2018-05-21 06:28:14'),(165,12,5,0,'2018-05-21 06:36:17'),(166,14,3,0,'2018-05-21 06:38:25'),(167,11,4,0,'2018-05-21 07:50:32'),(168,14,39,0,'2018-05-22 17:11:52'),(169,13,35,0,'2018-05-22 17:11:52'),(170,10,31,0,'2018-05-22 17:11:52'),(171,11,32,0,'2018-05-22 17:11:52'),(172,12,30,0,'2018-05-22 17:11:52'),(173,8,38,0,'2018-05-22 17:11:52'),(174,13,35,0,'2018-05-22 17:11:52'),(175,5,1,0,'2018-05-22 21:53:24'),(176,9,1,0,'2018-05-22 21:53:24'),(177,1,1,0,'2018-05-22 21:53:24'),(178,4,2,0,'2018-05-22 21:56:05'),(179,6,1,0,'2018-05-22 23:42:51'),(180,14,30,1,'2018-05-23 07:26:44'),(181,8,85,0,'2018-05-23 07:26:44'),(182,6,15,0,'2018-05-23 07:26:45'),(183,13,35,0,'2018-05-23 10:33:27'),(184,10,33,0,'2018-05-23 10:33:27'),(185,11,1,0,'2018-05-23 10:33:27'),(186,12,1,0,'2018-05-23 10:33:27'),(187,1,16,0,'2018-05-23 10:46:23'),(188,7,14,0,'2018-05-23 12:43:54'),(189,4,12,0,'2018-05-23 14:33:41'),(190,14,53,1,'2018-05-24 06:12:34'),(191,8,140,0,'2018-05-24 06:12:35'),(192,6,34,0,'2018-05-24 06:12:35'),(193,13,43,0,'2018-05-24 06:18:51'),(194,1,40,0,'2018-05-24 06:18:52'),(195,10,47,0,'2018-05-24 06:19:35'),(196,7,34,0,'2018-05-24 06:19:35'),(197,4,32,0,'2018-05-24 06:19:52'),(198,13,61,0,'2018-05-25 07:57:51'),(199,8,165,0,'2018-05-25 07:57:51'),(200,6,38,0,'2018-05-25 07:57:51'),(201,10,61,0,'2018-05-25 09:05:35'),(202,1,35,0,'2018-05-25 09:05:35'),(203,4,41,0,'2018-05-25 09:31:36'),(204,14,43,0,'2018-05-25 09:53:03'),(205,7,40,0,'2018-05-25 09:53:49'),(206,13,5,0,'2018-05-26 08:04:45'),(207,8,153,0,'2018-05-26 08:04:46'),(208,4,60,1,'2018-05-26 08:04:46'),(209,14,54,0,'2018-05-26 08:04:56'),(210,6,60,0,'2018-05-26 08:05:20'),(211,10,3,0,'2018-05-26 09:10:14'),(212,7,55,0,'2018-05-26 09:10:15'),(213,1,56,0,'2018-05-26 09:30:32'),(214,1,56,0,'2018-05-26 09:30:32'),(215,16,16,0,'2018-05-26 22:19:23'),(216,15,11,0,'2018-05-26 22:20:37'),(217,15,11,0,'2018-05-26 22:20:37'),(218,12,3,0,'2018-05-26 22:43:00'),(219,16,45,0,'2018-05-27 07:55:47'),(220,15,38,0,'2018-05-27 17:44:36'),(221,15,6,0,'2018-05-28 00:35:21'),(222,16,5,0,'2018-05-28 00:47:51'),(223,16,1,0,'2018-05-30 10:23:36'),(224,15,1,0,'2018-05-30 10:24:14'),(225,15,2,0,'2018-05-31 18:50:14'),(226,16,1,0,'2018-06-01 21:56:18'),(227,15,1,0,'2018-06-02 07:35:35'),(228,16,1,0,'2018-06-02 22:43:46'),(229,16,3,0,'2018-06-03 11:37:53'),(230,15,1,0,'2018-06-03 16:31:05'),(231,15,1,0,'2018-06-04 03:08:04'),(232,16,1,0,'2018-06-04 07:25:14'),(233,15,3,0,'2018-06-05 00:46:36'),(234,16,1,0,'2018-06-06 17:34:27'),(235,15,2,0,'2018-06-07 06:12:46'),(236,16,1,0,'2018-06-08 07:18:25'),(237,15,2,0,'2018-06-08 18:22:50'),(238,16,2,0,'2018-06-09 09:43:15'),(239,16,3,0,'2018-06-10 06:10:31'),(240,15,4,0,'2018-06-10 07:40:38'),(241,15,1,0,'2018-06-11 07:19:55'),(242,16,2,0,'2018-06-11 10:00:33'),(243,16,2,0,'2018-06-12 08:41:53'),(244,16,2,0,'2018-06-14 10:31:46'),(245,16,1,0,'2018-06-15 20:08:21'),(246,15,1,0,'2018-06-18 21:43:59'),(247,16,1,0,'2018-06-18 21:44:50'),(248,15,1,0,'2018-06-19 20:08:41'),(249,15,3,0,'2018-06-20 08:21:07');
/*!40000 ALTER TABLE `banners_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `categories`
--

DROP TABLE IF EXISTS `categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `categories` (
  `categories_id` int(11) NOT NULL AUTO_INCREMENT,
  `categories_image` varchar(64) DEFAULT NULL,
  `parent_id` int(11) NOT NULL DEFAULT '0',
  `sort_order` int(3) DEFAULT NULL,
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `categories_status` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`categories_id`),
  KEY `idx_parent_id_cat_id_zen` (`parent_id`,`categories_id`),
  KEY `idx_status_zen` (`categories_status`),
  KEY `idx_sort_order_zen` (`sort_order`)
) ENGINE=MyISAM AUTO_INCREMENT=31 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `categories`
--

LOCK TABLES `categories` WRITE;
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
INSERT INTO `categories` VALUES (2,'',0,3,'2010-01-13 17:41:30','2018-05-21 07:41:02',1),(3,'categories/transmitters.png',0,1,'2010-01-13 17:42:33','2018-05-28 12:43:48',1),(19,'categories/fourman_01_MED.gif',5,0,'2011-04-07 11:20:16','2011-04-10 10:38:30',1),(4,'firstaid1_01_MED.gif',0,7,'2010-01-13 17:43:14','2010-11-05 20:48:58',0),(5,'categories/rafts.png',0,1,'2010-01-14 07:35:29','2018-05-27 21:29:28',1),(21,'categories/fourman_01.gif',18,0,'2011-04-07 11:30:28','2011-04-15 12:11:28',1),(20,'categories/nineman_01_MED.gif',5,3,'2011-04-07 11:20:55','2011-04-10 10:39:10',1),(11,'',0,5,'2010-01-25 13:59:24','2010-11-05 20:48:29',1),(12,'',0,2,'2010-01-27 18:57:41','2011-04-30 08:04:27',1),(13,'',0,8,'2010-01-27 20:30:07','2010-11-05 20:56:53',0),(14,'',0,4,'2010-01-28 18:52:47','2010-11-05 19:12:35',0),(15,'',0,6,'2010-02-04 19:19:25','2010-11-05 20:48:43',0),(16,'',0,9,'2010-06-12 08:14:24','2010-11-05 20:49:12',1),(18,'categories/rafts.gif',0,1,'2011-04-06 17:53:44','2018-05-27 21:36:11',1),(22,'categories/doubletube2_01.jpg',18,1,'2011-04-07 11:31:07','2011-04-15 12:10:31',1),(23,'categories/singletube_01.jpg',18,2,'2011-04-07 11:31:46','2011-04-15 12:11:44',1),(24,'categories/dbletube_01.jpg',18,3,'2011-04-07 11:32:17','2011-04-15 12:09:48',1),(25,'categories/doubletube2_01.jpg',18,4,'2011-04-07 11:33:52','2011-04-15 12:20:46',1),(26,'categories/doubletube2_01.gif',5,1,'2011-04-08 23:28:15','2011-04-10 10:38:42',1),(27,'categories/singletube_01.jpg',5,2,'2011-04-08 23:29:46','2011-04-10 10:38:55',1),(28,'categories/doubletube2_01.jpg',5,4,'2011-04-08 23:30:05','2011-04-09 09:44:08',1),(29,'categories/doubletube2_01.jpg',5,5,'2011-04-08 23:30:33','2011-04-09 09:45:29',1),(30,'categories/7324-A-HR1_black.jpg',0,10,'2016-11-22 13:18:53','2016-11-22 13:20:19',0);
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `categories_description`
--

DROP TABLE IF EXISTS `categories_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `categories_description` (
  `categories_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '1',
  `categories_name` varchar(32) NOT NULL DEFAULT '',
  `categories_description` text NOT NULL,
  PRIMARY KEY (`categories_id`,`language_id`),
  KEY `idx_categories_name_zen` (`categories_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `categories_description`
--

LOCK TABLES `categories_description` WRITE;
/*!40000 ALTER TABLE `categories_description` DISABLE KEYS */;
INSERT INTO `categories_description` VALUES (2,1,'Survival Kits - Marine/Aviation','The optional survival equipment kit is stowed its own valise, separate from the raft valise. Survival equipment kit and raft valise are attached to each other using velcro and a tie-line. Separate units provide the ultimate in flexibility for raft and survival equipment combinations - purchase basic rafts and survival equipment separately to meet unique requirements. Survival kits are designed and prepared for Non-TSO and FAA/TSO-Approved aviation or marine use. FAR 91, FAR 121, and FAR 135 survival equipment kits are available. All kits are also sold separately.<br /><br />\r\n*Note: Food/water ration quantities based on raft capacity.<br />\r\n<br />**Note:  Optional <a href=\"http://www.aaasurvivalproducts.com/surpro8/index.php?main_page=index&cPath=3\">ELT/EPIRB</a> can be packed inside survival kits.<br /><br  /><a class =\"linkText\" href=\"http://www.aaasurvivalproducts.com/surpro8/index.php?main_page=page&id=9\">COMPARE SURVIVAL KITS >>></a>'),(3,1,'Transmitters (ELT)','ELT\'s (Emergency Locator Transmitters) - Survival Locator Beacon -<br />\r\n<strong>We will meet or beat any other advertised prices on the Transmitters we have available!!</strong><br /><br />'),(4,1,'First Aid Kits',''),(5,1,'Life Rafts Non TSO','Top 3 reasons why over 20,000 AVI Survival Products Rafts are in use around the world:\r\nSurvival Products employs advanced design and manufacturing procedures.\r\nSurvival Products uses materials and components that provide reliability, extended life and reduced service costs.\r\nSurvival Products offers superior life rafts at an affordable price.\r\n \r\nGeneral, Private Aviation and Marine Use -  Non TSO'),(18,1,'Life Rafts TSO','Top 3 reasons why over 20,000 AVI Survival Products Rafts are in use around the world:\r\n\r\n    Survival Products employs advanced design and manufacturing procedures.\r\n    Survival Products uses materials and components that provide reliability, extended life and reduced service costs. \r\n    Survival Products offers superior life rafts at an affordable price.\r\n\r\nCommercial Aviation - FAA TSO-C70a, Type I and Type II'),(18,2,'Balsas Salvavidas TSO','<div id=\"catDescHeading\">\r\nÂ¿Por quÃ© hay estÃ¡ sobre 20.000 balsas de los Survival Products funcionando en todo el mundo?</div><br /><div id=\"catDescTagline\">\r\n\r\nEmpleando diseÃ±o y procedimientos de fabricaciÃ³n avanzados y usando los materiales y los componentes que proporcionan los costes de la confiabilidad, duraderos y reducida del servicio, ofrecemos las balsas salvavidas superiores en un precio comprable.\r\n</div><br /><br />'),(19,2,'Balsas - 4 Hombre',''),(20,1,'9 -Man Rafts - Non TSO',''),(20,2,'Balsas - 9 Hombres',''),(21,1,'4 -Man Rafts - TSO','Non-Transport Category, Single Tube Design For Corporate or General Aviation'),(21,2,'Balsas - 4 Hombre',''),(22,1,'6 -Man Rafts - TSO','Transport Category, Double Tube Design For Commercial or General Aviation'),(22,2,'Balsas - 6 Hombre',''),(23,1,'8 -Man Rafts - TSO','Non-Transport Category, Single Tube Design For Corporate or General Aviation'),(23,2,'Balsas - 8 Hombre',''),(24,1,'10-Man Rafts - TSO','Transport Category, Double Tube Design For Commercial or General Aviation'),(24,2,'Balsas - 10 Hombre',''),(25,1,'12-Man Rafts - TSO','Transport Category, Double Tube Design For Commercial or General Aviation'),(25,2,'Balsas - 12 Hombre',''),(26,1,'6 -Man Rafts - Non TSO',''),(26,2,'Balsas - 6 Hombre',''),(27,1,'8 -Man Rafts - Non TSO',''),(27,2,'Balsas - 8 Hombre',''),(28,1,'10-Man Rafts - Non TSO',''),(28,2,'Balsas - 10 Hombre',''),(29,1,'12-Man Rafts - Non TSO',''),(29,2,'Balsas - 12 Hombre',''),(2,2,'Kits de Supervivencia - Marina y','El kit opcional del equipo de supervivencia se guarda su propio valise y a parte del valise de la balsa. El valise del kit y de la balsa del equipo de supervivencia se ata el uno al otro usando el velcro y una atar-lÃ­nea. Los valises separados proporcionan el Ãºltimo en la flexibilidad para la balsa y las combinaciones del equipo de supervivencia. Compre las balsas y el equipo de supervivencia bÃ¡sicos por separado para cumplir requisitos Ãºnicos. Los kits de supervivencia se diseÃ±an y se preparan para la aviaciÃ³n de No-TSO y de FAA/TSO-Aprobado o el uso marina. FAR 91, FAR 121, y FAR 135 kits del equipo de supervivencia estÃ¡n disponibles. Todos los kits tambiÃ©n se venden por separado.<br /><br />\r\n* Nota: El alimento y el agua racionan las cantidades basadas en capacidad de la balsa.<br />\r\n<br />** Nota:  Opcional <a href=\"http://aaasurvivalproducts.com/index.php?main_page=index&amp;cPath=3\">ELT/EPIRB</a> puede ser embalado dentro de kits de supervivencia.'),(3,2,'(ELT) Transmisores','ELTs (Transmisores del Localizador de la Emergencia) - Faro del localizador de la supervivencia -<br /> \r\n<strong>Â¡Que resolveremos o que batiremos cualquier otro precio de divulgaciÃ³n en los transmisores tenemos disponible!!</strong>'),(4,2,'Kits de primeros auxilios',''),(5,2,'Balsas Salvavidas No TSO','<div id=\"catDescHeading\">\r\nÂ¿Por quÃ© hay estÃ¡ sobre 20.000 balsas de los Survival Products funcionando en todo el mundo?</div><br /><div id=\"catDescTagline\">\r\n\r\nEmpleando diseÃ±o y procedimientos de fabricaciÃ³n avanzados y usando los materiales y los componentes que proporcionan los costes de la confiabilidad, duraderos y reducida del servicio, ofrecemos las balsas salvavidas superiores en un precio comprable.\r\n</div><br /><br />'),(11,2,'Equipo de Seguridad',''),(11,1,'Safety Equipment',''),(12,2,'Raciones de Comidas y Agua (Prec',''),(12,1,'Food/Water Rations (Case)',''),(13,2,'MiscelÃ¡neo',''),(13,1,'Miscellaneous',''),(14,2,'Kits de Supervivencia - Casero y','Casero y Oficina'),(14,1,'Survival Kits -  Home/Office',''),(15,2,'Linternas',''),(15,1,'Light',''),(16,1,'Life Vests',''),(16,2,'Chalecos Salvavidas',''),(19,1,'4 -Man Rafts - Non TSO',''),(30,2,'Ropas','Chaquetas de Vuelo'),(30,1,'Clothing','Flight Jackets');
/*!40000 ALTER TABLE `categories_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `configuration`
--

DROP TABLE IF EXISTS `configuration`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `configuration` (
  `configuration_id` int(11) NOT NULL AUTO_INCREMENT,
  `configuration_title` text NOT NULL,
  `configuration_key` varchar(255) NOT NULL DEFAULT '',
  `configuration_value` text NOT NULL,
  `configuration_description` text NOT NULL,
  `configuration_group_id` int(11) NOT NULL DEFAULT '0',
  `sort_order` int(5) DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `use_function` text,
  `set_function` text,
  PRIMARY KEY (`configuration_id`),
  UNIQUE KEY `unq_config_key_zen` (`configuration_key`),
  KEY `idx_key_value_zen` (`configuration_key`,`configuration_value`(10)),
  KEY `idx_cfg_grp_id_zen` (`configuration_group_id`)
) ENGINE=MyISAM AUTO_INCREMENT=572 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `configuration`
--

LOCK TABLES `configuration` WRITE;
/*!40000 ALTER TABLE `configuration` DISABLE KEYS */;
INSERT INTO `configuration` VALUES (1,'Store Name','STORE_NAME','AAA Survival Products','The name of my store',1,1,NULL,'2018-04-19 20:31:27',NULL,NULL),(2,'Store Owner','STORE_OWNER','Jack Brake','The name of my store owner',1,2,NULL,'2018-04-19 20:31:27',NULL,NULL),(3,'Telephone - Customer Service','STORE_TELEPHONE_CUSTSERVICE','','Enter a telephone number for customers to reach your Customer Service department. This number may be sent as part of payment transaction details.',1,3,NULL,'2018-04-19 20:31:27',NULL,NULL),(4,'Country','STORE_COUNTRY','223','The country my store is located in <br /><br /><strong>Note: Please remember to update the store zone.</strong>',1,6,NULL,'2018-04-19 20:31:27','zen_get_country_name','zen_cfg_pull_down_country_list('),(5,'Zone','STORE_ZONE','18','The zone my store is located in',1,7,NULL,'2018-04-19 20:31:27','zen_cfg_get_zone_name','zen_cfg_pull_down_zone_list('),(6,'Expected Sort Order','EXPECTED_PRODUCTS_SORT','desc','This is the sort order used in the expected products box.',1,8,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'asc\', \'desc\'), '),(7,'Expected Sort Field','EXPECTED_PRODUCTS_FIELD','date_expected','The column to sort by in the expected products box.',1,9,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'products_name\', \'date_expected\'), '),(8,'Switch To Default Language Currency','USE_DEFAULT_LANGUAGE_CURRENCY','false','Automatically switch to the language\'s currency when it is changed',1,10,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(9,'Language Selector','LANGUAGE_DEFAULT_SELECTOR','Default','Should the default language be based on the Store preferences, or the customer\'s browser settings?<br /><br />Default: Store\'s default settings',1,11,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'Default\', \'Browser\'), '),(10,'Use Search-Engine Safe URLs (still in development)','SEARCH_ENGINE_FRIENDLY_URLS','false','Use search-engine safe urls for all site links',6,12,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(11,'Display Cart After Adding Product','DISPLAY_CART','true','Display the shopping cart after adding a product (or return back to their origin)',1,14,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(12,'Default Search Operator','ADVANCED_SEARCH_DEFAULT_OPERATOR','and','Default search operators',1,17,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'and\', \'or\'), '),(13,'Store Address and Phone','STORE_NAME_ADDRESS','AAA Survival Inc\r\n12361 SW 106th Street\r\nMiami, FL 33186\r\nUSA\r\n800-976-9206','This is the Store Name, Address and Phone used on printable documents and displayed online',1,7,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_textarea('),(14,'Show Category Counts','SHOW_COUNTS','false','Count recursively how many products are in each category',1,19,'2018-05-16 21:47:22','2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(15,'Tax Decimal Places','TAX_DECIMAL_PLACES','0','Pad the tax value this amount of decimal places',1,20,NULL,'2018-04-19 20:31:27',NULL,NULL),(16,'Display Prices with Tax','DISPLAY_PRICE_WITH_TAX','false','Display prices with tax included (true) or add the tax at the end (false)',1,21,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(17,'Display Prices with Tax in Admin','DISPLAY_PRICE_WITH_TAX_ADMIN','false','Display prices with tax included (true) or add the tax at the end (false) in Admin(Invoices)',1,21,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(18,'Basis of Product Tax','STORE_PRODUCT_TAX_BASIS','Shipping','On what basis is Product Tax calculated. Options are<br />Shipping - Based on customers Shipping Address<br />Billing Based on customers Billing address<br />Store - Based on Store address if Billing/Shipping Zone equals Store zone',1,21,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'Shipping\', \'Billing\', \'Store\'), '),(19,'Basis of Shipping Tax','STORE_SHIPPING_TAX_BASIS','Shipping','On what basis is Shipping Tax calculated. Options are<br />Shipping - Based on customers Shipping Address<br />Billing Based on customers Billing address<br />Store - Based on Store address if Billing/Shipping Zone equals Store zone - Can be overriden by correctly written Shipping Module',1,21,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'Shipping\', \'Billing\', \'Store\'), '),(20,'Sales Tax Display Status','STORE_TAX_DISPLAY_STATUS','0','Always show Sales Tax even when amount is $0.00?<br />0= Off<br />1= On',1,21,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(21,'Show Split Tax Lines','SHOW_SPLIT_TAX_CHECKOUT','false','If multiple tax rates apply, show each rate as a separate line at checkout',1,22,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(22,'PA-DSS Admin Session Timeout Enforced?','PADSS_ADMIN_SESSION_TIMEOUT_ENFORCED','1','PA-DSS Compliance requires that any Admin login sessions expire after 15 minutes of inactivity. <strong>Disabling this makes your site NON-COMPLIANT with PA-DSS rules, thus invalidating any certification.</strong>',1,30,'2018-05-27 20:45:18','2018-04-19 20:31:27',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Non-Compliant\'), array(\'id\'=>\'1\', \'text\'=>\'On\')),'),(23,'PA-DSS Strong Password Rules Enforced?','PADSS_PWD_EXPIRY_ENFORCED','1','PA-DSS Compliance requires that admin passwords must be changed after 90 days and cannot re-use the last 4 passwords. <strong>Disabling this makes your site NON-COMPLIANT with PA-DSS rules, thus invalidating any certification.</strong>',1,30,'2018-04-19 20:31:27','2018-04-19 20:31:27',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Non-Compliant\'), array(\'id\'=>\'1\', \'text\'=>\'On\')),'),(24,'PA-DSS Ajax Checkout?','PADSS_AJAX_CHECKOUT','1','PA-DSS Compliance requires that for some inbuilt payment methods, that we use ajax to draw the checkout confirmation screen. While this will only happen if one of those payment methods is actually present, some people may want the traditional checkout flow <strong>Disabling this makes your site NON-COMPLIANT with PA-DSS rules, thus invalidating any certification.</strong>',1,30,'2018-04-19 20:31:27','2018-04-19 20:31:27',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Non-Compliant\'), array(\'id\'=>\'1\', \'text\'=>\'On\')),'),(25,'Admin Session Time Out in Seconds','SESSION_TIMEOUT_ADMIN','900','Enter the time in seconds.<br />Max allowed is 900 for PCI Compliance Reasons.<br /> Default=900<br />Example: 900= 15 min <br /><br />Note: Too few seconds can result in timeout issues when adding/editing products',1,40,NULL,'2018-04-19 20:31:27',NULL,NULL),(26,'Admin Set max_execution_time for processes','GLOBAL_SET_TIME_LIMIT','60','Enter the time in seconds for how long the max_execution_time of processes should be. Default=60<br />Example: 60= 1 minute<br /><br />Note: Changing the time limit is only needed if you are having problems with the execution time of a process',1,42,NULL,'2018-04-19 20:31:27',NULL,NULL),(27,'Show if version update available','SHOW_VERSION_UPDATE_IN_HEADER','true','Automatically check to see if a new version of Zen Cart is available. Enabling this can sometimes slow down the loading of Admin pages. (Displayed on main Index page after login, and Server Info page.)',1,44,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(28,'Store Status','STORE_STATUS','0','What is your Store Status<br />0= Normal Store<br />1= Showcase no prices<br />2= Showcase with prices',1,25,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(29,'Server Uptime','DISPLAY_SERVER_UPTIME','true','Displaying Server uptime can cause entries in error logs on some servers. (true = Display, false = don\'t display)',1,46,'2003-11-08 20:24:47','0001-01-01 00:00:00','','zen_cfg_select_option(array(\'true\', \'false\'),'),(30,'Missing Page Check','MISSING_PAGE_CHECK','Page Not Found','Zen Cart can check for missing pages in the URL and redirect to Index page. For debugging you may want to turn this off. <br /><br /><strong>Default=On</strong><br />On = Send missing pages to \'index\'<br />Off = Don\'t check for missing pages<br />Page Not Found = display the Page-Not-Found page',1,48,'2003-11-08 20:24:47','0001-01-01 00:00:00','','zen_cfg_select_option(array(\'On\', \'Off\', \'Page Not Found\'),'),(31,'cURL Proxy Status','CURL_PROXY_REQUIRED','False','Does your host require that you use a proxy for cURL communication?',6,50,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(32,'cURL Proxy Address','CURL_PROXY_SERVER_DETAILS','','If you have a hosting service that requires use of a proxy to talk to external sites via cURL, enter their proxy address here.<br />format: address:port<br />ie: 127.0.0.1:3128',6,51,NULL,'2018-04-19 20:31:27',NULL,NULL),(33,'HTML Editor','HTML_EDITOR_PREFERENCE','NONE','Please select the HTML/Rich-Text editor you wish to use for composing Admin-related emails, newsletters, and product descriptions',1,110,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_pull_down_htmleditors('),(34,'Show Category Counts - Admin','SHOW_COUNTS_ADMIN','true','Show Category Counts in Admin?',1,19,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(35,'Show linked status for categories','SHOW_CATEGORY_PRODUCTS_LINKED_STATUS','true','Show Category products linked status?',1,19,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(36,'Currency Conversion Ratio','CURRENCY_UPLIFT_RATIO','1.05','When auto-updating currencies, what \"uplift\" ratio should be used to calculate the exchange rate used by your store?<br />ie: the bank rate is obtained from the currency-exchange servers; how much extra do you want to charge in order to make up the difference between the bank rate and the consumer rate?<br /><br /><strong>Default: 1.05 </strong><br />This will cause the published bank rate to be multiplied by 1.05 to set the currency rates in your store.',1,55,NULL,'2018-04-19 20:31:27',NULL,NULL),(37,'Currency Exchange Rate: Primary Source','CURRENCY_SERVER_PRIMARY','ecb','Where to request external currency updates from (Primary source)<br><br>Additional sources can be installed via plugins.',1,55,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_pull_down_exchange_rate_sources('),(38,'Currency Exchange Rate: Secondary Source','CURRENCY_SERVER_BACKUP','boc','Where to request external currency updates from (Secondary source)<br><br>Additional sources can be installed via plugins.',1,55,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_pull_down_exchange_rate_sources('),(39,'First Name','ENTRY_FIRST_NAME_MIN_LENGTH','2','Minimum length of first name',2,1,NULL,'2018-04-19 20:31:27',NULL,NULL),(40,'Last Name','ENTRY_LAST_NAME_MIN_LENGTH','2','Minimum length of last name',2,2,NULL,'2018-04-19 20:31:27',NULL,NULL),(41,'Date of Birth','ENTRY_DOB_MIN_LENGTH','10','Minimum length of date of birth',2,3,NULL,'2018-04-19 20:31:27',NULL,NULL),(42,'E-Mail Address','ENTRY_EMAIL_ADDRESS_MIN_LENGTH','6','Minimum length of e-mail address',2,4,NULL,'2018-04-19 20:31:27',NULL,NULL),(43,'Street Address','ENTRY_STREET_ADDRESS_MIN_LENGTH','5','Minimum length of street address',2,5,NULL,'2018-04-19 20:31:27',NULL,NULL),(44,'Company','ENTRY_COMPANY_MIN_LENGTH','0','Minimum length of company name',2,6,NULL,'2018-04-19 20:31:27',NULL,NULL),(45,'Post Code','ENTRY_POSTCODE_MIN_LENGTH','4','Minimum length of post code',2,7,NULL,'2018-04-19 20:31:27',NULL,NULL),(46,'City','ENTRY_CITY_MIN_LENGTH','2','Minimum length of city',2,8,NULL,'2018-04-19 20:31:27',NULL,NULL),(47,'State','ENTRY_STATE_MIN_LENGTH','2','Minimum length of state',2,9,NULL,'2018-04-19 20:31:27',NULL,NULL),(48,'Telephone Number','ENTRY_TELEPHONE_MIN_LENGTH','3','Minimum length of telephone number',2,10,NULL,'2018-04-19 20:31:27',NULL,NULL),(49,'Password','ENTRY_PASSWORD_MIN_LENGTH','7','Minimum length of password',2,11,NULL,'2018-04-19 20:31:27',NULL,NULL),(50,'Credit Card Owner Name','CC_OWNER_MIN_LENGTH','3','Minimum length of credit card owner name',2,12,NULL,'2018-04-19 20:31:27',NULL,NULL),(51,'Credit Card Number','CC_NUMBER_MIN_LENGTH','10','Minimum length of credit card number',2,13,NULL,'2018-04-19 20:31:27',NULL,NULL),(52,'Credit Card CVV Number','CC_CVV_MIN_LENGTH','3','Minimum length of credit card CVV number',2,13,NULL,'2018-04-19 20:31:27',NULL,NULL),(53,'Product Review Text','REVIEW_TEXT_MIN_LENGTH','50','Minimum length of product review text',2,14,NULL,'2018-04-19 20:31:27',NULL,NULL),(54,'Best Sellers','MIN_DISPLAY_BESTSELLERS','1','Minimum number of best sellers to display',2,15,NULL,'2018-04-19 20:31:27',NULL,NULL),(55,'Also Purchased Products','MIN_DISPLAY_ALSO_PURCHASED','1','Minimum number of products to display in the \'This Customer Also Purchased\' box',2,16,NULL,'2018-04-19 20:31:27',NULL,NULL),(56,'Nick Name','ENTRY_NICK_MIN_LENGTH','3','Minimum length of Nick Name',2,1,NULL,'2018-04-19 20:31:27',NULL,NULL),(57,'Address Book Entries','MAX_ADDRESS_BOOK_ENTRIES','5','Maximum address book entries a customer is allowed to have',3,1,NULL,'2018-04-19 20:31:27',NULL,NULL),(58,'Admin Search Results Per Page','MAX_DISPLAY_SEARCH_RESULTS','20','Number of products to list on an Admin search result page',3,2,NULL,'2018-04-19 20:31:27',NULL,NULL),(59,'Prev/Next Navigation Page Links (Desktop)','MAX_DISPLAY_PAGE_LINKS','5','Number of numbered pagination links to display.',3,3,NULL,'2018-04-19 20:31:27',NULL,NULL),(60,'Prev/Next Navigation Page Links (Mobile)','MAX_DISPLAY_PAGE_LINKS_MOBILE','3','Number of numbered pagination links to display on Mobile devices (assuming your template supports mobile-specific settings)',3,3,NULL,'2018-04-19 20:31:27',NULL,NULL),(61,'Products on Special ','MAX_DISPLAY_SPECIAL_PRODUCTS','9','Number of products on special to display',3,4,NULL,'2018-04-19 20:31:27',NULL,NULL),(62,'New Products Module','MAX_DISPLAY_NEW_PRODUCTS','9','Number of new products to display in a category',3,5,NULL,'2018-04-19 20:31:27',NULL,NULL),(63,'Upcoming Products ','MAX_DISPLAY_UPCOMING_PRODUCTS','10','Number of \'upcoming\' products to display',3,6,NULL,'2018-04-19 20:31:27',NULL,NULL),(64,'Manufacturers List - Scroll Box Size/Style','MAX_MANUFACTURERS_LIST','0','Number of manufacturers names to be displayed in the scroll box window. Setting this to 1 or 0 will display a dropdown list.',3,7,NULL,'2018-04-19 20:31:27',NULL,NULL),(65,'Manufacturers List - Verify Product Exist','PRODUCTS_MANUFACTURERS_STATUS','1','Verify that at least 1 product exists and is active for the manufacturer name to show<br /><br />Note: When this feature is ON it can produce slower results on sites with a large number of products and/or manufacturers<br />0= off 1= on',3,7,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(66,'Music Genre List - Scroll Box Size/Style','MAX_MUSIC_GENRES_LIST','0','Number of music genre names to be displayed in the scroll box window. Setting this to 1 or 0 will display a dropdown list.',3,7,NULL,'2018-04-19 20:31:27',NULL,NULL),(67,'Record Company List - Scroll Box Size/Style','MAX_RECORD_COMPANY_LIST','0','Number of record company names to be displayed in the scroll box window. Setting this to 1 or 0 will display a dropdown list.',3,7,NULL,'2018-04-19 20:31:27',NULL,NULL),(68,'Length of Record Company Name','MAX_DISPLAY_RECORD_COMPANY_NAME_LEN','15','Used in record companies box; maximum length of record company name to display. Longer names will be truncated.',3,8,NULL,'2018-04-19 20:31:27',NULL,NULL),(69,'Length of Music Genre Name','MAX_DISPLAY_MUSIC_GENRES_NAME_LEN','15','Used in music genres box; maximum length of music genre name to display. Longer names will be truncated.',3,8,NULL,'2018-04-19 20:31:27',NULL,NULL),(70,'Length of Manufacturers Name','MAX_DISPLAY_MANUFACTURER_NAME_LEN','15','Used in manufacturers box; maximum length of manufacturers name to display. Longer names will be truncated.',3,8,NULL,'2018-04-19 20:31:27',NULL,NULL),(71,'New Product Reviews Per Page','MAX_DISPLAY_NEW_REVIEWS','6','Number of new reviews to display on each page',3,9,NULL,'2018-04-19 20:31:27',NULL,NULL),(72,'Random Product Reviews for SideBox','MAX_RANDOM_SELECT_REVIEWS','1','Number of random product REVIEWS to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?',3,10,NULL,'2018-04-19 20:31:27',NULL,NULL),(73,'Random New Products for SideBox','MAX_RANDOM_SELECT_NEW','3','Number of random NEW products to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?',3,11,NULL,'2018-04-19 20:31:27',NULL,NULL),(74,'Random Products On Special for SideBox','MAX_RANDOM_SELECT_SPECIALS','2','Number of random products on SPECIAL to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?',3,12,NULL,'2018-04-19 20:31:27',NULL,NULL),(75,'Categories To List Per Row','MAX_DISPLAY_CATEGORIES_PER_ROW','3','How many categories to list per row',3,13,'2018-05-28 12:53:18','2018-04-19 20:31:27',NULL,NULL),(76,'New Products Listing- Number Per Page','MAX_DISPLAY_PRODUCTS_NEW','10','Number of new products listed per page',3,14,NULL,'2018-04-19 20:31:27',NULL,NULL),(77,'Best Sellers For Box','MAX_DISPLAY_BESTSELLERS','10','Number of best sellers to display in box',3,15,NULL,'2018-04-19 20:31:27',NULL,NULL),(78,'Also Purchased Products','MAX_DISPLAY_ALSO_PURCHASED','6','Number of products to display in the \'This Customer Also Purchased\' box',3,16,NULL,'2018-04-19 20:31:27',NULL,NULL),(79,'Recent Purchases Box- NOTE: box is disabled ','MAX_DISPLAY_PRODUCTS_IN_ORDER_HISTORY_BOX','6','Number of products to display in the recent purchases box',3,17,NULL,'2018-04-19 20:31:27',NULL,NULL),(80,'Customer Order History List Per Page','MAX_DISPLAY_ORDER_HISTORY','10','Number of orders to display in the order history list in \'My Account\'',3,18,NULL,'2018-04-19 20:31:27',NULL,NULL),(81,'Maximum Display of Customers on Customers Page','MAX_DISPLAY_SEARCH_RESULTS_CUSTOMER','20','',3,19,NULL,'2018-04-19 20:31:27',NULL,NULL),(82,'Maximum Display of Orders on Orders Page','MAX_DISPLAY_SEARCH_RESULTS_ORDERS','20','',3,20,NULL,'2018-04-19 20:31:27',NULL,NULL),(83,'Maximum Display of Products on Reports','MAX_DISPLAY_SEARCH_RESULTS_REPORTS','20','',3,21,NULL,'2018-04-19 20:31:27',NULL,NULL),(84,'Maximum Categories Products Display List','MAX_DISPLAY_RESULTS_CATEGORIES','10','Number of products to list per screen',3,22,NULL,'2018-04-19 20:31:27',NULL,NULL),(85,'Products Listing- Number Per Page','MAX_DISPLAY_PRODUCTS_LISTING','10','Maximum Number of Products to list per page on main page',3,30,NULL,'2018-04-19 20:31:27',NULL,NULL),(86,'Products Attributes - Option Names and Values Display','MAX_ROW_LISTS_OPTIONS','10','Maximum number of option names and values to display in the products attributes page',3,24,NULL,'2018-04-19 20:31:27',NULL,NULL),(87,'Products Attributes - Attributes Controller Display','MAX_ROW_LISTS_ATTRIBUTES_CONTROLLER','30','Maximum number of attributes to display in the Attributes Controller page',3,25,NULL,'2018-04-19 20:31:27',NULL,NULL),(88,'Products Attributes - Downloads Manager Display','MAX_DISPLAY_SEARCH_RESULTS_DOWNLOADS_MANAGER','30','Maximum number of attributes downloads to display in the Downloads Manager page',3,26,NULL,'2018-04-19 20:31:27',NULL,NULL),(89,'Featured Products - Number to Display Admin','MAX_DISPLAY_SEARCH_RESULTS_FEATURED_ADMIN','10','Number of featured products to list per screen - Admin',3,27,NULL,'2018-04-19 20:31:27',NULL,NULL),(90,'Maximum Display of Featured Products - Main Page','MAX_DISPLAY_SEARCH_RESULTS_FEATURED','9','Number of featured products to list on main page',3,28,NULL,'2018-04-19 20:31:27',NULL,NULL),(91,'Maximum Display of Featured Products Page','MAX_DISPLAY_PRODUCTS_FEATURED_PRODUCTS','10','Number of featured products to list per screen',3,29,NULL,'2018-04-19 20:31:27',NULL,NULL),(92,'Random Featured Products for SideBox','MAX_RANDOM_SELECT_FEATURED_PRODUCTS','2','Number of random FEATURED products to rotate in the sidebox<br />Enter the number of products to display in this sidebox at one time.<br /><br />How many products do you want to display in this sidebox?',3,30,NULL,'2018-04-19 20:31:27',NULL,NULL),(93,'Maximum Display of Specials Products - Main Page','MAX_DISPLAY_SPECIAL_PRODUCTS_INDEX','9','Number of special products to list on main page',3,31,NULL,'2018-04-19 20:31:27',NULL,NULL),(94,'New Product Listing - Limited to ...','SHOW_NEW_PRODUCTS_LIMIT','0','Limit the New Product Listing to<br />0= All Products<br />1= Current Month<br />7= 7 Days<br />14= 14 Days<br />30= 30 Days<br />60= 60 Days<br />90= 90 Days<br />120= 120 Days',3,40,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'7\', \'14\', \'30\', \'60\', \'90\', \'120\'), '),(95,'Maximum Display of Products All Page','MAX_DISPLAY_PRODUCTS_ALL','10','Number of products to list per screen',3,45,NULL,'2018-04-19 20:31:27',NULL,NULL),(96,'Maximum Display of Language Flags in Language Side Box','MAX_LANGUAGE_FLAGS_COLUMNS','3','Number of Language Flags per Row',3,50,NULL,'2018-04-19 20:31:27',NULL,NULL),(97,'Maximum File Upload Size','MAX_FILE_UPLOAD_SIZE','2048000','What is the Maximum file size for uploads?<br />Default= 2048000',3,60,NULL,'2018-04-19 20:31:27',NULL,NULL),(98,'Allowed Filename Extensions for uploading','UPLOAD_FILENAME_EXTENSIONS','jpg,jpeg,gif,png,eps,cdr,ai,pdf,tif,tiff,bmp,zip','List the permissible filetypes (filename extensions) to be allowed when files are uploaded to your site by customers. Separate multiple values with commas(,). Do not include the dot(.).<br /><br />Suggested setting: \"jpg,jpeg,gif,png,eps,cdr,ai,pdf,tif,tiff,bmp,zip\"',3,61,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_textarea('),(99,'Maximum Orders Detail Display on Admin Orders Listing','MAX_DISPLAY_RESULTS_ORDERS_DETAILS_LISTING','0','Maximum number of Order Details<br />0 = Unlimited',3,65,NULL,'2018-04-19 20:31:27',NULL,NULL),(100,'Maximum PayPal IPN Display on Admin Listing','MAX_DISPLAY_SEARCH_RESULTS_PAYPAL_IPN','20','Maximum number of PayPal IPN Lisings in Admin<br />Default is 20',3,66,NULL,'2018-04-19 20:31:27',NULL,NULL),(101,'Maximum Display Columns Products to Multiple Categories Manager','MAX_DISPLAY_PRODUCTS_TO_CATEGORIES_COLUMNS','3','Maximum Display Columns Products to Multiple Categories Manager<br />3 = Default',3,70,'2018-05-28 12:56:04','2018-04-19 20:31:27',NULL,NULL),(102,'Maximum Display EZ-Pages','MAX_DISPLAY_SEARCH_RESULTS_EZPAGE','20','Maximum Display EZ-Pages<br />20 = Default',3,71,NULL,'2018-04-19 20:31:27',NULL,NULL),(103,'Small Image Width','SMALL_IMAGE_WIDTH','200','The pixel width of small images',4,1,NULL,'2018-04-19 20:31:27',NULL,NULL),(104,'Small Image Height','SMALL_IMAGE_HEIGHT','200','The pixel height of small images',4,2,NULL,'2018-04-19 20:31:27',NULL,NULL),(105,'Heading Image Width - Admin','HEADING_IMAGE_WIDTH','57','The pixel width of heading images in the Admin<br />NOTE: Presently, this adjusts the spacing on the pages in the Admin Pages or could be used to add images to the heading in the Admin',4,3,NULL,'2018-04-19 20:31:27',NULL,NULL),(106,'Heading Image Height - Admin','HEADING_IMAGE_HEIGHT','40','The pixel height of heading images in the Admin<br />NOTE: Presently, this adjusts the spacing on the pages in the Admin Pages or could be used to add images to the heading in the Admin',4,4,NULL,'2018-04-19 20:31:27',NULL,NULL),(107,'Subcategory Image Width','SUBCATEGORY_IMAGE_WIDTH','100','The pixel width of subcategory images',4,5,NULL,'2018-04-19 20:31:27',NULL,NULL),(108,'Subcategory Image Height','SUBCATEGORY_IMAGE_HEIGHT','57','The pixel height of subcategory images',4,6,NULL,'2018-04-19 20:31:27',NULL,NULL),(109,'Calculate Image Size','CONFIG_CALCULATE_IMAGE_SIZE','true','Calculate the size of images?',4,7,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(110,'Image Required','IMAGE_REQUIRED','true','Enable to display broken images. Good for development.',4,8,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(111,'Image - Shopping Cart Status','IMAGE_SHOPPING_CART_STATUS','1','Show product image in the shopping cart?<br />0= off 1= on',4,9,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(112,'Image - Shopping Cart Width','IMAGE_SHOPPING_CART_WIDTH','50','Default = 50',4,10,NULL,'2018-04-19 20:31:27',NULL,NULL),(113,'Image - Shopping Cart Height','IMAGE_SHOPPING_CART_HEIGHT','40','Default = 40',4,11,NULL,'2018-04-19 20:31:27',NULL,NULL),(114,'Category Icon Image Width - Product Info Pages','CATEGORY_ICON_IMAGE_WIDTH','57','The pixel width of Category Icon heading images for Product Info Pages',4,13,NULL,'2018-04-19 20:31:27',NULL,NULL),(115,'Category Icon Image Height - Product Info Pages','CATEGORY_ICON_IMAGE_HEIGHT','40','The pixel height of Category Icon heading images for Product Info Pages',4,14,NULL,'2018-04-19 20:31:27',NULL,NULL),(116,'Top Subcategory Image Width','SUBCATEGORY_IMAGE_TOP_WIDTH','150','The pixel width of Top subcategory images<br />Top subcategory is when the Category contains subcategories',4,15,NULL,'2018-04-19 20:31:27',NULL,NULL),(117,'Top Subcategory Image Height','SUBCATEGORY_IMAGE_TOP_HEIGHT','85','The pixel height of Top subcategory images<br />Top subcategory is when the Category contains subcategories',4,16,NULL,'2018-04-19 20:31:27',NULL,NULL),(118,'Product Info - Image Width','MEDIUM_IMAGE_WIDTH','300','The pixel width of Product Info images',4,20,NULL,'2018-04-19 20:31:27',NULL,NULL),(119,'Product Info - Image Height','MEDIUM_IMAGE_HEIGHT','300','The pixel height of Product Info images',4,21,NULL,'2018-04-19 20:31:27',NULL,NULL),(120,'Product Info - Image Medium Suffix','IMAGE_SUFFIX_MEDIUM','_MED','Product Info Medium Image Suffix<br />Default = _MED',4,22,NULL,'2018-04-19 20:31:27',NULL,NULL),(121,'Product Info - Image Large Suffix','IMAGE_SUFFIX_LARGE','_LRG','Product Info Large Image Suffix<br />Default = _LRG',4,23,NULL,'2018-04-19 20:31:27',NULL,NULL),(122,'Product Info - Number of Additional Images per Row','IMAGES_AUTO_ADDED','4','Product Info - Enter the number of additional images to display per row<br />Default = 3',4,30,NULL,'2018-04-19 20:31:27',NULL,NULL),(123,'Image - Product Listing Width','IMAGE_PRODUCT_LISTING_WIDTH','200','Default = 100',4,40,NULL,'2018-04-19 20:31:27',NULL,NULL),(124,'Image - Product Listing Height','IMAGE_PRODUCT_LISTING_HEIGHT','200','Default = 80',4,41,NULL,'2018-04-19 20:31:27',NULL,NULL),(125,'Image - Product New Listing Width','IMAGE_PRODUCT_NEW_LISTING_WIDTH','200','Default = 100',4,42,NULL,'2018-04-19 20:31:27',NULL,NULL),(126,'Image - Product New Listing Height','IMAGE_PRODUCT_NEW_LISTING_HEIGHT','80','Default = 80',4,43,NULL,'2018-04-19 20:31:27',NULL,NULL),(127,'Image - New Products Width','IMAGE_PRODUCT_NEW_WIDTH','200','Default = 100',4,44,NULL,'2018-04-19 20:31:27',NULL,NULL),(128,'Image - New Products Height','IMAGE_PRODUCT_NEW_HEIGHT','200','Default = 80',4,45,NULL,'2018-04-19 20:31:27',NULL,NULL),(129,'Image - Featured Products Width','IMAGE_FEATURED_PRODUCTS_LISTING_WIDTH','200','Default = 100',4,46,NULL,'2018-04-19 20:31:27',NULL,NULL),(130,'Image - Featured Products Height','IMAGE_FEATURED_PRODUCTS_LISTING_HEIGHT','200','Default = 80',4,47,NULL,'2018-04-19 20:31:27',NULL,NULL),(131,'Image - Product All Listing Width','IMAGE_PRODUCT_ALL_LISTING_WIDTH','200','Default = 100',4,48,NULL,'2018-04-19 20:31:27',NULL,NULL),(132,'Image - Product All Listing Height','IMAGE_PRODUCT_ALL_LISTING_HEIGHT','200','Default = 80',4,49,NULL,'2018-04-19 20:31:27',NULL,NULL),(133,'Product Image - No Image Status','PRODUCTS_IMAGE_NO_IMAGE_STATUS','1','Use automatic No Image when none is added to product<br />0= off<br />1= On',4,60,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(134,'Product Image - No Image picture','PRODUCTS_IMAGE_NO_IMAGE','no_picture.gif','Use automatic No Image when none is added to product<br />Default = no_picture.gif',4,61,NULL,'2018-04-19 20:31:27',NULL,NULL),(135,'Image - Use Proportional Images on Products and Categories','PROPORTIONAL_IMAGES_STATUS','1','Use Proportional Images on Products and Categories?<br /><br />NOTE: Do not use 0 height or width settings for Proportion Images<br />0= off 1= on',4,75,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(136,'Email Salutation','ACCOUNT_GENDER','true','Display salutation choice during account creation and with account information',5,1,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(137,'Date of Birth','ACCOUNT_DOB','true','Display date of birth field during account creation and with account information<br />NOTE: Set Minimum Value Date of Birth to blank for not required<br />Set Minimum Value Date of Birth > 0 to require',5,2,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(138,'Company','ACCOUNT_COMPANY','true','Display company field during account creation and with account information',5,3,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(139,'Address Line 2','ACCOUNT_SUBURB','true','Display address line 2 field during account creation and with account information',5,4,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(140,'State','ACCOUNT_STATE','true','Display state field during account creation and with account information',5,5,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(141,'State - Always display as pulldown?','ACCOUNT_STATE_DRAW_INITIAL_DROPDOWN','false','When state field is displayed, should it always be a pulldown menu?',5,5,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(142,'Create Account Default Country ID','SHOW_CREATE_ACCOUNT_DEFAULT_COUNTRY','223','Set Create Account Default Country ID to:<br />Default is 223',5,6,NULL,'2018-04-19 20:31:27','zen_get_country_name','zen_cfg_pull_down_country_list_none('),(143,'Fax Number','ACCOUNT_FAX_NUMBER','true','Display fax number field during account creation and with account information',5,10,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(144,'Show Newsletter Checkbox','ACCOUNT_NEWSLETTER_STATUS','1','Show Newsletter Checkbox<br />0= off<br />1= Display Unchecked<br />2= Display Checked<br /><strong>Note: Defaulting this to accepted may be in violation of certain regulations for your state or country</strong>',5,45,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(145,'Customer Default Email Preference','ACCOUNT_EMAIL_PREFERENCE','0','Set the Default Customer Default Email Preference<br />0= Text<br />1= HTML<br />',5,46,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(146,'Customer Product Notification Status','CUSTOMERS_PRODUCTS_NOTIFICATION_STATUS','1','Customer should be asked about product notifications after checkout success and in account preferences<br />0= Never ask<br />1= Ask (ignored on checkout if has already selected global notifications)<br /><br />Note: Sidebox must be turned off separately',5,50,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(147,'Customer Shop Status - View Shop and Prices','CUSTOMERS_APPROVAL','0','Customer must be approved to shop<br />0= Not required<br />1= Must login to browse<br />2= May browse but no prices unless logged in<br />3= Showroom Only<br /><br />It is recommended that Option 2 be used for the purposes of Spiders if you wish customers to login to see prices.',5,55,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(148,'Customer Approval Status - Authorization Pending','CUSTOMERS_APPROVAL_AUTHORIZATION','0','Customer must be Authorized to shop<br />0= Not required<br />1= Must be Authorized to Browse<br />2= May browse but no prices unless Authorized<br />3= Customer May Browse and May see Prices but Must be Authorized to Buy<br /><br />It is recommended that Option 2 or 3 be used for the purposes of Spiders',5,65,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(149,'Customer Authorization: filename','CUSTOMERS_AUTHORIZATION_FILENAME','customers_authorization','Customer Authorization filename<br />Note: Do not include the extension<br />Default=customers_authorization',5,66,NULL,'2018-04-19 20:31:27',NULL,''),(150,'Customer Authorization: Hide Header','CUSTOMERS_AUTHORIZATION_HEADER_OFF','false','Customer Authorization: Hide Header <br />(true=hide false=show)',5,67,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(151,'Customer Authorization: Hide Column Left','CUSTOMERS_AUTHORIZATION_COLUMN_LEFT_OFF','false','Customer Authorization: Hide Column Left <br />(true=hide false=show)',5,68,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(152,'Customer Authorization: Hide Column Right','CUSTOMERS_AUTHORIZATION_COLUMN_RIGHT_OFF','false','Customer Authorization: Hide Column Right <br />(true=hide false=show)',5,69,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(153,'Customer Authorization: Hide Footer','CUSTOMERS_AUTHORIZATION_FOOTER_OFF','false','Customer Authorization: Hide Footer <br />(true=hide false=show)',5,70,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(154,'Customer Authorization: Hide Prices','CUSTOMERS_AUTHORIZATION_PRICES_OFF','false','Customer Authorization: Hide Prices <br />(true=hide false=show)',5,71,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(155,'Customers Referral Status','CUSTOMERS_REFERRAL_STATUS','0','Customers Referral Code is created from<br />0= Off<br />1= 1st Discount Coupon Code used<br />2= Customer can add during create account or edit if blank<br /><br />NOTE: Once the Customers Referral Code has been set it can only be changed in the Admin Customer',5,80,NULL,'2018-04-19 20:31:27',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(156,'Installed Modules','MODULE_PAYMENT_INSTALLED','freecharger.php;moneyorder.php','List of payment module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: freecharger.php;cod.php;paypal.php)',6,0,NULL,'2018-04-19 20:31:27',NULL,NULL),(157,'Installed Modules','MODULE_ORDER_TOTAL_INSTALLED','ot_subtotal.php;ot_shipping.php;ot_coupon.php;ot_group_pricing.php;ot_tax.php;ot_loworderfee.php;ot_total.php','List of order_total module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: ot_subtotal.php;ot_tax.php;ot_shipping.php;ot_total.php)',6,0,'2018-05-20 17:38:39','2018-04-19 20:31:28',NULL,NULL),(158,'Installed Modules','MODULE_SHIPPING_INSTALLED','flat.php;freeshipper.php;item.php;storepickup.php','List of shipping module filenames separated by a semi-colon. This is automatically updated. No need to edit. (Example: ups.php;flat.php;item.php)',6,0,NULL,'2018-04-19 20:31:28',NULL,NULL),(159,'Enable Free Shipping','MODULE_SHIPPING_FREESHIPPER_STATUS','True','Do you want to offer Free shipping?',6,0,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(160,'Pickup Locations','MODULE_SHIPPING_STOREPICKUP_LOCATIONS_LIST','Walk In','Enter a list of locations, separated by semicolons (;).<br>Optionally you may specify a fee/surcharge for each location by adding a comma and an amount. If no amount is specified, then the generic Shipping Cost amount from the next setting will be applied.<br><br>Examples:<br>121 Main Street;20 Church Street<br>Sunnyside,4.00;Lee Park,5.00;High Street,0.00<br>Dallas;Tulsa,5.00;Phoenix,0.00<br>For multilanguage use, see the define-statement in the language file for this module.',6,0,NULL,'2018-04-19 20:31:28',NULL,NULL),(161,'Free Shipping Cost','MODULE_SHIPPING_FREESHIPPER_COST','0.00','What is the Shipping cost?',6,6,NULL,'2018-04-19 20:31:28',NULL,NULL),(162,'Handling Fee','MODULE_SHIPPING_FREESHIPPER_HANDLING','0','Handling fee for this shipping method.',6,0,NULL,'2018-04-19 20:31:28',NULL,NULL),(163,'Tax Class','MODULE_SHIPPING_FREESHIPPER_TAX_CLASS','0','Use the following tax class on the shipping fee.',6,0,NULL,'2018-04-19 20:31:28','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(164,'Shipping Zone','MODULE_SHIPPING_FREESHIPPER_ZONE','0','If a zone is selected, only enable this shipping method for that zone.',6,0,NULL,'2018-04-19 20:31:28','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(165,'Sort Order','MODULE_SHIPPING_FREESHIPPER_SORT_ORDER','0','Sort order of display.',6,0,NULL,'2018-04-19 20:31:28',NULL,NULL),(166,'Enable Store Pickup Shipping','MODULE_SHIPPING_STOREPICKUP_STATUS','True','Do you want to offer In Store rate shipping?',6,0,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(167,'Shipping Cost','MODULE_SHIPPING_STOREPICKUP_COST','0.00','The shipping cost for all orders using this shipping method.',6,0,NULL,'2018-04-19 20:31:28',NULL,NULL),(168,'Tax Class','MODULE_SHIPPING_STOREPICKUP_TAX_CLASS','0','Use the following tax class on the shipping fee.',6,0,NULL,'2018-04-19 20:31:28','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(169,'Tax Basis','MODULE_SHIPPING_STOREPICKUP_TAX_BASIS','Shipping','On what basis is Shipping Tax calculated. Options are<br />Shipping - Based on customers Shipping Address<br />Billing Based on customers Billing address<br />Store - Based on Store address if Billing/Shipping Zone equals Store zone',6,0,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'Shipping\', \'Billing\'), '),(170,'Shipping Zone','MODULE_SHIPPING_STOREPICKUP_ZONE','0','If a zone is selected, only enable this shipping method for that zone.',6,0,NULL,'2018-04-19 20:31:28','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(171,'Sort Order','MODULE_SHIPPING_STOREPICKUP_SORT_ORDER','0','Sort order of display.',6,0,NULL,'2018-04-19 20:31:28',NULL,NULL),(172,'Enable Item Shipping','MODULE_SHIPPING_ITEM_STATUS','True','Do you want to offer per item rate shipping?',6,0,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(173,'Shipping Cost','MODULE_SHIPPING_ITEM_COST','2.50','The shipping cost will be multiplied by the number of items in an order that uses this shipping method.',6,0,NULL,'2018-04-19 20:31:28',NULL,NULL),(174,'Handling Fee','MODULE_SHIPPING_ITEM_HANDLING','0','Handling fee for this shipping method.',6,0,NULL,'2018-04-19 20:31:28',NULL,NULL),(175,'Tax Class','MODULE_SHIPPING_ITEM_TAX_CLASS','0','Use the following tax class on the shipping fee.',6,0,NULL,'2018-04-19 20:31:28','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(176,'Tax Basis','MODULE_SHIPPING_ITEM_TAX_BASIS','Shipping','On what basis is Shipping Tax calculated. Options are<br />Shipping - Based on customers Shipping Address<br />Billing Based on customers Billing address<br />Store - Based on Store address if Billing/Shipping Zone equals Store zone',6,0,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'Shipping\', \'Billing\', \'Store\'), '),(177,'Shipping Zone','MODULE_SHIPPING_ITEM_ZONE','0','If a zone is selected, only enable this shipping method for that zone.',6,0,NULL,'2018-04-19 20:31:28','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(178,'Sort Order','MODULE_SHIPPING_ITEM_SORT_ORDER','0','Sort order of display.',6,0,NULL,'2018-04-19 20:31:28',NULL,NULL),(179,'Enable Free Charge Module','MODULE_PAYMENT_FREECHARGER_STATUS','True','Do you want to accept Free Charge payments?',6,1,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(180,'Sort order of display.','MODULE_PAYMENT_FREECHARGER_SORT_ORDER','0','Sort order of display. Lowest is displayed first.',6,0,NULL,'2018-04-19 20:31:28',NULL,NULL),(181,'Payment Zone','MODULE_PAYMENT_FREECHARGER_ZONE','0','If a zone is selected, only enable this payment method for that zone.',6,2,NULL,'2018-04-19 20:31:28','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(182,'Set Order Status','MODULE_PAYMENT_FREECHARGER_ORDER_STATUS_ID','2','Set the status of orders made with this payment module to this value',6,0,NULL,'2018-04-19 20:31:28','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(183,'Enable Check/Money Order Module','MODULE_PAYMENT_MONEYORDER_STATUS','True','Do you want to accept Check/Money Order payments?',6,1,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(184,'Make Payable to:','MODULE_PAYMENT_MONEYORDER_PAYTO','the Store Owner/Website Name','Who should payments be made payable to?',6,1,NULL,'2018-04-19 20:31:28',NULL,NULL),(185,'Sort order of display.','MODULE_PAYMENT_MONEYORDER_SORT_ORDER','0','Sort order of display. Lowest is displayed first.',6,0,NULL,'2018-04-19 20:31:28',NULL,NULL),(186,'Payment Zone','MODULE_PAYMENT_MONEYORDER_ZONE','0','If a zone is selected, only enable this payment method for that zone.',6,2,NULL,'2018-04-19 20:31:28','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(187,'Set Order Status','MODULE_PAYMENT_MONEYORDER_ORDER_STATUS_ID','0','Set the status of orders made with this payment module to this value',6,0,NULL,'2018-04-19 20:31:28','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(188,'Include Tax','MODULE_ORDER_TOTAL_GROUP_PRICING_INC_TAX','false','Include Tax value in amount before discount calculation?',6,6,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(189,'This module is installed','MODULE_ORDER_TOTAL_GROUP_PRICING_STATUS','true','',6,1,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\'), '),(190,'Sort Order','MODULE_ORDER_TOTAL_GROUP_PRICING_SORT_ORDER','290','Sort order of display.',6,2,NULL,'2018-04-19 20:31:28',NULL,NULL),(191,'Include Shipping','MODULE_ORDER_TOTAL_GROUP_PRICING_INC_SHIPPING','false','Include Shipping value in amount before discount calculation?',6,5,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(192,'Re-calculate Tax','MODULE_ORDER_TOTAL_GROUP_PRICING_CALC_TAX','Standard','Re-Calculate Tax',6,7,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'None\', \'Standard\', \'Credit Note\'), '),(193,'Tax Class','MODULE_ORDER_TOTAL_GROUP_PRICING_TAX_CLASS','0','Use the following tax class when treating Group Discount as Credit Note.',6,0,NULL,'2018-04-19 20:31:28','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(194,'Enable Flat Shipping','MODULE_SHIPPING_FLAT_STATUS','True','Do you want to offer flat rate shipping?',6,0,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(195,'Shipping Cost','MODULE_SHIPPING_FLAT_COST','5.00','The shipping cost for all orders using this shipping method.',6,0,NULL,'2018-04-19 20:31:28',NULL,NULL),(196,'Tax Class','MODULE_SHIPPING_FLAT_TAX_CLASS','0','Use the following tax class on the shipping fee.',6,0,NULL,'2018-04-19 20:31:28','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(197,'Tax Basis','MODULE_SHIPPING_FLAT_TAX_BASIS','Shipping','On what basis is Shipping Tax calculated. Options are<br />Shipping - Based on customers Shipping Address<br />Billing Based on customers Billing address<br />Store - Based on Store address if Billing/Shipping Zone equals Store zone',6,0,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'Shipping\', \'Billing\', \'Store\'), '),(198,'Shipping Zone','MODULE_SHIPPING_FLAT_ZONE','0','If a zone is selected, only enable this shipping method for that zone.',6,0,NULL,'2018-04-19 20:31:28','zen_get_zone_class_title','zen_cfg_pull_down_zone_classes('),(199,'Sort Order','MODULE_SHIPPING_FLAT_SORT_ORDER','0','Sort order of display.',6,0,NULL,'2018-04-19 20:31:28',NULL,NULL),(200,'Default Currency','DEFAULT_CURRENCY','USD','Default Currency',6,0,NULL,'2018-04-19 20:31:28',NULL,NULL),(201,'Default Language','DEFAULT_LANGUAGE','en','Default Language',6,0,NULL,'2018-04-19 20:31:28',NULL,NULL),(202,'Default Order Status For New Orders','DEFAULT_ORDERS_STATUS_ID','1','When a new order is created, this order status will be assigned to it.',6,0,NULL,'2018-04-19 20:31:28',NULL,NULL),(203,'Admin configuration_key shows','ADMIN_CONFIGURATION_KEY_ON','0','Manually switch to value of 1 to see the configuration_key name in configuration displays',6,0,NULL,'2018-04-19 20:31:28',NULL,NULL),(204,'Country of Origin','SHIPPING_ORIGIN_COUNTRY','223','Select the country of origin to be used in shipping quotes.',7,1,NULL,'2018-04-19 20:31:28','zen_get_country_name','zen_cfg_pull_down_country_list('),(205,'Postal Code','SHIPPING_ORIGIN_ZIP','NONE','Enter the Postal Code (ZIP) of the Store to be used in shipping quotes. NOTE: For USA zip codes, only use your 5 digit zip code.',7,2,NULL,'2018-04-19 20:31:28',NULL,NULL),(206,'Enter the Maximum Package Weight you will ship','SHIPPING_MAX_WEIGHT','50','Carriers have a max weight limit for a single package. This is a common one for all.',7,3,NULL,'2018-04-19 20:31:28',NULL,NULL),(207,'Package Tare Small to Medium - added percentage:weight','SHIPPING_BOX_WEIGHT','0:3','What is the weight of typical packaging of small to medium packages?<br />Example: 10% + 1lb 10:1<br />10% + 0lbs 10:0<br />0% + 5lbs 0:5<br />0% + 0lbs 0:0',7,4,NULL,'2018-04-19 20:31:28',NULL,NULL),(208,'Larger packages - added packaging percentage:weight','SHIPPING_BOX_PADDING','10:0','What is the weight of typical packaging for Large packages?<br />Example: 10% + 1lb 10:1<br />10% + 0lbs 10:0<br />0% + 5lbs 0:5<br />0% + 0lbs 0:0',7,5,NULL,'2018-04-19 20:31:28',NULL,NULL),(209,'Display Number of Boxes and Weight Status','SHIPPING_BOX_WEIGHT_DISPLAY','3','Display Shipping Weight and Number of Boxes?<br /><br />0= off<br />1= Boxes Only<br />2= Weight Only<br />3= Both Boxes and Weight',7,15,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(210,'Shipping Estimator Display Settings for Shopping Cart','SHOW_SHIPPING_ESTIMATOR_BUTTON','2','<br />0= Off<br />1= Display as Button on Shopping Cart<br />2= Display as Listing on Shopping Cart Page',7,20,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(211,'Display Order Comments on Admin Invoice','ORDER_COMMENTS_INVOICE','1','Do you want to display the Order Comments on the Admin Invoice?<br />0= OFF<br />1= First Comment by Customer only<br />2= All Comments for the Order',7,25,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(212,'Display Order Comments on Admin Packing Slip','ORDER_COMMENTS_PACKING_SLIP','1','Do you want to display the Order Comments on the Admin Packing Slip?<br />0= OFF<br />1= First Comment by Customer only<br />2= All Comments for the Order',7,26,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(213,'Order Free Shipping 0 Weight Status','ORDER_WEIGHT_ZERO_STATUS','0','If there is no weight to the order, does the order have Free Shipping?<br />0= no<br />1= yes<br /><br />Note: When using Free Shipping, Enable the Free Shipping Module this will only show when shipping is free.',7,15,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(214,'Display Product Image','PRODUCT_LIST_IMAGE','1','Do you want to display the Product Image?',8,1,NULL,'2018-04-19 20:31:28',NULL,NULL),(215,'Display Product Manufacturer Name','PRODUCT_LIST_MANUFACTURER','0','Do you want to display the Product Manufacturer Name?',8,2,NULL,'2018-04-19 20:31:28',NULL,NULL),(216,'Display Product Model','PRODUCT_LIST_MODEL','0','Do you want to display the Product Model?',8,3,'2018-05-28 11:59:53','2018-04-19 20:31:28',NULL,NULL),(217,'Display Product Name','PRODUCT_LIST_NAME','0','Do you want to display the Product Name?',8,4,'2018-05-28 12:01:13','2018-04-19 20:31:28',NULL,NULL),(218,'Display Product Price/Add to Cart','PRODUCT_LIST_PRICE','1','Do you want to display the Product Price/Add to Cart',8,5,'2018-05-28 12:03:01','2018-04-19 20:31:28',NULL,NULL),(219,'Display Product Quantity','PRODUCT_LIST_QUANTITY','0','Do you want to display the Product Quantity?',8,6,NULL,'2018-04-19 20:31:28',NULL,NULL),(220,'Display Product Weight','PRODUCT_LIST_WEIGHT','0','Do you want to display the Product Weight?',8,7,'2018-05-28 12:00:43','2018-04-19 20:31:28',NULL,NULL),(221,'Display Product Price/Add to Cart Column Width','PRODUCTS_LIST_PRICE_WIDTH','100','Define the width of the Price/Add to Cart column<br />Default= 125',8,8,'2018-05-28 12:04:55','2018-04-19 20:31:28',NULL,NULL),(222,'Display Category/Manufacturer Filter (0=off; 1=on)','PRODUCT_LIST_FILTER','0','Do you want to display the Category/Manufacturer Filter?',8,9,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(223,'Prev/Next Split Page Navigation (1-top, 2-bottom, 3-both)','PREV_NEXT_BAR_LOCATION','3','Sets the location of the Prev/Next Split Page Navigation',8,10,'2018-05-28 10:39:54','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\'), '),(224,'Display Product Listing Default Sort Order','PRODUCT_LISTING_DEFAULT_SORT_ORDER','','Product Listing Default sort order?<br />NOTE: Leave Blank for Product Sort Order. Sort the Product Listing in the order you wish for the default display to start in to get the sort order setting. Example: 2a',8,15,'2018-05-28 13:21:53','2018-04-19 20:31:28',NULL,NULL),(225,'Display Product Add to Cart Button (0=off; 1=on; 2=on with Qty Box per Product)','PRODUCT_LIST_PRICE_BUY_NOW','1','Do you want to display the Add to Cart Button?<br /><br /><strong>NOTE:</strong> Turn OFF Display Multiple Products Qty Box Status to use Option 2 on with Qty Box per Product',8,20,'2018-05-28 10:40:30','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(226,'Display Multiple Products Qty Box Status and Set Button Location','PRODUCT_LISTING_MULTIPLE_ADD_TO_CART','0','Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both',8,25,'2018-05-28 12:06:26','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(227,'Display Product Description','PRODUCT_LIST_DESCRIPTION','1','Do you want to display the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display',8,30,'2018-05-28 13:22:10','2018-04-19 20:31:28',NULL,NULL),(228,'Product Listing Ascending Sort Order','PRODUCT_LIST_SORT_ORDER_ASCENDING','+','What do you want to use to indicate Sort Order Ascending?<br />Default = +',8,40,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_textarea_small('),(229,'Product Listing Descending Sort Order','PRODUCT_LIST_SORT_ORDER_DESCENDING','-','What do you want to use to indicate Sort Order Descending?<br />Default = -',8,41,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_textarea_small('),(230,'Include Product Listing Alpha Sorter Dropdown','PRODUCT_LIST_ALPHA_SORTER','false','Do you want to include an Alpha Filter dropdown on the Product Listing?',8,50,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(231,'Include Product Listing Sub Categories Image','PRODUCT_LIST_CATEGORIES_IMAGE_STATUS','true','Do you want to include the Sub Categories Image on the Product Listing?',8,52,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(232,'Include Product Listing Top Categories Image','PRODUCT_LIST_CATEGORIES_IMAGE_STATUS_TOP','true','Do you want to include the Top Categories Image on the Product Listing?',8,53,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(233,'Show SubCategories on Main Page while navigating','PRODUCT_LIST_CATEGORY_ROW_STATUS','1','Show Sub-Categories on Main Page while navigating through Categories<br /><br />0= off<br />1= on',8,60,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(234,'Check stock level','STOCK_CHECK','true','Check to see if sufficent stock is available',9,1,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(235,'Subtract stock','STOCK_LIMITED','true','Subtract product in stock by product orders',9,2,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(236,'Allow Checkout','STOCK_ALLOW_CHECKOUT','true','Allow customer to checkout even if there is insufficient stock',9,3,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(237,'Mark product out of stock','STOCK_MARK_PRODUCT_OUT_OF_STOCK','***','Display something on screen so customer can see which product has insufficient stock',9,4,NULL,'2018-04-19 20:31:28',NULL,NULL),(238,'Stock Re-order level','STOCK_REORDER_LEVEL','5','Define when stock needs to be re-ordered',9,5,NULL,'2018-04-19 20:31:28',NULL,NULL),(239,'Products status in Catalog when out of stock should be set to','SHOW_PRODUCTS_SOLD_OUT','0','Show Products when out of stock<br /><br />0= set product status to OFF<br />1= leave product status ON',9,10,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(240,'Show Sold Out Image in place of Add to Cart','SHOW_PRODUCTS_SOLD_OUT_IMAGE','1','Show Sold Out Image instead of Add to Cart Button<br /><br />0= off<br />1= on',9,11,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(241,'Product Quantity Decimals','QUANTITY_DECIMALS','0','Allow how many decimals on Quantity<br /><br />0= off',9,15,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(242,'Show Shopping Cart - Delete Checkboxes or Delete Button','SHOW_SHOPPING_CART_DELETE','1','Show on Shopping Cart Delete Button and/or Checkboxes<br /><br />1= Delete Button Only<br />2= Checkbox Only<br />3= Both Delete Button and Checkbox',9,20,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\'), '),(243,'Show Shopping Cart - Update Cart Button Location','SHOW_SHOPPING_CART_UPDATE','1','Show on Shopping Cart Update Cart Button Location as:<br /><br />1= Next to each Qty Box<br />2= Below all Products<br />3= Both Next to each Qty Box and Below all Products',9,22,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\'), '),(244,'Show New Products on empty Shopping Cart Page','SHOW_SHOPPING_CART_EMPTY_NEW_PRODUCTS','1','Show New Products on empty Shopping Cart Page<br />0= off or set the sort order',9,30,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(245,'Show Featured Products on empty Shopping Cart Page','SHOW_SHOPPING_CART_EMPTY_FEATURED_PRODUCTS','2','Show Featured Products on empty Shopping Cart Page<br />0= off or set the sort order',9,31,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(246,'Show Special Products on empty Shopping Cart Page','SHOW_SHOPPING_CART_EMPTY_SPECIALS_PRODUCTS','3','Show Special Products on empty Shopping Cart Page<br />0= off or set the sort order',9,32,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(247,'Show Upcoming Products on empty Shopping Cart Page','SHOW_SHOPPING_CART_EMPTY_UPCOMING','4','Show Upcoming Products on empty Shopping Cart Page<br />0= off or set the sort order',9,33,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(248,'Show Notice of Combining Shopping Cart on Login','SHOW_SHOPPING_CART_COMBINED','1','When a customer logs in and has a previously stored shopping cart, the products are combined with the existing shopping cart.<br /><br />Do you wish to display a Notice to the customer?<br /><br />0= OFF, do not display a notice<br />1= Yes show notice and go to shopping cart<br />2= Yes show notice, but do not go to shopping cart',9,35,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(249,'Log Page Parse Time','STORE_PAGE_PARSE_TIME','false','Record (to a log file) the time it takes to parse a page',10,1,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(250,'Log Destination','STORE_PAGE_PARSE_TIME_LOG','/page_parse_time.log','Directory and filename of the page parse time log',10,2,NULL,'2018-04-19 20:31:28',NULL,NULL),(251,'Log Date Format','STORE_PARSE_DATE_TIME_FORMAT','%d/%m/%Y %H:%M:%S','The date format',10,3,NULL,'2018-04-19 20:31:28',NULL,NULL),(252,'Display The Page Parse Time','DISPLAY_PAGE_PARSE_TIME','false','Display the page parse time on the bottom of each page<br />(Note: This DISPLAYS them. You do NOT need to LOG them to merely display them on your site.)',10,4,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(253,'Log Database Queries','STORE_DB_TRANSACTIONS','false','Record the database queries to files in the system /logs/ folder. USE WITH CAUTION. This can seriously degrade your site performance and blow out your disk space storage quotas.<br><strong>Enabling this makes your site NON-COMPLIANT with PCI DSS rules, thus invalidating any certification.</strong>',10,5,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(254,'E-Mail Transport Method','EMAIL_TRANSPORT','PHP','Defines the method for sending mail.<br /><strong>PHP</strong> is the default, and uses built-in PHP wrappers for processing.<br />Servers running on Windows and MacOS should change this setting to <strong>SMTP</strong>.<br /><br /><strong>SMTPAUTH</strong> should only be used if your server requires SMTP authorization to send messages. You must also configure your SMTPAUTH settings in the appropriate fields in this admin section.<br /><br /><strong>sendmail</strong> is for linux/unix hosts using the sendmail program on the server<br /><strong>\"sendmail-f\"</strong> is only for servers which require the use of the -f parameter to send mail. This is a security setting often used to prevent spoofing. Will cause errors if your host mailserver is not configured to use it.<br /><br /><strong>Qmail</strong> is used for linux/unix hosts running Qmail as sendmail wrapper at /var/qmail/bin/sendmail.',12,1,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'PHP\', \'sendmail\', \'sendmail-f\', \'smtp\', \'smtpauth\', \'Qmail\'),'),(255,'SMTP Email Account Mailbox','EMAIL_SMTPAUTH_MAILBOX','YourEmailAccountNameHere','Enter the mailbox account name (me@mydomain.com) supplied by your host. This is the account name that your host requires for SMTP authentication.<br />Only required if using SMTP Authentication for email.',12,101,NULL,'2018-04-19 20:31:28',NULL,NULL),(256,'SMTP Email Account Password','EMAIL_SMTPAUTH_PASSWORD','YourPasswordHere','Enter the password for your SMTP mailbox. <br />Only required if using SMTP Authentication for email.',12,101,NULL,'2018-04-19 20:31:28','zen_cfg_password_display',NULL),(257,'SMTP Email Mail Host','EMAIL_SMTPAUTH_MAIL_SERVER','mail.EnterYourDomain.com','Enter the DNS name of your SMTP mail server.<br />ie: mail.mydomain.com<br />or 55.66.77.88<br />Only required if using SMTP Authentication for email.',12,101,NULL,'2018-04-19 20:31:28',NULL,NULL),(258,'SMTP Email Mail Server Port','EMAIL_SMTPAUTH_MAIL_SERVER_PORT','25','Enter the IP port number that your SMTP mailserver operates on.<br />Only required if using SMTP Authentication for email.<br><br>Default: 25<br>Typical values are:<br>25 - normal unencrypted SMTP<br>587 - encrypted SMTP<br>465 - older MS SMTP port',12,101,NULL,'2018-04-19 20:31:28',NULL,NULL),(259,'Send E-Mails','SEND_EMAILS','true','Send out e-mails?<br>Normally this is set to true.<br>Set to false to suppress ALL outgoing email messages from this store, such as when working with a test copy of your store offline.',12,1,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(260,'E-Mail Linefeeds','EMAIL_LINEFEED','LF','Defines the character sequence used to separate mail headers.',12,2,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'LF\', \'CRLF\'),'),(261,'Enable HTML Emails?','EMAIL_USE_HTML','false','Send emails in HTML format if recipient has enabled it in their preferences.',12,3,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(262,'Verify E-Mail Addresses Through DNS','ENTRY_EMAIL_ADDRESS_CHECK','false','Verify e-mail address through a DNS server',6,6,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(263,'Email Archiving Active?','EMAIL_ARCHIVE','false','If you wish to have email messages archived/stored when sent, set this to \"true\".',12,6,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(264,'E-Mail Friendly-Errors','EMAIL_FRIENDLY_ERRORS','true','Do you want to display friendly errors if emails fail?  Setting this to false will display PHP errors and likely cause the script to fail. Only set to false while troubleshooting, and true for a live shop.',12,7,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(265,'Email Address (Displayed to Contact you)','STORE_OWNER_EMAIL_ADDRESS','jack.b@aaasurvivalproducts.com','Email address of Store Owner.  Used as \"display only\" when informing customers of how to contact you.',12,10,NULL,'2018-04-19 20:31:28',NULL,NULL),(266,'Email Address (sent FROM)','EMAIL_FROM','jack.b@aaasurvivalproducts.com','Address from which email messages will be \"sent\" by default. Can be over-ridden at compose-time in admin modules.',12,11,NULL,'2018-04-19 20:31:28',NULL,NULL),(267,'Emails must send from known domain?','EMAIL_SEND_MUST_BE_STORE','Yes','Does your mailserver require that all outgoing emails have their \"from\" address match a known domain that exists on your webserver?<br /><br />This is often required in order to prevent spoofing and spam broadcasts.  If set to Yes, this will cause the email address (sent FROM) to be used as the \"from\" address on all outgoing mail.',12,11,NULL,'0001-01-01 00:00:00',NULL,'zen_cfg_select_option(array(\'No\', \'Yes\'), '),(268,'Email Admin Format?','ADMIN_EXTRA_EMAIL_FORMAT','TEXT','Please select the Admin extra email format (Note: Enable HTML Emails must be on for HTML option to work)',12,12,NULL,'0001-01-01 00:00:00',NULL,'zen_cfg_select_option(array(\'TEXT\', \'HTML\'), '),(269,'Send Copy of Order Confirmation Emails To','SEND_EXTRA_ORDER_EMAILS_TO','jack.b@aaasurvivalproducts.com','Send COPIES of order confirmation emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,12,NULL,'2018-04-19 20:31:28',NULL,NULL),(270,'Send Copy of Create Account Emails To - Status','SEND_EXTRA_CREATE_ACCOUNT_EMAILS_TO_STATUS','0','Send copy of Create Account Status<br />0= off 1= on',12,13,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(271,'Send Copy of Create Account Emails To','SEND_EXTRA_CREATE_ACCOUNT_EMAILS_TO','jack.b@aaasurvivalproducts.com','Send copy of Create Account emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,14,NULL,'2018-04-19 20:31:28',NULL,NULL),(272,'Send Copy of Customer GV Send Emails To - Status','SEND_EXTRA_GV_CUSTOMER_EMAILS_TO_STATUS','0','Send copy of Customer GV Send Status<br />0= off 1= on',12,17,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(273,'Send Copy of Customer GV Send Emails To','SEND_EXTRA_GV_CUSTOMER_EMAILS_TO','jack.b@aaasurvivalproducts.com','Send copy of Customer GV Send emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,18,NULL,'2018-04-19 20:31:28',NULL,NULL),(274,'Send Copy of Admin GV Mail Emails To - Status','SEND_EXTRA_GV_ADMIN_EMAILS_TO_STATUS','0','Send copy of Admin GV Mail Status<br />0= off 1= on',12,19,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(275,'Send Copy of Customer Admin GV Mail Emails To','SEND_EXTRA_GV_ADMIN_EMAILS_TO','jack.b@aaasurvivalproducts.com','Send copy of Admin GV Mail emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,20,NULL,'2018-04-19 20:31:28',NULL,NULL),(276,'Send Copy of Admin Discount Coupon Mail Emails To - Status','SEND_EXTRA_DISCOUNT_COUPON_ADMIN_EMAILS_TO_STATUS','0','Send copy of Admin Discount Coupon Mail Status<br />0= off 1= on',12,21,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(277,'Send Copy of Customer Admin Discount Coupon Mail Emails To','SEND_EXTRA_DISCOUNT_COUPON_ADMIN_EMAILS_TO','jack.b@aaasurvivalproducts.com','Send copy of Admin Discount Coupon Mail emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,22,NULL,'2018-04-19 20:31:28',NULL,NULL),(278,'Send Copy of Admin Orders Status Emails To - Status','SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO_STATUS','0','Send copy of Admin Orders Status Status<br />0= off 1= on',12,23,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(279,'Send Copy of Admin Orders Status Emails To','SEND_EXTRA_ORDERS_STATUS_ADMIN_EMAILS_TO','jack.b@aaasurvivalproducts.com','Send copy of Admin Orders Status emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,24,NULL,'2018-04-19 20:31:28',NULL,NULL),(280,'Send Notice of Pending Reviews Emails To - Status','SEND_EXTRA_REVIEW_NOTIFICATION_EMAILS_TO_STATUS','0','Send copy of Pending Reviews Status<br />0= off 1= on',12,25,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(281,'Send Notice of Pending Reviews Emails To','SEND_EXTRA_REVIEW_NOTIFICATION_EMAILS_TO','jack.b@aaasurvivalproducts.com','Send copy of Pending Reviews emails to the following email addresses, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,26,NULL,'2018-04-19 20:31:28',NULL,NULL),(282,'Set \"Contact Us\" Email Dropdown List','CONTACT_US_LIST','','On the \"Contact Us\" Page, set the list of email addresses , in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,40,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_textarea('),(283,'Contact Us - Show Store Name and Address','CONTACT_US_STORE_NAME_ADDRESS','1','Include Store Name and Address<br />0= off 1= on',12,50,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(284,'Send Low Stock Emails','SEND_LOWSTOCK_EMAIL','0','When stock level is at or below low stock level send an email<br />0= off<br />1= on',12,60,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(285,'Send Low Stock Emails To','SEND_EXTRA_LOW_STOCK_EMAILS_TO','jack.b@aaasurvivalproducts.com','When stock level is at or below low stock level send an email to this address, in this format: Name 1 &lt;email@address1&gt;, Name 2 &lt;email@address2&gt;',12,61,NULL,'2018-04-19 20:31:28',NULL,NULL),(286,'Display \"Newsletter Unsubscribe\" Link?','SHOW_NEWSLETTER_UNSUBSCRIBE_LINK','true','Show \"Newsletter Unsubscribe\" link in the \"Information\" side-box?',12,70,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(287,'Audience-Select Count Display','AUDIENCE_SELECT_DISPLAY_COUNTS','true','When displaying lists of available audiences/recipients, should the recipients-count be included? <br /><em>(This may make things slower if you have a lot of customers or complex audience queries)</em>',12,90,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(288,'Enable Downloads','DOWNLOAD_ENABLED','true','Enable the products download functions.',13,1,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(289,'Download by Redirect','DOWNLOAD_BY_REDIRECT','true','Use browser redirection for download. Disable on non-Unix systems.<br /><br />Note: Set /pub to 777 when redirect is true',13,2,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(290,'Download by streaming','DOWNLOAD_IN_CHUNKS','false','If download-by-redirect is disabled, and your PHP memory_limit setting is under 8 MB, you might need to enable this setting so that files are streamed in smaller segments to the browser.<br /><br />Has no effect if Download By Redirect is enabled.',13,2,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(291,'Download Expiration (Number of Days)','DOWNLOAD_MAX_DAYS','7','Set number of days before the download link expires. 0 means no limit.',13,3,NULL,'2018-04-19 20:31:28',NULL,''),(292,'Number of Downloads Allowed - Per Product','DOWNLOAD_MAX_COUNT','5','Set the maximum number of downloads. 0 means no download authorized.',13,4,NULL,'2018-04-19 20:31:28',NULL,''),(293,'Downloads Controller Update Status Value','DOWNLOADS_ORDERS_STATUS_UPDATED_VALUE','4','What orders_status resets the Download days and Max Downloads - Default is 4',13,10,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,NULL),(294,'Downloads Controller Order Status Value >= lower value','DOWNLOADS_CONTROLLER_ORDERS_STATUS','2','Downloads Controller Order Status Value - Default >= 2<br /><br />Downloads are available for checkout based on the orders status. Orders with orders status greater than this value will be available for download. The orders status is set for an order by the Payment Modules. Set the lower range for this range.',13,12,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,NULL),(295,'Downloads Controller Order Status Value <= upper value','DOWNLOADS_CONTROLLER_ORDERS_STATUS_END','4','Downloads Controller Order Status Value - Default <= 4<br /><br />Downloads are available for checkout based on the orders status. Orders with orders status less than this value will be available for download. The orders status is set for an order by the Payment Modules.  Set the upper range for this range.',13,13,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,NULL),(296,'Enable Price Factor','ATTRIBUTES_ENABLED_PRICE_FACTOR','true','Enable the Attributes Price Factor.',13,25,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(297,'Enable Qty Price Discount','ATTRIBUTES_ENABLED_QTY_PRICES','true','Enable the Attributes Quantity Price Discounts.',13,26,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(298,'Enable Attribute Images','ATTRIBUTES_ENABLED_IMAGES','true','Enable the Attributes Images.',13,28,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(299,'Enable Text Pricing by word or letter','ATTRIBUTES_ENABLED_TEXT_PRICES','true','Enable the Attributes Text Pricing by word or letter.',13,35,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(300,'Text Pricing - Spaces are Free','TEXT_SPACES_FREE','1','On Text pricing Spaces are Free<br /><br />0= off 1= on',13,36,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(301,'Read Only option type - Ignore for Add to Cart','PRODUCTS_OPTIONS_TYPE_READONLY_IGNORED','1','When a Product only uses READONLY attributes, should the Add to Cart button be On or Off?<br />0= OFF<br />1= ON',13,37,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(302,'Enable GZip Compression','GZIP_LEVEL','0','0= off 1= on',14,1,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(303,'Session Directory','SESSION_WRITE_DIRECTORY','/tmp','This should point to the folder specified in your DIR_FS_SQL_CACHE setting in your configure.php files.',15,1,NULL,'2018-04-19 20:31:28',NULL,NULL),(304,'Cookie Domain','SESSION_USE_FQDN','True','If True the full domain name will be used to store the cookie, e.g. www.mydomain.com. If False only a partial domain name will be used, e.g. mydomain.com. If you are unsure about this, always leave set to true.',15,2,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(305,'Force Cookie Use','SESSION_FORCE_COOKIE_USE','False','Force the use of sessions when cookies are only enabled.',15,2,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(306,'Check SSL Session ID','SESSION_CHECK_SSL_SESSION_ID','False','Validate the SSL_SESSION_ID on every secure HTTPS page request.',15,3,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(307,'Check User Agent','SESSION_CHECK_USER_AGENT','False','Validate the clients browser user agent on every page request.',15,4,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(308,'Check IP Address','SESSION_CHECK_IP_ADDRESS','False','Validate the clients IP address on every page request.',15,5,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(309,'Prevent Spider Sessions','SESSION_BLOCK_SPIDERS','True','Prevent known spiders from starting a session.',15,6,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(310,'Recreate Session','SESSION_RECREATE','True','Recreate the session to generate a new session ID when the customer logs on or creates an account (PHP >=4.1 needed).',15,7,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(311,'IP to Host Conversion Status','SESSION_IP_TO_HOST_ADDRESS','true','Convert IP Address to Host Address<br /><br />Note: on some servers this can slow down the initial start of a session or execution of Emails',15,10,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(312,'Length of the redeem code','SECURITY_CODE_LENGTH','10','Enter the length of the redeem code<br />The longer the more secure',16,1,NULL,'2018-04-19 20:31:28',NULL,NULL),(313,'Default Order Status For Zero Balance Orders','DEFAULT_ZERO_BALANCE_ORDERS_STATUS_ID','2','When an order\'s balance is zero, this order status will be assigned to it.',16,0,NULL,'2018-04-19 20:31:28','zen_get_order_status_name','zen_cfg_pull_down_order_statuses('),(314,'New Signup Discount Coupon ID#','NEW_SIGNUP_DISCOUNT_COUPON','','Select the coupon<br />',16,75,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_coupon_id('),(315,'New Signup Gift Voucher Amount','NEW_SIGNUP_GIFT_VOUCHER_AMOUNT','','Leave blank for none<br />Or enter an amount ie. 10 for $10.00',16,76,NULL,'2018-04-19 20:31:28',NULL,NULL),(316,'Maximum Discount Coupons Per Page','MAX_DISPLAY_SEARCH_RESULTS_DISCOUNT_COUPONS','20','Number of Discount Coupons to list per Page',16,81,NULL,'2018-04-19 20:31:28',NULL,NULL),(317,'Maximum Discount Coupon Report Results Per Page','MAX_DISPLAY_SEARCH_RESULTS_DISCOUNT_COUPONS_REPORTS','20','Number of Discount Coupons to list on Reports Page',16,81,NULL,'2018-04-19 20:31:28',NULL,NULL),(318,'Credit Card Enable Status - VISA','CC_ENABLED_VISA','1','Accept VISA 0= off 1= on',17,1,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(319,'Credit Card Enable Status - MasterCard','CC_ENABLED_MC','1','Accept MasterCard 0= off 1= on',17,2,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(320,'Credit Card Enable Status - AmericanExpress','CC_ENABLED_AMEX','0','Accept AmericanExpress 0= off 1= on',17,3,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(321,'Credit Card Enable Status - Diners Club','CC_ENABLED_DINERS_CLUB','0','Accept Diners Club 0= off 1= on',17,4,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(322,'Credit Card Enable Status - Discover Card','CC_ENABLED_DISCOVER','0','Accept Discover Card 0= off 1= on',17,5,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(323,'Credit Card Enable Status - JCB','CC_ENABLED_JCB','0','Accept JCB 0= off 1= on',17,6,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(324,'Credit Card Enable Status - AUSTRALIAN BANKCARD','CC_ENABLED_AUSTRALIAN_BANKCARD','0','Accept AUSTRALIAN BANKCARD 0= off 1= on',17,7,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(325,'Credit Card Enable Status - SOLO','CC_ENABLED_SOLO','0','Accept SOLO Card 0= off 1= on',17,8,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(326,'Credit Card Enable Status - Debit','CC_ENABLED_DEBIT','0','Accept Debit Cards 0= off 1= on<br>NOTE: This is not deeply integrated at this time, and this setting may be redundant if your payment modules do not yet specifically have code to honour this switch.',17,9,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(327,'Credit Card Enable Status - Maestro','CC_ENABLED_MAESTRO','0','Accept MAESTRO Card 0= off 1= on',17,10,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(328,'Credit Card Enabled - Show on Payment','SHOW_ACCEPTED_CREDIT_CARDS','0','Show accepted credit cards on Payment page?<br />0= off<br />1= As Text<br />2= As Images<br /><br />Note: images and text must be defined in both the database and language file for specific credit card types.',17,50,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(338,'This module is installed','MODULE_ORDER_TOTAL_LOWORDERFEE_STATUS','true','',6,1,NULL,'2003-10-30 22:16:43',NULL,'zen_cfg_select_option(array(\'true\'),'),(339,'Sort Order','MODULE_ORDER_TOTAL_LOWORDERFEE_SORT_ORDER','400','Sort order of display.',6,2,NULL,'2003-10-30 22:16:43',NULL,NULL),(340,'Allow Low Order Fee','MODULE_ORDER_TOTAL_LOWORDERFEE_LOW_ORDER_FEE','false','Do you want to allow low order fees?',6,3,NULL,'2003-10-30 22:16:43',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(341,'Order Fee For Orders Under','MODULE_ORDER_TOTAL_LOWORDERFEE_ORDER_UNDER','50','Add the low order fee to orders under this amount.',6,4,NULL,'2003-10-30 22:16:43','currencies->format',NULL),(342,'Order Fee','MODULE_ORDER_TOTAL_LOWORDERFEE_FEE','5','For Percentage Calculation - include a % Example: 10%<br />For a flat amount just enter the amount - Example: 5 for $5.00',6,5,NULL,'2003-10-30 22:16:43','',NULL),(343,'Attach Low Order Fee On Orders Made','MODULE_ORDER_TOTAL_LOWORDERFEE_DESTINATION','both','Attach low order fee for orders sent to the set destination.',6,6,NULL,'2003-10-30 22:16:43',NULL,'zen_cfg_select_option(array(\'national\', \'international\', \'both\'),'),(344,'Tax Class','MODULE_ORDER_TOTAL_LOWORDERFEE_TAX_CLASS','0','Use the following tax class on the low order fee.',6,7,NULL,'2003-10-30 22:16:43','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(345,'No Low Order Fee on Virtual Products','MODULE_ORDER_TOTAL_LOWORDERFEE_VIRTUAL','false','Do not charge Low Order Fee when cart is Virtual Products Only',6,8,NULL,'2004-04-20 22:16:43',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(346,'No Low Order Fee on Gift Vouchers','MODULE_ORDER_TOTAL_LOWORDERFEE_GV','false','Do not charge Low Order Fee when cart is Gift Vouchers Only',6,9,NULL,'2004-04-20 22:16:43',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(347,'This module is installed','MODULE_ORDER_TOTAL_SHIPPING_STATUS','true','',6,1,NULL,'2003-10-30 22:16:46',NULL,'zen_cfg_select_option(array(\'true\'),'),(348,'Sort Order','MODULE_ORDER_TOTAL_SHIPPING_SORT_ORDER','200','Sort order of display.',6,2,NULL,'2003-10-30 22:16:46',NULL,NULL),(349,'Allow Free Shipping','MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING','false','Do you want to allow free shipping?',6,3,NULL,'2003-10-30 22:16:46',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(350,'Free Shipping For Orders Over','MODULE_ORDER_TOTAL_SHIPPING_FREE_SHIPPING_OVER','50','Provide free shipping for orders over the set amount.',6,4,NULL,'2003-10-30 22:16:46','currencies->format',NULL),(351,'Provide Free Shipping For Orders Made','MODULE_ORDER_TOTAL_SHIPPING_DESTINATION','national','Provide free shipping for orders sent to the set destination.',6,5,NULL,'2003-10-30 22:16:46',NULL,'zen_cfg_select_option(array(\'national\', \'international\', \'both\'),'),(352,'This module is installed','MODULE_ORDER_TOTAL_SUBTOTAL_STATUS','true','',6,1,NULL,'2003-10-30 22:16:49',NULL,'zen_cfg_select_option(array(\'true\'),'),(353,'Sort Order','MODULE_ORDER_TOTAL_SUBTOTAL_SORT_ORDER','100','Sort order of display.',6,2,NULL,'2003-10-30 22:16:49',NULL,NULL),(354,'This module is installed','MODULE_ORDER_TOTAL_TAX_STATUS','true','',6,1,NULL,'2003-10-30 22:16:52',NULL,'zen_cfg_select_option(array(\'true\'),'),(355,'Sort Order','MODULE_ORDER_TOTAL_TAX_SORT_ORDER','300','Sort order of display.',6,2,NULL,'2003-10-30 22:16:52',NULL,NULL),(356,'This module is installed','MODULE_ORDER_TOTAL_TOTAL_STATUS','true','',6,1,NULL,'2003-10-30 22:16:55',NULL,'zen_cfg_select_option(array(\'true\'),'),(357,'Sort Order','MODULE_ORDER_TOTAL_TOTAL_SORT_ORDER','999','Sort order of display.',6,2,NULL,'2003-10-30 22:16:55',NULL,NULL),(358,'Tax Class','MODULE_ORDER_TOTAL_COUPON_TAX_CLASS','0','Use the following tax class when treating Discount Coupon as Credit Note.',6,0,NULL,'2003-10-30 22:16:36','zen_get_tax_class_title','zen_cfg_pull_down_tax_classes('),(359,'Include Tax','MODULE_ORDER_TOTAL_COUPON_INC_TAX','false','Include Tax in calculation.',6,6,NULL,'2003-10-30 22:16:36',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(360,'Sort Order','MODULE_ORDER_TOTAL_COUPON_SORT_ORDER','280','Sort order of display.',6,2,NULL,'2003-10-30 22:16:36',NULL,NULL),(361,'Include Shipping','MODULE_ORDER_TOTAL_COUPON_INC_SHIPPING','false','Include Shipping in calculation',6,5,NULL,'2003-10-30 22:16:36',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(362,'This module is installed','MODULE_ORDER_TOTAL_COUPON_STATUS','true','',6,1,NULL,'2003-10-30 22:16:36',NULL,'zen_cfg_select_option(array(\'true\'),'),(363,'Re-calculate Tax','MODULE_ORDER_TOTAL_COUPON_CALC_TAX','Standard','Re-Calculate Tax',6,7,NULL,'2003-10-30 22:16:36',NULL,'zen_cfg_select_option(array(\'None\', \'Standard\', \'Credit Note\'),'),(364,'Admin Demo Status','ADMIN_DEMO','0','Admin Demo should be on?<br />0= off 1= on',6,0,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(365,'Product option type Select','PRODUCTS_OPTIONS_TYPE_SELECT','0','The number representing the Select type of product option.',6,NULL,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,NULL),(366,'Text product option type','PRODUCTS_OPTIONS_TYPE_TEXT','1','Numeric value of the text product option type',6,NULL,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,NULL),(367,'Radio button product option type','PRODUCTS_OPTIONS_TYPE_RADIO','2','Numeric value of the radio button product option type',6,NULL,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,NULL),(368,'Check box product option type','PRODUCTS_OPTIONS_TYPE_CHECKBOX','3','Numeric value of the check box product option type',6,NULL,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,NULL),(369,'File product option type','PRODUCTS_OPTIONS_TYPE_FILE','4','Numeric value of the file product option type',6,NULL,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,NULL),(370,'ID for text and file products options values','PRODUCTS_OPTIONS_VALUES_TEXT_ID','0','Numeric value of the products_options_values_id used by the text and file attributes.',6,NULL,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,NULL),(371,'Upload prefix','UPLOAD_PREFIX','upload_','Prefix used to differentiate between upload options and other options',6,NULL,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,NULL),(372,'Text prefix','TEXT_PREFIX','txt_','Prefix used to differentiate between text option values and other option values',6,NULL,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,NULL),(373,'Read Only option type','PRODUCTS_OPTIONS_TYPE_READONLY','5','Numeric value of the file product option type',6,NULL,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,NULL),(374,'login mode https','SSLPWSTATUSCHECK','0:0','System setting. Do not edit.',6,99,'2018-04-19 20:35:33','2018-04-19 20:31:28',NULL,NULL),(375,'Products Info - Products Option Name Sort Order','PRODUCTS_OPTIONS_SORT_ORDER','0','Sort order of Option Names for Products Info<br />0= Sort Order, Option Name<br />1= Option Name',18,35,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(376,'Products Info - Product Option Value of Attributes Sort Order','PRODUCTS_OPTIONS_SORT_BY_PRICE','1','Sort order of Product Option Values of Attributes for Products Info<br />0= Sort Order, Price<br />1= Sort Order, Option Value Name',18,36,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(377,'Product Info - Show Option Values Name Below Attributes Image','PRODUCT_IMAGES_ATTRIBUTES_NAMES','1','Product Info - Show the name of the Option Value beneath the Attribute Image?<br />0= off 1= on',18,41,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(378,'Product Info - Show Sales Discount Savings Status','SHOW_SALE_DISCOUNT_STATUS','1','Product Info - Show the amount of discount savings?<br />0= off 1= on',18,45,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(379,'Product Info - Show Sales Discount Savings Dollars or Percentage','SHOW_SALE_DISCOUNT','1','Product Info - Show the amount of discount savings display as:<br />1= % off 2= $amount off',18,46,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'1\', \'2\'), '),(380,'Product Info - Show Sales Discount Savings Percentage Decimals','SHOW_SALE_DISCOUNT_DECIMALS','0','Product Info - Show discount savings display as a Percentage with how many decimals?:<br />Default= 0',18,47,NULL,'2018-04-19 20:31:28',NULL,NULL),(381,'Product Info - Price is Free Image or Text Status','OTHER_IMAGE_PRICE_IS_FREE_ON','1','Product Info - Show the Price is Free Image or Text on Displayed Price<br />0= Text<br />1= Image',18,50,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(382,'Product Info - Price is Call for Price Image or Text Status','PRODUCTS_PRICE_IS_CALL_IMAGE_ON','1','Product Info - Show the Price is Call for Price Image or Text on Displayed Price<br />0= Text<br />1= Image',18,51,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(383,'Product Quantity Box Status - Adding New Products','PRODUCTS_QTY_BOX_STATUS','1','What should the Default Quantity Box Status be set to when adding New Products?<br /><br />0= off<br />1= on<br />NOTE: This will show a Qty Box when ON and default the Add to Cart to 1',18,55,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(384,'Product Reviews Require Approval','REVIEWS_APPROVAL','1','Do product reviews require approval?<br /><br />Note: When Review Status is off, it will also not show<br /><br />0= off 1= on',18,62,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(385,'Meta Tags - Include Product Model in Title','META_TAG_INCLUDE_MODEL','1','Do you want to include the Product Model in the Meta Tag Title?<br /><br />0= off 1= on',18,69,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(386,'Meta Tags - Include Product Price in Title','META_TAG_INCLUDE_PRICE','1','Do you want to include the Product Price in the Meta Tag Title?<br /><br />0= off 1= on',18,70,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(387,'Meta Tags Generated Description Maximum Length?','MAX_META_TAG_DESCRIPTION_LENGTH','50','Set Generated Meta Tag Description Maximum Length to (words) Default 50:',18,71,NULL,'2018-04-19 20:31:28','',''),(388,'Also Purchased Products Columns per Row','SHOW_PRODUCT_INFO_COLUMNS_ALSO_PURCHASED_PRODUCTS','0','Also Purchased Products Columns per Row<br />0= off or set the sort order',18,72,'2018-05-28 12:14:35','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\', \'9\', \'10\', \'11\', \'12\'), '),(389,'Previous Next - Navigation Bar Position','PRODUCT_INFO_PREVIOUS_NEXT','2','Location of Previous/Next Navigation Bar<br />0= off<br />1= Top of Page<br />2= Bottom of Page<br />3= Both Top and Bottom of Page',18,21,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Off\'), array(\'id\'=>\'1\', \'text\'=>\'Top of Page\'), array(\'id\'=>\'2\', \'text\'=>\'Bottom of Page\'), array(\'id\'=>\'3\', \'text\'=>\'Both Top & Bottom of Page\')),'),(390,'Previous Next - Sort Order','PRODUCT_INFO_PREVIOUS_NEXT_SORT','1','Products Display Order by<br />0= Product ID<br />1= Product Name<br />2= Model<br />3= Price, Product Name<br />4= Price, Model<br />5= Product Name, Model<br />6= Product Sort Order',18,22,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Product ID\'), array(\'id\'=>\'1\', \'text\'=>\'Name\'), array(\'id\'=>\'2\', \'text\'=>\'Product Model\'), array(\'id\'=>\'3\', \'text\'=>\'Product Price - Name\'), array(\'id\'=>\'4\', \'text\'=>\'Product Price - Model\'), array(\'id\'=>\'5\', \'text\'=>\'Product Name - Model\'), array(\'id\'=>\'6\', \'text\'=>\'Product Sort Order\')),'),(391,'Previous Next - Button and Image Status','SHOW_PREVIOUS_NEXT_STATUS','1','Button and Product Image status settings are:<br />0= Off<br />1= On',18,20,'2018-05-28 12:13:39','2018-04-19 20:31:28',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Off\'), array(\'id\'=>\'1\', \'text\'=>\'On\')),'),(392,'Previous Next - Button and Image Settings','SHOW_PREVIOUS_NEXT_IMAGES','0','Show Previous/Next Button and Product Image Settings<br />0= Button Only<br />1= Button and Product Image<br />2= Product Image Only',18,21,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Button Only\'), array(\'id\'=>\'1\', \'text\'=>\'Button and Product Image\'), array(\'id\'=>\'2\', \'text\'=>\'Product Image Only\')),'),(393,'Previous Next - Image Width?','PREVIOUS_NEXT_IMAGE_WIDTH','50','Previous/Next Image Width?',18,22,NULL,'2018-04-19 20:31:28','',''),(394,'Previous Next - Image Height?','PREVIOUS_NEXT_IMAGE_HEIGHT','40','Previous/Next Image Height?',18,23,NULL,'2018-04-19 20:31:28','',''),(395,'Previous Next - Navigation Includes Category Position','PRODUCT_INFO_CATEGORIES','0','Product\'s Category Image and Name Alignment Above Previous/Next Navigation Bar<br />0= off<br />1= Align Left<br />2= Align Center<br />3= Align Right',18,20,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Off\'), array(\'id\'=>\'1\', \'text\'=>\'Align Left\'), array(\'id\'=>\'2\', \'text\'=>\'Align Center\'), array(\'id\'=>\'3\', \'text\'=>\'Align Right\')),'),(396,'Previous Next - Navigation Includes Category Name and Image Status','PRODUCT_INFO_CATEGORIES_IMAGE_STATUS','2','Product\'s Category Image and Name Status<br />0= Category Name and Image always shows<br />1= Category Name only<br />2= Category Name and Image when not blank',18,20,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Category Name and Image Always\'), array(\'id\'=>\'1\', \'text\'=>\'Category Name only\'), array(\'id\'=>\'2\', \'text\'=>\'Category Name and Image when not blank\')),'),(397,'Column Width - Left Boxes','BOX_WIDTH_LEFT','150px','Width of the Left Column Boxes<br />px may be included<br />Default = 150px',19,1,NULL,'2003-11-21 22:16:36',NULL,NULL),(398,'Column Width - Right Boxes','BOX_WIDTH_RIGHT','150px','Width of the Right Column Boxes<br />px may be included<br />Default = 150px',19,2,NULL,'2003-11-21 22:16:36',NULL,NULL),(399,'Bread Crumbs Navigation Separator','BREAD_CRUMBS_SEPARATOR','&nbsp;<i class=\"fa fa-angle-right\"></i>&nbsp;','Enter the separator symbol to appear between the Navigation Bread Crumb trail<br />Note: Include spaces with the &amp;nbsp; symbol if you want them part of the separator.<br />Default = &amp;nbsp;::&amp;nbsp;',19,3,NULL,'2003-11-21 22:16:36',NULL,'zen_cfg_textarea_small('),(400,'Define Breadcrumb Status','DEFINE_BREADCRUMB_STATUS','2','Enable the Breadcrumb Trail Links?<br />0= OFF<br />1= ON<br />2= Off for Home Page Only',19,4,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(401,'Bestsellers - Number Padding','BEST_SELLERS_FILLER','&nbsp;','What do you want to Pad the numbers with?<br />Default = &amp;nbsp;',19,5,NULL,'2003-11-21 22:16:36',NULL,'zen_cfg_textarea_small('),(402,'Bestsellers - Truncate Product Names','BEST_SELLERS_TRUNCATE','35','What size do you want to truncate the Product Names?<br />Default = 35',19,6,NULL,'2003-11-21 22:16:36',NULL,NULL),(403,'Bestsellers - Truncate Product Names followed by ...','BEST_SELLERS_TRUNCATE_MORE','true','When truncated Product Names follow with ...<br />Default = true',19,7,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(404,'Categories Box - Show Specials Link','SHOW_CATEGORIES_BOX_SPECIALS','false','Show Specials Link in the Categories Box',19,8,'2018-05-28 12:19:47','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(405,'Categories Box - Show Products New Link','SHOW_CATEGORIES_BOX_PRODUCTS_NEW','false','Show Products New Link in the Categories Box',19,9,'2018-05-26 11:49:02','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(406,'Shopping Cart Box Status','SHOW_SHOPPING_CART_BOX_STATUS','1','Shopping Cart Shows<br />0= Always<br />1= Only when full<br />2= Only when full but not when viewing the Shopping Cart',19,10,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(407,'Categories Box - Show Featured Products Link','SHOW_CATEGORIES_BOX_FEATURED_PRODUCTS','true','Show Featured Products Link in the Categories Box',19,11,'2018-05-28 12:20:00','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(408,'Categories Box - Show Products All Link','SHOW_CATEGORIES_BOX_PRODUCTS_ALL','true','Show Products All Link in the Categories Box',19,12,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(409,'Column Left Status - Global','COLUMN_LEFT_STATUS','0','Show Column Left, unless page override exists?<br />0= Column Left is always off<br />1= Column Left is on, unless page override',19,15,'2018-05-25 10:39:24','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(410,'Column Right Status - Global','COLUMN_RIGHT_STATUS','1','Show Column Right, unless page override exists?<br />0= Column Right is always off<br />1= Column Right is on, unless page override',19,16,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(411,'Column Width - Left','COLUMN_WIDTH_LEFT','200px','Width of the Left Column<br />px may be included<br />Default = 150px',19,20,NULL,'2003-11-21 22:16:36',NULL,NULL),(412,'Column Width - Right','COLUMN_WIDTH_RIGHT','200px','Width of the Right Column<br />px may be included<br />Default = 150px',19,21,NULL,'2003-11-21 22:16:36',NULL,NULL),(413,'Categories Separator between links Status','SHOW_CATEGORIES_SEPARATOR_LINK','1','Show Category Separator between Category Names and Links?<br />0= off<br />1= on',19,24,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(414,'Categories Separator between the Category Name and Count','CATEGORIES_SEPARATOR','','What separator do you want between the Category name and the count?<br />Default = -&amp;gt;',19,25,NULL,'2003-11-21 22:16:36',NULL,'zen_cfg_textarea_small('),(415,'Categories Separator between the Category Name and Sub Categories','CATEGORIES_SEPARATOR_SUBS','','What separator do you want between the Category name and Sub Category Name?<br />Default = |_&amp;nbsp;',19,26,NULL,'2004-03-25 22:16:36',NULL,'zen_cfg_textarea_small('),(416,'Categories Count Prefix','CATEGORIES_COUNT_PREFIX','<span class=\"cat-count\">','What do you want to Prefix the count with?<br />Default= (',19,27,NULL,'2003-01-21 22:16:36',NULL,'zen_cfg_textarea_small('),(417,'Categories Count Suffix','CATEGORIES_COUNT_SUFFIX','</span>','What do you want as a Suffix to the count?<br />Default= )',19,28,NULL,'2003-01-21 22:16:36',NULL,'zen_cfg_textarea_small('),(418,'Categories SubCategories Indent','CATEGORIES_SUBCATEGORIES_INDENT','&nbsp;&nbsp;','What do you want to use as the subcategories indent?<br />Default= &nbsp;&nbsp;',19,29,NULL,'2004-06-24 22:16:36',NULL,'zen_cfg_textarea_small('),(419,'Categories with 0 Products Status','CATEGORIES_COUNT_ZERO','0','Show Category Count for 0 Products?<br />0= off<br />1= on',19,30,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(420,'Split Categories Box','CATEGORIES_SPLIT_DISPLAY','True','Split the categories box display by product type',19,31,'2018-05-28 12:20:36','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(421,'Shopping Cart - Show Totals','SHOW_TOTALS_IN_CART','1','Show Totals Above Shopping Cart?<br />0= off<br />1= on: Items Weight Amount<br />2= on: Items Weight Amount, but no weight when 0<br />3= on: Items Amount',19,31,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(422,'Customer Greeting - Show on Index Page','SHOW_CUSTOMER_GREETING','0','Always Show Customer Greeting on Index?<br />0= off<br />1= on',19,40,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(423,'Categories - Always Show on Main Page','SHOW_CATEGORIES_ALWAYS','1','Always Show Categories on Main Page<br />0= off<br />1= on<br />Default category can be set to Top Level or a Specific Top Level',19,45,'2018-05-12 15:12:18','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(424,'Main Page - Opens with Category','CATEGORIES_START_MAIN','0','0= Top Level Categories<br />Or enter the Category ID#<br />Note: Sub Categories can also be used Example: 3_10',19,46,'2018-05-13 17:20:28','2018-04-19 20:31:28','',''),(425,'Categories - Always Open to Show SubCategories','SHOW_CATEGORIES_SUBCATEGORIES_ALWAYS','1','Always Show Categories and SubCategories<br />0= off, just show Top Categories<br />1= on, Always show Categories and SubCategories when selected',19,47,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(426,'Banner Display Groups - Header Position 1','SHOW_BANNERS_GROUP_SET1','','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Header Position 1?<br />Leave blank for none',19,55,'2018-05-26 09:15:28','2018-04-19 20:31:28','',''),(427,'Banner Display Groups - Header Position 2','SHOW_BANNERS_GROUP_SET2','','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Header Position 2?<br />Leave blank for none',19,56,'2018-05-27 20:15:51','2018-04-19 20:31:28','',''),(428,'Banner Display Groups - Header Position 3','SHOW_BANNERS_GROUP_SET3','Surpro','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Header Position 3?<br />Leave blank for none',19,57,'2018-05-27 20:55:59','2018-04-19 20:31:28','',''),(429,'Banner Display Groups - Footer Position 1','SHOW_BANNERS_GROUP_SET4','','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Footer Position 1?<br />Leave blank for none',19,65,NULL,'2018-04-19 20:31:28','',''),(430,'Banner Display Groups - Footer Position 2','SHOW_BANNERS_GROUP_SET5','','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Footer Position 2?<br />Leave blank for none',19,66,NULL,'2018-04-19 20:31:28','',''),(431,'Banner Display Groups - Footer Position 3','SHOW_BANNERS_GROUP_SET6','','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br /><br />Default Group is Wide-Banners<br /><br />What Banner Group(s) do you want to use in the Footer Position 3?<br />Leave blank for none',19,67,'2018-05-27 20:16:48','2018-04-19 20:31:28','',''),(432,'Banner Display Groups - Side Box banner_box','SHOW_BANNERS_GROUP_SET7','SideBox-Banners','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br />Default Group is SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Side Box - banner_box?<br />Leave blank for none',19,70,NULL,'2018-04-19 20:31:28','',''),(433,'Banner Display Groups - Side Box banner_box2','SHOW_BANNERS_GROUP_SET8','SideBox-Banners','The Banner Display Groups can be from 1 Banner Group or Multiple Banner Groups<br /><br />For Multiple Banner Groups enter the Banner Group Name separated by a colon <strong>:</strong><br /><br />Example: Wide-Banners:SideBox-Banners<br />Default Group is SideBox-Banners<br /><br />What Banner Group(s) do you want to use in the Side Box - banner_box2?<br />Leave blank for none',19,71,NULL,'2018-04-19 20:31:28','',''),(434,'Banner Display Group - Side Box banner_box_all','SHOW_BANNERS_GROUP_SET_ALL','BannersAll','The Banner Display Group may only be from one (1) Banner Group for the Banner All sidebox<br /><br />Default Group is BannersAll<br /><br />What Banner Group do you want to use in the Side Box - banner_box_all?<br />Leave blank for none',19,72,'2018-05-19 20:59:28','2018-04-19 20:31:28','',''),(435,'Footer - Show IP Address status','SHOW_FOOTER_IP','0','Show Customer IP Address in the Footer<br />0= off<br />1= on<br />Should the Customer IP Address show in the footer?',19,80,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(436,'Product Discount Quantities - Add how many blank discounts?','DISCOUNT_QTY_ADD','5','How many blank discount quantities should be added for Product Pricing?',19,90,NULL,'2018-04-19 20:31:28','',''),(437,'Product Discount Quantities - Display how many per row?','DISCOUNT_QUANTITY_PRICES_COLUMN','5','How many discount quantities should show per row on Product Info Pages?',19,95,NULL,'2018-04-19 20:31:28','',''),(438,'Categories/Products Display Sort Order','CATEGORIES_PRODUCTS_SORT_ORDER','0','Categories/Products Display Sort Order<br />0= Categories/Products Sort Order/Name<br />1= Categories/Products Name<br />2= Products Model<br />3= Products Qty+, Products Name<br />4= Products Qty-, Products Name<br />5= Products Price+, Products Name<br />6= Products Price-, Products Name',19,100,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\', \'5\', \'6\'), '),(439,'Option Names and Values Global Add, Copy and Delete Features Status','OPTION_NAMES_VALUES_GLOBAL_STATUS','1','Option Names and Values Global Add, Copy and Delete Features Status<br />0= Hide Features<br />1= Show Features<br />(Default=1)',19,110,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(440,'Categories-Tabs Menu ON/OFF','CATEGORIES_TABS_STATUS','1','Categories-Tabs<br />This enables the display of your store\'s categories as a menu across the top of your header. There are many potential creative uses for this.<br />0= Hide Categories Tabs<br />1= Show Categories Tabs',19,112,'2018-05-28 12:21:57','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(441,'Site Map - include My Account Links?','SHOW_ACCOUNT_LINKS_ON_SITE_MAP','No','Should the links to My Account show up on the site-map?<br />Note: Spiders will try to index this page, and likely should not be sent to secure pages, since there is no benefit in indexing a login page.<br /><br />Default: false',19,115,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'Yes\', \'No\'), '),(442,'Skip 1-prod Categories','SKIP_SINGLE_PRODUCT_CATEGORIES','True','Skip single-product categories<br />If this option is set to True, then if the customer clicks on a link to a category which only contains a single item, then Zen Cart will take them directly to that product-page, rather than present them with another link to click in order to see the product.<br />Default: True',19,120,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(443,'Use split-login page','USE_SPLIT_LOGIN_MODE','False','The login page can be displayed in two modes: Split or Vertical.<br />In Split mode, the create-account options are accessed by clicking a button to get to the create-account page.  In Vertical mode, the create-account input fields are all displayed inline, below the login field, making one less click for the customer to create their account.<br />Default: False',19,121,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(444,'CSS Buttons','IMAGE_USE_CSS_BUTTONS','Yes','CSS Buttons<br />Use CSS buttons instead of images (GIF/JPG)?<br />Button styles must be configured in the stylesheet if you enable this option.',19,147,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'No\', \'Yes\'), '),(445,'<strong>Down for Maintenance: ON/OFF</strong>','DOWN_FOR_MAINTENANCE','false','Down for Maintenance <br />(true=on false=off)',20,1,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(446,'Down for Maintenance: filename','DOWN_FOR_MAINTENANCE_FILENAME','down_for_maintenance','Down for Maintenance filename<br />Note: Do not include the extension<br />Default=down_for_maintenance',20,2,NULL,'2018-04-19 20:31:28',NULL,''),(447,'Down for Maintenance: Hide Header','DOWN_FOR_MAINTENANCE_HEADER_OFF','false','Down for Maintenance: Hide Header <br />(true=hide false=show)',20,3,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(448,'Down for Maintenance: Hide Column Left','DOWN_FOR_MAINTENANCE_COLUMN_LEFT_OFF','false','Down for Maintenance: Hide Column Left <br />(true=hide false=show)',20,4,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(449,'Down for Maintenance: Hide Column Right','DOWN_FOR_MAINTENANCE_COLUMN_RIGHT_OFF','false','Down for Maintenance: Hide Column Right <br />(true=hide false=show)',20,5,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(450,'Down for Maintenance: Hide Footer','DOWN_FOR_MAINTENANCE_FOOTER_OFF','false','Down for Maintenance: Hide Footer <br />(true=hide false=show)',20,6,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(451,'Down for Maintenance: Hide Prices','DOWN_FOR_MAINTENANCE_PRICES_OFF','false','Down for Maintenance: Hide Prices <br />(true=hide false=show)',20,7,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(452,'Down For Maintenance (exclude this IP-Address)','EXCLUDE_ADMIN_IP_FOR_MAINTENANCE','your IP (ADMIN)','This IP Address is able to access the website while it is Down For Maintenance (like webmaster)<br />To enter multiple IP Addresses, separate with a comma. If you do not know your IP Address, check in the Footer of your Shop.',20,8,'2003-03-21 13:43:22','2003-03-21 21:20:07',NULL,NULL),(453,'NOTICE PUBLIC Before going Down for Maintenance: ON/OFF','WARN_BEFORE_DOWN_FOR_MAINTENANCE','false','Give a WARNING some time before you put your website Down for Maintenance<br />(true=on false=off)<br />If you set the \'Down For Maintenance: ON/OFF\' to true this will automaticly be updated to false',20,9,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(454,'Date and hours for notice before maintenance','PERIOD_BEFORE_DOWN_FOR_MAINTENANCE','15/05/2003  2-3 PM','Date and hours for notice before maintenance website, enter date and hours for maintenance website',20,10,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,NULL),(455,'Display when webmaster has enabled maintenance','DISPLAY_MAINTENANCE_TIME','false','Display when Webmaster has enabled maintenance <br />(true=on false=off)<br />',20,11,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(456,'Display website maintenance period','DISPLAY_MAINTENANCE_PERIOD','false','Display Website maintenance period <br />(true=on false=off)<br />',20,12,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(457,'Website maintenance period','TEXT_MAINTENANCE_PERIOD_TIME','2h00','Enter Website Maintenance period (hh:mm)',20,13,'2003-03-21 13:08:25','2003-03-21 11:42:47',NULL,NULL),(458,'Confirm Terms and Conditions During Checkout Procedure','DISPLAY_CONDITIONS_ON_CHECKOUT','false','Show the Terms and Conditions during the checkout procedure which the customer must agree to.',11,1,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(459,'Confirm Privacy Notice During Account Creation Procedure','DISPLAY_PRIVACY_CONDITIONS','false','Show the Privacy Notice during the account creation procedure which the customer must agree to.',11,2,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(460,'Display Product Image','PRODUCT_NEW_LIST_IMAGE','1102','Do you want to display the Product Image?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,1,NULL,'2018-04-19 20:31:28',NULL,NULL),(461,'Display Product Quantity','PRODUCT_NEW_LIST_QUANTITY','1202','Do you want to display the Product Quantity?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,2,NULL,'2018-04-19 20:31:28',NULL,NULL),(462,'Display Product Buy Now Button','PRODUCT_NEW_BUY_NOW','1300','Do you want to display the Product Buy Now Button<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,3,NULL,'2018-04-19 20:31:28',NULL,NULL),(463,'Display Product Name','PRODUCT_NEW_LIST_NAME','2101','Do you want to display the Product Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,4,NULL,'2018-04-19 20:31:28',NULL,NULL),(464,'Display Product Model','PRODUCT_NEW_LIST_MODEL','2201','Do you want to display the Product Model?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,5,NULL,'2018-04-19 20:31:28',NULL,NULL),(465,'Display Product Manufacturer Name','PRODUCT_NEW_LIST_MANUFACTURER','2302','Do you want to display the Product Manufacturer Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,6,NULL,'2018-04-19 20:31:28',NULL,NULL),(466,'Display Product Price','PRODUCT_NEW_LIST_PRICE','2402','Do you want to display the Product Price<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,7,NULL,'2018-04-19 20:31:28',NULL,NULL),(467,'Display Product Weight','PRODUCT_NEW_LIST_WEIGHT','2502','Do you want to display the Product Weight?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,8,NULL,'2018-04-19 20:31:28',NULL,NULL),(468,'Display Product Date Added','PRODUCT_NEW_LIST_DATE_ADDED','2601','Do you want to display the Product Date Added?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',21,9,NULL,'2018-04-19 20:31:28',NULL,NULL),(469,'Display Product Description','PRODUCT_NEW_LIST_DESCRIPTION','150','How many characters do you want to display of the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display',21,10,NULL,'2018-04-19 20:31:28',NULL,NULL),(470,'Display Product Display - Default Sort Order','PRODUCT_NEW_LIST_SORT_DEFAULT','6','What Sort Order Default should be used for New Products Display?<br />Default= 6 for Date New to Old<br /><br />1= Products Name<br />2= Products Name Desc<br />3= Price low to high, Products Name<br />4= Price high to low, Products Name<br />5= Model<br />6= Date Added desc<br />7= Date Added<br />8= Product Sort Order',21,11,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\'), '),(471,'Default Products New Group ID','PRODUCT_NEW_LIST_GROUP_ID','21','Warning: Only change this if your Products New Group ID has changed from the default of 21<br />What is the configuration_group_id for New Products Listings?',21,12,NULL,'2018-04-19 20:31:28',NULL,NULL),(472,'Display Multiple Products Qty Box Status and Set Button Location','PRODUCT_NEW_LISTING_MULTIPLE_ADD_TO_CART','3','Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both',21,25,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(473,'Mask Upcoming Products from being include as New Products','SHOW_NEW_PRODUCTS_UPCOMING_MASKED','0','Do you want to mask Upcoming Products from being included as New Products in Listing, Sideboxes and Centerbox?<br />0= off<br />1= on',21,30,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(474,'Display Product Image','PRODUCT_FEATURED_LIST_IMAGE','1102','Do you want to display the Product Image?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,1,NULL,'2018-04-19 20:31:28',NULL,NULL),(475,'Display Product Quantity','PRODUCT_FEATURED_LIST_QUANTITY','1202','Do you want to display the Product Quantity?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,2,NULL,'2018-04-19 20:31:28',NULL,NULL),(476,'Display Product Buy Now Button','PRODUCT_FEATURED_BUY_NOW','1300','Do you want to display the Product Buy Now Button<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,3,NULL,'2018-04-19 20:31:28',NULL,NULL),(477,'Display Product Name','PRODUCT_FEATURED_LIST_NAME','2101','Do you want to display the Product Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,4,NULL,'2018-04-19 20:31:28',NULL,NULL),(478,'Display Product Model','PRODUCT_FEATURED_LIST_MODEL','2201','Do you want to display the Product Model?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,5,NULL,'2018-04-19 20:31:28',NULL,NULL),(479,'Display Product Manufacturer Name','PRODUCT_FEATURED_LIST_MANUFACTURER','2302','Do you want to display the Product Manufacturer Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,6,NULL,'2018-04-19 20:31:28',NULL,NULL),(480,'Display Product Price','PRODUCT_FEATURED_LIST_PRICE','2402','Do you want to display the Product Price<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,7,NULL,'2018-04-19 20:31:28',NULL,NULL),(481,'Display Product Weight','PRODUCT_FEATURED_LIST_WEIGHT','2502','Do you want to display the Product Weight?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,8,NULL,'2018-04-19 20:31:28',NULL,NULL),(482,'Display Product Date Added','PRODUCT_FEATURED_LIST_DATE_ADDED','2601','Do you want to display the Product Date Added?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',22,9,NULL,'2018-04-19 20:31:28',NULL,NULL),(483,'Display Product Description','PRODUCT_FEATURED_LIST_DESCRIPTION','150','How many characters do you want to display of the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display',22,10,NULL,'2018-04-19 20:31:28',NULL,NULL),(484,'Display Product Display - Default Sort Order','PRODUCT_FEATURED_LIST_SORT_DEFAULT','1','What Sort Order Default should be used for Featured Product Display?<br />Default= 1 for Product Name<br /><br />1= Products Name<br />2= Products Name Desc<br />3= Price low to high, Products Name<br />4= Price high to low, Products Name<br />5= Model<br />6= Date Added desc<br />7= Date Added<br />8= Product Sort Order',22,11,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\'), '),(485,'Default Featured Products Group ID','PRODUCT_FEATURED_LIST_GROUP_ID','22','Warning: Only change this if your Featured Products Group ID has changed from the default of 22<br />What is the configuration_group_id for Featured Products Listings?',22,12,NULL,'2018-04-19 20:31:28',NULL,NULL),(486,'Display Multiple Products Qty Box Status and Set Button Location','PRODUCT_FEATURED_LISTING_MULTIPLE_ADD_TO_CART','3','Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both',22,25,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(487,'Display Product Image','PRODUCT_ALL_LIST_IMAGE','1102','Do you want to display the Product Image?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,1,NULL,'2018-04-19 20:31:28',NULL,NULL),(488,'Display Product Quantity','PRODUCT_ALL_LIST_QUANTITY','1202','Do you want to display the Product Quantity?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,2,NULL,'2018-04-19 20:31:28',NULL,NULL),(489,'Display Product Buy Now Button','PRODUCT_ALL_BUY_NOW','1300','Do you want to display the Product Buy Now Button<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,3,NULL,'2018-04-19 20:31:28',NULL,NULL),(490,'Display Product Name','PRODUCT_ALL_LIST_NAME','2101','Do you want to display the Product Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,4,NULL,'2018-04-19 20:31:28',NULL,NULL),(491,'Display Product Model','PRODUCT_ALL_LIST_MODEL','2201','Do you want to display the Product Model?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,5,NULL,'2018-04-19 20:31:28',NULL,NULL),(492,'Display Product Manufacturer Name','PRODUCT_ALL_LIST_MANUFACTURER','2302','Do you want to display the Product Manufacturer Name?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,6,NULL,'2018-04-19 20:31:28',NULL,NULL),(493,'Display Product Price','PRODUCT_ALL_LIST_PRICE','2402','Do you want to display the Product Price<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,7,NULL,'2018-04-19 20:31:28',NULL,NULL),(494,'Display Product Weight','PRODUCT_ALL_LIST_WEIGHT','2502','Do you want to display the Product Weight?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,8,NULL,'2018-04-19 20:31:28',NULL,NULL),(495,'Display Product Date Added','PRODUCT_ALL_LIST_DATE_ADDED','2601','Do you want to display the Product Date Added?<br /><br />0= off<br />1st digit Left or Right<br />2nd and 3rd digit Sort Order<br />4th digit number of breaks after<br />',23,9,NULL,'2018-04-19 20:31:28',NULL,NULL),(496,'Display Product Description','PRODUCT_ALL_LIST_DESCRIPTION','150','How many characters do you want to display of the Product Description?<br /><br />0= OFF<br />150= Suggested Length, or enter the maximum number of characters to display',23,10,NULL,'2018-04-19 20:31:28',NULL,NULL),(497,'Display Product Display - Default Sort Order','PRODUCT_ALL_LIST_SORT_DEFAULT','1','What Sort Order Default should be used for All Products Display?<br />Default= 1 for Product Name<br /><br />1= Products Name<br />2= Products Name Desc<br />3= Price low to high, Products Name<br />4= Price high to low, Products Name<br />5= Model<br />6= Date Added desc<br />7= Date Added<br />8= Product Sort Order',23,11,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\'), '),(498,'Default Products All Group ID','PRODUCT_ALL_LIST_GROUP_ID','23','Warning: Only change this if your Products All Group ID has changed from the default of 23<br />What is the configuration_group_id for Products All Listings?',23,12,NULL,'2018-04-19 20:31:28',NULL,NULL),(499,'Display Multiple Products Qty Box Status and Set Button Location','PRODUCT_ALL_LISTING_MULTIPLE_ADD_TO_CART','3','Do you want to display Add Multiple Products Qty Box and Set Button Location?<br />0= off<br />1= Top<br />2= Bottom<br />3= Both',23,25,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'), '),(500,'Show New Products on Main Page','SHOW_PRODUCT_INFO_MAIN_NEW_PRODUCTS','0','Show New Products on Main Page<br />0= off or set the sort order',24,65,'2018-05-26 11:51:11','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(501,'Show Featured Products on Main Page','SHOW_PRODUCT_INFO_MAIN_FEATURED_PRODUCTS','1','Show Featured Products on Main Page<br />0= off or set the sort order',24,66,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(502,'Show Special Products on Main Page','SHOW_PRODUCT_INFO_MAIN_SPECIALS_PRODUCTS','1','Show Special Products on Main Page<br />0= off or set the sort order',24,67,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(503,'Show Upcoming Products on Main Page','SHOW_PRODUCT_INFO_MAIN_UPCOMING','0','Show Upcoming Products on Main Page<br />0= off or set the sort order',24,68,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(504,'Show New Products on Main Page - Category with SubCategories','SHOW_PRODUCT_INFO_CATEGORY_NEW_PRODUCTS','0','Show New Products on Main Page - Category with SubCategories<br />0= off or set the sort order',24,70,'2018-05-26 11:51:32','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(505,'Show Featured Products on Main Page - Category with SubCategories','SHOW_PRODUCT_INFO_CATEGORY_FEATURED_PRODUCTS','1','Show Featured Products on Main Page - Category with SubCategories<br />0= off or set the sort order',24,71,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(506,'Show Special Products on Main Page - Category with SubCategories','SHOW_PRODUCT_INFO_CATEGORY_SPECIALS_PRODUCTS','1','Show Special Products on Main Page - Category with SubCategories<br />0= off or set the sort order',24,72,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(507,'Show Upcoming Products on Main Page - Category with SubCategories','SHOW_PRODUCT_INFO_CATEGORY_UPCOMING','0','Show Upcoming Products on Main Page - Category with SubCategories<br />0= off or set the sort order',24,73,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(508,'Show New Products on Main Page - Errors and Missing Products Page','SHOW_PRODUCT_INFO_MISSING_NEW_PRODUCTS','1','Show New Products on Main Page - Errors and Missing Product<br />0= off or set the sort order',24,75,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(509,'Show Featured Products on Main Page - Errors and Missing Products Page','SHOW_PRODUCT_INFO_MISSING_FEATURED_PRODUCTS','2','Show Featured Products on Main Page - Errors and Missing Product<br />0= off or set the sort order',24,76,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(510,'Show Special Products on Main Page - Errors and Missing Products Page','SHOW_PRODUCT_INFO_MISSING_SPECIALS_PRODUCTS','3','Show Special Products on Main Page - Errors and Missing Product<br />0= off or set the sort order',24,77,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(511,'Show Upcoming Products on Main Page - Errors and Missing Products Page','SHOW_PRODUCT_INFO_MISSING_UPCOMING','4','Show Upcoming Products on Main Page - Errors and Missing Product<br />0= off or set the sort order',24,78,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(512,'Show New Products - below Product Listing','SHOW_PRODUCT_INFO_LISTING_BELOW_NEW_PRODUCTS','1','Show New Products below Product Listing<br />0= off or set the sort order',24,85,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(513,'Show Featured Products - below Product Listing','SHOW_PRODUCT_INFO_LISTING_BELOW_FEATURED_PRODUCTS','2','Show Featured Products below Product Listing<br />0= off or set the sort order',24,86,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(514,'Show Special Products - below Product Listing','SHOW_PRODUCT_INFO_LISTING_BELOW_SPECIALS_PRODUCTS','3','Show Special Products below Product Listing<br />0= off or set the sort order',24,87,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(515,'Show Upcoming Products - below Product Listing','SHOW_PRODUCT_INFO_LISTING_BELOW_UPCOMING','4','Show Upcoming Products below Product Listing<br />0= off or set the sort order',24,88,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\', \'4\'), '),(516,'New Products Columns per Row','SHOW_PRODUCT_INFO_COLUMNS_NEW_PRODUCTS','3','New Products Columns per Row',24,95,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\', \'9\', \'10\', \'11\', \'12\'), '),(517,'Featured Products Columns per Row','SHOW_PRODUCT_INFO_COLUMNS_FEATURED_PRODUCTS','3','Featured Products Columns per Row',24,96,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\', \'9\', \'10\', \'11\', \'12\'), '),(518,'Special Products Columns per Row','SHOW_PRODUCT_INFO_COLUMNS_SPECIALS_PRODUCTS','3','Special Products Columns per Row',24,97,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'1\', \'2\', \'3\', \'4\', \'5\', \'6\', \'7\', \'8\', \'9\', \'10\', \'11\', \'12\'), '),(519,'Filter Product Listing for Current Top Level Category When Enabled','SHOW_PRODUCT_INFO_ALL_PRODUCTS','1','Filter the products when Product Listing is enabled for current Main Category or show products from all categories?<br />0= Filter Off 1=Filter On ',24,100,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'), '),(520,'Define Main Page Status','DEFINE_MAIN_PAGE_STATUS','1','Enable the Defined Main Page Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,60,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(521,'Define Contact Us Status','DEFINE_CONTACT_US_STATUS','1','Enable the Defined Contact Us Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,61,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(522,'Define Privacy Status','DEFINE_PRIVACY_STATUS','1','Enable the Defined Privacy Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,62,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(523,'Define Shipping & Returns','DEFINE_SHIPPINGINFO_STATUS','1','Enable the Defined Shipping & Returns Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,63,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(524,'Define Conditions of Use','DEFINE_CONDITIONS_STATUS','1','Enable the Defined Conditions of Use Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,64,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(525,'Define Checkout Success','DEFINE_CHECKOUT_SUCCESS_STATUS','1','Enable the Defined Checkout Success Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,65,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(526,'Define Discount Coupon','DEFINE_DISCOUNT_COUPON_STATUS','1','Enable the Defined Discount Coupon Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,66,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(527,'Define Site Map Status','DEFINE_SITE_MAP_STATUS','1','Enable the Defined Site Map Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,67,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(528,'Define Page-Not-Found Status','DEFINE_PAGE_NOT_FOUND_STATUS','1','Enable the Defined Page-Not-Found Text from define-pages?<br />0= Define Text OFF<br />1= Define Text ON',25,67,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(529,'Define Page 2','DEFINE_PAGE_2_STATUS','3','Enable the Defined Page 2 Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,82,'2018-05-20 14:11:15','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(530,'Define Page 3','DEFINE_PAGE_3_STATUS','3','Enable the Defined Page 3 Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,83,'2018-05-20 14:11:23','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(531,'Define Page 4','DEFINE_PAGE_4_STATUS','3','Enable the Defined Page 4 Link/Text?<br />0= Link ON, Define Text OFF<br />1= Link ON, Define Text ON<br />2= Link OFF, Define Text ON<br />3= Link OFF, Define Text OFF',25,84,'2018-05-20 14:11:32','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(532,'EZ-Pages Display Status - HeaderBar','EZPAGES_STATUS_HEADER','0','Display of EZ-Pages content can be Globally enabled/disabled for the Header Bar<br />0 = Off<br />1 = On<br />2= On ADMIN IP ONLY located in Website Maintenance<br />NOTE: Warning only shows to the Admin and not to the public',30,10,'2018-05-20 17:51:38','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(533,'EZ-Pages Display Status - FooterBar','EZPAGES_STATUS_FOOTER','1','Display of EZ-Pages content can be Globally enabled/disabled for the Footer Bar<br />0 = Off<br />1 = On<br />2= On ADMIN IP ONLY located in Website Maintenance<br />NOTE: Warning only shows to the Admin and not to the public',30,11,'2018-05-20 17:49:06','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(534,'EZ-Pages Display Status - Sidebox','EZPAGES_STATUS_SIDEBOX','1','Display of EZ-Pages content can be Globally enabled/disabled for the Sidebox<br />0 = Off<br />1 = On<br />2= On ADMIN IP ONLY located in Website Maintenance<br />NOTE: Warning only shows to the Admin and not to the public',30,12,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(535,'EZ-Pages Header Link Separator','EZPAGES_SEPARATOR_HEADER','&nbsp;::&nbsp;','EZ-Pages Header Link Separator<br />Default = &amp;nbsp;::&amp;nbsp;',30,20,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_textarea_small('),(536,'EZ-Pages Footer Link Separator','EZPAGES_SEPARATOR_FOOTER','&nbsp;::&nbsp;','EZ-Pages Footer Link Separator<br />Default = &amp;nbsp;::&amp;nbsp;',30,21,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_textarea_small('),(537,'EZ-Pages Prev/Next Buttons','EZPAGES_SHOW_PREV_NEXT_BUTTONS','1','Display Prev/Continue/Next buttons on EZ-Pages pages?<br />0=OFF (no buttons)<br />1=\"Continue\"<br />2=\"Prev/Continue/Next\"<br /><br />Default setting: 2.',30,30,'2018-05-20 17:50:43','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\'), '),(538,'EZ-Pages Table of Contents for Chapters Status','EZPAGES_SHOW_TABLE_CONTENTS','1','Enable EZ-Pages Table of Contents for Chapters?<br />0= OFF<br />1= ON',30,35,'2018-04-19 20:31:28','2018-04-19 20:31:28',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(539,'EZ-Pages Pages to disable headers','EZPAGES_DISABLE_HEADER_DISPLAY_LIST','','EZ-Pages \"pages\" on which to NOT display the normal \"header\" for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 1,5,2<br />or leave blank.',30,40,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_textarea_small('),(540,'EZ-Pages Pages to disable footers','EZPAGES_DISABLE_FOOTER_DISPLAY_LIST','','EZ-Pages \"pages\" on which to NOT display the normal \"footer\" for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 3,7<br />or leave blank.',30,41,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_textarea_small('),(541,'EZ-Pages Pages to disable left-column','EZPAGES_DISABLE_LEFTCOLUMN_DISPLAY_LIST','','EZ-Pages \"pages\" on which to NOT display the normal \"left\" column (of sideboxes) for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 21<br />or leave blank.',30,42,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_textarea_small('),(542,'EZ-Pages Pages to disable right-column','EZPAGES_DISABLE_RIGHTCOLUMN_DISPLAY_LIST','','EZ-Pages \"pages\" on which to NOT display the normal \"right\" column (of sideboxes) for your site.<br />Simply list page ID numbers separated by commas with no spaces.<br />Page ID numbers can be obtained from the EZ-Pages screen under Admin->Tools.<br />ie: 3,82,13<br />or leave blank.',30,43,NULL,'2018-04-19 20:31:28',NULL,'zen_cfg_textarea_small('),(543,'Convert currencies for Text emails','CURRENCIES_TRANSLATIONS','&pound;,£:&euro;,€:&reg;,®:&trade;,™','What currency conversions do you need for Text emails?<br />Example = &amp;pound;,&pound;:&amp;euro;,&euro;',12,120,NULL,'2003-11-21 00:00:00',NULL,'zen_cfg_textarea_small('),(544,'Use root path for cookie path','SESSION_USE_ROOT_COOKIE_PATH','False','Normally Zen Cart will use the directory that a store resides in as the cookie path. This can cause problems with some servers. This setting allows you to set the cookie path to the root of the server, rather than the store directory. It should only be used if you have problems with sessions. <strong>Default Value = False</strong><br /><br /><strong>Changing this setting may mean you have problems logging into your admin, you should clear your browser cookies to overcome this.</strong>',15,999,NULL,'0001-01-01 00:00:00',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(545,'Add period prefix to cookie domain','SESSION_ADD_PERIOD_PREFIX','True','Normally Zen Cart will add a period prefix to the cookie domain, e.g.  .www.mydomain.com. This can sometimes cause problems with some server configurations. If you are having session problems you may want to try setting this to False. <strong>Default Value = True</strong>',15,999,NULL,'0001-01-01 00:00:00',NULL,'zen_cfg_select_option(array(\'True\', \'False\'), '),(546,'Version','RESPONSIVE_SHEFFIELD_BLUE_VERSION','2.0','Version installed:',31,0,'2018-04-20 13:54:24','2018-04-20 13:54:24',NULL,NULL),(547,'Home Page Slideshow','RSB_SLIDER_STATUS','false','Activate Home Page Slideshow',31,1,'2018-05-27 20:47:06','2018-04-20 13:54:24','zen_cfg_select_option(array(\'true\', \'false\'),',NULL),(548,'EZ Pages in Header Menu','SHOW_EZ_PAGES_MENU','false','Shows the menu option for EZ pages/important links in the header menu',31,3,'2018-05-27 20:47:26','2018-04-20 13:54:24','zen_cfg_select_option(array(\'true\', \'false\'),',NULL),(549,'<b>ACTIVATE Responsive Template</b>','COLUMN_WIDTH','1','Column Width - Left Boxes &<br /> Column Width - Right Boxes<br /><b>DO NOT WORK WITH</b><br />(1)Responsive Template Settings<br /><br /><b>Use</b><br />Column Width - Left &<br /> Column Width - Right<br /><br /><br /> 0 = Use Default Template Settings<br />1 = Use Responsive Template Settings<br />',19,NULL,NULL,'2018-04-20 13:54:24',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(550,'Define About Us Status','DEFINE_ABOUT_US_STATUS','1','Enable the Defined About Us Link/Text?0= Link ON, Define Text OFF1= Link ON, Define Text ON2= Link OFF, Define Text ON3= Link OFF, Define Text OFF',25,90,'0000-00-00 00:00:00','0000-00-00 00:00:00',NULL,'zen_cfg_select_option(array(\'0\', \'1\', \'2\', \'3\'),'),(551,'Product Listing - Layout Style','PRODUCT_LISTING_LAYOUT_STYLE','columns','Select the layout style:<br />Each product can be listed in its own row (rows option)\n                or products can be listed in multiple columns per row (columns option)<br />\n				If customer control is enabled this sets the default style.',8,41,'2018-05-28 12:07:37','2018-04-20 13:54:24',NULL,'zen_cfg_select_option(array(\'rows\', \'columns\'),'),(552,'Product Listing - Columns Per Row','PRODUCT_LISTING_COLUMNS_PER_ROW','3','Select the number of columns of products to show in each row in the product listing.  \n               The default setting is 3.',8,42,NULL,'2018-04-20 13:54:24',NULL,NULL),(553,'Product Listing - Layout Style - Customer Control','PRODUCT_LISTING_LAYOUT_STYLE_CUSTOMER','0','Allow the customer to select the layout style (0=no, 1=yes):',8,43,NULL,'2018-04-20 13:54:24',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(554,'Product Listing - Show Sorter for Columns Layout','PRODUCT_LISTING_GRID_SORT','0','Allow the customer to select the item sort order (0=no, 1=yes):',8,44,NULL,'2018-04-20 13:54:24',NULL,'zen_cfg_select_option(array(\'0\', \'1\'),'),(555,'<b>Zen Colorbox</b>','ZEN_COLORBOX_STATUS','true','<br />If true, all product images on the following pages will be displayed within a lightbox:<br /><br />- document_general_info<br />- document_product_info<br />- page (EZ-Pages)<br />- product_free_shipping_info<br />- product_info<br />- product_music_info<br />- product_reviews<br />- product_reviews_info<br />- product_reviews_write<br /><br /><b>Default: true</b>',32,100,'2018-04-20 13:54:24','2018-04-20 13:54:24',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(556,'Overlay Opacity','ZEN_COLORBOX_OVERLAY_OPACITY','0.6','<br />Controls the transparency of the overlay.<br /><br /><b>Default: 0.6</b>',32,101,'2018-04-20 13:54:24','2018-04-20 13:54:24',NULL,'zen_cfg_select_option(array(\'0\', \'0.1\', \'0.2\', \'0.3\', \'0.4\', \'0.5\', \'0.6\', \'0.7\', \'0.8\', \'0.9\', \'1\'), '),(557,'Resize Duration','ZEN_COLORBOX_RESIZE_DURATION','400','<br />Controls the speed of the image resizing.<br /><br />Note: This value is measured in milliseconds.<br /><br /><b>Default: 400</b><br />',32,102,'2018-04-20 13:54:24','2018-04-20 13:54:24',NULL,NULL),(558,'Initial Width','ZEN_COLORBOX_INITIAL_WIDTH','250','<br />If Enable Resize Animations is set to true, the lightbox will resize its width from this value to the current image width, when first displayed.<br /><br />Note: This value is measured in pixels.<br /><br /><b>Default: 250</b><br />',32,103,'2018-04-20 13:54:24','2018-04-20 13:54:24',NULL,NULL),(559,'Initial Height','ZEN_COLORBOX_INITIAL_HEIGHT','250','<br />If Enable Resize Animations is set to true, the lightbox will resize its height from this value to the current image height, when first displayed.<br /><br />Note: This value is measured in pixels.<br /><br /><b>Default: 250</b><br />',32,104,'2018-04-20 13:54:24','2018-04-20 13:54:24',NULL,NULL),(560,'Display Image Counter','ZEN_COLORBOX_COUNTER','true','<br />If true, the image counter will be displayed (below the caption of each image) within the lightbox.<br /><br /><b>Default: true</b>',32,105,'2018-04-20 13:54:24','2018-04-20 13:54:24',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(561,'Close on Overlay Click','ZEN_COLORBOX_CLOSE_OVERLAY','false','<br />If true, the lightbox will close when the overlay is clicked.<br /><br /><b>Default: false</b>',32,106,'2018-04-20 13:54:24','2018-04-20 13:54:24',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(562,'Loop','ZEN_COLORBOX_LOOP','true','<br />If true, Images will loop in both directions.<br /><br /><b>Default: true</b>',32,107,'2018-04-20 13:54:24','2018-04-20 13:54:24',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(563,'<b>Slideshow</b>','ZEN_COLORBOX_SLIDESHOW','false','<br />If true, Images will display as a slideshow.<br /><br /><b>Default: false</b>',32,200,'2018-04-20 13:54:24','2018-04-20 13:54:24',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(564,'&nbsp; Slideshow Auto Start','ZEN_COLORBOX_SLIDESHOW_AUTO','true','<br />If true, your slideshow will auto start.<br /><br /><b>Default: true</b>',32,201,'2018-04-20 13:54:24','2018-04-20 13:54:24',NULL,'zen_cfg_select_option(array(\'true\', \'false\'), '),(565,'&nbsp; Slideshow Speed','ZEN_COLORBOX_SLIDESHOW_SPEED','2500','<br />Sets the speed of the slideshow <br /><br />Note: This value is measured in milliseconds.<br /><br /><b>Default: 2500</b>',32,202,'2018-04-20 13:54:24','2018-04-20 13:54:24',NULL,NULL),(566,'&nbsp; Slideshow Start Text','ZEN_COLORBOX_SLIDESHOW_START_TEXT','start slideshow','<br />Link text to start the slideshow.<br /><br /><b>Default: start slideshow</b>',32,203,'2018-04-20 13:54:24','2018-04-20 13:54:24',NULL,NULL),(567,'&nbsp; Slideshow Stop Text','ZEN_COLORBOX_SLIDESHOW_STOP_TEXT','stop slideshow','<br />Link text to stop the slideshow.<br /><br /><b>Default: stop slideshow</b>',32,204,'2018-04-20 13:54:24','2018-04-20 13:54:24',NULL,NULL),(568,'<b>Gallery Mode</b>','ZEN_COLORBOX_GALLERY_MODE','true','<br />If true, the lightbox will allow additional images to quickly be displayed using previous and next buttons.<br /><br /><b>Default: true</b>',32,300,'2018-04-20 13:54:24','2018-04-20 13:54:24',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(569,'&nbsp; Include Main Image in Gallery','ZEN_COLORBOX_GALLERY_MAIN_IMAGE','true','<br />If true, the main product image will be included in the lightbox gallery.<br /><br /><b>Default: true</b>',32,301,'2018-04-20 13:54:24','2018-04-20 13:54:24',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(570,'<b>EZ-Pages Support</b>','ZEN_COLORBOX_EZPAGES','true','<br />If true, the lightbox effect will be used for linked images on all EZ-Pages.<br /><br /><b>Default: true</b>',32,400,'2018-04-20 13:54:24','2018-04-20 13:54:24',NULL,'zen_cfg_select_option(array(\'true\', \'false\'),'),(571,'&nbsp; File Types','ZEN_COLORBOX_FILE_TYPES','jpg,png,gif','<br />On EZ-Pages, the lightbox effect will be applied to all images with one of the following file types.<br /><br /><b>Default: jpg,png,gif</b><br />',32,401,'2018-04-20 13:54:24','2018-04-20 13:54:24',NULL,NULL);
/*!40000 ALTER TABLE `configuration` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `configuration_group`
--

DROP TABLE IF EXISTS `configuration_group`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `configuration_group` (
  `configuration_group_id` int(11) NOT NULL AUTO_INCREMENT,
  `configuration_group_title` varchar(64) NOT NULL DEFAULT '',
  `configuration_group_description` varchar(255) NOT NULL DEFAULT '',
  `sort_order` int(5) DEFAULT NULL,
  `visible` int(1) DEFAULT '1',
  PRIMARY KEY (`configuration_group_id`),
  KEY `idx_visible_zen` (`visible`)
) ENGINE=MyISAM AUTO_INCREMENT=33 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `configuration_group`
--

LOCK TABLES `configuration_group` WRITE;
/*!40000 ALTER TABLE `configuration_group` DISABLE KEYS */;
INSERT INTO `configuration_group` VALUES (1,'My Store','General information about my store',1,1),(2,'Minimum Values','The minimum values for functions / data',2,1),(3,'Maximum Values','The maximum values for functions / data',3,1),(4,'Images','Image parameters',4,1),(5,'Customer Details','Customer account configuration',5,1),(6,'Module Options','Hidden from configuration',6,0),(7,'Shipping/Packaging','Shipping options available at my store',7,1),(8,'Product Listing','Product Listing configuration options',8,1),(9,'Stock','Stock configuration options',9,1),(10,'Logging','Logging configuration options',10,1),(11,'Regulations','Regulation options',16,1),(12,'E-Mail Options','General settings for E-Mail transport and HTML E-Mails',12,1),(13,'Attribute Settings','Configure products attributes settings',13,1),(14,'GZip Compression','GZip compression options',14,1),(15,'Sessions','Session options',15,1),(16,'GV Coupons','Gift Vouchers and Coupons',16,1),(17,'Credit Cards','Credit Cards Accepted',17,1),(18,'Product Info','Product Info Display Options',18,1),(19,'Layout Settings','Layout Options',19,1),(20,'Website Maintenance','Website Maintenance Options',20,1),(21,'New Listing','New Products Listing',21,1),(22,'Featured Listing','Featured Products Listing',22,1),(23,'All Listing','All Products Listing',23,1),(24,'Index Listing','Index Products Listing',24,1),(25,'Define Page Status','Define Pages Options Settings',25,1),(30,'EZ-Pages Settings','EZ-Pages Settings',30,1),(31,'Responsive Sheffield Blue','Set Responsive Sheffield Blue Options',31,1),(32,'Zen Colorbox','Configure Zen Colorbox settings',32,1);
/*!40000 ALTER TABLE `configuration_group` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `counter`
--

DROP TABLE IF EXISTS `counter`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `counter` (
  `startdate` char(8) DEFAULT NULL,
  `counter` int(12) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `counter`
--

LOCK TABLES `counter` WRITE;
/*!40000 ALTER TABLE `counter` DISABLE KEYS */;
INSERT INTO `counter` VALUES ('20180419',1704);
/*!40000 ALTER TABLE `counter` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `counter_history`
--

DROP TABLE IF EXISTS `counter_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `counter_history` (
  `startdate` char(8) NOT NULL DEFAULT '',
  `counter` int(12) DEFAULT NULL,
  `session_counter` int(12) DEFAULT NULL,
  PRIMARY KEY (`startdate`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `counter_history`
--

LOCK TABLES `counter_history` WRITE;
/*!40000 ALTER TABLE `counter_history` DISABLE KEYS */;
INSERT INTO `counter_history` VALUES ('20180419',5,1),('20180420',35,8),('20180421',2,2),('20180422',35,9),('20180424',1,1),('20180429',3,1),('20180510',5,1),('20180512',12,1),('20180513',107,6),('20180514',56,6),('20180515',43,12),('20180516',135,13),('20180517',26,5),('20180519',31,6),('20180520',141,8),('20180521',46,4),('20180522',37,5),('20180523',89,13),('20180524',148,19),('20180525',165,14),('20180526',185,12),('20180527',206,12),('20180528',140,6),('20180530',2,1),('20180531',1,1),('20180601',1,1),('20180602',3,3),('20180603',7,5),('20180604',3,3),('20180605',3,3),('20180606',1,1),('20180607',2,2),('20180608',4,3),('20180609',2,2),('20180610',6,5),('20180611',3,3),('20180612',2,2),('20180614',2,2),('20180615',1,1),('20180617',1,1),('20180618',2,1),('20180619',1,1),('20180620',3,3);
/*!40000 ALTER TABLE `counter_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `countries`
--

DROP TABLE IF EXISTS `countries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `countries` (
  `countries_id` int(11) NOT NULL AUTO_INCREMENT,
  `countries_name` varchar(64) NOT NULL DEFAULT '',
  `countries_iso_code_2` char(2) NOT NULL DEFAULT '',
  `countries_iso_code_3` char(3) NOT NULL DEFAULT '',
  `address_format_id` int(11) NOT NULL DEFAULT '0',
  `status` tinyint(1) DEFAULT '1',
  PRIMARY KEY (`countries_id`),
  KEY `idx_countries_name_zen` (`countries_name`),
  KEY `idx_address_format_id_zen` (`address_format_id`),
  KEY `idx_iso_2_zen` (`countries_iso_code_2`),
  KEY `idx_iso_3_zen` (`countries_iso_code_3`)
) ENGINE=MyISAM AUTO_INCREMENT=249 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `countries`
--

LOCK TABLES `countries` WRITE;
/*!40000 ALTER TABLE `countries` DISABLE KEYS */;
INSERT INTO `countries` VALUES (240,'Åland Islands','AX','ALA',1,1),(1,'Afghanistan','AF','AFG',1,1),(2,'Albania','AL','ALB',1,1),(3,'Algeria','DZ','DZA',1,1),(4,'American Samoa','AS','ASM',1,1),(5,'Andorra','AD','AND',1,1),(6,'Angola','AO','AGO',1,1),(7,'Anguilla','AI','AIA',1,1),(8,'Antarctica','AQ','ATA',1,1),(9,'Antigua and Barbuda','AG','ATG',1,1),(10,'Argentina','AR','ARG',1,1),(11,'Armenia','AM','ARM',1,1),(12,'Aruba','AW','ABW',1,1),(13,'Australia','AU','AUS',7,1),(14,'Austria','AT','AUT',5,1),(15,'Azerbaijan','AZ','AZE',1,1),(16,'Bahamas','BS','BHS',1,1),(17,'Bahrain','BH','BHR',1,1),(18,'Bangladesh','BD','BGD',1,1),(19,'Barbados','BB','BRB',1,1),(20,'Belarus','BY','BLR',1,1),(21,'Belgium','BE','BEL',5,1),(22,'Belize','BZ','BLZ',1,1),(23,'Benin','BJ','BEN',1,1),(24,'Bermuda','BM','BMU',1,1),(25,'Bhutan','BT','BTN',1,1),(26,'Bolivia','BO','BOL',1,1),(27,'Bosnia and Herzegowina','BA','BIH',1,1),(28,'Botswana','BW','BWA',1,1),(29,'Bouvet Island','BV','BVT',1,1),(30,'Brazil','BR','BRA',1,1),(31,'British Indian Ocean Territory','IO','IOT',1,1),(32,'Brunei Darussalam','BN','BRN',1,1),(33,'Bulgaria','BG','BGR',1,1),(34,'Burkina Faso','BF','BFA',1,1),(35,'Burundi','BI','BDI',1,1),(36,'Cambodia','KH','KHM',1,1),(37,'Cameroon','CM','CMR',1,1),(38,'Canada','CA','CAN',2,1),(39,'Cape Verde','CV','CPV',1,1),(40,'Cayman Islands','KY','CYM',1,1),(41,'Central African Republic','CF','CAF',1,1),(42,'Chad','TD','TCD',1,1),(43,'Chile','CL','CHL',1,1),(44,'China','CN','CHN',1,1),(45,'Christmas Island','CX','CXR',1,1),(46,'Cocos (Keeling) Islands','CC','CCK',1,1),(47,'Colombia','CO','COL',1,1),(48,'Comoros','KM','COM',1,1),(49,'Congo','CG','COG',1,1),(50,'Cook Islands','CK','COK',1,1),(51,'Costa Rica','CR','CRI',1,1),(52,'Côte d\'Ivoire','CI','CIV',1,1),(53,'Croatia','HR','HRV',1,1),(54,'Cuba','CU','CUB',1,1),(55,'Cyprus','CY','CYP',1,1),(56,'Czech Republic','CZ','CZE',1,1),(57,'Denmark','DK','DNK',1,1),(58,'Djibouti','DJ','DJI',1,1),(59,'Dominica','DM','DMA',1,1),(60,'Dominican Republic','DO','DOM',1,1),(61,'Timor-Leste','TL','TLS',1,1),(62,'Ecuador','EC','ECU',1,1),(63,'Egypt','EG','EGY',1,1),(64,'El Salvador','SV','SLV',1,1),(65,'Equatorial Guinea','GQ','GNQ',1,1),(66,'Eritrea','ER','ERI',1,1),(67,'Estonia','EE','EST',1,1),(68,'Ethiopia','ET','ETH',1,1),(69,'Falkland Islands (Malvinas)','FK','FLK',1,1),(70,'Faroe Islands','FO','FRO',1,1),(71,'Fiji','FJ','FJI',1,1),(72,'Finland','FI','FIN',1,1),(73,'France','FR','FRA',1,1),(75,'French Guiana','GF','GUF',1,1),(76,'French Polynesia','PF','PYF',1,1),(77,'French Southern Territories','TF','ATF',1,1),(78,'Gabon','GA','GAB',1,1),(79,'Gambia','GM','GMB',1,1),(80,'Georgia','GE','GEO',1,1),(81,'Germany','DE','DEU',5,1),(82,'Ghana','GH','GHA',1,1),(83,'Gibraltar','GI','GIB',1,1),(84,'Greece','GR','GRC',1,1),(85,'Greenland','GL','GRL',1,1),(86,'Grenada','GD','GRD',1,1),(87,'Guadeloupe','GP','GLP',1,1),(88,'Guam','GU','GUM',1,1),(89,'Guatemala','GT','GTM',1,1),(90,'Guinea','GN','GIN',1,1),(91,'Guinea-bissau','GW','GNB',1,1),(92,'Guyana','GY','GUY',1,1),(93,'Haiti','HT','HTI',1,1),(94,'Heard and Mc Donald Islands','HM','HMD',1,1),(95,'Honduras','HN','HND',1,1),(96,'Hong Kong','HK','HKG',1,1),(97,'Hungary','HU','HUN',1,1),(98,'Iceland','IS','ISL',1,1),(99,'India','IN','IND',1,1),(100,'Indonesia','ID','IDN',1,1),(101,'Iran (Islamic Republic of)','IR','IRN',1,1),(102,'Iraq','IQ','IRQ',1,1),(103,'Ireland','IE','IRL',1,1),(104,'Israel','IL','ISR',1,1),(105,'Italy','IT','ITA',1,1),(106,'Jamaica','JM','JAM',1,1),(107,'Japan','JP','JPN',1,1),(108,'Jordan','JO','JOR',1,1),(109,'Kazakhstan','KZ','KAZ',1,1),(110,'Kenya','KE','KEN',1,1),(111,'Kiribati','KI','KIR',1,1),(112,'Korea, Democratic People\'s Republic of','KP','PRK',1,1),(113,'Korea, Republic of','KR','KOR',1,1),(114,'Kuwait','KW','KWT',1,1),(115,'Kyrgyzstan','KG','KGZ',1,1),(116,'Lao People\'s Democratic Republic','LA','LAO',1,1),(117,'Latvia','LV','LVA',1,1),(118,'Lebanon','LB','LBN',1,1),(119,'Lesotho','LS','LSO',1,1),(120,'Liberia','LR','LBR',1,1),(121,'Libya','LY','LBY',1,1),(122,'Liechtenstein','LI','LIE',1,1),(123,'Lithuania','LT','LTU',1,1),(124,'Luxembourg','LU','LUX',1,1),(125,'Macao','MO','MAC',1,1),(126,'Macedonia, The Former Yugoslav Republic of','MK','MKD',1,1),(127,'Madagascar','MG','MDG',1,1),(128,'Malawi','MW','MWI',1,1),(129,'Malaysia','MY','MYS',1,1),(130,'Maldives','MV','MDV',1,1),(131,'Mali','ML','MLI',1,1),(132,'Malta','MT','MLT',1,1),(133,'Marshall Islands','MH','MHL',1,1),(134,'Martinique','MQ','MTQ',1,1),(135,'Mauritania','MR','MRT',1,1),(136,'Mauritius','MU','MUS',1,1),(137,'Mayotte','YT','MYT',1,1),(138,'Mexico','MX','MEX',1,1),(139,'Micronesia, Federated States of','FM','FSM',1,1),(140,'Moldova','MD','MDA',1,1),(141,'Monaco','MC','MCO',1,1),(142,'Mongolia','MN','MNG',1,1),(143,'Montserrat','MS','MSR',1,1),(144,'Morocco','MA','MAR',1,1),(145,'Mozambique','MZ','MOZ',1,1),(146,'Myanmar','MM','MMR',1,1),(147,'Namibia','NA','NAM',1,1),(148,'Nauru','NR','NRU',1,1),(149,'Nepal','NP','NPL',1,1),(150,'Netherlands','NL','NLD',5,1),(151,'Bonaire, Sint Eustatius and Saba','BQ','BES',1,1),(152,'New Caledonia','NC','NCL',1,1),(153,'New Zealand','NZ','NZL',1,1),(154,'Nicaragua','NI','NIC',1,1),(155,'Niger','NE','NER',1,1),(156,'Nigeria','NG','NGA',1,1),(157,'Niue','NU','NIU',1,1),(158,'Norfolk Island','NF','NFK',1,1),(159,'Northern Mariana Islands','MP','MNP',1,1),(160,'Norway','NO','NOR',1,1),(161,'Oman','OM','OMN',1,1),(162,'Pakistan','PK','PAK',1,1),(163,'Palau','PW','PLW',1,1),(164,'Panama','PA','PAN',1,1),(165,'Papua New Guinea','PG','PNG',1,1),(166,'Paraguay','PY','PRY',1,1),(167,'Peru','PE','PER',1,1),(168,'Philippines','PH','PHL',1,1),(169,'Pitcairn','PN','PCN',1,1),(170,'Poland','PL','POL',1,1),(171,'Portugal','PT','PRT',1,1),(172,'Puerto Rico','PR','PRI',1,1),(173,'Qatar','QA','QAT',1,1),(174,'Réunion','RE','REU',1,1),(175,'Romania','RO','ROU',1,1),(176,'Russian Federation','RU','RUS',1,1),(177,'Rwanda','RW','RWA',1,1),(178,'Saint Kitts and Nevis','KN','KNA',1,1),(179,'Saint Lucia','LC','LCA',1,1),(180,'Saint Vincent and the Grenadines','VC','VCT',1,1),(181,'Samoa','WS','WSM',1,1),(182,'San Marino','SM','SMR',1,1),(183,'Sao Tome and Principe','ST','STP',1,1),(184,'Saudi Arabia','SA','SAU',1,1),(185,'Senegal','SN','SEN',1,1),(186,'Seychelles','SC','SYC',1,1),(187,'Sierra Leone','SL','SLE',1,1),(188,'Singapore','SG','SGP',4,1),(189,'Slovakia (Slovak Republic)','SK','SVK',1,1),(190,'Slovenia','SI','SVN',1,1),(191,'Solomon Islands','SB','SLB',1,1),(192,'Somalia','SO','SOM',1,1),(193,'South Africa','ZA','ZAF',1,1),(194,'South Georgia and the South Sandwich Islands','GS','SGS',1,1),(195,'Spain','ES','ESP',3,1),(196,'Sri Lanka','LK','LKA',1,1),(197,'St. Helena','SH','SHN',1,1),(198,'St. Pierre and Miquelon','PM','SPM',1,1),(199,'Sudan','SD','SDN',1,1),(200,'Suriname','SR','SUR',1,1),(201,'Svalbard and Jan Mayen Islands','SJ','SJM',1,1),(202,'Swaziland','SZ','SWZ',1,1),(203,'Sweden','SE','SWE',5,1),(204,'Switzerland','CH','CHE',1,1),(205,'Syrian Arab Republic','SY','SYR',1,1),(206,'Taiwan','TW','TWN',1,1),(207,'Tajikistan','TJ','TJK',1,1),(208,'Tanzania, United Republic of','TZ','TZA',1,1),(209,'Thailand','TH','THA',1,1),(210,'Togo','TG','TGO',1,1),(211,'Tokelau','TK','TKL',1,1),(212,'Tonga','TO','TON',1,1),(213,'Trinidad and Tobago','TT','TTO',1,1),(214,'Tunisia','TN','TUN',1,1),(215,'Turkey','TR','TUR',1,1),(216,'Turkmenistan','TM','TKM',1,1),(217,'Turks and Caicos Islands','TC','TCA',1,1),(218,'Tuvalu','TV','TUV',1,1),(219,'Uganda','UG','UGA',1,1),(220,'Ukraine','UA','UKR',1,1),(221,'United Arab Emirates','AE','ARE',1,1),(222,'United Kingdom','GB','GBR',6,1),(223,'United States','US','USA',2,1),(224,'United States Minor Outlying Islands','UM','UMI',1,1),(225,'Uruguay','UY','URY',1,1),(226,'Uzbekistan','UZ','UZB',1,1),(227,'Vanuatu','VU','VUT',1,1),(228,'Vatican City State (Holy See)','VA','VAT',1,1),(229,'Venezuela','VE','VEN',1,1),(230,'Viet Nam','VN','VNM',1,1),(231,'Virgin Islands (British)','VG','VGB',1,1),(232,'Virgin Islands (U.S.)','VI','VIR',1,1),(233,'Wallis and Futuna Islands','WF','WLF',1,1),(234,'Western Sahara','EH','ESH',1,1),(235,'Yemen','YE','YEM',1,1),(236,'Serbia','RS','SRB',1,1),(238,'Zambia','ZM','ZMB',1,1),(239,'Zimbabwe','ZW','ZWE',1,1),(241,'Palestine, State of','PS','PSE',1,1),(242,'Montenegro','ME','MNE',1,1),(243,'Guernsey','GG','GGY',1,1),(244,'Isle of Man','IM','IMN',1,1),(245,'Jersey','JE','JEY',1,1),(246,'South Sudan','SS','SSD',1,1),(247,'Curaçao','CW','CUW',1,1),(248,'Sint Maarten (Dutch part)','SX','SXM',1,1);
/*!40000 ALTER TABLE `countries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `coupon_email_track`
--

DROP TABLE IF EXISTS `coupon_email_track`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `coupon_email_track` (
  `unique_id` int(11) NOT NULL AUTO_INCREMENT,
  `coupon_id` int(11) NOT NULL DEFAULT '0',
  `customer_id_sent` int(11) NOT NULL DEFAULT '0',
  `sent_firstname` varchar(32) DEFAULT NULL,
  `sent_lastname` varchar(32) DEFAULT NULL,
  `emailed_to` varchar(32) DEFAULT NULL,
  `date_sent` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`unique_id`),
  KEY `idx_coupon_id_zen` (`coupon_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `coupon_email_track`
--

LOCK TABLES `coupon_email_track` WRITE;
/*!40000 ALTER TABLE `coupon_email_track` DISABLE KEYS */;
/*!40000 ALTER TABLE `coupon_email_track` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `coupon_gv_customer`
--

DROP TABLE IF EXISTS `coupon_gv_customer`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `coupon_gv_customer` (
  `customer_id` int(5) NOT NULL DEFAULT '0',
  `amount` decimal(15,4) NOT NULL DEFAULT '0.0000',
  PRIMARY KEY (`customer_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `coupon_gv_customer`
--

LOCK TABLES `coupon_gv_customer` WRITE;
/*!40000 ALTER TABLE `coupon_gv_customer` DISABLE KEYS */;
/*!40000 ALTER TABLE `coupon_gv_customer` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `coupon_gv_queue`
--

DROP TABLE IF EXISTS `coupon_gv_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `coupon_gv_queue` (
  `unique_id` int(5) NOT NULL AUTO_INCREMENT,
  `customer_id` int(5) NOT NULL DEFAULT '0',
  `order_id` int(5) NOT NULL DEFAULT '0',
  `amount` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `date_created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `ipaddr` varchar(45) NOT NULL DEFAULT '',
  `release_flag` char(1) NOT NULL DEFAULT 'N',
  PRIMARY KEY (`unique_id`),
  KEY `idx_cust_id_order_id_zen` (`customer_id`,`order_id`),
  KEY `idx_release_flag_zen` (`release_flag`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `coupon_gv_queue`
--

LOCK TABLES `coupon_gv_queue` WRITE;
/*!40000 ALTER TABLE `coupon_gv_queue` DISABLE KEYS */;
/*!40000 ALTER TABLE `coupon_gv_queue` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `coupon_redeem_track`
--

DROP TABLE IF EXISTS `coupon_redeem_track`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `coupon_redeem_track` (
  `unique_id` int(11) NOT NULL AUTO_INCREMENT,
  `coupon_id` int(11) NOT NULL DEFAULT '0',
  `customer_id` int(11) NOT NULL DEFAULT '0',
  `redeem_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `redeem_ip` varchar(45) NOT NULL DEFAULT '',
  `order_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`unique_id`),
  KEY `idx_coupon_id_zen` (`coupon_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `coupon_redeem_track`
--

LOCK TABLES `coupon_redeem_track` WRITE;
/*!40000 ALTER TABLE `coupon_redeem_track` DISABLE KEYS */;
/*!40000 ALTER TABLE `coupon_redeem_track` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `coupon_restrict`
--

DROP TABLE IF EXISTS `coupon_restrict`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `coupon_restrict` (
  `restrict_id` int(11) NOT NULL AUTO_INCREMENT,
  `coupon_id` int(11) NOT NULL DEFAULT '0',
  `product_id` int(11) NOT NULL DEFAULT '0',
  `category_id` int(11) NOT NULL DEFAULT '0',
  `coupon_restrict` char(1) NOT NULL DEFAULT 'N',
  PRIMARY KEY (`restrict_id`),
  KEY `idx_coup_id_prod_id_zen` (`coupon_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `coupon_restrict`
--

LOCK TABLES `coupon_restrict` WRITE;
/*!40000 ALTER TABLE `coupon_restrict` DISABLE KEYS */;
/*!40000 ALTER TABLE `coupon_restrict` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `coupons`
--

DROP TABLE IF EXISTS `coupons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `coupons` (
  `coupon_id` int(11) NOT NULL AUTO_INCREMENT,
  `coupon_type` char(1) NOT NULL DEFAULT 'F',
  `coupon_code` varchar(32) NOT NULL DEFAULT '',
  `coupon_amount` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `coupon_minimum_order` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `coupon_start_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `coupon_expire_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `uses_per_coupon` int(5) NOT NULL DEFAULT '1',
  `uses_per_user` int(5) NOT NULL DEFAULT '0',
  `restrict_to_products` varchar(255) DEFAULT NULL,
  `restrict_to_categories` varchar(255) DEFAULT NULL,
  `restrict_to_customers` text,
  `coupon_active` char(1) NOT NULL DEFAULT 'Y',
  `date_created` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `coupon_zone_restriction` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`coupon_id`),
  KEY `idx_active_type_zen` (`coupon_active`,`coupon_type`),
  KEY `idx_coupon_code_zen` (`coupon_code`),
  KEY `idx_coupon_type_zen` (`coupon_type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `coupons`
--

LOCK TABLES `coupons` WRITE;
/*!40000 ALTER TABLE `coupons` DISABLE KEYS */;
/*!40000 ALTER TABLE `coupons` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `coupons_description`
--

DROP TABLE IF EXISTS `coupons_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `coupons_description` (
  `coupon_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '0',
  `coupon_name` varchar(64) NOT NULL DEFAULT '',
  `coupon_description` text,
  PRIMARY KEY (`coupon_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `coupons_description`
--

LOCK TABLES `coupons_description` WRITE;
/*!40000 ALTER TABLE `coupons_description` DISABLE KEYS */;
/*!40000 ALTER TABLE `coupons_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `currencies`
--

DROP TABLE IF EXISTS `currencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `currencies` (
  `currencies_id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(32) NOT NULL DEFAULT '',
  `code` char(3) NOT NULL DEFAULT '',
  `symbol_left` varchar(32) DEFAULT NULL,
  `symbol_right` varchar(32) DEFAULT NULL,
  `decimal_point` char(1) DEFAULT NULL,
  `thousands_point` char(1) DEFAULT NULL,
  `decimal_places` char(1) DEFAULT NULL,
  `value` float(13,8) DEFAULT NULL,
  `last_updated` datetime DEFAULT NULL,
  PRIMARY KEY (`currencies_id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `currencies`
--

LOCK TABLES `currencies` WRITE;
/*!40000 ALTER TABLE `currencies` DISABLE KEYS */;
INSERT INTO `currencies` VALUES (1,'US Dollar','USD','$','','.',',','2',1.00000000,'2018-04-19 20:31:28'),(2,'Euro','EUR','&euro;','','.',',','2',0.77300000,'2018-04-19 20:31:28'),(3,'GB Pound','GBP','&pound;','','.',',','2',0.67259997,'2018-04-19 20:31:28'),(4,'Canadian Dollar','CAD','$','','.',',','2',1.10420001,'2018-04-19 20:31:28'),(5,'Australian Dollar','AUD','$','','.',',','2',1.17890000,'2018-04-19 20:31:28');
/*!40000 ALTER TABLE `currencies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customers`
--

DROP TABLE IF EXISTS `customers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customers` (
  `customers_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_gender` char(1) NOT NULL DEFAULT '',
  `customers_firstname` varchar(32) NOT NULL DEFAULT '',
  `customers_lastname` varchar(32) NOT NULL DEFAULT '',
  `customers_dob` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `customers_email_address` varchar(96) NOT NULL DEFAULT '',
  `customers_nick` varchar(96) NOT NULL DEFAULT '',
  `customers_default_address_id` int(11) NOT NULL DEFAULT '0',
  `customers_telephone` varchar(32) NOT NULL DEFAULT '',
  `customers_fax` varchar(32) DEFAULT NULL,
  `customers_password` varchar(255) NOT NULL DEFAULT '',
  `customers_newsletter` char(1) DEFAULT NULL,
  `customers_group_pricing` int(11) NOT NULL DEFAULT '0',
  `customers_email_format` varchar(4) NOT NULL DEFAULT 'TEXT',
  `customers_authorization` int(1) NOT NULL DEFAULT '0',
  `customers_referral` varchar(32) NOT NULL DEFAULT '',
  `customers_paypal_payerid` varchar(20) NOT NULL DEFAULT '',
  `customers_paypal_ec` tinyint(1) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`customers_id`),
  KEY `idx_email_address_zen` (`customers_email_address`),
  KEY `idx_referral_zen` (`customers_referral`(10)),
  KEY `idx_grp_pricing_zen` (`customers_group_pricing`),
  KEY `idx_nick_zen` (`customers_nick`),
  KEY `idx_newsletter_zen` (`customers_newsletter`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customers`
--

LOCK TABLES `customers` WRITE;
/*!40000 ALTER TABLE `customers` DISABLE KEYS */;
INSERT INTO `customers` VALUES (1,'m','JACK','Brake','1970-05-21 00:00:00','JACK.B@AAASURVIVALPRODUCTS.COM','',1,'2482406863','','$2y$10$sMnu3mZIFMu.hrcLefUqj.WajLWWqjwkdMDDQAC4inYTFA2vKE1NW','1',0,'TEXT',0,'','',0);
/*!40000 ALTER TABLE `customers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customers_basket`
--

DROP TABLE IF EXISTS `customers_basket`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customers_basket` (
  `customers_basket_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_id` int(11) NOT NULL DEFAULT '0',
  `products_id` tinytext NOT NULL,
  `customers_basket_quantity` float NOT NULL DEFAULT '0',
  `final_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `customers_basket_date_added` varchar(8) DEFAULT NULL,
  PRIMARY KEY (`customers_basket_id`),
  KEY `idx_customers_id_zen` (`customers_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customers_basket`
--

LOCK TABLES `customers_basket` WRITE;
/*!40000 ALTER TABLE `customers_basket` DISABLE KEYS */;
/*!40000 ALTER TABLE `customers_basket` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customers_basket_attributes`
--

DROP TABLE IF EXISTS `customers_basket_attributes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customers_basket_attributes` (
  `customers_basket_attributes_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_id` int(11) NOT NULL DEFAULT '0',
  `products_id` tinytext NOT NULL,
  `products_options_id` varchar(64) NOT NULL DEFAULT '0',
  `products_options_value_id` int(11) NOT NULL DEFAULT '0',
  `products_options_value_text` blob,
  `products_options_sort_order` text NOT NULL,
  PRIMARY KEY (`customers_basket_attributes_id`),
  KEY `idx_cust_id_prod_id_zen` (`customers_id`,`products_id`(36))
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customers_basket_attributes`
--

LOCK TABLES `customers_basket_attributes` WRITE;
/*!40000 ALTER TABLE `customers_basket_attributes` DISABLE KEYS */;
/*!40000 ALTER TABLE `customers_basket_attributes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customers_info`
--

DROP TABLE IF EXISTS `customers_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customers_info` (
  `customers_info_id` int(11) NOT NULL DEFAULT '0',
  `customers_info_date_of_last_logon` datetime DEFAULT NULL,
  `customers_info_number_of_logons` int(5) DEFAULT NULL,
  `customers_info_date_account_created` datetime DEFAULT NULL,
  `customers_info_date_account_last_modified` datetime DEFAULT NULL,
  `global_product_notifications` int(1) DEFAULT '0',
  PRIMARY KEY (`customers_info_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customers_info`
--

LOCK TABLES `customers_info` WRITE;
/*!40000 ALTER TABLE `customers_info` DISABLE KEYS */;
INSERT INTO `customers_info` VALUES (1,'2018-05-16 18:44:08',1,'2018-05-16 18:44:08',NULL,0);
/*!40000 ALTER TABLE `customers_info` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `db_cache`
--

DROP TABLE IF EXISTS `db_cache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `db_cache` (
  `cache_entry_name` varchar(64) NOT NULL DEFAULT '',
  `cache_data` mediumblob,
  `cache_entry_created` int(15) DEFAULT NULL,
  PRIMARY KEY (`cache_entry_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `db_cache`
--

LOCK TABLES `db_cache` WRITE;
/*!40000 ALTER TABLE `db_cache` DISABLE KEYS */;
/*!40000 ALTER TABLE `db_cache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `email_archive`
--

DROP TABLE IF EXISTS `email_archive`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `email_archive` (
  `archive_id` int(11) NOT NULL AUTO_INCREMENT,
  `email_to_name` varchar(96) NOT NULL DEFAULT '',
  `email_to_address` varchar(96) NOT NULL DEFAULT '',
  `email_from_name` varchar(96) NOT NULL DEFAULT '',
  `email_from_address` varchar(96) NOT NULL DEFAULT '',
  `email_subject` varchar(255) NOT NULL DEFAULT '',
  `email_html` text NOT NULL,
  `email_text` text NOT NULL,
  `date_sent` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `module` varchar(64) NOT NULL DEFAULT '',
  PRIMARY KEY (`archive_id`),
  KEY `idx_email_to_address_zen` (`email_to_address`),
  KEY `idx_module_zen` (`module`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `email_archive`
--

LOCK TABLES `email_archive` WRITE;
/*!40000 ALTER TABLE `email_archive` DISABLE KEYS */;
/*!40000 ALTER TABLE `email_archive` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ezpages`
--

DROP TABLE IF EXISTS `ezpages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezpages` (
  `pages_id` int(11) NOT NULL AUTO_INCREMENT,
  `languages_id` int(11) NOT NULL DEFAULT '1',
  `pages_title` varchar(64) NOT NULL DEFAULT '',
  `alt_url` varchar(255) NOT NULL DEFAULT '',
  `alt_url_external` varchar(255) NOT NULL DEFAULT '',
  `pages_html_text` mediumtext,
  `status_header` int(1) NOT NULL DEFAULT '1',
  `status_sidebox` int(1) NOT NULL DEFAULT '1',
  `status_footer` int(1) NOT NULL DEFAULT '1',
  `status_toc` int(1) NOT NULL DEFAULT '1',
  `header_sort_order` int(3) NOT NULL DEFAULT '0',
  `sidebox_sort_order` int(3) NOT NULL DEFAULT '0',
  `footer_sort_order` int(3) NOT NULL DEFAULT '0',
  `toc_sort_order` int(3) NOT NULL DEFAULT '0',
  `page_open_new_window` int(1) NOT NULL DEFAULT '0',
  `page_is_ssl` int(1) NOT NULL DEFAULT '0',
  `toc_chapter` int(11) NOT NULL DEFAULT '0',
  `pc_id` int(11) NOT NULL,
  PRIMARY KEY (`pages_id`),
  KEY `idx_lang_id_zen` (`languages_id`),
  KEY `idx_ezp_status_header_zen` (`status_header`),
  KEY `idx_ezp_status_sidebox_zen` (`status_sidebox`),
  KEY `idx_ezp_status_footer_zen` (`status_footer`),
  KEY `idx_ezp_status_toc_zen` (`status_toc`)
) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ezpages`
--

LOCK TABLES `ezpages` WRITE;
/*!40000 ALTER TABLE `ezpages` DISABLE KEYS */;
INSERT INTO `ezpages` VALUES (12,1,'Engineering & Design','','','<p><img alt=\"\" src=\"http://survivalproductsinc.com/case.jpg\" width=\"173\" height=\"180\" /><br /><br />Survival Products\' engineers and craftsmen have   designed their rafts, with you, the consumer in mind.  Advanced design and   manufacturing procedures along with many years of service experience have   allowed Survival Products to price its life rafts at the most affordable rates.    Check the competition and you will find that nobody beats these figures.  Don\'t   be fooled by these prices, sizes and weights.  These life rafts will do the job   for you under the most adverse conditions.</p>\r\n      <p>Raft materials and components have been carefully selected to   provide for reliability, extended life, and reduce service cost.  Buoyancy tubes   and decks are constructed of tough, heavy duty neoprene coated nylon conforming   to stringent government specifications.  Canopies are fabricated from high   visibility orange compound nylon to aid in search and rescue operations.  All   life line, retaining line, and handle webbing are of strong, durable 100%   polypropylene.  The life raft valise is manufactured from almost indestructible   vinyl coated nylon with nylon velcro closures.  The Mirada Release Inflation   Valve is of the most trusted design, punture disk type with many years of   successful operational reliability.</p>\r\n      <p><img alt=\"\" src=\"http://survivalproductsinc.com/valves.jpg\" width=\"173\" height=\"190\" align=\"left\" hspace=\"7\" />Survival Products\' life rafts are constructed using a light weight   aluminum cylinder and valve assemblies thus minimizing corrosion and consequent   damage not only to the corroding components but deterioration of critical   adjacent items such as the tube, deck, and case fabrics.  The aluminum cylinder   and valve also make the life rafts much lighter in weight.  Furthermore, each   and every raft is pressure tested and all seams and adhesive bonds are   thoroughly checked prior to release.  Quota samples are tested to near   destruction as part of a continuing process of product analysis and   improvement.  Additionally, a lifetime warranty comes with the life rafts as   long as they are serviced regularly and properly cared for.</p></td>\r\n  </tr>\r\n  <tr>\r\n    <td></td>\r\n  </tr>\r\n</table>',0,0,1,1,0,20,20,400,0,0,1,0),(13,1,'Aviation Links','','','<br />\r\n<br />\r\n<strong>General Information</strong>\r\n<ul>\r\n  <li>AirNav (Pilot Information): <a href=\"http://www.aiav.com/fuel\">www.aiav.com</a></li>\r\n  <li>Aviation Weather Center: <a href=\"http://www.aviationweather.gov\">www.aviationweather.gov</a></li>\r\n  <li>Aviator\'s Hotline: <a href=\"http://www.aviationhotline.com/Aviators.htm\">http://www.aviationhotline.com/Aviators.htm</a></li>\r\n  <li>AvWeb:<a href=\"http://www.avweb.com\"> www.avweb.com</a></li>\r\n</ul>\r\n<h4>Government Agencies</h4>\r\n<ul>\r\n  <li>Civil Air Patrol: <a href=\"http://www.cap.gov\">www.cap.gov</a></li>\r\n  <li>Federal Aviation Administration: <a href=\"http://www.faa.gov\">www.faa.gov</a></li>\r\n  <li>FAR (Federal Aviation Regulations): <a href=\"http://www.faa.gov/regulations_policies/faa_regulations/\">www.faa.gov/regulations_policies/faa_regulations</a></li>\r\n  <li>National Transportation Safety Board: <a href=\"http://www.ntsb.gov\">www.ntsb.gov</a></li>\r\n  <li>U.S. Air Force: <a href=\"http://www.af.mil\">www.af.mil</a></li>\r\n</ul>\r\n<h4>Historical Information</h4>\r\n<ul>\r\n  <li>Aviation History Online Museum: <a href=\"http://www.aviation-history.com\">www.aviation-history.com</a></li>\r\n  <li>Canadian Warplane Museum:<a href=\"http://www.warplane.com\"> www.warplane.com</a></li>\r\n  <li>Flight History Information:<a href=\"http://www.flight-history.com\"> www.flight-history.com</a></li>\r\n  <li>National Air & Space Museum: <a href=\"http://www.nasm.si.edu\">www.nasm.si.edu</a></li>\r\n  <li>National Aviation Hall of Fame:<a href=\"http://www.nationalaviation.org\"> www.nationalaviation.org</a></li>\r\n  <li>Strategic Air Command Museum: <a href=\"http://www.strategicairandspace.com\">www.strategicairandspace.com</a></li>\r\n</ul>\r\n<h4>Organizations</h4>\r\n<ul>\r\n  <li>A.O.P.A. (Aircraft Owners Pilots Assoc.): <a href=\"http://www.aopa.org\">www.aopa.org</a></li>\r\n  <li>American Bonanza Society: <a href=\"http://www.bonanza.org\">www.bonanza.org</a></li>\r\n  <li>Airports Council Inteational: <a href=\"http://www.airports.org\">www.airports.org</a></li>\r\n  <li>Cessna Owner Organization: <a href=\"http://www.cessnaowner.org\">www.cessnaowner.org</a></li>\r\n  <li>International Commanche Society: <a href=\"http://www.comancheflyer.com\">www.comancheflyer.com</a></li>\r\n  <li>International Organization of Women Pilots:<a href=\"http://www.ninety-nines.org\"> www.ninety-nines.org</a></li>\r\n  <li>Mooney Pilot Organization: <a href=\"http://www.mooneypilots.com/\">http://www.mooneypilots.com/</a></li>\r\n  <li>National Aeronautic Association: <a href=\"http://www.naa-usa.org\">www.naa-usa.org</a></li>\r\n  <li>N.B.A.A. (National Business Aviation Assoc.):<a href=\"http://www.nbaa.org\"> www.nbaa.org</a></li>\r\n</ul>\r\n<h4>Publications</h4>\r\n<ul>\r\n  <li>Aerospace Technology:<a href=\"http://www.aerospace-technology.com/\"> http://www.aerospace-technology.com/</a></li>\r\n  <li>Airplane Blog: <a href=\"http://www.airplaneblog.com/\">http://www.airplaneblog.com/</a></li>\r\n  <li>AutoPilot Magazine:<a href=\"http://www.autopilotmagazine.com\">www.autopilotmagazine.com</a></li>\r\n  <li>Aviation Market Center: <a href=\"http://www.aviationmarketcenter.com/\">http://www.aviationmarketcenter.com/</a></li>\r\n  <li>Business Air Today :<a href=\"http://www.businessair.com/\">http://www.businessair.com/</a></li>\r\n  <li>Business & Commercial Aviation: <a href=\"http://www.aviationnow.com\">www.aviationnow.com</a></li>\r\n  <li class=\"style8\">Landings:<a href=\"http://www.landings.com\">www.landings.com</a></li>\r\n  <li>Pilot\'s Web: <a href=\"http://pilotsweb.com/\">http://pilotsweb.com/</a></li>\r\n  <li>Plane & Pilot :<a href=\"http://www.planeandpilotmag.com/\">http://www.planeandpilotmag.com/</a></li>\r\n  <li>World Aircraft Sales Magazine:<a href=\"http://www.avbuyer.com\"> www.avbuyer.com</a></li>\r\n</ul>',0,0,1,0,10,10,10,0,0,0,0,0),(4,1,'Maritime Links','','','<br /><br />\r\n<h4>Weather</h4>	<ul><li>National Oceanic & Atmospheric Admin (N.O.A.A.): <a href=\"http://www.noaa.gov\">www.noaa.gov</a> <li>U.S. Naval Fleet (FNMOC): <a href=\"https://www.fnmoc.navy.mil/public/\">www.fnmoc.navy.mil/public</a>  <li>Naval Oceanography Portal: <a href=\"http://www.usno.navy.mil/\">www.usno.navy.mil/</a></ul>  <h4>Government Agencies</h4><ul>	<li>Florida Fish & Wildlife Conservation Commission: <a href=\"http://www.myfwc.com\">www.myfwc.com</a>	<li>U.S. Coast Guard: <a href=\"http://www.uscg.mil/\">www.uscg.org</a></ul> <h4>Organizations</h4><ul><li>Bayview Yacht Club: <a href=\"http://www.byc.org\">www.byc.org</a>  <li>Chicago Yacht Club: <a href=\"http://www.chicagoyachtclub.org\">www.chicagoyachtclub.org</a> <li>(G.P.Y.C) Gross Point Yacht Club: <a href=\"http://www.gpyc.org\">www.gpyc.org</a> \r\n<li>International Sailing Federation: <a href=\"http://www.sailing.org\">www.sailing.org</a>\r\n<li>National Boating & Fishing Foundation: <a href=\"http://www.rbff.org/\">http://www.rbff.org/</a> <li>N.M.M.A. (National Marine Manufacturers Assoc.): <a href=\"http://www.nmma.org/\">www.nmma.org</a>	<li>National Maritime Society: <a href=\"http://www.nauticus.org\">www.nauticus.org</a><li>	Offshore Racing Council: <a href=\"http://www.orc.org\">www.orc.org</a><li>Saltwater Sportsmen: <a href=\"http://www.jcaa.org\">www.jcaa.org</a></ul><h4>Publications</h4><ul>  <li>Seguridad del Canotaje: <a href=\"http://www.boatsafe.com/nauticalknowhow/safetips\">www.boatsafe.com/nauticalknowhow/safetips</a>	</li> <li>Cruising World: <a href=\"http://www.cruisingworld.com\">www.cruisingworld.com</a></li>	<li>Marine Weather Enthusiast: <a href=\"http://www.weatherzone.com\">www.weatherzone.com</a> </li>	<li>Sail Magazine: <a href=\"http://www.sailmagazine.com\">www.sailmagazine.com</a></li>	<li>Sailing: <a href=\"http://www.sailing.com\">www.sailing.com</a></li>	<li>Sailing World: <a href=\"http://www.sailingworld.com\">www.sailingworld.com</a></li>	<li>Southern Boating: <a href=\"http://www.southeboating.com\">www.southeboating.com</a></li>	<li>Yachting World: <a href=\"http://www.yachting-world.com\">www.yachting-world.com</a></li>	<li>Yachtsmans\' Guide: <a href=\"http://www.yachtsmanguide.com\">www.yachtsmansguide.com</a></li></ul>',0,0,1,1,0,70,70,0,0,0,0,0),(6,1,'Fax Form','AAA_Survival_Order_Form.pdf','','',0,0,0,1,0,0,0,101,0,0,90,0),(7,1,'FAX Order Form','AAA_Survival_Order_Form.pdf','','',0,0,1,1,0,60,60,100,0,0,90,0),(8,1,'Array','','','Array',0,0,0,0,0,0,0,0,0,0,0,0),(9,1,'Compare Survival Kits','','','<html>\r\n<head>\r\n  <title>compare-survival-kits</title>\r\n</head>\r\n<body>\r\n<br>\r\n<p><img src=\"images/survivalkit_01_MED.jpg\"\r\n alt=\"Aviation & Marine Survival Kits TSO & Non TSO\"\r\n style=\"width: 200px; height: 247px;\" align=\"left\"\r\n border=\"0\"></p>\r\n<div id=\"kitCompareFont\">The optional survival equipment\r\nkit is stowed its own valise (separate from the raft valise). Separate\r\nunits provide the ultimate in flexibility for raft and survival\r\nequipment combinations - ability to purchase basic rafts and survival\r\nequipment separately to meet unique requirements. Survival equipment\r\nkit and raft valise are attached to each other using velcro and a\r\ntie-line. <br>\r\n<br>\r\n<a href=\"javascript:history.go(-1)\"\r\n onmouseover=\"self.status=document.referrer;return true\">previous\r\npage</a><br>\r\n<br>\r\n<table border=\"1\" cellpadding=\"3\" cellspacing=\"0\"\r\n width=\"100%\">\r\n  <tbody>\r\n    <tr class=\"kitHeading\">\r\n      <td width=\"40%\">Survival\r\nKit Contents</td>\r\n      <td width=\"20%\">Standard/<br>\r\n91  Type</td>\r\n      <td width=\"20%\">Standard <br>\r\nPlus/ 121 Type</td>\r\n      <td width=\"20%\">Deluxe/<br>\r\n135 Type</td>\r\n    </tr>\r\n    <tr>\r\n      <td> </td>\r\n      <td> </td>\r\n      <td> </td>\r\n      <td> </td>\r\n    </tr>\r\n    <tr>\r\n      <td>canopy w/inflatable mast</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>equipment container</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>signal flag</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>3 signal flares</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>first aid kit</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>raft repair kit</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>sea dye markers</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>2-cell flashlight w/batteries</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>signal mirror</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>food rations</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>water rations</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>signal whistle</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>utility knife</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>sponge</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>survival manual</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>magnetic compass </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>75-foot retaining line</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>reverse osmosis desalinator </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>2 paddles</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>fishing kit </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>radar reflector</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<!-- end #mainContent -->\r\n</div>\r\n</body>\r\n</html>',0,0,1,1,0,0,15,0,0,0,0,0),(10,1,'FAQ (Frequently Asked Questions)','','','<div class=WordSection1>\r\n\r\n\r\n\r\nDepartment of Transportation <br />\r\nFederal Aviation Administration <br />\r\nAircraft Certification Service<br />\r\nWashington, DC<br /><br />\r\n\r\n\r\n4/13/84<br /><br />\r\n\r\n\r\n\r\n<p class=MsoNormal><b>Subject:</b> TSO-C70a, LIFERAFTS (REVERSIBLE AND\r\n\r\nNONREVERSIBLE)</p>\r\n\r\n\r\n\r\n<p class=MsoNormal> </p>\r\n\r\n\r\n\r\n<p class=MsoNormal><b>Technical Standard Order </b></p>\r\n\r\n\r\n\r\n<p class=MsoNormal>a. <u>Applicability</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(1) <u>Minimum Performance Standards</u>. This Technical\r\n\r\nStandard Order (TSO) prescribes the minimum performance standards that\r\n\r\nliferafts combinations must meet to be identified with the applicable TSO\r\n\r\nmarking. This TSO has been prepared in accordance with the procedural rules set\r\n\r\nforth in Subpart O of the Federal Aviation Regulations Part 21. New models of\r\n\r\nliferafts that are to be so identified and that are manufactured on or after\r\n\r\nthe effective date of this TSO must meet the standards set forth in Appendix 1,\r\n\r\n“Federal Aviation Administration Standard for Liferafts” of this TSO. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(2) <u>Environmental Standard</u>. None. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(3) <u>Test Methods</u>. This TSO references Federal Test\r\n\r\nMethod Standard No. 191A dated 7/20/78. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>b. <u>Marking</u>. In addition to the marking required in\r\n\r\nFederal Aviation Regulations (FAR) § 21.607(d) (14 CFR 21.607), the part\r\n\r\nnumber, serial number and date of manufacture, weight and rated and overload\r\n\r\ncapacities of the liferaft must be shown also. The weight of the liferaft\r\n\r\nincludes any accessories required in this TSO. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>c. <u>Data Requirements</u>. In accordance with FAR §\r\n\r\n21.605, (14 CFR 21.605), each manufacturer shall furnish the Manager, Aircraft\r\n\r\nCertification Office (ACO), Federal Aviation Administration, having\r\n\r\ngeographical purview of the manufacturer’s facilities, one copy each of the\r\n\r\nfollowing technical data: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(1) Operating instructions. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(2) Packing instructions. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(3) A complete description of the device, including detailed\r\n\r\ndrawings, materials identification and specifications, and installation\r\n\r\nprocedures. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>DISTRIBUTION: ZVS-326; A-W(WS)-3; A-X(FS)-3; A-X(CD)-4; A-FFS-1,2,7,8(LTD);\r\n\r\nA-FAC-0(MAX); AVN-1(2 cys) TSO-C70a 4/13/84 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(4) Manufacturer’s TSO qualification test report. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(5) Applicable installation limitations, including stowage\r\n\r\narea temperatures. The manufacturer shall also provide the purchaser with such\r\n\r\nlimitations. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(6) Maintenance instructions, including instructions\r\n\r\nregarding inspection, repair, and stowage of materials. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(7) The functional test specification to be used to test\r\n\r\neach production article to ensure compliance with this TSO. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>d. <u>Availability of Referenced Documents</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(1) Appendix 1, “Federal Aviation Administration Standards\r\n\r\nfor Liferafts,” of this TSO specifies certain test methods that are contained\r\n\r\nin Federal Test Method Standard No. 191A unless otherwise noted. Federal Test\r\n\r\nMethod Standard No. 191A may be examined at the FAA Headquarters in the Office\r\n\r\nof Airworthiness, Aircraft Engineering Division (AWS-110), and at all Aircraft\r\n\r\nCertification Offices, and may be obtained (or purchased) from the General\r\n\r\nServices Administration, Business Service Center, Region 3, 7th and D Streets,\r\n\r\nS.W., Washington, D.C. 20407. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(2) Federal Aviation Regulations Part 21, Subpart O and\r\n\r\nAdvisory Circular 20-110, Index of Aviation Technical Standard Orders may be\r\n\r\nreviewed at the FAA Headquarters in the Office of Airworthiness, Aircraft\r\n\r\nEngineering Division (AWS-110), and at all regional Aircraft Certification\r\n\r\nOffices. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>/S/ J. A. Pontecorvo </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Acting Director of Airworthiness </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 2 4/13/84 TSO-C70a Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>APPENDIX 1. FEDERAL AVIATION ADMINISTRATION STANDARD FOR LIFERAFTS\r\n\r\n</p>\r\n\r\n\r\n\r\n<p class=MsoNormal>1. <u>Purpose</u>. This standard provides the minimum\r\n\r\nperformance standards for liferafts. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>2. <u>Scope</u>. This standard covers the following types of\r\n\r\nliferafts: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>TYPE I - For use in any category aircraft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>TYPE II - For use in nontransport category aircraft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3. <u>Material and Workmanship</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1 <u>Nonmetallic Materials</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.1 The finished device must be clean and free from any\r\n\r\ndefects that might affect its function. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.2 Coated fabrics and other items, such as webbing,\r\n\r\nsubject to deterioration must have been manufactured not more than 18 months\r\n\r\nprior to the date of delivery of the finished product. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.3 The materials must not support fungus growth. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.4 <u>Coated fabrics - General. </u>Coated fabrics,\r\n\r\nincluding seams, subject to deterioration used in the manufacture of the\r\n\r\ndevices must possess at least 90 percent of their original physical properties\r\n\r\nafter these fabrics have been subjected to the accelerated ageing test\r\n\r\nspecified in paragraph 6.1 of this standard. Material used in the construction\r\n\r\nof flotation chambers and decks must be capable of withstanding the detrimental\r\n\r\neffects of exposure to fuels, oils and hydraulic fluids. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.4.1 <u>Strength</u>. Coated fabrics used for these\r\n\r\napplications must conform to the following minimum strengths after ageing: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tensile Strength (Grab Test) </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Warp 190 pounds/inch </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Fill 190 pounds/inch </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tear Strength </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Trapezoid Test: 13 X 13 pounds/inch (minimum); or </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tongue Test: 13 X 13 pounds/inch (minimum) </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.4.2 <u>Adhesion</u>. In addition to the requirements of\r\n\r\n3.1.4.1, coated fabrics must meet the following minimum strengths after ageing:\r\n\r\n</p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 1 TSO-C70a 4/13/84 Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Ply Adhesion - </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5 pounds/inch width at 70 ± 2 degrees F at a pull of 2.0 to\r\n\r\n2.5 inches/minute </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Coat Adhesion - </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5 pounds/inch width at 70 ± 2 degrees F at 2.0 to 2.5\r\n\r\ninches/minute </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.4.3 <u>Permeability</u>. For coated fabrics used in the\r\n\r\nmanufacture of inflation chambers, the maximum permeability to helium\r\n\r\n(Permeability Test Method) may not exceed 10 liters per square meter in 24\r\n\r\nhours at 77 degrees F, or its equivalent using hydrogen. The permeameter must\r\n\r\nbe calibrated for the gas used. In lieu of this permeability test, an alternate\r\n\r\ntest may be used provided the alternate test has been approved as an equivalent\r\n\r\nto this permeability test by the manager of the FAA office to which this TSO\r\n\r\ndata is to be submitted, as required in Paragraph c., Data Requirements. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.5 <u>Seam Strength and Adhesives</u>. Cemented or heat\r\n\r\nsealable seams used in the manufacture of the device must meet the following\r\n\r\nminimum strength requirements: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Shear Strength (Seam Shear Test Method) - 175 pounds/inch\r\n\r\nwidth at 75 degrees F; </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>40 pounds/inch width at 140 degrees F </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Peel Strength (Peel Test Method) - </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5 pounds/inch width at 70 degrees F </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.6 <u>Seam Tape</u>. If tape is used for seam\r\n\r\nreinforcement or abrasion protection of seams or both, the tape must have\r\n\r\nminimum breaking strength (Grab Test Method) of 40 pounds/inch width in both\r\n\r\nthe warp and fill directions. When applied to the seam area, the adhesion\r\n\r\nstrength characteristics must meet the seam strength requirements in paragraph\r\n\r\n3.1.5. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.7 <u>Canopy</u>. Fabrics used for this purpose must be\r\n\r\nwaterproof and resistant to sun penetration, and must not affect the potability\r\n\r\nof collected water, and must meet the following minimum requirements in the\r\n\r\napplicable tests prescribed in paragraph 6.1 of this standard, except that in\r\n\r\nlieu of meeting the tensile strength requirements, a fabricated canopy may be\r\n\r\ndemonstrated to withstand 35-knot winds and 52-knot gusts: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tensile Strength (Grab Test) </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Warp 75 pounds/inch </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Fill 75 pounds/inch </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tear Strength </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Trapezoid Test: 4 x 4 pounds/inch; or </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tongue Test: 4 x 4 pounds/inch </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Coat Adhesion of Coated Fabrics </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.5 pounds/inch width at 70 ± 2 degrees F at a separation rate\r\n\r\nof 2.0 to 2.5 inches/minute </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 2 4/13/84 TSO-C70a Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.8 <u>Flammability</u>. The device (including carrying\r\n\r\ncase or stowage container) must be constructed of materials which meet FAR §\r\n\r\n25.853 (14 CFR 25.853) in effect on May 1, 1972, as follows: Type I rafts must\r\n\r\nmeet § 25.853 (b) and Type II rafts must meet § 25.853 (b-3). </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.2 <u>Metallic Parts</u>. All metallic parts must be made\r\n\r\nof corrosion-resistant material or must be suitably protected against\r\n\r\ncorrosion. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.3 <u>Protection</u>. All inflation chambers and load\r\n\r\ncarrying fabrics must be protected in such a manner that nonfabric parts do not\r\n\r\ncause chafing or abrasion of the material in either the packed or the inflated\r\n\r\ncondition. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4. <u>Design and Construction</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1 <u>Capacity</u>. The rated and overload capacities of a\r\n\r\nlife raft must be based on not less than the following usable sitting areas on\r\n\r\nthe deck of the life raft: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Rated Capacity 3.6 feet<sup>2</sup>/person </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Overload Capacity 2.4 feet<sup>2</sup>/person </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1 <u>Capacity, Alternate Rating Methods</u>. In lieu of\r\n\r\nthe rated capacity as determined by paragraph 4.1 of this standard, one of the\r\n\r\nfollowing methods may be used: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.1 The rated capacity of a Type I or Type II liferaft\r\n\r\nmay be determined by the number of occupant seating spaces which can be\r\n\r\naccommodated within the occupiable area exclusive of the perimeter structure\r\n\r\n(such as buoyancy tubes) without overlapping of the occupant seating spaces and\r\n\r\nwith the occupant seating spaces located to provide each occupant with a back\r\n\r\nsupport of not less than 8 inches high. The occupant seating spaces may not be\r\n\r\nless than the following size: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>39.4 inches </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>BACK SUPPORT </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>ALONG </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>THIS 14.7 inches 7.2 inches </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>SIDE. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2 The rated capacity of a Type I or Type II liferaft\r\n\r\nmay be determined on the basis of a controlled pool or fresh water\r\n\r\ndemonstration which includes conditions prescribed under paragraph 6.2.3 of\r\n\r\nthis standard and the following: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2.1 The sitting area on the liferaft deck may not be\r\n\r\nless than 3 square feet per person. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2.2 The liferaft must have a back support for each\r\n\r\noccupant of not less than 14.7 inches wide and 8 inches high. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 3 TSO-C70a 4/13/84 Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2.3 At least 30 percent but no more than 50 percent of\r\n\r\nthe participants must be female. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2.4 Except as provided below, all participants must\r\n\r\nselect their sitting space without outside placement assistance. Instructions,\r\n\r\neither identified on the raft or announced prior to the demonstration, may be\r\n\r\nused informing that each participant should have a back support. A raft\r\n\r\ncommander, acting in the capacity of a crewmember, may direct occupant seating\r\n\r\nto the extent necessary to achieve reasonable weight distribution within the\r\n\r\nraft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2.5 All participants must not have practiced,\r\n\r\nrehearsed, or have had the demonstration procedures described to them within\r\n\r\nthe past 6 months. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.2 <u>Buoyancy</u>. An average occupant weight of not less\r\n\r\nthan 170 pounds must be used in all applicable calculations and tests specified\r\n\r\nherein. In tests, ballast in the form of sand bags or equivalent may be used to\r\n\r\nachieve the 170 pound average, provided the appropriate weight distribution\r\n\r\nwithin the raft is maintained. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.2.1 <u>Type I Liferaft</u>. Buoyancy must be provided by\r\n\r\ntwo independent buoyancy tubes each of which, including the raft floor, must be\r\n\r\ncapable of supporting the rated and overload capacities in fresh water if the\r\n\r\nother tube is deflated. The liferaft loaded to its rated capacity must have a\r\n\r\nfreeboard of at least 12 inches with both buoyancy tubes at minimum operating\r\n\r\npressure. The liferaft loaded to its rated capacity with the critical tube\r\n\r\ndeflated and the remaining tube at minimum operating pressure must have a\r\n\r\nfreeboard of at least 6 inches. The liferaft loaded to its overload capacity\r\n\r\nwith the critical tube deflated must have a measurable freeboard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.2.2 <u>Type II Liferaft</u>. When single tube construction\r\n\r\nis used to provide the buoyancy, internal bulkheads must divide the flotation\r\n\r\ntube into at least two separate chambers such that the liferaft will be capable\r\n\r\nof supporting the rated number of occupants out of fresh water in the event\r\n\r\nthat one chamber is deflated. The complete liferaft loaded to its rated\r\n\r\ncapacity must have a freeboard of at least 6 inches. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.3 <u>Inflation</u>. The inflation system must be arranged\r\n\r\nso that failure of one inflatable chamber or manifold will not result in loss\r\n\r\nof gas from the other chambers. The inflation equipment must be located so as\r\n\r\nnot to interfere with boarding operation. Components of the inflation system\r\n\r\nmust meet Department of Transportation Specification 3AA (49 CFR 178.37) or\r\n\r\nSpecification 3HT (49 CFR 178.44) in effect May 30, 1976, as applicable, or an\r\n\r\nequivalent approved by the manager of the FAA office to which this TSO data is\r\n\r\nto be submitted, as required in paragraph c., Data Requirements. The inflation\r\n\r\nsystem must be constructed to minimize leakage due to back pressure after\r\n\r\ninflation. If an air aspirator system is used, the system must be constructed\r\n\r\neither to prevent the ingestion of foreign objects or to prevent failure or\r\n\r\nmalfunction as a result of ingestion of small foreign objects. For Type I\r\n\r\nliferafts, there must be an independent inflation source for each primary\r\n\r\nflotation tube, except that there may be a single inflation source for all\r\n\r\nflotation tubes if data substantiating the reliability of the single </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 4 4/13/84 TSO-C70a Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>inflation source is approved by the manager of the FAA\r\n\r\noffice to which this TSO data is to be submitted, as required in Paragraph c.,\r\n\r\nData Requirements. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.4 <u>Liferaft Canopy</u>. A canopy must be packed with or\r\n\r\nattached to the raft. The erected canopy must be capable of withstanding\r\n\r\n35-knot winds and 52-knot gusts in open water. The canopy must provide adequate\r\n\r\nheadroom and must have provision for openings 180 degrees apart. Means must be\r\n\r\nprovided to make the openings weathertight. If the canopy is not integral with\r\n\r\nthe raft, it must be capable of being erected by occupants following\r\n\r\nconspicuously posted, simple instructions. It must be capable of being erected\r\n\r\nby one occupant of an otherwise empty raft and by occupants of a raft filled to\r\n\r\nrated capacity. For a reversible raft, attachment provisions must be installed\r\n\r\nto permit the canopy to be installed on either side of the raft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.5 <u>Capsize Resistance</u>. There must be water pockets\r\n\r\nor other means to provide capsize resistance for an empty or lightly loaded\r\n\r\nraft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.6 <u>Boarding Aids</u>. For Type I liferafts, boarding\r\n\r\naids must be provided at two opposing positions on the raft. One boarding aid\r\n\r\nis sufficient for a Type II liferaft. Boarding aids must permit unassisted\r\n\r\nentry from the water into the unoccupied raft and must not at any time impair\r\n\r\neither the rigidity or the inflation characteristics of the raft. Puncturing of\r\n\r\ninflatable boarding aids must not affect the buoyancy of the raft buoyancy\r\n\r\nchambers. Boarding handles and/or stirrups used in conjunction with the\r\n\r\nboarding aids must withstand a pull of 500 pounds. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.7 <u>Righting Aids</u>. Means must be provided to right a\r\n\r\nnonreversible liferaft if it inflates in an inverted position. The means\r\n\r\nprovided for righting must be such that they may be used by one person in the\r\n\r\nwater. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.8 <u>Lifeline</u>. A nonrotting lifeline of contrasting\r\n\r\ncolor and at least 3/8-inch diameter or 3/4-inch width must encircle the\r\n\r\nliferaft on the outside periphery so that it can be easily grasped by persons\r\n\r\nin the water. The lifeline and its attachments must be capable of withstanding\r\n\r\na minimum load of 500 pounds and must not interfere with the liferaft\r\n\r\ninflation. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.9 <u>Grasp Line</u>. A grasp line, meeting the size and\r\n\r\nstrength requirements for the lifeline, must be provided with sufficient slack\r\n\r\nfor use by liferaft occupants to steady themselves when seated on the liferaft\r\n\r\ndeck with their backs to the main flotation tube(s). </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.10 <u>Color</u>. The color of the liferaft’s surfaces,\r\n\r\nincluding the canopy surface, visible from the air must be an International\r\n\r\nOrange-Yellow or an equivalent high visibility color. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.11 <u>Placards</u>. Suitable placarding must be provided\r\n\r\nin contrasting colors in waterproof paint which is not detrimental to the\r\n\r\nfabric, that denotes use and location of the inflation systems, raft equipment,\r\n\r\nboarding aids, and righting aids. For reversible rafts, placement of the\r\n\r\nplacarding must take into account usage of either side of the raft. The letters\r\n\r\nused for such placarding must be at least 2 inches high except that details and\r\n\r\nmiscellaneous instructions may be of smaller lettering. Applicable placarding\r\n\r\nmust take into account persons boarding or righting the raft form the water. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 5 TSO-C70a 4/13/84 Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.12 <u>Lights</u>. One or more survivor locator lights must\r\n\r\nbe provided that are approved under TSO-C85. The lights must be automatically\r\n\r\nactivated upon raft inflation in the water, and visible from any direction by\r\n\r\npersons in the water. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4. 13 <u>Raft Sea Performance</u>. The raft must meet the\r\n\r\nseaworthiness requirements in 6.2.3.2 and must be capable with its equipment of\r\n\r\nwithstanding a saltwater marine environment for a period of at least 15 days. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5. <u>Liferaft Equipment</u>. All lines must be suitably stowed\r\n\r\nand secured to prevent entanglement during launching/inflation of a liferaft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.1 <u>Mooring Line</u>. A nonrotting mooring line at least\r\n\r\n20 feet in length must be attached at one end to the raft, with the remainder\r\n\r\nof the line held flaked to the carrying case (See 5.2). The mooring line must\r\n\r\nbe capable of keeping the raft, loaded to maximum rated capacity, attached to a\r\n\r\nfloating aircraft, and not endanger the raft or cause the raft to spill\r\n\r\noccupants if the aircraft sinks. The line may be equipped with a mechanical\r\n\r\nrelease linkage. The breaking strength of the line must be at least 500 pounds,\r\n\r\nor 40 times the rated capacity of the raft, whichever is greater, but need not\r\n\r\nexceed 1,000 pounds. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.2 <u>Liferaft Launching Equipment</u>. A parachute ripcord\r\n\r\ngrip and retaining pocket must form the primary inflation control. The ripcord\r\n\r\ngrip or the attached static mooring line must be provided with means for\r\n\r\nattachment to the aircraft. If the ripcord grip is designed to attach to the\r\n\r\naircraft, its strength may not be less than that of the static mooring line.\r\n\r\nThe position of the ripcord grip must be standardized. When facing the release\r\n\r\nend of the carrying case, the center line of the ripcord grip retaining pocket\r\n\r\nmust lie at 45 degrees in the right upper quadrant of the end section. The\r\n\r\noutermost extremity of the ripcord grip may not extend beyond the outer margin\r\n\r\nof the carrying case. The line attached to the ripcord grip must serve both to\r\n\r\nretain the liferaft and to actuate the gas release(s). The tension required to withdraw\r\n\r\nthe static mooring line and to actuate the gas release mechanism(s) must be\r\n\r\nbetween 20 and 30 pounds. The strength of the gas release mechanism(s), its\r\n\r\nfittings, and its attachments may not be less than 100 pounds. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.3 <u>Sea Anchor</u>. A sea anchor, or anchors, or other\r\n\r\nequivalent means must be provided to maintain the raft, with rated capacity and\r\n\r\ncanopy installed, on a substantially constant heading relative to the wind and\r\n\r\nhave the ability to reduce the drift to 2 knots in 17 to 27-knot winds. Unless analysis\r\n\r\nand/or test data substantiating the adequacy of a lower breaking strength is\r\n\r\napproved by the manager of the FAA office to which this TSO data is to be\r\n\r\nsubmitted as required in paragraph c., Data Requirements, the line securing a\r\n\r\nsea anchor to the raft must have a breaking strength of 500 pounds or 40 pounds\r\n\r\ntime the rated capacity of the raft, whichever is greater. The attachment of\r\n\r\nthe line to the raft must be capable of withstanding a load of 1.5 times the\r\n\r\nline-rated strength without damaging the raft. The line must be at least 25\r\n\r\nfeet in length and must be protected to prevent it from being cut inadvertently\r\n\r\nby raft occupants. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.4 <u>Heaving-Trailing Line</u>. At least one floating\r\n\r\nheaving-trailing line not less than 75 feet in length for Type I rafts and not\r\n\r\nless than 35 feet in length for Type II rafts, and at least 250 pounds\r\n\r\nstrength, must be located on the main flotation tube near the sea anchor\r\n\r\nattachment. The </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 6 4/13/84 TSO-C70a Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>attach point of the line must withstand a pull of not less\r\n\r\nthan 1.5 times the line rated strength without damage to the raft. A\r\n\r\nheaving-trailing line must be accessible in any inflated position of a\r\n\r\nreversible liferaft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.5 <u>Emergency Inflation</u>. Means readily accessible to\r\n\r\noccupants of the raft, and having a displacement of at least 32 cubic inches\r\n\r\nper full stroke, must be provided to manually inflate and maintain chambers at\r\n\r\nminimum operating pressure. Manual inflation valves, with a nonreturn opening\r\n\r\nadequate for the size and capacity of the inflation means, must be located to\r\n\r\npermit inflation of all chambers. The location must take into consideration\r\n\r\noccupancy of each side of reversible raft. The inflation means and valves must\r\n\r\nhave provisions to prevent inadvertent removal and loss when either stowed or in\r\n\r\nuse. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.6 <u>Accessory Case Tiedowns</u>. Provisions must be made\r\n\r\nfor tiedowns to hold any accessory case. Each accessory case tiedown must\r\n\r\nwithstand a pull of 250 pounds. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.7 <u>Carrying Case</u>. A carrying case which meets the\r\n\r\nflammability requirement of this standard and which properly fits the packed\r\n\r\nliferaft must be provided. Carrying case materials must be of a highly visible\r\n\r\ncolor, be fungus proof, and be resistant to aircraft fuels and other fluids.\r\n\r\nThe carrying case must provide chafe protection to the liferaft. The carrying\r\n\r\ncase must be provided with easily distinguishable handles so that it may be\r\n\r\ncarried by one person, carried by two persons in tandem, or dragged by either\r\n\r\nend; none of these carrying operations must tend to pull the carrying case\r\n\r\nopen. Each handle must be easily grasped and its strength must be at least four\r\n\r\ntime the total weight of the liferaft and case. Conventional zippers may not be\r\n\r\nemployed for closure. Location of and instructions for use of the inflation\r\n\r\nhandle must be clearly identified and marked on the carrying case surface. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.8 <u>Knife</u>. A hook type knife secured by a retaining\r\n\r\nline must be sheathed and attached to the raft adjacent to the point of mooring\r\n\r\nline attachment. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6 <u>Tests</u>. </p>\r\n\r\n\r\n\r\n<table class=MsoNormalTable border=1 cellspacing=0 cellpadding=0\r\n\r\n style=\'border-collapse:collapse;border:none\'>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=601 colspan=4 valign=top style=\'width:450.9pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>6.1 <u>Material Tests</u>. The material tests required in\r\n\r\n  paragraph 3.0 of this standard must be determined in accordance with the\r\n\r\n  following test method or other approved equivalent methods: <u>Test Method </u></p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:14.85pt\'>\r\n\r\n  <td width=200 valign=top style=\'width:150.3pt;border:none;padding:0in 5.4pt 0in 5.4pt;\r\n\r\n  height:14.85pt\'>\r\n\r\n  <p class=MsoNormal><u>Tests Required</u></p>\r\n\r\n  </td>\r\n\r\n  <td width=200 colspan=2 valign=top style=\'width:150.3pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:14.85pt\'>\r\n\r\n  <p class=MsoNormal>Federal Test Method Standard No. l91A <u>dated July 20,\r\n\r\n  1978 </u></p>\r\n\r\n  </td>\r\n\r\n  <td width=200 valign=top style=\'width:150.3pt;border:none;padding:0in 5.4pt 0in 5.4pt;\r\n\r\n  height:14.85pt\'>\r\n\r\n  <p class=MsoNormal><u>Notes </u></p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=200 valign=top style=\'width:150.3pt;border:none;padding:0in 5.4pt 0in 5.4pt;\r\n\r\n  height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Accelerated Age </p>\r\n\r\n  </td>\r\n\r\n  <td width=200 colspan=2 valign=top style=\'width:150.3pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5850 </p>\r\n\r\n  </td>\r\n\r\n  <td width=200 valign=top style=\'width:150.3pt;border:none;padding:0in 5.4pt 0in 5.4pt;\r\n\r\n  height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Per Note (1) </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Tensile Strength (Grab Test) </p>\r\n\r\n  </td>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5100 </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Tear Strength(Trapezoid Test) </p>\r\n\r\n  </td>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5136 (4) </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:14.85pt\'>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:14.85pt\'>\r\n\r\n  <p class=MsoNormal>Tear Strength (Tongue Test) </p>\r\n\r\n  </td>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:14.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5134 </p>\r\n\r\n  <p class=MsoNormal>(Alternate to Trapezoid Test See 3.1.4.1) </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Ply Adhesion </p>\r\n\r\n  </td>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5960 </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Coat Adhesion </p>\r\n\r\n  </td>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5970 </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr height=0>\r\n\r\n  <td width=200 style=\'border:none\'></td>\r\n\r\n  <td width=100 style=\'border:none\'></td>\r\n\r\n  <td width=100 style=\'border:none\'></td>\r\n\r\n  <td width=200 style=\'border:none\'></td>\r\n\r\n </tr>\r\n\r\n</table>\r\n\r\n\r\n\r\n<p class=MsoNormal><u><span style=\'text-decoration:none\'> </span></u></p>\r\n\r\n\r\n\r\n<p class=MsoNormal><u>NOTES</u>: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(1) Samples for the accelerated aging tests must be exposed\r\n\r\nto a temperature of 158 ± 5 degrees Fahrenheit for not less than 168 hours.\r\n\r\nAfter exposure, the samples must be allowed to cool to 70 ± 2 degrees\r\n\r\nFahrenheit for neither less than 16 hours nor more than 96 hours before\r\n\r\ndetermining their physical properties in accordance with 3.1 of this standard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(2) Each sample shall consist of two strips 2 inches maximum\r\n\r\nwidth by 5 inches maximum length bonded together with an overlap 3/4 inches\r\n\r\nmaximum. The free ends must be placed in the testing machine described in\r\n\r\nMethod 5100 and separated at a rate of 12 ± 0.5 inches per minute. The average\r\n\r\nvalue of two samples must be reported. Samples may be multilayered as required\r\n\r\nto provide adequate strength to ensure against premature material failure. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(3) Separation rate must be 2.0 to 2.5 inches per minute. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(4) Federal Test Method Standard No. 191 in effect December\r\n\r\n31, 1968. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2 <u>Liferaft Tests</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.1 <u>Pressure Retention</u>. Under static conditions and\r\n\r\nwhen inflated and stabilized at the nominal operating pressure, the pressure in\r\n\r\neach inflatable chamber must not fall below the minimum operating pressure in\r\n\r\nless than 24 hours. The minimum operating pressure is the pressure required to\r\n\r\nmeet the minimum design buoyancy requirements of paragraph 4.2 of this\r\n\r\nstandard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.2 <u>Overpressure Tests</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.2.1 The device must be shown by test to withstand a\r\n\r\npressure at least 1.5 times the maximum operating pressure for at least 5\r\n\r\nminutes without sustaining damage. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.2.2 At least one specimen of the inflatable device model\r\n\r\nmust be shown by test to withstand a pressure at least 2 times the maximum\r\n\r\noperating pressure without failure. Devices so tested must be clearly\r\n\r\nidentified. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal> </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3 <u>Functional Tests</u>. Each liferaft model must pass\r\n\r\nthe following tests: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 8 4/13/84 TSO-C70a Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1 <u>Water Tests</u>. In either a controlled pool or\r\n\r\nfresh water, the liferaft capacity and buoyancy must be demonstrated as\r\n\r\nfollows: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.1 Both rated and overload capacities established in\r\n\r\naccordance with the requirements of paragraph 4.1 of this standard must be\r\n\r\ndemonstrated with inflation tubes at minimum operating pressure and with the\r\n\r\ncritical buoyancy chamber deflated. The resultant freeboard in each case must\r\n\r\nmeet the requirements of paragraph 4.2 of this standard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.2 Persons used in the demonstration must have an\r\n\r\naverage weight of not less than 170 pounds. Ballast in the form of sand bags or\r\n\r\nequivalent may be used to achieve proper loading provided the appropriate\r\n\r\nweight distribution within the raft is maintained. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.3 Persons used in the demonstration must wear life\r\n\r\npreservers with at least one chamber inflated. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.4 The required liferaft equipment, including one\r\n\r\nemergency locator transmitter or a weight simulating a transmitter, must be\r\n\r\naboard the liferaft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.5 It must be demonstrated that the raft is\r\n\r\nself-righting, or can be righted by one person in water, or while inverted can\r\n\r\nbe boarded and provide flotation for the normal rated capacity. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.6 It must be demonstrated that the boarding aids are\r\n\r\nadequate for the purpose intended and that it is possible for an adult wearing\r\n\r\nan inflated life preserver to board the raft unassisted. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.2 <u>Sea Trials</u>. The liferaft must be demonstrated\r\n\r\nby tests or analysis, or a combination of both, to be seaworthy in an open sea\r\n\r\ncondition of 17 to 27-knot winds and waves of 6 to 10 feet. In tests, ballast\r\n\r\nin the form of sand bags or equivalent may be used to achieve proper loading\r\n\r\nprovided the appropriate weight distribution within the raft is maintained. If\r\n\r\nanalysis is used, the analysis must be approved by the manager of the FAA\r\n\r\noffice to which the TSO data is to be submitted as required in paragraph c.,\r\n\r\nData Requirements. For this seaworthiness demonstration, the following apply: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.2.1 The liferaft must be deployed to simulate\r\n\r\ndeployment from an aircraft under the most adverse wind direction and wave\r\n\r\ncondition. If the liferaft is an aspirated inflated type, it must be\r\n\r\ndemonstrated that water ingested during inflation will not cause the raft to\r\n\r\nfail to meet the requirement for buoyancy under rated capacity in 4.2. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.2.2 All required equipment must be aboard and the\r\n\r\nproper functioning of each item of equipment must be demonstrated. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.2.3 The canopy must be erected for a sufficient time\r\n\r\nto assess its resistance to tearing and the protection it affords. The method\r\n\r\nof erection must be </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 9 TSO-C70a 4/13/84 Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>shown to be accomplished by one occupant of an otherwise\r\n\r\nempty raft, and by occupants of a raft filled to rated capacity. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.2.4 The stability of the raft must be demonstrated when\r\n\r\noccupied at normal rated capacity and at 50 percent rated capacity. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.3 <u>Liferaft Drop Test</u>. A complete liferaft\r\n\r\npackage must be dropped or thrown from a height of 5 feet onto a hard surface\r\n\r\nfloor after which it must be inflated and meet the pressure retention\r\n\r\nrequirements of paragraph 6.2.1 of this standard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.4 <u>Portability Test</u>. If the liferaft is to be\r\n\r\nmanually deployed, it must be demonstrated that the complete liferaft package\r\n\r\ncan be moved from a typical stowage installation by no more that two persons\r\n\r\nand then deployed at another suitable exit. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.5 <u>Carrying Case</u>. It must be demonstrated at\r\n\r\nleast 10 times that the carrying case will open satisfactorily and cause no\r\n\r\ndelay in the deployment and inflation of the liferaft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.6 <u>Gas Cylinder Releases</u>. It must be\r\n\r\ndemonstrated that pulling the ripcord grip from any position will actuate the\r\n\r\nprimary gas release(s). </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.5 <u>Temperature Exposure and Inflation</u>. The\r\n\r\nmanufacturer shall determine the minimum temperature at which the complete\r\n\r\nliferaft assembly with its inflation bottles, will be “rounded out” (i.e.,\r\n\r\nattain its design shape and approximate dimension) so that the liferaft will be\r\n\r\nable to receive and to support the first occupant within one minute after the\r\n\r\nstart of inflation. Thereafter, the rate of inflation must progress in such a\r\n\r\nmanner and rate as to ensure a serviceable and rigid liferaft for boarding by\r\n\r\nthe remainder of the occupants. Similarly, a maximum environmental temperature\r\n\r\nto which the liferaft assembly may be exposed and still remain in a seaworthy\r\n\r\ncondition upon inflation must be determined. The temperature limitations must\r\n\r\nbe submitted to the FAA and liferaft purchaser in accordance with the data\r\n\r\nrequirements of this TSO. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.5.1 <u>Test Procedure</u>. The packed liferaft assembly\r\n\r\nwith its inflation bottles installed must be exposed to each of the above\r\n\r\ntemperatures for not less than 24 hours and must be inflated within 5 minutes\r\n\r\nafter removal from such temperatures. The liferaft must be allowed to return to\r\n\r\na temperature of approximately 70 ± 5 degrees Fahrenheit before being deflated,\r\n\r\nrepacked, and subjected to a second exposure. After the above tests have been\r\n\r\ncompleted, the liferaft must be able to pass tests required by paragraphs 6.2.1\r\n\r\nand 6.2.2 of this standard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 10</p>\r\n\r\n\r\n\r\n<p class=MsoNormal> </p>\r\n\r\n\r\n\r\n</div>',0,0,1,1,1,40,40,300,0,0,1,0),(11,1,'FAA Regulations','','','<div class=WordSection1>\r\n\r\n\r\n\r\nDepartment of Transportation <br />\r\nFederal Aviation Administration <br />\r\nAircraft Certification Service<br />\r\nWashington, DC<br /><br />\r\n\r\n\r\n4/13/84<br /><br />\r\n\r\n\r\n\r\n<p class=MsoNormal><b>Subject:</b> TSO-C70a, LIFERAFTS (REVERSIBLE AND\r\n\r\nNONREVERSIBLE)</p>\r\n\r\n\r\n\r\n<p class=MsoNormal> </p>\r\n\r\n\r\n\r\n<p class=MsoNormal><b>Technical Standard Order </b></p>\r\n\r\n\r\n\r\n<p class=MsoNormal>a. <u>Applicability</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(1) <u>Minimum Performance Standards</u>. This Technical\r\n\r\nStandard Order (TSO) prescribes the minimum performance standards that\r\n\r\nliferafts combinations must meet to be identified with the applicable TSO\r\n\r\nmarking. This TSO has been prepared in accordance with the procedural rules set\r\n\r\nforth in Subpart O of the Federal Aviation Regulations Part 21. New models of\r\n\r\nliferafts that are to be so identified and that are manufactured on or after\r\n\r\nthe effective date of this TSO must meet the standards set forth in Appendix 1,\r\n\r\n“Federal Aviation Administration Standard for Liferafts” of this TSO. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(2) <u>Environmental Standard</u>. None. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(3) <u>Test Methods</u>. This TSO references Federal Test\r\n\r\nMethod Standard No. 191A dated 7/20/78. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>b. <u>Marking</u>. In addition to the marking required in\r\n\r\nFederal Aviation Regulations (FAR) § 21.607(d) (14 CFR 21.607), the part\r\n\r\nnumber, serial number and date of manufacture, weight and rated and overload\r\n\r\ncapacities of the liferaft must be shown also. The weight of the liferaft\r\n\r\nincludes any accessories required in this TSO. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>c. <u>Data Requirements</u>. In accordance with FAR §\r\n\r\n21.605, (14 CFR 21.605), each manufacturer shall furnish the Manager, Aircraft\r\n\r\nCertification Office (ACO), Federal Aviation Administration, having\r\n\r\ngeographical purview of the manufacturer’s facilities, one copy each of the\r\n\r\nfollowing technical data: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(1) Operating instructions. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(2) Packing instructions. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(3) A complete description of the device, including detailed\r\n\r\ndrawings, materials identification and specifications, and installation\r\n\r\nprocedures. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>DISTRIBUTION: ZVS-326; A-W(WS)-3; A-X(FS)-3; A-X(CD)-4; A-FFS-1,2,7,8(LTD);\r\n\r\nA-FAC-0(MAX); AVN-1(2 cys) TSO-C70a 4/13/84 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(4) Manufacturer’s TSO qualification test report. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(5) Applicable installation limitations, including stowage\r\n\r\narea temperatures. The manufacturer shall also provide the purchaser with such\r\n\r\nlimitations. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(6) Maintenance instructions, including instructions\r\n\r\nregarding inspection, repair, and stowage of materials. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(7) The functional test specification to be used to test\r\n\r\neach production article to ensure compliance with this TSO. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>d. <u>Availability of Referenced Documents</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(1) Appendix 1, “Federal Aviation Administration Standards\r\n\r\nfor Liferafts,” of this TSO specifies certain test methods that are contained\r\n\r\nin Federal Test Method Standard No. 191A unless otherwise noted. Federal Test\r\n\r\nMethod Standard No. 191A may be examined at the FAA Headquarters in the Office\r\n\r\nof Airworthiness, Aircraft Engineering Division (AWS-110), and at all Aircraft\r\n\r\nCertification Offices, and may be obtained (or purchased) from the General\r\n\r\nServices Administration, Business Service Center, Region 3, 7th and D Streets,\r\n\r\nS.W., Washington, D.C. 20407. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(2) Federal Aviation Regulations Part 21, Subpart O and\r\n\r\nAdvisory Circular 20-110, Index of Aviation Technical Standard Orders may be\r\n\r\nreviewed at the FAA Headquarters in the Office of Airworthiness, Aircraft\r\n\r\nEngineering Division (AWS-110), and at all regional Aircraft Certification\r\n\r\nOffices. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>/S/ J. A. Pontecorvo </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Acting Director of Airworthiness </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 2 4/13/84 TSO-C70a Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>APPENDIX 1. FEDERAL AVIATION ADMINISTRATION STANDARD FOR LIFERAFTS\r\n\r\n</p>\r\n\r\n\r\n\r\n<p class=MsoNormal>1. <u>Purpose</u>. This standard provides the minimum\r\n\r\nperformance standards for liferafts. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>2. <u>Scope</u>. This standard covers the following types of\r\n\r\nliferafts: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>TYPE I - For use in any category aircraft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>TYPE II - For use in nontransport category aircraft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3. <u>Material and Workmanship</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1 <u>Nonmetallic Materials</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.1 The finished device must be clean and free from any\r\n\r\ndefects that might affect its function. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.2 Coated fabrics and other items, such as webbing,\r\n\r\nsubject to deterioration must have been manufactured not more than 18 months\r\n\r\nprior to the date of delivery of the finished product. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.3 The materials must not support fungus growth. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.4 <u>Coated fabrics - General. </u>Coated fabrics,\r\n\r\nincluding seams, subject to deterioration used in the manufacture of the\r\n\r\ndevices must possess at least 90 percent of their original physical properties\r\n\r\nafter these fabrics have been subjected to the accelerated ageing test\r\n\r\nspecified in paragraph 6.1 of this standard. Material used in the construction\r\n\r\nof flotation chambers and decks must be capable of withstanding the detrimental\r\n\r\neffects of exposure to fuels, oils and hydraulic fluids. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.4.1 <u>Strength</u>. Coated fabrics used for these\r\n\r\napplications must conform to the following minimum strengths after ageing: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tensile Strength (Grab Test) </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Warp 190 pounds/inch </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Fill 190 pounds/inch </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tear Strength </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Trapezoid Test: 13 X 13 pounds/inch (minimum); or </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tongue Test: 13 X 13 pounds/inch (minimum) </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.4.2 <u>Adhesion</u>. In addition to the requirements of\r\n\r\n3.1.4.1, coated fabrics must meet the following minimum strengths after ageing:\r\n\r\n</p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 1 TSO-C70a 4/13/84 Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Ply Adhesion - </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5 pounds/inch width at 70 ± 2 degrees F at a pull of 2.0 to\r\n\r\n2.5 inches/minute </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Coat Adhesion - </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5 pounds/inch width at 70 ± 2 degrees F at 2.0 to 2.5\r\n\r\ninches/minute </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.4.3 <u>Permeability</u>. For coated fabrics used in the\r\n\r\nmanufacture of inflation chambers, the maximum permeability to helium\r\n\r\n(Permeability Test Method) may not exceed 10 liters per square meter in 24\r\n\r\nhours at 77 degrees F, or its equivalent using hydrogen. The permeameter must\r\n\r\nbe calibrated for the gas used. In lieu of this permeability test, an alternate\r\n\r\ntest may be used provided the alternate test has been approved as an equivalent\r\n\r\nto this permeability test by the manager of the FAA office to which this TSO\r\n\r\ndata is to be submitted, as required in Paragraph c., Data Requirements. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.5 <u>Seam Strength and Adhesives</u>. Cemented or heat\r\n\r\nsealable seams used in the manufacture of the device must meet the following\r\n\r\nminimum strength requirements: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Shear Strength (Seam Shear Test Method) - 175 pounds/inch\r\n\r\nwidth at 75 degrees F; </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>40 pounds/inch width at 140 degrees F </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Peel Strength (Peel Test Method) - </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5 pounds/inch width at 70 degrees F </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.6 <u>Seam Tape</u>. If tape is used for seam\r\n\r\nreinforcement or abrasion protection of seams or both, the tape must have\r\n\r\nminimum breaking strength (Grab Test Method) of 40 pounds/inch width in both\r\n\r\nthe warp and fill directions. When applied to the seam area, the adhesion\r\n\r\nstrength characteristics must meet the seam strength requirements in paragraph\r\n\r\n3.1.5. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.7 <u>Canopy</u>. Fabrics used for this purpose must be\r\n\r\nwaterproof and resistant to sun penetration, and must not affect the potability\r\n\r\nof collected water, and must meet the following minimum requirements in the\r\n\r\napplicable tests prescribed in paragraph 6.1 of this standard, except that in\r\n\r\nlieu of meeting the tensile strength requirements, a fabricated canopy may be\r\n\r\ndemonstrated to withstand 35-knot winds and 52-knot gusts: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tensile Strength (Grab Test) </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Warp 75 pounds/inch </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Fill 75 pounds/inch </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tear Strength </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Trapezoid Test: 4 x 4 pounds/inch; or </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tongue Test: 4 x 4 pounds/inch </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Coat Adhesion of Coated Fabrics </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.5 pounds/inch width at 70 ± 2 degrees F at a separation rate\r\n\r\nof 2.0 to 2.5 inches/minute </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 2 4/13/84 TSO-C70a Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.8 <u>Flammability</u>. The device (including carrying\r\n\r\ncase or stowage container) must be constructed of materials which meet FAR §\r\n\r\n25.853 (14 CFR 25.853) in effect on May 1, 1972, as follows: Type I rafts must\r\n\r\nmeet § 25.853 (b) and Type II rafts must meet § 25.853 (b-3). </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.2 <u>Metallic Parts</u>. All metallic parts must be made\r\n\r\nof corrosion-resistant material or must be suitably protected against\r\n\r\ncorrosion. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.3 <u>Protection</u>. All inflation chambers and load\r\n\r\ncarrying fabrics must be protected in such a manner that nonfabric parts do not\r\n\r\ncause chafing or abrasion of the material in either the packed or the inflated\r\n\r\ncondition. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4. <u>Design and Construction</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1 <u>Capacity</u>. The rated and overload capacities of a\r\n\r\nlife raft must be based on not less than the following usable sitting areas on\r\n\r\nthe deck of the life raft: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Rated Capacity 3.6 feet<sup>2</sup>/person </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Overload Capacity 2.4 feet<sup>2</sup>/person </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1 <u>Capacity, Alternate Rating Methods</u>. In lieu of\r\n\r\nthe rated capacity as determined by paragraph 4.1 of this standard, one of the\r\n\r\nfollowing methods may be used: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.1 The rated capacity of a Type I or Type II liferaft\r\n\r\nmay be determined by the number of occupant seating spaces which can be\r\n\r\naccommodated within the occupiable area exclusive of the perimeter structure\r\n\r\n(such as buoyancy tubes) without overlapping of the occupant seating spaces and\r\n\r\nwith the occupant seating spaces located to provide each occupant with a back\r\n\r\nsupport of not less than 8 inches high. The occupant seating spaces may not be\r\n\r\nless than the following size: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>39.4 inches </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>BACK SUPPORT </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>ALONG </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>THIS 14.7 inches 7.2 inches </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>SIDE. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2 The rated capacity of a Type I or Type II liferaft\r\n\r\nmay be determined on the basis of a controlled pool or fresh water\r\n\r\ndemonstration which includes conditions prescribed under paragraph 6.2.3 of\r\n\r\nthis standard and the following: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2.1 The sitting area on the liferaft deck may not be\r\n\r\nless than 3 square feet per person. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2.2 The liferaft must have a back support for each\r\n\r\noccupant of not less than 14.7 inches wide and 8 inches high. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 3 TSO-C70a 4/13/84 Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2.3 At least 30 percent but no more than 50 percent of\r\n\r\nthe participants must be female. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2.4 Except as provided below, all participants must\r\n\r\nselect their sitting space without outside placement assistance. Instructions,\r\n\r\neither identified on the raft or announced prior to the demonstration, may be\r\n\r\nused informing that each participant should have a back support. A raft\r\n\r\ncommander, acting in the capacity of a crewmember, may direct occupant seating\r\n\r\nto the extent necessary to achieve reasonable weight distribution within the\r\n\r\nraft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2.5 All participants must not have practiced,\r\n\r\nrehearsed, or have had the demonstration procedures described to them within\r\n\r\nthe past 6 months. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.2 <u>Buoyancy</u>. An average occupant weight of not less\r\n\r\nthan 170 pounds must be used in all applicable calculations and tests specified\r\n\r\nherein. In tests, ballast in the form of sand bags or equivalent may be used to\r\n\r\nachieve the 170 pound average, provided the appropriate weight distribution\r\n\r\nwithin the raft is maintained. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.2.1 <u>Type I Liferaft</u>. Buoyancy must be provided by\r\n\r\ntwo independent buoyancy tubes each of which, including the raft floor, must be\r\n\r\ncapable of supporting the rated and overload capacities in fresh water if the\r\n\r\nother tube is deflated. The liferaft loaded to its rated capacity must have a\r\n\r\nfreeboard of at least 12 inches with both buoyancy tubes at minimum operating\r\n\r\npressure. The liferaft loaded to its rated capacity with the critical tube\r\n\r\ndeflated and the remaining tube at minimum operating pressure must have a\r\n\r\nfreeboard of at least 6 inches. The liferaft loaded to its overload capacity\r\n\r\nwith the critical tube deflated must have a measurable freeboard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.2.2 <u>Type II Liferaft</u>. When single tube construction\r\n\r\nis used to provide the buoyancy, internal bulkheads must divide the flotation\r\n\r\ntube into at least two separate chambers such that the liferaft will be capable\r\n\r\nof supporting the rated number of occupants out of fresh water in the event\r\n\r\nthat one chamber is deflated. The complete liferaft loaded to its rated\r\n\r\ncapacity must have a freeboard of at least 6 inches. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.3 <u>Inflation</u>. The inflation system must be arranged\r\n\r\nso that failure of one inflatable chamber or manifold will not result in loss\r\n\r\nof gas from the other chambers. The inflation equipment must be located so as\r\n\r\nnot to interfere with boarding operation. Components of the inflation system\r\n\r\nmust meet Department of Transportation Specification 3AA (49 CFR 178.37) or\r\n\r\nSpecification 3HT (49 CFR 178.44) in effect May 30, 1976, as applicable, or an\r\n\r\nequivalent approved by the manager of the FAA office to which this TSO data is\r\n\r\nto be submitted, as required in paragraph c., Data Requirements. The inflation\r\n\r\nsystem must be constructed to minimize leakage due to back pressure after\r\n\r\ninflation. If an air aspirator system is used, the system must be constructed\r\n\r\neither to prevent the ingestion of foreign objects or to prevent failure or\r\n\r\nmalfunction as a result of ingestion of small foreign objects. For Type I\r\n\r\nliferafts, there must be an independent inflation source for each primary\r\n\r\nflotation tube, except that there may be a single inflation source for all\r\n\r\nflotation tubes if data substantiating the reliability of the single </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 4 4/13/84 TSO-C70a Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>inflation source is approved by the manager of the FAA\r\n\r\noffice to which this TSO data is to be submitted, as required in Paragraph c.,\r\n\r\nData Requirements. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.4 <u>Liferaft Canopy</u>. A canopy must be packed with or\r\n\r\nattached to the raft. The erected canopy must be capable of withstanding\r\n\r\n35-knot winds and 52-knot gusts in open water. The canopy must provide adequate\r\n\r\nheadroom and must have provision for openings 180 degrees apart. Means must be\r\n\r\nprovided to make the openings weathertight. If the canopy is not integral with\r\n\r\nthe raft, it must be capable of being erected by occupants following\r\n\r\nconspicuously posted, simple instructions. It must be capable of being erected\r\n\r\nby one occupant of an otherwise empty raft and by occupants of a raft filled to\r\n\r\nrated capacity. For a reversible raft, attachment provisions must be installed\r\n\r\nto permit the canopy to be installed on either side of the raft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.5 <u>Capsize Resistance</u>. There must be water pockets\r\n\r\nor other means to provide capsize resistance for an empty or lightly loaded\r\n\r\nraft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.6 <u>Boarding Aids</u>. For Type I liferafts, boarding\r\n\r\naids must be provided at two opposing positions on the raft. One boarding aid\r\n\r\nis sufficient for a Type II liferaft. Boarding aids must permit unassisted\r\n\r\nentry from the water into the unoccupied raft and must not at any time impair\r\n\r\neither the rigidity or the inflation characteristics of the raft. Puncturing of\r\n\r\ninflatable boarding aids must not affect the buoyancy of the raft buoyancy\r\n\r\nchambers. Boarding handles and/or stirrups used in conjunction with the\r\n\r\nboarding aids must withstand a pull of 500 pounds. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.7 <u>Righting Aids</u>. Means must be provided to right a\r\n\r\nnonreversible liferaft if it inflates in an inverted position. The means\r\n\r\nprovided for righting must be such that they may be used by one person in the\r\n\r\nwater. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.8 <u>Lifeline</u>. A nonrotting lifeline of contrasting\r\n\r\ncolor and at least 3/8-inch diameter or 3/4-inch width must encircle the\r\n\r\nliferaft on the outside periphery so that it can be easily grasped by persons\r\n\r\nin the water. The lifeline and its attachments must be capable of withstanding\r\n\r\na minimum load of 500 pounds and must not interfere with the liferaft\r\n\r\ninflation. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.9 <u>Grasp Line</u>. A grasp line, meeting the size and\r\n\r\nstrength requirements for the lifeline, must be provided with sufficient slack\r\n\r\nfor use by liferaft occupants to steady themselves when seated on the liferaft\r\n\r\ndeck with their backs to the main flotation tube(s). </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.10 <u>Color</u>. The color of the liferaft’s surfaces,\r\n\r\nincluding the canopy surface, visible from the air must be an International\r\n\r\nOrange-Yellow or an equivalent high visibility color. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.11 <u>Placards</u>. Suitable placarding must be provided\r\n\r\nin contrasting colors in waterproof paint which is not detrimental to the\r\n\r\nfabric, that denotes use and location of the inflation systems, raft equipment,\r\n\r\nboarding aids, and righting aids. For reversible rafts, placement of the\r\n\r\nplacarding must take into account usage of either side of the raft. The letters\r\n\r\nused for such placarding must be at least 2 inches high except that details and\r\n\r\nmiscellaneous instructions may be of smaller lettering. Applicable placarding\r\n\r\nmust take into account persons boarding or righting the raft form the water. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 5 TSO-C70a 4/13/84 Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.12 <u>Lights</u>. One or more survivor locator lights must\r\n\r\nbe provided that are approved under TSO-C85. The lights must be automatically\r\n\r\nactivated upon raft inflation in the water, and visible from any direction by\r\n\r\npersons in the water. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4. 13 <u>Raft Sea Performance</u>. The raft must meet the\r\n\r\nseaworthiness requirements in 6.2.3.2 and must be capable with its equipment of\r\n\r\nwithstanding a saltwater marine environment for a period of at least 15 days. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5. <u>Liferaft Equipment</u>. All lines must be suitably stowed\r\n\r\nand secured to prevent entanglement during launching/inflation of a liferaft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.1 <u>Mooring Line</u>. A nonrotting mooring line at least\r\n\r\n20 feet in length must be attached at one end to the raft, with the remainder\r\n\r\nof the line held flaked to the carrying case (See 5.2). The mooring line must\r\n\r\nbe capable of keeping the raft, loaded to maximum rated capacity, attached to a\r\n\r\nfloating aircraft, and not endanger the raft or cause the raft to spill\r\n\r\noccupants if the aircraft sinks. The line may be equipped with a mechanical\r\n\r\nrelease linkage. The breaking strength of the line must be at least 500 pounds,\r\n\r\nor 40 times the rated capacity of the raft, whichever is greater, but need not\r\n\r\nexceed 1,000 pounds. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.2 <u>Liferaft Launching Equipment</u>. A parachute ripcord\r\n\r\ngrip and retaining pocket must form the primary inflation control. The ripcord\r\n\r\ngrip or the attached static mooring line must be provided with means for\r\n\r\nattachment to the aircraft. If the ripcord grip is designed to attach to the\r\n\r\naircraft, its strength may not be less than that of the static mooring line.\r\n\r\nThe position of the ripcord grip must be standardized. When facing the release\r\n\r\nend of the carrying case, the center line of the ripcord grip retaining pocket\r\n\r\nmust lie at 45 degrees in the right upper quadrant of the end section. The\r\n\r\noutermost extremity of the ripcord grip may not extend beyond the outer margin\r\n\r\nof the carrying case. The line attached to the ripcord grip must serve both to\r\n\r\nretain the liferaft and to actuate the gas release(s). The tension required to withdraw\r\n\r\nthe static mooring line and to actuate the gas release mechanism(s) must be\r\n\r\nbetween 20 and 30 pounds. The strength of the gas release mechanism(s), its\r\n\r\nfittings, and its attachments may not be less than 100 pounds. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.3 <u>Sea Anchor</u>. A sea anchor, or anchors, or other\r\n\r\nequivalent means must be provided to maintain the raft, with rated capacity and\r\n\r\ncanopy installed, on a substantially constant heading relative to the wind and\r\n\r\nhave the ability to reduce the drift to 2 knots in 17 to 27-knot winds. Unless analysis\r\n\r\nand/or test data substantiating the adequacy of a lower breaking strength is\r\n\r\napproved by the manager of the FAA office to which this TSO data is to be\r\n\r\nsubmitted as required in paragraph c., Data Requirements, the line securing a\r\n\r\nsea anchor to the raft must have a breaking strength of 500 pounds or 40 pounds\r\n\r\ntime the rated capacity of the raft, whichever is greater. The attachment of\r\n\r\nthe line to the raft must be capable of withstanding a load of 1.5 times the\r\n\r\nline-rated strength without damaging the raft. The line must be at least 25\r\n\r\nfeet in length and must be protected to prevent it from being cut inadvertently\r\n\r\nby raft occupants. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.4 <u>Heaving-Trailing Line</u>. At least one floating\r\n\r\nheaving-trailing line not less than 75 feet in length for Type I rafts and not\r\n\r\nless than 35 feet in length for Type II rafts, and at least 250 pounds\r\n\r\nstrength, must be located on the main flotation tube near the sea anchor\r\n\r\nattachment. The </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 6 4/13/84 TSO-C70a Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>attach point of the line must withstand a pull of not less\r\n\r\nthan 1.5 times the line rated strength without damage to the raft. A\r\n\r\nheaving-trailing line must be accessible in any inflated position of a\r\n\r\nreversible liferaft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.5 <u>Emergency Inflation</u>. Means readily accessible to\r\n\r\noccupants of the raft, and having a displacement of at least 32 cubic inches\r\n\r\nper full stroke, must be provided to manually inflate and maintain chambers at\r\n\r\nminimum operating pressure. Manual inflation valves, with a nonreturn opening\r\n\r\nadequate for the size and capacity of the inflation means, must be located to\r\n\r\npermit inflation of all chambers. The location must take into consideration\r\n\r\noccupancy of each side of reversible raft. The inflation means and valves must\r\n\r\nhave provisions to prevent inadvertent removal and loss when either stowed or in\r\n\r\nuse. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.6 <u>Accessory Case Tiedowns</u>. Provisions must be made\r\n\r\nfor tiedowns to hold any accessory case. Each accessory case tiedown must\r\n\r\nwithstand a pull of 250 pounds. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.7 <u>Carrying Case</u>. A carrying case which meets the\r\n\r\nflammability requirement of this standard and which properly fits the packed\r\n\r\nliferaft must be provided. Carrying case materials must be of a highly visible\r\n\r\ncolor, be fungus proof, and be resistant to aircraft fuels and other fluids.\r\n\r\nThe carrying case must provide chafe protection to the liferaft. The carrying\r\n\r\ncase must be provided with easily distinguishable handles so that it may be\r\n\r\ncarried by one person, carried by two persons in tandem, or dragged by either\r\n\r\nend; none of these carrying operations must tend to pull the carrying case\r\n\r\nopen. Each handle must be easily grasped and its strength must be at least four\r\n\r\ntime the total weight of the liferaft and case. Conventional zippers may not be\r\n\r\nemployed for closure. Location of and instructions for use of the inflation\r\n\r\nhandle must be clearly identified and marked on the carrying case surface. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.8 <u>Knife</u>. A hook type knife secured by a retaining\r\n\r\nline must be sheathed and attached to the raft adjacent to the point of mooring\r\n\r\nline attachment. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6 <u>Tests</u>. </p>\r\n\r\n\r\n\r\n<table class=MsoNormalTable border=1 cellspacing=0 cellpadding=0\r\n\r\n style=\'border-collapse:collapse;border:none\'>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=601 colspan=4 valign=top style=\'width:450.9pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>6.1 <u>Material Tests</u>. The material tests required in\r\n\r\n  paragraph 3.0 of this standard must be determined in accordance with the\r\n\r\n  following test method or other approved equivalent methods: <u>Test Method </u></p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:14.85pt\'>\r\n\r\n  <td width=200 valign=top style=\'width:150.3pt;border:none;padding:0in 5.4pt 0in 5.4pt;\r\n\r\n  height:14.85pt\'>\r\n\r\n  <p class=MsoNormal><u>Tests Required</u></p>\r\n\r\n  </td>\r\n\r\n  <td width=200 colspan=2 valign=top style=\'width:150.3pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:14.85pt\'>\r\n\r\n  <p class=MsoNormal>Federal Test Method Standard No. l91A <u>dated July 20,\r\n\r\n  1978 </u></p>\r\n\r\n  </td>\r\n\r\n  <td width=200 valign=top style=\'width:150.3pt;border:none;padding:0in 5.4pt 0in 5.4pt;\r\n\r\n  height:14.85pt\'>\r\n\r\n  <p class=MsoNormal><u>Notes </u></p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=200 valign=top style=\'width:150.3pt;border:none;padding:0in 5.4pt 0in 5.4pt;\r\n\r\n  height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Accelerated Age </p>\r\n\r\n  </td>\r\n\r\n  <td width=200 colspan=2 valign=top style=\'width:150.3pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5850 </p>\r\n\r\n  </td>\r\n\r\n  <td width=200 valign=top style=\'width:150.3pt;border:none;padding:0in 5.4pt 0in 5.4pt;\r\n\r\n  height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Per Note (1) </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Tensile Strength (Grab Test) </p>\r\n\r\n  </td>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5100 </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Tear Strength(Trapezoid Test) </p>\r\n\r\n  </td>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5136 (4) </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:14.85pt\'>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:14.85pt\'>\r\n\r\n  <p class=MsoNormal>Tear Strength (Tongue Test) </p>\r\n\r\n  </td>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:14.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5134 </p>\r\n\r\n  <p class=MsoNormal>(Alternate to Trapezoid Test See 3.1.4.1) </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Ply Adhesion </p>\r\n\r\n  </td>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5960 </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Coat Adhesion </p>\r\n\r\n  </td>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5970 </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr height=0>\r\n\r\n  <td width=200 style=\'border:none\'></td>\r\n\r\n  <td width=100 style=\'border:none\'></td>\r\n\r\n  <td width=100 style=\'border:none\'></td>\r\n\r\n  <td width=200 style=\'border:none\'></td>\r\n\r\n </tr>\r\n\r\n</table>\r\n\r\n\r\n\r\n<p class=MsoNormal><u><span style=\'text-decoration:none\'> </span></u></p>\r\n\r\n\r\n\r\n<p class=MsoNormal><u>NOTES</u>: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(1) Samples for the accelerated aging tests must be exposed\r\n\r\nto a temperature of 158 ± 5 degrees Fahrenheit for not less than 168 hours.\r\n\r\nAfter exposure, the samples must be allowed to cool to 70 ± 2 degrees\r\n\r\nFahrenheit for neither less than 16 hours nor more than 96 hours before\r\n\r\ndetermining their physical properties in accordance with 3.1 of this standard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(2) Each sample shall consist of two strips 2 inches maximum\r\n\r\nwidth by 5 inches maximum length bonded together with an overlap 3/4 inches\r\n\r\nmaximum. The free ends must be placed in the testing machine described in\r\n\r\nMethod 5100 and separated at a rate of 12 ± 0.5 inches per minute. The average\r\n\r\nvalue of two samples must be reported. Samples may be multilayered as required\r\n\r\nto provide adequate strength to ensure against premature material failure. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(3) Separation rate must be 2.0 to 2.5 inches per minute. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(4) Federal Test Method Standard No. 191 in effect December\r\n\r\n31, 1968. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2 <u>Liferaft Tests</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.1 <u>Pressure Retention</u>. Under static conditions and\r\n\r\nwhen inflated and stabilized at the nominal operating pressure, the pressure in\r\n\r\neach inflatable chamber must not fall below the minimum operating pressure in\r\n\r\nless than 24 hours. The minimum operating pressure is the pressure required to\r\n\r\nmeet the minimum design buoyancy requirements of paragraph 4.2 of this\r\n\r\nstandard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.2 <u>Overpressure Tests</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.2.1 The device must be shown by test to withstand a\r\n\r\npressure at least 1.5 times the maximum operating pressure for at least 5\r\n\r\nminutes without sustaining damage. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.2.2 At least one specimen of the inflatable device model\r\n\r\nmust be shown by test to withstand a pressure at least 2 times the maximum\r\n\r\noperating pressure without failure. Devices so tested must be clearly\r\n\r\nidentified. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal> </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3 <u>Functional Tests</u>. Each liferaft model must pass\r\n\r\nthe following tests: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 8 4/13/84 TSO-C70a Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1 <u>Water Tests</u>. In either a controlled pool or\r\n\r\nfresh water, the liferaft capacity and buoyancy must be demonstrated as\r\n\r\nfollows: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.1 Both rated and overload capacities established in\r\n\r\naccordance with the requirements of paragraph 4.1 of this standard must be\r\n\r\ndemonstrated with inflation tubes at minimum operating pressure and with the\r\n\r\ncritical buoyancy chamber deflated. The resultant freeboard in each case must\r\n\r\nmeet the requirements of paragraph 4.2 of this standard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.2 Persons used in the demonstration must have an\r\n\r\naverage weight of not less than 170 pounds. Ballast in the form of sand bags or\r\n\r\nequivalent may be used to achieve proper loading provided the appropriate\r\n\r\nweight distribution within the raft is maintained. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.3 Persons used in the demonstration must wear life\r\n\r\npreservers with at least one chamber inflated. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.4 The required liferaft equipment, including one\r\n\r\nemergency locator transmitter or a weight simulating a transmitter, must be\r\n\r\naboard the liferaft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.5 It must be demonstrated that the raft is\r\n\r\nself-righting, or can be righted by one person in water, or while inverted can\r\n\r\nbe boarded and provide flotation for the normal rated capacity. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.6 It must be demonstrated that the boarding aids are\r\n\r\nadequate for the purpose intended and that it is possible for an adult wearing\r\n\r\nan inflated life preserver to board the raft unassisted. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.2 <u>Sea Trials</u>. The liferaft must be demonstrated\r\n\r\nby tests or analysis, or a combination of both, to be seaworthy in an open sea\r\n\r\ncondition of 17 to 27-knot winds and waves of 6 to 10 feet. In tests, ballast\r\n\r\nin the form of sand bags or equivalent may be used to achieve proper loading\r\n\r\nprovided the appropriate weight distribution within the raft is maintained. If\r\n\r\nanalysis is used, the analysis must be approved by the manager of the FAA\r\n\r\noffice to which the TSO data is to be submitted as required in paragraph c.,\r\n\r\nData Requirements. For this seaworthiness demonstration, the following apply: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.2.1 The liferaft must be deployed to simulate\r\n\r\ndeployment from an aircraft under the most adverse wind direction and wave\r\n\r\ncondition. If the liferaft is an aspirated inflated type, it must be\r\n\r\ndemonstrated that water ingested during inflation will not cause the raft to\r\n\r\nfail to meet the requirement for buoyancy under rated capacity in 4.2. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.2.2 All required equipment must be aboard and the\r\n\r\nproper functioning of each item of equipment must be demonstrated. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.2.3 The canopy must be erected for a sufficient time\r\n\r\nto assess its resistance to tearing and the protection it affords. The method\r\n\r\nof erection must be </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 9 TSO-C70a 4/13/84 Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>shown to be accomplished by one occupant of an otherwise\r\n\r\nempty raft, and by occupants of a raft filled to rated capacity. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.2.4 The stability of the raft must be demonstrated when\r\n\r\noccupied at normal rated capacity and at 50 percent rated capacity. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.3 <u>Liferaft Drop Test</u>. A complete liferaft\r\n\r\npackage must be dropped or thrown from a height of 5 feet onto a hard surface\r\n\r\nfloor after which it must be inflated and meet the pressure retention\r\n\r\nrequirements of paragraph 6.2.1 of this standard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.4 <u>Portability Test</u>. If the liferaft is to be\r\n\r\nmanually deployed, it must be demonstrated that the complete liferaft package\r\n\r\ncan be moved from a typical stowage installation by no more that two persons\r\n\r\nand then deployed at another suitable exit. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.5 <u>Carrying Case</u>. It must be demonstrated at\r\n\r\nleast 10 times that the carrying case will open satisfactorily and cause no\r\n\r\ndelay in the deployment and inflation of the liferaft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.6 <u>Gas Cylinder Releases</u>. It must be\r\n\r\ndemonstrated that pulling the ripcord grip from any position will actuate the\r\n\r\nprimary gas release(s). </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.5 <u>Temperature Exposure and Inflation</u>. The\r\n\r\nmanufacturer shall determine the minimum temperature at which the complete\r\n\r\nliferaft assembly with its inflation bottles, will be “rounded out” (i.e.,\r\n\r\nattain its design shape and approximate dimension) so that the liferaft will be\r\n\r\nable to receive and to support the first occupant within one minute after the\r\n\r\nstart of inflation. Thereafter, the rate of inflation must progress in such a\r\n\r\nmanner and rate as to ensure a serviceable and rigid liferaft for boarding by\r\n\r\nthe remainder of the occupants. Similarly, a maximum environmental temperature\r\n\r\nto which the liferaft assembly may be exposed and still remain in a seaworthy\r\n\r\ncondition upon inflation must be determined. The temperature limitations must\r\n\r\nbe submitted to the FAA and liferaft purchaser in accordance with the data\r\n\r\nrequirements of this TSO. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.5.1 <u>Test Procedure</u>. The packed liferaft assembly\r\n\r\nwith its inflation bottles installed must be exposed to each of the above\r\n\r\ntemperatures for not less than 24 hours and must be inflated within 5 minutes\r\n\r\nafter removal from such temperatures. The liferaft must be allowed to return to\r\n\r\na temperature of approximately 70 ± 5 degrees Fahrenheit before being deflated,\r\n\r\nrepacked, and subjected to a second exposure. After the above tests have been\r\n\r\ncompleted, the liferaft must be able to pass tests required by paragraphs 6.2.1\r\n\r\nand 6.2.2 of this standard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 10</p>\r\n\r\n\r\n\r\n<p class=MsoNormal> </p>\r\n\r\n\r\n\r\n</div>',0,0,1,1,0,30,30,310,0,0,1,0),(14,1,'Check Out Success','','','<p>Thank  you for your payment. Your transaction has been completed, and a receipt for  your purchase has been emailed to you.  You may <a href=\"http://aaasurvivalproducts.com/index.php?main_page=account\">log into  your account here</a> to view details of this transaction. <br />\r\n\r\n</p>',0,0,0,0,0,0,0,0,0,0,0,0);
/*!40000 ALTER TABLE `ezpages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ezpages_content`
--

DROP TABLE IF EXISTS `ezpages_content`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ezpages_content` (
  `pc_id` int(11) NOT NULL,
  `pages_id` int(11) NOT NULL DEFAULT '0',
  `languages_id` int(11) NOT NULL DEFAULT '1',
  `pages_title` varchar(64) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `pages_html_text` text COLLATE utf8_unicode_ci
) ENGINE=MyISAM AUTO_INCREMENT=23 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ezpages_content`
--

LOCK TABLES `ezpages_content` WRITE;
/*!40000 ALTER TABLE `ezpages_content` DISABLE KEYS */;
INSERT INTO `ezpages_content` VALUES (1,3,1,'Aviation Links','<br />\r\n<br />\r\n<strong>General Information</strong>\r\n<ul>\r\n  <li>AirNav (Pilot Information): <a href=\"\"http://www.aiav.com/fuel\"\">www.aiav.com</a></li>\r\n  <li>Aviation Weather Center: <a href=\"\"http://www.aviationweather.gov\"\">www.aviationweather.gov</a></li>\r\n  <li>Aviator\'s Hotline: <a href=\"\"http://www.aviationhotline.com/Aviators.htm\"\">http://www.aviationhotline.com/Aviators.htm</a></li>\r\n  <li>AvWeb:<a href=\"\"http://www.avweb.com\"\"> www.avweb.com</a></li>\r\n</ul>\r\n<h4>Government Agencies</h4>\r\n<ul>\r\n  <li>Civil Air Patrol: <a href=\"\"http://www.cap.gov\"\">www.cap.gov</a></li>\r\n  <li>Federal Aviation Administration: <a href=\"\"http://www.faa.gov\"\">www.faa.gov</a></li>\r\n  <li>FAR (Federal Aviation Regulations): <a href=\"\"http://www.faa.gov/regulations_policies/faa_regulations/\"\">www.faa.gov/regulations_policies/faa_regulations</a></li>\r\n  <li>National Transportation Safety Board: <a href=\"\"http://www.ntsb.gov\"\">www.ntsb.gov</a></li>\r\n  <li>U.S. Air Force: <a href=\"\"http://www.af.mil\"\">www.af.mil</a></li>\r\n</ul>\r\n<h4>Historical Information</h4>\r\n<ul>\r\n  <li>Aviation History Online Museum: <a href=\"\"http://www.aviation-history.com\"\">www.aviation-history.com</a></li>\r\n  <li>Canadian Warplane Museum:<a href=\"\"http://www.warplane.com\"\"> www.warplane.com</a></li>\r\n  <li>Flight History Information:<a href=\"\"http://www.flight-history.com\"\"> www.flight-history.com</a></li>\r\n  <li>National Air & Space Museum: <a href=\"\"http://www.nasm.si.edu\"\">www.nasm.si.edu</a></li>\r\n  <li>National Aviation Hall of Fame:<a href=\"\"http://www.nationalaviation.org\"\"> www.nationalaviation.org</a></li>\r\n  <li>Strategic Air Command Museum: <a href=\"\"http://www.strategicairandspace.com\"\">www.strategicairandspace.com</a></li>\r\n</ul>\r\n<h4>Organizations</h4>\r\n<ul>\r\n  <li>A.O.P.A. (Aircraft Owners Pilots Assoc.): <a href=\"\"http://www.aopa.org\"\">www.aopa.org</a></li>\r\n  <li>American Bonanza Society: <a href=\"\"http://www.bonanza.org\"\">www.bonanza.org</a></li>\r\n  <li>Airports Council Inteational: <a href=\"\"http://www.airports.org\"\">www.airports.org</a></li>\r\n  <li>Cessna Owner Organization: <a href=\"\"http://www.cessnaowner.org\"\">www.cessnaowner.org</a></li>\r\n  <li>International Commanche Society: <a href=\"\"http://www.comancheflyer.com\"\">www.comancheflyer.com</a></li>\r\n  <li>International Organization of Women Pilots:<a href=\"\"http://www.ninety-nines.org\"\"> www.ninety-nines.org</a></li>\r\n  <li>Mooney Pilot Organization: <a href=\"\"http://www.mooneypilots.com/\"\">http://www.mooneypilots.com/</a></li>\r\n  <li>National Aeronautic Association: <a href=\"\"http://www.naa-usa.org\"\">www.naa-usa.org</a></li>\r\n  <li>N.B.A.A. (National Business Aviation Assoc.):<a href=\"\"http://www.nbaa.org\"\"> www.nbaa.org</a></li>\r\n</ul>\r\n<h4>Publications</h4>\r\n<ul>\r\n  <li>Aerospace Technology:<a href=\"\"http://www.aerospace-technology.com/\"\"> http://www.aerospace-technology.com/</a></li>\r\n  <li>Airplane Blog: <a href=\"\"http://www.airplaneblog.com/\"\">http://www.airplaneblog.com/</a></li>\r\n  <li>AutoPilot Magazine:<a href=\"\"http://www.autopilotmagazine.com\"\">www.autopilotmagazine.com</a></li>\r\n  <li>Aviation Market Center: <a href=\"\"http://www.aviationmarketcenter.com/\"\">http://www.aviationmarketcenter.com/</a></li>\r\n  <li>Business Air Today :<a href=\"\"http://www.businessair.com/\"\">http://www.businessair.com/</a></li>\r\n  <li>Business & Commercial Aviation: <a href=\"\"http://www.aviationnow.com\"\">www.aviationnow.com</a></li>\r\n  <li class=\"\"style8\"\">Landings:<a href=\"\"http://www.landings.com\"\">www.landings.com</a></li>\r\n  <li>Pilot\'s Web: <a href=\"\"http://pilotsweb.com/\"\">http://pilotsweb.com/</a></li>\r\n  <li>Plane & Pilot :<a href=\"\"http://www.planeandpilotmag.com/\"\">http://www.planeandpilotmag.com/</a></li>\r\n  <li>Southern Aviator: <a href=\"\"http://www.southe-aviator.com\"\">www.southe-aviator.com</a></li>\r\n  <li>Southwest Aviator:<a href=\"\"http://www.southwestaviator.com\"\"> www.southwestaviator.com</a></li>\r\n  <li>World Aircraft Sales Magazine:<a href=\"\"http://www.avbuyer.com\"\"> www.avbuyer.com</a></li>\r\n</ul>'),(2,3,2,'Enlaces de la AviaciÃ³n','<br />\r\n<br />\r\n<strong>InformaciÃ³n General</strong>\r\n<ul>\r\n  <li>AirNav (Pilot Information): <a href=\"\"http://www.aiav.com/fuel\"\">www.aiav.com</a></li>\r\n  <li>Aviation Weather Center: <a href=\"\"http://www.aviationweather.gov\"\">www.aviationweather.gov</a></li>\r\n  <li>Aviator\'s Hotline: <a href=\"\"http://www.aviationhotline.com/Aviators.htm\"\">http://www.aviationhotline.com/Aviators.htm</a></li>\r\n  <li>AvWeb:<a href=\"\"http://www.avweb.com\"\"> www.avweb.com</a></li>\r\n</ul>\r\n<h4>Agencias del Gobiernos</h4>\r\n<ul>\r\n  <li>Civil Air Patrol: <a href=\"\"http://www.cap.gov\"\">www.cap.gov</a></li>\r\n  <li>Federal Aviation Administration: <a href=\"\"http://www.faa.gov\"\">www.faa.gov</a></li>\r\n  <li>FAR (Federal Aviation Regulations): <a href=\"\"http://www.faa.gov/regulations_policies/faa_regulations/\"\">www.faa.gov/regulations_policies/faa_regulations</a></li>\r\n  <li>National Transportation Safety Board: <a href=\"\"http://www.ntsb.gov\"\">www.ntsb.gov</a></li>\r\n  <li>U.S. Air Force: <a href=\"\"http://www.af.mil\"\">www.af.mil</a></li>\r\n</ul>\r\n<h4>InformaciÃ³n HistÃ³rica</h4>\r\n<ul>\r\n  <li>Aviation History Online Museum: <a href=\"\"http://www.aviation-history.com\"\">www.aviation-history.com</a></li>\r\n  <li>Canadian Warplane Museum:<a href=\"\"http://www.warplane.com\"\"> www.warplane.com</a></li>\r\n  <li>Flight History Information:<a href=\"\"http://www.flight-history.com\"\"> www.flight-history.com</a></li>\r\n  <li>National Air & Space Museum: <a href=\"\"http://www.nasm.si.edu\"\">www.nasm.si.edu</a></li>\r\n  <li>National Aviation Hall of Fame:<a href=\"\"http://www.nationalaviation.org\"\"> www.nationalaviation.org</a></li>\r\n  <li>Strategic Air Command Museum: <a href=\"\"http://www.strategicairandspace.com\"\">www.strategicairandspace.com</a></li>\r\n</ul>\r\n<h4>Organizaciones</h4>\r\n<ul>\r\n  <li>A.O.P.A. (Aircraft Owners Pilots Assoc.): <a href=\"\"http://www.aopa.org\"\">www.aopa.org</a></li>\r\n  <li>American Bonanza Society: <a href=\"\"http://www.bonanza.org\"\">www.bonanza.org</a></li>\r\n  <li>Airports Council Inteational: <a href=\"\"http://www.airports.org\"\">www.airports.org</a></li>\r\n  <li>Cessna Owner Organization: <a href=\"\"http://www.cessnaowner.org\"\">www.cessnaowner.org</a></li>\r\n  <li>International Commanche Society: <a href=\"\"http://www.comancheflyer.com\"\">www.comancheflyer.com</a></li>\r\n  <li>International Organization of Women Pilots:<a href=\"\"http://www.ninety-nines.org\"\"> www.ninety-nines.org</a></li>\r\n  <li>Mooney Pilot Organization: <a href=\"\"http://www.mooneypilots.com/\"\">http://www.mooneypilots.com/</a></li>\r\n  <li>National Aeronautic Association: <a href=\"\"http://www.naa-usa.org\"\">www.naa-usa.org</a></li>\r\n  <li>N.B.A.A. (National Business Aviation Assoc.):<a href=\"\"http://www.nbaa.org\"\"> www.nbaa.org</a></li>\r\n</ul>\r\n<h4>Publicaciones</h4>\r\n<ul>\r\n  <li>Aerospace Technology:<a href=\"\"http://www.aerospace-technology.com/\"\"> http://www.aerospace-technology.com/</a></li>\r\n  <li>Airplane Blog: <a href=\"\"http://www.airplaneblog.com/\"\">http://www.airplaneblog.com/</a></li>\r\n  <li>AutoPilot Magazine:<a href=\"\"http://www.autopilotmagazine.com\"\">www.autopilotmagazine.com</a></li>\r\n  <li>Aviation Market Center: <a href=\"\"http://www.aviationmarketcenter.com/\"\">http://www.aviationmarketcenter.com/</a></li>\r\n  <li>Business Air Today :<a href=\"\"http://www.businessair.com/\"\">http://www.businessair.com/</a></li>\r\n  <li>Business & Commercial Aviation: <a href=\"\"http://www.aviationnow.com\"\">www.aviationnow.com</a></li>\r\n  <li class=\"\"style8\"\">Landings:<a href=\"\"http://www.landings.com\"\">www.landings.com</a></li>\r\n  <li>Pilot\'s Web: <a href=\"\"http://pilotsweb.com/\"\">http://pilotsweb.com/</a></li>\r\n  <li>Plane & Pilot :<a href=\"\"http://www.planeandpilotmag.com/\"\">http://www.planeandpilotmag.com/</a></li>\r\n  <li>Southern Aviator: <a href=\"\"http://www.southe-aviator.com\"\">www.southe-aviator.com</a></li>\r\n  <li>Southwest Aviator:<a href=\"\"http://www.southwestaviator.com\"\"> www.southwestaviator.com</a></li>\r\n  <li>World Aircraft Sales Magazine:<a href=\"\"http://www.avbuyer.com\"\"> www.avbuyer.com</a></li>\r\n</ul>'),(3,4,1,'Maritime Links','<br /><br />\r\n<h4>Weather</h4>	<ul><li>National Oceanic & Atmospheric Admin (N.O.A.A.): <a href=\"http://www.noaa.gov\">www.noaa.gov</a> <li>U.S. Naval Fleet (FNMOC): <a href=\"https://www.fnmoc.navy.mil/public/\">www.fnmoc.navy.mil/public</a>  <li>Naval Oceanography Portal: <a href=\"http://www.usno.navy.mil/\">www.usno.navy.mil/</a></ul>  <h4>Government Agencies</h4><ul>	<li>Florida Fish & Wildlife Conservation Commission: <a href=\"http://www.myfwc.com\">www.myfwc.com</a>	<li>U.S. Coast Guard: <a href=\"http://www.uscg.mil/\">www.uscg.org</a></ul> <h4>Organizations</h4><ul><li>Bayview Yacht Club: <a href=\"http://www.byc.org\">www.byc.org</a>  <li>Chicago Yacht Club: <a href=\"http://www.chicagoyachtclub.org\">www.chicagoyachtclub.org</a> <li>(G.P.Y.C) Gross Point Yacht Club: <a href=\"http://www.gpyc.org\">www.gpyc.org</a> \r\n<li>International Sailing Federation: <a href=\"http://www.sailing.org\">www.sailing.org</a>\r\n<li>National Boating & Fishing Foundation: <a href=\"http://www.rbff.org/\">http://www.rbff.org/</a> <li>N.M.M.A. (National Marine Manufacturers Assoc.): <a href=\"http://www.nmma.org/\">www.nmma.org</a>	<li>National Maritime Society: <a href=\"http://www.nauticus.org\">www.nauticus.org</a><li>	Offshore Racing Council: <a href=\"http://www.orc.org\">www.orc.org</a><li>Saltwater Sportsmen: <a href=\"http://www.jcaa.org\">www.jcaa.org</a></ul><h4>Publications</h4><ul>  <li>Seguridad del Canotaje: <a href=\"http://www.boatsafe.com/nauticalknowhow/safetips\">www.boatsafe.com/nauticalknowhow/safetips</a>	</li> <li>Cruising World: <a href=\"http://www.cruisingworld.com\">www.cruisingworld.com</a></li>	<li>Marine Weather Enthusiast: <a href=\"http://www.weatherzone.com\">www.weatherzone.com</a> </li>	<li>Sail Magazine: <a href=\"http://www.sailmagazine.com\">www.sailmagazine.com</a></li>	<li>Sailing: <a href=\"http://www.sailing.com\">www.sailing.com</a></li>	<li>Sailing World: <a href=\"http://www.sailingworld.com\">www.sailingworld.com</a></li>	<li>Southern Boating: <a href=\"http://www.southeboating.com\">www.southeboating.com</a></li>	<li>Yachting World: <a href=\"http://www.yachting-world.com\">www.yachting-world.com</a></li>	<li>Yachtsmans\' Guide: <a href=\"http://www.yachtsmanguide.com\">www.yachtsmansguide.com</a></li></ul>'),(4,4,2,'Enlaces MarÃ­timos','<h4>Tiempo</h4>	<ul><li>National Oceanic & Atmospheric Admin (N.O.A.A.): <a href=\"http://www.noaa.gov\">www.noaa.gov</a> <li>U.S. Naval Fleet (FNMOC): <a href=\"https://www.fnmoc.navy.mil/public/\">www.fnmoc.navy.mil/public</a>  <li>Naval Oceanography Portal: <a href=\"http://www.usno.navy.mil/\">www.usno.navy.mil/</a></ul>  <h4>Agencias del Gobiernos</h4><ul>	<li>Florida Fish & Wildlife Conservation Commission: <a href=\"http://www.myfwc.com\">www.myfwc.com</a>	<li>U.S. Coast Guard: <a href=\"http://www.uscg.mil/\">www.uscg.org</a></ul> <h4>Organizaciones</h4><ul><li>Bayview Yacht Club: <a href=\"http://www.byc.org\">www.byc.org</a>  <li>Chicago Yacht Club: <a href=\"http://www.chicagoyachtclub.org\">www.chicagoyachtclub.org</a> <li>(G.P.Y.C) Gross Point Yacht Club: <a href=\"http://www.gpyc.org\">www.gpyc.org</a> \r\n<li>International Sailing Federation: <a href=\"http://www.sailing.org\">www.sailing.org</a>\r\n<li>National Boating & Fishing Foundation: <a href=\"http://www.rbff.org/\">http://www.rbff.org/</a> <li>N.M.M.A. (National Marine Manufacturers Assoc.): <a href=\"http://www.nmma.org/\">www.nmma.org</a>	<li>National Maritime Society: <a href=\"http://www.nauticus.org\">www.nauticus.org</a><li>	Offshore Racing Council: <a href=\"http://www.orc.org\">www.orc.org</a><li>Saltwater Sportsmen: <a href=\"http://www.jcaa.org\">www.jcaa.org</a></ul>\r\n<h4>Publicaciones</h4>\r\n<ul>  <li>Seguridad del Canotaje: <a href=\"http://www.boatsafe.com/nauticalknowhow/safetips\">www.boatsafe.com/nauticalknowhow/safetips</a>	</li> <li>Cruising World: <a href=\"http://www.cruisingworld.com\">www.cruisingworld.com</a></li>	<li>Marine Weather Enthusiast: <a href=\"http://www.weatherzone.com\">www.weatherzone.com</a> </li>	<li>Sail Magazine: <a href=\"http://www.sailmagazine.com\">www.sailmagazine.com</a></li>	<li>Sailing: <a href=\"http://www.sailing.com\">www.sailing.com</a></li>	<li>Sailing World: <a href=\"http://www.sailingworld.com\">www.sailingworld.com</a></li>	<li>Southern Boating: <a href=\"http://www.southeboating.com\">www.southeboating.com</a></li>	<li>Yachting World: <a href=\"http://www.yachting-world.com\">www.yachting-world.com</a></li>	<li>Yachtsmans\' Guide: <a href=\"http://www.yachtsmanguide.com\">www.yachtsmansguide.com</a></li></ul>'),(10,8,2,'Test','<div id=\"TabbedPanels1\" class=\"TabbedPanels\"> \r\n  <ul class=\"TabbedPanelsTabGroup\"> \r\n    <li class=\"TabbedPanelsTab\" tabindex=\"0\">Tab 1</li> \r\n    <li class=\"TabbedPanelsTab\" tabindex=\"0\">Tab 2</li> \r\n  </ul> \r\n  <div class=\"TabbedPanelsContentGroup\"> \r\n    <div class=\"TabbedPanelsContent\">Content 1</div> \r\n    <div class=\"TabbedPanelsContent\">Content 2</div> \r\n  </div> \r\n</div> \r\n<script type=\"text/javascript\"> \r\n<!--\r\nvar TabbedPanels1 = new Spry.Widget.TabbedPanels(\"TabbedPanels1\");\r\n//-->\r\n</script>'),(5,6,1,'Fax Order Form',''),(6,6,2,'Fax',''),(7,7,1,'Fax Form',''),(8,7,2,'Fax Form',''),(9,8,1,'Test','<div id=\"TabbedPanels1\" class=\"TabbedPanels\">\r\n  <ul class=\"TabbedPanelsTabGroup\">\r\n    <li class=\"TabbedPanelsTab\" tabindex=\"0\">Description</li>\r\n    <li class=\"TabbedPanelsTab\" tabindex=\"0\">Features</li>\r\n    <li class=\"TabbedPanelsTab\" tabindex=\"0\">Included</li>\r\n    <li class=\"TabbedPanelsTab\" tabindex=\"0\">Survival Kit</li>\r\n    \r\n  </ul>\r\n  <div class=\"TabbedPanelsContentGroup\">\r\n    <div class=\"TabbedPanelsContent\">4-6 Man Life Raft. Lightest and smallest package on the market today, designed for private pilots and pleasure boaters. Non TSO Approved</div>\r\n    <div class=\"TabbedPanelsContent\"><li>Lightest and smallest package on the market today, designed for private pilots and pleasure boaters. </li><li>    Easy to carry, stow away, and maneuver in any emergency situation.</li><li>    Easily deployed by women, children, exhausted pilots, or boaters. </li><li>    Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures.</li><li>    Constructed of heavy-duty FAA approved neoprene coated nylon fabric. </li><li>    Optional highly visible orange canopy to aid in search and rescue operations. </li><li>    Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. <br />\r\n\r\n    </li>\r\n\r\n  <li>High-tech CO2 automatic inflation system, inflates in 10 seconds. </li><li>    Optional survival kits are available to meet individual requirements. </li><li>    Lifetime warranty on parts and labor, built to last a lifetime with proper care. </li></div>\r\n    <div class=\"TabbedPanelsContent\"><table border=\"1\" align=\"center\" cellpadding=\"3\" cellspacing=\"0\">\r\n\r\n    <tbody>\r\n\r\n      <tr>\r\n\r\n        <td colspan=\"2\"><strong>Each Basic Life Raft includes:</strong></td>\r\n\r\n      </tr>\r\n\r\n      <tr>\r\n\r\n        <td width=\"50%\" height=\"1\">Buoyancy tube</td>\r\n\r\n        <td width=\"50%\" height=\"1\">Retaining line</td>\r\n\r\n      </tr>\r\n\r\n      <tr>\r\n\r\n        <td height=\"1\">Deck</td>\r\n\r\n        <td width=\"50%\" height=\"1\">Hand pump</td>\r\n\r\n      </tr>\r\n\r\n      <tr>\r\n\r\n        <td height=\"1\">LÃ­fe lines</td>\r\n\r\n        <td width=\"50%\" height=\"1\">Bailing bucket </td>\r\n\r\n      </tr>\r\n\r\n      <tr>\r\n\r\n        <td height=\"1\">Boarding Handles</td>\r\n\r\n        <td width=\"50%\" height=\"1\">Sea anchor</td>\r\n\r\n      </tr>\r\n\r\n      <tr>\r\n\r\n        <td height=\"1\">CO2 auto-inflation system</td>\r\n\r\n        <td width=\"50%\" height=\"1\">Valise</td>\r\n\r\n      </tr>\r\n\r\n      <tr>\r\n\r\n        <td height=\"1\" colspan=\"2\">Note:  Required Raft Compartment Size - Add 3\" to Raft Pack Dimensions.  Raft Weight +/- 2.0 lbs</td>\r\n\r\n      </tr>\r\n\r\n    </tbody>\r\n\r\n  </table></div>\r\n    <div class=\"TabbedPanelsContent\">        \r\n          The survival equipment kit comes packed in its own valise providing the ultimate in flexibility for raft and equipment combinations. Acquire your basic raft and survival equipment based on individual requirements. Survival valise is secured to the life raft valise with velcro and a tie-line. Survival kits are designed and prepared for Non TSO and FAA TSO aviation/marine use. FAR 91, FAR 121, and FAR 125/135 survival equipment kits are also available. Optional ELT/EPIRB can be packed inside survival kits.\r\n\r\n  <br />\r\n  <br />\r\n  *Note: Food/water ration quantities based on raft capacity.</div>\r\n  </div>\r\n</div>\r\n<script type=\"text/javascript\">\r\n<!--\r\nvar TabbedPanels1 = new Spry.Widget.TabbedPanels(\"TabbedPanels1\");\r\n//-->\r\n</script>'),(11,9,1,'compare survival kits','<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">\r\n<html>\r\n<head>\r\n  <title>compare-survival-kits</title>\r\n</head>\r\n<body>\r\n<br>\r\n<br>\r\n<div id=\"catDescHeading\" align=\"center\"> Compare\r\nSurvival Kits </div>\r\n<p><img src=\"images/survivalkit_01_MED.jpg\"\r\n alt=\"Aviation &amp; Marine Survival Kits TSO &amp; Non TSO\"\r\n style=\"width: 200px; height: 247px;\" align=\"left\"\r\n border=\"0\"></p>\r\n<div id=\"kitCompareFont\">The optional survival equipment\r\nkit is stowed its own valise (separate from the raft valise). Separate\r\nunits provide the ultimate in flexibility for raft and survival\r\nequipment combinations - ability to purchase basic rafts and survival\r\nequipment separately to meet unique requirements. Survival equipment\r\nkit and raft valise are attached to each other using velcro and a\r\ntie-line. <br>\r\n<br>\r\n<a href=\"javascript:history.go(-1)\"\r\n onmouseover=\"self.status=document.referrer;return true\">previous\r\npage</a><br>\r\n<br>\r\n<table border=\"1\" cellpadding=\"3\" cellspacing=\"0\"\r\n width=\"100%\">\r\n  <tbody>\r\n    <tr class=\"kitHeading\">\r\n      <td bgcolor=\"#333333\" width=\"40%\">Survival\r\nKit Contents</td>\r\n      <td bgcolor=\"#333333\" width=\"20%\">Standard/<br>\r\n91 &nbsp;Type</td>\r\n      <td bgcolor=\"#333333\" width=\"20%\">Standard <br>\r\nPlus/&nbsp;121 Type</td>\r\n      <td bgcolor=\"#333333\" width=\"20%\">Deluxe/<br>\r\n135 Type</td>\r\n    </tr>\r\n    <tr>\r\n      <td> </td>\r\n      <td> </td>\r\n      <td> </td>\r\n      <td> </td>\r\n    </tr>\r\n    <tr>\r\n      <td>canopy w/inflatable mast</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>equipment container</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>signal flag</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>3 signal flares</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>first aid kit</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>raft repair kit</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>sea dye markers</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>2-cell flashlight w/batteries</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>signal mirror</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>food rations</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>water rations</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>signal whistle</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>utility knife</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>sponge</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>survival manual</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>magnetic compass </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>75-foot retaining line</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>reverse osmosis desalinator </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>2 paddles</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>fishing kit </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>radar reflector</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<!-- end #mainContent -->\r\n</div>\r\n</body>\r\n</html>'),(12,9,2,'compare survival kits','<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">\r\n<html>\r\n<head>\r\n  <title>compare-survival-kits</title>\r\n</head>\r\n<body>\r\n<br>\r\n<br>\r\n<div id=\"catDescHeading\" align=\"center\"> Compare\r\nSurvival Kits </div>\r\n<p><img src=\"images/survivalkit_01_MED.jpg\"\r\n alt=\"Aviation &amp; Marine Survival Kits TSO &amp; Non TSO\"\r\n style=\"width: 200px; height: 247px;\" align=\"left\"\r\n border=\"0\"></p>\r\n<div id=\"kitCompareFont\">The optional survival equipment\r\nkit is stowed its own valise (separate from the raft valise). Separate\r\nunits provide the ultimate in flexibility for raft and survival\r\nequipment combinations - ability to purchase basic rafts and survival\r\nequipment separately to meet unique requirements. Survival equipment\r\nkit and raft valise are attached to each other using velcro and a\r\ntie-line. <br>\r\n<br>\r\n<a href=\"javascript:history.go(-1)\"\r\n onmouseover=\"self.status=document.referrer;return true\">previous\r\npage</a><br>\r\n<br>\r\n<table border=\"1\" cellpadding=\"3\" cellspacing=\"0\"\r\n width=\"100%\">\r\n  <tbody>\r\n    <tr class=\"kitHeading\">\r\n      <td bgcolor=\"#333333\" width=\"40%\">Survival\r\nKit Contents</td>\r\n      <td bgcolor=\"#333333\" width=\"20%\">Standard/<br>\r\n91 &nbsp;Type</td>\r\n      <td bgcolor=\"#333333\" width=\"20%\">Standard <br>\r\nPlus/&nbsp;121 Type</td>\r\n      <td bgcolor=\"#333333\" width=\"20%\">Deluxe/<br>\r\n135 Type</td>\r\n    </tr>\r\n    <tr>\r\n      <td> </td>\r\n      <td> </td>\r\n      <td> </td>\r\n      <td> </td>\r\n    </tr>\r\n    <tr>\r\n      <td>canopy w/inflatable mast</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>equipment container</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>signal flag</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>3 signal flares</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>first aid kit</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>raft repair kit</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>sea dye markers</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>2-cell flashlight w/batteries</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>signal mirror</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>food rations</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>water rations</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>signal whistle</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>utility knife</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>sponge</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>survival manual</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>magnetic compass </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>75-foot retaining line</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>reverse osmosis desalinator </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>2 paddles</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>fishing kit </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>radar reflector</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<!-- end #mainContent -->\r\n</div>\r\n</body>\r\n</html>'),(21,14,1,'Checkout Success','<p>Thank  you for your payment. Your transaction has been completed, and a receipt for  your purchase has been emailed to you.  You may <a href=\"http://aaasurvivalproducts.com/index.php?main_page=account\">log into  your account here</a> to view details of this transaction. <br />\r\n\r\n</p>'),(22,14,2,'Checkout Success','<p>Thank  you for your payment. Your transaction has been completed, and a receipt for  your purchase has been emailed to you.  You may <a href=\"http://aaasurvivalproducts.com/index.php?main_page=account\">log into  your account here</a> to view details of this transaction. <br />\r\n\r\n</p>'),(13,10,1,'Frequently Asked Questions','<br /><br /><br /><strong>Question:</strong><br />\r\nWhat does the term \"TSO\" mean?<br /><br />\r\n<strong>Answer:</strong><br />\r\n  TSO is an FAA (Federal Aviation Administration) acronym for \"Technical Standard Order\".<br /><br />\r\n<strong>TSO</strong><br /> \r\nA Technical Standard Order (TSO) is a minimum performance standard issued by the Administrator for specified materials, parts, processes, and appliances used on civil aircraft. TSOs can be viewed by Current, Active Historical, or Canceled. Current TSOs are the approved FAA performance standard that the applicant must use to receive a TSO authorization. Active Historical TSOs are for previously approved TSO authorizations. Canceled TSOs are for reference only.<br /><br /><br />\r\n<strong>Question:</strong><br />  What is the difference between a Type I and a Type II liferaft?<br /><br />\r\n<strong>Answer:</strong><br />\r\n  4.2.1 Type I Liferaft. Buoyancy must be provided by two independent buoyancy tubes each of which, including the raft floor, must be capable of supporting the rated and overload capacities in fresh water if the other tube is deflated. The liferaft loaded to its rated capacity must have a freeboard of at least 12 inches with both buoyancy tubes at minimum operating pressure. The liferaft loaded to its rated capacity with the critical tube deflated and the remaining tube at minimum operating pressure must have a freeboard of at least 6 inches. The liferaft loaded to its overload capacity with the critical tube deflated must have a measurable freeboard.<br />\r\n  <br />\r\n  4.2.2 Type II Liferaft. When single tube construction is used to provide the buoyancy, internal bulkheads must divide the flotation tube into at least two separate chambers such that the liferaft will be capable of supporting the rated number of occupants out of fresh water in the event that one chamber is deflated. The complete liferaft loaded to its rated capacity must have a freeboard of at least 6 inches.<br /><br /><br />\r\n<strong>Question:</strong><br />\r\n  Where can I get a printable copy of TSO-C70a?<br /><br />\r\n<strong>Answer:</strong><br />\r\n<a href=\"/C70a.pdf\">TSO C70a Please Click Here</a>\r\n\r\n\r\n<br /><br /><br /><strong>Question:</strong><br />\r\nWhat does the acronym \"FAR\" mean?<br /><br />\r\n<strong>Answer:</strong><br />\r\n  The Federal Aviation Regulations, or FARs, are rules prescribed by the Federal Aviation Administration (FAA) governing all aviation activities in the United States.<br /><br />'),(14,10,2,'Frequently Asked Questions','Question:\r\nWhat does the term \"TSO\" mean?\r\n\r\nAnswer:\r\nTSO is an FAA (Federal Aviation Administration) acronym for \"Technical Standard Order\".\r\n\r\nQuestion:\r\nWhat is the difference between a Type I and a Type II life raft?\r\n\r\nAnswer: \r\n4.2.1 Type I Liferaft. Buoyancy must be provided by two independent buoyancy tubes each of which, including the raft floor, must be capable of supporting the rated and overload capacities in fresh water if the other tube is deflated. The liferaft loaded to its rated capacity must have a freeboard of at least 12 inches with both buoyancy tubes at minimum operating pressure. The liferaft loaded to its rated capacity with the critical tube deflated and the remaining tube at minimum operating pressure must have a freeboard of at least 6 inches. The liferaft loaded to its overload capacity with the critical tube deflated must have a measurable freeboard.\r\n   \r\n4.2.2 Type II Liferaft. When single tube construction is used to provide the buoyancy, internal bulkheads must divide the flotation tube into at least two separate chambers such that the liferaft will be capable of supporting the rated number of occupants out of fresh water in the event that one chamber is deflated. The complete liferaft loaded to its rated capacity must have a freeboard of at least 6 inches.\r\n\r\nQuestion:\r\nWhere can I get a copy of TSO-C70a?\r\n\r\nAnswer: \r\n<a href=\"http://www.aaasurvivalproducts.com/includes/templates/aaas/uploads/C70a.pdf\">TSO C70a Please Click Here</a>'),(1,3,1,'Aviation Links','<br />\r\n<br />\r\n<strong>General Information</strong>\r\n<ul>\r\n  <li>AirNav (Pilot Information): <a href=\"\"http://www.aiav.com/fuel\"\">www.aiav.com</a></li>\r\n  <li>Aviation Weather Center: <a href=\"\"http://www.aviationweather.gov\"\">www.aviationweather.gov</a></li>\r\n  <li>Aviator\'s Hotline: <a href=\"\"http://www.aviationhotline.com/Aviators.htm\"\">http://www.aviationhotline.com/Aviators.htm</a></li>\r\n  <li>AvWeb:<a href=\"\"http://www.avweb.com\"\"> www.avweb.com</a></li>\r\n</ul>\r\n<h4>Government Agencies</h4>\r\n<ul>\r\n  <li>Civil Air Patrol: <a href=\"\"http://www.cap.gov\"\">www.cap.gov</a></li>\r\n  <li>Federal Aviation Administration: <a href=\"\"http://www.faa.gov\"\">www.faa.gov</a></li>\r\n  <li>FAR (Federal Aviation Regulations): <a href=\"\"http://www.faa.gov/regulations_policies/faa_regulations/\"\">www.faa.gov/regulations_policies/faa_regulations</a></li>\r\n  <li>National Transportation Safety Board: <a href=\"\"http://www.ntsb.gov\"\">www.ntsb.gov</a></li>\r\n  <li>U.S. Air Force: <a href=\"\"http://www.af.mil\"\">www.af.mil</a></li>\r\n</ul>\r\n<h4>Historical Information</h4>\r\n<ul>\r\n  <li>Aviation History Online Museum: <a href=\"\"http://www.aviation-history.com\"\">www.aviation-history.com</a></li>\r\n  <li>Canadian Warplane Museum:<a href=\"\"http://www.warplane.com\"\"> www.warplane.com</a></li>\r\n  <li>Flight History Information:<a href=\"\"http://www.flight-history.com\"\"> www.flight-history.com</a></li>\r\n  <li>National Air & Space Museum: <a href=\"\"http://www.nasm.si.edu\"\">www.nasm.si.edu</a></li>\r\n  <li>National Aviation Hall of Fame:<a href=\"\"http://www.nationalaviation.org\"\"> www.nationalaviation.org</a></li>\r\n  <li>Strategic Air Command Museum: <a href=\"\"http://www.strategicairandspace.com\"\">www.strategicairandspace.com</a></li>\r\n</ul>\r\n<h4>Organizations</h4>\r\n<ul>\r\n  <li>A.O.P.A. (Aircraft Owners Pilots Assoc.): <a href=\"\"http://www.aopa.org\"\">www.aopa.org</a></li>\r\n  <li>American Bonanza Society: <a href=\"\"http://www.bonanza.org\"\">www.bonanza.org</a></li>\r\n  <li>Airports Council Inteational: <a href=\"\"http://www.airports.org\"\">www.airports.org</a></li>\r\n  <li>Cessna Owner Organization: <a href=\"\"http://www.cessnaowner.org\"\">www.cessnaowner.org</a></li>\r\n  <li>International Commanche Society: <a href=\"\"http://www.comancheflyer.com\"\">www.comancheflyer.com</a></li>\r\n  <li>International Organization of Women Pilots:<a href=\"\"http://www.ninety-nines.org\"\"> www.ninety-nines.org</a></li>\r\n  <li>Mooney Pilot Organization: <a href=\"\"http://www.mooneypilots.com/\"\">http://www.mooneypilots.com/</a></li>\r\n  <li>National Aeronautic Association: <a href=\"\"http://www.naa-usa.org\"\">www.naa-usa.org</a></li>\r\n  <li>N.B.A.A. (National Business Aviation Assoc.):<a href=\"\"http://www.nbaa.org\"\"> www.nbaa.org</a></li>\r\n</ul>\r\n<h4>Publications</h4>\r\n<ul>\r\n  <li>Aerospace Technology:<a href=\"\"http://www.aerospace-technology.com/\"\"> http://www.aerospace-technology.com/</a></li>\r\n  <li>Airplane Blog: <a href=\"\"http://www.airplaneblog.com/\"\">http://www.airplaneblog.com/</a></li>\r\n  <li>AutoPilot Magazine:<a href=\"\"http://www.autopilotmagazine.com\"\">www.autopilotmagazine.com</a></li>\r\n  <li>Aviation Market Center: <a href=\"\"http://www.aviationmarketcenter.com/\"\">http://www.aviationmarketcenter.com/</a></li>\r\n  <li>Business Air Today :<a href=\"\"http://www.businessair.com/\"\">http://www.businessair.com/</a></li>\r\n  <li>Business & Commercial Aviation: <a href=\"\"http://www.aviationnow.com\"\">www.aviationnow.com</a></li>\r\n  <li class=\"\"style8\"\">Landings:<a href=\"\"http://www.landings.com\"\">www.landings.com</a></li>\r\n  <li>Pilot\'s Web: <a href=\"\"http://pilotsweb.com/\"\">http://pilotsweb.com/</a></li>\r\n  <li>Plane & Pilot :<a href=\"\"http://www.planeandpilotmag.com/\"\">http://www.planeandpilotmag.com/</a></li>\r\n  <li>Southern Aviator: <a href=\"\"http://www.southe-aviator.com\"\">www.southe-aviator.com</a></li>\r\n  <li>Southwest Aviator:<a href=\"\"http://www.southwestaviator.com\"\"> www.southwestaviator.com</a></li>\r\n  <li>World Aircraft Sales Magazine:<a href=\"\"http://www.avbuyer.com\"\"> www.avbuyer.com</a></li>\r\n</ul>'),(2,3,2,'Enlaces de la AviaciÃ³n','<br />\r\n<br />\r\n<strong>InformaciÃ³n General</strong>\r\n<ul>\r\n  <li>AirNav (Pilot Information): <a href=\"\"http://www.aiav.com/fuel\"\">www.aiav.com</a></li>\r\n  <li>Aviation Weather Center: <a href=\"\"http://www.aviationweather.gov\"\">www.aviationweather.gov</a></li>\r\n  <li>Aviator\'s Hotline: <a href=\"\"http://www.aviationhotline.com/Aviators.htm\"\">http://www.aviationhotline.com/Aviators.htm</a></li>\r\n  <li>AvWeb:<a href=\"\"http://www.avweb.com\"\"> www.avweb.com</a></li>\r\n</ul>\r\n<h4>Agencias del Gobiernos</h4>\r\n<ul>\r\n  <li>Civil Air Patrol: <a href=\"\"http://www.cap.gov\"\">www.cap.gov</a></li>\r\n  <li>Federal Aviation Administration: <a href=\"\"http://www.faa.gov\"\">www.faa.gov</a></li>\r\n  <li>FAR (Federal Aviation Regulations): <a href=\"\"http://www.faa.gov/regulations_policies/faa_regulations/\"\">www.faa.gov/regulations_policies/faa_regulations</a></li>\r\n  <li>National Transportation Safety Board: <a href=\"\"http://www.ntsb.gov\"\">www.ntsb.gov</a></li>\r\n  <li>U.S. Air Force: <a href=\"\"http://www.af.mil\"\">www.af.mil</a></li>\r\n</ul>\r\n<h4>InformaciÃ³n HistÃ³rica</h4>\r\n<ul>\r\n  <li>Aviation History Online Museum: <a href=\"\"http://www.aviation-history.com\"\">www.aviation-history.com</a></li>\r\n  <li>Canadian Warplane Museum:<a href=\"\"http://www.warplane.com\"\"> www.warplane.com</a></li>\r\n  <li>Flight History Information:<a href=\"\"http://www.flight-history.com\"\"> www.flight-history.com</a></li>\r\n  <li>National Air & Space Museum: <a href=\"\"http://www.nasm.si.edu\"\">www.nasm.si.edu</a></li>\r\n  <li>National Aviation Hall of Fame:<a href=\"\"http://www.nationalaviation.org\"\"> www.nationalaviation.org</a></li>\r\n  <li>Strategic Air Command Museum: <a href=\"\"http://www.strategicairandspace.com\"\">www.strategicairandspace.com</a></li>\r\n</ul>\r\n<h4>Organizaciones</h4>\r\n<ul>\r\n  <li>A.O.P.A. (Aircraft Owners Pilots Assoc.): <a href=\"\"http://www.aopa.org\"\">www.aopa.org</a></li>\r\n  <li>American Bonanza Society: <a href=\"\"http://www.bonanza.org\"\">www.bonanza.org</a></li>\r\n  <li>Airports Council Inteational: <a href=\"\"http://www.airports.org\"\">www.airports.org</a></li>\r\n  <li>Cessna Owner Organization: <a href=\"\"http://www.cessnaowner.org\"\">www.cessnaowner.org</a></li>\r\n  <li>International Commanche Society: <a href=\"\"http://www.comancheflyer.com\"\">www.comancheflyer.com</a></li>\r\n  <li>International Organization of Women Pilots:<a href=\"\"http://www.ninety-nines.org\"\"> www.ninety-nines.org</a></li>\r\n  <li>Mooney Pilot Organization: <a href=\"\"http://www.mooneypilots.com/\"\">http://www.mooneypilots.com/</a></li>\r\n  <li>National Aeronautic Association: <a href=\"\"http://www.naa-usa.org\"\">www.naa-usa.org</a></li>\r\n  <li>N.B.A.A. (National Business Aviation Assoc.):<a href=\"\"http://www.nbaa.org\"\"> www.nbaa.org</a></li>\r\n</ul>\r\n<h4>Publicaciones</h4>\r\n<ul>\r\n  <li>Aerospace Technology:<a href=\"\"http://www.aerospace-technology.com/\"\"> http://www.aerospace-technology.com/</a></li>\r\n  <li>Airplane Blog: <a href=\"\"http://www.airplaneblog.com/\"\">http://www.airplaneblog.com/</a></li>\r\n  <li>AutoPilot Magazine:<a href=\"\"http://www.autopilotmagazine.com\"\">www.autopilotmagazine.com</a></li>\r\n  <li>Aviation Market Center: <a href=\"\"http://www.aviationmarketcenter.com/\"\">http://www.aviationmarketcenter.com/</a></li>\r\n  <li>Business Air Today :<a href=\"\"http://www.businessair.com/\"\">http://www.businessair.com/</a></li>\r\n  <li>Business & Commercial Aviation: <a href=\"\"http://www.aviationnow.com\"\">www.aviationnow.com</a></li>\r\n  <li class=\"\"style8\"\">Landings:<a href=\"\"http://www.landings.com\"\">www.landings.com</a></li>\r\n  <li>Pilot\'s Web: <a href=\"\"http://pilotsweb.com/\"\">http://pilotsweb.com/</a></li>\r\n  <li>Plane & Pilot :<a href=\"\"http://www.planeandpilotmag.com/\"\">http://www.planeandpilotmag.com/</a></li>\r\n  <li>Southern Aviator: <a href=\"\"http://www.southe-aviator.com\"\">www.southe-aviator.com</a></li>\r\n  <li>Southwest Aviator:<a href=\"\"http://www.southwestaviator.com\"\"> www.southwestaviator.com</a></li>\r\n  <li>World Aircraft Sales Magazine:<a href=\"\"http://www.avbuyer.com\"\"> www.avbuyer.com</a></li>\r\n</ul>'),(3,4,1,'Maritime Links','<br /><br />\r\n<h4>Weather</h4>	<ul><li>National Oceanic & Atmospheric Admin (N.O.A.A.): <a href=\"http://www.noaa.gov\">www.noaa.gov</a> <li>U.S. Naval Fleet (FNMOC): <a href=\"https://www.fnmoc.navy.mil/public/\">www.fnmoc.navy.mil/public</a>  <li>Naval Oceanography Portal: <a href=\"http://www.usno.navy.mil/\">www.usno.navy.mil/</a></ul>  <h4>Government Agencies</h4><ul>	<li>Florida Fish & Wildlife Conservation Commission: <a href=\"http://www.myfwc.com\">www.myfwc.com</a>	<li>U.S. Coast Guard: <a href=\"http://www.uscg.mil/\">www.uscg.org</a></ul> <h4>Organizations</h4><ul><li>Bayview Yacht Club: <a href=\"http://www.byc.org\">www.byc.org</a>  <li>Chicago Yacht Club: <a href=\"http://www.chicagoyachtclub.org\">www.chicagoyachtclub.org</a> <li>(G.P.Y.C) Gross Point Yacht Club: <a href=\"http://www.gpyc.org\">www.gpyc.org</a> \r\n<li>International Sailing Federation: <a href=\"http://www.sailing.org\">www.sailing.org</a>\r\n<li>National Boating & Fishing Foundation: <a href=\"http://www.rbff.org/\">http://www.rbff.org/</a> <li>N.M.M.A. (National Marine Manufacturers Assoc.): <a href=\"http://www.nmma.org/\">www.nmma.org</a>	<li>National Maritime Society: <a href=\"http://www.nauticus.org\">www.nauticus.org</a><li>	Offshore Racing Council: <a href=\"http://www.orc.org\">www.orc.org</a><li>Saltwater Sportsmen: <a href=\"http://www.jcaa.org\">www.jcaa.org</a></ul><h4>Publications</h4><ul>  <li>Seguridad del Canotaje: <a href=\"http://www.boatsafe.com/nauticalknowhow/safetips\">www.boatsafe.com/nauticalknowhow/safetips</a>	</li> <li>Cruising World: <a href=\"http://www.cruisingworld.com\">www.cruisingworld.com</a></li>	<li>Marine Weather Enthusiast: <a href=\"http://www.weatherzone.com\">www.weatherzone.com</a> </li>	<li>Sail Magazine: <a href=\"http://www.sailmagazine.com\">www.sailmagazine.com</a></li>	<li>Sailing: <a href=\"http://www.sailing.com\">www.sailing.com</a></li>	<li>Sailing World: <a href=\"http://www.sailingworld.com\">www.sailingworld.com</a></li>	<li>Southern Boating: <a href=\"http://www.southeboating.com\">www.southeboating.com</a></li>	<li>Yachting World: <a href=\"http://www.yachting-world.com\">www.yachting-world.com</a></li>	<li>Yachtsmans\' Guide: <a href=\"http://www.yachtsmanguide.com\">www.yachtsmansguide.com</a></li></ul>'),(4,4,2,'Enlaces MarÃ­timos','<h4>Tiempo</h4>	<ul><li>National Oceanic & Atmospheric Admin (N.O.A.A.): <a href=\"http://www.noaa.gov\">www.noaa.gov</a> <li>U.S. Naval Fleet (FNMOC): <a href=\"https://www.fnmoc.navy.mil/public/\">www.fnmoc.navy.mil/public</a>  <li>Naval Oceanography Portal: <a href=\"http://www.usno.navy.mil/\">www.usno.navy.mil/</a></ul>  <h4>Agencias del Gobiernos</h4><ul>	<li>Florida Fish & Wildlife Conservation Commission: <a href=\"http://www.myfwc.com\">www.myfwc.com</a>	<li>U.S. Coast Guard: <a href=\"http://www.uscg.mil/\">www.uscg.org</a></ul> <h4>Organizaciones</h4><ul><li>Bayview Yacht Club: <a href=\"http://www.byc.org\">www.byc.org</a>  <li>Chicago Yacht Club: <a href=\"http://www.chicagoyachtclub.org\">www.chicagoyachtclub.org</a> <li>(G.P.Y.C) Gross Point Yacht Club: <a href=\"http://www.gpyc.org\">www.gpyc.org</a> \r\n<li>International Sailing Federation: <a href=\"http://www.sailing.org\">www.sailing.org</a>\r\n<li>National Boating & Fishing Foundation: <a href=\"http://www.rbff.org/\">http://www.rbff.org/</a> <li>N.M.M.A. (National Marine Manufacturers Assoc.): <a href=\"http://www.nmma.org/\">www.nmma.org</a>	<li>National Maritime Society: <a href=\"http://www.nauticus.org\">www.nauticus.org</a><li>	Offshore Racing Council: <a href=\"http://www.orc.org\">www.orc.org</a><li>Saltwater Sportsmen: <a href=\"http://www.jcaa.org\">www.jcaa.org</a></ul>\r\n<h4>Publicaciones</h4>\r\n<ul>  <li>Seguridad del Canotaje: <a href=\"http://www.boatsafe.com/nauticalknowhow/safetips\">www.boatsafe.com/nauticalknowhow/safetips</a>	</li> <li>Cruising World: <a href=\"http://www.cruisingworld.com\">www.cruisingworld.com</a></li>	<li>Marine Weather Enthusiast: <a href=\"http://www.weatherzone.com\">www.weatherzone.com</a> </li>	<li>Sail Magazine: <a href=\"http://www.sailmagazine.com\">www.sailmagazine.com</a></li>	<li>Sailing: <a href=\"http://www.sailing.com\">www.sailing.com</a></li>	<li>Sailing World: <a href=\"http://www.sailingworld.com\">www.sailingworld.com</a></li>	<li>Southern Boating: <a href=\"http://www.southeboating.com\">www.southeboating.com</a></li>	<li>Yachting World: <a href=\"http://www.yachting-world.com\">www.yachting-world.com</a></li>	<li>Yachtsmans\' Guide: <a href=\"http://www.yachtsmanguide.com\">www.yachtsmansguide.com</a></li></ul>'),(10,8,2,'Test','<div id=\"TabbedPanels1\" class=\"TabbedPanels\"> \r\n  <ul class=\"TabbedPanelsTabGroup\"> \r\n    <li class=\"TabbedPanelsTab\" tabindex=\"0\">Tab 1</li> \r\n    <li class=\"TabbedPanelsTab\" tabindex=\"0\">Tab 2</li> \r\n  </ul> \r\n  <div class=\"TabbedPanelsContentGroup\"> \r\n    <div class=\"TabbedPanelsContent\">Content 1</div> \r\n    <div class=\"TabbedPanelsContent\">Content 2</div> \r\n  </div> \r\n</div> \r\n<script type=\"text/javascript\"> \r\n<!--\r\nvar TabbedPanels1 = new Spry.Widget.TabbedPanels(\"TabbedPanels1\");\r\n//-->\r\n</script>'),(5,6,1,'Fax Order Form',''),(6,6,2,'Fax',''),(7,7,1,'Fax Form',''),(8,7,2,'Fax Form',''),(9,8,1,'Test','<div id=\"TabbedPanels1\" class=\"TabbedPanels\">\r\n  <ul class=\"TabbedPanelsTabGroup\">\r\n    <li class=\"TabbedPanelsTab\" tabindex=\"0\">Description</li>\r\n    <li class=\"TabbedPanelsTab\" tabindex=\"0\">Features</li>\r\n    <li class=\"TabbedPanelsTab\" tabindex=\"0\">Included</li>\r\n    <li class=\"TabbedPanelsTab\" tabindex=\"0\">Survival Kit</li>\r\n    \r\n  </ul>\r\n  <div class=\"TabbedPanelsContentGroup\">\r\n    <div class=\"TabbedPanelsContent\">4-6 Man Life Raft. Lightest and smallest package on the market today, designed for private pilots and pleasure boaters. Non TSO Approved</div>\r\n    <div class=\"TabbedPanelsContent\"><li>Lightest and smallest package on the market today, designed for private pilots and pleasure boaters. </li><li>    Easy to carry, stow away, and maneuver in any emergency situation.</li><li>    Easily deployed by women, children, exhausted pilots, or boaters. </li><li>    Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures.</li><li>    Constructed of heavy-duty FAA approved neoprene coated nylon fabric. </li><li>    Optional highly visible orange canopy to aid in search and rescue operations. </li><li>    Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. <br />\r\n\r\n    </li>\r\n\r\n  <li>High-tech CO2 automatic inflation system, inflates in 10 seconds. </li><li>    Optional survival kits are available to meet individual requirements. </li><li>    Lifetime warranty on parts and labor, built to last a lifetime with proper care. </li></div>\r\n    <div class=\"TabbedPanelsContent\"><table border=\"1\" align=\"center\" cellpadding=\"3\" cellspacing=\"0\">\r\n\r\n    <tbody>\r\n\r\n      <tr>\r\n\r\n        <td colspan=\"2\"><strong>Each Basic Life Raft includes:</strong></td>\r\n\r\n      </tr>\r\n\r\n      <tr>\r\n\r\n        <td width=\"50%\" height=\"1\">Buoyancy tube</td>\r\n\r\n        <td width=\"50%\" height=\"1\">Retaining line</td>\r\n\r\n      </tr>\r\n\r\n      <tr>\r\n\r\n        <td height=\"1\">Deck</td>\r\n\r\n        <td width=\"50%\" height=\"1\">Hand pump</td>\r\n\r\n      </tr>\r\n\r\n      <tr>\r\n\r\n        <td height=\"1\">LÃ­fe lines</td>\r\n\r\n        <td width=\"50%\" height=\"1\">Bailing bucket </td>\r\n\r\n      </tr>\r\n\r\n      <tr>\r\n\r\n        <td height=\"1\">Boarding Handles</td>\r\n\r\n        <td width=\"50%\" height=\"1\">Sea anchor</td>\r\n\r\n      </tr>\r\n\r\n      <tr>\r\n\r\n        <td height=\"1\">CO2 auto-inflation system</td>\r\n\r\n        <td width=\"50%\" height=\"1\">Valise</td>\r\n\r\n      </tr>\r\n\r\n      <tr>\r\n\r\n        <td height=\"1\" colspan=\"2\">Note:  Required Raft Compartment Size - Add 3\" to Raft Pack Dimensions.  Raft Weight +/- 2.0 lbs</td>\r\n\r\n      </tr>\r\n\r\n    </tbody>\r\n\r\n  </table></div>\r\n    <div class=\"TabbedPanelsContent\">        \r\n          The survival equipment kit comes packed in its own valise providing the ultimate in flexibility for raft and equipment combinations. Acquire your basic raft and survival equipment based on individual requirements. Survival valise is secured to the life raft valise with velcro and a tie-line. Survival kits are designed and prepared for Non TSO and FAA TSO aviation/marine use. FAR 91, FAR 121, and FAR 125/135 survival equipment kits are also available. Optional ELT/EPIRB can be packed inside survival kits.\r\n\r\n  <br />\r\n  <br />\r\n  *Note: Food/water ration quantities based on raft capacity.</div>\r\n  </div>\r\n</div>\r\n<script type=\"text/javascript\">\r\n<!--\r\nvar TabbedPanels1 = new Spry.Widget.TabbedPanels(\"TabbedPanels1\");\r\n//-->\r\n</script>'),(11,9,1,'compare survival kits','<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">\r\n<html>\r\n<head>\r\n  <title>compare-survival-kits</title>\r\n</head>\r\n<body>\r\n<br>\r\n<br>\r\n<div id=\"catDescHeading\" align=\"center\"> Compare\r\nSurvival Kits </div>\r\n<p><img src=\"images/survivalkit_01_MED.jpg\"\r\n alt=\"Aviation &amp; Marine Survival Kits TSO &amp; Non TSO\"\r\n style=\"width: 200px; height: 247px;\" align=\"left\"\r\n border=\"0\"></p>\r\n<div id=\"kitCompareFont\">The optional survival equipment\r\nkit is stowed its own valise (separate from the raft valise). Separate\r\nunits provide the ultimate in flexibility for raft and survival\r\nequipment combinations - ability to purchase basic rafts and survival\r\nequipment separately to meet unique requirements. Survival equipment\r\nkit and raft valise are attached to each other using velcro and a\r\ntie-line. <br>\r\n<br>\r\n<a href=\"javascript:history.go(-1)\"\r\n onmouseover=\"self.status=document.referrer;return true\">previous\r\npage</a><br>\r\n<br>\r\n<table border=\"1\" cellpadding=\"3\" cellspacing=\"0\"\r\n width=\"100%\">\r\n  <tbody>\r\n    <tr class=\"kitHeading\">\r\n      <td bgcolor=\"#333333\" width=\"40%\">Survival\r\nKit Contents</td>\r\n      <td bgcolor=\"#333333\" width=\"20%\">Standard/<br>\r\n91 &nbsp;Type</td>\r\n      <td bgcolor=\"#333333\" width=\"20%\">Standard <br>\r\nPlus/&nbsp;121 Type</td>\r\n      <td bgcolor=\"#333333\" width=\"20%\">Deluxe/<br>\r\n135 Type</td>\r\n    </tr>\r\n    <tr>\r\n      <td> </td>\r\n      <td> </td>\r\n      <td> </td>\r\n      <td> </td>\r\n    </tr>\r\n    <tr>\r\n      <td>canopy w/inflatable mast</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>equipment container</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>signal flag</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>3 signal flares</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>first aid kit</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>raft repair kit</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>sea dye markers</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>2-cell flashlight w/batteries</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>signal mirror</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>food rations</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>water rations</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>signal whistle</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>utility knife</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>sponge</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>survival manual</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>magnetic compass </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>75-foot retaining line</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>reverse osmosis desalinator </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>2 paddles</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>fishing kit </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>radar reflector</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<!-- end #mainContent -->\r\n</div>\r\n</body>\r\n</html>'),(12,9,2,'compare survival kits','<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">\r\n<html>\r\n<head>\r\n  <title>compare-survival-kits</title>\r\n</head>\r\n<body>\r\n<br>\r\n<br>\r\n<div id=\"catDescHeading\" align=\"center\"> Compare\r\nSurvival Kits </div>\r\n<p><img src=\"images/survivalkit_01_MED.jpg\"\r\n alt=\"Aviation &amp; Marine Survival Kits TSO &amp; Non TSO\"\r\n style=\"width: 200px; height: 247px;\" align=\"left\"\r\n border=\"0\"></p>\r\n<div id=\"kitCompareFont\">The optional survival equipment\r\nkit is stowed its own valise (separate from the raft valise). Separate\r\nunits provide the ultimate in flexibility for raft and survival\r\nequipment combinations - ability to purchase basic rafts and survival\r\nequipment separately to meet unique requirements. Survival equipment\r\nkit and raft valise are attached to each other using velcro and a\r\ntie-line. <br>\r\n<br>\r\n<a href=\"javascript:history.go(-1)\"\r\n onmouseover=\"self.status=document.referrer;return true\">previous\r\npage</a><br>\r\n<br>\r\n<table border=\"1\" cellpadding=\"3\" cellspacing=\"0\"\r\n width=\"100%\">\r\n  <tbody>\r\n    <tr class=\"kitHeading\">\r\n      <td bgcolor=\"#333333\" width=\"40%\">Survival\r\nKit Contents</td>\r\n      <td bgcolor=\"#333333\" width=\"20%\">Standard/<br>\r\n91 &nbsp;Type</td>\r\n      <td bgcolor=\"#333333\" width=\"20%\">Standard <br>\r\nPlus/&nbsp;121 Type</td>\r\n      <td bgcolor=\"#333333\" width=\"20%\">Deluxe/<br>\r\n135 Type</td>\r\n    </tr>\r\n    <tr>\r\n      <td> </td>\r\n      <td> </td>\r\n      <td> </td>\r\n      <td> </td>\r\n    </tr>\r\n    <tr>\r\n      <td>canopy w/inflatable mast</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>equipment container</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>signal flag</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>3 signal flares</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>first aid kit</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>raft repair kit</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>sea dye markers</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>2-cell flashlight w/batteries</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>signal mirror</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>food rations</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>water rations</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>signal whistle</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>utility knife</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>sponge</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>survival manual</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>magnetic compass </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>75-foot retaining line</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>reverse osmosis desalinator </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>2 paddles</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>fishing kit </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>radar reflector</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<!-- end #mainContent -->\r\n</div>\r\n</body>\r\n</html>'),(21,14,1,'Checkout Success','<p>Thank  you for your payment. Your transaction has been completed, and a receipt for  your purchase has been emailed to you.  You may <a href=\"http://aaasurvivalproducts.com/index.php?main_page=account\">log into  your account here</a> to view details of this transaction. <br />\r\n\r\n</p>'),(22,14,2,'Checkout Success','<p>Thank  you for your payment. Your transaction has been completed, and a receipt for  your purchase has been emailed to you.  You may <a href=\"http://aaasurvivalproducts.com/index.php?main_page=account\">log into  your account here</a> to view details of this transaction. <br />\r\n\r\n</p>'),(13,10,1,'Frequently Asked Questions','<br /><br /><br /><strong>Question:</strong><br />\r\nWhat does the term \"TSO\" mean?<br /><br />\r\n<strong>Answer:</strong><br />\r\n  TSO is an FAA (Federal Aviation Administration) acronym for \"Technical Standard Order\".<br /><br />\r\n<strong>TSO</strong><br /> \r\nA Technical Standard Order (TSO) is a minimum performance standard issued by the Administrator for specified materials, parts, processes, and appliances used on civil aircraft. TSOs can be viewed by Current, Active Historical, or Canceled. Current TSOs are the approved FAA performance standard that the applicant must use to receive a TSO authorization. Active Historical TSOs are for previously approved TSO authorizations. Canceled TSOs are for reference only.<br /><br /><br />\r\n<strong>Question:</strong><br />  What is the difference between a Type I and a Type II liferaft?<br /><br />\r\n<strong>Answer:</strong><br />\r\n  4.2.1 Type I Liferaft. Buoyancy must be provided by two independent buoyancy tubes each of which, including the raft floor, must be capable of supporting the rated and overload capacities in fresh water if the other tube is deflated. The liferaft loaded to its rated capacity must have a freeboard of at least 12 inches with both buoyancy tubes at minimum operating pressure. The liferaft loaded to its rated capacity with the critical tube deflated and the remaining tube at minimum operating pressure must have a freeboard of at least 6 inches. The liferaft loaded to its overload capacity with the critical tube deflated must have a measurable freeboard.<br />\r\n  <br />\r\n  4.2.2 Type II Liferaft. When single tube construction is used to provide the buoyancy, internal bulkheads must divide the flotation tube into at least two separate chambers such that the liferaft will be capable of supporting the rated number of occupants out of fresh water in the event that one chamber is deflated. The complete liferaft loaded to its rated capacity must have a freeboard of at least 6 inches.<br /><br /><br />\r\n<strong>Question:</strong><br />\r\n  Where can I get a printable copy of TSO-C70a?<br /><br />\r\n<strong>Answer:</strong><br />\r\n<a href=\"/C70a.pdf\">TSO C70a Please Click Here</a>\r\n\r\n\r\n<br /><br /><br /><strong>Question:</strong><br />\r\nWhat does the acronym \"FAR\" mean?<br /><br />\r\n<strong>Answer:</strong><br />\r\n  The Federal Aviation Regulations, or FARs, are rules prescribed by the Federal Aviation Administration (FAA) governing all aviation activities in the United States.<br /><br />'),(14,10,2,'Frequently Asked Questions','Question:\r\nWhat does the term \"TSO\" mean?\r\n\r\nAnswer:\r\nTSO is an FAA (Federal Aviation Administration) acronym for \"Technical Standard Order\".\r\n\r\nQuestion:\r\nWhat is the difference between a Type I and a Type II life raft?\r\n\r\nAnswer: \r\n4.2.1 Type I Liferaft. Buoyancy must be provided by two independent buoyancy tubes each of which, including the raft floor, must be capable of supporting the rated and overload capacities in fresh water if the other tube is deflated. The liferaft loaded to its rated capacity must have a freeboard of at least 12 inches with both buoyancy tubes at minimum operating pressure. The liferaft loaded to its rated capacity with the critical tube deflated and the remaining tube at minimum operating pressure must have a freeboard of at least 6 inches. The liferaft loaded to its overload capacity with the critical tube deflated must have a measurable freeboard.\r\n   \r\n4.2.2 Type II Liferaft. When single tube construction is used to provide the buoyancy, internal bulkheads must divide the flotation tube into at least two separate chambers such that the liferaft will be capable of supporting the rated number of occupants out of fresh water in the event that one chamber is deflated. The complete liferaft loaded to its rated capacity must have a freeboard of at least 6 inches.\r\n\r\nQuestion:\r\nWhere can I get a copy of TSO-C70a?\r\n\r\nAnswer: \r\n<a href=\"http://www.aaasurvivalproducts.com/includes/templates/aaas/uploads/C70a.pdf\">TSO C70a Please Click Here</a>'),(1,3,1,'Aviation Links','<br />\r\n<br />\r\n<strong>General Information</strong>\r\n<ul>\r\n  <li>AirNav (Pilot Information): <a href=\"\"http://www.aiav.com/fuel\"\">www.aiav.com</a></li>\r\n  <li>Aviation Weather Center: <a href=\"\"http://www.aviationweather.gov\"\">www.aviationweather.gov</a></li>\r\n  <li>Aviator\'s Hotline: <a href=\"\"http://www.aviationhotline.com/Aviators.htm\"\">http://www.aviationhotline.com/Aviators.htm</a></li>\r\n  <li>AvWeb:<a href=\"\"http://www.avweb.com\"\"> www.avweb.com</a></li>\r\n</ul>\r\n<h4>Government Agencies</h4>\r\n<ul>\r\n  <li>Civil Air Patrol: <a href=\"\"http://www.cap.gov\"\">www.cap.gov</a></li>\r\n  <li>Federal Aviation Administration: <a href=\"\"http://www.faa.gov\"\">www.faa.gov</a></li>\r\n  <li>FAR (Federal Aviation Regulations): <a href=\"\"http://www.faa.gov/regulations_policies/faa_regulations/\"\">www.faa.gov/regulations_policies/faa_regulations</a></li>\r\n  <li>National Transportation Safety Board: <a href=\"\"http://www.ntsb.gov\"\">www.ntsb.gov</a></li>\r\n  <li>U.S. Air Force: <a href=\"\"http://www.af.mil\"\">www.af.mil</a></li>\r\n</ul>\r\n<h4>Historical Information</h4>\r\n<ul>\r\n  <li>Aviation History Online Museum: <a href=\"\"http://www.aviation-history.com\"\">www.aviation-history.com</a></li>\r\n  <li>Canadian Warplane Museum:<a href=\"\"http://www.warplane.com\"\"> www.warplane.com</a></li>\r\n  <li>Flight History Information:<a href=\"\"http://www.flight-history.com\"\"> www.flight-history.com</a></li>\r\n  <li>National Air & Space Museum: <a href=\"\"http://www.nasm.si.edu\"\">www.nasm.si.edu</a></li>\r\n  <li>National Aviation Hall of Fame:<a href=\"\"http://www.nationalaviation.org\"\"> www.nationalaviation.org</a></li>\r\n  <li>Strategic Air Command Museum: <a href=\"\"http://www.strategicairandspace.com\"\">www.strategicairandspace.com</a></li>\r\n</ul>\r\n<h4>Organizations</h4>\r\n<ul>\r\n  <li>A.O.P.A. (Aircraft Owners Pilots Assoc.): <a href=\"\"http://www.aopa.org\"\">www.aopa.org</a></li>\r\n  <li>American Bonanza Society: <a href=\"\"http://www.bonanza.org\"\">www.bonanza.org</a></li>\r\n  <li>Airports Council Inteational: <a href=\"\"http://www.airports.org\"\">www.airports.org</a></li>\r\n  <li>Cessna Owner Organization: <a href=\"\"http://www.cessnaowner.org\"\">www.cessnaowner.org</a></li>\r\n  <li>International Commanche Society: <a href=\"\"http://www.comancheflyer.com\"\">www.comancheflyer.com</a></li>\r\n  <li>International Organization of Women Pilots:<a href=\"\"http://www.ninety-nines.org\"\"> www.ninety-nines.org</a></li>\r\n  <li>Mooney Pilot Organization: <a href=\"\"http://www.mooneypilots.com/\"\">http://www.mooneypilots.com/</a></li>\r\n  <li>National Aeronautic Association: <a href=\"\"http://www.naa-usa.org\"\">www.naa-usa.org</a></li>\r\n  <li>N.B.A.A. (National Business Aviation Assoc.):<a href=\"\"http://www.nbaa.org\"\"> www.nbaa.org</a></li>\r\n</ul>\r\n<h4>Publications</h4>\r\n<ul>\r\n  <li>Aerospace Technology:<a href=\"\"http://www.aerospace-technology.com/\"\"> http://www.aerospace-technology.com/</a></li>\r\n  <li>Airplane Blog: <a href=\"\"http://www.airplaneblog.com/\"\">http://www.airplaneblog.com/</a></li>\r\n  <li>AutoPilot Magazine:<a href=\"\"http://www.autopilotmagazine.com\"\">www.autopilotmagazine.com</a></li>\r\n  <li>Aviation Market Center: <a href=\"\"http://www.aviationmarketcenter.com/\"\">http://www.aviationmarketcenter.com/</a></li>\r\n  <li>Business Air Today :<a href=\"\"http://www.businessair.com/\"\">http://www.businessair.com/</a></li>\r\n  <li>Business & Commercial Aviation: <a href=\"\"http://www.aviationnow.com\"\">www.aviationnow.com</a></li>\r\n  <li class=\"\"style8\"\">Landings:<a href=\"\"http://www.landings.com\"\">www.landings.com</a></li>\r\n  <li>Pilot\'s Web: <a href=\"\"http://pilotsweb.com/\"\">http://pilotsweb.com/</a></li>\r\n  <li>Plane & Pilot :<a href=\"\"http://www.planeandpilotmag.com/\"\">http://www.planeandpilotmag.com/</a></li>\r\n  <li>Southern Aviator: <a href=\"\"http://www.southe-aviator.com\"\">www.southe-aviator.com</a></li>\r\n  <li>Southwest Aviator:<a href=\"\"http://www.southwestaviator.com\"\"> www.southwestaviator.com</a></li>\r\n  <li>World Aircraft Sales Magazine:<a href=\"\"http://www.avbuyer.com\"\"> www.avbuyer.com</a></li>\r\n</ul>'),(2,3,2,'Enlaces de la AviaciÃ³n','<br />\r\n<br />\r\n<strong>InformaciÃ³n General</strong>\r\n<ul>\r\n  <li>AirNav (Pilot Information): <a href=\"\"http://www.aiav.com/fuel\"\">www.aiav.com</a></li>\r\n  <li>Aviation Weather Center: <a href=\"\"http://www.aviationweather.gov\"\">www.aviationweather.gov</a></li>\r\n  <li>Aviator\'s Hotline: <a href=\"\"http://www.aviationhotline.com/Aviators.htm\"\">http://www.aviationhotline.com/Aviators.htm</a></li>\r\n  <li>AvWeb:<a href=\"\"http://www.avweb.com\"\"> www.avweb.com</a></li>\r\n</ul>\r\n<h4>Agencias del Gobiernos</h4>\r\n<ul>\r\n  <li>Civil Air Patrol: <a href=\"\"http://www.cap.gov\"\">www.cap.gov</a></li>\r\n  <li>Federal Aviation Administration: <a href=\"\"http://www.faa.gov\"\">www.faa.gov</a></li>\r\n  <li>FAR (Federal Aviation Regulations): <a href=\"\"http://www.faa.gov/regulations_policies/faa_regulations/\"\">www.faa.gov/regulations_policies/faa_regulations</a></li>\r\n  <li>National Transportation Safety Board: <a href=\"\"http://www.ntsb.gov\"\">www.ntsb.gov</a></li>\r\n  <li>U.S. Air Force: <a href=\"\"http://www.af.mil\"\">www.af.mil</a></li>\r\n</ul>\r\n<h4>InformaciÃ³n HistÃ³rica</h4>\r\n<ul>\r\n  <li>Aviation History Online Museum: <a href=\"\"http://www.aviation-history.com\"\">www.aviation-history.com</a></li>\r\n  <li>Canadian Warplane Museum:<a href=\"\"http://www.warplane.com\"\"> www.warplane.com</a></li>\r\n  <li>Flight History Information:<a href=\"\"http://www.flight-history.com\"\"> www.flight-history.com</a></li>\r\n  <li>National Air & Space Museum: <a href=\"\"http://www.nasm.si.edu\"\">www.nasm.si.edu</a></li>\r\n  <li>National Aviation Hall of Fame:<a href=\"\"http://www.nationalaviation.org\"\"> www.nationalaviation.org</a></li>\r\n  <li>Strategic Air Command Museum: <a href=\"\"http://www.strategicairandspace.com\"\">www.strategicairandspace.com</a></li>\r\n</ul>\r\n<h4>Organizaciones</h4>\r\n<ul>\r\n  <li>A.O.P.A. (Aircraft Owners Pilots Assoc.): <a href=\"\"http://www.aopa.org\"\">www.aopa.org</a></li>\r\n  <li>American Bonanza Society: <a href=\"\"http://www.bonanza.org\"\">www.bonanza.org</a></li>\r\n  <li>Airports Council Inteational: <a href=\"\"http://www.airports.org\"\">www.airports.org</a></li>\r\n  <li>Cessna Owner Organization: <a href=\"\"http://www.cessnaowner.org\"\">www.cessnaowner.org</a></li>\r\n  <li>International Commanche Society: <a href=\"\"http://www.comancheflyer.com\"\">www.comancheflyer.com</a></li>\r\n  <li>International Organization of Women Pilots:<a href=\"\"http://www.ninety-nines.org\"\"> www.ninety-nines.org</a></li>\r\n  <li>Mooney Pilot Organization: <a href=\"\"http://www.mooneypilots.com/\"\">http://www.mooneypilots.com/</a></li>\r\n  <li>National Aeronautic Association: <a href=\"\"http://www.naa-usa.org\"\">www.naa-usa.org</a></li>\r\n  <li>N.B.A.A. (National Business Aviation Assoc.):<a href=\"\"http://www.nbaa.org\"\"> www.nbaa.org</a></li>\r\n</ul>\r\n<h4>Publicaciones</h4>\r\n<ul>\r\n  <li>Aerospace Technology:<a href=\"\"http://www.aerospace-technology.com/\"\"> http://www.aerospace-technology.com/</a></li>\r\n  <li>Airplane Blog: <a href=\"\"http://www.airplaneblog.com/\"\">http://www.airplaneblog.com/</a></li>\r\n  <li>AutoPilot Magazine:<a href=\"\"http://www.autopilotmagazine.com\"\">www.autopilotmagazine.com</a></li>\r\n  <li>Aviation Market Center: <a href=\"\"http://www.aviationmarketcenter.com/\"\">http://www.aviationmarketcenter.com/</a></li>\r\n  <li>Business Air Today :<a href=\"\"http://www.businessair.com/\"\">http://www.businessair.com/</a></li>\r\n  <li>Business & Commercial Aviation: <a href=\"\"http://www.aviationnow.com\"\">www.aviationnow.com</a></li>\r\n  <li class=\"\"style8\"\">Landings:<a href=\"\"http://www.landings.com\"\">www.landings.com</a></li>\r\n  <li>Pilot\'s Web: <a href=\"\"http://pilotsweb.com/\"\">http://pilotsweb.com/</a></li>\r\n  <li>Plane & Pilot :<a href=\"\"http://www.planeandpilotmag.com/\"\">http://www.planeandpilotmag.com/</a></li>\r\n  <li>Southern Aviator: <a href=\"\"http://www.southe-aviator.com\"\">www.southe-aviator.com</a></li>\r\n  <li>Southwest Aviator:<a href=\"\"http://www.southwestaviator.com\"\"> www.southwestaviator.com</a></li>\r\n  <li>World Aircraft Sales Magazine:<a href=\"\"http://www.avbuyer.com\"\"> www.avbuyer.com</a></li>\r\n</ul>'),(3,4,1,'Maritime Links','<br /><br />\r\n<h4>Weather</h4>	<ul><li>National Oceanic & Atmospheric Admin (N.O.A.A.): <a href=\"http://www.noaa.gov\">www.noaa.gov</a> <li>U.S. Naval Fleet (FNMOC): <a href=\"https://www.fnmoc.navy.mil/public/\">www.fnmoc.navy.mil/public</a>  <li>Naval Oceanography Portal: <a href=\"http://www.usno.navy.mil/\">www.usno.navy.mil/</a></ul>  <h4>Government Agencies</h4><ul>	<li>Florida Fish & Wildlife Conservation Commission: <a href=\"http://www.myfwc.com\">www.myfwc.com</a>	<li>U.S. Coast Guard: <a href=\"http://www.uscg.mil/\">www.uscg.org</a></ul> <h4>Organizations</h4><ul><li>Bayview Yacht Club: <a href=\"http://www.byc.org\">www.byc.org</a>  <li>Chicago Yacht Club: <a href=\"http://www.chicagoyachtclub.org\">www.chicagoyachtclub.org</a> <li>(G.P.Y.C) Gross Point Yacht Club: <a href=\"http://www.gpyc.org\">www.gpyc.org</a> \r\n<li>International Sailing Federation: <a href=\"http://www.sailing.org\">www.sailing.org</a>\r\n<li>National Boating & Fishing Foundation: <a href=\"http://www.rbff.org/\">http://www.rbff.org/</a> <li>N.M.M.A. (National Marine Manufacturers Assoc.): <a href=\"http://www.nmma.org/\">www.nmma.org</a>	<li>National Maritime Society: <a href=\"http://www.nauticus.org\">www.nauticus.org</a><li>	Offshore Racing Council: <a href=\"http://www.orc.org\">www.orc.org</a><li>Saltwater Sportsmen: <a href=\"http://www.jcaa.org\">www.jcaa.org</a></ul><h4>Publications</h4><ul>  <li>Seguridad del Canotaje: <a href=\"http://www.boatsafe.com/nauticalknowhow/safetips\">www.boatsafe.com/nauticalknowhow/safetips</a>	</li> <li>Cruising World: <a href=\"http://www.cruisingworld.com\">www.cruisingworld.com</a></li>	<li>Marine Weather Enthusiast: <a href=\"http://www.weatherzone.com\">www.weatherzone.com</a> </li>	<li>Sail Magazine: <a href=\"http://www.sailmagazine.com\">www.sailmagazine.com</a></li>	<li>Sailing: <a href=\"http://www.sailing.com\">www.sailing.com</a></li>	<li>Sailing World: <a href=\"http://www.sailingworld.com\">www.sailingworld.com</a></li>	<li>Southern Boating: <a href=\"http://www.southeboating.com\">www.southeboating.com</a></li>	<li>Yachting World: <a href=\"http://www.yachting-world.com\">www.yachting-world.com</a></li>	<li>Yachtsmans\' Guide: <a href=\"http://www.yachtsmanguide.com\">www.yachtsmansguide.com</a></li></ul>'),(4,4,2,'Enlaces MarÃ­timos','<h4>Tiempo</h4>	<ul><li>National Oceanic & Atmospheric Admin (N.O.A.A.): <a href=\"http://www.noaa.gov\">www.noaa.gov</a> <li>U.S. Naval Fleet (FNMOC): <a href=\"https://www.fnmoc.navy.mil/public/\">www.fnmoc.navy.mil/public</a>  <li>Naval Oceanography Portal: <a href=\"http://www.usno.navy.mil/\">www.usno.navy.mil/</a></ul>  <h4>Agencias del Gobiernos</h4><ul>	<li>Florida Fish & Wildlife Conservation Commission: <a href=\"http://www.myfwc.com\">www.myfwc.com</a>	<li>U.S. Coast Guard: <a href=\"http://www.uscg.mil/\">www.uscg.org</a></ul> <h4>Organizaciones</h4><ul><li>Bayview Yacht Club: <a href=\"http://www.byc.org\">www.byc.org</a>  <li>Chicago Yacht Club: <a href=\"http://www.chicagoyachtclub.org\">www.chicagoyachtclub.org</a> <li>(G.P.Y.C) Gross Point Yacht Club: <a href=\"http://www.gpyc.org\">www.gpyc.org</a> \r\n<li>International Sailing Federation: <a href=\"http://www.sailing.org\">www.sailing.org</a>\r\n<li>National Boating & Fishing Foundation: <a href=\"http://www.rbff.org/\">http://www.rbff.org/</a> <li>N.M.M.A. (National Marine Manufacturers Assoc.): <a href=\"http://www.nmma.org/\">www.nmma.org</a>	<li>National Maritime Society: <a href=\"http://www.nauticus.org\">www.nauticus.org</a><li>	Offshore Racing Council: <a href=\"http://www.orc.org\">www.orc.org</a><li>Saltwater Sportsmen: <a href=\"http://www.jcaa.org\">www.jcaa.org</a></ul>\r\n<h4>Publicaciones</h4>\r\n<ul>  <li>Seguridad del Canotaje: <a href=\"http://www.boatsafe.com/nauticalknowhow/safetips\">www.boatsafe.com/nauticalknowhow/safetips</a>	</li> <li>Cruising World: <a href=\"http://www.cruisingworld.com\">www.cruisingworld.com</a></li>	<li>Marine Weather Enthusiast: <a href=\"http://www.weatherzone.com\">www.weatherzone.com</a> </li>	<li>Sail Magazine: <a href=\"http://www.sailmagazine.com\">www.sailmagazine.com</a></li>	<li>Sailing: <a href=\"http://www.sailing.com\">www.sailing.com</a></li>	<li>Sailing World: <a href=\"http://www.sailingworld.com\">www.sailingworld.com</a></li>	<li>Southern Boating: <a href=\"http://www.southeboating.com\">www.southeboating.com</a></li>	<li>Yachting World: <a href=\"http://www.yachting-world.com\">www.yachting-world.com</a></li>	<li>Yachtsmans\' Guide: <a href=\"http://www.yachtsmanguide.com\">www.yachtsmansguide.com</a></li></ul>'),(10,8,2,'Test','<div id=\"TabbedPanels1\" class=\"TabbedPanels\"> \r\n  <ul class=\"TabbedPanelsTabGroup\"> \r\n    <li class=\"TabbedPanelsTab\" tabindex=\"0\">Tab 1</li> \r\n    <li class=\"TabbedPanelsTab\" tabindex=\"0\">Tab 2</li> \r\n  </ul> \r\n  <div class=\"TabbedPanelsContentGroup\"> \r\n    <div class=\"TabbedPanelsContent\">Content 1</div> \r\n    <div class=\"TabbedPanelsContent\">Content 2</div> \r\n  </div> \r\n</div> \r\n<script type=\"text/javascript\"> \r\n<!--\r\nvar TabbedPanels1 = new Spry.Widget.TabbedPanels(\"TabbedPanels1\");\r\n//-->\r\n</script>'),(5,6,1,'Fax Order Form',''),(6,6,2,'Fax',''),(7,7,1,'Fax Form',''),(8,7,2,'Fax Form',''),(9,8,1,'Test','<div id=\"TabbedPanels1\" class=\"TabbedPanels\">\r\n  <ul class=\"TabbedPanelsTabGroup\">\r\n    <li class=\"TabbedPanelsTab\" tabindex=\"0\">Description</li>\r\n    <li class=\"TabbedPanelsTab\" tabindex=\"0\">Features</li>\r\n    <li class=\"TabbedPanelsTab\" tabindex=\"0\">Included</li>\r\n    <li class=\"TabbedPanelsTab\" tabindex=\"0\">Survival Kit</li>\r\n    \r\n  </ul>\r\n  <div class=\"TabbedPanelsContentGroup\">\r\n    <div class=\"TabbedPanelsContent\">4-6 Man Life Raft. Lightest and smallest package on the market today, designed for private pilots and pleasure boaters. Non TSO Approved</div>\r\n    <div class=\"TabbedPanelsContent\"><li>Lightest and smallest package on the market today, designed for private pilots and pleasure boaters. </li><li>    Easy to carry, stow away, and maneuver in any emergency situation.</li><li>    Easily deployed by women, children, exhausted pilots, or boaters. </li><li>    Soft-pack valise made of practically indestructible nylon with secure nylon velcro closures.</li><li>    Constructed of heavy-duty FAA approved neoprene coated nylon fabric. </li><li>    Optional highly visible orange canopy to aid in search and rescue operations. </li><li>    Contains aluminum cylinders and valves eliminating corrosion and greatly reducing the weight. <br />\r\n\r\n    </li>\r\n\r\n  <li>High-tech CO2 automatic inflation system, inflates in 10 seconds. </li><li>    Optional survival kits are available to meet individual requirements. </li><li>    Lifetime warranty on parts and labor, built to last a lifetime with proper care. </li></div>\r\n    <div class=\"TabbedPanelsContent\"><table border=\"1\" align=\"center\" cellpadding=\"3\" cellspacing=\"0\">\r\n\r\n    <tbody>\r\n\r\n      <tr>\r\n\r\n        <td colspan=\"2\"><strong>Each Basic Life Raft includes:</strong></td>\r\n\r\n      </tr>\r\n\r\n      <tr>\r\n\r\n        <td width=\"50%\" height=\"1\">Buoyancy tube</td>\r\n\r\n        <td width=\"50%\" height=\"1\">Retaining line</td>\r\n\r\n      </tr>\r\n\r\n      <tr>\r\n\r\n        <td height=\"1\">Deck</td>\r\n\r\n        <td width=\"50%\" height=\"1\">Hand pump</td>\r\n\r\n      </tr>\r\n\r\n      <tr>\r\n\r\n        <td height=\"1\">LÃ­fe lines</td>\r\n\r\n        <td width=\"50%\" height=\"1\">Bailing bucket </td>\r\n\r\n      </tr>\r\n\r\n      <tr>\r\n\r\n        <td height=\"1\">Boarding Handles</td>\r\n\r\n        <td width=\"50%\" height=\"1\">Sea anchor</td>\r\n\r\n      </tr>\r\n\r\n      <tr>\r\n\r\n        <td height=\"1\">CO2 auto-inflation system</td>\r\n\r\n        <td width=\"50%\" height=\"1\">Valise</td>\r\n\r\n      </tr>\r\n\r\n      <tr>\r\n\r\n        <td height=\"1\" colspan=\"2\">Note:  Required Raft Compartment Size - Add 3\" to Raft Pack Dimensions.  Raft Weight +/- 2.0 lbs</td>\r\n\r\n      </tr>\r\n\r\n    </tbody>\r\n\r\n  </table></div>\r\n    <div class=\"TabbedPanelsContent\">        \r\n          The survival equipment kit comes packed in its own valise providing the ultimate in flexibility for raft and equipment combinations. Acquire your basic raft and survival equipment based on individual requirements. Survival valise is secured to the life raft valise with velcro and a tie-line. Survival kits are designed and prepared for Non TSO and FAA TSO aviation/marine use. FAR 91, FAR 121, and FAR 125/135 survival equipment kits are also available. Optional ELT/EPIRB can be packed inside survival kits.\r\n\r\n  <br />\r\n  <br />\r\n  *Note: Food/water ration quantities based on raft capacity.</div>\r\n  </div>\r\n</div>\r\n<script type=\"text/javascript\">\r\n<!--\r\nvar TabbedPanels1 = new Spry.Widget.TabbedPanels(\"TabbedPanels1\");\r\n//-->\r\n</script>'),(11,9,1,'compare survival kits','<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">\r\n<html>\r\n<head>\r\n  <title>compare-survival-kits</title>\r\n</head>\r\n<body>\r\n<br>\r\n<br>\r\n<div id=\"catDescHeading\" align=\"center\"> Compare\r\nSurvival Kits </div>\r\n<p><img src=\"images/survivalkit_01_MED.jpg\"\r\n alt=\"Aviation &amp; Marine Survival Kits TSO &amp; Non TSO\"\r\n style=\"width: 200px; height: 247px;\" align=\"left\"\r\n border=\"0\"></p>\r\n<div id=\"kitCompareFont\">The optional survival equipment\r\nkit is stowed its own valise (separate from the raft valise). Separate\r\nunits provide the ultimate in flexibility for raft and survival\r\nequipment combinations - ability to purchase basic rafts and survival\r\nequipment separately to meet unique requirements. Survival equipment\r\nkit and raft valise are attached to each other using velcro and a\r\ntie-line. <br>\r\n<br>\r\n<a href=\"javascript:history.go(-1)\"\r\n onmouseover=\"self.status=document.referrer;return true\">previous\r\npage</a><br>\r\n<br>\r\n<table border=\"1\" cellpadding=\"3\" cellspacing=\"0\"\r\n width=\"100%\">\r\n  <tbody>\r\n    <tr class=\"kitHeading\">\r\n      <td bgcolor=\"#333333\" width=\"40%\">Survival\r\nKit Contents</td>\r\n      <td bgcolor=\"#333333\" width=\"20%\">Standard/<br>\r\n91 &nbsp;Type</td>\r\n      <td bgcolor=\"#333333\" width=\"20%\">Standard <br>\r\nPlus/&nbsp;121 Type</td>\r\n      <td bgcolor=\"#333333\" width=\"20%\">Deluxe/<br>\r\n135 Type</td>\r\n    </tr>\r\n    <tr>\r\n      <td> </td>\r\n      <td> </td>\r\n      <td> </td>\r\n      <td> </td>\r\n    </tr>\r\n    <tr>\r\n      <td>canopy w/inflatable mast</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>equipment container</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>signal flag</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>3 signal flares</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>first aid kit</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>raft repair kit</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>sea dye markers</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>2-cell flashlight w/batteries</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>signal mirror</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>food rations</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>water rations</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>signal whistle</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>utility knife</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>sponge</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>survival manual</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>magnetic compass </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>75-foot retaining line</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>reverse osmosis desalinator </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>2 paddles</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>fishing kit </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>radar reflector</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<!-- end #mainContent -->\r\n</div>\r\n</body>\r\n</html>'),(12,9,2,'compare survival kits','<!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.01//EN\" \"http://www.w3.org/TR/html4/strict.dtd\">\r\n<html>\r\n<head>\r\n  <title>compare-survival-kits</title>\r\n</head>\r\n<body>\r\n<br>\r\n<br>\r\n<div id=\"catDescHeading\" align=\"center\"> Compare\r\nSurvival Kits </div>\r\n<p><img src=\"images/survivalkit_01_MED.jpg\"\r\n alt=\"Aviation &amp; Marine Survival Kits TSO &amp; Non TSO\"\r\n style=\"width: 200px; height: 247px;\" align=\"left\"\r\n border=\"0\"></p>\r\n<div id=\"kitCompareFont\">The optional survival equipment\r\nkit is stowed its own valise (separate from the raft valise). Separate\r\nunits provide the ultimate in flexibility for raft and survival\r\nequipment combinations - ability to purchase basic rafts and survival\r\nequipment separately to meet unique requirements. Survival equipment\r\nkit and raft valise are attached to each other using velcro and a\r\ntie-line. <br>\r\n<br>\r\n<a href=\"javascript:history.go(-1)\"\r\n onmouseover=\"self.status=document.referrer;return true\">previous\r\npage</a><br>\r\n<br>\r\n<table border=\"1\" cellpadding=\"3\" cellspacing=\"0\"\r\n width=\"100%\">\r\n  <tbody>\r\n    <tr class=\"kitHeading\">\r\n      <td bgcolor=\"#333333\" width=\"40%\">Survival\r\nKit Contents</td>\r\n      <td bgcolor=\"#333333\" width=\"20%\">Standard/<br>\r\n91 &nbsp;Type</td>\r\n      <td bgcolor=\"#333333\" width=\"20%\">Standard <br>\r\nPlus/&nbsp;121 Type</td>\r\n      <td bgcolor=\"#333333\" width=\"20%\">Deluxe/<br>\r\n135 Type</td>\r\n    </tr>\r\n    <tr>\r\n      <td> </td>\r\n      <td> </td>\r\n      <td> </td>\r\n      <td> </td>\r\n    </tr>\r\n    <tr>\r\n      <td>canopy w/inflatable mast</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>equipment container</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>signal flag</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>3 signal flares</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>first aid kit</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>raft repair kit</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>sea dye markers</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>2-cell flashlight w/batteries</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>signal mirror</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>food rations</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>water rations</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>signal whistle</td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>utility knife</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>sponge</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>survival manual</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>magnetic compass </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>75-foot retaining line</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>reverse osmosis desalinator </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>2 paddles</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>fishing kit </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n    <tr>\r\n      <td>radar reflector</td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"> </td>\r\n      <td id=\"kitImage\"><img src=\"images/check.png\"\r\n alt=\"yes!\" height=\"20\" width=\"21\"></td>\r\n    </tr>\r\n  </tbody>\r\n</table>\r\n<br>\r\n<br>\r\n<!-- end #mainContent -->\r\n</div>\r\n</body>\r\n</html>'),(21,14,1,'Checkout Success','<p>Thank  you for your payment. Your transaction has been completed, and a receipt for  your purchase has been emailed to you.  You may <a href=\"http://aaasurvivalproducts.com/index.php?main_page=account\">log into  your account here</a> to view details of this transaction. <br />\r\n\r\n</p>'),(22,14,2,'Checkout Success','<p>Thank  you for your payment. Your transaction has been completed, and a receipt for  your purchase has been emailed to you.  You may <a href=\"http://aaasurvivalproducts.com/index.php?main_page=account\">log into  your account here</a> to view details of this transaction. <br />\r\n\r\n</p>'),(13,10,1,'Frequently Asked Questions','<br /><br /><br /><strong>Question:</strong><br />\r\nWhat does the term \"TSO\" mean?<br /><br />\r\n<strong>Answer:</strong><br />\r\n  TSO is an FAA (Federal Aviation Administration) acronym for \"Technical Standard Order\".<br /><br />\r\n<strong>TSO</strong><br /> \r\nA Technical Standard Order (TSO) is a minimum performance standard issued by the Administrator for specified materials, parts, processes, and appliances used on civil aircraft. TSOs can be viewed by Current, Active Historical, or Canceled. Current TSOs are the approved FAA performance standard that the applicant must use to receive a TSO authorization. Active Historical TSOs are for previously approved TSO authorizations. Canceled TSOs are for reference only.<br /><br /><br />\r\n<strong>Question:</strong><br />  What is the difference between a Type I and a Type II liferaft?<br /><br />\r\n<strong>Answer:</strong><br />\r\n  4.2.1 Type I Liferaft. Buoyancy must be provided by two independent buoyancy tubes each of which, including the raft floor, must be capable of supporting the rated and overload capacities in fresh water if the other tube is deflated. The liferaft loaded to its rated capacity must have a freeboard of at least 12 inches with both buoyancy tubes at minimum operating pressure. The liferaft loaded to its rated capacity with the critical tube deflated and the remaining tube at minimum operating pressure must have a freeboard of at least 6 inches. The liferaft loaded to its overload capacity with the critical tube deflated must have a measurable freeboard.<br />\r\n  <br />\r\n  4.2.2 Type II Liferaft. When single tube construction is used to provide the buoyancy, internal bulkheads must divide the flotation tube into at least two separate chambers such that the liferaft will be capable of supporting the rated number of occupants out of fresh water in the event that one chamber is deflated. The complete liferaft loaded to its rated capacity must have a freeboard of at least 6 inches.<br /><br /><br />\r\n<strong>Question:</strong><br />\r\n  Where can I get a printable copy of TSO-C70a?<br /><br />\r\n<strong>Answer:</strong><br />\r\n<a href=\"/C70a.pdf\">TSO C70a Please Click Here</a>\r\n\r\n\r\n<br /><br /><br /><strong>Question:</strong><br />\r\nWhat does the acronym \"FAR\" mean?<br /><br />\r\n<strong>Answer:</strong><br />\r\n  The Federal Aviation Regulations, or FARs, are rules prescribed by the Federal Aviation Administration (FAA) governing all aviation activities in the United States.<br /><br />'),(14,10,2,'Frequently Asked Questions','Question:\r\nWhat does the term \"TSO\" mean?\r\n\r\nAnswer:\r\nTSO is an FAA (Federal Aviation Administration) acronym for \"Technical Standard Order\".\r\n\r\nQuestion:\r\nWhat is the difference between a Type I and a Type II life raft?\r\n\r\nAnswer: \r\n4.2.1 Type I Liferaft. Buoyancy must be provided by two independent buoyancy tubes each of which, including the raft floor, must be capable of supporting the rated and overload capacities in fresh water if the other tube is deflated. The liferaft loaded to its rated capacity must have a freeboard of at least 12 inches with both buoyancy tubes at minimum operating pressure. The liferaft loaded to its rated capacity with the critical tube deflated and the remaining tube at minimum operating pressure must have a freeboard of at least 6 inches. The liferaft loaded to its overload capacity with the critical tube deflated must have a measurable freeboard.\r\n   \r\n4.2.2 Type II Liferaft. When single tube construction is used to provide the buoyancy, internal bulkheads must divide the flotation tube into at least two separate chambers such that the liferaft will be capable of supporting the rated number of occupants out of fresh water in the event that one chamber is deflated. The complete liferaft loaded to its rated capacity must have a freeboard of at least 6 inches.\r\n\r\nQuestion:\r\nWhere can I get a copy of TSO-C70a?\r\n\r\nAnswer: \r\n<a href=\"http://www.aaasurvivalproducts.com/includes/templates/aaas/uploads/C70a.pdf\">TSO C70a Please Click Here</a>'),(15,11,1,'FAA Regulations','<div class=WordSection1>\r\n\r\n\r\n\r\nDepartment of Transportation <br />\r\nFederal Aviation Administration <br />\r\nAircraft Certification Service<br />\r\nWashington, DC<br /><br />\r\n\r\n\r\n4/13/84<br /><br />\r\n\r\n\r\n\r\n<p class=MsoNormal><b>Subject:</b>Â TSO-C70a, LIFERAFTS (REVERSIBLE AND\r\n\r\nNONREVERSIBLE)</p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Â </p>\r\n\r\n\r\n\r\n<p class=MsoNormal><b>Technical Standard Order </b></p>\r\n\r\n\r\n\r\n<p class=MsoNormal>a. <u>Applicability</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(1) <u>Minimum Performance Standards</u>. This Technical\r\n\r\nStandard Order (TSO) prescribes the minimum performance standards that\r\n\r\nliferafts combinations must meet to be identified with the applicable TSO\r\n\r\nmarking. This TSO has been prepared in accordance with the procedural rules set\r\n\r\nforth in Subpart O of the Federal Aviation Regulations Part 21. New models of\r\n\r\nliferafts that are to be so identified and that are manufactured on or after\r\n\r\nthe effective date of this TSO must meet the standards set forth in Appendix 1,\r\n\r\nâ€œFederal Aviation Administration Standard for Liferaftsâ€ of this TSO. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(2) <u>Environmental Standard</u>. None. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(3) <u>Test Methods</u>. This TSO references Federal Test\r\n\r\nMethod Standard No. 191A dated 7/20/78. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>b. <u>Marking</u>. In addition to the marking required in\r\n\r\nFederal Aviation Regulations (FAR) Â§ 21.607(d) (14 CFR 21.607), the part\r\n\r\nnumber, serial number and date of manufacture, weight and rated and overload\r\n\r\ncapacities of the liferaft must be shown also. The weight of the liferaft\r\n\r\nincludes any accessories required in this TSO. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>c. <u>Data Requirements</u>. In accordance with FAR Â§\r\n\r\n21.605, (14 CFR 21.605), each manufacturer shall furnish the Manager, Aircraft\r\n\r\nCertification Office (ACO), Federal Aviation Administration, having\r\n\r\ngeographical purview of the manufacturerâ€™s facilities, one copy each of the\r\n\r\nfollowing technical data: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(1) Operating instructions. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(2) Packing instructions. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(3) A complete description of the device, including detailed\r\n\r\ndrawings, materials identification and specifications, and installation\r\n\r\nprocedures. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>DISTRIBUTION: ZVS-326; A-W(WS)-3; A-X(FS)-3; A-X(CD)-4; A-FFS-1,2,7,8(LTD);\r\n\r\nA-FAC-0(MAX); AVN-1(2 cys) TSO-C70a 4/13/84 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(4) Manufacturerâ€™s TSO qualification test report. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(5) Applicable installation limitations, including stowage\r\n\r\narea temperatures. The manufacturer shall also provide the purchaser with such\r\n\r\nlimitations. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(6) Maintenance instructions, including instructions\r\n\r\nregarding inspection, repair, and stowage of materials. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(7) The functional test specification to be used to test\r\n\r\neach production article to ensure compliance with this TSO. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>d. <u>Availability of Referenced Documents</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(1) Appendix 1, â€œFederal Aviation Administration Standards\r\n\r\nfor Liferafts,â€ of this TSO specifies certain test methods that are contained\r\n\r\nin Federal Test Method Standard No. 191A unless otherwise noted. Federal Test\r\n\r\nMethod Standard No. 191A may be examined at the FAA Headquarters in the Office\r\n\r\nof Airworthiness, Aircraft Engineering Division (AWS-110), and at all Aircraft\r\n\r\nCertification Offices, and may be obtained (or purchased) from the General\r\n\r\nServices Administration, Business Service Center, Region 3, 7th and D Streets,\r\n\r\nS.W., Washington, D.C. 20407. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(2) Federal Aviation Regulations Part 21, Subpart O and\r\n\r\nAdvisory Circular 20-110, Index of Aviation Technical Standard Orders may be\r\n\r\nreviewed at the FAA Headquarters in the Office of Airworthiness, Aircraft\r\n\r\nEngineering Division (AWS-110), and at all regional Aircraft Certification\r\n\r\nOffices. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>/S/ J. A. Pontecorvo </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Acting Director of Airworthiness </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 2 4/13/84 TSO-C70a Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>APPENDIX 1. FEDERAL AVIATION ADMINISTRATION STANDARD FOR LIFERAFTS\r\n\r\n</p>\r\n\r\n\r\n\r\n<p class=MsoNormal>1. <u>Purpose</u>. This standard provides the minimum\r\n\r\nperformance standards for liferafts. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>2. <u>Scope</u>. This standard covers the following types of\r\n\r\nliferafts: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>TYPE I - For use in any category aircraft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>TYPE II - For use in nontransport category aircraft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3. <u>Material and Workmanship</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1 <u>Nonmetallic Materials</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.1 The finished device must be clean and free from any\r\n\r\ndefects that might affect its function. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.2 Coated fabrics and other items, such as webbing,\r\n\r\nsubject to deterioration must have been manufactured not more than 18 months\r\n\r\nprior to the date of delivery of the finished product. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.3 The materials must not support fungus growth. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.4 <u>Coated fabrics - General. </u>Coated fabrics,\r\n\r\nincluding seams, subject to deterioration used in the manufacture of the\r\n\r\ndevices must possess at least 90 percent of their original physical properties\r\n\r\nafter these fabrics have been subjected to the accelerated ageing test\r\n\r\nspecified in paragraph 6.1 of this standard. Material used in the construction\r\n\r\nof flotation chambers and decks must be capable of withstanding the detrimental\r\n\r\neffects of exposure to fuels, oils and hydraulic fluids. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.4.1 <u>Strength</u>. Coated fabrics used for these\r\n\r\napplications must conform to the following minimum strengths after ageing: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tensile Strength (Grab Test) </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Warp 190 pounds/inch </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Fill 190 pounds/inch </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tear Strength </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Trapezoid Test: 13 X 13 pounds/inch (minimum); or </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tongue Test: 13 X 13 pounds/inch (minimum) </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.4.2 <u>Adhesion</u>. In addition to the requirements of\r\n\r\n3.1.4.1, coated fabrics must meet the following minimum strengths after ageing:\r\n\r\n</p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 1 TSO-C70a 4/13/84 Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Ply Adhesion - </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5 pounds/inch width at 70 Â± 2 degrees F at a pull of 2.0 to\r\n\r\n2.5 inches/minute </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Coat Adhesion - </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5 pounds/inch width at 70 Â± 2 degrees F at 2.0 to 2.5\r\n\r\ninches/minute </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.4.3 <u>Permeability</u>. For coated fabrics used in the\r\n\r\nmanufacture of inflation chambers, the maximum permeability to helium\r\n\r\n(Permeability Test Method) may not exceed 10 liters per square meter in 24\r\n\r\nhours at 77 degrees F, or its equivalent using hydrogen. The permeameter must\r\n\r\nbe calibrated for the gas used. In lieu of this permeability test, an alternate\r\n\r\ntest may be used provided the alternate test has been approved as an equivalent\r\n\r\nto this permeability test by the manager of the FAA office to which this TSO\r\n\r\ndata is to be submitted, as required in Paragraph c., Data Requirements. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.5 <u>Seam Strength and Adhesives</u>. Cemented or heat\r\n\r\nsealable seams used in the manufacture of the device must meet the following\r\n\r\nminimum strength requirements: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Shear Strength (Seam Shear Test Method) - 175 pounds/inch\r\n\r\nwidth at 75 degrees F; </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>40 pounds/inch width at 140 degrees F </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Peel Strength (Peel Test Method) - </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5 pounds/inch width at 70 degrees F </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.6 <u>Seam Tape</u>. If tape is used for seam\r\n\r\nreinforcement or abrasion protection of seams or both, the tape must have\r\n\r\nminimum breaking strength (Grab Test Method) of 40 pounds/inch width in both\r\n\r\nthe warp and fill directions. When applied to the seam area, the adhesion\r\n\r\nstrength characteristics must meet the seam strength requirements in paragraph\r\n\r\n3.1.5. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.7 <u>Canopy</u>. Fabrics used for this purpose must be\r\n\r\nwaterproof and resistant to sun penetration, and must not affect the potability\r\n\r\nof collected water, and must meet the following minimum requirements in the\r\n\r\napplicable tests prescribed in paragraph 6.1 of this standard, except that in\r\n\r\nlieu of meeting the tensile strength requirements, a fabricated canopy may be\r\n\r\ndemonstrated to withstand 35-knot winds and 52-knot gusts: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tensile Strength (Grab Test) </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Warp 75 pounds/inch </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Fill 75 pounds/inch </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tear Strength </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Trapezoid Test: 4 x 4 pounds/inch; or </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tongue Test: 4 x 4 pounds/inch </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Coat Adhesion of Coated Fabrics </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.5 pounds/inch width at 70 Â± 2 degrees F at a separation rate\r\n\r\nof 2.0 to 2.5 inches/minute </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 2 4/13/84 TSO-C70a Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.8 <u>Flammability</u>. The device (including carrying\r\n\r\ncase or stowage container) must be constructed of materials which meet FAR Â§\r\n\r\n25.853 (14 CFR 25.853) in effect on May 1, 1972, as follows: Type I rafts must\r\n\r\nmeet Â§ 25.853 (b) and Type II rafts must meet Â§ 25.853 (b-3). </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.2 <u>Metallic Parts</u>. All metallic parts must be made\r\n\r\nof corrosion-resistant material or must be suitably protected against\r\n\r\ncorrosion. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.3 <u>Protection</u>. All inflation chambers and load\r\n\r\ncarrying fabrics must be protected in such a manner that nonfabric parts do not\r\n\r\ncause chafing or abrasion of the material in either the packed or the inflated\r\n\r\ncondition. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4. <u>Design and Construction</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1 <u>Capacity</u>. The rated and overload capacities of a\r\n\r\nlife raft must be based on not less than the following usable sitting areas on\r\n\r\nthe deck of the life raft: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Rated Capacity 3.6 feet<sup>2</sup>/person </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Overload Capacity 2.4 feet<sup>2</sup>/person </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1 <u>Capacity, Alternate Rating Methods</u>. In lieu of\r\n\r\nthe rated capacity as determined by paragraph 4.1 of this standard, one of the\r\n\r\nfollowing methods may be used: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.1 The rated capacity of a Type I or Type II liferaft\r\n\r\nmay be determined by the number of occupant seating spaces which can be\r\n\r\naccommodated within the occupiable area exclusive of the perimeter structure\r\n\r\n(such as buoyancy tubes) without overlapping of the occupant seating spaces and\r\n\r\nwith the occupant seating spaces located to provide each occupant with a back\r\n\r\nsupport of not less than 8 inches high. The occupant seating spaces may not be\r\n\r\nless than the following size: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>39.4 inches </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>BACK SUPPORT </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>ALONG </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>THIS 14.7 inches 7.2 inches </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>SIDE. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2 The rated capacity of a Type I or Type II liferaft\r\n\r\nmay be determined on the basis of a controlled pool or fresh water\r\n\r\ndemonstration which includes conditions prescribed under paragraph 6.2.3 of\r\n\r\nthis standard and the following: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2.1 The sitting area on the liferaft deck may not be\r\n\r\nless than 3 square feet per person. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2.2 The liferaft must have a back support for each\r\n\r\noccupant of not less than 14.7 inches wide and 8 inches high. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 3 TSO-C70a 4/13/84 Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2.3 At least 30 percent but no more than 50 percent of\r\n\r\nthe participants must be female. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2.4 Except as provided below, all participants must\r\n\r\nselect their sitting space without outside placement assistance. Instructions,\r\n\r\neither identified on the raft or announced prior to the demonstration, may be\r\n\r\nused informing that each participant should have a back support. A raft\r\n\r\ncommander, acting in the capacity of a crewmember, may direct occupant seating\r\n\r\nto the extent necessary to achieve reasonable weight distribution within the\r\n\r\nraft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2.5 All participants must not have practiced,\r\n\r\nrehearsed, or have had the demonstration procedures described to them within\r\n\r\nthe past 6 months. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.2 <u>Buoyancy</u>. An average occupant weight of not less\r\n\r\nthan 170 pounds must be used in all applicable calculations and tests specified\r\n\r\nherein. In tests, ballast in the form of sand bags or equivalent may be used to\r\n\r\nachieve the 170 pound average, provided the appropriate weight distribution\r\n\r\nwithin the raft is maintained. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.2.1 <u>Type I Liferaft</u>. Buoyancy must be provided by\r\n\r\ntwo independent buoyancy tubes each of which, including the raft floor, must be\r\n\r\ncapable of supporting the rated and overload capacities in fresh water if the\r\n\r\nother tube is deflated. The liferaft loaded to its rated capacity must have a\r\n\r\nfreeboard of at least 12 inches with both buoyancy tubes at minimum operating\r\n\r\npressure. The liferaft loaded to its rated capacity with the critical tube\r\n\r\ndeflated and the remaining tube at minimum operating pressure must have a\r\n\r\nfreeboard of at least 6 inches. The liferaft loaded to its overload capacity\r\n\r\nwith the critical tube deflated must have a measurable freeboard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.2.2 <u>Type II Liferaft</u>. When single tube construction\r\n\r\nis used to provide the buoyancy, internal bulkheads must divide the flotation\r\n\r\ntube into at least two separate chambers such that the liferaft will be capable\r\n\r\nof supporting the rated number of occupants out of fresh water in the event\r\n\r\nthat one chamber is deflated. The complete liferaft loaded to its rated\r\n\r\ncapacity must have a freeboard of at least 6 inches. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.3 <u>Inflation</u>. The inflation system must be arranged\r\n\r\nso that failure of one inflatable chamber or manifold will not result in loss\r\n\r\nof gas from the other chambers. The inflation equipment must be located so as\r\n\r\nnot to interfere with boarding operation. Components of the inflation system\r\n\r\nmust meet Department of Transportation Specification 3AA (49 CFR 178.37) or\r\n\r\nSpecification 3HT (49 CFR 178.44) in effect May 30, 1976, as applicable, or an\r\n\r\nequivalent approved by the manager of the FAA office to which this TSO data is\r\n\r\nto be submitted, as required in paragraph c., Data Requirements. The inflation\r\n\r\nsystem must be constructed to minimize leakage due to back pressure after\r\n\r\ninflation. If an air aspirator system is used, the system must be constructed\r\n\r\neither to prevent the ingestion of foreign objects or to prevent failure or\r\n\r\nmalfunction as a result of ingestion of small foreign objects. For Type I\r\n\r\nliferafts, there must be an independent inflation source for each primary\r\n\r\nflotation tube, except that there may be a single inflation source for all\r\n\r\nflotation tubes if data substantiating the reliability of the single </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 4 4/13/84 TSO-C70a Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>inflation source is approved by the manager of the FAA\r\n\r\noffice to which this TSO data is to be submitted, as required in Paragraph c.,\r\n\r\nData Requirements. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.4 <u>Liferaft Canopy</u>. A canopy must be packed with or\r\n\r\nattached to the raft. The erected canopy must be capable of withstanding\r\n\r\n35-knot winds and 52-knot gusts in open water. The canopy must provide adequate\r\n\r\nheadroom and must have provision for openings 180 degrees apart. Means must be\r\n\r\nprovided to make the openings weathertight. If the canopy is not integral with\r\n\r\nthe raft, it must be capable of being erected by occupants following\r\n\r\nconspicuously posted, simple instructions. It must be capable of being erected\r\n\r\nby one occupant of an otherwise empty raft and by occupants of a raft filled to\r\n\r\nrated capacity. For a reversible raft, attachment provisions must be installed\r\n\r\nto permit the canopy to be installed on either side of the raft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.5 <u>Capsize Resistance</u>. There must be water pockets\r\n\r\nor other means to provide capsize resistance for an empty or lightly loaded\r\n\r\nraft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.6 <u>Boarding Aids</u>. For Type I liferafts, boarding\r\n\r\naids must be provided at two opposing positions on the raft. One boarding aid\r\n\r\nis sufficient for a Type II liferaft. Boarding aids must permit unassisted\r\n\r\nentry from the water into the unoccupied raft and must not at any time impair\r\n\r\neither the rigidity or the inflation characteristics of the raft. Puncturing of\r\n\r\ninflatable boarding aids must not affect the buoyancy of the raft buoyancy\r\n\r\nchambers. Boarding handles and/or stirrups used in conjunction with the\r\n\r\nboarding aids must withstand a pull of 500 pounds. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.7 <u>Righting Aids</u>. Means must be provided to right a\r\n\r\nnonreversible liferaft if it inflates in an inverted position. The means\r\n\r\nprovided for righting must be such that they may be used by one person in the\r\n\r\nwater. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.8 <u>Lifeline</u>. A nonrotting lifeline of contrasting\r\n\r\ncolor and at least 3/8-inch diameter or 3/4-inch width must encircle the\r\n\r\nliferaft on the outside periphery so that it can be easily grasped by persons\r\n\r\nin the water. The lifeline and its attachments must be capable of withstanding\r\n\r\na minimum load of 500 pounds and must not interfere with the liferaft\r\n\r\ninflation. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.9 <u>Grasp Line</u>. A grasp line, meeting the size and\r\n\r\nstrength requirements for the lifeline, must be provided with sufficient slack\r\n\r\nfor use by liferaft occupants to steady themselves when seated on the liferaft\r\n\r\ndeck with their backs to the main flotation tube(s). </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.10 <u>Color</u>. The color of the liferaftâ€™s surfaces,\r\n\r\nincluding the canopy surface, visible from the air must be an International\r\n\r\nOrange-Yellow or an equivalent high visibility color. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.11 <u>Placards</u>. Suitable placarding must be provided\r\n\r\nin contrasting colors in waterproof paint which is not detrimental to the\r\n\r\nfabric, that denotes use and location of the inflation systems, raft equipment,\r\n\r\nboarding aids, and righting aids. For reversible rafts, placement of the\r\n\r\nplacarding must take into account usage of either side of the raft. The letters\r\n\r\nused for such placarding must be at least 2 inches high except that details and\r\n\r\nmiscellaneous instructions may be of smaller lettering. Applicable placarding\r\n\r\nmust take into account persons boarding or righting the raft form the water. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 5 TSO-C70a 4/13/84 Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.12 <u>Lights</u>. One or more survivor locator lights must\r\n\r\nbe provided that are approved under TSO-C85. The lights must be automatically\r\n\r\nactivated upon raft inflation in the water, and visible from any direction by\r\n\r\npersons in the water. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4. 13 <u>Raft Sea Performance</u>. The raft must meet the\r\n\r\nseaworthiness requirements in 6.2.3.2 and must be capable with its equipment of\r\n\r\nwithstanding a saltwater marine environment for a period of at least 15 days. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5. <u>Liferaft Equipment</u>. All lines must be suitably stowed\r\n\r\nand secured to prevent entanglement during launching/inflation of a liferaft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.1 <u>Mooring Line</u>. A nonrotting mooring line at least\r\n\r\n20 feet in length must be attached at one end to the raft, with the remainder\r\n\r\nof the line held flaked to the carrying case (See 5.2). The mooring line must\r\n\r\nbe capable of keeping the raft, loaded to maximum rated capacity, attached to a\r\n\r\nfloating aircraft, and not endanger the raft or cause the raft to spill\r\n\r\noccupants if the aircraft sinks. The line may be equipped with a mechanical\r\n\r\nrelease linkage. The breaking strength of the line must be at least 500 pounds,\r\n\r\nor 40 times the rated capacity of the raft, whichever is greater, but need not\r\n\r\nexceed 1,000 pounds. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.2 <u>Liferaft Launching Equipment</u>. A parachute ripcord\r\n\r\ngrip and retaining pocket must form the primary inflation control. The ripcord\r\n\r\ngrip or the attached static mooring line must be provided with means for\r\n\r\nattachment to the aircraft. If the ripcord grip is designed to attach to the\r\n\r\naircraft, its strength may not be less than that of the static mooring line.\r\n\r\nThe position of the ripcord grip must be standardized. When facing the release\r\n\r\nend of the carrying case, the center line of the ripcord grip retaining pocket\r\n\r\nmust lie at 45 degrees in the right upper quadrant of the end section. The\r\n\r\noutermost extremity of the ripcord grip may not extend beyond the outer margin\r\n\r\nof the carrying case. The line attached to the ripcord grip must serve both to\r\n\r\nretain the liferaft and to actuate the gas release(s). The tension required to withdraw\r\n\r\nthe static mooring line and to actuate the gas release mechanism(s) must be\r\n\r\nbetween 20 and 30 pounds. The strength of the gas release mechanism(s), its\r\n\r\nfittings, and its attachments may not be less than 100 pounds. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.3 <u>Sea Anchor</u>. A sea anchor, or anchors, or other\r\n\r\nequivalent means must be provided to maintain the raft, with rated capacity and\r\n\r\ncanopy installed, on a substantially constant heading relative to the wind and\r\n\r\nhave the ability to reduce the drift to 2 knots in 17 to 27-knot winds. Unless analysis\r\n\r\nand/or test data substantiating the adequacy of a lower breaking strength is\r\n\r\napproved by the manager of the FAA office to which this TSO data is to be\r\n\r\nsubmitted as required in paragraph c., Data Requirements, the line securing a\r\n\r\nsea anchor to the raft must have a breaking strength of 500 pounds or 40 pounds\r\n\r\ntime the rated capacity of the raft, whichever is greater. The attachment of\r\n\r\nthe line to the raft must be capable of withstanding a load of 1.5 times the\r\n\r\nline-rated strength without damaging the raft. The line must be at least 25\r\n\r\nfeet in length and must be protected to prevent it from being cut inadvertently\r\n\r\nby raft occupants. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.4 <u>Heaving-Trailing Line</u>. At least one floating\r\n\r\nheaving-trailing line not less than 75 feet in length for Type I rafts and not\r\n\r\nless than 35 feet in length for Type II rafts, and at least 250 pounds\r\n\r\nstrength, must be located on the main flotation tube near the sea anchor\r\n\r\nattachment. The </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 6 4/13/84 TSO-C70a Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>attach point of the line must withstand a pull of not less\r\n\r\nthan 1.5 times the line rated strength without damage to the raft. A\r\n\r\nheaving-trailing line must be accessible in any inflated position of a\r\n\r\nreversible liferaft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.5 <u>Emergency Inflation</u>. Means readily accessible to\r\n\r\noccupants of the raft, and having a displacement of at least 32 cubic inches\r\n\r\nper full stroke, must be provided to manually inflate and maintain chambers at\r\n\r\nminimum operating pressure. Manual inflation valves, with a nonreturn opening\r\n\r\nadequate for the size and capacity of the inflation means, must be located to\r\n\r\npermit inflation of all chambers. The location must take into consideration\r\n\r\noccupancy of each side of reversible raft. The inflation means and valves must\r\n\r\nhave provisions to prevent inadvertent removal and loss when either stowed or in\r\n\r\nuse. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.6 <u>Accessory Case Tiedowns</u>. Provisions must be made\r\n\r\nfor tiedowns to hold any accessory case. Each accessory case tiedown must\r\n\r\nwithstand a pull of 250 pounds. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.7 <u>Carrying Case</u>. A carrying case which meets the\r\n\r\nflammability requirement of this standard and which properly fits the packed\r\n\r\nliferaft must be provided. Carrying case materials must be of a highly visible\r\n\r\ncolor, be fungus proof, and be resistant to aircraft fuels and other fluids.\r\n\r\nThe carrying case must provide chafe protection to the liferaft. The carrying\r\n\r\ncase must be provided with easily distinguishable handles so that it may be\r\n\r\ncarried by one person, carried by two persons in tandem, or dragged by either\r\n\r\nend; none of these carrying operations must tend to pull the carrying case\r\n\r\nopen. Each handle must be easily grasped and its strength must be at least four\r\n\r\ntime the total weight of the liferaft and case. Conventional zippers may not be\r\n\r\nemployed for closure. Location of and instructions for use of the inflation\r\n\r\nhandle must be clearly identified and marked on the carrying case surface. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.8 <u>Knife</u>. A hook type knife secured by a retaining\r\n\r\nline must be sheathed and attached to the raft adjacent to the point of mooring\r\n\r\nline attachment. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6 <u>Tests</u>. </p>\r\n\r\n\r\n\r\n<table class=MsoNormalTable border=1 cellspacing=0 cellpadding=0\r\n\r\n style=\'border-collapse:collapse;border:none\'>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=601 colspan=4 valign=top style=\'width:450.9pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>6.1 <u>Material Tests</u>. The material tests required in\r\n\r\n  paragraph 3.0 of this standard must be determined in accordance with the\r\n\r\n  following test method or other approved equivalent methods: <u>Test Method </u></p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:14.85pt\'>\r\n\r\n  <td width=200 valign=top style=\'width:150.3pt;border:none;padding:0in 5.4pt 0in 5.4pt;\r\n\r\n  height:14.85pt\'>\r\n\r\n  <p class=MsoNormal><u>Tests Required</u></p>\r\n\r\n  </td>\r\n\r\n  <td width=200 colspan=2 valign=top style=\'width:150.3pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:14.85pt\'>\r\n\r\n  <p class=MsoNormal>Federal Test Method Standard No. l91A <u>dated July 20,\r\n\r\n  1978 </u></p>\r\n\r\n  </td>\r\n\r\n  <td width=200 valign=top style=\'width:150.3pt;border:none;padding:0in 5.4pt 0in 5.4pt;\r\n\r\n  height:14.85pt\'>\r\n\r\n  <p class=MsoNormal><u>Notes </u></p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=200 valign=top style=\'width:150.3pt;border:none;padding:0in 5.4pt 0in 5.4pt;\r\n\r\n  height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Accelerated Age </p>\r\n\r\n  </td>\r\n\r\n  <td width=200 colspan=2 valign=top style=\'width:150.3pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5850 </p>\r\n\r\n  </td>\r\n\r\n  <td width=200 valign=top style=\'width:150.3pt;border:none;padding:0in 5.4pt 0in 5.4pt;\r\n\r\n  height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Per Note (1) </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Tensile Strength (Grab Test) </p>\r\n\r\n  </td>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5100 </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Tear Strength(Trapezoid Test) </p>\r\n\r\n  </td>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5136 (4) </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:14.85pt\'>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:14.85pt\'>\r\n\r\n  <p class=MsoNormal>Tear Strength (Tongue Test) </p>\r\n\r\n  </td>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:14.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5134 </p>\r\n\r\n  <p class=MsoNormal>(Alternate to Trapezoid Test See 3.1.4.1) </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Ply Adhesion </p>\r\n\r\n  </td>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5960 </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Coat Adhesion </p>\r\n\r\n  </td>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5970 </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr height=0>\r\n\r\n  <td width=200 style=\'border:none\'></td>\r\n\r\n  <td width=100 style=\'border:none\'></td>\r\n\r\n  <td width=100 style=\'border:none\'></td>\r\n\r\n  <td width=200 style=\'border:none\'></td>\r\n\r\n </tr>\r\n\r\n</table>\r\n\r\n\r\n\r\n<p class=MsoNormal><u><span style=\'text-decoration:none\'>Â </span></u></p>\r\n\r\n\r\n\r\n<p class=MsoNormal><u>NOTES</u>: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(1) Samples for the accelerated aging tests must be exposed\r\n\r\nto a temperature of 158 Â± 5 degrees Fahrenheit for not less than 168 hours.\r\n\r\nAfter exposure, the samples must be allowed to cool to 70 Â± 2 degrees\r\n\r\nFahrenheit for neither less than 16 hours nor more than 96 hours before\r\n\r\ndetermining their physical properties in accordance with 3.1 of this standard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(2) Each sample shall consist of two strips 2 inches maximum\r\n\r\nwidth by 5 inches maximum length bonded together with an overlap 3/4 inches\r\n\r\nmaximum. The free ends must be placed in the testing machine described in\r\n\r\nMethod 5100 and separated at a rate of 12 Â± 0.5 inches per minute. The average\r\n\r\nvalue of two samples must be reported. Samples may be multilayered as required\r\n\r\nto provide adequate strength to ensure against premature material failure. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(3) Separation rate must be 2.0 to 2.5 inches per minute. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(4) Federal Test Method Standard No. 191 in effect December\r\n\r\n31, 1968. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2 <u>Liferaft Tests</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.1 <u>Pressure Retention</u>. Under static conditions and\r\n\r\nwhen inflated and stabilized at the nominal operating pressure, the pressure in\r\n\r\neach inflatable chamber must not fall below the minimum operating pressure in\r\n\r\nless than 24 hours. The minimum operating pressure is the pressure required to\r\n\r\nmeet the minimum design buoyancy requirements of paragraph 4.2 of this\r\n\r\nstandard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.2 <u>Overpressure Tests</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.2.1 The device must be shown by test to withstand a\r\n\r\npressure at least 1.5 times the maximum operating pressure for at least 5\r\n\r\nminutes without sustaining damage. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.2.2 At least one specimen of the inflatable device model\r\n\r\nmust be shown by test to withstand a pressure at least 2 times the maximum\r\n\r\noperating pressure without failure. Devices so tested must be clearly\r\n\r\nidentified. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Â </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3 <u>Functional Tests</u>. Each liferaft model must pass\r\n\r\nthe following tests: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 8 4/13/84 TSO-C70a Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1 <u>Water Tests</u>. In either a controlled pool or\r\n\r\nfresh water, the liferaft capacity and buoyancy must be demonstrated as\r\n\r\nfollows: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.1 Both rated and overload capacities established in\r\n\r\naccordance with the requirements of paragraph 4.1 of this standard must be\r\n\r\ndemonstrated with inflation tubes at minimum operating pressure and with the\r\n\r\ncritical buoyancy chamber deflated. The resultant freeboard in each case must\r\n\r\nmeet the requirements of paragraph 4.2 of this standard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.2 Persons used in the demonstration must have an\r\n\r\naverage weight of not less than 170 pounds. Ballast in the form of sand bags or\r\n\r\nequivalent may be used to achieve proper loading provided the appropriate\r\n\r\nweight distribution within the raft is maintained. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.3 Persons used in the demonstration must wear life\r\n\r\npreservers with at least one chamber inflated. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.4 The required liferaft equipment, including one\r\n\r\nemergency locator transmitter or a weight simulating a transmitter, must be\r\n\r\naboard the liferaft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.5 It must be demonstrated that the raft is\r\n\r\nself-righting, or can be righted by one person in water, or while inverted can\r\n\r\nbe boarded and provide flotation for the normal rated capacity. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.6 It must be demonstrated that the boarding aids are\r\n\r\nadequate for the purpose intended and that it is possible for an adult wearing\r\n\r\nan inflated life preserver to board the raft unassisted. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.2 <u>Sea Trials</u>. The liferaft must be demonstrated\r\n\r\nby tests or analysis, or a combination of both, to be seaworthy in an open sea\r\n\r\ncondition of 17 to 27-knot winds and waves of 6 to 10 feet. In tests, ballast\r\n\r\nin the form of sand bags or equivalent may be used to achieve proper loading\r\n\r\nprovided the appropriate weight distribution within the raft is maintained. If\r\n\r\nanalysis is used, the analysis must be approved by the manager of the FAA\r\n\r\noffice to which the TSO data is to be submitted as required in paragraph c.,\r\n\r\nData Requirements. For this seaworthiness demonstration, the following apply: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.2.1 The liferaft must be deployed to simulate\r\n\r\ndeployment from an aircraft under the most adverse wind direction and wave\r\n\r\ncondition. If the liferaft is an aspirated inflated type, it must be\r\n\r\ndemonstrated that water ingested during inflation will not cause the raft to\r\n\r\nfail to meet the requirement for buoyancy under rated capacity in 4.2. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.2.2 All required equipment must be aboard and the\r\n\r\nproper functioning of each item of equipment must be demonstrated. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.2.3 The canopy must be erected for a sufficient time\r\n\r\nto assess its resistance to tearing and the protection it affords. The method\r\n\r\nof erection must be </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 9 TSO-C70a 4/13/84 Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>shown to be accomplished by one occupant of an otherwise\r\n\r\nempty raft, and by occupants of a raft filled to rated capacity. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.2.4 The stability of the raft must be demonstrated when\r\n\r\noccupied at normal rated capacity and at 50 percent rated capacity. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.3 <u>Liferaft Drop Test</u>. A complete liferaft\r\n\r\npackage must be dropped or thrown from a height of 5 feet onto a hard surface\r\n\r\nfloor after which it must be inflated and meet the pressure retention\r\n\r\nrequirements of paragraph 6.2.1 of this standard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.4 <u>Portability Test</u>. If the liferaft is to be\r\n\r\nmanually deployed, it must be demonstrated that the complete liferaft package\r\n\r\ncan be moved from a typical stowage installation by no more that two persons\r\n\r\nand then deployed at another suitable exit. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.5 <u>Carrying Case</u>. It must be demonstrated at\r\n\r\nleast 10 times that the carrying case will open satisfactorily and cause no\r\n\r\ndelay in the deployment and inflation of the liferaft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.6 <u>Gas Cylinder Releases</u>. It must be\r\n\r\ndemonstrated that pulling the ripcord grip from any position will actuate the\r\n\r\nprimary gas release(s). </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.5 <u>Temperature Exposure and Inflation</u>. The\r\n\r\nmanufacturer shall determine the minimum temperature at which the complete\r\n\r\nliferaft assembly with its inflation bottles, will be â€œrounded outâ€ (i.e.,\r\n\r\nattain its design shape and approximate dimension) so that the liferaft will be\r\n\r\nable to receive and to support the first occupant within one minute after the\r\n\r\nstart of inflation. Thereafter, the rate of inflation must progress in such a\r\n\r\nmanner and rate as to ensure a serviceable and rigid liferaft for boarding by\r\n\r\nthe remainder of the occupants. Similarly, a maximum environmental temperature\r\n\r\nto which the liferaft assembly may be exposed and still remain in a seaworthy\r\n\r\ncondition upon inflation must be determined. The temperature limitations must\r\n\r\nbe submitted to the FAA and liferaft purchaser in accordance with the data\r\n\r\nrequirements of this TSO. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.5.1 <u>Test Procedure</u>. The packed liferaft assembly\r\n\r\nwith its inflation bottles installed must be exposed to each of the above\r\n\r\ntemperatures for not less than 24 hours and must be inflated within 5 minutes\r\n\r\nafter removal from such temperatures. The liferaft must be allowed to return to\r\n\r\na temperature of approximately 70 Â± 5 degrees Fahrenheit before being deflated,\r\n\r\nrepacked, and subjected to a second exposure. After the above tests have been\r\n\r\ncompleted, the liferaft must be able to pass tests required by paragraphs 6.2.1\r\n\r\nand 6.2.2 of this standard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 10</p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Â </p>\r\n\r\n\r\n\r\n</div>'),(16,11,2,'FAA Regulations','<div class=WordSection1>\r\n\r\n\r\n\r\n<p class=MsoNormal style=\'margin-bottom:0in;margin-bottom:.0001pt\'>Department\r\n\r\nof Transportation </p>\r\n\r\n\r\n\r\n<p class=MsoNormal style=\'margin-bottom:0in;margin-bottom:.0001pt\'><b>Federal\r\n\r\nAviation Administration </b></p>\r\n\r\n\r\n\r\n<p class=MsoNormal style=\'margin-bottom:0in;margin-bottom:.0001pt\'>Aircraft\r\n\r\nCertification Service </p>\r\n\r\n\r\n\r\n<p class=MsoNormal style=\'margin-bottom:0in;margin-bottom:.0001pt\'>Washington,\r\n\r\nDC </p>\r\n\r\n\r\n\r\n<p class=MsoNormal style=\'margin-bottom:0in;margin-bottom:.0001pt\'>Â </p>\r\n\r\n\r\n\r\n<p class=MsoNormal><b>Date: </b>4/13/84 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal><b>Subject:</b>Â TSO-C70a, LIFERAFTS (REVERSIBLE AND\r\n\r\nNONREVERSIBLE)</p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Â </p>\r\n\r\n\r\n\r\n<p class=MsoNormal><b>Technical Standard Order </b></p>\r\n\r\n\r\n\r\n<p class=MsoNormal>a. <u>Applicability</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(1) <u>Minimum Performance Standards</u>. This Technical\r\n\r\nStandard Order (TSO) prescribes the minimum performance standards that\r\n\r\nliferafts combinations must meet to be identified with the applicable TSO\r\n\r\nmarking. This TSO has been prepared in accordance with the procedural rules set\r\n\r\nforth in Subpart O of the Federal Aviation Regulations Part 21. New models of\r\n\r\nliferafts that are to be so identified and that are manufactured on or after\r\n\r\nthe effective date of this TSO must meet the standards set forth in Appendix 1,\r\n\r\nâ€œFederal Aviation Administration Standard for Liferaftsâ€ of this TSO. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(2) <u>Environmental Standard</u>. None. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(3) <u>Test Methods</u>. This TSO references Federal Test\r\n\r\nMethod Standard No. 191A dated 7/20/78. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>b. <u>Marking</u>. In addition to the marking required in\r\n\r\nFederal Aviation Regulations (FAR) Â§ 21.607(d) (14 CFR 21.607), the part\r\n\r\nnumber, serial number and date of manufacture, weight and rated and overload\r\n\r\ncapacities of the liferaft must be shown also. The weight of the liferaft\r\n\r\nincludes any accessories required in this TSO. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>c. <u>Data Requirements</u>. In accordance with FAR Â§\r\n\r\n21.605, (14 CFR 21.605), each manufacturer shall furnish the Manager, Aircraft\r\n\r\nCertification Office (ACO), Federal Aviation Administration, having\r\n\r\ngeographical purview of the manufacturerâ€™s facilities, one copy each of the\r\n\r\nfollowing technical data: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(1) Operating instructions. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(2) Packing instructions. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(3) A complete description of the device, including detailed\r\n\r\ndrawings, materials identification and specifications, and installation\r\n\r\nprocedures. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>DISTRIBUTION: ZVS-326; A-W(WS)-3; A-X(FS)-3; A-X(CD)-4; A-FFS-1,2,7,8(LTD);\r\n\r\nA-FAC-0(MAX); AVN-1(2 cys) TSO-C70a 4/13/84 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(4) Manufacturerâ€™s TSO qualification test report. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(5) Applicable installation limitations, including stowage\r\n\r\narea temperatures. The manufacturer shall also provide the purchaser with such\r\n\r\nlimitations. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(6) Maintenance instructions, including instructions\r\n\r\nregarding inspection, repair, and stowage of materials. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(7) The functional test specification to be used to test\r\n\r\neach production article to ensure compliance with this TSO. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>d. <u>Availability of Referenced Documents</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(1) Appendix 1, â€œFederal Aviation Administration Standards\r\n\r\nfor Liferafts,â€ of this TSO specifies certain test methods that are contained\r\n\r\nin Federal Test Method Standard No. 191A unless otherwise noted. Federal Test\r\n\r\nMethod Standard No. 191A may be examined at the FAA Headquarters in the Office\r\n\r\nof Airworthiness, Aircraft Engineering Division (AWS-110), and at all Aircraft\r\n\r\nCertification Offices, and may be obtained (or purchased) from the General\r\n\r\nServices Administration, Business Service Center, Region 3, 7th and D Streets,\r\n\r\nS.W., Washington, D.C. 20407. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(2) Federal Aviation Regulations Part 21, Subpart O and\r\n\r\nAdvisory Circular 20-110, Index of Aviation Technical Standard Orders may be\r\n\r\nreviewed at the FAA Headquarters in the Office of Airworthiness, Aircraft\r\n\r\nEngineering Division (AWS-110), and at all regional Aircraft Certification\r\n\r\nOffices. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>/S/ J. A. Pontecorvo </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Acting Director of Airworthiness </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 2 4/13/84 TSO-C70a Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>APPENDIX 1. FEDERAL AVIATION ADMINISTRATION STANDARD FOR LIFERAFTS\r\n\r\n</p>\r\n\r\n\r\n\r\n<p class=MsoNormal>1. <u>Purpose</u>. This standard provides the minimum\r\n\r\nperformance standards for liferafts. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>2. <u>Scope</u>. This standard covers the following types of\r\n\r\nliferafts: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>TYPE I - For use in any category aircraft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>TYPE II - For use in nontransport category aircraft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3. <u>Material and Workmanship</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1 <u>Nonmetallic Materials</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.1 The finished device must be clean and free from any\r\n\r\ndefects that might affect its function. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.2 Coated fabrics and other items, such as webbing,\r\n\r\nsubject to deterioration must have been manufactured not more than 18 months\r\n\r\nprior to the date of delivery of the finished product. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.3 The materials must not support fungus growth. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.4 <u>Coated fabrics - General. </u>Coated fabrics,\r\n\r\nincluding seams, subject to deterioration used in the manufacture of the\r\n\r\ndevices must possess at least 90 percent of their original physical properties\r\n\r\nafter these fabrics have been subjected to the accelerated ageing test\r\n\r\nspecified in paragraph 6.1 of this standard. Material used in the construction\r\n\r\nof flotation chambers and decks must be capable of withstanding the detrimental\r\n\r\neffects of exposure to fuels, oils and hydraulic fluids. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.4.1 <u>Strength</u>. Coated fabrics used for these\r\n\r\napplications must conform to the following minimum strengths after ageing: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tensile Strength (Grab Test) </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Warp 190 pounds/inch </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Fill 190 pounds/inch </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tear Strength </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Trapezoid Test: 13 X 13 pounds/inch (minimum); or </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tongue Test: 13 X 13 pounds/inch (minimum) </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.4.2 <u>Adhesion</u>. In addition to the requirements of\r\n\r\n3.1.4.1, coated fabrics must meet the following minimum strengths after ageing:\r\n\r\n</p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 1 TSO-C70a 4/13/84 Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Ply Adhesion - </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5 pounds/inch width at 70 Â± 2 degrees F at a pull of 2.0 to\r\n\r\n2.5 inches/minute </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Coat Adhesion - </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5 pounds/inch width at 70 Â± 2 degrees F at 2.0 to 2.5\r\n\r\ninches/minute </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.4.3 <u>Permeability</u>. For coated fabrics used in the\r\n\r\nmanufacture of inflation chambers, the maximum permeability to helium\r\n\r\n(Permeability Test Method) may not exceed 10 liters per square meter in 24\r\n\r\nhours at 77 degrees F, or its equivalent using hydrogen. The permeameter must\r\n\r\nbe calibrated for the gas used. In lieu of this permeability test, an alternate\r\n\r\ntest may be used provided the alternate test has been approved as an equivalent\r\n\r\nto this permeability test by the manager of the FAA office to which this TSO\r\n\r\ndata is to be submitted, as required in Paragraph c., Data Requirements. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.5 <u>Seam Strength and Adhesives</u>. Cemented or heat\r\n\r\nsealable seams used in the manufacture of the device must meet the following\r\n\r\nminimum strength requirements: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Shear Strength (Seam Shear Test Method) - 175 pounds/inch\r\n\r\nwidth at 75 degrees F; </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>40 pounds/inch width at 140 degrees F </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Peel Strength (Peel Test Method) - </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5 pounds/inch width at 70 degrees F </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.6 <u>Seam Tape</u>. If tape is used for seam\r\n\r\nreinforcement or abrasion protection of seams or both, the tape must have\r\n\r\nminimum breaking strength (Grab Test Method) of 40 pounds/inch width in both\r\n\r\nthe warp and fill directions. When applied to the seam area, the adhesion\r\n\r\nstrength characteristics must meet the seam strength requirements in paragraph\r\n\r\n3.1.5. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.7 <u>Canopy</u>. Fabrics used for this purpose must be\r\n\r\nwaterproof and resistant to sun penetration, and must not affect the potability\r\n\r\nof collected water, and must meet the following minimum requirements in the\r\n\r\napplicable tests prescribed in paragraph 6.1 of this standard, except that in\r\n\r\nlieu of meeting the tensile strength requirements, a fabricated canopy may be\r\n\r\ndemonstrated to withstand 35-knot winds and 52-knot gusts: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tensile Strength (Grab Test) </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Warp 75 pounds/inch </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Fill 75 pounds/inch </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tear Strength </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Trapezoid Test: 4 x 4 pounds/inch; or </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Tongue Test: 4 x 4 pounds/inch </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Coat Adhesion of Coated Fabrics </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.5 pounds/inch width at 70 Â± 2 degrees F at a separation rate\r\n\r\nof 2.0 to 2.5 inches/minute </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 2 4/13/84 TSO-C70a Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.1.8 <u>Flammability</u>. The device (including carrying\r\n\r\ncase or stowage container) must be constructed of materials which meet FAR Â§\r\n\r\n25.853 (14 CFR 25.853) in effect on May 1, 1972, as follows: Type I rafts must\r\n\r\nmeet Â§ 25.853 (b) and Type II rafts must meet Â§ 25.853 (b-3). </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.2 <u>Metallic Parts</u>. All metallic parts must be made\r\n\r\nof corrosion-resistant material or must be suitably protected against\r\n\r\ncorrosion. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>3.3 <u>Protection</u>. All inflation chambers and load\r\n\r\ncarrying fabrics must be protected in such a manner that nonfabric parts do not\r\n\r\ncause chafing or abrasion of the material in either the packed or the inflated\r\n\r\ncondition. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4. <u>Design and Construction</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1 <u>Capacity</u>. The rated and overload capacities of a\r\n\r\nlife raft must be based on not less than the following usable sitting areas on\r\n\r\nthe deck of the life raft: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Rated Capacity 3.6 feet<sup>2</sup>/person </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Overload Capacity 2.4 feet<sup>2</sup>/person </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1 <u>Capacity, Alternate Rating Methods</u>. In lieu of\r\n\r\nthe rated capacity as determined by paragraph 4.1 of this standard, one of the\r\n\r\nfollowing methods may be used: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.1 The rated capacity of a Type I or Type II liferaft\r\n\r\nmay be determined by the number of occupant seating spaces which can be\r\n\r\naccommodated within the occupiable area exclusive of the perimeter structure\r\n\r\n(such as buoyancy tubes) without overlapping of the occupant seating spaces and\r\n\r\nwith the occupant seating spaces located to provide each occupant with a back\r\n\r\nsupport of not less than 8 inches high. The occupant seating spaces may not be\r\n\r\nless than the following size: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>39.4 inches </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>BACK SUPPORT </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>ALONG </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>THIS 14.7 inches 7.2 inches </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>SIDE. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2 The rated capacity of a Type I or Type II liferaft\r\n\r\nmay be determined on the basis of a controlled pool or fresh water\r\n\r\ndemonstration which includes conditions prescribed under paragraph 6.2.3 of\r\n\r\nthis standard and the following: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2.1 The sitting area on the liferaft deck may not be\r\n\r\nless than 3 square feet per person. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2.2 The liferaft must have a back support for each\r\n\r\noccupant of not less than 14.7 inches wide and 8 inches high. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 3 TSO-C70a 4/13/84 Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2.3 At least 30 percent but no more than 50 percent of\r\n\r\nthe participants must be female. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2.4 Except as provided below, all participants must\r\n\r\nselect their sitting space without outside placement assistance. Instructions,\r\n\r\neither identified on the raft or announced prior to the demonstration, may be\r\n\r\nused informing that each participant should have a back support. A raft\r\n\r\ncommander, acting in the capacity of a crewmember, may direct occupant seating\r\n\r\nto the extent necessary to achieve reasonable weight distribution within the\r\n\r\nraft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.1.1.2.5 All participants must not have practiced,\r\n\r\nrehearsed, or have had the demonstration procedures described to them within\r\n\r\nthe past 6 months. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.2 <u>Buoyancy</u>. An average occupant weight of not less\r\n\r\nthan 170 pounds must be used in all applicable calculations and tests specified\r\n\r\nherein. In tests, ballast in the form of sand bags or equivalent may be used to\r\n\r\nachieve the 170 pound average, provided the appropriate weight distribution\r\n\r\nwithin the raft is maintained. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.2.1 <u>Type I Liferaft</u>. Buoyancy must be provided by\r\n\r\ntwo independent buoyancy tubes each of which, including the raft floor, must be\r\n\r\ncapable of supporting the rated and overload capacities in fresh water if the\r\n\r\nother tube is deflated. The liferaft loaded to its rated capacity must have a\r\n\r\nfreeboard of at least 12 inches with both buoyancy tubes at minimum operating\r\n\r\npressure. The liferaft loaded to its rated capacity with the critical tube\r\n\r\ndeflated and the remaining tube at minimum operating pressure must have a\r\n\r\nfreeboard of at least 6 inches. The liferaft loaded to its overload capacity\r\n\r\nwith the critical tube deflated must have a measurable freeboard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.2.2 <u>Type II Liferaft</u>. When single tube construction\r\n\r\nis used to provide the buoyancy, internal bulkheads must divide the flotation\r\n\r\ntube into at least two separate chambers such that the liferaft will be capable\r\n\r\nof supporting the rated number of occupants out of fresh water in the event\r\n\r\nthat one chamber is deflated. The complete liferaft loaded to its rated\r\n\r\ncapacity must have a freeboard of at least 6 inches. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.3 <u>Inflation</u>. The inflation system must be arranged\r\n\r\nso that failure of one inflatable chamber or manifold will not result in loss\r\n\r\nof gas from the other chambers. The inflation equipment must be located so as\r\n\r\nnot to interfere with boarding operation. Components of the inflation system\r\n\r\nmust meet Department of Transportation Specification 3AA (49 CFR 178.37) or\r\n\r\nSpecification 3HT (49 CFR 178.44) in effect May 30, 1976, as applicable, or an\r\n\r\nequivalent approved by the manager of the FAA office to which this TSO data is\r\n\r\nto be submitted, as required in paragraph c., Data Requirements. The inflation\r\n\r\nsystem must be constructed to minimize leakage due to back pressure after\r\n\r\ninflation. If an air aspirator system is used, the system must be constructed\r\n\r\neither to prevent the ingestion of foreign objects or to prevent failure or\r\n\r\nmalfunction as a result of ingestion of small foreign objects. For Type I\r\n\r\nliferafts, there must be an independent inflation source for each primary\r\n\r\nflotation tube, except that there may be a single inflation source for all\r\n\r\nflotation tubes if data substantiating the reliability of the single </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 4 4/13/84 TSO-C70a Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>inflation source is approved by the manager of the FAA\r\n\r\noffice to which this TSO data is to be submitted, as required in Paragraph c.,\r\n\r\nData Requirements. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.4 <u>Liferaft Canopy</u>. A canopy must be packed with or\r\n\r\nattached to the raft. The erected canopy must be capable of withstanding\r\n\r\n35-knot winds and 52-knot gusts in open water. The canopy must provide adequate\r\n\r\nheadroom and must have provision for openings 180 degrees apart. Means must be\r\n\r\nprovided to make the openings weathertight. If the canopy is not integral with\r\n\r\nthe raft, it must be capable of being erected by occupants following\r\n\r\nconspicuously posted, simple instructions. It must be capable of being erected\r\n\r\nby one occupant of an otherwise empty raft and by occupants of a raft filled to\r\n\r\nrated capacity. For a reversible raft, attachment provisions must be installed\r\n\r\nto permit the canopy to be installed on either side of the raft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.5 <u>Capsize Resistance</u>. There must be water pockets\r\n\r\nor other means to provide capsize resistance for an empty or lightly loaded\r\n\r\nraft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.6 <u>Boarding Aids</u>. For Type I liferafts, boarding\r\n\r\naids must be provided at two opposing positions on the raft. One boarding aid\r\n\r\nis sufficient for a Type II liferaft. Boarding aids must permit unassisted\r\n\r\nentry from the water into the unoccupied raft and must not at any time impair\r\n\r\neither the rigidity or the inflation characteristics of the raft. Puncturing of\r\n\r\ninflatable boarding aids must not affect the buoyancy of the raft buoyancy\r\n\r\nchambers. Boarding handles and/or stirrups used in conjunction with the\r\n\r\nboarding aids must withstand a pull of 500 pounds. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.7 <u>Righting Aids</u>. Means must be provided to right a\r\n\r\nnonreversible liferaft if it inflates in an inverted position. The means\r\n\r\nprovided for righting must be such that they may be used by one person in the\r\n\r\nwater. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.8 <u>Lifeline</u>. A nonrotting lifeline of contrasting\r\n\r\ncolor and at least 3/8-inch diameter or 3/4-inch width must encircle the\r\n\r\nliferaft on the outside periphery so that it can be easily grasped by persons\r\n\r\nin the water. The lifeline and its attachments must be capable of withstanding\r\n\r\na minimum load of 500 pounds and must not interfere with the liferaft\r\n\r\ninflation. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.9 <u>Grasp Line</u>. A grasp line, meeting the size and\r\n\r\nstrength requirements for the lifeline, must be provided with sufficient slack\r\n\r\nfor use by liferaft occupants to steady themselves when seated on the liferaft\r\n\r\ndeck with their backs to the main flotation tube(s). </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.10 <u>Color</u>. The color of the liferaftâ€™s surfaces,\r\n\r\nincluding the canopy surface, visible from the air must be an International\r\n\r\nOrange-Yellow or an equivalent high visibility color. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.11 <u>Placards</u>. Suitable placarding must be provided\r\n\r\nin contrasting colors in waterproof paint which is not detrimental to the\r\n\r\nfabric, that denotes use and location of the inflation systems, raft equipment,\r\n\r\nboarding aids, and righting aids. For reversible rafts, placement of the\r\n\r\nplacarding must take into account usage of either side of the raft. The letters\r\n\r\nused for such placarding must be at least 2 inches high except that details and\r\n\r\nmiscellaneous instructions may be of smaller lettering. Applicable placarding\r\n\r\nmust take into account persons boarding or righting the raft form the water. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 5 TSO-C70a 4/13/84 Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4.12 <u>Lights</u>. One or more survivor locator lights must\r\n\r\nbe provided that are approved under TSO-C85. The lights must be automatically\r\n\r\nactivated upon raft inflation in the water, and visible from any direction by\r\n\r\npersons in the water. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>4. 13 <u>Raft Sea Performance</u>. The raft must meet the\r\n\r\nseaworthiness requirements in 6.2.3.2 and must be capable with its equipment of\r\n\r\nwithstanding a saltwater marine environment for a period of at least 15 days. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5. <u>Liferaft Equipment</u>. All lines must be suitably stowed\r\n\r\nand secured to prevent entanglement during launching/inflation of a liferaft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.1 <u>Mooring Line</u>. A nonrotting mooring line at least\r\n\r\n20 feet in length must be attached at one end to the raft, with the remainder\r\n\r\nof the line held flaked to the carrying case (See 5.2). The mooring line must\r\n\r\nbe capable of keeping the raft, loaded to maximum rated capacity, attached to a\r\n\r\nfloating aircraft, and not endanger the raft or cause the raft to spill\r\n\r\noccupants if the aircraft sinks. The line may be equipped with a mechanical\r\n\r\nrelease linkage. The breaking strength of the line must be at least 500 pounds,\r\n\r\nor 40 times the rated capacity of the raft, whichever is greater, but need not\r\n\r\nexceed 1,000 pounds. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.2 <u>Liferaft Launching Equipment</u>. A parachute ripcord\r\n\r\ngrip and retaining pocket must form the primary inflation control. The ripcord\r\n\r\ngrip or the attached static mooring line must be provided with means for\r\n\r\nattachment to the aircraft. If the ripcord grip is designed to attach to the\r\n\r\naircraft, its strength may not be less than that of the static mooring line.\r\n\r\nThe position of the ripcord grip must be standardized. When facing the release\r\n\r\nend of the carrying case, the center line of the ripcord grip retaining pocket\r\n\r\nmust lie at 45 degrees in the right upper quadrant of the end section. The\r\n\r\noutermost extremity of the ripcord grip may not extend beyond the outer margin\r\n\r\nof the carrying case. The line attached to the ripcord grip must serve both to\r\n\r\nretain the liferaft and to actuate the gas release(s). The tension required to withdraw\r\n\r\nthe static mooring line and to actuate the gas release mechanism(s) must be\r\n\r\nbetween 20 and 30 pounds. The strength of the gas release mechanism(s), its\r\n\r\nfittings, and its attachments may not be less than 100 pounds. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.3 <u>Sea Anchor</u>. A sea anchor, or anchors, or other\r\n\r\nequivalent means must be provided to maintain the raft, with rated capacity and\r\n\r\ncanopy installed, on a substantially constant heading relative to the wind and\r\n\r\nhave the ability to reduce the drift to 2 knots in 17 to 27-knot winds. Unless analysis\r\n\r\nand/or test data substantiating the adequacy of a lower breaking strength is\r\n\r\napproved by the manager of the FAA office to which this TSO data is to be\r\n\r\nsubmitted as required in paragraph c., Data Requirements, the line securing a\r\n\r\nsea anchor to the raft must have a breaking strength of 500 pounds or 40 pounds\r\n\r\ntime the rated capacity of the raft, whichever is greater. The attachment of\r\n\r\nthe line to the raft must be capable of withstanding a load of 1.5 times the\r\n\r\nline-rated strength without damaging the raft. The line must be at least 25\r\n\r\nfeet in length and must be protected to prevent it from being cut inadvertently\r\n\r\nby raft occupants. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.4 <u>Heaving-Trailing Line</u>. At least one floating\r\n\r\nheaving-trailing line not less than 75 feet in length for Type I rafts and not\r\n\r\nless than 35 feet in length for Type II rafts, and at least 250 pounds\r\n\r\nstrength, must be located on the main flotation tube near the sea anchor\r\n\r\nattachment. The </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 6 4/13/84 TSO-C70a Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>attach point of the line must withstand a pull of not less\r\n\r\nthan 1.5 times the line rated strength without damage to the raft. A\r\n\r\nheaving-trailing line must be accessible in any inflated position of a\r\n\r\nreversible liferaft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.5 <u>Emergency Inflation</u>. Means readily accessible to\r\n\r\noccupants of the raft, and having a displacement of at least 32 cubic inches\r\n\r\nper full stroke, must be provided to manually inflate and maintain chambers at\r\n\r\nminimum operating pressure. Manual inflation valves, with a nonreturn opening\r\n\r\nadequate for the size and capacity of the inflation means, must be located to\r\n\r\npermit inflation of all chambers. The location must take into consideration\r\n\r\noccupancy of each side of reversible raft. The inflation means and valves must\r\n\r\nhave provisions to prevent inadvertent removal and loss when either stowed or in\r\n\r\nuse. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.6 <u>Accessory Case Tiedowns</u>. Provisions must be made\r\n\r\nfor tiedowns to hold any accessory case. Each accessory case tiedown must\r\n\r\nwithstand a pull of 250 pounds. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.7 <u>Carrying Case</u>. A carrying case which meets the\r\n\r\nflammability requirement of this standard and which properly fits the packed\r\n\r\nliferaft must be provided. Carrying case materials must be of a highly visible\r\n\r\ncolor, be fungus proof, and be resistant to aircraft fuels and other fluids.\r\n\r\nThe carrying case must provide chafe protection to the liferaft. The carrying\r\n\r\ncase must be provided with easily distinguishable handles so that it may be\r\n\r\ncarried by one person, carried by two persons in tandem, or dragged by either\r\n\r\nend; none of these carrying operations must tend to pull the carrying case\r\n\r\nopen. Each handle must be easily grasped and its strength must be at least four\r\n\r\ntime the total weight of the liferaft and case. Conventional zippers may not be\r\n\r\nemployed for closure. Location of and instructions for use of the inflation\r\n\r\nhandle must be clearly identified and marked on the carrying case surface. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>5.8 <u>Knife</u>. A hook type knife secured by a retaining\r\n\r\nline must be sheathed and attached to the raft adjacent to the point of mooring\r\n\r\nline attachment. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6 <u>Tests</u>. </p>\r\n\r\n\r\n\r\n<table class=MsoNormalTable border=1 cellspacing=0 cellpadding=0\r\n\r\n style=\'border-collapse:collapse;border:none\'>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=601 colspan=4 valign=top style=\'width:450.9pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>6.1 <u>Material Tests</u>. The material tests required in\r\n\r\n  paragraph 3.0 of this standard must be determined in accordance with the\r\n\r\n  following test method or other approved equivalent methods: <u>Test Method </u></p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:14.85pt\'>\r\n\r\n  <td width=200 valign=top style=\'width:150.3pt;border:none;padding:0in 5.4pt 0in 5.4pt;\r\n\r\n  height:14.85pt\'>\r\n\r\n  <p class=MsoNormal><u>Tests Required</u></p>\r\n\r\n  </td>\r\n\r\n  <td width=200 colspan=2 valign=top style=\'width:150.3pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:14.85pt\'>\r\n\r\n  <p class=MsoNormal>Federal Test Method Standard No. l91A <u>dated July 20,\r\n\r\n  1978 </u></p>\r\n\r\n  </td>\r\n\r\n  <td width=200 valign=top style=\'width:150.3pt;border:none;padding:0in 5.4pt 0in 5.4pt;\r\n\r\n  height:14.85pt\'>\r\n\r\n  <p class=MsoNormal><u>Notes </u></p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=200 valign=top style=\'width:150.3pt;border:none;padding:0in 5.4pt 0in 5.4pt;\r\n\r\n  height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Accelerated Age </p>\r\n\r\n  </td>\r\n\r\n  <td width=200 colspan=2 valign=top style=\'width:150.3pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5850 </p>\r\n\r\n  </td>\r\n\r\n  <td width=200 valign=top style=\'width:150.3pt;border:none;padding:0in 5.4pt 0in 5.4pt;\r\n\r\n  height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Per Note (1) </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Tensile Strength (Grab Test) </p>\r\n\r\n  </td>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5100 </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Tear Strength(Trapezoid Test) </p>\r\n\r\n  </td>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5136 (4) </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:14.85pt\'>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:14.85pt\'>\r\n\r\n  <p class=MsoNormal>Tear Strength (Tongue Test) </p>\r\n\r\n  </td>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:14.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5134 </p>\r\n\r\n  <p class=MsoNormal>(Alternate to Trapezoid Test See 3.1.4.1) </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Ply Adhesion </p>\r\n\r\n  </td>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5960 </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr style=\'height:7.85pt\'>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Coat Adhesion </p>\r\n\r\n  </td>\r\n\r\n  <td width=301 colspan=2 valign=top style=\'width:225.45pt;border:none;\r\n\r\n  padding:0in 5.4pt 0in 5.4pt;height:7.85pt\'>\r\n\r\n  <p class=MsoNormal>Method 5970 </p>\r\n\r\n  </td>\r\n\r\n </tr>\r\n\r\n <tr height=0>\r\n\r\n  <td width=200 style=\'border:none\'></td>\r\n\r\n  <td width=100 style=\'border:none\'></td>\r\n\r\n  <td width=100 style=\'border:none\'></td>\r\n\r\n  <td width=200 style=\'border:none\'></td>\r\n\r\n </tr>\r\n\r\n</table>\r\n\r\n\r\n\r\n<p class=MsoNormal><u><span style=\'text-decoration:none\'>Â </span></u></p>\r\n\r\n\r\n\r\n<p class=MsoNormal><u>NOTES</u>: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(1) Samples for the accelerated aging tests must be exposed\r\n\r\nto a temperature of 158 Â± 5 degrees Fahrenheit for not less than 168 hours.\r\n\r\nAfter exposure, the samples must be allowed to cool to 70 Â± 2 degrees\r\n\r\nFahrenheit for neither less than 16 hours nor more than 96 hours before\r\n\r\ndetermining their physical properties in accordance with 3.1 of this standard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(2) Each sample shall consist of two strips 2 inches maximum\r\n\r\nwidth by 5 inches maximum length bonded together with an overlap 3/4 inches\r\n\r\nmaximum. The free ends must be placed in the testing machine described in\r\n\r\nMethod 5100 and separated at a rate of 12 Â± 0.5 inches per minute. The average\r\n\r\nvalue of two samples must be reported. Samples may be multilayered as required\r\n\r\nto provide adequate strength to ensure against premature material failure. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(3) Separation rate must be 2.0 to 2.5 inches per minute. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>(4) Federal Test Method Standard No. 191 in effect December\r\n\r\n31, 1968. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2 <u>Liferaft Tests</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.1 <u>Pressure Retention</u>. Under static conditions and\r\n\r\nwhen inflated and stabilized at the nominal operating pressure, the pressure in\r\n\r\neach inflatable chamber must not fall below the minimum operating pressure in\r\n\r\nless than 24 hours. The minimum operating pressure is the pressure required to\r\n\r\nmeet the minimum design buoyancy requirements of paragraph 4.2 of this\r\n\r\nstandard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.2 <u>Overpressure Tests</u>. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.2.1 The device must be shown by test to withstand a\r\n\r\npressure at least 1.5 times the maximum operating pressure for at least 5\r\n\r\nminutes without sustaining damage. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.2.2 At least one specimen of the inflatable device model\r\n\r\nmust be shown by test to withstand a pressure at least 2 times the maximum\r\n\r\noperating pressure without failure. Devices so tested must be clearly\r\n\r\nidentified. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Â </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3 <u>Functional Tests</u>. Each liferaft model must pass\r\n\r\nthe following tests: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 8 4/13/84 TSO-C70a Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1 <u>Water Tests</u>. In either a controlled pool or\r\n\r\nfresh water, the liferaft capacity and buoyancy must be demonstrated as\r\n\r\nfollows: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.1 Both rated and overload capacities established in\r\n\r\naccordance with the requirements of paragraph 4.1 of this standard must be\r\n\r\ndemonstrated with inflation tubes at minimum operating pressure and with the\r\n\r\ncritical buoyancy chamber deflated. The resultant freeboard in each case must\r\n\r\nmeet the requirements of paragraph 4.2 of this standard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.2 Persons used in the demonstration must have an\r\n\r\naverage weight of not less than 170 pounds. Ballast in the form of sand bags or\r\n\r\nequivalent may be used to achieve proper loading provided the appropriate\r\n\r\nweight distribution within the raft is maintained. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.3 Persons used in the demonstration must wear life\r\n\r\npreservers with at least one chamber inflated. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.4 The required liferaft equipment, including one\r\n\r\nemergency locator transmitter or a weight simulating a transmitter, must be\r\n\r\naboard the liferaft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.5 It must be demonstrated that the raft is\r\n\r\nself-righting, or can be righted by one person in water, or while inverted can\r\n\r\nbe boarded and provide flotation for the normal rated capacity. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.1.6 It must be demonstrated that the boarding aids are\r\n\r\nadequate for the purpose intended and that it is possible for an adult wearing\r\n\r\nan inflated life preserver to board the raft unassisted. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.2 <u>Sea Trials</u>. The liferaft must be demonstrated\r\n\r\nby tests or analysis, or a combination of both, to be seaworthy in an open sea\r\n\r\ncondition of 17 to 27-knot winds and waves of 6 to 10 feet. In tests, ballast\r\n\r\nin the form of sand bags or equivalent may be used to achieve proper loading\r\n\r\nprovided the appropriate weight distribution within the raft is maintained. If\r\n\r\nanalysis is used, the analysis must be approved by the manager of the FAA\r\n\r\noffice to which the TSO data is to be submitted as required in paragraph c.,\r\n\r\nData Requirements. For this seaworthiness demonstration, the following apply: </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.2.1 The liferaft must be deployed to simulate\r\n\r\ndeployment from an aircraft under the most adverse wind direction and wave\r\n\r\ncondition. If the liferaft is an aspirated inflated type, it must be\r\n\r\ndemonstrated that water ingested during inflation will not cause the raft to\r\n\r\nfail to meet the requirement for buoyancy under rated capacity in 4.2. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.2.2 All required equipment must be aboard and the\r\n\r\nproper functioning of each item of equipment must be demonstrated. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.2.3 The canopy must be erected for a sufficient time\r\n\r\nto assess its resistance to tearing and the protection it affords. The method\r\n\r\nof erection must be </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 9 TSO-C70a 4/13/84 Appendix 1 </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>shown to be accomplished by one occupant of an otherwise\r\n\r\nempty raft, and by occupants of a raft filled to rated capacity. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.2.4 The stability of the raft must be demonstrated when\r\n\r\noccupied at normal rated capacity and at 50 percent rated capacity. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.3 <u>Liferaft Drop Test</u>. A complete liferaft\r\n\r\npackage must be dropped or thrown from a height of 5 feet onto a hard surface\r\n\r\nfloor after which it must be inflated and meet the pressure retention\r\n\r\nrequirements of paragraph 6.2.1 of this standard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.4 <u>Portability Test</u>. If the liferaft is to be\r\n\r\nmanually deployed, it must be demonstrated that the complete liferaft package\r\n\r\ncan be moved from a typical stowage installation by no more that two persons\r\n\r\nand then deployed at another suitable exit. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.5 <u>Carrying Case</u>. It must be demonstrated at\r\n\r\nleast 10 times that the carrying case will open satisfactorily and cause no\r\n\r\ndelay in the deployment and inflation of the liferaft. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.3.6 <u>Gas Cylinder Releases</u>. It must be\r\n\r\ndemonstrated that pulling the ripcord grip from any position will actuate the\r\n\r\nprimary gas release(s). </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.5 <u>Temperature Exposure and Inflation</u>. The\r\n\r\nmanufacturer shall determine the minimum temperature at which the complete\r\n\r\nliferaft assembly with its inflation bottles, will be â€œrounded outâ€ (i.e.,\r\n\r\nattain its design shape and approximate dimension) so that the liferaft will be\r\n\r\nable to receive and to support the first occupant within one minute after the\r\n\r\nstart of inflation. Thereafter, the rate of inflation must progress in such a\r\n\r\nmanner and rate as to ensure a serviceable and rigid liferaft for boarding by\r\n\r\nthe remainder of the occupants. Similarly, a maximum environmental temperature\r\n\r\nto which the liferaft assembly may be exposed and still remain in a seaworthy\r\n\r\ncondition upon inflation must be determined. The temperature limitations must\r\n\r\nbe submitted to the FAA and liferaft purchaser in accordance with the data\r\n\r\nrequirements of this TSO. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>6.2.5.1 <u>Test Procedure</u>. The packed liferaft assembly\r\n\r\nwith its inflation bottles installed must be exposed to each of the above\r\n\r\ntemperatures for not less than 24 hours and must be inflated within 5 minutes\r\n\r\nafter removal from such temperatures. The liferaft must be allowed to return to\r\n\r\na temperature of approximately 70 Â± 5 degrees Fahrenheit before being deflated,\r\n\r\nrepacked, and subjected to a second exposure. After the above tests have been\r\n\r\ncompleted, the liferaft must be able to pass tests required by paragraphs 6.2.1\r\n\r\nand 6.2.2 of this standard. </p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Page 10</p>\r\n\r\n\r\n\r\n<p class=MsoNormal>Â </p>\r\n\r\n\r\n\r\n</div>'),(17,12,1,'Aviation Links','<br />\r\n<br />\r\n<strong>General Information</strong>\r\n<ul>\r\n  <li>AirNav (Pilot Information): <a href=\"http://www.aiav.com/fuel\">www.aiav.com</a></li>\r\n  <li>Aviation Weather Center: <a href=\"http://www.aviationweather.gov\">www.aviationweather.gov</a></li>\r\n  <li>Aviator\'s Hotline: <a href=\"http://www.aviationhotline.com/Aviators.htm\">http://www.aviationhotline.com/Aviators.htm</a></li>\r\n  <li>AvWeb:<a href=\"http://www.avweb.com\"> www.avweb.com</a></li>\r\n</ul>\r\n<h4>Government Agencies</h4>\r\n<ul>\r\n  <li>Civil Air Patrol: <a href=\"http://www.cap.gov\">www.cap.gov</a></li>\r\n  <li>Federal Aviation Administration: <a href=\"http://www.faa.gov\">www.faa.gov</a></li>\r\n  <li>FAR (Federal Aviation Regulations): <a href=\"http://www.faa.gov/regulations_policies/faa_regulations/\">www.faa.gov/regulations_policies/faa_regulations</a></li>\r\n  <li>National Transportation Safety Board: <a href=\"http://www.ntsb.gov\">www.ntsb.gov</a></li>\r\n  <li>U.S. Air Force: <a href=\"http://www.af.mil\">www.af.mil</a></li>\r\n</ul>\r\n<h4>Historical Information</h4>\r\n<ul>\r\n  <li>Aviation History Online Museum: <a href=\"http://www.aviation-history.com\">www.aviation-history.com</a></li>\r\n  <li>Canadian Warplane Museum:<a href=\"http://www.warplane.com\"> www.warplane.com</a></li>\r\n  <li>Flight History Information:<a href=\"http://www.flight-history.com\"> www.flight-history.com</a></li>\r\n  <li>National Air & Space Museum: <a href=\"http://www.nasm.si.edu\">www.nasm.si.edu</a></li>\r\n  <li>National Aviation Hall of Fame:<a href=\"http://www.nationalaviation.org\"> www.nationalaviation.org</a></li>\r\n  <li>Strategic Air Command Museum: <a href=\"http://www.strategicairandspace.com\">www.strategicairandspace.com</a></li>\r\n</ul>\r\n<h4>Organizations</h4>\r\n<ul>\r\n  <li>A.O.P.A. (Aircraft Owners Pilots Assoc.): <a href=\"http://www.aopa.org\">www.aopa.org</a></li>\r\n  <li>American Bonanza Society: <a href=\"http://www.bonanza.org\">www.bonanza.org</a></li>\r\n  <li>Airports Council Inteational: <a href=\"http://www.airports.org\">www.airports.org</a></li>\r\n  <li>Cessna Owner Organization: <a href=\"http://www.cessnaowner.org\">www.cessnaowner.org</a></li>\r\n  <li>International Commanche Society: <a href=\"http://www.comancheflyer.com\">www.comancheflyer.com</a></li>\r\n  <li>International Organization of Women Pilots:<a href=\"http://www.ninety-nines.org\"> www.ninety-nines.org</a></li>\r\n  <li>Mooney Pilot Organization: <a href=\"http://www.mooneypilots.com/\">http://www.mooneypilots.com/</a></li>\r\n  <li>National Aeronautic Association: <a href=\"http://www.naa-usa.org\">www.naa-usa.org</a></li>\r\n  <li>N.B.A.A. (National Business Aviation Assoc.):<a href=\"http://www.nbaa.org\"> www.nbaa.org</a></li>\r\n</ul>\r\n<h4>Publications</h4>\r\n<ul>\r\n  <li>Aerospace Technology:<a href=\"http://www.aerospace-technology.com/\"> http://www.aerospace-technology.com/</a></li>\r\n  <li>Airplane Blog: <a href=\"http://www.airplaneblog.com/\">http://www.airplaneblog.com/</a></li>\r\n  <li>AutoPilot Magazine:<a href=\"http://www.autopilotmagazine.com\">www.autopilotmagazine.com</a></li>\r\n  <li>Aviation Market Center: <a href=\"http://www.aviationmarketcenter.com/\">http://www.aviationmarketcenter.com/</a></li>\r\n  <li>Business Air Today :<a href=\"http://www.businessair.com/\">http://www.businessair.com/</a></li>\r\n  <li>Business & Commercial Aviation: <a href=\"http://www.aviationnow.com\">www.aviationnow.com</a></li>\r\n  <li class=\"style8\">Landings:<a href=\"http://www.landings.com\">www.landings.com</a></li>\r\n  <li>Pilot\'s Web: <a href=\"http://pilotsweb.com/\">http://pilotsweb.com/</a></li>\r\n  <li>Plane & Pilot :<a href=\"http://www.planeandpilotmag.com/\">http://www.planeandpilotmag.com/</a></li>\r\n  <li>World Aircraft Sales Magazine:<a href=\"http://www.avbuyer.com\"> www.avbuyer.com</a></li>\r\n</ul>'),(18,12,2,'Enlaces de la AviaciÃ³n','<strong>InformaciÃ³n General</strong>\r\n<ul>\r\n  <li>AirNav (Pilot Information): <a href=\"http://www.aiav.com/fuel\">www.aiav.com</a></li>\r\n  <li>Aviation Weather Center: <a href=\"http://www.aviationweather.gov\">www.aviationweather.gov</a></li>\r\n  <li>Aviator\'s Hotline: <a href=\"http://www.aviationhotline.com/Aviators.htm\">http://www.aviationhotline.com/Aviators.htm</a></li>\r\n  <li>AvWeb:<a href=\"http://www.avweb.com\"> www.avweb.com</a></li>\r\n</ul>\r\n<h4>Agencias del Gobiernos</h4>\r\n<ul>\r\n  <li>Civil Air Patrol: <a href=\"http://www.cap.gov\">www.cap.gov</a></li>\r\n  <li>Federal Aviation Administration: <a href=\"http://www.faa.gov\">www.faa.gov</a></li>\r\n  <li>FAR (Federal Aviation Regulations): <a href=\"http://www.faa.gov/regulations_policies/faa_regulations/\">www.faa.gov/regulations_policies/faa_regulations</a></li>\r\n  <li>National Transportation Safety Board: <a href=\"http://www.ntsb.gov\">www.ntsb.gov</a></li>\r\n  <li>U.S. Air Force: <a href=\"http://www.af.mil\">www.af.mil</a></li>\r\n</ul>\r\n<h4>InformaciÃ³n HistÃ³rica</h4>\r\n<ul>\r\n  <li>Aviation History Online Museum: <a href=\"http://www.aviation-history.com\">www.aviation-history.com</a></li>\r\n  <li>Canadian Warplane Museum:<a href=\"http://www.warplane.com\"> www.warplane.com</a></li>\r\n  <li>Flight History Information:<a href=\"http://www.flight-history.com\"> www.flight-history.com</a></li>\r\n  <li>National Air & Space Museum: <a href=\"http://www.nasm.si.edu\">www.nasm.si.edu</a></li>\r\n  <li>National Aviation Hall of Fame:<a href=\"http://www.nationalaviation.org\"> www.nationalaviation.org</a></li>\r\n  <li>Strategic Air Command Museum: <a href=\"http://www.strategicairandspace.com\">www.strategicairandspace.com</a></li>\r\n</ul>\r\n<h4>Organizaciones</h4>\r\n<ul>\r\n  <li>A.O.P.A. (Aircraft Owners Pilots Assoc.): <a href=\"http://www.aopa.org\">www.aopa.org</a></li>\r\n  <li>American Bonanza Society: <a href=\"http://www.bonanza.org\">www.bonanza.org</a></li>\r\n  <li>Airports Council Inteational: <a href=\"http://www.airports.org\">www.airports.org</a></li>\r\n  <li>Cessna Owner Organization: <a href=\"http://www.cessnaowner.org\">www.cessnaowner.org</a></li>\r\n  <li>International Commanche Society: <a href=\"http://www.comancheflyer.com\">www.comancheflyer.com</a></li>\r\n  <li>International Organization of Women Pilots:<a href=\"http://www.ninety-nines.org\"> www.ninety-nines.org</a></li>\r\n  <li>Mooney Pilot Organization: <a href=\"http://www.mooneypilots.com/\">http://www.mooneypilots.com/</a></li>\r\n  <li>National Aeronautic Association: <a href=\"http://www.naa-usa.org\">www.naa-usa.org</a></li>\r\n  <li>N.B.A.A. (National Business Aviation Assoc.):<a href=\"http://www.nbaa.org\"> www.nbaa.org</a></li>\r\n</ul>\r\n<h4>Publicaciones</h4>\r\n<ul>\r\n  <li>Aerospace Technology:<a href=\"http://www.aerospace-technology.com/\"> http://www.aerospace-technology.com/</a></li>\r\n  <li>Airplane Blog: <a href=\"http://www.airplaneblog.com/\">http://www.airplaneblog.com/</a></li>\r\n  <li>AutoPilot Magazine:<a href=\"http://www.autopilotmagazine.com\">www.autopilotmagazine.com</a></li>\r\n  <li>Aviation Market Center: <a href=\"http://www.aviationmarketcenter.com/\">http://www.aviationmarketcenter.com/</a></li>\r\n  <li>Business Air Today :<a href=\"http://www.businessair.com/\">http://www.businessair.com/</a></li>\r\n  <li>Business & Commercial Aviation: <a href=\"http://www.aviationnow.com\">www.aviationnow.com</a></li>\r\n  <li class=\"style8\">Landings:<a href=\"http://www.landings.com\">www.landings.com</a></li>\r\n  <li>Pilot\'s Web: <a href=\"http://pilotsweb.com/\">http://pilotsweb.com/</a></li>\r\n  <li>Plane & Pilot :<a href=\"http://www.planeandpilotmag.com/\">http://www.planeandpilotmag.com/</a></li>\r\n  <li>World Aircraft Sales Magazine:<a href=\"http://www.avbuyer.com\"> www.avbuyer.com</a></li>\r\n</ul>'),(19,13,1,'Engineering and Design','<p><img alt=\"\" src=\"http://survivalproductsinc.com/case.jpg\" width=\"173\" height=\"180\" /><br /><br />Survival Products\' engineers and craftsmen have   designed their rafts, with you, the consumer in mind.  Advanced design and   manufacturing procedures along with many years of service experience have   allowed Survival Products to price its life rafts at the most affordable rates.    Check the competition and you will find that nobody beats these figures.  Don\'t   be fooled by these prices, sizes and weights.  These life rafts will do the job   for you under the most adverse conditions.</p>\r\n      <p>Raft materials and components have been carefully selected to   provide for reliability, extended life, and reduce service cost.  Buoyancy tubes   and decks are constructed of tough, heavy duty neoprene coated nylon conforming   to stringent government specifications.  Canopies are fabricated from high   visibility orange compound nylon to aid in search and rescue operations.  All   life line, retaining line, and handle webbing are of strong, durable 100%   polypropylene.  The life raft valise is manufactured from almost indestructible   vinyl coated nylon with nylon velcro closures.  The Mirada Release Inflation   Valve is of the most trusted design, punture disk type with many years of   successful operational reliability.</p>\r\n      <p><img alt=\"\" src=\"http://survivalproductsinc.com/valves.jpg\" width=\"173\" height=\"190\" align=\"left\" hspace=\"7\" />Survival Products\' life rafts are constructed using a light weight   aluminum cylinder and valve assemblies thus minimizing corrosion and consequent   damage not only to the corroding components but deterioration of critical   adjacent items such as the tube, deck, and case fabrics.  The aluminum cylinder   and valve also make the life rafts much lighter in weight.  Furthermore, each   and every raft is pressure tested and all seams and adhesive bonds are   thoroughly checked prior to release.  Quota samples are tested to near   destruction as part of a continuing process of product analysis and   improvement.  Additionally, a lifetime warranty comes with the life rafts as   long as they are serviced regularly and properly cared for.</p></td>\r\n  </tr>\r\n  <tr>\r\n    <td></td>\r\n  </tr>\r\n</table>'),(20,13,2,'Engineering & Design','<p><img alt=\"\" src=\"http://survivalproductsinc.com/case.jpg\" width=\"173\" height=\"180\" /><br /><br />Survival Products\' engineers and craftsmen have   designed their rafts, with you, the consumer in mind.  Advanced design and   manufacturing procedures along with many years of service experience have   allowed Survival Products to price its life rafts at the most affordable rates.    Check the competition and you will find that nobody beats these figures.  Don\'t   be fooled by these prices, sizes and weights.  These life rafts will do the job   for you under the most adverse conditions.</p>\r\n      <p>Raft materials and components have been carefully selected to   provide for reliability, extended life, and reduce service cost.  Buoyancy tubes   and decks are constructed of tough, heavy duty neoprene coated nylon conforming   to stringent government specifications.  Canopies are fabricated from high   visibility orange compound nylon to aid in search and rescue operations.  All   life line, retaining line, and handle webbing are of strong, durable 100%   polypropylene.  The life raft valise is manufactured from almost indestructible   vinyl coated nylon with nylon velcro closures.  The Mirada Release Inflation   Valve is of the most trusted design, punture disk type with many years of   successful operational reliability.</p>\r\n      <p><img alt=\"\" src=\"http://survivalproductsinc.com/valves.jpg\" width=\"173\" height=\"190\" align=\"left\" hspace=\"7\" />Survival Products\' life rafts are constructed using a light weight   aluminum cylinder and valve assemblies thus minimizing corrosion and consequent   damage not only to the corroding components but deterioration of critical   adjacent items such as the tube, deck, and case fabrics.  The aluminum cylinder   and valve also make the life rafts much lighter in weight.  Furthermore, each   and every raft is pressure tested and all seams and adhesive bonds are   thoroughly checked prior to release.  Quota samples are tested to near   destruction as part of a continuing process of product analysis and   improvement.  Additionally, a lifetime warranty comes with the life rafts as   long as they are serviced regularly and properly cared for.</p></td>\r\n  </tr>\r\n  <tr>\r\n    <td></td>\r\n  </tr>\r\n</table>');
/*!40000 ALTER TABLE `ezpages_content` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `featured`
--

DROP TABLE IF EXISTS `featured`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `featured` (
  `featured_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_id` int(11) NOT NULL DEFAULT '0',
  `featured_date_added` datetime DEFAULT NULL,
  `featured_last_modified` datetime DEFAULT NULL,
  `expires_date` date NOT NULL DEFAULT '0001-01-01',
  `date_status_change` datetime DEFAULT NULL,
  `status` int(1) NOT NULL DEFAULT '1',
  `featured_date_available` date NOT NULL DEFAULT '0001-01-01',
  PRIMARY KEY (`featured_id`),
  KEY `idx_status_zen` (`status`),
  KEY `idx_products_id_zen` (`products_id`),
  KEY `idx_date_avail_zen` (`featured_date_available`),
  KEY `idx_expires_date_zen` (`expires_date`)
) ENGINE=MyISAM AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `featured`
--

LOCK TABLES `featured` WRITE;
/*!40000 ALTER TABLE `featured` DISABLE KEYS */;
INSERT INTO `featured` VALUES (1,29,'2018-05-26 11:45:24',NULL,'0001-01-01',NULL,1,'0001-01-01'),(2,31,'2018-05-26 11:53:42',NULL,'0001-01-01',NULL,1,'0001-01-01'),(3,78,'2018-05-26 11:54:10',NULL,'0001-01-01',NULL,1,'0001-01-01'),(4,36,'2018-05-26 11:54:26',NULL,'0001-01-01',NULL,1,'0001-01-01'),(5,48,'2018-05-26 11:54:41',NULL,'0001-01-01',NULL,1,'0001-01-01'),(6,6,'2018-05-26 11:55:02',NULL,'0001-01-01',NULL,1,'0001-01-01'),(7,13,'2018-05-26 11:55:21',NULL,'0001-01-01',NULL,1,'0001-01-01'),(8,50,'2018-05-26 11:56:04',NULL,'0001-01-01',NULL,1,'0001-01-01'),(9,75,'2018-05-26 11:56:21',NULL,'0001-01-01',NULL,1,'0001-01-01');
/*!40000 ALTER TABLE `featured` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `files_uploaded`
--

DROP TABLE IF EXISTS `files_uploaded`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `files_uploaded` (
  `files_uploaded_id` int(11) NOT NULL AUTO_INCREMENT,
  `sesskey` varchar(32) DEFAULT NULL,
  `customers_id` int(11) DEFAULT NULL,
  `files_uploaded_name` varchar(64) NOT NULL DEFAULT '',
  PRIMARY KEY (`files_uploaded_id`),
  KEY `idx_customers_id_zen` (`customers_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Must always have either a sesskey or customers_id';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `files_uploaded`
--

LOCK TABLES `files_uploaded` WRITE;
/*!40000 ALTER TABLE `files_uploaded` DISABLE KEYS */;
/*!40000 ALTER TABLE `files_uploaded` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `flexible_footer_menu`
--

DROP TABLE IF EXISTS `flexible_footer_menu`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `flexible_footer_menu` (
  `page_id` int(11) NOT NULL AUTO_INCREMENT,
  `language_id` int(11) NOT NULL DEFAULT '1',
  `page_title` varchar(64) CHARACTER SET utf8 NOT NULL DEFAULT '',
  `page_url` varchar(255) CHARACTER SET utf8 DEFAULT NULL,
  `col_header` varchar(64) CHARACTER SET utf8 DEFAULT NULL,
  `col_image` varchar(254) CHARACTER SET utf8 NOT NULL DEFAULT '',
  `col_html_text` text CHARACTER SET utf8,
  `status` int(1) NOT NULL DEFAULT '0',
  `col_sort_order` int(11) NOT NULL DEFAULT '0',
  `col_id` int(11) NOT NULL DEFAULT '0',
  `date_added` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `last_update` datetime DEFAULT NULL,
  PRIMARY KEY (`page_id`)
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `flexible_footer_menu`
--

LOCK TABLES `flexible_footer_menu` WRITE;
/*!40000 ALTER TABLE `flexible_footer_menu` DISABLE KEYS */;
INSERT INTO `flexible_footer_menu` VALUES (3,1,'Home','index.php?main_page=','','','',1,11,1,'0000-00-00 00:00:00','2014-04-15 12:23:45'),(5,1,'Featured','index.php?main_page=featured_products','','','',1,12,1,'2013-06-24 07:45:26','2014-04-15 12:25:49'),(6,1,'','','Shop','','',1,1,1,'2013-06-24 09:03:26','2014-04-15 13:05:43'),(8,1,'Specials','index.php?main_page=specials','','','',1,13,1,'2013-06-24 09:11:56','2014-04-15 12:25:28'),(9,1,'New Arrivals','index.php?main_page=products_new','','','',1,14,1,'2013-06-24 09:12:50','2014-04-15 12:26:11'),(10,1,'View All','index.php?main_page=products_all','','','',1,15,1,'2013-06-24 09:14:04','2014-04-15 13:03:06'),(11,1,'','','Customer Service','','',1,21,2,'2013-06-24 09:15:49','2014-04-15 15:00:16'),(12,1,'About Us','index.php?main_page=about_us','','','',1,24,2,'2013-06-24 09:18:43','2018-05-25 10:11:14'),(14,1,'Gift Certificate FAQ','index.php?main_page=gv_faq','','','',1,26,2,'2013-06-24 09:19:40','2014-04-15 15:02:42'),(15,1,'Discount Coupons','index.php?main_page=discount_coupon','','','',1,28,2,'2013-06-24 09:20:12','2014-04-15 15:04:14'),(16,1,'Newsletter Unsubscribe','index.php?main_page=unsubscribe','','','',1,28,2,'2013-06-24 09:21:30','2014-04-15 15:04:46'),(18,1,'Contact Us','index.php?main_page=contact_us','','','',1,23,2,'2013-06-24 09:32:08','2018-05-25 10:10:47'),(19,1,'Shipping and Returns','index.php?main_page=shippinginfo','Information','','',1,22,2,'2013-06-24 09:32:33','2018-05-25 18:17:31'),(23,1,'My Account','index.php?main_page=account','','','',1,25,2,'2013-06-24 09:35:02','2018-05-25 10:11:31'),(25,1,'','','Share and Connect','','',1,4,4,'2013-06-24 09:36:48','2013-06-24 14:45:35'),(26,1,'','','','','<a href=\"https://www.facebook.com/Custom.Zen.Cart.Design\" target=\"_blank\"><i class=\"fa fa-facebook\"></i></a><a href=\"https://twitter.com/picaflorazul\" target=\"_blank\"><i class=\"fa fa-twitter\"></i></a><a href=\"http://www.pinterest.com/picaflorazul\" target=\"_blank\"><i class=\"fa fa-pinterest\"></i></a><a href=\"https://www.youtube.com/user/ZenCartEasyHelp\" target=\"_blank\"><i class=\"fa fa-youtube\"></i></a><a href=\"\" target=\"_blank\"><i class=\"fa fa-instagram\"></i></a>',1,41,4,'2013-06-24 09:44:30','2014-04-25 09:26:24');
/*!40000 ALTER TABLE `flexible_footer_menu` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `geo_zones`
--

DROP TABLE IF EXISTS `geo_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `geo_zones` (
  `geo_zone_id` int(11) NOT NULL AUTO_INCREMENT,
  `geo_zone_name` varchar(32) NOT NULL DEFAULT '',
  `geo_zone_description` varchar(255) NOT NULL DEFAULT '',
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`geo_zone_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `geo_zones`
--

LOCK TABLES `geo_zones` WRITE;
/*!40000 ALTER TABLE `geo_zones` DISABLE KEYS */;
INSERT INTO `geo_zones` VALUES (1,'Florida','Florida local sales tax zone',NULL,'2018-04-19 20:31:29');
/*!40000 ALTER TABLE `geo_zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `get_terms_to_filter`
--

DROP TABLE IF EXISTS `get_terms_to_filter`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `get_terms_to_filter` (
  `get_term_name` varchar(255) NOT NULL DEFAULT '',
  `get_term_table` varchar(64) NOT NULL,
  `get_term_name_field` varchar(64) NOT NULL,
  PRIMARY KEY (`get_term_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `get_terms_to_filter`
--

LOCK TABLES `get_terms_to_filter` WRITE;
/*!40000 ALTER TABLE `get_terms_to_filter` DISABLE KEYS */;
INSERT INTO `get_terms_to_filter` VALUES ('manufacturers_id','TABLE_MANUFACTURERS','manufacturers_name'),('music_genre_id','TABLE_MUSIC_GENRE','music_genre_name'),('record_company_id','TABLE_RECORD_COMPANY','record_company_name');
/*!40000 ALTER TABLE `get_terms_to_filter` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `group_pricing`
--

DROP TABLE IF EXISTS `group_pricing`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `group_pricing` (
  `group_id` int(11) NOT NULL AUTO_INCREMENT,
  `group_name` varchar(32) NOT NULL DEFAULT '',
  `group_percentage` decimal(5,2) NOT NULL DEFAULT '0.00',
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`group_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `group_pricing`
--

LOCK TABLES `group_pricing` WRITE;
/*!40000 ALTER TABLE `group_pricing` DISABLE KEYS */;
/*!40000 ALTER TABLE `group_pricing` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `languages`
--

DROP TABLE IF EXISTS `languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `languages` (
  `languages_id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(32) NOT NULL DEFAULT '',
  `code` char(2) NOT NULL DEFAULT '',
  `image` varchar(64) DEFAULT NULL,
  `directory` varchar(32) DEFAULT NULL,
  `sort_order` int(3) DEFAULT NULL,
  PRIMARY KEY (`languages_id`),
  KEY `idx_languages_name_zen` (`name`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `languages`
--

LOCK TABLES `languages` WRITE;
/*!40000 ALTER TABLE `languages` DISABLE KEYS */;
INSERT INTO `languages` VALUES (1,'English','en','icon.gif','english',1);
/*!40000 ALTER TABLE `languages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `layout_boxes`
--

DROP TABLE IF EXISTS `layout_boxes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `layout_boxes` (
  `layout_id` int(11) NOT NULL AUTO_INCREMENT,
  `layout_template` varchar(64) NOT NULL DEFAULT '',
  `layout_box_name` varchar(64) NOT NULL DEFAULT '',
  `layout_box_status` tinyint(1) NOT NULL DEFAULT '0',
  `layout_box_location` tinyint(1) NOT NULL DEFAULT '0',
  `layout_box_sort_order` int(11) NOT NULL DEFAULT '0',
  `layout_box_sort_order_single` int(11) NOT NULL DEFAULT '0',
  `layout_box_status_single` tinyint(4) NOT NULL DEFAULT '0',
  `show_box_min_width` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`layout_id`),
  KEY `idx_name_template_zen` (`layout_template`,`layout_box_name`),
  KEY `idx_layout_box_status_zen` (`layout_box_status`),
  KEY `idx_layout_box_sort_order_zen` (`layout_box_sort_order`)
) ENGINE=MyISAM AUTO_INCREMENT=159 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `layout_boxes`
--

LOCK TABLES `layout_boxes` WRITE;
/*!40000 ALTER TABLE `layout_boxes` DISABLE KEYS */;
INSERT INTO `layout_boxes` VALUES (1,'default_template_settings','banner_box_all.php',1,1,5,0,0,0),(2,'default_template_settings','banner_box.php',1,0,300,1,127,0),(3,'default_template_settings','banner_box2.php',1,1,15,1,15,0),(4,'default_template_settings','best_sellers.php',1,1,30,70,1,0),(5,'default_template_settings','categories.php',1,0,10,10,1,0),(6,'default_template_settings','currencies.php',0,1,80,60,0,0),(7,'default_template_settings','document_categories.php',1,0,0,0,0,0),(8,'default_template_settings','ezpages.php',1,1,-1,2,1,0),(9,'default_template_settings','featured.php',1,0,45,0,0,0),(10,'default_template_settings','information.php',1,0,50,40,1,0),(11,'default_template_settings','languages.php',0,1,70,50,0,0),(12,'default_template_settings','manufacturers.php',1,0,30,20,1,0),(13,'default_template_settings','manufacturer_info.php',1,1,35,95,1,0),(14,'default_template_settings','more_information.php',1,0,200,200,1,0),(15,'default_template_settings','music_genres.php',1,1,0,0,0,0),(16,'default_template_settings','order_history.php',1,1,0,0,0,0),(17,'default_template_settings','product_notifications.php',1,1,55,85,1,0),(18,'default_template_settings','record_companies.php',1,1,0,0,0,0),(19,'default_template_settings','reviews.php',1,0,40,0,0,0),(20,'default_template_settings','search.php',1,1,10,0,0,0),(21,'default_template_settings','search_header.php',0,0,0,0,1,1),(22,'default_template_settings','shopping_cart.php',1,1,20,30,1,0),(23,'default_template_settings','specials.php',1,1,45,0,0,0),(24,'default_template_settings','whats_new.php',1,0,20,0,0,0),(25,'default_template_settings','whos_online.php',1,1,200,200,1,0),(26,'template_default','banner_box_all.php',1,1,5,0,0,1),(27,'template_default','banner_box.php',1,0,300,1,127,1),(28,'template_default','banner_box2.php',1,1,15,1,15,1),(29,'template_default','best_sellers.php',1,1,30,70,1,1),(30,'template_default','categories.php',1,0,10,10,1,1),(31,'template_default','currencies.php',0,1,80,60,0,1),(32,'template_default','ezpages.php',1,1,-1,2,1,1),(33,'template_default','featured.php',1,0,45,0,0,1),(34,'template_default','information.php',1,0,50,40,1,1),(35,'template_default','languages.php',0,1,70,50,0,1),(36,'template_default','manufacturers.php',1,0,30,20,1,1),(37,'template_default','manufacturer_info.php',1,1,35,95,1,1),(38,'template_default','more_information.php',1,0,200,200,1,1),(39,'template_default','my_broken_box.php',1,0,0,0,0,1),(40,'template_default','order_history.php',1,1,0,0,0,1),(41,'template_default','product_notifications.php',1,1,55,85,1,1),(42,'template_default','reviews.php',1,0,40,0,0,1),(43,'template_default','search.php',1,1,10,0,0,1),(44,'template_default','search_header.php',0,0,0,0,1,1),(45,'template_default','shopping_cart.php',1,1,20,30,1,1),(46,'template_default','specials.php',1,1,45,0,0,1),(47,'template_default','whats_new.php',1,0,20,0,0,1),(48,'template_default','whos_online.php',1,1,200,200,1,1),(49,'classic','banner_box.php',1,0,300,1,127,1),(50,'classic','banner_box2.php',1,1,15,1,15,1),(51,'classic','banner_box_all.php',1,1,5,0,0,1),(52,'classic','best_sellers.php',1,1,30,70,1,1),(53,'classic','categories.php',1,0,10,10,1,1),(54,'classic','currencies.php',0,1,80,60,0,1),(55,'classic','document_categories.php',1,0,0,0,0,1),(56,'classic','ezpages.php',1,1,-1,2,1,1),(57,'classic','featured.php',1,0,45,0,0,1),(58,'classic','information.php',1,0,50,40,1,1),(59,'classic','languages.php',0,1,70,50,0,1),(60,'classic','manufacturers.php',1,0,30,20,1,1),(61,'classic','manufacturer_info.php',1,1,35,95,1,1),(62,'classic','more_information.php',1,0,200,200,1,1),(63,'classic','music_genres.php',1,1,0,0,0,1),(64,'classic','order_history.php',1,1,0,0,0,1),(65,'classic','product_notifications.php',1,1,55,85,1,1),(66,'classic','record_companies.php',1,1,0,0,0,1),(67,'classic','reviews.php',1,0,40,0,0,1),(68,'classic','search.php',1,1,10,0,0,1),(69,'classic','search_header.php',0,0,0,0,1,1),(70,'classic','shopping_cart.php',1,1,20,30,1,1),(71,'classic','specials.php',1,1,45,0,0,1),(72,'classic','whats_new.php',1,0,20,0,0,1),(73,'classic','whos_online.php',1,1,200,200,1,1),(74,'responsive_classic','banner_box.php',1,0,300,1,127,0),(75,'responsive_classic','banner_box2.php',1,1,15,1,15,0),(76,'responsive_classic','banner_box_all.php',1,1,5,0,0,0),(77,'responsive_classic','best_sellers.php',1,1,30,70,1,0),(78,'responsive_classic','categories.php',1,0,10,10,1,0),(79,'responsive_classic','currencies.php',0,1,80,60,0,0),(80,'responsive_classic','document_categories.php',1,0,0,0,0,0),(81,'responsive_classic','ezpages.php',1,1,-1,2,1,0),(82,'responsive_classic','featured.php',1,0,45,0,0,0),(83,'responsive_classic','information.php',1,0,50,40,1,0),(84,'responsive_classic','languages.php',0,1,70,50,0,0),(85,'responsive_classic','manufacturers.php',1,0,30,20,1,0),(86,'responsive_classic','manufacturer_info.php',1,1,35,95,1,0),(87,'responsive_classic','more_information.php',1,0,200,200,1,0),(88,'responsive_classic','music_genres.php',1,1,0,0,0,0),(89,'responsive_classic','order_history.php',1,1,0,0,0,0),(90,'responsive_classic','product_notifications.php',1,1,55,85,1,0),(91,'responsive_classic','record_companies.php',1,1,0,0,0,0),(92,'responsive_classic','reviews.php',1,0,40,0,0,0),(93,'responsive_classic','search.php',1,1,10,0,0,0),(94,'responsive_classic','search_header.php',0,0,0,0,1,1),(95,'responsive_classic','shopping_cart.php',1,1,20,30,1,0),(96,'responsive_classic','specials.php',1,1,45,0,0,0),(97,'responsive_classic','whats_new.php',1,0,20,0,0,0),(98,'responsive_classic','whos_online.php',1,1,200,200,1,0),(99,'default_template_settings','languages_header.php',0,0,0,0,1,1),(100,'default_template_settings','currencies_header.php',0,0,0,0,1,1),(101,'default_template_settings','ezpages_drop_menu.php',0,0,0,0,1,1),(102,'responsive_sheffield_blue','banner_box.php',1,0,300,1,127,0),(103,'responsive_sheffield_blue','banner_box2.php',1,1,15,1,15,0),(104,'responsive_sheffield_blue','banner_box_all.php',1,1,5,0,0,0),(105,'responsive_sheffield_blue','best_sellers.php',1,1,30,70,1,0),(106,'responsive_sheffield_blue','categories.php',1,0,10,10,1,0),(107,'responsive_sheffield_blue','currencies.php',0,1,80,60,0,0),(108,'responsive_sheffield_blue','currencies_header.php',0,0,0,0,1,1),(109,'responsive_sheffield_blue','document_categories.php',1,0,0,0,0,0),(110,'responsive_sheffield_blue','ezpages.php',1,1,-1,2,1,0),(111,'responsive_sheffield_blue','ezpages_drop_menu.php',0,0,0,0,1,1),(112,'responsive_sheffield_blue','featured.php',1,0,45,0,0,0),(113,'responsive_sheffield_blue','information.php',1,0,50,40,1,0),(114,'responsive_sheffield_blue','languages.php',0,1,70,50,0,0),(115,'responsive_sheffield_blue','languages_header.php',0,0,0,0,1,1),(116,'responsive_sheffield_blue','manufacturer_info.php',1,1,35,95,1,0),(117,'responsive_sheffield_blue','manufacturers.php',1,0,30,20,1,0),(118,'responsive_sheffield_blue','more_information.php',1,0,200,200,1,0),(119,'responsive_sheffield_blue','music_genres.php',1,1,0,0,0,0),(120,'responsive_sheffield_blue','order_history.php',1,1,0,0,0,0),(121,'responsive_sheffield_blue','product_notifications.php',1,1,55,85,1,0),(122,'responsive_sheffield_blue','record_companies.php',1,1,0,0,0,0),(123,'responsive_sheffield_blue','reviews.php',1,0,40,0,0,0),(124,'responsive_sheffield_blue','search.php',1,1,10,0,0,0),(125,'responsive_sheffield_blue','search_header.php',0,0,0,0,1,1),(126,'responsive_sheffield_blue','shopping_cart.php',1,1,20,30,1,0),(127,'responsive_sheffield_blue','specials.php',1,1,45,0,0,0),(128,'responsive_sheffield_blue','whats_new.php',1,0,20,0,0,0),(129,'responsive_sheffield_blue','whos_online.php',1,1,200,200,1,0),(130,'responsive_classic','currencies_header.php',0,0,0,0,1,1),(131,'responsive_classic','languages_header.php',0,0,0,0,1,1),(132,'life','banner_box.php',1,1,300,5,1,0),(133,'life','banner_box2.php',0,1,15,1,1,0),(134,'life','banner_box_all.php',0,1,5,0,0,0),(135,'life','best_sellers.php',0,1,30,70,1,0),(136,'life','categories.php',0,1,10,10,1,0),(137,'life','currencies.php',0,1,80,60,0,0),(138,'life','currencies_header.php',0,0,0,0,1,1),(139,'life','document_categories.php',1,0,0,0,0,0),(140,'life','ezpages.php',1,1,250,250,1,0),(141,'life','featured.php',1,0,45,0,0,0),(142,'life','information.php',1,1,50,40,1,0),(143,'life','languages.php',0,1,70,50,0,0),(144,'life','languages_header.php',0,0,0,0,1,1),(145,'life','manufacturer_info.php',1,0,35,95,1,0),(146,'life','manufacturers.php',1,0,30,20,1,0),(147,'life','more_information.php',1,0,200,200,1,0),(148,'life','music_genres.php',0,1,0,0,0,0),(149,'life','order_history.php',0,1,0,0,0,0),(150,'life','product_notifications.php',0,1,55,85,1,0),(151,'life','record_companies.php',0,1,0,0,0,0),(152,'life','reviews.php',0,0,40,0,0,0),(153,'life','search.php',0,1,10,0,1,1),(154,'life','search_header.php',0,1,0,0,1,1),(155,'life','shopping_cart.php',0,1,20,30,1,0),(156,'life','specials.php',0,1,45,0,0,0),(157,'life','whats_new.php',0,0,20,0,0,0),(158,'life','whos_online.php',0,1,200,200,1,0);
/*!40000 ALTER TABLE `layout_boxes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `manufacturers`
--

DROP TABLE IF EXISTS `manufacturers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `manufacturers` (
  `manufacturers_id` int(11) NOT NULL AUTO_INCREMENT,
  `manufacturers_name` varchar(32) NOT NULL DEFAULT '',
  `manufacturers_image` varchar(64) DEFAULT NULL,
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  PRIMARY KEY (`manufacturers_id`),
  KEY `idx_mfg_name_zen` (`manufacturers_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `manufacturers`
--

LOCK TABLES `manufacturers` WRITE;
/*!40000 ALTER TABLE `manufacturers` DISABLE KEYS */;
/*!40000 ALTER TABLE `manufacturers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `manufacturers_info`
--

DROP TABLE IF EXISTS `manufacturers_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `manufacturers_info` (
  `manufacturers_id` int(11) NOT NULL DEFAULT '0',
  `languages_id` int(11) NOT NULL DEFAULT '0',
  `manufacturers_url` varchar(255) NOT NULL DEFAULT '',
  `url_clicked` int(5) NOT NULL DEFAULT '0',
  `date_last_click` datetime DEFAULT NULL,
  PRIMARY KEY (`manufacturers_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `manufacturers_info`
--

LOCK TABLES `manufacturers_info` WRITE;
/*!40000 ALTER TABLE `manufacturers_info` DISABLE KEYS */;
/*!40000 ALTER TABLE `manufacturers_info` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `media_clips`
--

DROP TABLE IF EXISTS `media_clips`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `media_clips` (
  `clip_id` int(11) NOT NULL AUTO_INCREMENT,
  `media_id` int(11) NOT NULL DEFAULT '0',
  `clip_type` smallint(6) NOT NULL DEFAULT '0',
  `clip_filename` text NOT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`clip_id`),
  KEY `idx_media_id_zen` (`media_id`),
  KEY `idx_clip_type_zen` (`clip_type`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media_clips`
--

LOCK TABLES `media_clips` WRITE;
/*!40000 ALTER TABLE `media_clips` DISABLE KEYS */;
/*!40000 ALTER TABLE `media_clips` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `media_manager`
--

DROP TABLE IF EXISTS `media_manager`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `media_manager` (
  `media_id` int(11) NOT NULL AUTO_INCREMENT,
  `media_name` varchar(255) NOT NULL DEFAULT '',
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`media_id`),
  KEY `idx_media_name_zen` (`media_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media_manager`
--

LOCK TABLES `media_manager` WRITE;
/*!40000 ALTER TABLE `media_manager` DISABLE KEYS */;
/*!40000 ALTER TABLE `media_manager` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `media_to_products`
--

DROP TABLE IF EXISTS `media_to_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `media_to_products` (
  `media_id` int(11) NOT NULL DEFAULT '0',
  `product_id` int(11) NOT NULL DEFAULT '0',
  KEY `idx_media_product_zen` (`media_id`,`product_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media_to_products`
--

LOCK TABLES `media_to_products` WRITE;
/*!40000 ALTER TABLE `media_to_products` DISABLE KEYS */;
/*!40000 ALTER TABLE `media_to_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `media_types`
--

DROP TABLE IF EXISTS `media_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `media_types` (
  `type_id` int(11) NOT NULL AUTO_INCREMENT,
  `type_name` varchar(64) NOT NULL DEFAULT '',
  `type_ext` varchar(8) NOT NULL DEFAULT '',
  PRIMARY KEY (`type_id`),
  KEY `idx_type_name_zen` (`type_name`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `media_types`
--

LOCK TABLES `media_types` WRITE;
/*!40000 ALTER TABLE `media_types` DISABLE KEYS */;
INSERT INTO `media_types` VALUES (1,'MP3','.mp3');
/*!40000 ALTER TABLE `media_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `meta_tags_categories_description`
--

DROP TABLE IF EXISTS `meta_tags_categories_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `meta_tags_categories_description` (
  `categories_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL DEFAULT '1',
  `metatags_title` varchar(255) NOT NULL DEFAULT '',
  `metatags_keywords` text,
  `metatags_description` text,
  PRIMARY KEY (`categories_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `meta_tags_categories_description`
--

LOCK TABLES `meta_tags_categories_description` WRITE;
/*!40000 ALTER TABLE `meta_tags_categories_description` DISABLE KEYS */;
/*!40000 ALTER TABLE `meta_tags_categories_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `meta_tags_products_description`
--

DROP TABLE IF EXISTS `meta_tags_products_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `meta_tags_products_description` (
  `products_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL DEFAULT '1',
  `metatags_title` varchar(255) NOT NULL DEFAULT '',
  `metatags_keywords` text,
  `metatags_description` text,
  PRIMARY KEY (`products_id`,`language_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `meta_tags_products_description`
--

LOCK TABLES `meta_tags_products_description` WRITE;
/*!40000 ALTER TABLE `meta_tags_products_description` DISABLE KEYS */;
/*!40000 ALTER TABLE `meta_tags_products_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `music_genre`
--

DROP TABLE IF EXISTS `music_genre`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `music_genre` (
  `music_genre_id` int(11) NOT NULL AUTO_INCREMENT,
  `music_genre_name` varchar(32) NOT NULL DEFAULT '',
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  PRIMARY KEY (`music_genre_id`),
  KEY `idx_music_genre_name_zen` (`music_genre_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `music_genre`
--

LOCK TABLES `music_genre` WRITE;
/*!40000 ALTER TABLE `music_genre` DISABLE KEYS */;
/*!40000 ALTER TABLE `music_genre` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `newsletters`
--

DROP TABLE IF EXISTS `newsletters`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `newsletters` (
  `newsletters_id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) NOT NULL DEFAULT '',
  `content` text NOT NULL,
  `content_html` text NOT NULL,
  `module` varchar(255) NOT NULL DEFAULT '',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_sent` datetime DEFAULT NULL,
  `status` int(1) DEFAULT NULL,
  `locked` int(1) DEFAULT '0',
  PRIMARY KEY (`newsletters_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `newsletters`
--

LOCK TABLES `newsletters` WRITE;
/*!40000 ALTER TABLE `newsletters` DISABLE KEYS */;
/*!40000 ALTER TABLE `newsletters` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `orders`
--

DROP TABLE IF EXISTS `orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `orders` (
  `orders_id` int(11) NOT NULL AUTO_INCREMENT,
  `customers_id` int(11) NOT NULL DEFAULT '0',
  `customers_name` varchar(64) NOT NULL DEFAULT '',
  `customers_company` varchar(64) DEFAULT NULL,
  `customers_street_address` varchar(64) NOT NULL DEFAULT '',
  `customers_suburb` varchar(32) DEFAULT NULL,
  `customers_city` varchar(32) NOT NULL DEFAULT '',
  `customers_postcode` varchar(10) NOT NULL DEFAULT '',
  `customers_state` varchar(32) DEFAULT NULL,
  `customers_country` varchar(32) NOT NULL DEFAULT '',
  `customers_telephone` varchar(32) NOT NULL DEFAULT '',
  `customers_email_address` varchar(96) NOT NULL DEFAULT '',
  `customers_address_format_id` int(5) NOT NULL DEFAULT '0',
  `delivery_name` varchar(64) NOT NULL DEFAULT '',
  `delivery_company` varchar(64) DEFAULT NULL,
  `delivery_street_address` varchar(64) NOT NULL DEFAULT '',
  `delivery_suburb` varchar(32) DEFAULT NULL,
  `delivery_city` varchar(32) NOT NULL DEFAULT '',
  `delivery_postcode` varchar(10) NOT NULL DEFAULT '',
  `delivery_state` varchar(32) DEFAULT NULL,
  `delivery_country` varchar(32) NOT NULL DEFAULT '',
  `delivery_address_format_id` int(5) NOT NULL DEFAULT '0',
  `billing_name` varchar(64) NOT NULL DEFAULT '',
  `billing_company` varchar(64) DEFAULT NULL,
  `billing_street_address` varchar(64) NOT NULL DEFAULT '',
  `billing_suburb` varchar(32) DEFAULT NULL,
  `billing_city` varchar(32) NOT NULL DEFAULT '',
  `billing_postcode` varchar(10) NOT NULL DEFAULT '',
  `billing_state` varchar(32) DEFAULT NULL,
  `billing_country` varchar(32) NOT NULL DEFAULT '',
  `billing_address_format_id` int(5) NOT NULL DEFAULT '0',
  `payment_method` varchar(128) NOT NULL DEFAULT '',
  `payment_module_code` varchar(32) NOT NULL DEFAULT '',
  `shipping_method` varchar(255) NOT NULL DEFAULT '',
  `shipping_module_code` varchar(32) NOT NULL DEFAULT '',
  `coupon_code` varchar(32) NOT NULL DEFAULT '',
  `cc_type` varchar(20) DEFAULT NULL,
  `cc_owner` varchar(64) DEFAULT NULL,
  `cc_number` varchar(32) DEFAULT NULL,
  `cc_expires` varchar(4) DEFAULT NULL,
  `cc_cvv` blob,
  `last_modified` datetime DEFAULT NULL,
  `date_purchased` datetime DEFAULT NULL,
  `orders_status` int(5) NOT NULL DEFAULT '0',
  `orders_date_finished` datetime DEFAULT NULL,
  `currency` char(3) DEFAULT NULL,
  `currency_value` decimal(14,6) DEFAULT NULL,
  `order_total` decimal(14,2) DEFAULT NULL,
  `order_tax` decimal(14,2) DEFAULT NULL,
  `paypal_ipn_id` int(11) NOT NULL DEFAULT '0',
  `ip_address` varchar(96) NOT NULL DEFAULT '',
  PRIMARY KEY (`orders_id`),
  KEY `idx_status_orders_cust_zen` (`orders_status`,`orders_id`,`customers_id`),
  KEY `idx_date_purchased_zen` (`date_purchased`),
  KEY `idx_cust_id_orders_id_zen` (`customers_id`,`orders_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `orders`
--

LOCK TABLES `orders` WRITE;
/*!40000 ALTER TABLE `orders` DISABLE KEYS */;
INSERT INTO `orders` VALUES (1,1,'JACK Brake','AAA Testing','4120 W Haslett Rd','','Perry','48872','Michigan','United States','2482406863','JACK.B@AAASURVIVALPRODUCTS.COM',2,'JACK Brake','AAA Testing','4120 W Haslett Rd','','Perry','48872','Michigan','United States',2,'JACK Brake','AAA Testing','4120 W Haslett Rd','','Perry','48872','Michigan','United States',2,'Check/Money Order','moneyorder','Flat Rate (Best Way)','flat','','','','','',NULL,NULL,'2018-05-16 18:45:23',1,NULL,'USD',1.000000,2004.00,0.00,0,'24.72.164.167 - 24.72.164.167');
/*!40000 ALTER TABLE `orders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `orders_products`
--

DROP TABLE IF EXISTS `orders_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `orders_products` (
  `orders_products_id` int(11) NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL DEFAULT '0',
  `products_id` int(11) NOT NULL DEFAULT '0',
  `products_model` varchar(32) DEFAULT NULL,
  `products_name` varchar(64) NOT NULL DEFAULT '',
  `products_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `final_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `products_tax` decimal(7,4) NOT NULL DEFAULT '0.0000',
  `products_quantity` float NOT NULL DEFAULT '0',
  `onetime_charges` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `products_priced_by_attribute` tinyint(1) NOT NULL DEFAULT '0',
  `product_is_free` tinyint(1) NOT NULL DEFAULT '0',
  `products_discount_type` tinyint(1) NOT NULL DEFAULT '0',
  `products_discount_type_from` tinyint(1) NOT NULL DEFAULT '0',
  `products_prid` tinytext NOT NULL,
  PRIMARY KEY (`orders_products_id`),
  KEY `idx_orders_id_prod_id_zen` (`orders_id`,`products_id`),
  KEY `idx_prod_id_orders_id_zen` (`products_id`,`orders_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `orders_products`
--

LOCK TABLES `orders_products` WRITE;
/*!40000 ALTER TABLE `orders_products` DISABLE KEYS */;
INSERT INTO `orders_products` VALUES (1,1,75,'AAADX-RNC','RESCUE NET MARKUS SCN6-200 - Scramble-Net/Cradle',1999.0000,1999.0000,0.0000,1,0.0000,0,0,0,0,'75');
/*!40000 ALTER TABLE `orders_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `orders_products_attributes`
--

DROP TABLE IF EXISTS `orders_products_attributes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `orders_products_attributes` (
  `orders_products_attributes_id` int(11) NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL DEFAULT '0',
  `orders_products_id` int(11) NOT NULL DEFAULT '0',
  `products_options` varchar(32) NOT NULL DEFAULT '',
  `products_options_values` text NOT NULL,
  `options_values_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `price_prefix` char(1) NOT NULL DEFAULT '',
  `product_attribute_is_free` tinyint(1) NOT NULL DEFAULT '0',
  `products_attributes_weight` float NOT NULL DEFAULT '0',
  `products_attributes_weight_prefix` char(1) NOT NULL DEFAULT '',
  `attributes_discounted` tinyint(1) NOT NULL DEFAULT '1',
  `attributes_price_base_included` tinyint(1) NOT NULL DEFAULT '1',
  `attributes_price_onetime` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_offset` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_onetime` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_onetime_offset` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_qty_prices` text,
  `attributes_qty_prices_onetime` text,
  `attributes_price_words` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_words_free` int(4) NOT NULL DEFAULT '0',
  `attributes_price_letters` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_letters_free` int(4) NOT NULL DEFAULT '0',
  `products_options_id` int(11) NOT NULL DEFAULT '0',
  `products_options_values_id` int(11) NOT NULL DEFAULT '0',
  `products_prid` tinytext NOT NULL,
  PRIMARY KEY (`orders_products_attributes_id`),
  KEY `idx_orders_id_prod_id_zen` (`orders_id`,`orders_products_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `orders_products_attributes`
--

LOCK TABLES `orders_products_attributes` WRITE;
/*!40000 ALTER TABLE `orders_products_attributes` DISABLE KEYS */;
/*!40000 ALTER TABLE `orders_products_attributes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `orders_products_download`
--

DROP TABLE IF EXISTS `orders_products_download`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `orders_products_download` (
  `orders_products_download_id` int(11) NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL DEFAULT '0',
  `orders_products_id` int(11) NOT NULL DEFAULT '0',
  `orders_products_filename` varchar(255) NOT NULL DEFAULT '',
  `download_maxdays` int(2) NOT NULL DEFAULT '0',
  `download_count` int(2) NOT NULL DEFAULT '0',
  `products_prid` tinytext NOT NULL,
  PRIMARY KEY (`orders_products_download_id`),
  KEY `idx_orders_id_zen` (`orders_id`),
  KEY `idx_orders_products_id_zen` (`orders_products_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `orders_products_download`
--

LOCK TABLES `orders_products_download` WRITE;
/*!40000 ALTER TABLE `orders_products_download` DISABLE KEYS */;
/*!40000 ALTER TABLE `orders_products_download` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `orders_status`
--

DROP TABLE IF EXISTS `orders_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `orders_status` (
  `orders_status_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '1',
  `orders_status_name` varchar(32) NOT NULL DEFAULT '',
  PRIMARY KEY (`orders_status_id`,`language_id`),
  KEY `idx_orders_status_name_zen` (`orders_status_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `orders_status`
--

LOCK TABLES `orders_status` WRITE;
/*!40000 ALTER TABLE `orders_status` DISABLE KEYS */;
INSERT INTO `orders_status` VALUES (1,1,'Pending'),(2,1,'Processing'),(3,1,'Delivered'),(4,1,'Update');
/*!40000 ALTER TABLE `orders_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `orders_status_history`
--

DROP TABLE IF EXISTS `orders_status_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `orders_status_history` (
  `orders_status_history_id` int(11) NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL DEFAULT '0',
  `orders_status_id` int(5) NOT NULL DEFAULT '0',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `customer_notified` int(1) DEFAULT '0',
  `comments` text,
  PRIMARY KEY (`orders_status_history_id`),
  KEY `idx_orders_id_status_id_zen` (`orders_id`,`orders_status_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `orders_status_history`
--

LOCK TABLES `orders_status_history` WRITE;
/*!40000 ALTER TABLE `orders_status_history` DISABLE KEYS */;
INSERT INTO `orders_status_history` VALUES (1,1,1,'2018-05-16 18:45:23',1,'git er dun');
/*!40000 ALTER TABLE `orders_status_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `orders_total`
--

DROP TABLE IF EXISTS `orders_total`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `orders_total` (
  `orders_total_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `orders_id` int(11) NOT NULL DEFAULT '0',
  `title` varchar(255) NOT NULL DEFAULT '',
  `text` varchar(255) NOT NULL DEFAULT '',
  `value` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `class` varchar(32) NOT NULL DEFAULT '',
  `sort_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`orders_total_id`),
  KEY `idx_ot_orders_id_zen` (`orders_id`),
  KEY `idx_ot_class_zen` (`class`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `orders_total`
--

LOCK TABLES `orders_total` WRITE;
/*!40000 ALTER TABLE `orders_total` DISABLE KEYS */;
INSERT INTO `orders_total` VALUES (1,1,'Sub-Total:','$1,999.00',1999.0000,'ot_subtotal',100),(2,1,'Flat Rate (Best Way):','$5.00',5.0000,'ot_shipping',200),(3,1,'Total:','$2,004.00',2004.0000,'ot_total',999);
/*!40000 ALTER TABLE `orders_total` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `paypal`
--

DROP TABLE IF EXISTS `paypal`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `paypal` (
  `paypal_ipn_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int(11) unsigned NOT NULL DEFAULT '0',
  `txn_type` varchar(40) NOT NULL DEFAULT '',
  `module_name` varchar(40) NOT NULL DEFAULT '',
  `module_mode` varchar(40) NOT NULL DEFAULT '',
  `reason_code` varchar(40) DEFAULT NULL,
  `payment_type` varchar(40) NOT NULL DEFAULT '',
  `payment_status` varchar(32) NOT NULL DEFAULT '',
  `pending_reason` varchar(32) DEFAULT NULL,
  `invoice` varchar(128) DEFAULT NULL,
  `mc_currency` char(3) NOT NULL DEFAULT '',
  `first_name` varchar(32) NOT NULL DEFAULT '',
  `last_name` varchar(32) NOT NULL DEFAULT '',
  `payer_business_name` varchar(128) DEFAULT NULL,
  `address_name` varchar(64) DEFAULT NULL,
  `address_street` varchar(254) DEFAULT NULL,
  `address_city` varchar(120) DEFAULT NULL,
  `address_state` varchar(120) DEFAULT NULL,
  `address_zip` varchar(10) DEFAULT NULL,
  `address_country` varchar(64) DEFAULT NULL,
  `address_status` varchar(11) DEFAULT NULL,
  `payer_email` varchar(128) NOT NULL DEFAULT '',
  `payer_id` varchar(32) NOT NULL DEFAULT '',
  `payer_status` varchar(10) NOT NULL DEFAULT '',
  `payment_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `business` varchar(128) NOT NULL DEFAULT '',
  `receiver_email` varchar(128) NOT NULL DEFAULT '',
  `receiver_id` varchar(32) NOT NULL DEFAULT '',
  `txn_id` varchar(20) NOT NULL DEFAULT '',
  `parent_txn_id` varchar(20) DEFAULT NULL,
  `num_cart_items` tinyint(4) unsigned NOT NULL DEFAULT '1',
  `mc_gross` decimal(7,2) NOT NULL DEFAULT '0.00',
  `mc_fee` decimal(7,2) NOT NULL DEFAULT '0.00',
  `payment_gross` decimal(7,2) DEFAULT NULL,
  `payment_fee` decimal(7,2) DEFAULT NULL,
  `settle_amount` decimal(7,2) DEFAULT NULL,
  `settle_currency` char(3) DEFAULT NULL,
  `exchange_rate` decimal(4,2) DEFAULT NULL,
  `notify_version` varchar(6) NOT NULL DEFAULT '',
  `verify_sign` varchar(128) NOT NULL DEFAULT '',
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `memo` text,
  PRIMARY KEY (`paypal_ipn_id`,`txn_id`),
  KEY `idx_order_id_zen` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal`
--

LOCK TABLES `paypal` WRITE;
/*!40000 ALTER TABLE `paypal` DISABLE KEYS */;
/*!40000 ALTER TABLE `paypal` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `paypal_payment_status`
--

DROP TABLE IF EXISTS `paypal_payment_status`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `paypal_payment_status` (
  `payment_status_id` int(11) NOT NULL AUTO_INCREMENT,
  `payment_status_name` varchar(64) NOT NULL DEFAULT '',
  PRIMARY KEY (`payment_status_id`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal_payment_status`
--

LOCK TABLES `paypal_payment_status` WRITE;
/*!40000 ALTER TABLE `paypal_payment_status` DISABLE KEYS */;
INSERT INTO `paypal_payment_status` VALUES (1,'Completed'),(2,'Pending'),(3,'Failed'),(4,'Denied'),(5,'Refunded'),(6,'Canceled_Reversal'),(7,'Reversed');
/*!40000 ALTER TABLE `paypal_payment_status` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `paypal_payment_status_history`
--

DROP TABLE IF EXISTS `paypal_payment_status_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `paypal_payment_status_history` (
  `payment_status_history_id` int(11) NOT NULL AUTO_INCREMENT,
  `paypal_ipn_id` int(11) NOT NULL DEFAULT '0',
  `txn_id` varchar(64) NOT NULL DEFAULT '',
  `parent_txn_id` varchar(64) NOT NULL DEFAULT '',
  `payment_status` varchar(17) NOT NULL DEFAULT '',
  `pending_reason` varchar(32) DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`payment_status_history_id`),
  KEY `idx_paypal_ipn_id_zen` (`paypal_ipn_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal_payment_status_history`
--

LOCK TABLES `paypal_payment_status_history` WRITE;
/*!40000 ALTER TABLE `paypal_payment_status_history` DISABLE KEYS */;
/*!40000 ALTER TABLE `paypal_payment_status_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `paypal_session`
--

DROP TABLE IF EXISTS `paypal_session`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `paypal_session` (
  `unique_id` int(11) NOT NULL AUTO_INCREMENT,
  `session_id` text NOT NULL,
  `saved_session` mediumblob NOT NULL,
  `expiry` int(17) NOT NULL DEFAULT '0',
  PRIMARY KEY (`unique_id`),
  KEY `idx_session_id_zen` (`session_id`(36))
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal_session`
--

LOCK TABLES `paypal_session` WRITE;
/*!40000 ALTER TABLE `paypal_session` DISABLE KEYS */;
/*!40000 ALTER TABLE `paypal_session` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `paypal_testing`
--

DROP TABLE IF EXISTS `paypal_testing`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `paypal_testing` (
  `paypal_ipn_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `order_id` int(11) unsigned NOT NULL DEFAULT '0',
  `custom` varchar(255) NOT NULL DEFAULT '',
  `txn_type` varchar(40) NOT NULL DEFAULT '',
  `module_name` varchar(40) NOT NULL DEFAULT '',
  `module_mode` varchar(40) NOT NULL DEFAULT '',
  `reason_code` varchar(40) DEFAULT NULL,
  `payment_type` varchar(40) NOT NULL DEFAULT '',
  `payment_status` varchar(32) NOT NULL DEFAULT '',
  `pending_reason` varchar(32) DEFAULT NULL,
  `invoice` varchar(128) DEFAULT NULL,
  `mc_currency` char(3) NOT NULL DEFAULT '',
  `first_name` varchar(32) NOT NULL DEFAULT '',
  `last_name` varchar(32) NOT NULL DEFAULT '',
  `payer_business_name` varchar(128) DEFAULT NULL,
  `address_name` varchar(64) DEFAULT NULL,
  `address_street` varchar(254) DEFAULT NULL,
  `address_city` varchar(120) DEFAULT NULL,
  `address_state` varchar(120) DEFAULT NULL,
  `address_zip` varchar(10) DEFAULT NULL,
  `address_country` varchar(64) DEFAULT NULL,
  `address_status` varchar(11) DEFAULT NULL,
  `payer_email` varchar(128) NOT NULL DEFAULT '',
  `payer_id` varchar(32) NOT NULL DEFAULT '',
  `payer_status` varchar(10) NOT NULL DEFAULT '',
  `payment_date` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `business` varchar(128) NOT NULL DEFAULT '',
  `receiver_email` varchar(128) NOT NULL DEFAULT '',
  `receiver_id` varchar(32) NOT NULL DEFAULT '',
  `txn_id` varchar(20) NOT NULL DEFAULT '',
  `parent_txn_id` varchar(20) DEFAULT NULL,
  `num_cart_items` tinyint(4) unsigned NOT NULL DEFAULT '1',
  `mc_gross` decimal(7,2) NOT NULL DEFAULT '0.00',
  `mc_fee` decimal(7,2) NOT NULL DEFAULT '0.00',
  `payment_gross` decimal(7,2) DEFAULT NULL,
  `payment_fee` decimal(7,2) DEFAULT NULL,
  `settle_amount` decimal(7,2) DEFAULT NULL,
  `settle_currency` char(3) DEFAULT NULL,
  `exchange_rate` decimal(4,2) DEFAULT NULL,
  `notify_version` decimal(2,1) NOT NULL DEFAULT '0.0',
  `verify_sign` varchar(128) NOT NULL DEFAULT '',
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `memo` text,
  PRIMARY KEY (`paypal_ipn_id`,`txn_id`),
  KEY `idx_order_id_zen` (`order_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `paypal_testing`
--

LOCK TABLES `paypal_testing` WRITE;
/*!40000 ALTER TABLE `paypal_testing` DISABLE KEYS */;
/*!40000 ALTER TABLE `paypal_testing` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `product_music_extra`
--

DROP TABLE IF EXISTS `product_music_extra`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_music_extra` (
  `products_id` int(11) NOT NULL DEFAULT '0',
  `artists_id` int(11) NOT NULL DEFAULT '0',
  `record_company_id` int(11) NOT NULL DEFAULT '0',
  `music_genre_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`products_id`),
  KEY `idx_music_genre_id_zen` (`music_genre_id`),
  KEY `idx_artists_id_zen` (`artists_id`),
  KEY `idx_record_company_id_zen` (`record_company_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_music_extra`
--

LOCK TABLES `product_music_extra` WRITE;
/*!40000 ALTER TABLE `product_music_extra` DISABLE KEYS */;
/*!40000 ALTER TABLE `product_music_extra` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `product_type_layout`
--

DROP TABLE IF EXISTS `product_type_layout`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_type_layout` (
  `configuration_id` int(11) NOT NULL AUTO_INCREMENT,
  `configuration_title` text NOT NULL,
  `configuration_key` varchar(255) NOT NULL DEFAULT '',
  `configuration_value` text NOT NULL,
  `configuration_description` text NOT NULL,
  `product_type_id` int(11) NOT NULL DEFAULT '0',
  `sort_order` int(5) DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `use_function` text,
  `set_function` text,
  PRIMARY KEY (`configuration_id`),
  UNIQUE KEY `unq_config_key_zen` (`configuration_key`),
  KEY `idx_key_value_zen` (`configuration_key`,`configuration_value`(10)),
  KEY `idx_type_id_sort_order_zen` (`product_type_id`,`sort_order`)
) ENGINE=MyISAM AUTO_INCREMENT=139 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_type_layout`
--

LOCK TABLES `product_type_layout` WRITE;
/*!40000 ALTER TABLE `product_type_layout` DISABLE KEYS */;
INSERT INTO `product_type_layout` VALUES (1,'Show Model Number','SHOW_PRODUCT_INFO_MODEL','1','Display Model Number on Product Info 0= off 1= on',1,1,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(2,'Show Weight','SHOW_PRODUCT_INFO_WEIGHT','1','Display Weight on Product Info 0= off 1= on',1,2,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(3,'Show Attribute Weight','SHOW_PRODUCT_INFO_WEIGHT_ATTRIBUTES','1','Display Attribute Weight on Product Info 0= off 1= on',1,3,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(4,'Show Manufacturer','SHOW_PRODUCT_INFO_MANUFACTURER','1','Display Manufacturer Name on Product Info 0= off 1= on',1,4,'2018-05-20 19:36:00','2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(5,'Show Quantity in Shopping Cart','SHOW_PRODUCT_INFO_IN_CART_QTY','1','Display Quantity in Current Shopping Cart on Product Info 0= off 1= on',1,5,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(6,'Show Quantity in Stock','SHOW_PRODUCT_INFO_QUANTITY','0','Display Quantity in Stock on Product Info 0= off 1= on',1,6,'2018-05-20 19:35:46','2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(7,'Show Product Reviews Count','SHOW_PRODUCT_INFO_REVIEWS_COUNT','0','Display Product Reviews Count on Product Info 0= off 1= on',1,7,'2018-05-20 19:35:18','2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(8,'Show Product Reviews Button','SHOW_PRODUCT_INFO_REVIEWS','0','Display Product Reviews Button on Product Info 0= off 1= on',1,8,'2018-05-20 19:35:27','2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(9,'Show Date Available','SHOW_PRODUCT_INFO_DATE_AVAILABLE','0','Display Date Available on Product Info 0= off 1= on',1,9,'2018-05-20 19:36:20','2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(10,'Show Date Added','SHOW_PRODUCT_INFO_DATE_ADDED','0','Display Date Added on Product Info 0= off 1= on',1,10,'2018-05-20 19:36:33','2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(11,'Show Product URL','SHOW_PRODUCT_INFO_URL','1','Display URL on Product Info 0= off 1= on',1,11,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(12,'Show Product Additional Images','SHOW_PRODUCT_INFO_ADDITIONAL_IMAGES','1','Display Additional Images on Product Info 0= off 1= on',1,13,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(13,'Show Starting At text on Price','SHOW_PRODUCT_INFO_STARTING_AT','1','Display Starting At text on products with attributes Product Info 0= off 1= on',1,12,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(14,'Product Free Shipping Image Status - Catalog','SHOW_PRODUCT_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH','0','Show the Free Shipping image/text in the catalog?',1,16,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(15,'Product Price Tax Class Default - When adding new products?','DEFAULT_PRODUCT_TAX_CLASS_ID','0','What should the Product Price Tax Class Default ID be when adding new products?',1,100,NULL,'2018-04-19 20:31:29','',''),(16,'Product Virtual Default Status - Skip Shipping Address - When adding new products?','DEFAULT_PRODUCT_PRODUCTS_VIRTUAL','0','Default Virtual Product status to be ON when adding new products?',1,101,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(17,'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?','DEFAULT_PRODUCT_PRODUCTS_IS_ALWAYS_FREE_SHIPPING','0','What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping',1,102,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes, Always ON\'), array(\'id\'=>\'0\', \'text\'=>\'No, Always OFF\'), array(\'id\'=>\'2\', \'text\'=>\'Special\')), '),(18,'Show Model Number','SHOW_PRODUCT_MUSIC_INFO_MODEL','1','Display Model Number on Product Info 0= off 1= on',2,1,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(19,'Show Weight','SHOW_PRODUCT_MUSIC_INFO_WEIGHT','0','Display Weight on Product Info 0= off 1= on',2,2,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(20,'Show Attribute Weight','SHOW_PRODUCT_MUSIC_INFO_WEIGHT_ATTRIBUTES','1','Display Attribute Weight on Product Info 0= off 1= on',2,3,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(21,'Show Artist','SHOW_PRODUCT_MUSIC_INFO_ARTIST','1','Display Artists Name on Product Info 0= off 1= on',2,4,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(22,'Show Music Genre','SHOW_PRODUCT_MUSIC_INFO_GENRE','1','Display Music Genre on Product Info 0= off 1= on',2,4,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(23,'Show Record Company','SHOW_PRODUCT_MUSIC_INFO_RECORD_COMPANY','1','Display Record Company on Product Info 0= off 1= on',2,4,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(24,'Show Quantity in Shopping Cart','SHOW_PRODUCT_MUSIC_INFO_IN_CART_QTY','1','Display Quantity in Current Shopping Cart on Product Info 0= off 1= on',2,5,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(25,'Show Quantity in Stock','SHOW_PRODUCT_MUSIC_INFO_QUANTITY','0','Display Quantity in Stock on Product Info 0= off 1= on',2,6,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(26,'Show Product Reviews Count','SHOW_PRODUCT_MUSIC_INFO_REVIEWS_COUNT','1','Display Product Reviews Count on Product Info 0= off 1= on',2,7,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(27,'Show Product Reviews Button','SHOW_PRODUCT_MUSIC_INFO_REVIEWS','1','Display Product Reviews Button on Product Info 0= off 1= on',2,8,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(28,'Show Date Available','SHOW_PRODUCT_MUSIC_INFO_DATE_AVAILABLE','1','Display Date Available on Product Info 0= off 1= on',2,9,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(29,'Show Date Added','SHOW_PRODUCT_MUSIC_INFO_DATE_ADDED','1','Display Date Added on Product Info 0= off 1= on',2,10,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(30,'Show Starting At text on Price','SHOW_PRODUCT_MUSIC_INFO_STARTING_AT','1','Display Starting At text on products with attributes Product Info 0= off 1= on',2,12,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(31,'Show Product Additional Images','SHOW_PRODUCT_MUSIC_INFO_ADDITIONAL_IMAGES','1','Display Additional Images on Product Info 0= off 1= on',2,13,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(32,'Product Free Shipping Image Status - Catalog','SHOW_PRODUCT_MUSIC_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH','0','Show the Free Shipping image/text in the catalog?',2,16,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(33,'Product Price Tax Class Default - When adding new products?','DEFAULT_PRODUCT_MUSIC_TAX_CLASS_ID','0','What should the Product Price Tax Class Default ID be when adding new products?',2,100,NULL,'2018-04-19 20:31:29','',''),(34,'Product Virtual Default Status - Skip Shipping Address - When adding new products?','DEFAULT_PRODUCT_MUSIC_PRODUCTS_VIRTUAL','0','Default Virtual Product status to be ON when adding new products?',2,101,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(35,'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?','DEFAULT_PRODUCT_MUSIC_PRODUCTS_IS_ALWAYS_FREE_SHIPPING','0','What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping',2,102,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes, Always ON\'), array(\'id\'=>\'0\', \'text\'=>\'No, Always OFF\'), array(\'id\'=>\'2\', \'text\'=>\'Special\')), '),(36,'Show Product Reviews Count','SHOW_DOCUMENT_GENERAL_INFO_REVIEWS_COUNT','1','Display Product Reviews Count on Product Info 0= off 1= on',3,7,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(37,'Show Product Reviews Button','SHOW_DOCUMENT_GENERAL_INFO_REVIEWS','1','Display Product Reviews Button on Product Info 0= off 1= on',3,8,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(38,'Show Date Available','SHOW_DOCUMENT_GENERAL_INFO_DATE_AVAILABLE','1','Display Date Available on Product Info 0= off 1= on',3,9,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(39,'Show Date Added','SHOW_DOCUMENT_GENERAL_INFO_DATE_ADDED','1','Display Date Added on Product Info 0= off 1= on',3,10,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(40,'Show Product URL','SHOW_DOCUMENT_GENERAL_INFO_URL','1','Display URL on Product Info 0= off 1= on',3,11,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(41,'Show Product Additional Images','SHOW_DOCUMENT_GENERAL_INFO_ADDITIONAL_IMAGES','1','Display Additional Images on Product Info 0= off 1= on',3,13,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(42,'Show Model Number','SHOW_DOCUMENT_PRODUCT_INFO_MODEL','1','Display Model Number on Product Info 0= off 1= on',4,1,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(43,'Show Weight','SHOW_DOCUMENT_PRODUCT_INFO_WEIGHT','0','Display Weight on Product Info 0= off 1= on',4,2,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(44,'Show Attribute Weight','SHOW_DOCUMENT_PRODUCT_INFO_WEIGHT_ATTRIBUTES','1','Display Attribute Weight on Product Info 0= off 1= on',4,3,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(45,'Show Manufacturer','SHOW_DOCUMENT_PRODUCT_INFO_MANUFACTURER','1','Display Manufacturer Name on Product Info 0= off 1= on',4,4,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(46,'Show Quantity in Shopping Cart','SHOW_DOCUMENT_PRODUCT_INFO_IN_CART_QTY','1','Display Quantity in Current Shopping Cart on Product Info 0= off 1= on',4,5,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(47,'Show Quantity in Stock','SHOW_DOCUMENT_PRODUCT_INFO_QUANTITY','0','Display Quantity in Stock on Product Info 0= off 1= on',4,6,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(48,'Show Product Reviews Count','SHOW_DOCUMENT_PRODUCT_INFO_REVIEWS_COUNT','1','Display Product Reviews Count on Product Info 0= off 1= on',4,7,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(49,'Show Product Reviews Button','SHOW_DOCUMENT_PRODUCT_INFO_REVIEWS','1','Display Product Reviews Button on Product Info 0= off 1= on',4,8,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(50,'Show Date Available','SHOW_DOCUMENT_PRODUCT_INFO_DATE_AVAILABLE','1','Display Date Available on Product Info 0= off 1= on',4,9,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(51,'Show Date Added','SHOW_DOCUMENT_PRODUCT_INFO_DATE_ADDED','1','Display Date Added on Product Info 0= off 1= on',4,10,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(52,'Show Product URL','SHOW_DOCUMENT_PRODUCT_INFO_URL','1','Display URL on Product Info 0= off 1= on',4,11,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(53,'Show Product Additional Images','SHOW_DOCUMENT_PRODUCT_INFO_ADDITIONAL_IMAGES','1','Display Additional Images on Product Info 0= off 1= on',4,13,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(54,'Show Starting At text on Price','SHOW_DOCUMENT_PRODUCT_INFO_STARTING_AT','1','Display Starting At text on products with attributes Product Info 0= off 1= on',4,12,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(55,'Product Free Shipping Image Status - Catalog','SHOW_DOCUMENT_PRODUCT_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH','0','Show the Free Shipping image/text in the catalog?',4,16,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(56,'Product Price Tax Class Default - When adding new products?','DEFAULT_DOCUMENT_PRODUCT_TAX_CLASS_ID','0','What should the Product Price Tax Class Default ID be when adding new products?',4,100,NULL,'2018-04-19 20:31:29','',''),(57,'Product Virtual Default Status - Skip Shipping Address - When adding new products?','DEFAULT_DOCUMENT_PRODUCT_PRODUCTS_VIRTUAL','0','Default Virtual Product status to be ON when adding new products?',4,101,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(58,'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?','DEFAULT_DOCUMENT_PRODUCT_PRODUCTS_IS_ALWAYS_FREE_SHIPPING','0','What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping',4,102,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes, Always ON\'), array(\'id\'=>\'0\', \'text\'=>\'No, Always OFF\'), array(\'id\'=>\'2\', \'text\'=>\'Special\')), '),(59,'Show Model Number','SHOW_PRODUCT_FREE_SHIPPING_INFO_MODEL','1','Display Model Number on Product Info 0= off 1= on',5,1,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(60,'Show Weight','SHOW_PRODUCT_FREE_SHIPPING_INFO_WEIGHT','0','Display Weight on Product Info 0= off 1= on',5,2,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(61,'Show Attribute Weight','SHOW_PRODUCT_FREE_SHIPPING_INFO_WEIGHT_ATTRIBUTES','1','Display Attribute Weight on Product Info 0= off 1= on',5,3,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(62,'Show Manufacturer','SHOW_PRODUCT_FREE_SHIPPING_INFO_MANUFACTURER','1','Display Manufacturer Name on Product Info 0= off 1= on',5,4,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(63,'Show Quantity in Shopping Cart','SHOW_PRODUCT_FREE_SHIPPING_INFO_IN_CART_QTY','1','Display Quantity in Current Shopping Cart on Product Info 0= off 1= on',5,5,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(64,'Show Quantity in Stock','SHOW_PRODUCT_FREE_SHIPPING_INFO_QUANTITY','1','Display Quantity in Stock on Product Info 0= off 1= on',5,6,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(65,'Show Product Reviews Count','SHOW_PRODUCT_FREE_SHIPPING_INFO_REVIEWS_COUNT','1','Display Product Reviews Count on Product Info 0= off 1= on',5,7,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(66,'Show Product Reviews Button','SHOW_PRODUCT_FREE_SHIPPING_INFO_REVIEWS','1','Display Product Reviews Button on Product Info 0= off 1= on',5,8,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(67,'Show Date Available','SHOW_PRODUCT_FREE_SHIPPING_INFO_DATE_AVAILABLE','0','Display Date Available on Product Info 0= off 1= on',5,9,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(68,'Show Date Added','SHOW_PRODUCT_FREE_SHIPPING_INFO_DATE_ADDED','1','Display Date Added on Product Info 0= off 1= on',5,10,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(69,'Show Product URL','SHOW_PRODUCT_FREE_SHIPPING_INFO_URL','1','Display URL on Product Info 0= off 1= on',5,11,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(70,'Show Product Additional Images','SHOW_PRODUCT_FREE_SHIPPING_INFO_ADDITIONAL_IMAGES','1','Display Additional Images on Product Info 0= off 1= on',5,13,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(71,'Show Starting At text on Price','SHOW_PRODUCT_FREE_SHIPPING_INFO_STARTING_AT','1','Display Starting At text on products with attributes Product Info 0= off 1= on',5,12,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(72,'Product Free Shipping Image Status - Catalog','SHOW_PRODUCT_FREE_SHIPPING_INFO_ALWAYS_FREE_SHIPPING_IMAGE_SWITCH','1','Show the Free Shipping image/text in the catalog?',5,16,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(73,'Product Price Tax Class Default - When adding new products?','DEFAULT_PRODUCT_FREE_SHIPPING_TAX_CLASS_ID','0','What should the Product Price Tax Class Default ID be when adding new products?',5,100,NULL,'2018-04-19 20:31:29','',''),(74,'Product Virtual Default Status - Skip Shipping Address - When adding new products?','DEFAULT_PRODUCT_FREE_SHIPPING_PRODUCTS_VIRTUAL','0','Default Virtual Product status to be ON when adding new products?',5,101,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(75,'Product Free Shipping Default Status - Normal Shipping Rules - When adding new products?','DEFAULT_PRODUCT_FREE_SHIPPING_PRODUCTS_IS_ALWAYS_FREE_SHIPPING','1','What should the Default Free Shipping status be when adding new products?<br />Yes, Always Free Shipping ON<br />No, Always Free Shipping OFF<br />Special, Product/Download Requires Shipping',5,102,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes, Always ON\'), array(\'id\'=>\'0\', \'text\'=>\'No, Always OFF\'), array(\'id\'=>\'2\', \'text\'=>\'Special\')), '),(76,'Show Metatags Title Default - Product Title','SHOW_PRODUCT_INFO_METATAGS_TITLE_STATUS','1','Display Product Title in Meta Tags Title 0= off 1= on',1,50,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(77,'Show Metatags Title Default - Product Name','SHOW_PRODUCT_INFO_METATAGS_PRODUCTS_NAME_STATUS','1','Display Product Name in Meta Tags Title 0= off 1= on',1,51,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(78,'Show Metatags Title Default - Product Model','SHOW_PRODUCT_INFO_METATAGS_MODEL_STATUS','1','Display Product Model in Meta Tags Title 0= off 1= on',1,52,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(79,'Show Metatags Title Default - Product Price','SHOW_PRODUCT_INFO_METATAGS_PRICE_STATUS','1','Display Product Price in Meta Tags Title 0= off 1= on',1,53,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(80,'Show Metatags Title Default - Product Tagline','SHOW_PRODUCT_INFO_METATAGS_TITLE_TAGLINE_STATUS','1','Display Product Tagline in Meta Tags Title 0= off 1= on',1,54,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(81,'Show Metatags Title Default - Product Title','SHOW_PRODUCT_MUSIC_INFO_METATAGS_TITLE_STATUS','1','Display Product Title in Meta Tags Title 0= off 1= on',2,50,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(82,'Show Metatags Title Default - Product Name','SHOW_PRODUCT_MUSIC_INFO_METATAGS_PRODUCTS_NAME_STATUS','1','Display Product Name in Meta Tags Title 0= off 1= on',2,51,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(83,'Show Metatags Title Default - Product Model','SHOW_PRODUCT_MUSIC_INFO_METATAGS_MODEL_STATUS','1','Display Product Model in Meta Tags Title 0= off 1= on',2,52,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(84,'Show Metatags Title Default - Product Price','SHOW_PRODUCT_MUSIC_INFO_METATAGS_PRICE_STATUS','1','Display Product Price in Meta Tags Title 0= off 1= on',2,53,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(85,'Show Metatags Title Default - Product Tagline','SHOW_PRODUCT_MUSIC_INFO_METATAGS_TITLE_TAGLINE_STATUS','1','Display Product Tagline in Meta Tags Title 0= off 1= on',2,54,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(86,'Show Metatags Title Default - Document Title','SHOW_DOCUMENT_GENERAL_INFO_METATAGS_TITLE_STATUS','1','Display Document Title in Meta Tags Title 0= off 1= on',3,50,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(87,'Show Metatags Title Default - Document Name','SHOW_DOCUMENT_GENERAL_INFO_METATAGS_PRODUCTS_NAME_STATUS','1','Display Document Name in Meta Tags Title 0= off 1= on',3,51,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(88,'Show Metatags Title Default - Document Tagline','SHOW_DOCUMENT_GENERAL_INFO_METATAGS_TITLE_TAGLINE_STATUS','1','Display Document Tagline in Meta Tags Title 0= off 1= on',3,54,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(89,'Show Metatags Title Default - Document Title','SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_TITLE_STATUS','1','Display Document Title in Meta Tags Title 0= off 1= on',4,50,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(90,'Show Metatags Title Default - Document Name','SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_PRODUCTS_NAME_STATUS','1','Display Document Name in Meta Tags Title 0= off 1= on',4,51,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(91,'Show Metatags Title Default - Document Model','SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_MODEL_STATUS','1','Display Document Model in Meta Tags Title 0= off 1= on',4,52,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(92,'Show Metatags Title Default - Document Price','SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_PRICE_STATUS','1','Display Document Price in Meta Tags Title 0= off 1= on',4,53,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(93,'Show Metatags Title Default - Document Tagline','SHOW_DOCUMENT_PRODUCT_INFO_METATAGS_TITLE_TAGLINE_STATUS','1','Display Document Tagline in Meta Tags Title 0= off 1= on',4,54,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(94,'Show Metatags Title Default - Product Title','SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_TITLE_STATUS','1','Display Product Title in Meta Tags Title 0= off 1= on',5,50,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(95,'Show Metatags Title Default - Product Name','SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_PRODUCTS_NAME_STATUS','1','Display Product Name in Meta Tags Title 0= off 1= on',5,51,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(96,'Show Metatags Title Default - Product Model','SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_MODEL_STATUS','1','Display Product Model in Meta Tags Title 0= off 1= on',5,52,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(97,'Show Metatags Title Default - Product Price','SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_PRICE_STATUS','1','Display Product Price in Meta Tags Title 0= off 1= on',5,53,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(98,'Show Metatags Title Default - Product Tagline','SHOW_PRODUCT_FREE_SHIPPING_INFO_METATAGS_TITLE_TAGLINE_STATUS','1','Display Product Tagline in Meta Tags Title 0= off 1= on',5,54,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'True\'), array(\'id\'=>\'0\', \'text\'=>\'False\')), '),(99,'PRODUCT Attribute is Display Only - Default','DEFAULT_PRODUCT_ATTRIBUTES_DISPLAY_ONLY','0','PRODUCT Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes',1,200,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(100,'PRODUCT Attribute is Free - Default','DEFAULT_PRODUCT_ATTRIBUTE_IS_FREE','1','PRODUCT Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes',1,201,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(101,'PRODUCT Attribute is Default - Default','DEFAULT_PRODUCT_ATTRIBUTES_DEFAULT','0','PRODUCT Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes',1,202,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(102,'PRODUCT Attribute is Discounted - Default','DEFAULT_PRODUCT_ATTRIBUTES_DISCOUNTED','1','PRODUCT Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes',1,203,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(103,'PRODUCT Attribute is Included in Base Price - Default','DEFAULT_PRODUCT_ATTRIBUTES_PRICE_BASE_INCLUDED','1','PRODUCT Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes',1,204,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(104,'PRODUCT Attribute is Required - Default','DEFAULT_PRODUCT_ATTRIBUTES_REQUIRED','0','PRODUCT Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes',1,205,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(105,'PRODUCT Attribute Price Prefix - Default','DEFAULT_PRODUCT_PRICE_PREFIX','1','PRODUCT Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -',1,206,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(106,'PRODUCT Attribute Weight Prefix - Default','DEFAULT_PRODUCT_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX','1','PRODUCT Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -',1,207,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(107,'MUSIC Attribute is Display Only - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_DISPLAY_ONLY','0','MUSIC Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes',2,200,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(108,'MUSIC Attribute is Free - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTE_IS_FREE','1','MUSIC Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes',2,201,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(109,'MUSIC Attribute is Default - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_DEFAULT','0','MUSIC Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes',2,202,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(110,'MUSIC Attribute is Discounted - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_DISCOUNTED','1','MUSIC Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes',2,203,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(111,'MUSIC Attribute is Included in Base Price - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_PRICE_BASE_INCLUDED','1','MUSIC Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes',2,204,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(112,'MUSIC Attribute is Required - Default','DEFAULT_PRODUCT_MUSIC_ATTRIBUTES_REQUIRED','0','MUSIC Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes',2,205,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(113,'MUSIC Attribute Price Prefix - Default','DEFAULT_PRODUCT_MUSIC_PRICE_PREFIX','1','MUSIC Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -',2,206,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(114,'MUSIC Attribute Weight Prefix - Default','DEFAULT_PRODUCT_MUSIC_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX','1','MUSIC Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -',2,207,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(115,'DOCUMENT GENERAL Attribute is Display Only - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_DISPLAY_ONLY','0','DOCUMENT GENERAL Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes',3,200,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(116,'DOCUMENT GENERAL Attribute is Free - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTE_IS_FREE','1','DOCUMENT GENERAL Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes',3,201,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(117,'DOCUMENT GENERAL Attribute is Default - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_DEFAULT','0','DOCUMENT GENERAL Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes',3,202,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(118,'DOCUMENT GENERAL Attribute is Discounted - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_DISCOUNTED','1','DOCUMENT GENERAL Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes',3,203,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(119,'DOCUMENT GENERAL Attribute is Included in Base Price - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_PRICE_BASE_INCLUDED','1','DOCUMENT GENERAL Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes',3,204,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(120,'DOCUMENT GENERAL Attribute is Required - Default','DEFAULT_DOCUMENT_GENERAL_ATTRIBUTES_REQUIRED','0','DOCUMENT GENERAL Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes',3,205,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(121,'DOCUMENT GENERAL Attribute Price Prefix - Default','DEFAULT_DOCUMENT_GENERAL_PRICE_PREFIX','1','DOCUMENT GENERAL Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -',3,206,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(122,'DOCUMENT GENERAL Attribute Weight Prefix - Default','DEFAULT_DOCUMENT_GENERAL_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX','1','DOCUMENT GENERAL Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -',3,207,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(123,'DOCUMENT PRODUCT Attribute is Display Only - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_DISPLAY_ONLY','0','DOCUMENT PRODUCT Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes',4,200,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(124,'DOCUMENT PRODUCT Attribute is Free - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTE_IS_FREE','1','DOCUMENT PRODUCT Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes',4,201,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(125,'DOCUMENT PRODUCT Attribute is Default - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_DEFAULT','0','DOCUMENT PRODUCT Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes',4,202,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(126,'DOCUMENT PRODUCT Attribute is Discounted - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_DISCOUNTED','1','DOCUMENT PRODUCT Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes',4,203,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(127,'DOCUMENT PRODUCT Attribute is Included in Base Price - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_PRICE_BASE_INCLUDED','1','DOCUMENT PRODUCT Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes',4,204,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(128,'DOCUMENT PRODUCT Attribute is Required - Default','DEFAULT_DOCUMENT_PRODUCT_ATTRIBUTES_REQUIRED','0','DOCUMENT PRODUCT Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes',4,205,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(129,'DOCUMENT PRODUCT Attribute Price Prefix - Default','DEFAULT_DOCUMENT_PRODUCT_PRICE_PREFIX','1','DOCUMENT PRODUCT Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -',4,206,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(130,'DOCUMENT PRODUCT Attribute Weight Prefix - Default','DEFAULT_DOCUMENT_PRODUCT_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX','1','DOCUMENT PRODUCT Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -',4,207,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(131,'PRODUCT FREE SHIPPING Attribute is Display Only - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_DISPLAY_ONLY','0','PRODUCT FREE SHIPPING Attribute is Display Only<br />Used For Display Purposes Only<br />0= No 1= Yes',5,201,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(132,'PRODUCT FREE SHIPPING Attribute is Free - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTE_IS_FREE','1','PRODUCT FREE SHIPPING Attribute is Free<br />Attribute is Free When Product is Free<br />0= No 1= Yes',5,201,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(133,'PRODUCT FREE SHIPPING Attribute is Default - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_DEFAULT','0','PRODUCT FREE SHIPPING Attribute is Default<br />Default Attribute to be Marked Selected<br />0= No 1= Yes',5,202,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(134,'PRODUCT FREE SHIPPING Attribute is Discounted - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_DISCOUNTED','1','PRODUCT FREE SHIPPING Attribute is Discounted<br />Apply Discounts Used by Product Special/Sale<br />0= No 1= Yes',5,203,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(135,'PRODUCT FREE SHIPPING Attribute is Included in Base Price - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_PRICE_BASE_INCLUDED','1','PRODUCT FREE SHIPPING Attribute is Included in Base Price<br />Include in Base Price When Priced by Attributes<br />0= No 1= Yes',5,204,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(136,'PRODUCT FREE SHIPPING Attribute is Required - Default','DEFAULT_PRODUCT_FREE_SHIPPING_ATTRIBUTES_REQUIRED','0','PRODUCT FREE SHIPPING Attribute is Required<br />Attribute Required for Text<br />0= No 1= Yes',5,205,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'1\', \'text\'=>\'Yes\'), array(\'id\'=>\'0\', \'text\'=>\'No\')), '),(137,'PRODUCT FREE SHIPPING Attribute Price Prefix - Default','DEFAULT_PRODUCT_FREE_SHIPPING_PRICE_PREFIX','1','PRODUCT FREE SHIPPING Attribute Price Prefix<br />Default Attribute Price Prefix for Adding<br />Blank, + or -',5,206,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), '),(138,'PRODUCT FREE SHIPPING Attribute Weight Prefix - Default','DEFAULT_PRODUCT_FREE_SHIPPING_PRODUCTS_ATTRIBUTES_WEIGHT_PREFIX','1','PRODUCT FREE SHIPPING Attribute Weight Prefix<br />Default Attribute Weight Prefix<br />Blank, + or -',5,207,NULL,'2018-04-19 20:31:29',NULL,'zen_cfg_select_drop_down(array(array(\'id\'=>\'0\', \'text\'=>\'Blank\'), array(\'id\'=>\'1\', \'text\'=>\'+\'), array(\'id\'=>\'2\', \'text\'=>\'-\')), ');
/*!40000 ALTER TABLE `product_type_layout` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `product_types`
--

DROP TABLE IF EXISTS `product_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_types` (
  `type_id` int(11) NOT NULL AUTO_INCREMENT,
  `type_name` varchar(255) NOT NULL DEFAULT '',
  `type_handler` varchar(255) NOT NULL DEFAULT '',
  `type_master_type` int(11) NOT NULL DEFAULT '1',
  `allow_add_to_cart` char(1) NOT NULL DEFAULT 'Y',
  `default_image` varchar(255) NOT NULL DEFAULT '',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `last_modified` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`type_id`),
  KEY `idx_type_master_type_zen` (`type_master_type`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_types`
--

LOCK TABLES `product_types` WRITE;
/*!40000 ALTER TABLE `product_types` DISABLE KEYS */;
INSERT INTO `product_types` VALUES (1,'Product - General','product',1,'Y','','2018-04-19 20:31:29','2018-04-19 20:31:29'),(2,'Product - Music','product_music',1,'Y','','2018-04-19 20:31:29','2018-04-19 20:31:29'),(3,'Document - General','document_general',3,'N','','2018-04-19 20:31:29','2018-04-19 20:31:29'),(4,'Document - Product','document_product',3,'Y','','2018-04-19 20:31:29','2018-04-19 20:31:29'),(5,'Product - Free Shipping','product_free_shipping',1,'Y','','2018-04-19 20:31:29','2018-04-19 20:31:29');
/*!40000 ALTER TABLE `product_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `product_types_to_category`
--

DROP TABLE IF EXISTS `product_types_to_category`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_types_to_category` (
  `product_type_id` int(11) NOT NULL DEFAULT '0',
  `category_id` int(11) NOT NULL DEFAULT '0',
  KEY `idx_category_id_zen` (`category_id`),
  KEY `idx_product_type_id_zen` (`product_type_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_types_to_category`
--

LOCK TABLES `product_types_to_category` WRITE;
/*!40000 ALTER TABLE `product_types_to_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `product_types_to_category` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `products`
--

DROP TABLE IF EXISTS `products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `products` (
  `products_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_type` int(11) NOT NULL DEFAULT '1',
  `products_quantity` float NOT NULL DEFAULT '0',
  `products_model` varchar(32) DEFAULT NULL,
  `products_sku` int(11) NOT NULL,
  `products_upc` int(11) NOT NULL,
  `products_isbn` int(11) NOT NULL,
  `products_ean` int(11) NOT NULL,
  `products_asin` int(11) NOT NULL,
  `products_epier` int(11) NOT NULL,
  `products_ebay` int(11) NOT NULL,
  `products_ebid` int(11) NOT NULL,
  `products_image` varchar(64) DEFAULT NULL,
  `products_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `products_price_w` int(11) NOT NULL,
  `products_msrp` int(11) NOT NULL,
  `products_virtual` tinyint(1) NOT NULL DEFAULT '0',
  `products_date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  `products_last_modified` datetime DEFAULT NULL,
  `products_date_available` datetime DEFAULT NULL,
  `products_weight` float NOT NULL DEFAULT '0',
  `products_actual_weight` int(11) NOT NULL,
  `products_weight_type` int(11) NOT NULL,
  `products_dim_type` int(11) NOT NULL,
  `products_length` int(11) NOT NULL,
  `products_width` int(11) NOT NULL,
  `products_height` int(11) NOT NULL,
  `products_ready_to_ship` int(11) NOT NULL,
  `products_status` tinyint(1) NOT NULL DEFAULT '0',
  `products_tax_class_id` int(11) NOT NULL DEFAULT '0',
  `manufacturers_id` int(11) DEFAULT NULL,
  `products_ordered` float NOT NULL DEFAULT '0',
  `products_quantity_order_min` float NOT NULL DEFAULT '1',
  `products_quantity_order_units` float NOT NULL DEFAULT '1',
  `products_priced_by_attribute` tinyint(1) NOT NULL DEFAULT '0',
  `product_is_free` tinyint(1) NOT NULL DEFAULT '0',
  `product_is_call` tinyint(1) NOT NULL DEFAULT '0',
  `products_quantity_mixed` tinyint(1) NOT NULL DEFAULT '0',
  `product_is_always_free_shipping` tinyint(1) NOT NULL DEFAULT '0',
  `products_qty_box_status` tinyint(1) NOT NULL DEFAULT '1',
  `products_quantity_order_max` float NOT NULL DEFAULT '0',
  `products_sort_order` int(11) NOT NULL DEFAULT '0',
  `products_discount_type` tinyint(1) NOT NULL DEFAULT '0',
  `products_discount_type_from` tinyint(1) NOT NULL DEFAULT '0',
  `products_price_sorter` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `master_categories_id` int(11) NOT NULL DEFAULT '0',
  `products_mixed_discount_quantity` tinyint(1) NOT NULL DEFAULT '1',
  `metatags_title_status` tinyint(1) NOT NULL DEFAULT '0',
  `metatags_products_name_status` tinyint(1) NOT NULL DEFAULT '0',
  `metatags_model_status` tinyint(1) NOT NULL DEFAULT '0',
  `metatags_price_status` tinyint(1) NOT NULL DEFAULT '0',
  `metatags_title_tagline_status` tinyint(1) NOT NULL DEFAULT '0',
  `products_sh_na` int(11) NOT NULL,
  `products_sh_sa` int(11) NOT NULL,
  `products_sh_eu` int(11) NOT NULL,
  `products_sh_af` int(11) NOT NULL,
  `products_sh_as` int(11) NOT NULL,
  `products_sh_au` int(11) NOT NULL,
  `products_category` int(11) NOT NULL,
  `products_condition` int(11) NOT NULL,
  `products_EHF` int(11) NOT NULL,
  `products_barcode` int(11) NOT NULL,
  `products_diameter` int(11) NOT NULL,
  `discontinue` int(11) NOT NULL,
  `out_of_stock` int(11) NOT NULL,
  `products_description2` int(11) NOT NULL,
  PRIMARY KEY (`products_id`),
  KEY `idx_products_date_added_zen` (`products_date_added`),
  KEY `idx_products_status_zen` (`products_status`),
  KEY `idx_products_date_available_zen` (`products_date_available`),
  KEY `idx_products_ordered_zen` (`products_ordered`),
  KEY `idx_products_model_zen` (`products_model`),
  KEY `idx_products_price_sorter_zen` (`products_price_sorter`),
  KEY `idx_master_categories_id_zen` (`master_categories_id`),
  KEY `idx_products_sort_order_zen` (`products_sort_order`),
  KEY `idx_manufacturers_id_zen` (`manufacturers_id`)
) ENGINE=MyISAM AUTO_INCREMENT=85 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `products`
--

LOCK TABLES `products` WRITE;
/*!40000 ALTER TABLE `products` DISABLE KEYS */;
INSERT INTO `products` VALUES (1,1,100,'1400-1',0,0,0,0,0,0,0,0,'fourman_stack.jpg',1568.0000,0,1370,0,'2010-01-13 17:55:57','2018-05-27 21:19:41',NULL,15,12,0,0,4,12,14,1,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,1568.0000,19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(2,1,100,'1400-3',0,0,0,0,0,0,0,0,'fourman_01.gif',1817.0000,0,1590,0,'2010-01-13 18:00:13','2018-05-27 21:20:27',NULL,17,14,0,0,4,12,14,1,1,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,1817.0000,19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(3,1,100,'1400-1/1500-1',0,0,0,0,0,0,0,0,'fourman_01.gif',2025.0000,0,1775,0,'2010-01-13 18:02:45','2018-05-27 21:20:59',NULL,22,19,0,0,6,12,14,1,1,0,0,0,1,1,1,0,0,1,0,1,0,2,0,0,2025.0000,19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(4,1,100,'1400-1/1500-3',0,0,0,0,0,0,0,0,'fourman_01.gif',2170.0000,0,1895,0,'2010-01-13 18:17:46','2018-05-27 21:21:26',NULL,23,20,0,0,6,12,14,1,1,0,0,0,1,1,0,0,0,1,0,1,0,3,0,0,2170.0000,19,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(5,1,100,'1400-1/1500-5',0,0,0,0,0,0,0,0,'fourman_01.gif',2762.0000,0,2415,0,'2010-01-13 18:21:51','2018-05-27 21:21:53',NULL,24,21,0,0,6,12,14,1,1,0,0,1,1,1,0,0,0,1,0,1,0,4,0,0,2762.0000,19,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(6,1,100,'1900-1',0,0,0,0,0,0,0,0,'nineman_01.gif',1866.0000,0,1785,0,'2010-01-13 18:27:21','2018-05-28 00:31:22',NULL,21,18,0,0,5,12,14,1,1,0,0,0,1,1,1,0,0,1,0,1,0,5,0,0,1866.0000,20,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(7,1,100,'1900-1/2000-1',0,0,0,0,0,0,0,0,'nineman_01.gif',2430.0000,0,2325,0,'2010-01-13 18:30:48','2018-05-28 00:32:20',NULL,32,29,0,0,7,12,14,1,1,0,0,0,1,1,0,0,0,1,0,1,0,7,0,0,2430.0000,20,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(8,1,100,'1900-1/2000-3',0,0,0,0,0,0,0,0,'nineman_01.gif',2576.0000,0,2465,0,'2010-01-13 18:33:20','2018-05-28 00:32:49',NULL,33,30,0,0,7,12,14,1,1,0,0,0,1,1,0,0,0,1,0,1,0,8,0,0,2576.0000,20,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(9,1,100,'1900-1/2000-5',0,0,0,0,0,0,0,0,'nineman_01.gif',3292.0000,0,3150,0,'2010-01-13 18:36:14','2018-05-28 00:33:14',NULL,35,32,0,0,7,12,14,1,1,0,0,0,1,1,0,0,0,1,0,1,0,9,0,0,3292.0000,20,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(10,1,100,'RAF1104-101',0,0,0,0,0,0,0,0,'fourman_01.gif',2046.0000,0,1785,0,'2010-01-13 20:59:11','2018-05-27 21:20:06',NULL,18,15,0,0,4,13,16,1,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,2046.0000,19,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(11,1,10,'RAF1104-102',0,0,0,0,0,0,0,0,'fourmantso_01.gif',2326.0000,0,2035,0,'2010-01-13 21:02:35','2018-05-28 09:53:36',NULL,19,16,0,0,4,13,16,1,1,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,2326.0000,21,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(12,1,100,'RAF1104-103',0,0,0,0,0,0,0,0,'fourmantso_01.gif',2648.0000,0,2315,0,'2010-01-13 21:05:30','2018-05-28 09:53:55',NULL,26,22,0,0,6,13,16,1,1,0,0,0,1,1,0,0,0,1,0,1,0,2,0,0,2648.0000,21,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(13,1,97,'RAF1104-104',0,0,0,0,0,0,0,0,'fourman_01.jpg',2793.0000,0,2445,0,'2010-01-13 21:08:21','2018-05-28 09:54:16',NULL,26,23,0,0,6,13,16,1,1,0,0,3,1,1,0,0,0,1,0,1,0,3,0,0,2793.0000,21,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(14,1,10,'RAF1104-105',0,0,0,0,0,0,0,0,'fourmantso_01.gif',3416.0000,0,2985,0,'2010-01-13 21:10:38','2018-05-28 09:54:38',NULL,30,27,0,0,6,13,16,1,1,0,0,0,1,1,0,0,0,1,0,1,0,4,0,0,3416.0000,21,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(15,1,100,'RAF1108-101',0,0,0,0,0,0,0,0,'nineman_01.gif',2545.0000,0,2435,0,'2010-01-13 21:16:06','2018-05-27 21:18:42',NULL,23,20,0,0,5,13,16,1,1,0,0,0,1,1,0,0,0,1,0,1,0,5,0,0,2545.0000,27,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(16,1,100,'RAF1108-102',0,0,0,0,0,0,0,0,'nineman_01.gif',3167.0000,0,2745,0,'2010-01-13 21:19:25','2018-05-28 09:55:57',NULL,25,22,0,0,5,13,16,1,1,0,0,0,1,1,0,0,0,1,0,1,0,6,0,0,3167.0000,23,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(17,1,100,'RAF1108-103',0,0,0,0,0,0,0,0,'nineman_01.gif',3562.0000,0,3115,0,'2010-01-13 21:22:01','2018-05-28 09:56:17',NULL,34,31,0,0,7,13,16,1,1,0,0,0,1,1,0,0,0,1,0,1,0,7,0,0,3562.0000,23,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(18,1,100,'RAF1108-104',0,0,0,0,0,0,0,0,'nineman_01.gif',3728.0000,0,3260,0,'2010-01-13 21:24:39','2018-05-28 09:56:35',NULL,35,32,0,0,7,13,16,1,1,0,0,0,1,1,0,0,0,1,0,1,0,8,0,0,3728.0000,23,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(19,1,100,'RAF1108-105',0,0,0,0,0,0,0,0,'nineman_01.gif',4569.0000,0,3995,0,'2010-01-13 21:27:28','2018-05-28 09:56:53',NULL,41,38,0,0,8,13,16,1,1,0,0,0,1,1,0,0,0,1,0,1,0,9,0,0,4569.0000,23,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(20,1,100,'RAF1206-101',0,0,0,0,0,0,0,0,'dbletube_01.gif',3883.0000,0,3715,0,'2010-01-13 21:31:27','2018-05-27 21:17:11',NULL,29,26,0,0,5,13,19,1,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,3883.0000,26,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(21,1,100,'RAF1206-102',0,0,0,0,0,0,0,0,'dbletube_01.gif',4590.0000,0,4015,0,'2010-01-13 21:33:40','2018-05-27 21:39:45',NULL,31,28,0,0,5,13,19,1,1,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,4590.0000,22,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(22,1,100,'RAF1206-103',0,0,0,0,0,0,0,0,'dbletube_01.gif',4911.0000,0,4295,0,'2010-01-13 21:36:15','2018-05-27 21:41:41',NULL,39,36,0,0,7,13,19,1,1,0,0,0,1,1,0,0,0,1,0,1,0,2,0,0,4911.0000,22,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(23,1,100,'RAF1206-104',0,0,0,0,0,0,0,0,'dbletube_01.gif',5099.0000,0,4465,0,'2010-01-13 21:38:46','2018-05-27 21:42:06',NULL,40,37,0,0,7,13,19,1,1,0,0,0,1,1,0,0,0,1,0,1,0,3,0,0,5099.0000,22,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(24,1,100,'RAF1206-105',0,0,0,0,0,0,0,0,'dbletube_01.gif',6023.0000,0,5275,0,'2010-01-13 21:41:12','2018-05-27 21:42:34',NULL,44,41,0,0,7,13,19,1,1,0,0,0,1,1,0,0,0,1,0,1,0,4,0,0,6023.0000,22,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(25,1,100,'RAF1210-101',0,0,0,0,0,0,0,0,'dbletube_01.gif',4598.0000,0,4400,0,'2010-01-13 21:51:29','2018-05-28 09:52:06',NULL,33,30,0,0,5,14,19,1,1,0,0,0,1,1,0,0,0,1,0,1,0,5,0,0,4598.0000,28,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(26,1,100,'RAF1210-102',0,0,0,0,0,0,0,0,'dbletube_01.gif',5431.0000,0,4750,0,'2010-01-13 21:54:02','2018-05-27 23:12:18',NULL,35,32,0,0,5,14,19,1,1,0,0,0,1,1,0,0,0,1,0,1,0,6,0,0,5431.0000,24,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(27,1,100,'RAF1210-103',0,0,0,0,0,0,0,0,'dbletube_01.gif',5867.0000,0,5140,0,'2010-01-13 21:56:10','2018-05-27 23:12:50',NULL,46,43,0,0,7,14,19,1,1,0,0,2,1,1,0,0,0,1,0,1,0,7,0,0,5867.0000,24,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(28,1,100,'RAF1210-104',0,0,0,0,0,0,0,0,'dbletube_01.gif',6012.0000,0,5265,0,'2010-01-13 21:58:20','2018-05-27 23:13:13',NULL,47,44,0,0,7,14,19,1,1,0,0,0,1,1,0,0,0,1,0,1,0,8,0,0,6012.0000,24,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(29,1,99,'RAF1210-105',0,0,0,0,0,0,0,0,'dbletube_01.gif',7134.0000,0,6245,0,'2010-01-13 22:00:30','2018-05-27 23:15:49',NULL,51,48,0,0,7,14,19,1,1,0,0,1,1,1,0,0,0,1,0,1,0,9,0,0,7134.0000,24,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(30,1,100,'RAF1212-101',0,0,0,0,0,0,0,0,'dbletube_01.gif',5518.0000,0,5280,0,'2010-01-13 22:03:40','2018-05-28 09:52:51',NULL,37,34,0,0,6,15,18,1,1,0,0,0,1,1,0,0,0,1,0,1,0,10,0,0,5518.0000,29,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(31,1,100,'RAF1212-102',0,0,0,0,0,0,0,0,'dbletube_01.gif',6511.0000,0,5700,0,'2010-01-13 22:05:34','2018-05-28 09:57:54',NULL,40,37,0,0,6,15,18,1,1,0,0,0,1,1,0,0,0,1,0,1,0,11,0,0,6511.0000,25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(32,1,100,'RAF1212-103',0,0,0,0,0,0,0,0,'dbletube_01.gif',7051.0000,0,6170,0,'2010-01-13 22:07:38','2018-05-28 09:58:18',NULL,51,48,0,0,8,15,18,1,1,0,0,0,1,1,0,0,0,1,0,1,0,12,0,0,7051.0000,25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(33,1,100,'RAF1212-104',0,0,0,0,0,0,0,0,'dbletube_01.gif',7279.0000,0,6370,0,'2010-01-13 22:09:37','2018-05-28 09:58:37',NULL,52,49,0,0,8,15,18,1,1,0,0,0,1,1,0,0,0,1,0,1,0,13,0,0,7279.0000,25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(34,1,100,'RAF1212-105',0,0,0,0,0,0,0,0,'dbletube_01.gif',8567.0000,0,7495,0,'2010-01-13 22:11:41','2018-05-28 09:59:01',NULL,57,54,0,0,8,15,18,1,1,0,0,1,1,1,0,0,0,1,0,1,0,14,0,0,8567.0000,25,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(35,1,100,'EBC 502',0,0,0,0,0,0,0,0,'ebc502ELT_01.jpg',681.0000,0,0,0,'2010-01-14 11:40:49','2018-02-07 11:14:27',NULL,2.5,0,0,0,3,2,8,1,1,0,0,3,1,1,0,0,0,1,0,1,0,13,0,0,681.0000,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(36,1,6,'500-12Y',0,0,0,0,0,0,0,0,'500-12_400px.png',2330.0000,0,0,0,'2010-01-14 11:43:42','2018-05-20 21:14:52',NULL,1.5,0,0,0,2,4,6,1,1,0,0,4,1,1,0,0,0,1,0,1,0,11,0,0,2330.0000,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(37,1,18,'EBC 406AP',0,0,0,0,0,0,0,0,'ebc406apELT_01.jpg',1842.0000,0,0,0,'2010-01-14 11:51:02','2018-05-28 12:09:01',NULL,2.5,3,0,0,3,3,7,1,1,0,0,2,1,1,0,0,0,1,0,0,0,8,0,0,1842.0000,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(38,1,50,'',0,0,0,0,0,0,0,0,'kit_01.jpg',0.0000,0,0,0,'2010-01-25 13:33:17','2018-05-28 10:17:29',NULL,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,1,0,1,0,2,0,0,0.0000,2,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(39,1,50,'',0,0,0,0,0,0,0,0,'kit_01.jpg',0.0000,0,0,0,'2010-01-25 13:43:29','2018-05-28 10:23:32',NULL,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,1,0,1,0,3,0,0,0.0000,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(40,1,50,'',0,0,0,0,0,0,0,0,'kit_01.jpg',0.0000,0,0,0,'2010-01-25 13:44:32','2018-05-28 10:24:03',NULL,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,1,0,1,0,4,0,0,0.0000,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(41,1,50,'SUI0001',0,0,0,0,0,0,0,0,'imersion_01.jpg',440.0000,0,0,0,'2010-01-25 14:05:45','2014-02-14 12:11:34',NULL,14,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,440.0000,11,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(43,1,45,'XF-35',0,0,0,0,0,0,0,0,'lifepreserverxf35_01.jpg',98.0000,0,0,0,'2010-01-25 14:15:49','2016-07-12 13:57:15',NULL,3,1,0,0,3,7,9,1,1,0,0,5,1,1,0,0,0,1,0,1,0,9,0,0,98.0000,11,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(44,1,48,'WAT0101-101',0,0,0,0,0,0,0,0,'survivor06_01.jpg',770.0000,0,0,0,'2010-01-25 14:22:12','2014-02-14 12:11:52',NULL,3,3,0,0,8,3,5,1,1,0,0,2,1,1,0,0,0,1,0,1,0,10,0,0,770.0000,11,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(45,1,49,'2881',0,0,0,0,0,0,0,0,'front-_resqlink___72.jpg',296.0000,0,0,0,'2010-01-25 14:36:41','2018-05-28 11:56:32',NULL,1,1,0,0,2,6,1,1,1,0,0,1,1,1,0,0,0,1,0,1,0,12,0,0,296.0000,3,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(46,1,46,'',0,0,0,0,0,0,0,0,'water_puches_01.jpg',22.0000,0,0,0,'2010-01-27 19:12:22','2016-05-17 22:28:58',NULL,30,0,0,0,0,0,0,1,1,0,0,4,1,1,0,0,0,1,0,1,0,0,0,0,22.0000,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(47,1,50,'',0,0,0,0,0,0,0,0,'food_2400b.jpg',104.0000,0,0,0,'2010-01-27 19:29:41','2016-05-17 22:29:56',NULL,44,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,104.0000,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(48,1,47,'',0,0,0,0,0,0,0,0,'food_3682.png',80.0000,0,0,0,'2010-01-27 19:50:00','2016-05-17 22:22:58',NULL,34,0,0,0,0,0,0,1,1,0,0,3,1,1,0,0,0,1,0,1,0,0,0,0,80.0000,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(49,1,49,'',0,0,0,0,0,0,0,0,'energy_bar.jpg',139.0000,0,0,0,'2010-01-27 19:58:02','2016-05-17 22:27:57',NULL,30,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0,1,0,0,0,0,139.0000,12,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(50,1,50,'',0,0,0,0,0,0,0,0,'light_stick.jpg',650.0000,0,0,0,'2010-01-27 20:35:42','2012-07-25 21:07:56',NULL,28,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,650.0000,15,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(51,1,50,'',0,0,0,0,0,0,0,0,'blanket.jpg',275.0000,0,0,0,'2010-01-27 20:42:45','2010-09-21 10:13:35',NULL,31,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,275.0000,13,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(52,1,50,'SKDK',0,0,0,0,0,0,0,0,'guardian/SKDK_01.jpg',65.4000,0,0,0,'2010-01-28 20:09:05','2010-09-20 19:07:31',NULL,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,0,1,0,5,0,0,65.4000,14,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(53,1,50,'SKCK',0,0,0,0,0,0,0,0,'guardian/SKCK-01.jpg',46.9500,0,0,0,'2010-01-28 20:31:26','2010-09-20 19:14:03',NULL,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,0,1,0,7,0,0,46.9500,14,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(54,1,50,'SKD2',0,0,0,0,0,0,0,0,'guardian/SKD2_01.jpg',78.5100,0,0,0,'2010-01-28 20:57:37','2010-09-20 19:10:44',NULL,16,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,0,1,0,6,0,0,78.5100,14,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(55,1,50,'OKFP',0,0,0,0,0,0,0,0,'OKFP_01.jpg',123.8400,0,0,0,'2010-01-28 22:05:24','2010-09-20 19:17:33',NULL,27,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,0,1,0,11,0,0,123.8400,14,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(56,1,50,'OKTP',0,0,0,0,0,0,0,0,'guardian/OKTP_01.jpg',172.8000,0,0,0,'2010-01-28 22:29:47','2010-09-20 19:20:38',NULL,47,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,0,1,0,12,0,0,172.8000,14,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(57,1,50,'SKSP',0,0,0,0,0,0,0,0,'guardian/SKSP_01.jpg',30.9600,0,0,0,'2010-01-29 10:33:38','2010-09-20 18:47:29',NULL,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,30.9600,14,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(58,1,50,'SKCP',0,0,0,0,0,0,0,0,'guardian/SKCP_01.jpg',30.9600,0,0,0,'2010-01-29 10:58:12','2010-09-20 18:50:21',NULL,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,0,1,0,1,0,0,30.9600,14,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(59,1,50,'SKMK',0,0,0,0,0,0,0,0,'guardian/SKMK_01.jpg',16.1300,0,0,0,'2010-01-29 11:22:03','2010-09-20 18:54:36',NULL,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,0,1,0,3,0,0,16.1300,14,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(60,1,50,'SKOK',0,0,0,0,0,0,0,0,'guardian/SKOK_01.jpg',13.9700,0,0,0,'2010-01-29 11:35:46','2010-09-20 19:03:09',NULL,2.5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,1,0,1,0,4,0,0,13.9700,14,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(61,1,49,'DFPK',0,0,0,0,0,0,0,0,'guardian/DFPK_01.jpg',15.9100,0,0,0,'2010-01-29 12:01:54','2010-09-21 09:56:22',NULL,1,0,0,0,0,0,0,1,0,0,0,1,1,1,0,0,0,1,0,1,0,10,0,0,15.9100,4,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(62,1,48,'LCCC',0,0,0,0,0,0,0,0,'guardian/LCCC_01.jpg',7.9900,0,0,0,'2010-01-29 12:31:45','2010-09-21 10:07:37',NULL,0.25,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,1,0,1,0,0,0,0,7.9900,13,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(63,1,50,'LCPA',0,0,0,0,0,0,0,0,'guardian/LCPA_01.jpg',8.9900,0,0,0,'2010-01-29 12:40:51','2010-09-21 10:10:44',NULL,0.25,0,0,0,3,2,1,1,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,8.9900,13,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(64,1,50,'LCLT',0,0,0,0,0,0,0,0,'guardian/LCLT.jpg',16.8000,0,0,0,'2010-02-04 19:26:36','2010-09-21 09:35:46',NULL,1,0,0,0,11,4,4,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,16.8000,15,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(65,1,50,'LCGD',0,0,0,0,0,0,0,0,'guardian/LCGD.jpg',8.1200,0,0,0,'2010-02-04 19:40:07','2010-09-21 09:32:57',NULL,0,1,0,0,8,2,2,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,8.1200,15,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(66,1,50,'LCKR',0,0,0,0,0,0,0,0,'guardian/LCKR.jpg',4.9000,0,0,0,'2010-02-04 19:45:07','2010-09-21 09:48:50',NULL,2,0,0,0,3,5,2,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,4.9000,15,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(67,1,50,'LCSF',0,0,0,0,0,0,0,0,'guardian/LCSF.jpg',6.3000,0,0,0,'2010-02-04 19:51:48','2010-09-21 09:49:34',NULL,0.5,0,0,0,7,2,2,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,6.3000,15,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(68,1,50,'LCQF',0,0,0,0,0,0,0,0,'guardian/LCQF.jpg',3.9200,0,0,0,'2010-02-04 19:56:27','2010-09-21 09:28:41',NULL,0.3,0,0,0,4,2,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,3.9200,15,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(69,1,50,'LCBS',0,0,0,0,0,0,0,0,'guardian/LCBS.jpg',0.9800,0,0,0,'2010-02-05 00:11:57','2010-09-21 09:23:52',NULL,0.1,0,0,0,8,2,1,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,0.9800,15,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(70,1,50,'SWUH',0,0,0,0,0,0,0,0,'guardian/SWUH.jpg',43.1300,0,0,0,'2010-02-05 18:03:12','2010-09-21 10:04:47',NULL,9.5,9,0,0,10,7,7,0,0,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,43.1300,13,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(71,1,50,'',0,0,0,0,0,0,0,0,'junglekit7.jpg',459.0000,0,0,0,'2010-07-11 22:27:48','2018-05-28 10:20:47',NULL,11.5,1,0,0,2,9,17,0,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,459.0000,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(72,1,100,'1900-3',0,0,0,0,0,0,0,0,'nineman_01.gif',2149.0000,0,2056,0,'2010-08-23 20:17:09','2018-05-28 00:31:47',NULL,23,20,0,0,5,12,14,0,1,0,0,0,1,1,0,0,0,1,0,1,0,6,0,0,2149.0000,20,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(73,1,1000,'AADX-MUFIRE',0,0,0,0,0,0,0,0,'firefighter_kit_complete_605790826_0303-0303.png',1119.0000,0,0,0,'2016-07-12 13:10:30','2016-07-12 14:04:12',NULL,58,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,1119.0000,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(74,1,1000,'AAADX-SFAK',0,0,0,0,0,0,0,0,'solas_survivalkit_dx0402m.jpg',80.0000,0,0,0,'2016-07-12 13:20:20','2016-07-12 14:56:28',NULL,2,0,0,0,0,0,0,1,1,0,0,0,10,1,0,0,0,0,0,1,0,0,0,0,80.0000,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(75,1,999,'AAADX-RNC',0,0,0,0,0,0,0,0,'rescue_net_1230457653_0505-2828.jpg',1999.0000,0,0,0,'2016-07-12 13:33:39','2018-05-28 00:38:13',NULL,15,0,0,0,0,0,0,1,1,0,0,1,1,1,0,0,0,1,0,1,0,0,0,0,1999.0000,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(76,1,1000,'AAADX-FB',0,0,0,0,0,0,0,0,'fire_blanket_198081866_0707-0101.png',24.0000,0,0,0,'2016-07-12 13:38:58','2016-07-12 15:00:00',NULL,7,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,24.0000,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(77,1,1000,'AAADX-SMLJ',0,0,0,0,0,0,0,0,'Life_vest_adult_SOLAS_VSMK10AM.jpg',54.0000,0,0,0,'2016-07-12 13:55:39',NULL,NULL,7,0,0,0,0,0,0,1,1,0,0,0,10,10,0,0,0,1,0,1,0,0,0,0,54.0000,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(78,1,1000,'AAADX-LRB30_CGSMTC',0,0,0,0,0,0,0,0,'LifeRingBuoys_632586047_1212-0505.jpg',83.0000,0,0,0,'2016-07-12 14:36:02','2016-07-12 14:59:21',NULL,37,0,0,0,0,0,0,1,1,0,0,0,3,0,0,0,0,0,0,1,0,0,0,0,83.0000,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(79,1,1000,'AAADXMU275REDM',0,0,0,0,0,0,0,0,'275_red_503606177_1010-1616.jpg',369.0000,295,0,0,'2016-07-12 21:35:13','2018-05-28 10:35:23',NULL,15,0,0,0,0,0,0,1,1,0,0,0,6,1,0,0,0,0,0,1,0,0,0,0,369.0000,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(80,1,1000,'AAADXMU275BLUM',0,0,0,0,0,0,0,0,'275_blue_156298958_1010-1616.jpg',369.0000,295,0,0,'2016-07-12 21:35:13','2018-05-28 10:36:52',NULL,15,0,0,0,0,0,0,1,1,0,0,0,6,6,0,0,0,0,0,1,0,0,0,0,369.0000,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(81,1,0,'MU150REDM',0,0,0,0,0,0,0,0,NULL,398.0000,295,0,0,'2016-07-12 21:35:13','2016-07-15 13:05:40',NULL,0,0,0,0,0,0,0,1,0,0,NULL,0,1,1,0,0,0,0,0,1,0,0,0,0,0.0000,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(82,1,45,'XF-35',0,0,0,0,0,0,0,0,'lifepreserverxf35_01.jpg',98.0000,0,0,0,'2016-07-15 13:05:28','2018-05-28 10:25:59',NULL,3,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,1,0,1,0,9,0,0,98.0000,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(83,1,99,'MA-1',0,0,0,0,0,0,0,0,'7324-A-HR1_black.jpg',49.9900,0,0,0,'2016-11-22 13:36:42',NULL,NULL,3,0,0,0,0,0,0,1,0,0,1,0,1,1,1,0,0,1,0,1,0,0,0,0,49.9900,30,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0),(84,1,0,'',0,0,0,0,0,0,0,0,'DATREX_INFANT_VEST.jpg',78.0000,0,0,0,'2017-12-20 12:35:40','2018-05-28 10:28:30',NULL,2,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,1,0,1,0,0,0,0,78.0000,16,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);
/*!40000 ALTER TABLE `products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `products_attributes`
--

DROP TABLE IF EXISTS `products_attributes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `products_attributes` (
  `products_attributes_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_id` int(11) NOT NULL DEFAULT '0',
  `options_id` int(11) NOT NULL DEFAULT '0',
  `options_values_id` int(11) NOT NULL DEFAULT '0',
  `options_values_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `price_prefix` char(1) NOT NULL DEFAULT '',
  `products_options_sort_order` int(11) NOT NULL DEFAULT '0',
  `product_attribute_is_free` tinyint(1) NOT NULL DEFAULT '0',
  `products_attributes_weight` float NOT NULL DEFAULT '0',
  `products_attributes_weight_prefix` char(1) NOT NULL DEFAULT '',
  `attributes_display_only` tinyint(1) NOT NULL DEFAULT '0',
  `attributes_default` tinyint(1) NOT NULL DEFAULT '0',
  `attributes_discounted` tinyint(1) NOT NULL DEFAULT '1',
  `attributes_image` varchar(64) DEFAULT NULL,
  `attributes_price_base_included` tinyint(1) NOT NULL DEFAULT '1',
  `attributes_price_onetime` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_offset` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_onetime` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_factor_onetime_offset` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_qty_prices` text,
  `attributes_qty_prices_onetime` text,
  `attributes_price_words` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_words_free` int(4) NOT NULL DEFAULT '0',
  `attributes_price_letters` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `attributes_price_letters_free` int(4) NOT NULL DEFAULT '0',
  `attributes_required` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`products_attributes_id`),
  KEY `idx_id_options_id_values_zen` (`products_id`,`options_id`,`options_values_id`),
  KEY `idx_opt_sort_order_zen` (`products_options_sort_order`)
) ENGINE=MyISAM AUTO_INCREMENT=143 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `products_attributes`
--

LOCK TABLES `products_attributes` WRITE;
/*!40000 ALTER TABLE `products_attributes` DISABLE KEYS */;
INSERT INTO `products_attributes` VALUES (123,25,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(124,25,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(78,3,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(7,38,5,5,384.0000,'',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(8,38,5,6,551.0000,'',2,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(9,38,5,7,646.0000,'',3,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(10,38,5,8,703.0000,'',4,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(11,38,5,9,846.0000,'',5,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(27,38,7,21,1307.0000,'+',12,1,2.5,'+',0,0,1,'attributes/ebc406apELT_01.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(26,38,7,22,502.0000,'+',11,1,2.5,'+',0,0,1,'attributes/ebc502ELT_01.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(14,39,4,10,498.0000,'',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(19,39,4,11,713.0000,'',2,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(16,39,4,12,784.0000,'',3,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(17,39,4,13,822.0000,'',4,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(18,39,4,14,1036.0000,'',5,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(51,40,6,19,2209.0000,'',5,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(47,40,6,15,1043.0000,'',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(48,40,6,16,1556.0000,'',2,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(49,40,6,17,1712.0000,'',3,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(50,40,6,18,1929.0000,'',4,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(25,38,7,23,399.0000,'+',10,1,1,'+',0,0,1,'attributes/ACRAquaLink406-ELT_01.jpg',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(28,38,7,20,2185.0000,'+',13,1,1.5,'+',0,0,1,'attributes/50012y-ELT_01.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(46,40,7,20,2185.0000,'+',13,1,1.5,'+',0,0,1,'attributes/50012y-ELT_01.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(45,40,7,21,1307.0000,'+',12,1,2.5,'+',0,0,1,'attributes/ebc406apELT_01.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(44,40,7,22,502.0000,'+',11,1,2.5,'+',0,0,1,'attributes/ebc502ELT_01.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(43,40,7,23,399.0000,'+',10,1,1,'+',0,0,1,'attributes/ACRAquaLink406-ELT_01.jpg',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(34,39,7,23,399.0000,'+',10,1,1,'+',0,0,1,'attributes/ACRAquaLink406-ELT_01.jpg',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(35,39,7,22,502.0000,'+',11,1,2.5,'+',0,0,1,'attributes/ebc502ELT_01.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(36,39,7,21,1307.0000,'+',12,1,2.5,'+',0,0,1,'attributes/ebc406apELT_01.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(37,39,7,20,2185.0000,'+',13,1,1.5,'+',0,0,1,'attributes/50012y-ELT_01.jpg',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(52,40,0,0,0.0000,'+',0,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(77,3,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(55,1,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(74,1,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(76,2,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(75,2,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(80,4,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(79,4,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(82,5,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(81,5,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(84,6,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(83,6,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(86,7,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(85,7,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(88,8,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(87,8,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(90,9,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(89,9,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(92,72,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(91,72,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(93,10,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(94,10,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(95,11,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(96,11,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(97,12,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(98,12,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(99,13,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(100,13,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(101,14,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(102,14,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(103,15,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(104,15,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(105,16,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(106,16,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(107,17,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(108,17,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(109,18,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(110,18,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(111,19,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(112,19,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(113,20,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(114,20,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(115,21,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(116,21,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(117,22,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(118,22,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(119,23,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(120,23,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(121,24,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(122,24,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(125,26,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(126,26,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(127,27,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(128,27,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(129,28,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(130,28,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(131,29,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(132,29,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(133,30,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(134,30,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(135,31,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(136,31,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(137,32,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(138,32,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(139,33,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(140,33,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(141,34,1,1,25.0000,'+',0,0,0,'+',0,1,0,'',0,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0),(142,34,9,2,0.0000,'+',1,1,0,'+',0,0,1,'',1,0.0000,0.0000,0.0000,0.0000,0.0000,'','',0.0000,0,0.0000,0,0);
/*!40000 ALTER TABLE `products_attributes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `products_attributes_download`
--

DROP TABLE IF EXISTS `products_attributes_download`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `products_attributes_download` (
  `products_attributes_id` int(11) NOT NULL DEFAULT '0',
  `products_attributes_filename` varchar(255) NOT NULL DEFAULT '',
  `products_attributes_maxdays` int(2) DEFAULT '0',
  `products_attributes_maxcount` int(2) DEFAULT '0',
  PRIMARY KEY (`products_attributes_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `products_attributes_download`
--

LOCK TABLES `products_attributes_download` WRITE;
/*!40000 ALTER TABLE `products_attributes_download` DISABLE KEYS */;
/*!40000 ALTER TABLE `products_attributes_download` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `products_description`
--

DROP TABLE IF EXISTS `products_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `products_description` (
  `products_id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL DEFAULT '1',
  `products_name` varchar(64) NOT NULL DEFAULT '',
  `products_description` text,
  `products_url` varchar(255) DEFAULT NULL,
  `products_viewed` int(5) DEFAULT '0',
  `products_description2` varchar(255) NOT NULL,
  PRIMARY KEY (`products_id`,`language_id`),
  KEY `idx_products_name_zen` (`products_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `products_description`
--

LOCK TABLES `products_description` WRITE;
/*!40000 ALTER TABLE `products_description` DISABLE KEYS */;
INSERT INTO `products_description` VALUES (1,1,'4-Man Basic Life Raft Non TSO','Lightest and smallest package on the market today, designed for private pilots and pleasure boaters.','',3462,''),(2,1,'4-Man Life Raft w/Canopy Only Non TSO','4-6 Man Life Raft. Easily deployed by women, children, exhausted pilots, or boaters.  Non TSO.','',3381,''),(3,1,'4-Man Life Raft w/Standard Survival Kit Non TSO','Lightest and smallest package on the market today, designed for private pilots and pleasure boaters.','',1172,''),(4,1,'4-Man Life Raft w/Standard Plus Survival Kit Non TSO','Lightest and smallest package on the market today, designed for private pilots and pleasure boaters.','',1164,''),(5,1,'4-Man Life Raft w/Deluxe Survival Kit Non TSO','Lightest and smallest package on the market today, designed for private pilots and pleasure boaters.','',1748,''),(6,1,'9-Man Basic Life Raft Non TSO','9-13 Man Life Raft No TSO.','',1422,''),(7,1,'9-Man Life Raft w/Standard Survival Kit Non TSO','Lightest and smallest package on the market today, designed for private pilots and pleasure boaters.','',1224,''),(8,1,'9-Man Life Raft w/Standard Plus Survival Kit Non TSO','Lightest and smallest package on the market today, designed for private pilots and pleasure boaters.','',1045,''),(9,1,'9-Man Life Raft w/Deluxe Survival Kit Non TSO','Lightest and smallest package on the market today, designed for private pilots and pleasure boaters.','',1271,''),(10,1,'4-Man Life Raft Basic Non TSO with Bulkhead Design','Single tube with bulkhead design creating two separate chambers.','',1667,''),(11,1,'4-Man Life Raft w/Canopy Only TSO','FAA TSO-C70a, Type II Approved','',2072,''),(12,1,'4-Man Life Raft w/FAR 91 Survival Kit TSO','FAA TSO-C70a, Type II Approved','',1656,''),(13,1,'4-Man Life Raft w/FAR 121 Survival Kit TSO','FAA TSO-C70a, Type II Approved','',4214,''),(14,1,'4-Man Life Raft w/FAR 135 Survival Kit TSO','4 person capacity with an overload of 6 - FAA TSO-C70a, Type II Approved','',2052,''),(15,1,'8-Man Basic Life Raft Non TSO with Bulkhead Design','Single tube with bulkhead design creating two separate chambers.','',3334,''),(16,1,'8-Man Life Raft w/Canopy Only TSO','FAA TSO-C70a, Type II Approved','',1540,''),(17,1,'8-Man Life Raft w/FAR 91 Survival Kit TSO','8 person capacity with an overload of 12 - FAA TSO-C70a, Type II Approved','',2979,''),(18,1,'8-Man Life Raft w/FAR 121 Survival Kit TSO','8 person capacity with an overload of 12 - FAA TSO-C70a, Type II Approved','',1523,''),(19,1,'8-Man Life Raft w/FAR 135 Survival Kit TSO','8 person capacity with an overload of 12 - FAA TSO-C70a, Type II Approved','',1728,''),(20,1,'6-Man Life Raft Basic Non TSO with Double Tube Design','Constructed of heavy-duty FAA approved neoprene coated nylon fabric.','',3578,''),(21,1,'6-Man Life Raft w/Canopy Only TSO','FAA TSO-C70a, Type I Approved. Constructed of heavy-duty FAA approved neoprene coated nylon fabric.','',3275,''),(22,1,'6-Man Life Raft w/FAR 91 Survival Kit TSO','FAA TSO-C70a, Type I Approved','',1693,''),(23,1,'6-Man Life Raft w/FAR 121 Survival Kit TSO','FAA TSO-C70a, Type I Approved','',1431,''),(24,1,'6-Man Life Raft w/FAR 135 Survival Kit TSO','FAA TSO-C70a, Type I Approved','',1558,''),(25,1,'10-Man Life Raft Basic Non TSO w/ Double Tube Design','Constructed of heavy-duty FAA approved neoprene coated nylon fabric.','',3551,''),(26,1,'10-Man Life Raft w/Canopy Only TSO','FAA TSO-C70a, Type I Approved. Constructed of heavy-duty FAA approved neoprene coated nylon fabric.','',1613,''),(27,1,'10-Man Life Raft w/FAR 91 Survival Kit TSO','FAA TSO-C70a, Type I Approved','',4147,''),(28,1,'10-Man Life Raft w/FAR 121 Survival Kit TSO','FAA TSO-C70a, Type I Approved','',1786,''),(29,1,'10-Man Life Raft w/FAR 135 Survival Kit TSO','FAA TSO-C70a, Type I Approved','',2395,''),(30,1,'12-Man Life Raft Basic Non TSO w/ Double Tube Design','Constructed of heavy-duty FAA approved neoprene coated nylon fabric.','',3898,''),(31,1,'12-Man Life Raft w/Canopy Only TSO','FAA TSO-C70a, Type I Approved. Constructed of heavy-duty FAA approved neoprene coated nylon fabric.','',1867,''),(32,1,'12-Man Life Raft w/FAR 91 Survival Kit TSO','FAA TSO-C70a, Type I Approved\r\nLightest and smallest package on the market today, designed for private pilots and pleasure boaters.','',1724,''),(33,1,'12-Man Life Raft w/FAR 121 Survival Kit TSO','FAA TSO-C70a, Type I Approved','',1364,''),(34,1,'12-Man Life Raft w/FAR 135 Survival Kit TSO','FAA TSO-C70a, Type I Approved','',1971,''),(1,2,'Balsa Salvavida 4-Hombre Basico No TSO','Balsa Salvavida 4-6 del hombre. El paquete mÃ¡s ligero y mÃ¡s pequeÃ±o en el mercado hoy, diseÃ±ado para los pilotos privados y los navegantes del placer. TSO no aprobada.','',1175,''),(2,2,'Balsa Salvavida 4-Hombre con PabellÃ³n solamente No TSO','Balsa Salvavida 4-6 del hombre. Desplegado fÃ¡cilmente por las mujeres, los niÃ±os, agotaron pilotos, o a navegantes. TSO no aprobada.','',1225,''),(3,2,'Balsa Salvavida 4-Hombre con Kit de Supervivencia  EstÃ¡ndar No ','Balsa Salvavida 4-6 del Hombre Non TSO\r\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia EstÃ¡ndar</p></th>\r\n  </tr>\r\n</table>\r\n<table width=\"100%\" bord','',619,''),(4,2,'Balsa Salvavida 4-Hombre con Kit de Supervivencia EstÃ¡ndar MÃ¡s','<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia EstÃ¡ndar MÃ¡s</p></th>\r\n  </tr>\r\n</table>\r\n<table width=\"100%\" border=\"1\" align=\"center\" cellpadding=\"','',1569,''),(5,2,'Balsa Salvavida 4-Hombre con Kit de Supervivencia  de lujo No TS','4-6 del hombre TSO no aprobada\r\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia de lujo</p></th>\r\n  </tr>\r\n</table>\r\n<table width=\"100%\" border=\"1\" ali','',744,''),(6,2,'Balsa Salvavida 9-Hombre Basico No TSO','Balsa Salvavida 9-13 del hombre TSO no aprobada','',935,''),(7,2,'Balsa Salvavida 9-Hombre con Kit de Supervivencia EstÃ¡ndar No T','9-13 Hombre Balsa Salvavida TSO No Aprobada\r\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia  EstÃ¡ndar</p></th>\r\n  </tr>\r\n</table>\r\n<table width=\"100%','',669,''),(8,2,'Balsa Salvavida 9-Hombre con Kit de Supervivencia EstÃ¡ndar MÃ¡s','<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia EstÃ¡ndar MÃ¡s</p></th>\r\n  </tr>\r\n</table>\r\n<table width=\"100%\" border=\"1\" align=\"center\" cellpadding=\"','',681,''),(9,2,'Balsa Salvavida 9-Hombre con Kit de Supervivencia de lujo No TSO','Balsa Salvavida 9-13 del hombre TSO no aprobada\r\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia de lujo</p></th>\r\n  </tr>\r\n</table>\r\n<table width=\"100','',680,''),(10,2,'Balsa Salvavida Basico 4-Hombre','<h4>La capacidad de 4 personas con una sobrecarga de 6 <br /></h4>','',730,''),(11,2,'Balsa Salvavida 4-Hombre con PabellÃ³n solamente TSO','<h4>La capacidad de 4 personas con una sobrecarga de 6 <br />FAA TSO-C70a, Tipo II Aprobado</h4>','',860,''),(12,2,'Balsa Salvavida 4-Hombre con Kit de Supervivencia FAR 91 TSO','<h4>La capacidad de 4 personas con una sobrecarga de 6 <br />FAA TSO-C70a, Tipo II Aprobado</h4>\r\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia FAR 9','',760,''),(13,2,'Balsa Salvavida 4-Hombre  con Kit de Supervivencia FAR 121 TSO','<h4>La capacidad de 4 personas con una sobrecarga de 6. <br />FAA TSO-C70a, Tipo II Aprobado</h4>\r\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia FAR ','',1738,''),(14,2,'Balsa Salvavida 4-Hombre con Kit de Supervivencia FAR 135 TSO','<h4>La capacidad de 4 personas con una sobrecarga de 6 <br />FAA TSO-C70a, Tipo II Aprobado</h4<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia FAR 135<','',1133,''),(15,2,'Balsa Salvavida Basico 8-Hombre','<h4>La capacidad de 8 personas con una sobrecarga de 12 </h4>','',1261,''),(16,2,'Balsa Salvavida 8-Hombre con PabellÃ³n solamente TSO','<h4>La capacidad de 8 personas con una sobrecarga de 12. <br />FAA TSO-C70a, Tipo II Aprobado</h4>','',767,''),(17,2,'Balsa Salvavida 8-Hombre con Kit  de Supervivencia FAR 91 TSO','<h4>La capacidad de 8 personas con una sobrecarga de 12 <br />FAA TSO-C70a, Tipo II Aprobado</h4>\r\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia FAR ','',1247,''),(18,2,'Balsa Salvavida 8-Hombre con Kit de Supervivencia FAR 121 TSO','<h4>La capacidad de 8 personas con una sobrecarga de 12. <br />FAA TSO-C70a, Tipo II Aprobado</h4>\r\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia FAR','',784,''),(19,2,'Balsa Salvavida 8-Hombre con Kit de Supervivencia FAR 135 TSO','<h4>La capacidad de 8 personas con una sobrecarga de 12 <br />FAA TSO-C70a, Tipo II Aprobado</h4>\r\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia FAR ','',666,''),(20,2,'Balsa Salvavida Basico 6 Hombre','Balsa Salvavida Basico 6 Hombre TSO No Aprobada','',1374,''),(21,2,'Balsa Salvavida 6-Hombre con PabellÃ³n solamente TSO','<h4>FAA TSO-C70a, Tipo I Aprobado</h4>','',1308,''),(22,2,'Balsa Salvavida 6-Hombre con Kit de Supervivencia FAR 91 TSO','<h4>FAA TSO-C70a, Tipo I Aprobado</h4>\r\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia FAR 91</p></th>\r\n  </tr>\r\n</table>\r\n<table width=\"100%\" border=','',772,''),(23,2,'Balsa Salvavida 6-Hombre con Kit de Supervivencia FAR 121 TSO','<h4>FAA TSO-C70a, Tipo I Aprobado</h4>\r\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia FAR 121</p></th>\r\n  </tr>\r\n</table>\r\n<table width=\"100%\" border','',703,''),(24,2,'Balsa Salvavida 6-Hombre con Kit de Supervivencia  FAR 135  TSO','<h4>FAA TSO-C70a, Tipo I Aprobado</h4>\r\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia FAR 135</p></th>\r\n  </tr>\r\n</table>\r\n<table width=\"100%\" border','',1768,''),(25,2,'Balsa Salvavida BÃ¡sico 10-Hombre','Balsa Salvavida BÃ¡sico 10-Hombre TSO No Aprobada','',1317,''),(26,2,'Balsa Salvavida 10-Hombre con el pabellÃ³n solamente TSO','<h4>FAA TSO-C70a, Tipo I Aprobado</h4>','',761,''),(27,2,'Balsa Salvavida 10-Hombre con Kit de Supervivencia FAR 91 TSO','<h4>FAA TSO-C70a, Tipo I Aprobado</h4>\r\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia FAR 91</p></th>\r\n  </tr>\r\n</table>\r\n<table width=\"100%\" border=','',1386,''),(28,2,'Balsa Salvavida 10-Hombre con Kit de Supervivencia FAR 121 TSO','<h4>FAA TSO-C70a, Tipo I Aprobado</h4>\r\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia FAR 121</p></th>\r\n  </tr>\r\n</table>\r\n<table width=\"100%\" border','',714,''),(29,2,'Balsa Salvavida 10-Hombre con Kit de Supervivencia FAR 135 TSO','<h4>FAA TSO-C70a, Tipo I Aprobado</h4>\r\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia FAR 135</p></th>\r\n  </tr>\r\n</table>\r\n<table width=\"100%\" border','',782,''),(30,2,'Balsa Salvavida Basico 12-Hombre','Balsa Salvavida Basico 12-Hombre  TSO No Aprobada','',1390,''),(31,2,'Balsa Salvavida 12-Hombre con el pabellÃ³n solamente TSO','<h4>FAA TSO-C70a, Tipo I Aprobado</h4>','',780,''),(32,2,'Balsa Salvavida 12-Hombre con Kit de Supervivencia FAR 91 TSO','<h4>FAA TSO-C70a, Tipo I Aprobado</h4>\r\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia FAR 91</p></th>\r\n  </tr>\r\n</table>\r\n<table width=\"100%\" border=','',723,''),(33,2,'Balsa Salvavida 12-Hombre con Kit de Supervivencia FAR 121 TSO','<h4>FAA TSO-C70a, Tipo I Aprobado</h4>\r\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia FAR 121</p></th>\r\n  </tr>\r\n</table>\r\n<table width=\"100%\" border','',683,''),(34,2,'Balsa Salvavida 12-Hombre con Kit de Supervivencia FAR 135 TSO','<h4>FAA TSO-C70a, Tipo I Aprobado</h4>\r\n<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia FAR 135</p></th>\r\n  </tr>\r\n</table>\r\n<table width=\"100%\" border','',809,''),(35,2,'EBC 502 Faro del Localizador de la Emergencia(ELT) -  Faro del L','<table cellpadding=\"10\" cellspacing=\"0\" border=\"0\" width=\"100%\">\r\n  <tbody>\r\n    <tr>\r\n      <td valign=\"top\"><h6>EBC 502 -   TRANSMISOR DUAL DEL LOCALIZADOR DE LA EMERGENCIA DE LA FRECUENCIA  </h6>\r\n        <p> El ELT con el monitor audible, transmite en','',1690,''),(35,1,'EBC 502 Emergency Locator Transmitter (ELT) - Survival Locator B','<table cellpadding=\"10\" cellspacing=\"0\" border=\"0\" width=\"100%\">\r\n  <tbody>\r\n    <tr>\r\n      <td valign=\"top\"><h6>EBC 502 - DUAL FREQUENCY EMERGENCY LOCATOR TRANSMITTER</h6>\r\n        <p><em>ELT with audible monitor, transmits on 121.5 &amp; 243.0MHz. Cabi','',3332,''),(36,2,'500-12Y Faro del Localizador de la Emergencia(ELT) | Faro del Lo','Completa de la FAA y la JAA Aprobaciones de conformidad con el TSO C91a y C126 Convenio sobre, JTSO 2C91a y 2C126 COSPAS-SARSAT AprobaciÃ³n 111, CAA WR1029 N Âº AprobaciÃ³n. <br />\r\n<br />\r\nEl PLB puede ser embalado dentro de nuestra FAA TSO Aprobado vida','',1901,''),(36,1,'500-12Y Emergency Transmitter (ELT) Survival Locator Beacon','Full FAA and JAA Approvals in accordance with TSO C91a and C126, JTSO-2C91a and 2C126 COSPAS/SARSAT Approval 111, CAA Approval No. WR1029.<br />\r\n<br />\r\nThe PLB may be packed inside our FAA TSO Approved Life Rafts. <br />\r\n<br />','www.hr-smith.com/images/stories/500-12.pdf',11665,''),(37,2,'EBC 406AP Faro del Localizador de la Emergencia(ELT) - Faro del ','<strong>El EBC 406</strong> es el primer de la nueva lÃ­nea de EBC digital ELT\' s. DiseÃ±ado con la mÃ¡s nueva tecnologÃ­a tambiÃ©n incorpora el mejor y las caracterÃ­sticas probadas que caracterizan todo el EBC\' transmisores del localizador de la emergen','',1781,''),(37,1,'EBC 406AP Emergency Locator Transmitter (ELT) - Survival Locator','EBC 406AP – AUTOMATIC PORTABLE EMERGENCY LOCATOR TRANSMITTER<br>\r\n\r\n<p><em>For fixed wing aircraft.  Cabin mounted, complete system with external whip antenna, transmits on 406.028 &amp; 121.5MHz.  Meets TSO-C91a and TSO-C126. Approved for use without a Remote Control Monitor.</em></p>\r\n<p></p>\r\n<p><strong><a href=\"http://emergencybeaconcorp.com/wp-content/uploads/2014/11/406AP.pdf\" target=\"_blank\">Product Manual</a></strong></p>\r\n<p>The EBC 406AP is designed for installation in the cabin or cockpit of a fixed \r\nwing aircraft. It transmits on the frequencies of 406.028 and 121.5 MHz. \r\nThe system comes with a transmitter, portable/survival antenna, mounting \r\nbracket, external whip antenna with a 6 foot coax cable and a battery pack. \r\nSince it is installed near the pilot a remote control monitor is not required. \r\nIf the ELT is activated a built-in monitor emits a loud beeping tone and the \r\nLED flashes. The portable/survival antenna allows the ELT to transmit a \r\ngood signal when used outside the aircraft. </p>\r\n<p>Designed with the newest technology, the EBC 406AP also incorporates the \r\nbest and proven features that characterize all of EBC’s emergency locator \r\ntransmitters. These transmitters have encapsulated electronics and battery \r\npacks to provide added protection against shock, moisture and other \r\nenvironmental hazards. </p>\r\n<p>The EBC 406AP is meant to be installed near the pilot. This eliminates the \r\nneed for a remote control monitor and thus reduces the cost of installation \r\nand the need to use panel space. This type of installation also allows for \r\neasy removal of the ELT in case of an emergency – just disconnect the \r\nantenna cable and attach the portable/survival antenna after leaving the \r\naircraft. </p>\r\n<p>A self-test feature is built into the EBC 406AP. This feature allows the pilot \r\nto test for output power on both 406.028 and 121.5 MHz, the connection \r\nwith the antenna, and the condition of the digital signal.</p>\r\n<p>The EBC 406AP is approved by the FAA under TSO-91a and TSO-126, \r\napproved by COSPAS/SARSAT and meets FCC requirements under Part 87.</p>','http://emergencybeaconcorp.com/products/ebc-406ap/',3767,''),(38,2,'EstÃ¡ndar / 91 Tipo Kit de Supervivencia','<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia EstÃ¡ndar / 91Tipo</p></th>\r\n  </tr>\r\n</table>\r\n<table width=\"100%\" border=\"1\" align=\"center\" cellpaddi','',1490,''),(38,1,'Standard / 91 Type Survival Kit','Standard / 91 Type Survival Kit','',2255,''),(39,2,'EstÃ¡ndar MÃ¡s / 121 Tipo Kit de Supervivencia','<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia EstÃ¡ndar MÃ¡s / 121 Tipo</p></th>\r\n  </tr>\r\n</table>\r\n<table width=\"100%\" border=\"1\" align=\"center\" ce','',1552,''),(39,1,'Standard Plus / 121 Type Survival Kit','Standard Plus / 121 Type Survival Kit','',2329,''),(40,2,'De Lujo / 135 Tipo Kit de Supervivencia','<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"3\">\r\n  <tr>\r\n    <th scope=\"col\"><p class=\"indexProductListCatHeading\">Kit de Supervivencia de Lujo / 135 Tipo</p></th>\r\n  </tr>\r\n</table>\r\n<table width=\"100%\" border=\"1\" align=\"center\" cellpaddi','',1635,''),(40,1,'Deluxe / 135 Type Survival Kit','Deluxe / 135 Type Survival Kit','',3911,''),(52,2,'Kit de Supervivencia de lujo','El kit incluye el siguiente: Alimento y agua: 12 cajas de cajas de agua de Blox del Aqua - dos veces la cantidad de agua como surtidores principales y cada caja tiene un perÃ­odo de validez de 5 aÃ±os barras del alimento de 12 - 400 calorÃ­as (4800 calorÃ','',2151,''),(41,2,'Juego de InmersiÃ³n','<strong>CARACTERÃSTICAS</strong><br /><br /><li>MitÃ³n digitado tres para guardar su calentador de los dedos.</li><br />\r\n<li>Dos tirones de la lengÃ¼eta de la cremallera en la cremallera localizada en la parte superior e inferior de la cremallera. Esto ','',962,''),(41,1,'Immersion Suit','<strong>FEATURES</strong><br /><br /><li>Three fingered mitt to keep your fingers warmer.</li><br />\r\n  <li>Two zipper tab pulls on zipper located at top and bottom of zipper.  This cuts down on donning time allowing the zipper to be pulled straight up. <','',1573,''),(43,2,'Chaleco Salvavidas Inflable auto (XF-35) con el marcador del tin','<strong>Â¡Nuevo! Intervalo de cinco aÃ±os de la inspecciÃ³n (Llena en polybag estÃ¡ndar)<br />\r\n\r\nÂ¡El chaleco de la cÃ©lula gemelo mÃ¡s ligero en el mercado!</strong><br /><br />\r\n\r\n<li> CategorÃ­a de chalecoe: Adulto - NiÃ±o combinaciÃ³n</li>\r\n<li> Peso','',4260,''),(43,1,'Life Vest Auto Inflatable (XF-35)  w / Sea Dye Marker and Signal','<strong>New! 5-Year Interval of Inspection (Packed in Standard Polybag)<br />\r\n\r\nLightest Twin Cell Vest on the Market!</strong><br /><br />\r\n\r\n<li> Category of Preserver: Adult/Child Combination </li>\r\n<li> Weight of wearer: 35 lbs. (15.91kg) and above <','',8686,''),(44,2,'Del Fabricante del Agua  \"Survivor 06\"','<strong>Tome al sobreviviente junto con usted y olvide sus preocupaciones del agua dulce.</strong>\r\n<br /><br />\r\nDeriva en el mar abierto usado para crear el dilema histÃ³rico: agua, agua, por todas partes, pero no una gota a beber. Eso se cambia todo. A','',1273,''),(44,1,'Watermaker \"Survivor 06\"','<strong>Take the Survivor along with you and forget your fresh water worries.</strong>\r\n<br /><br />\r\nDrifting on the open sea used to create the age-old dilemma:  water, water, everywhere, but not a drop to drink.  That\'s all changed.  Now you can produc','',4081,''),(45,2,'ResQLink 406 - Transmisor del Localizador de la Emergencia (ELT)','<strong>ACR ResQLink 406 MHz GPS PLB ARC # 2881 (PLB-375)</strong><br />\r\n<br />\r\nRecorrido costa afuera con confianza. Con tres niveles de la tecnologÃ­a integrada de la seÃ±al - colocaciÃ³n del GPS, una seÃ±al de gran alcance de 406 megaciclos y 121.5 m','',1861,''),(45,1,'ResQLink  406 Emergency Locator Transmitter (ELT)','ACR ResQLink 406 MHz GPS PLB ARC # 2881 (PLB-375<br />\r\n<br />\r\n<strong>Features:</strong><br><br>\r\n\r\nLatest and greatest EPIRB on the market today for it\'s size and price!\r\nVery compact and can be tied on to the handle of our life rafts.\r\n\r\nHead offshore with confidence. With three levels of integrated signal technology — GPS positioning, a powerful 406 MHz signal & 121.5 MHz homing capability — the ResQLink quickly & accurately relays your position to a worldwide network of Search & Rescue satellites, reducing search time & increasing your chances of survival. It’s a reliable signaling technology that has saved more than 25,000 lives since 1982. The ResQLink broadcasts a unique registered distress signal that not only tells rescuers where you are, but who you are. The onboard GPS can fix your position to within 100 meters and then utilizes a powerful 406 MHz signal to relay your distress call to orbiting satellites. The ResQLink is small enough to be easily carried in a pack or pocket or can be worn on deck, at the helm, in quarters or on a life vest and will float if accidentally dropped overboard. Performing a full functional self test of the PLB’s internal circuitry, battery voltage & power, & 406 MHz transmission gives you the peace of mind knowing your PLB will work the moment you need it to the most.\r\n\r\nACR Exclusive: Built-in GPS acquisition test mode allows you to test GPS functionality up to 12 times over the life of the battery life. Tap in to the same field-tested rescue technology used by the U.S. Military, Coast Guard, NATO Special Forces and Arctic explorers.\r\n\r\nWhen activated, the unique identification code in your PLB is linked to the NOAA registration database. This way authorities can retrieve valuable information about you and your trip. The ResQLink is a satellite signaling device of last resort, for use when all other means of self rescue have been exhausted, where the situation is grave and imminent loss of life, limb, eyesight, or valuable property will occur without assistance. Supports 406Link.com communication. <br><br>\r\n\r\n<strong>Technical Specifications:</strong><br><br>\r\n\r\n<li>Product Number 2881</li> <li>Model Number PLB-375 B</li> <li>Size 1.60 x 1.90 x 4.5” (4.10 x 4.80 x 11.40 cm)</li> <li>Weight 5.4 oz (153g)</li> <li>Battery Class 2 (non-hazmat) lithium battery packs; 6 years from date of manufacture or five (5) years after beacon is placed into service, whichever is first, or after emergency use.</li><li>Battery Operational Life: Exceeds required 24 Hours @ -4°F (-20°C) </li><li>Battery, Typical Performance: 30 Hours @ -4°F (-20°C)</li> <li>Material: Engineered polycarbonate blend </li>\r\n<li>Color: High visibility yellow, ACR-treuse</li> \r\n<li>Deployment: Manual </li>\r\n<li>Activation: Manual </li>\r\n<li>Operation 2 steps: deploy antenna, press ON button, giving clear view of sky</li>\r\n<li>Waterproof: 16.40ft (5 m) @ 1 hr., 33 ft (10 m) @ 10 min.</li> \r\n<li>Factory tested @ 70°F, exceeds RTCM waterproof requirements</li> <li>Radiated Power: 5 W (406 MHz) 50 mW +/-3dB (121.5 MHz)</li>  <li>Storage: -40°F to + 158°F (-40°C to +70°C)</li> <li>Accessories: Double-sided Attachment Velcro Strap Included</li> <li>Certification Cospas-Sarsat, FCC, Canada, R&amp;TTE, Australia, New Zealand</li> <li>Limited Warranty: 5 years</li> <li>Lead Free: Yes</li> <li>08/09 No Subscription Fees</li> <li>Floats </li><li>220 self tests/12 GPS tests</li><li>Non-Hazmat Battery</li> <li>Made in the U.S.A </li>','',3132,''),(46,2,'Agua potable purificada emergencia','Agua potable purificada emergencia <br><br>\r\n\r\nAprobaciones: <br>\r\nNo 160.026/65/0 de USCG TC 168.005.011 <br><br>\r\n\r\nContenido: <br>\r\n125 ml/4.22 onzas lÃ­quidas <br><br>\r\n\r\nHay 96 bolsas por caso.','',1400,''),(46,1,'Purified Drinking Water','Emergency Purified Drinking Water<br><br>\r\n\r\nApprovals: <br>\r\nUSCG No 160.026/65/0 <br>\r\nTC 168.005.011 <br><br>\r\n\r\nContents: <br>\r\n125 ml / 4.22 fl oz <br><br>\r\n\r\n96 pouches per case.','',2644,''),(47,2,'Paquete del alimento de la supervivencia','Paquete del alimento de la supervivencia el SOS<br><br> \r\nAprobaciones: <br>No 160.046/24/0 de USCG <br><br>\r\nContenido: Cada paquete contiene 6 barras fortificadas del alimento que proporcionan 2400 Kcal (10.000 KJ)<br><br> Peso neto: 16.7 onzas (g) cada','',1201,''),(47,1,'SOS 2400 Kcal Survival Food Pack','SOS Survival Food Pack <br><br>\r\n\r\nApprovals: <br>\r\nUSCG No 160.046/24/0<br><br>\r\n\r\nContents: <br><br>\r\nEach packet contains 6 fortified food bars providing 2400 Kcal (10,000 KJ)<br>\r\nNet Wt: 16.7 oz (475 g) each packet.<br>\r\nThere are 40 packets per case','',2451,''),(48,2,'RaciÃ³n del alimento de la emergencia de 3682 Kcal','RaciÃ³n del alimento de la emergencia de 3682 Kcal <br><br>Aprobaciones: <br>USCG ninguÃŒÂn 160.046.36/0 No 168.006.010 del TC <br><br>Contenido: Cada paquete contiene 9 barras fortificadas del alimento que proporcionan 3682 pesos netos de Kcal (15.460 K','',1791,''),(48,1,'3682 Kcal Emergency Food Ration','3682 Kcal Emergency Food Ration<br><br>\r\nApprovals:<br>\r\nUSCG No 160.046.36/0<br>\r\nTC No 168.006.010 <br><br>\r\nContents: <br>\r\nEach packet contains 9 fortified food bars providing 3682 Kcal (15,460 KJ)<br>\r\nNet Wt: 1.60 lbs (756 g) per packet.<br>\r\n\r\n20 p','',2719,''),(49,2,'Nueva barra de energÃ­a del milenio','Nueva barra de energÃ­a del milenio<br><br>  Disponible en 9 sabores naturales: Albaricoque, arÃ¡ndano, cereza, coco, limÃ³n, naranja, frambuesa, fruta tropical, vainilla. <br><br> Cada paquete contiene 1 barra fortificada del alimento que proporciona 409','',1297,''),(49,1,'New Millenium Energy Bar','New Millenium Energy Bar<br><br>  \r\n\r\nAvailable in 9 natural flavors: Apricot, Blueberry, Cherry, Coconut, Lemon, Orange, Raspberry, Tropical Fruit, Vanilla.<br><br>\r\n\r\nEach packet contains 1 fortified food bar providing 409 Kcal (1720 KJ)<br><br>\r\n\r\nNet ','',2039,''),(50,2,'Palillos con Luz','Palillos con Luz<br> palillos con luz 12-Hour disponibles en verde, amarillo, naranja y rojo.<br> <br>Cantidad del caso: 500 <br>Peso del caso: 28 LIBRAS','',619,''),(50,1,'Light Sticks','Light Sticks<br>\r\n12-Hour light sticks available in green, yellow, orange and red.<br><br>\r\n\r\nCase Quantity: 500<br>\r\nCase Weight: 28 LBS','',761,''),(51,2,'Mantas tÃ©rmicas','Mantas tÃ©rmicas<br><br>TamaÃ±o: 52\" x 84\" <br><br>Cantidad del caso: 250<br> Peso del caso: 28 LIBRAS','',632,''),(51,1,'Thermal Blankets','Thermal Blankets <br><br>Size: 52\" x 84\" <br><br>\r\nCase Quantity: 250 <br>\r\nCase Weight: 28 LBS','',756,''),(52,1,'Deluxe Survival Kit','The kit includes the following:<br>\r\n<br>\r\n<b>Food and Water:</b><br>\r\n6 Boxes of Aqua Blox Water Boxes -<i> twice the amount of water as leading \r\nsuppliers and has a 5 year shelf-life</i><br>\r\n6 - 400 Calorie Food Bars -<i> 5 year shelf-life, 2400 calor','',889,''),(55,2,'Kit de Supervivencia de la Oficina de 5 Personas','(Todos los artÃ­culos se embalan con seguridad en nuestro 5 galones Cubo con la tapa del asiento de tocador) El kit incluye el siguiente: Alimento y agua: 5 cajas del Aqua Literz - equivalente a 30 paquetes de agua de la emergencia (5 litros) y cada caja ','',811,''),(53,2,'Kit de Supervivencia para los NiÃ±os','El kit incluye el siguiente: Alimento y agua: 6 cajas de cajas de agua de Blox del Aqua - dos veces la cantidad de agua como surtidores principales y cada caja tiene un perÃ­odo de validez de 5 aÃ±os barras del alimento de 6 - 400 calorÃ­as (2400 calorÃ­a','',1955,''),(53,1,'Children\'s Survival Kit','The kit includes the \r\nfollowing:<br>\r\n<br>\r\n<b>Food and Water:</b><br>\r\n6 Boxes of Aqua Blox Water Boxes -<i> twice the amount of water \r\nas leading suppliers</i><br>\r\n12 - 200 Calorie Food Bars (2400 calories)<br>\r\n10 Water Purification Tablets - <i>eac','',805,''),(54,2,'Kit de lujo de 2 Personas','El kit incluye el siguiente: Alimento y agua: 12 cajas de cajas de agua de Blox del Aqua - dos veces la cantidad del agua como llevando los surtidores y tienen un perÃ­odo de validez de 5 aÃ±os barras del alimento de 12 - 400 calorÃ­as - perÃ­odo de valid','',1023,''),(54,1,'2 Person Deluxe Kit','The kit includes the following:<br>\r\n<br>\r\n<b>Food and Water:</b><br>\r\n12 Boxes of Aqua Blox Water Boxes -<i> twice the amount of water as leading \r\nsuppliers and has a 5 year shelf-life</i><br>\r\n12 - 400 Calorie Food Bars -<i> 5 year shelf-life (4800 Cal','',794,''),(55,1,'5 Person Office Survival Kit','The kit includes the following:<br><br>\r\n<b>Food \r\nand Water:</b><br>\r\n5 Boxes \r\nof Aqua Literz - <i>Equivalent to 30 packets of emergency water (5 Liters) and \r\neach box has a 5 year shelf-life</i><br>\r\n5 - 2400 \r\nCalorie Food Bars (12,000 Calories) -<i>','',740,''),(58,2,'Bolso de Totalizador del Kit de Supervivencia para los NiÃ±os','Este kit de supervivencia compacto se embala cuidadosamente en un artÃ­culo bolso impermeable del refrigerador. Se diseÃ±a para los niÃ±os 11 aÃ±os o mÃ¡s jovenes. El bolso rojo del refrigerador tiene el & de las palabras; quot; Supervivencia Kit& quot; e','',1527,''),(56,2,'Kit de Supervivencia de la Oficina de 10 personas','El kit incluye el siguiente: Alimento y agua: 10 cajas del Aqua Literz - equivalente a 30 paquetes de agua de la emergencia (5 litros) y cada caja tiene un perÃ­odo de validez de 5 aÃ±os 10 - 2400 Barras del alimento de la calorÃ­a (12.000 calorÃ­as) - 30','',841,''),(56,1,'10 Person Office Survival Kit','The kit includes the following:<br><br>\r\n<b>Food \r\nand Water:</b><br>\r\n10 Boxes \r\nof Aqua Literz - <i>Equivalent to 30 packets of emergency water (5 Liters) and \r\neach box has a 5 year shelf-life</i><br>\r\n10 - 2400 \r\nCalorie Food Bars (12,000 Calories) -<','',886,''),(57,2,'Bolso de Totalizador del Kit de Supervivencia','Este kit de supervivencia compacto se embala cuidadosamente en un bolso impermeable durable del refrigerador. Es perfecto mantener en la oficina, en salas de clase, en el paÃ­s, o coche. El bolso rojo del refrigerador tiene el & de las palabras; quot; Sup','',1688,''),(57,1,'Survival Kit Tote Bag','This compact <strong>survival kit </strong>is packed neatly into a <strong>durable waterproof cooler bag</strong>.\r\nIt is perfect to keep in the office, in classrooms, at home, or in the\r\ncar. The red cooler bag has the words \"Survival Kit\" on the front, ','',880,''),(58,1,'Survival Kit Tote Bag for Children','<p>This compact <strong>survival kit </strong>is packed neatly into a <strong>durable\r\nwaterproof cooler bag</strong>. It is designed for children 11 years old or younger. The red cooler bag has the words \"Survival\r\nKit\" on the front, an adjustable should','',815,''),(59,2,'Kit de Supervivencia Mini','Este kit de supervivencia compacto se embala cuidadosamente en un bolso durable del tamaÃ±o del recorrido. Es perfecto mantener en la oficina, en salas de clase, en el paÃ­s, o el coche. El bolso rojo del tamaÃ±o del recorrido tiene el \" de las palabras; ','',1786,''),(59,1,'Survival Kit Mini','This compact survival kit is packed neatly into a durable travel size bag. It is perfect to keep in the office, in classrooms, at home, or in the car. The red travel size bag has the words \"Survival Kit\" on the front, and comes with a blue carabiner.\r\n<br','',736,''),(60,2,'Kit de Supervivencia Mini para los NiÃ±os','Este kit de supervivencia compacto se diseÃ±a para que a los niÃ±os los guarden encendido o acerquen siempre en sus morrales. Se embala cuidadosamente en un bolso durable del tamaÃ±o del recorrido. El bolso rojo del tamaÃ±o del recorrido tiene el de las p','',660,''),(60,1,'Survival Kit Mini for Children','This compact survival kit is designed for children to keep on or near them at all times in their backpacks.  It is packed neatly into a durable travel size bag.  The red travel size bag has the words \"Survival Kit\" on the front, and comes with a blue cara','',758,''),(61,2,'Kit de primeros auxilios del animal domÃ©stico de 58 pedazos','Este kit de primeros auxilios de lujo del animal domÃ©stico de 58 pedazos trata sus animales para varias lesiones. Este kit de primeros auxilios de lujo se embala cuidadosamente en un bolso de nylon con los artÃ­culos necesarios para tratar su animal domÃ','',1358,''),(61,1,'58 Piece Pet First Aid Kit','This 58 piece deluxe pet first aid kit treats your animals for various injuries. This deluxe first aid kit is neatly packed into a nylon bag with the items needed to treat your petâ€”also includes a detailed pet first aid guide.\r\n<br>\r\n<br>\r\n\r\nContains th','',2356,''),(62,2,'Cargador del telÃ©fono celular de la emergencia','Esta unidad puede ser un life-saver en una situaciÃ³n de emergencia permitiendo que el usuario ponga una llamada cuando muere una baterÃ­a del telÃ©fono celular. Tape simplemente el adaptador al telÃ©fono y enrolle la manija. Para cada minuto de enrrollam','',1291,''),(62,1,'Emergency Cell Phone Charger','This unit can be a life-saver in an emergency situation by allowing the user to place a call when a cell-phone battery dies. Simply plug the adapter to the phone and wind the handle. For every minute of winding the phone will receive enough energy for 2-3','',2119,''),(63,2,'Paquete mÃ³vil del adaptador del telÃ©fono celular (16 adaptador','Estos adaptadores funcionan con el cargador del telÃ©fono celular de la emergencia del guarda y todas las linternas del dÃ­namo con capacidades de carga del telÃ©fono celular. Tape un adaptador en su telÃ©fono y la cuerda en el dispositivo de carga para g','',527,''),(63,1,'Mobile Cell-phone Adapter Package (16 adapters)','These adapters work with the Guardian Emergency Cell-phone Charger and all dynamo flashlights with cell-phone charging capabilities. Plug an adapter into your phone and the cord into the charging device to generate power to any mobile phone which has the ','',803,''),(64,2,'Linterna del dÃ­namo de la emergencia con la radio','Nueva linterna brillante increÃ­ble del dÃ­namo del LED que nunca necesita las baterÃ­as y utiliza una baterÃ­a de almacenaje de OomAh/3.6v NI-MH. Esta linterna se puede tambiÃ©n cargar usando un adaptador elÃ©ctrico externo 6V tambiÃ©n. Este producto pue','',614,''),(64,1,'Emergency Dynamo Lantern with Radio','Incredible new bright LED dynamo lantern which never needs batteries and uses a OomAh/3.6v NI-MH Storage Battery. This lantern can also be charged using a 6V external electrical adapter as well. This product can charge a cell phone and has a USB tie which','',776,''),(65,2,'Guarda AutomÃ³vil','Esta linterna de la emergencia es una necesidad tiene para cada automÃ³vil. Tiene 3 luces brillantes del LED con 5 pilotos del LED en el lado que puede destellar para atraer la atenciÃ³n. Tiene una sirena ruidosa para llamar ayuda a una situaciÃ³n de emer','',592,''),(65,1,'Automobile Guardian','This emergency flashlight is a must have for every automobile. It has 3 bright LED lights with 5 LED warning lights on the side which can flash to attract attention. It has a loud siren to call help to an emergency situation, a seatbelt cutter to help cut','',790,''),(66,2,'Linterna accionada solar','Esta linterna brillante diseÃ±ada tiene 2 LED brillantes y se carga con energÃ­a solar. Es un gran producto a guardar en un keychain asÃ­ que puede cargar constantemente mientras que conduce durante el dÃ­a. Nunca necesita las baterÃ­as y le da una fuente','',588,''),(66,1,'Solar Powered Flashlight','This brilliantly designed flashlight has 2 bright LEDâ€™s and is charged through solar energy. It is a great product to keep on a keychain so it can constantly be charging while driving during the day. It never needs batteries and gives you a ready light ','',800,''),(67,2,'Menear verdadera (por siempre linterna)','Estas linternas de la sacudida no contienen ninguna baterÃ­a. Mucho nuevo \" menear\" falso; las linternas demandan ser recargables cuando utilizan realmente las baterÃ­as de litio genÃ©ricas. Ã‰stos son el reparto verdadero. El caso impermeable flota en ag','',631,''),(67,1,'Real Shake (forever flashlight)','These shake flashlights contain no batteries. Many new \"fake shake\" flashlights claim to be rechargeable when actually they use generic lithium  batteries. These are the real deal. The waterproof case floats in water  and the light is visible up to one mi','',827,''),(68,2,'3 LED Linterna del ApretÃ³n','Estas linternas prÃ¡cticas del LED son baratas con todo muy eficiente y brillante. Son totalmente recargables simplemente exprimiendo la manija que genera y almacena energÃ­a. Son perfectas para las situaciones agotadoras desde exprimir se han demostrado ','',626,''),(68,1,'3 LED Squeeze Flashlight','These handy LED flashlights are inexpensive yet very efficient and bright. They are completely rechargeable by simply squeezing the handle which generates and stores power.  They are perfect for stressful situations since squeezing has been proven to be t','',867,''),(69,2,'Palillos con Luz de la emergencia 12 hora','Nuestros palillos del resplandor de la emergencia duran por 12 horas y tienen un perÃ­odo de validez largo de 3-5 aÃ±os','',605,''),(69,1,'12 Hour Emergency Bright Stick','Our emergency glow sticks last for 12 hours and have a long shelf-life of 3-5 years','',851,''),(70,2,'Calentadores del cuerpo de 16 horas','Estos calentadores de cuerpo caliente en cuestiÃ³n de minutos. Ellos duran 16-20 horas y hasta 150 grados con una temperatura promedio de 130 grados de calor. Colocar dentro de su saco de dormir o debajo de la ropa para obtener resultados Ã³ptimos. 50 por','',601,''),(70,1,'16 Hour Body Warmers','These body warmers heat up in just minutes. They last for 16-20 hours and heat up to 150 degrees with an average temperature of 130 degrees. Place within your sleeping bag or under clothing for optimal results.\r\n50 per box.','',961,''),(71,2,'Kit de Supervivencia de la Selva','<strong>Kit de Supervivencia de la Selva <br />\r\nSostiene a 1 hombre por 5 dÃ­as. </strong><br />\r\n<br />\r\nPN 1001-1  (KIT0005) <br /><br />\r\n<table width=\"100%\" border=\"1\" cellspacing=\"0\" cellpadding=\"1\">\r\n  <tr>\r\n    <th width=\"9%\" bgcolor=\"#99BB99\"scop','',5069,''),(71,1,'Jungle Survival Kit','<strong>Jungle Survival Kit <br />\r\nSustains 1 man for 5 days. </strong><br />\r\n<br />\r\nPN 1001-1  (KIT0005)','',30856,''),(72,2,'Balsa Salvavida 9-Hombre con PabellÃ³n solamente No TSO','Balsa Salvavida 9-13 del hombre No TSO','',1278,''),(72,1,'9-Man Life Raft w/Canopy Only Non TSO','9 - 13 Man Life Raft. Constructed of heavy-duty FAA approved neoprene coated nylon fabric.  No TSO.','',2674,''),(73,1,'Fire Fighting Suit Complete Kit','Fire Fighting Suit Complete Kit\r\nPart Number: AADX-MUFIRE\r\nWeight(LBS): 55.00 \r\n\r\nComes with the following items:\r\n\r\nFirefighter Suit\r\n\r\nProfessional fire fighter suit that complies with SOLAS regulations.\r\n\r\nMED Approved\r\n\r\nSOLAS Approved\r\n\r\n(Must state ','Fire Fighting Suit',380,''),(73,2,'Fire Fighting Suit Complete Kit','Fire Fighting Suit Complete Kit\r\nPart Number: AADX-MUFIRE\r\nWeight(LBS): 55.00 \r\n\r\nComes with the following items:\r\n\r\nFirefighter Suit\r\n\r\nProfessional fire fighter suit that complies with SOLAS regulations.\r\n\r\nMED Approved\r\n\r\nSOLAS Approved\r\n\r\n(Must state ','',256,''),(74,1,'FIRST AID KIT SOLAS','First Aid Kit, SOLAS\r\n\r\nThis first aid kit is certified to meet the SOLAS requirements for liferafts and lifeboats.\r\n\r\nEC approved first aid kit according to SOLAS.\r\n\r\nContents are sealed in a waterproof pouch.\r\n\r\n \r\nPouch contains:\r\n\r\n1              Plas','Solas First Aid Kit',1753,''),(74,2,'FIRST AID KIT SOLAS','First Aid Kit, SOLAS\r\n\r\nThis first aid kit is certified to meet the SOLAS requirements for liferafts and lifeboats.\r\n\r\nEC approved first aid kit according to SOLAS.\r\n\r\nContents are sealed in a waterproof pouch.\r\n\r\n \r\n\r\nPouch contains:\r\n\r\n1              Pl','Solas First Ais Kit',270,''),(75,1,'RESCUE NET MARKUS SCN6-200 - Scramble-Net/Cradle','RESCUE NET MARKUS SCN6-200 - Scramble-Net/Cradle\r\nPart Number: AAADX-RNC\r\nWeight(LBS): 12.00\r\nLength(in): 77\r\nWidth(in): 48\r\nHeight(in): 9 \r\n\r\n RESCUE NET MARKUS SCN6-200  -  Scramble-Net/Cradle\r\n\r\nThe SCN6-200 is designed to retrieve a MOB, either enabling a conscious MOB to climb aboard, or an unconscious MOB to be rolled par buckle onboard in a horizontal position.\r\n\r\nThere is a new IMO standard (III/-17) for the retrieval of persons in the water. This standard will soon affect most operations, SOLAS vessels, passenger vessels, and commercial vessels carrying more than 12 persons, and including FRC’s (Fast Rescue Craft).\r\n\r\nEach net must extend into the water 1.5 to 2 meters in the water to be effective and meet the new IMO standards for retrieval of persons in the water.\r\n\r\nThe SCN6 is 6 rungs wide or (4ft) which is considered the minimum width for lifting a person in the horizontal position. The net is 2 meters long and extends into the water 1.5 to 2 meters.\r\n\r\nDesigned for work boats, charter boats, tourist boats and patrol boats (must have suitable rescue zone at the specific height)\r\n\r\nModel Width Length Maximum Freeboard\r\nMRSCN6-200 1.2 meters (4ft) 2 meters (6.5ft) 0.5 meters\r\nMRSCN6-250 1.2 meters (4ft) 2.5 meters (8.2ft) 1 meters\r\nMRSCN6-300 1.2 meters (4ft) 3 meters (9.8ft) 1.5 meters\r\nMRSCN6-350 1.2 meters (4ft) 3.5 meters (11.5ft) 2 meters\r\nMRSCN6-400 1.2 meters (4ft) 4 meters (13.1ft) 2.5 meters\r\n\r\nThe SN6-200 can be installed permanently or be stowed away and then transported for quick install and deployment. There are a few different rigging packages available;\r\n\r\nMR7350-001 SCN6 Link pipe without rope. 124\r\nMR7350-002 SCN6 Link pipe with 2 ropes and snap hooks.\r\nMR7350-011 SCN6 Fixed Extension ropes 19.5in (50cm) with snap hook. Kit of 3 pcs\r\nMR7350-012 SCN6 Adjustable Extension ropes snap hooks. Kit of 3 pcs.','RESCUENETMARKUSSCN6-200-Scramble-Net-Cradle',553,''),(75,2,'RESCUE NET MARKUS SCN6-200 - Scramble-Net/Cradle','RESCUE NET MARKUS SCN6-200 - Scramble-Net/Cradle\r\nPart Number: AAADX-RNC\r\nWeight(LBS): 12.00\r\nLength(in): 77\r\nWidth(in): 48\r\nHeight(in): 9 \r\n\r\n RESCUE NET MARKUS SCN6-200  -  Scramble-Net/Cradle\r\n\r\nThe SCN6-200 is designed to retrieve a MOB, either enabli','RESCUE NET MARKUS SCN6-200- Scramble-Net-Cradle',292,''),(76,1,'FIRE BLANKET- HARD PACK','FIRE BLANKET- HARD PACK\r\n\r\nPart Number: AAADX-FB\r\nWeight(LBS): 4.00\r\nLength(in): 4\r\nWidth(in): 6\r\nHeight(in): 1 \r\n\r\nApproval: CE- EN1869:1997\r\n\r\nSize: 1.2m x 1.8m (4ft x 6ft)\r\n\r\nMaterial: 100% fiber glass','FIRE BLANKET- HARD PACK',412,''),(76,2,'FIRE BLANKET- HARD PACK','FIRE BLANKET- HARD PACK\r\n\r\nPart Number: AAADX-FB\r\nWeight(LBS): 4.00\r\nLength(in): 4\r\nWidth(in): 6\r\nHeight(in): 1 \r\n\r\nApproval: CE- EN1869:1997\r\n\r\nSize: 1.2m x 1.8m (4ft x 6ft)\r\n\r\nMaterial: 100% fiber glass','FIRE BLANKET- HARD PACK',237,''),(77,1,'Life Jacket VSG MK10 ADULT SOLAS/MED UNI AND OVERSIZE','VSG MK10 ADULT SOLAS/MED UNI AND OVERSIZE\r\n\r\nPart Number: AAADX-SMLJ\r\nWeight(LBS): 3.00 \r\n\r\nThe Mk10 Lifejacket meets both Universal and Oversize requirements and is approved according to the latest SOLAS2010 regulations, MSC.207(81) SOLAS/MED 2010.\r\n\r\nCh','Lifejacket Mk10 Adult Universal and OversizeSOLAS/MED',441,''),(77,2,'Life Jacket VSG MK10 ADULT SOLAS/MED UNI AND OVERSIZE','VSG MK10 ADULT SOLAS/MED UNI AND OVERSIZE\r\n\r\nPart Number: AAADX-SMLJ\r\nWeight(LBS): 3.00 \r\n\r\nThe Mk10 Lifejacket meets both Universal and Oversize requirements and is approved according to the latest SOLAS2010 regulations, MSC.207(81) SOLAS/MED 2010.\r\n\r\nCh','Lifejacket Mk10 Adult Universal and OversizeSOLAS/MED',327,''),(78,1,'30\" BRIDGEBUOY 4.0 KG USCG/SOLAS/MED/TC','30\" BRIDGEBUOY 4.0 KG USCG/SOLAS/MED/TC\r\n\r\nPart Number:  AAADX-LRB30_CGSMTC\r\nWeight(LBS):  12.00 \r\n\r\nBRIDGEBUOY 4.0 KG USCG/SOLAS/MED/TC p\r\n\r\nPurchased by the pallet of case of 3\r\n\r\nThe only \"BridgebuoyÂ®\",  it is used onboard commercial vessels, offshore','30\" BRIDGEBUOY 4.0 KG USCG/SOLAS/MED/TC',424,''),(78,2,'30\" BRIDGEBUOY 4.0 KG USCG/SOLAS/MED/TC','30\" BRIDGEBUOY 4.0 KG USCG/SOLAS/MED/TC\r\n\r\n30\" BRIDGEBUOY 4.0 KG USCG/SOLAS/MED/TC\r\n\r\nPart Number:  AAADX-LRB30_CGSMTC\r\nWeight(LBS):  12.00 \r\n\r\nBRIDGEBUOY 4.0 KG USCG/SOLAS/MED/TC p\r\n\r\nPurchased by the pallet of case of 3\r\n\r\nThe only \"BridgebuoyÂ®\",  it i','30\" BRIDGEBUOY 4.0 KG USCG/SOLAS/MED/TC',248,''),(79,1,'MULLION 275 HI-RISE, RED 275 NEWTON SOLAS/MED','MULLION 275 HI-RISE, RED 275 NEWTON SOLAS/MED\r\nPart Number: AAADXMU275REDM\r\nWeight(LBS): 2.00\r\n\r\nMULLION Hi-Rise 275 SOLAS/MED 2010 (2MS1A3N06)\r\n\r\n- Buoyancy 275 N\r\n- Approved according to SOLAS 2010 / MED MSC 200(80) + MSC 207 (81)\r\n- Double chamber \r\n- UML inflation system \r\n- Fitted with; buddy line, harness and crotch strap, whistle, retro reflective tape and automatic water activated lifejacket light.\r\n\r\n    Model: AAADXMU275REDM\r\n    Shipping Weight: 15lbs','',558,''),(80,1,'MULLION 275 HI-RISE, BLUE 275 NEWTON SOLAS/MED','MULLION 275 HI-RISE, BLUE 275 NEWTON SOLAS/MED\r\n\r\nPart Number: AAADXMU275BLUM\r\nWeight(LBS): 2.00\r\n\r\nMULLION Hi-Rise 275 SOLAS/MED 2010 (2MS1A3N06)\r\n\r\nBuoyancy 275 N\r\nApproved according to SOLAS 2010 / MED MSC 200(80) + MSC 207 (81)\r\nDouble chamber\r\nUML inflation system\r\nFitted with; buddy line, harness and crotch strap, whistle, retro reflective tape and automatic water activated lifejacket light.','',603,''),(81,1,'MULLION 150 HI-RISE, RED 150 NEWTON SOLAS/MED',NULL,NULL,0,''),(82,1,'Life Vest Auto Inflatable (XF-35)  w / Sea Dye Marker and Signal','<strong>New! 5-Year Interval of Inspection (Packed in Standard Polybag)<br />\r\n\r\nLightest Twin Cell Vest on the Market!</strong><br /><br />\r\n\r\nCategory of Preserver: Adult/Child Combination <br>\r\nWeight of wearer: 35 lbs. (15.91kg) and above','',498,''),(82,2,'Chaleco Salvavidas Inflable auto (XF-35) con el marcador del tin','<strong>Â¡Nuevo! Intervalo de cinco aÃ±os de la inspecciÃ³n (Llena en polybag estÃ¡ndar)<br />\r\n\r\nÂ¡El chaleco de la cÃ©lula gemelo mÃ¡s ligero en el mercado!</strong><br /><br />\r\n\r\n<li> CategorÃ­a de chalecoe: Adulto - NiÃ±o combinaciÃ³n</li>\r\n<li> Peso','',868,''),(83,1,'Rothco MA-1 Flight Jacket','Rothco\'s MA-1 Flight Jacket features a fully reversible orange lining, ribbed collar, 100% nylon water repellent outer shell, poly fiberfill lining and 4 front slash pockets. The classic military style flight jacket has an extra full cut and is available ','',0,''),(83,2,'Rothco MA-1 Chaquetas de Vuelo','Chaqueta MA-1 de ROTHCO cuenta con un naranja completamente reversible, forro, cuello acanalado, capa exterior repelente al agua de 100% nylon, poly fiberfill forro y bolsillos de corte frontal 4. La chaqueta de estilo militar vuelo tiene un corte muy com','',0,''),(84,1,'VSG BABYSAFE SOLAS/MED INFANT BABY LIFE VEST','VSG BABYSAFE SOLAS/MED INFANT BABY LIFE VEST\r\n\r\nInfant Baby Safe15 – SOLAS/MED\r\n\r\nThe Infant Baby Safe15 is designed for an optimal position in the water for a baby or child weighing less than 33LBS (15kg).\r\n\r\nThe closing system is an adjustable abdominal strap, back and padded crotch strap. There are two quick release buckles, a rescue loop and comes equipped with the \"Buddy System\".','',63,''),(84,2,'VSG BABYSAFE SOLAS/MED INFANT BABY LIFE VEST','Infant Baby Safe15 â€“ SOLAS/MED\r\n\r\nThe Infant Baby Safe15 is designed for an optimal position in the water for a baby or child weighing less than 33LBS (15kg).\r\n\r\nThe closing system is an adjustable abdominal strap, back and padded crotch strap. There ar','',55,'');
/*!40000 ALTER TABLE `products_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `products_discount_quantity`
--

DROP TABLE IF EXISTS `products_discount_quantity`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `products_discount_quantity` (
  `discount_id` int(4) NOT NULL DEFAULT '0',
  `products_id` int(11) NOT NULL DEFAULT '0',
  `discount_qty` float NOT NULL DEFAULT '0',
  `discount_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  KEY `idx_id_qty_zen` (`products_id`,`discount_qty`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `products_discount_quantity`
--

LOCK TABLES `products_discount_quantity` WRITE;
/*!40000 ALTER TABLE `products_discount_quantity` DISABLE KEYS */;
/*!40000 ALTER TABLE `products_discount_quantity` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `products_notifications`
--

DROP TABLE IF EXISTS `products_notifications`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `products_notifications` (
  `products_id` int(11) NOT NULL DEFAULT '0',
  `customers_id` int(11) NOT NULL DEFAULT '0',
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`products_id`,`customers_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `products_notifications`
--

LOCK TABLES `products_notifications` WRITE;
/*!40000 ALTER TABLE `products_notifications` DISABLE KEYS */;
/*!40000 ALTER TABLE `products_notifications` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `products_options`
--

DROP TABLE IF EXISTS `products_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `products_options` (
  `products_options_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '1',
  `products_options_name` varchar(32) NOT NULL DEFAULT '',
  `products_options_sort_order` int(11) NOT NULL DEFAULT '0',
  `products_options_type` int(5) NOT NULL DEFAULT '0',
  `products_options_length` smallint(2) NOT NULL DEFAULT '32',
  `products_options_comment` varchar(64) DEFAULT NULL,
  `products_options_size` smallint(2) NOT NULL DEFAULT '32',
  `products_options_images_per_row` int(2) DEFAULT '5',
  `products_options_images_style` int(1) DEFAULT '0',
  `products_options_rows` smallint(2) NOT NULL DEFAULT '1',
  PRIMARY KEY (`products_options_id`,`language_id`),
  KEY `idx_lang_id_zen` (`language_id`),
  KEY `idx_products_options_sort_order_zen` (`products_options_sort_order`),
  KEY `idx_products_options_name_zen` (`products_options_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `products_options`
--

LOCK TABLES `products_options` WRITE;
/*!40000 ALTER TABLE `products_options` DISABLE KEYS */;
INSERT INTO `products_options` VALUES (1,2,'',0,2,32,'',32,0,0,0),(1,1,'',0,2,32,'Hazardous Materials Shipping Applies',32,0,0,0),(2,2,'Marcador del tinte del mar',0,3,32,'',32,0,0,0),(2,1,'Sea Dye Marker',0,3,32,'',32,0,0,0),(3,2,'Silbido',0,3,32,'',32,0,0,0),(3,1,'Whistle',0,3,32,'',32,0,0,0),(4,1,'[Standard Plus] Kit Capacity',2,0,32,'',32,0,0,0),(4,2,'[EstÃ¡ndar MÃ¡s]  Capacidad de K',2,0,32,'',32,0,0,0),(5,2,'[EstÃ¡ndar] Capacidad de Kit',1,0,32,'',32,0,0,0),(5,1,'[Standard] Kit Capacity',1,0,32,'',32,0,0,0),(6,2,'[De Lujo] Capacidad de Kit',3,0,32,'',32,0,0,0),(6,1,'[Deluxe] Kit Capacity',3,0,32,'',32,0,0,0),(7,2,'Agregue el ELT',4,3,32,'',32,4,0,2),(7,1,'Add<br /> ELT',4,3,32,'',32,4,0,2),(8,2,'',0,0,32,NULL,32,0,0,0),(8,1,'',0,0,32,NULL,32,0,0,0),(9,1,'',1,5,32,NULL,32,0,0,0),(9,2,'',0,5,32,NULL,32,0,0,0);
/*!40000 ALTER TABLE `products_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `products_options_types`
--

DROP TABLE IF EXISTS `products_options_types`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `products_options_types` (
  `products_options_types_id` int(11) NOT NULL DEFAULT '0',
  `products_options_types_name` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`products_options_types_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Track products_options_types';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `products_options_types`
--

LOCK TABLES `products_options_types` WRITE;
/*!40000 ALTER TABLE `products_options_types` DISABLE KEYS */;
INSERT INTO `products_options_types` VALUES (0,'Dropdown'),(1,'Text'),(2,'Radio'),(3,'Checkbox'),(4,'File'),(5,'Read Only');
/*!40000 ALTER TABLE `products_options_types` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `products_options_values`
--

DROP TABLE IF EXISTS `products_options_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `products_options_values` (
  `products_options_values_id` int(11) NOT NULL DEFAULT '0',
  `language_id` int(11) NOT NULL DEFAULT '1',
  `products_options_values_name` varchar(64) NOT NULL DEFAULT '',
  `products_options_values_sort_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`products_options_values_id`,`language_id`),
  KEY `idx_products_options_values_name_zen` (`products_options_values_name`),
  KEY `idx_products_options_values_sort_order_zen` (`products_options_values_sort_order`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `products_options_values`
--

LOCK TABLES `products_options_values` WRITE;
/*!40000 ALTER TABLE `products_options_values` DISABLE KEYS */;
INSERT INTO `products_options_values` VALUES (0,1,'TEXT',0),(0,2,'TEXT',0),(1,2,'',0),(1,1,'Ground (Hazmat)',0),(2,2,'',1),(2,1,'Air (Hazmat) - Call for Quote',1),(3,2,'En flor',0),(3,1,'Flourescent',0),(4,2,'PlÃ¡stico - de alta frecuencia',0),(4,1,'Plastic - High frequency',0),(6,1,'6-Man',2),(6,2,'6-Hombre',2),(5,1,'4-Man',1),(5,2,'4-Hombre',1),(7,2,'8-Hombre',3),(7,1,'8-Man',3),(8,2,'10-Hombre',4),(8,1,'10-Man',4),(9,2,'12-Hombre',5),(9,1,'12-Man',5),(10,2,'4-Hombre',1),(10,1,'4-Man',1),(11,2,'6-Hombre',2),(11,1,'6-Man',2),(12,2,'8-Hombre',3),(12,1,'8-Man',3),(13,2,'10-Hombre',4),(13,1,'10-Man',4),(14,2,'12-Hombre',5),(14,1,'12-Man',5),(15,2,'4-Hombre',1),(15,1,'4-Man',1),(16,2,'6-Hombre',2),(16,1,'6-Man',2),(17,2,'8-Hombre',3),(17,1,'8-Man',3),(18,2,'10-Hombre',4),(18,1,'10-Man',4),(19,2,'12-Hombre',5),(19,1,'12-Man',5),(20,2,'500-12Y Faro del Localizador de la Emergencia (ELT)',4),(20,1,'500-12Y Emergency Locator Transmitter (ELT)',4),(21,2,'EBC 406AP Faro del Localizador de la Emergencia (ELT)',3),(21,1,'EBC 406AP Emergency Locator Transmitter (ELT)',3),(22,2,'EBC 502 Faro del Localizador de la Emergencia (ELT)',2),(22,1,'EBC 502 Emergency Locator Transmitter (ELT)',2),(23,2,'AquaLink 406 - Transmisor del Localizador de la Emergencia (ELT)',1),(23,1,'AquaLink 406 Emergency Locator Transmitter (ELT)',1);
/*!40000 ALTER TABLE `products_options_values` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `products_options_values_to_products_options`
--

DROP TABLE IF EXISTS `products_options_values_to_products_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `products_options_values_to_products_options` (
  `products_options_values_to_products_options_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_options_id` int(11) NOT NULL DEFAULT '0',
  `products_options_values_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`products_options_values_to_products_options_id`),
  KEY `idx_products_options_id_zen` (`products_options_id`),
  KEY `idx_products_options_values_id_zen` (`products_options_values_id`)
) ENGINE=MyISAM AUTO_INCREMENT=25 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `products_options_values_to_products_options`
--

LOCK TABLES `products_options_values_to_products_options` WRITE;
/*!40000 ALTER TABLE `products_options_values_to_products_options` DISABLE KEYS */;
INSERT INTO `products_options_values_to_products_options` VALUES (1,1,1),(2,9,2),(3,2,3),(4,3,4),(5,5,5),(6,5,6),(7,5,7),(8,5,8),(9,5,9),(10,4,10),(11,4,11),(12,4,12),(14,4,13),(15,4,14),(16,6,15),(17,6,16),(18,6,17),(19,6,18),(20,6,19),(21,7,20),(22,7,21),(23,7,22),(24,7,23);
/*!40000 ALTER TABLE `products_options_values_to_products_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `products_to_categories`
--

DROP TABLE IF EXISTS `products_to_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `products_to_categories` (
  `products_id` int(11) NOT NULL DEFAULT '0',
  `categories_id` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`products_id`,`categories_id`),
  KEY `idx_cat_prod_id_zen` (`categories_id`,`products_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `products_to_categories`
--

LOCK TABLES `products_to_categories` WRITE;
/*!40000 ALTER TABLE `products_to_categories` DISABLE KEYS */;
INSERT INTO `products_to_categories` VALUES (1,19),(2,19),(3,19),(4,19),(5,19),(6,20),(7,20),(8,20),(9,20),(10,19),(11,21),(12,21),(13,21),(14,21),(15,27),(16,23),(17,23),(18,23),(19,23),(20,26),(21,22),(22,22),(23,22),(24,22),(25,28),(26,24),(27,24),(28,24),(29,24),(30,29),(31,25),(32,25),(33,25),(34,25),(35,3),(36,3),(37,3),(38,2),(39,2),(40,2),(41,11),(43,11),(44,11),(45,3),(46,12),(47,12),(48,12),(49,12),(50,15),(51,13),(52,14),(53,14),(54,14),(55,14),(56,14),(57,14),(58,14),(59,14),(60,14),(61,4),(62,13),(63,13),(64,15),(65,15),(66,15),(67,15),(68,15),(69,15),(70,13),(71,2),(72,20),(73,11),(74,11),(75,11),(76,11),(77,11),(78,11),(79,16),(80,16),(81,16),(82,16),(83,30),(84,16);
/*!40000 ALTER TABLE `products_to_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `project_version`
--

DROP TABLE IF EXISTS `project_version`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `project_version` (
  `project_version_id` tinyint(3) NOT NULL AUTO_INCREMENT,
  `project_version_key` varchar(40) NOT NULL DEFAULT '',
  `project_version_major` varchar(20) NOT NULL DEFAULT '',
  `project_version_minor` varchar(20) NOT NULL DEFAULT '',
  `project_version_patch1` varchar(20) NOT NULL DEFAULT '',
  `project_version_patch2` varchar(20) NOT NULL DEFAULT '',
  `project_version_patch1_source` varchar(20) NOT NULL DEFAULT '',
  `project_version_patch2_source` varchar(20) NOT NULL DEFAULT '',
  `project_version_comment` varchar(250) NOT NULL DEFAULT '',
  `project_version_date_applied` datetime NOT NULL DEFAULT '0001-01-01 01:01:01',
  PRIMARY KEY (`project_version_id`),
  UNIQUE KEY `idx_project_version_key_zen` (`project_version_key`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Database Version Tracking';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_version`
--

LOCK TABLES `project_version` WRITE;
/*!40000 ALTER TABLE `project_version` DISABLE KEYS */;
INSERT INTO `project_version` VALUES (1,'Zen-Cart Main','1','5.5f','','','','','New Installation-v155f','2018-04-19 20:31:29'),(2,'Zen-Cart Database','1','5.5','','','','','New Installation-v155f','2018-04-19 20:31:29');
/*!40000 ALTER TABLE `project_version` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `project_version_history`
--

DROP TABLE IF EXISTS `project_version_history`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `project_version_history` (
  `project_version_id` tinyint(3) NOT NULL AUTO_INCREMENT,
  `project_version_key` varchar(40) NOT NULL DEFAULT '',
  `project_version_major` varchar(20) NOT NULL DEFAULT '',
  `project_version_minor` varchar(20) NOT NULL DEFAULT '',
  `project_version_patch` varchar(20) NOT NULL DEFAULT '',
  `project_version_comment` varchar(250) NOT NULL DEFAULT '',
  `project_version_date_applied` datetime NOT NULL DEFAULT '0001-01-01 01:01:01',
  PRIMARY KEY (`project_version_id`)
) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='Database Version Tracking History';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `project_version_history`
--

LOCK TABLES `project_version_history` WRITE;
/*!40000 ALTER TABLE `project_version_history` DISABLE KEYS */;
INSERT INTO `project_version_history` VALUES (1,'Zen-Cart Main','1','5.5f','','New Installation-v155f','2018-04-19 20:31:29'),(2,'Zen-Cart Database','1','5.5','','New Installation-v155f','2018-04-19 20:31:29');
/*!40000 ALTER TABLE `project_version_history` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `query_builder`
--

DROP TABLE IF EXISTS `query_builder`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `query_builder` (
  `query_id` int(11) NOT NULL AUTO_INCREMENT,
  `query_category` varchar(40) NOT NULL DEFAULT '',
  `query_name` varchar(80) NOT NULL DEFAULT '',
  `query_description` text NOT NULL,
  `query_string` text NOT NULL,
  `query_keys_list` text NOT NULL,
  PRIMARY KEY (`query_id`),
  UNIQUE KEY `query_name` (`query_name`)
) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COMMENT='Stores queries for re-use in Admin email and report modules';
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `query_builder`
--

LOCK TABLES `query_builder` WRITE;
/*!40000 ALTER TABLE `query_builder` DISABLE KEYS */;
INSERT INTO `query_builder` VALUES (1,'email','All Customers','Returns all customers name and email address for sending mass emails (ie: for newsletters, coupons, GVs, messages, etc).','select customers_email_address, customers_firstname, customers_lastname from TABLE_CUSTOMERS order by customers_lastname, customers_firstname, customers_email_address',''),(2,'email,newsletters','All Newsletter Subscribers','Returns name and email address of newsletter subscribers','select customers_firstname, customers_lastname, customers_email_address from TABLE_CUSTOMERS where customers_newsletter = \'1\'',''),(3,'email,newsletters','Dormant Customers (>3months) (Subscribers)','Subscribers who HAVE purchased something, but have NOT purchased for at least three months.','select max(o.date_purchased) as date_purchased, c.customers_email_address, c.customers_lastname, c.customers_firstname from TABLE_CUSTOMERS c, TABLE_ORDERS o WHERE c.customers_id = o.customers_id AND c.customers_newsletter = 1 GROUP BY c.customers_email_address, c.customers_lastname, c.customers_firstname HAVING max(o.date_purchased) <= subdate(now(),INTERVAL 3 MONTH) ORDER BY c.customers_lastname, c.customers_firstname ASC',''),(4,'email,newsletters','Active customers in past 3 months (Subscribers)','Newsletter subscribers who are also active customers (purchased something) in last 3 months.','select c.customers_email_address, c.customers_lastname, c.customers_firstname from TABLE_CUSTOMERS c, TABLE_ORDERS o where c.customers_newsletter = \'1\' AND c.customers_id = o.customers_id and o.date_purchased > subdate(now(),INTERVAL 3 MONTH) GROUP BY c.customers_email_address, c.customers_lastname, c.customers_firstname order by c.customers_lastname, c.customers_firstname ASC',''),(5,'email,newsletters','Active customers in past 3 months (Regardless of subscription status)','All active customers (purchased something) in last 3 months, ignoring newsletter-subscription status.','select c.customers_email_address, c.customers_lastname, c.customers_firstname from TABLE_CUSTOMERS c, TABLE_ORDERS o WHERE c.customers_id = o.customers_id and o.date_purchased > subdate(now(),INTERVAL 3 MONTH) GROUP BY c.customers_email_address, c.customers_lastname, c.customers_firstname order by c.customers_lastname, c.customers_firstname ASC',''),(6,'email,newsletters','Administrator','Just the email account of the current administrator','select \'ADMIN\' as customers_firstname, admin_name as customers_lastname, admin_email as customers_email_address from TABLE_ADMIN where admin_id = $SESSION:admin_id',''),(7,'email,newsletters','Customers who have never completed a purchase','For sending newsletter to all customers who registered but have never completed a purchase','SELECT DISTINCT c.customers_email_address as customers_email_address, c.customers_lastname as customers_lastname, c.customers_firstname as customers_firstname FROM TABLE_CUSTOMERS c LEFT JOIN  TABLE_ORDERS o ON c.customers_id=o.customers_id WHERE o.date_purchased IS NULL','');
/*!40000 ALTER TABLE `query_builder` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `record_artists`
--

DROP TABLE IF EXISTS `record_artists`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `record_artists` (
  `artists_id` int(11) NOT NULL AUTO_INCREMENT,
  `artists_name` varchar(32) NOT NULL DEFAULT '',
  `artists_image` varchar(64) DEFAULT NULL,
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  PRIMARY KEY (`artists_id`),
  KEY `idx_rec_artists_name_zen` (`artists_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `record_artists`
--

LOCK TABLES `record_artists` WRITE;
/*!40000 ALTER TABLE `record_artists` DISABLE KEYS */;
/*!40000 ALTER TABLE `record_artists` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `record_artists_info`
--

DROP TABLE IF EXISTS `record_artists_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `record_artists_info` (
  `artists_id` int(11) NOT NULL DEFAULT '0',
  `languages_id` int(11) NOT NULL DEFAULT '0',
  `artists_url` varchar(255) NOT NULL DEFAULT '',
  `url_clicked` int(5) NOT NULL DEFAULT '0',
  `date_last_click` datetime DEFAULT NULL,
  PRIMARY KEY (`artists_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `record_artists_info`
--

LOCK TABLES `record_artists_info` WRITE;
/*!40000 ALTER TABLE `record_artists_info` DISABLE KEYS */;
/*!40000 ALTER TABLE `record_artists_info` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `record_company`
--

DROP TABLE IF EXISTS `record_company`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `record_company` (
  `record_company_id` int(11) NOT NULL AUTO_INCREMENT,
  `record_company_name` varchar(32) NOT NULL DEFAULT '',
  `record_company_image` varchar(64) DEFAULT NULL,
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  PRIMARY KEY (`record_company_id`),
  KEY `idx_rec_company_name_zen` (`record_company_name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `record_company`
--

LOCK TABLES `record_company` WRITE;
/*!40000 ALTER TABLE `record_company` DISABLE KEYS */;
/*!40000 ALTER TABLE `record_company` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `record_company_info`
--

DROP TABLE IF EXISTS `record_company_info`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `record_company_info` (
  `record_company_id` int(11) NOT NULL DEFAULT '0',
  `languages_id` int(11) NOT NULL DEFAULT '0',
  `record_company_url` varchar(255) NOT NULL DEFAULT '',
  `url_clicked` int(5) NOT NULL DEFAULT '0',
  `date_last_click` datetime DEFAULT NULL,
  PRIMARY KEY (`record_company_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `record_company_info`
--

LOCK TABLES `record_company_info` WRITE;
/*!40000 ALTER TABLE `record_company_info` DISABLE KEYS */;
/*!40000 ALTER TABLE `record_company_info` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `reviews`
--

DROP TABLE IF EXISTS `reviews`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `reviews` (
  `reviews_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_id` int(11) NOT NULL DEFAULT '0',
  `customers_id` int(11) DEFAULT NULL,
  `customers_name` varchar(64) NOT NULL DEFAULT '',
  `reviews_rating` int(1) DEFAULT NULL,
  `date_added` datetime DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `reviews_read` int(5) NOT NULL DEFAULT '0',
  `status` int(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`reviews_id`),
  KEY `idx_products_id_zen` (`products_id`),
  KEY `idx_customers_id_zen` (`customers_id`),
  KEY `idx_status_zen` (`status`),
  KEY `idx_date_added_zen` (`date_added`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reviews`
--

LOCK TABLES `reviews` WRITE;
/*!40000 ALTER TABLE `reviews` DISABLE KEYS */;
/*!40000 ALTER TABLE `reviews` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `reviews_description`
--

DROP TABLE IF EXISTS `reviews_description`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `reviews_description` (
  `reviews_id` int(11) NOT NULL DEFAULT '0',
  `languages_id` int(11) NOT NULL DEFAULT '0',
  `reviews_text` text NOT NULL,
  PRIMARY KEY (`reviews_id`,`languages_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reviews_description`
--

LOCK TABLES `reviews_description` WRITE;
/*!40000 ALTER TABLE `reviews_description` DISABLE KEYS */;
/*!40000 ALTER TABLE `reviews_description` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `salemaker_sales`
--

DROP TABLE IF EXISTS `salemaker_sales`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `salemaker_sales` (
  `sale_id` int(11) NOT NULL AUTO_INCREMENT,
  `sale_status` tinyint(4) NOT NULL DEFAULT '0',
  `sale_name` varchar(30) NOT NULL DEFAULT '',
  `sale_deduction_value` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `sale_deduction_type` tinyint(4) NOT NULL DEFAULT '0',
  `sale_pricerange_from` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `sale_pricerange_to` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `sale_specials_condition` tinyint(4) NOT NULL DEFAULT '0',
  `sale_categories_selected` text,
  `sale_categories_all` text,
  `sale_date_start` date NOT NULL DEFAULT '0001-01-01',
  `sale_date_end` date NOT NULL DEFAULT '0001-01-01',
  `sale_date_added` date NOT NULL DEFAULT '0001-01-01',
  `sale_date_last_modified` date NOT NULL DEFAULT '0001-01-01',
  `sale_date_status_change` date NOT NULL DEFAULT '0001-01-01',
  PRIMARY KEY (`sale_id`),
  KEY `idx_sale_status_zen` (`sale_status`),
  KEY `idx_sale_date_start_zen` (`sale_date_start`),
  KEY `idx_sale_date_end_zen` (`sale_date_end`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `salemaker_sales`
--

LOCK TABLES `salemaker_sales` WRITE;
/*!40000 ALTER TABLE `salemaker_sales` DISABLE KEYS */;
/*!40000 ALTER TABLE `salemaker_sales` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sessions`
--

DROP TABLE IF EXISTS `sessions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sessions` (
  `sesskey` varchar(255) NOT NULL DEFAULT '',
  `expiry` int(11) unsigned NOT NULL DEFAULT '0',
  `value` mediumblob NOT NULL,
  PRIMARY KEY (`sesskey`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sessions`
--

LOCK TABLES `sessions` WRITE;
/*!40000 ALTER TABLE `sessions` DISABLE KEYS */;
INSERT INTO `sessions` VALUES ('71ab29371ebfdf1af124dc6027495cad',1529547551,_binary 'c2VjdXJpdHlUb2tlbnxzOjMyOiJmYzkwNGZmZjM4ZWY4NzVlYjgxNzQ1OTA2NjQyN2Q0ZCI7bGFuZ3VhZ2V8czo3OiJlbmdsaXNoIjtsYW5ndWFnZXNfaWR8czoxOiIxIjtsYW5ndWFnZXNfY29kZXxzOjI6ImVuIjtzZWxlY3RlZF9ib3h8czoxMzoiY29uZmlndXJhdGlvbiI7cmVzZXRfYWRtaW5fYWN0aXZpdHlfbG9nfGI6MTtodG1sX2VkaXRvcl9wcmVmZXJlbmNlX3N0YXR1c3xzOjQ6Ik5PTkUiOw==');
/*!40000 ALTER TABLE `sessions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `specials`
--

DROP TABLE IF EXISTS `specials`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `specials` (
  `specials_id` int(11) NOT NULL AUTO_INCREMENT,
  `products_id` int(11) NOT NULL DEFAULT '0',
  `specials_new_products_price` decimal(15,4) NOT NULL DEFAULT '0.0000',
  `specials_date_added` datetime DEFAULT NULL,
  `specials_last_modified` datetime DEFAULT NULL,
  `expires_date` date NOT NULL DEFAULT '0001-01-01',
  `date_status_change` datetime DEFAULT NULL,
  `status` int(1) NOT NULL DEFAULT '1',
  `specials_date_available` date NOT NULL DEFAULT '0001-01-01',
  PRIMARY KEY (`specials_id`),
  KEY `idx_status_zen` (`status`),
  KEY `idx_products_id_zen` (`products_id`),
  KEY `idx_date_avail_zen` (`specials_date_available`),
  KEY `idx_expires_date_zen` (`expires_date`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `specials`
--

LOCK TABLES `specials` WRITE;
/*!40000 ALTER TABLE `specials` DISABLE KEYS */;
/*!40000 ALTER TABLE `specials` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tax_class`
--

DROP TABLE IF EXISTS `tax_class`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tax_class` (
  `tax_class_id` int(11) NOT NULL AUTO_INCREMENT,
  `tax_class_title` varchar(32) NOT NULL DEFAULT '',
  `tax_class_description` varchar(255) NOT NULL DEFAULT '',
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`tax_class_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_class`
--

LOCK TABLES `tax_class` WRITE;
/*!40000 ALTER TABLE `tax_class` DISABLE KEYS */;
INSERT INTO `tax_class` VALUES (1,'Taxable Goods','The following types of products are included: non-food, services, etc',NULL,'2018-04-19 20:31:29');
/*!40000 ALTER TABLE `tax_class` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `tax_rates`
--

DROP TABLE IF EXISTS `tax_rates`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tax_rates` (
  `tax_rates_id` int(11) NOT NULL AUTO_INCREMENT,
  `tax_zone_id` int(11) NOT NULL DEFAULT '0',
  `tax_class_id` int(11) NOT NULL DEFAULT '0',
  `tax_priority` int(5) DEFAULT '1',
  `tax_rate` decimal(7,4) NOT NULL DEFAULT '0.0000',
  `tax_description` varchar(255) NOT NULL DEFAULT '',
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`tax_rates_id`),
  KEY `idx_tax_zone_id_zen` (`tax_zone_id`),
  KEY `idx_tax_class_id_zen` (`tax_class_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tax_rates`
--

LOCK TABLES `tax_rates` WRITE;
/*!40000 ALTER TABLE `tax_rates` DISABLE KEYS */;
INSERT INTO `tax_rates` VALUES (1,1,1,1,7.0000,'FL TAX 7.0%','2018-04-19 20:31:29','2018-04-19 20:31:29');
/*!40000 ALTER TABLE `tax_rates` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `template_select`
--

DROP TABLE IF EXISTS `template_select`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `template_select` (
  `template_id` int(11) NOT NULL AUTO_INCREMENT,
  `template_dir` varchar(64) NOT NULL DEFAULT '',
  `template_language` varchar(64) NOT NULL DEFAULT '0',
  PRIMARY KEY (`template_id`),
  KEY `idx_tpl_lang_zen` (`template_language`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `template_select`
--

LOCK TABLES `template_select` WRITE;
/*!40000 ALTER TABLE `template_select` DISABLE KEYS */;
INSERT INTO `template_select` VALUES (1,'life','0');
/*!40000 ALTER TABLE `template_select` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `upgrade_exceptions`
--

DROP TABLE IF EXISTS `upgrade_exceptions`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `upgrade_exceptions` (
  `upgrade_exception_id` smallint(5) NOT NULL AUTO_INCREMENT,
  `sql_file` varchar(50) DEFAULT NULL,
  `reason` varchar(200) DEFAULT NULL,
  `errordate` datetime DEFAULT '0001-01-01 00:00:00',
  `sqlstatement` text,
  PRIMARY KEY (`upgrade_exception_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `upgrade_exceptions`
--

LOCK TABLES `upgrade_exceptions` WRITE;
/*!40000 ALTER TABLE `upgrade_exceptions` DISABLE KEYS */;
/*!40000 ALTER TABLE `upgrade_exceptions` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `whos_online`
--

DROP TABLE IF EXISTS `whos_online`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `whos_online` (
  `customer_id` int(11) DEFAULT NULL,
  `full_name` varchar(64) NOT NULL DEFAULT '',
  `session_id` varchar(255) NOT NULL DEFAULT '',
  `ip_address` varchar(45) NOT NULL DEFAULT '',
  `time_entry` varchar(14) NOT NULL DEFAULT '',
  `time_last_click` varchar(14) NOT NULL DEFAULT '',
  `last_page_url` varchar(255) NOT NULL DEFAULT '',
  `host_address` text NOT NULL,
  `user_agent` varchar(255) NOT NULL DEFAULT '',
  KEY `idx_ip_address_zen` (`ip_address`),
  KEY `idx_session_id_zen` (`session_id`),
  KEY `idx_customer_id_zen` (`customer_id`),
  KEY `idx_time_entry_zen` (`time_entry`),
  KEY `idx_time_last_click_zen` (`time_last_click`),
  KEY `idx_last_page_url_zen` (`last_page_url`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `whos_online`
--

LOCK TABLES `whos_online` WRITE;
/*!40000 ALTER TABLE `whos_online` DISABLE KEYS */;
INSERT INTO `whos_online` VALUES (0,'&yen;Guest','24c56cf8a4691389d10752043c08c416','24.72.164.167','1529511741','1529511741','/surpro8/index.php','h167.164.72.24.cable.srlk.cablerocket.net','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0');
/*!40000 ALTER TABLE `whos_online` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zones`
--

DROP TABLE IF EXISTS `zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zones` (
  `zone_id` int(11) NOT NULL AUTO_INCREMENT,
  `zone_country_id` int(11) NOT NULL DEFAULT '0',
  `zone_code` varchar(32) NOT NULL DEFAULT '',
  `zone_name` varchar(32) NOT NULL DEFAULT '',
  PRIMARY KEY (`zone_id`),
  KEY `idx_zone_country_id_zen` (`zone_country_id`),
  KEY `idx_zone_code_zen` (`zone_code`)
) ENGINE=MyISAM AUTO_INCREMENT=300 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zones`
--

LOCK TABLES `zones` WRITE;
/*!40000 ALTER TABLE `zones` DISABLE KEYS */;
INSERT INTO `zones` VALUES (1,223,'AL','Alabama'),(2,223,'AK','Alaska'),(3,223,'AS','American Samoa'),(4,223,'AZ','Arizona'),(5,223,'AR','Arkansas'),(7,223,'AA','Armed Forces Americas'),(9,223,'AE','Armed Forces Europe'),(11,223,'AP','Armed Forces Pacific'),(12,223,'CA','California'),(13,223,'CO','Colorado'),(14,223,'CT','Connecticut'),(15,223,'DE','Delaware'),(16,223,'DC','District of Columbia'),(17,223,'FM','Federated States Of Micronesia'),(18,223,'FL','Florida'),(19,223,'GA','Georgia'),(20,223,'GU','Guam'),(21,223,'HI','Hawaii'),(22,223,'ID','Idaho'),(23,223,'IL','Illinois'),(24,223,'IN','Indiana'),(25,223,'IA','Iowa'),(26,223,'KS','Kansas'),(27,223,'KY','Kentucky'),(28,223,'LA','Louisiana'),(29,223,'ME','Maine'),(30,223,'MH','Marshall Islands'),(31,223,'MD','Maryland'),(32,223,'MA','Massachusetts'),(33,223,'MI','Michigan'),(34,223,'MN','Minnesota'),(35,223,'MS','Mississippi'),(36,223,'MO','Missouri'),(37,223,'MT','Montana'),(38,223,'NE','Nebraska'),(39,223,'NV','Nevada'),(40,223,'NH','New Hampshire'),(41,223,'NJ','New Jersey'),(42,223,'NM','New Mexico'),(43,223,'NY','New York'),(44,223,'NC','North Carolina'),(45,223,'ND','North Dakota'),(46,223,'MP','Northern Mariana Islands'),(47,223,'OH','Ohio'),(48,223,'OK','Oklahoma'),(49,223,'OR','Oregon'),(50,163,'PW','Palau'),(51,223,'PA','Pennsylvania'),(52,223,'PR','Puerto Rico'),(53,223,'RI','Rhode Island'),(54,223,'SC','South Carolina'),(55,223,'SD','South Dakota'),(56,223,'TN','Tennessee'),(57,223,'TX','Texas'),(58,223,'UT','Utah'),(59,223,'VT','Vermont'),(60,223,'VI','Virgin Islands'),(61,223,'VA','Virginia'),(62,223,'WA','Washington'),(63,223,'WV','West Virginia'),(64,223,'WI','Wisconsin'),(65,223,'WY','Wyoming'),(66,38,'AB','Alberta'),(67,38,'BC','British Columbia'),(68,38,'MB','Manitoba'),(69,38,'NL','Newfoundland'),(70,38,'NB','New Brunswick'),(71,38,'NS','Nova Scotia'),(72,38,'NT','Northwest Territories'),(73,38,'NU','Nunavut'),(74,38,'ON','Ontario'),(75,38,'PE','Prince Edward Island'),(76,38,'QC','Quebec'),(77,38,'SK','Saskatchewan'),(78,38,'YT','Yukon Territory'),(79,81,'NDS','Niedersachsen'),(80,81,'BAW','Baden-Württemberg'),(81,81,'BAY','Bayern'),(82,81,'BER','Berlin'),(83,81,'BRG','Brandenburg'),(84,81,'BRE','Bremen'),(85,81,'HAM','Hamburg'),(86,81,'HES','Hessen'),(87,81,'MEC','Mecklenburg-Vorpommern'),(88,81,'NRW','Nordrhein-Westfalen'),(89,81,'RHE','Rheinland-Pfalz'),(90,81,'SAR','Saarland'),(91,81,'SAS','Sachsen'),(92,81,'SAC','Sachsen-Anhalt'),(93,81,'SCN','Schleswig-Holstein'),(94,81,'THE','Thüringen'),(95,14,'WI','Wien'),(96,14,'NO','Niederösterreich'),(97,14,'OO','Oberösterreich'),(98,14,'SB','Salzburg'),(99,14,'KN','Kärnten'),(100,14,'ST','Steiermark'),(101,14,'TI','Tirol'),(102,14,'BL','Burgenland'),(103,14,'VB','Voralberg'),(104,204,'AG','Aargau'),(105,204,'AI','Appenzell Innerrhoden'),(106,204,'AR','Appenzell Ausserrhoden'),(107,204,'BE','Bern'),(108,204,'BL','Basel-Landschaft'),(109,204,'BS','Basel-Stadt'),(110,204,'FR','Freiburg'),(111,204,'GE','Genf'),(112,204,'GL','Glarus'),(113,204,'JU','Graubnden'),(114,204,'JU','Jura'),(115,204,'LU','Luzern'),(116,204,'NE','Neuenburg'),(117,204,'NW','Nidwalden'),(118,204,'OW','Obwalden'),(119,204,'SG','St. Gallen'),(120,204,'SH','Schaffhausen'),(121,204,'SO','Solothurn'),(122,204,'SZ','Schwyz'),(123,204,'TG','Thurgau'),(124,204,'TI','Tessin'),(125,204,'UR','Uri'),(126,204,'VD','Waadt'),(127,204,'VS','Wallis'),(128,204,'ZG','Zug'),(129,204,'ZH','Zürich'),(130,195,'A Coruña','A Coruña'),(131,195,'Álava','Álava'),(132,195,'Albacete','Albacete'),(133,195,'Alicante','Alicante'),(134,195,'Almería','Almería'),(135,195,'Asturias','Asturias'),(136,195,'Ávila','Ávila'),(137,195,'Badajoz','Badajoz'),(138,195,'Baleares','Baleares'),(139,195,'Barcelona','Barcelona'),(140,195,'Burgos','Burgos'),(141,195,'Cáceres','Cáceres'),(142,195,'Cádiz','Cádiz'),(143,195,'Cantabria','Cantabria'),(144,195,'Castellón','Castellón'),(145,195,'Ceuta','Ceuta'),(146,195,'Ciudad Real','Ciudad Real'),(147,195,'Córdoba','Córdoba'),(148,195,'Cuenca','Cuenca'),(149,195,'Girona','Girona'),(150,195,'Granada','Granada'),(151,195,'Guadalajara','Guadalajara'),(152,195,'Guipúzcoa','Guipúzcoa'),(153,195,'Huelva','Huelva'),(154,195,'Huesca','Huesca'),(155,195,'Jaén','Jaén'),(156,195,'La Rioja','La Rioja'),(157,195,'Las Palmas','Las Palmas'),(158,195,'León','León'),(159,195,'Lérida','Lérida'),(160,195,'Lugo','Lugo'),(161,195,'Madrid','Madrid'),(162,195,'Málaga','Málaga'),(163,195,'Melilla','Melilla'),(164,195,'Murcia','Murcia'),(165,195,'Navarra','Navarra'),(166,195,'Ourense','Ourense'),(167,195,'Palencia','Palencia'),(168,195,'Pontevedra','Pontevedra'),(169,195,'Salamanca','Salamanca'),(170,195,'Santa Cruz de Tenerife','Santa Cruz de Tenerife'),(171,195,'Segovia','Segovia'),(172,195,'Sevilla','Sevilla'),(173,195,'Soria','Soria'),(174,195,'Tarragona','Tarragona'),(175,195,'Teruel','Teruel'),(176,195,'Toledo','Toledo'),(177,195,'Valencia','Valencia'),(178,195,'Valladolid','Valladolid'),(179,195,'Vizcaya','Vizcaya'),(180,195,'Zamora','Zamora'),(181,195,'Zaragoza','Zaragoza'),(182,13,'ACT','Australian Capital Territory'),(183,13,'NSW','New South Wales'),(184,13,'NT','Northern Territory'),(185,13,'QLD','Queensland'),(186,13,'SA','South Australia'),(187,13,'TAS','Tasmania'),(188,13,'VIC','Victoria'),(189,13,'WA','Western Australia'),(190,105,'AG','Agrigento'),(191,105,'AL','Alessandria'),(192,105,'AN','Ancona'),(193,105,'AO','Aosta'),(194,105,'AR','Arezzo'),(195,105,'AP','Ascoli Piceno'),(196,105,'AT','Asti'),(197,105,'AV','Avellino'),(198,105,'BA','Bari'),(199,105,'BT','Barletta Andria Trani'),(200,105,'BL','Belluno'),(201,105,'BN','Benevento'),(202,105,'BG','Bergamo'),(203,105,'BI','Biella'),(204,105,'BO','Bologna'),(205,105,'BZ','Bolzano'),(206,105,'BS','Brescia'),(207,105,'BR','Brindisi'),(208,105,'CA','Cagliari'),(209,105,'CL','Caltanissetta'),(210,105,'CB','Campobasso'),(211,105,'CI','Carbonia-Iglesias'),(212,105,'CE','Caserta'),(213,105,'CT','Catania'),(214,105,'CZ','Catanzaro'),(215,105,'CH','Chieti'),(216,105,'CO','Como'),(217,105,'CS','Cosenza'),(218,105,'CR','Cremona'),(219,105,'KR','Crotone'),(220,105,'CN','Cuneo'),(221,105,'EN','Enna'),(222,105,'FM','Fermo'),(223,105,'FE','Ferrara'),(224,105,'FI','Firenze'),(225,105,'FG','Foggia'),(226,105,'FC','Forlì Cesena'),(227,105,'FR','Frosinone'),(228,105,'GE','Genova'),(229,105,'GO','Gorizia'),(230,105,'GR','Grosseto'),(231,105,'IM','Imperia'),(232,105,'IS','Isernia'),(233,105,'AQ','Aquila'),(234,105,'SP','La Spezia'),(235,105,'LT','Latina'),(236,105,'LE','Lecce'),(237,105,'LC','Lecco'),(238,105,'LI','Livorno'),(239,105,'LO','Lodi'),(240,105,'LU','Lucca'),(241,105,'MC','Macerata'),(242,105,'MN','Mantova'),(243,105,'MS','Massa Carrara'),(244,105,'MT','Matera'),(245,105,'VS','Medio Campidano'),(246,105,'ME','Messina'),(247,105,'MI','Milano'),(248,105,'MO','Modena'),(249,105,'MB','Monza e Brianza'),(250,105,'NA','Napoli'),(251,105,'NO','Novara'),(252,105,'NU','Nuoro'),(253,105,'OG','Ogliastra'),(254,105,'OT','Olbia-Tempio'),(255,105,'OR','Oristano'),(256,105,'PD','Padova'),(257,105,'PA','Palermo'),(258,105,'PR','Parma'),(259,105,'PG','Perugia'),(260,105,'PV','Pavia'),(261,105,'PU','Pesaro Urbino'),(262,105,'PE','Pescara'),(263,105,'PC','Piacenza'),(264,105,'PI','Pisa'),(265,105,'PT','Pistoia'),(266,105,'PN','Pordenone'),(267,105,'PZ','Potenza'),(268,105,'PO','Prato'),(269,105,'RG','Ragusa'),(270,105,'RA','Ravenna'),(271,105,'RC','Reggio Calabria'),(272,105,'RE','Reggio Emilia'),(273,105,'RI','Rieti'),(274,105,'RN','Rimini'),(275,105,'RM','Roma'),(276,105,'RO','Rovigo'),(277,105,'SA','Salerno'),(278,105,'SS','Sassari'),(279,105,'SV','Savona'),(280,105,'SI','Siena'),(281,105,'SR','Siracusa'),(282,105,'SO','Sondrio'),(283,105,'TA','Taranto'),(284,105,'TE','Teramo'),(285,105,'TR','Terni'),(286,105,'TO','Torino'),(287,105,'TP','Trapani'),(288,105,'TN','Trento'),(289,105,'TV','Treviso'),(290,105,'TS','Trieste'),(291,105,'UD','Udine'),(292,105,'VA','Varese'),(293,105,'VE','Venezia'),(294,105,'VB','Verbania'),(295,105,'VC','Vercelli'),(296,105,'VR','Verona'),(297,105,'VV','Vibo Valentia'),(298,105,'VI','Vicenza'),(299,105,'VT','Viterbo');
/*!40000 ALTER TABLE `zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `zones_to_geo_zones`
--

DROP TABLE IF EXISTS `zones_to_geo_zones`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zones_to_geo_zones` (
  `association_id` int(11) NOT NULL AUTO_INCREMENT,
  `zone_country_id` int(11) NOT NULL DEFAULT '0',
  `zone_id` int(11) DEFAULT NULL,
  `geo_zone_id` int(11) DEFAULT NULL,
  `last_modified` datetime DEFAULT NULL,
  `date_added` datetime NOT NULL DEFAULT '0001-01-01 00:00:00',
  PRIMARY KEY (`association_id`),
  KEY `idx_zones_zen` (`geo_zone_id`,`zone_country_id`,`zone_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `zones_to_geo_zones`
--

LOCK TABLES `zones_to_geo_zones` WRITE;
/*!40000 ALTER TABLE `zones_to_geo_zones` DISABLE KEYS */;
INSERT INTO `zones_to_geo_zones` VALUES (1,223,18,1,NULL,'2018-04-19 20:31:29');
/*!40000 ALTER TABLE `zones_to_geo_zones` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping events for database 'surpro_try'
--

--
-- Dumping routines for database 'surpro_try'
--
/*!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 2026-05-10 13:57:04
