/**ABDB**/CREATE TABLE `#__messages_cfg` ( `user_id` int(10) unsigned NOT NULL DEFAULT '0', `cfg_name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `cfg_value` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /**ABDB**/CREATE TABLE `#__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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `message` text COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`message_id`), KEY `useridto_state` (`user_id_to`,`state`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /**ABDB**/CREATE TABLE `#__menu_types` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `asset_id` int(10) unsigned NOT NULL DEFAULT '0', `menutype` varchar(24) COLLATE utf8mb4_unicode_ci NOT NULL, `title` varchar(48) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `client_id` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `idx_menutype` (`menutype`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /**ABDB**/INSERT INTO `#__menu_types` VALUES ('1', '0', 'mainmenu', 'Main Menu', 'The main menu for the site', '0'), ('2', '75', 'company', 'Company', '', '0'), ('3', '76', 'quick-links', 'Quick Links', '', '0'), ('4', '186', 'themes', 'Themes', 'Alle Demo\'s & Templates', '0'), ('5', '187', 'hidden-menu', 'Hidden-Menu', 'Hidden-Menu', '0'), ('6', '188', 'user-menu', 'User Menu', 'User Menu', '0'), ('7', '321', 'offcanvas-menu', 'Offcanvas Menu', 'Offcanvas Menu', '0'), ('8', '373', 'portfolio-menu', 'Portfolio', 'portfolio-menu', '0'); /**ABDB**/CREATE TABLE `#__menu` ( `id` int(11) NOT NULL AUTO_INCREMENT, `menutype` varchar(24) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The type of menu this item belongs to. FK to #__menu_types.menutype', `title` varchar(255) COLLATE utf8mb4_unicode_ci 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) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `path` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The computed path of the menu item based on the alias field.', `link` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The actually link the menu item refers to.', `type` varchar(16) COLLATE utf8mb4_unicode_ci 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) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The image of the menu item.', `template_style_id` int(10) unsigned NOT NULL DEFAULT '0', `params` text COLLATE utf8mb4_unicode_ci 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) COLLATE utf8mb4_unicode_ci 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_alias` (`alias`(100)), KEY `idx_path` (`path`(100)), KEY `idx_language` (`language`) ) ENGINE=InnoDB AUTO_INCREMENT=621 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /**ABDB**/INSERT INTO `#__menu` VALUES ('1', '', 'Menu_Item_Root', 'root', '', '', '', '', '1', '0', '0', '0', '0', '0000-00-00 00:00:00', '0', '0', '', '0', '', '0', '317', '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', '', '81', '86', '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', '', '82', '83', '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', '', '84', '85', '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', '', '87', '90', '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', '', '88', '89', '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', '', '91', '96', '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', '', '92', '93', '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', '', '94', '95', '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', '', '97', '98', '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', '', '99', '100', '0', '*', '1'), ('18', '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', '', '101', '102', '0', '*', '1'), ('19', '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', '', '103', '104', '0', '*', '1'), ('20', 'main', 'com_tags', 'Tags', '', 'Tags', 'index.php?option=com_tags', 'component', '1', '1', '1', '29', '0', '0000-00-00 00:00:00', '0', '1', 'class:tags', '0', '', '105', '106', '0', '', '1'), ('21', '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', '', '107', '108', '0', '*', '1'), ('22', 'main', 'com_associations', 'Multilingual Associations', '', 'Multilingual Associations', 'index.php?option=com_associations', 'component', '1', '1', '1', '34', '0', '0000-00-00 00:00:00', '0', '0', 'class:associations', '0', '', '109', '110', '0', '*', '1'), ('101', 'mainmenu', 'Home', 'home', '', 'home', 'index.php?option=com_sppagebuilder&view=page&id=8', 'component', '1', '1', '1', '10000', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"menu-anchor_title\":\"Joomla4All | QuatuorA WebDesign\",\"menu-anchor_css\":\"icon-home\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"Joomla4All | QuatuorA WebDesign\",\"show_page_heading\":\"0\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"Joomla4All | QuatuorA | Schumm\",\"menu-meta_keywords\":\"joomla!, website, internet, services, cloud, webdesign\",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '11', '12', '1', '*', '0'), ('106', 'mainmenu', 'Gallery', 'gallery', '', 'gallery', 'index.php?option=com_speasyimagegallery&view=album&id=1', 'component', '1', '1', '1', '10008', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"layout\":\"default\",\"column\":\"4\",\"column_sm\":\"6\",\"column_xs\":\"6\",\"gutter\":\"30\",\"gutter_sm\":\"20\",\"gutter_xs\":\"10\",\"show_title\":\"1\",\"show_desc\":\"1\",\"show_count\":\"1\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":0,\"page_title\":\"Gallery | Joomla4All\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"Joomla4All Gallery\",\"menu-meta_keywords\":\"joomla, demo, sjablonen, themes, thema\'s, projecten, pictures, foto \",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"Gallery\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"images\\/backgrounds\\/joomla4all-abstract-geometrische-milkeyway-licht-stippen-verbonden-in-lijnen.jpg\"}', '143', '144', '0', '*', '0'), ('107', 'mainmenu', 'About', 'about', '', 'pages/wat-doen-wij/about', 'index.php?option=com_sppagebuilder&view=page&id=2', 'component', '0', '122', '3', '10000', '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\":\"Over | Joomla4All\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '21', '22', '0', '*', '0'), ('109', 'mainmenu', 'Login', 'login', '', 'login', 'index.php?option=com_users&view=login', 'component', '1', '1', '1', '25', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"loginredirectchoice\":\"1\",\"login_redirect_url\":\"\",\"login_redirect_menuitem\":\"101\",\"logindescription_show\":\"1\",\"login_description\":\"\",\"login_image\":\"\",\"logoutredirectchoice\":\"1\",\"logout_redirect_url\":\"\",\"logout_redirect_menuitem\":\"\",\"logoutdescription_show\":\"1\",\"logout_description\":\"\",\"logout_image\":\"images\\/jooml4all-logo.png\",\"menu-anchor_title\":\"Login | Joomla4All \",\"menu-anchor_css\":\"icon-user\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"Login | Joomla4All \",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"form-group\",\"menu-meta_description\":\"Joomla4All Login\",\"menu-meta_keywords\":\"Joomla4All Login\",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"Login & Registration\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h1\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"images\\/backgrounds\\/joomla4all-abstract-geometrische-milkeyway-licht-stippen-verbonden-in-lijnen.jpg\"}', '73', '74', '0', '*', '0'), ('110', 'mainmenu', 'Registration', 'registration', '', 'pages/services/registration', 'index.php?option=com_users&view=registration', 'component', '1', '123', '3', '25', '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\":\"Registration | Joomla4All\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"Registration\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"images\\/backgrounds\\/joomla4all-abstract-geometrische-milkeyway-licht-stippen-verbonden-in-lijnen.jpg\"}', '51', '52', '0', '*', '0'), ('113', 'mainmenu', 'Contact', 'contact', '', 'contact', 'index.php?option=com_sppagebuilder&view=page&id=5', 'component', '1', '1', '1', '10000', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"menu-anchor_title\":\" Contact | Joomla4All\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"Contact | Joomla4All\",\"show_page_heading\":\"0\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"Joomla4All Contact\",\"menu-meta_keywords\":\"joomla, contact\",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"Contact\",\"helixultimate_page_subtitle\":\"neem contact met ons op\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"images\\/backgrounds\\/joomla4all-abstract-geometrische-milkeyway-licht-stippen-verbonden-in-lijnen.jpg\"}', '17', '18', '0', '*', '0'), ('114', 'mainmenu', 'Services', 'services', '', 'services', 'index.php?option=com_sppagebuilder&view=page&id=4', 'component', '1', '1', '1', '10000', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"menu-anchor_title\":\"Services | Joomla4All\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":0,\"page_title\":\"Services | Joomla4All\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '153', '154', '0', '*', '0'), ('115', 'mainmenu', 'Blog', 'blog', '', 'blog', 'index.php?option=com_content&view=category&layout=blog&id=8', 'component', '1', '1', '1', '22', '0', '0000-00-00 00:00:00', '0', '1', ' ', '9', '{\"layout_type\":\"blog\",\"show_category_heading_title_text\":\"0\",\"show_category_title\":\"0\",\"show_description\":\"0\",\"show_description_image\":\"0\",\"maxLevel\":\"0\",\"show_empty_categories\":\"0\",\"show_no_articles\":\"0\",\"show_subcat_desc\":\"0\",\"show_cat_num_articles\":\"1\",\"show_cat_tags\":\"0\",\"page_subheading\":\"\",\"num_leading_articles\":\"0\",\"num_intro_articles\":\"8\",\"num_columns\":\"2\",\"num_links\":\"0\",\"multi_column_order\":\"0\",\"show_subcategory_content\":\"-1\",\"orderby_pri\":\"alpha\",\"orderby_sec\":\"rdate\",\"order_date\":\"published\",\"show_pagination\":\"2\",\"show_pagination_results\":\"1\",\"show_featured\":\"show\",\"article_layout\":\"_:default\",\"show_title\":\"1\",\"link_titles\":\"1\",\"show_intro\":\"1\",\"info_block_position\":\"0\",\"info_block_show_title\":\"1\",\"show_category\":\"1\",\"link_category\":\"1\",\"show_parent_category\":\"0\",\"link_parent_category\":\"1\",\"show_associations\":\"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\",\"show_icons\":\"0\",\"show_print_icon\":\"1\",\"show_email_icon\":\"0\",\"show_hits\":\"1\",\"show_tags\":\"0\",\"show_noauth\":\"1\",\"show_feed_link\":\"1\",\"feed_summary\":\"0\",\"menu-anchor_title\":\"Blog | Joomla4All\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"Blog | Joomla4All\",\"show_page_heading\":\"0\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"Joomla4All Blog\",\"menu-meta_keywords\":\"joomla, blog, weblog, artikelen, documenten, ideeen\",\"robots\":\"index, follow\",\"secure\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"Blog\",\"helixultimate_page_subtitle\":\"w\\u00e1t is een website zonder blog?\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"images\\/backgrounds\\/joomla4all-abstract-geometrische-milkeyway-licht-stippen-verbonden-in-lijnen.jpg\"}', '13', '14', '0', '*', '0'), ('116', 'company', 'About', 'about-us', '', 'about-us', 'index.php?Itemid=', 'alias', '1', '1', '1', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"107\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '111', '112', '0', '*', '0'), ('117', 'company', 'Services', 'our-services', '', 'our-services', 'index.php?Itemid=', 'alias', '1', '1', '1', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"114\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '113', '114', '0', '*', '0'), ('118', 'company', 'Portfolio', 'our-portfolio', '', 'our-portfolio', 'index.php?Itemid=', 'alias', '1', '1', '1', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"105\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '115', '116', '0', '*', '0'), ('119', 'company', 'Gallery', 'photo-gallery', '', 'photo-gallery', 'index.php?Itemid=', 'alias', '1', '1', '1', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"106\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '117', '118', '0', '*', '0'), ('120', 'company', 'Blog', 'blogs', '', 'blogs', 'index.php?Itemid=', 'alias', '1', '1', '1', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"115\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '119', '120', '0', '*', '0'), ('121', 'mainmenu', 'Inhoud', 'pages', '', 'pages', '#', 'url', '1', '1', '1', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"menu-anchor_title\":\"Feature-Menu | Joomla4All\",\"menu-anchor_css\":\"\",\"menu-anchor_rel\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":1170,\\\"menualign\\\":\\\"full\\\",\\\"megamenu\\\":1,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"megamenu\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":\\\"3\\\",\\\"menuParentId\\\":\\\"\\\",\\\"moduleId\\\":\\\"125\\\",\\\"items\\\":[{\\\"type\\\":\\\"menu_item\\\",\\\"item_id\\\":125}]},{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":\\\"3\\\",\\\"menuParentId\\\":\\\"\\\",\\\"moduleId\\\":\\\"124\\\",\\\"items\\\":[{\\\"type\\\":\\\"menu_item\\\",\\\"item_id\\\":124}]},{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":\\\"3\\\",\\\"menuParentId\\\":\\\"\\\",\\\"moduleId\\\":\\\"122\\\",\\\"items\\\":[{\\\"type\\\":\\\"menu_item\\\",\\\"item_id\\\":122}]},{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":\\\"3\\\",\\\"menuParentId\\\":\\\"\\\",\\\"moduleId\\\":\\\"123\\\",\\\"items\\\":[{\\\"type\\\":\\\"menu_item\\\",\\\"item_id\\\":123}]}]},{\\\"type\\\":\\\"row\\\",\\\"attr\\\":[{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":\\\"3\\\",\\\"menuParentId\\\":\\\"\\\",\\\"moduleId\\\":\\\"96\\\",\\\"items\\\":[{\\\"type\\\":\\\"module\\\",\\\"item_id\\\":96}]},{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":\\\"3\\\",\\\"menuParentId\\\":\\\"\\\",\\\"moduleId\\\":\\\"\\\",\\\"items\\\":[]},{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":\\\"3\\\",\\\"menuParentId\\\":\\\"\\\",\\\"moduleId\\\":\\\"147\\\",\\\"items\\\":[{\\\"type\\\":\\\"menu_item\\\",\\\"item_id\\\":147}]},{\\\"type\\\":\\\"column\\\",\\\"colGrid\\\":\\\"3\\\",\\\"menuParentId\\\":\\\"\\\",\\\"moduleId\\\":\\\"148\\\",\\\"items\\\":[{\\\"type\\\":\\\"menu_item\\\",\\\"item_id\\\":148}]}]}]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"Menu | Joomla4All\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h1\",\"helixultimate_page_title_bg_color\":\"#ecf0f1\",\"helixultimate_page_title_bg_image\":\"images\\/backgrounds\\/joomla4all-abstract-geometrische-milkeyway-licht-stippen-verbonden-in-lijnen.jpg\"}', '19', '72', '0', '*', '0'), ('122', 'mainmenu', 'Waar kunnen wij mee helpen!', 'wat-doen-wij', '', 'pages/wat-doen-wij', '#', 'url', '1', '121', '2', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu-anchor_rel\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"badge\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"#ECF0F1\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"#2C3E50\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"faicon\\\":\\\"\\\",\\\"megamenu\\\":\\\"0\\\",\\\"menualign\\\":\\\"right\\\",\\\"showtitle\\\":\\\"1\\\",\\\"width\\\":\\\"600\\\"}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"Waar kunnen wij mee helpen!\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '20', '27', '0', '*', '0'), ('123', 'mainmenu', 'Services', 'services', '', 'pages/services', '#', 'url', '1', '121', '2', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"icon-rocket\",\"menu-anchor_rel\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"badge\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"#ECF0F1\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"#2C3E50\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"faicon\\\":\\\"\\\",\\\"megamenu\\\":\\\"0\\\",\\\"menualign\\\":\\\"right\\\",\\\"showtitle\\\":\\\"1\\\",\\\"width\\\":\\\"600\\\"}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '44', '57', '0', '*', '0'), ('124', 'mainmenu', 'Knowledge Base', 'knowledge-base', '', 'pages/knowledge-base', '#', 'url', '1', '121', '2', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"menu-anchor_title\":\"Knowledge Base\",\"menu-anchor_css\":\"\",\"menu-anchor_rel\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"badge\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"#ECF0F1\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"#2C3E50\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"faicon\\\":\\\"\\\",\\\"megamenu\\\":\\\"0\\\",\\\"menualign\\\":\\\"right\\\",\\\"showtitle\\\":\\\"1\\\",\\\"width\\\":\\\"600\\\"}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"Knowledge Base\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '36', '43', '0', '*', '0'), ('125', 'mainmenu', 'Portfolio', 'portfolio', '', 'pages/portfolio', '#', 'url', '1', '121', '2', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"icon-books\",\"menu-anchor_rel\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"badge\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"#ECF0F1\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"#2C3E50\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"faicon\\\":\\\"\\\",\\\"megamenu\\\":\\\"0\\\",\\\"menualign\\\":\\\"right\\\",\\\"showtitle\\\":\\\"1\\\",\\\"width\\\":\\\"600\\\"}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '28', '35', '0', '*', '0'), ('147', 'mainmenu', 'Download', 'download', '', 'pages/download', '#', 'url', '1', '121', '2', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu-anchor_rel\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"badge\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"#ECF0F1\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"#2C3E50\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"faicon\\\":\\\"\\\",\\\"megamenu\\\":\\\"0\\\",\\\"menualign\\\":\\\"right\\\",\\\"showtitle\\\":\\\"1\\\",\\\"width\\\":\\\"600\\\"}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '58', '67', '0', '*', '0'), ('148', 'mainmenu', 'SCHUMM CLOUD', 'schumm-cloud', '', 'pages/schumm-cloud', '#', 'url', '1', '121', '2', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu-anchor_rel\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"badge\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"#ECF0F1\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"#2C3E50\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"left\\\",\\\"faicon\\\":\\\"\\\",\\\"megamenu\\\":\\\"0\\\",\\\"menualign\\\":\\\"right\\\",\\\"showtitle\\\":\\\"1\\\",\\\"width\\\":\\\"600\\\"}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"Schumm Cloud\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '68', '71', '0', '*', '0'), ('196', 'main', 'COM_JLSITEMAP', 'com-jlsitemap', '', 'com-jlsitemap', 'index.php?option=com_jlsitemap', 'component', '1', '1', '1', '10049', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '121', '122', '0', '', '1'), ('197', 'main', 'COM_RSTBOX', 'com-rstbox', '', 'com-rstbox', 'index.php?option=com_rstbox', 'component', '1', '1', '1', '10063', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '123', '124', '0', '', '1'), ('198', 'main', 'COM_UNITEREVOLUTION2', 'com-uniterevolution2', '', 'com-uniterevolution2', 'index.php?option=com_uniterevolution2', 'component', '1', '1', '1', '10077', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_uniterevolution2/images/icon-16-revolution.png', '0', '{}', '125', '126', '0', '', '1'), ('214', 'main', 'com_advportfoliopro', 'com-advportfoliopro', '', 'com-advportfoliopro', 'index.php?option=com_advportfoliopro', 'component', '1', '1', '1', '10193', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '127', '132', '0', '', '1'), ('215', 'main', 'com_advportfoliopro_submenu_projects', 'com-advportfoliopro-submenu-projects', '', 'com-advportfoliopro/com-advportfoliopro-submenu-projects', 'index.php?option=com_advportfoliopro&view=projects', 'component', '1', '214', '2', '10193', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '128', '129', '0', '', '1'), ('216', 'main', 'com_advportfoliopro_submenu_categories', 'com-advportfoliopro-submenu-categories', '', 'com-advportfoliopro/com-advportfoliopro-submenu-categories', 'index.php?option=com_categories&extension=com_advportfoliopro', 'component', '1', '214', '2', '10193', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '130', '131', '0', '', '1'), ('217', 'mainmenu', 'Demo\'s', 'demos', '', 'demos', 'index.php?option=com_advportfoliopro&view=projects', 'component', '1', '1', '1', '10193', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"catids\":[\"22\"],\"show_filter\":\"0\",\"show_title_list\":\"0\",\"show_category\":\"0\",\"show_short_description\":\"0\",\"zoom_gallery\":\"0\",\"show_info\":\"1\",\"show_info_title\":\"1\",\"show_info_category\":\"1\",\"show_info_project_link\":\"0\",\"show_info_project_details\":\"1\",\"show_info_project_gallery\":\"1\",\"click_thumbnail_to\":\"1\",\"bg_icon\":\"#2c3e50\",\"bg_icon_hover\":\"#bdc3c7\",\"num_columns\":\"2\",\"orderby\":\"rdate\",\"limit\":\"8\",\"loadmore\":\"1\",\"number_load_each\":\"4\",\"show_pagination\":\"2\",\"show_pagination_results\":\"1\",\"gutter_width\":\"30\",\"overlay_color1\":\"#bdc3c7\",\"overlay_color2\":\"#bdc3c7\",\"overlay_opacity\":\"60\",\"overlay_effect\":\"hoverdir\",\"hover_easing\":\"ease-in-out\",\"hover_duration\":\"2\",\"hover_delay\":\"0.3\",\"hoverdir_speed\":\"300\",\"hoverdir_inverse\":\"1\",\"scale\":\"1\",\"scale_x\":\"1.2\",\"scale_y\":\"1.2\",\"translate\":\"\",\"translate_x\":\"\",\"translate_y\":\"\",\"rotatex\":\"\",\"rotatey\":\"\",\"rotatez\":\"\",\"rotate_angle_x\":\"\",\"rotate_angle_y\":\"\",\"rotate_angle_z\":\"\",\"skew\":\"\",\"skew_angle_x\":\"\",\"skew_angle_y\":\"\",\"menu-anchor_title\":\"Demo\'s | Joomla4All\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":0,\"page_title\":\"Demo\'s | Joomla4All\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"Joomla4All Demos\",\"menu-meta_keywords\":\"joomla, demo, sjablonen, themes, thema\'s, projecten\",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"demo\'s en sjablonen\",\"helixultimate_page_subtitle\":\"joomla website demo\'s en sjablonen\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"#ecf0f1\",\"helixultimate_page_title_bg_image\":\"images\\/backgrounds\\/joomla4all-abstract-geometrische-milkeyway-licht-stippen-verbonden-in-lijnen.jpg\"}', '147', '148', '0', '*', '0'), ('241', 'mainmenu', 'Logout', 'logout', '', 'logout', 'index.php?option=com_users&view=login&layout=logout&task=user.menulogout', 'component', '1', '1', '1', '25', '0', '0000-00-00 00:00:00', '0', '2', ' ', '0', '{\"logout\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"Joomla4All | Logout\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"fa-sign-out\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '75', '76', '0', '*', '0'), ('243', 'mainmenu', 'Profiel beheren', 'edit-account', '', 'pages/services/edit-account', 'index.php?option=com_users&view=profile&layout=edit', 'component', '1', '123', '3', '25', '0', '0000-00-00 00:00:00', '0', '2', ' ', '0', '{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"Profiel Beheren | Joomla4All\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"Profiel\",\"helixultimate_page_subtitle\":\"bewerken gebruikersprofiel\",\"helixultimate_page_title_heading\":\"h1\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"images\\/backgrounds\\/joomla4all-abstract-geometrische-milkeyway-licht-stippen-verbonden-in-lijnen.jpg\"}', '49', '50', '0', '*', '0'), ('245', 'mainmenu', 'Contact', 'contact', '', 'pages/services/contact', 'index.php?Itemid=', 'alias', '1', '123', '3', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"113\",\"alias_redirect\":1,\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '53', '54', '0', '*', '0'), ('246', 'mainmenu', 'Blog', 'blog', '', 'pages/knowledge-base/blog', 'index.php?Itemid=', 'alias', '1', '124', '3', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"115\",\"alias_redirect\":1,\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '37', '38', '0', '*', '0'), ('247', 'mainmenu', 'Login', 'login', '', 'pages/services/login', 'index.php?Itemid=', 'alias', '1', '123', '3', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"109\",\"alias_redirect\":1,\"menu-anchor_title\":\"Login | Joomla4All\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '45', '46', '0', '*', '0'), ('248', 'mainmenu', 'Logout', 'logout', '', 'pages/services/logout', 'index.php?Itemid=', 'alias', '1', '123', '3', '0', '0', '0000-00-00 00:00:00', '0', '2', ' ', '0', '{\"aliasoptions\":\"241\",\"alias_redirect\":1,\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '47', '48', '0', '*', '0'), ('250', 'mainmenu', 'Winkel2', 'shop2', '', 'shop2', 'index.php?option=com_virtuemart&view=virtuemart', 'component', '0', '1', '1', '10214', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"menu-anchor_title\":\"Joomla4All | Webwinkel\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":0,\"page_title\":\"Shop | Joomla4All\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"Joomla4All Webwinkel\",\"menu-meta_keywords\":\"joomla, webwinkel, shop, virtuemart, hikashop, j2store\",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"webwinkel\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"images\\/backgrounds\\/joomla4all-abstract-geometrische-milkeyway-licht-stippen-verbonden-in-lijnen.jpg\"}', '77', '78', '0', '*', '0'), ('251', 'mainmenu', 'Winkel (Demo)', 'shop', '', 'pages/download/shop', 'index.php?Itemid=', 'alias', '1', '147', '3', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"597\",\"alias_redirect\":1,\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '59', '64', '0', '*', '0'), ('252', 'mainmenu', 'Downloads', 'downloads', '', 'downloads', 'index.php?option=com_jdownloads&view=downloads', 'component', '1', '1', '1', '10028', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"show_date\":\"0\",\"orderby_sec\":\"\",\"show_sort_order_bar\":\"\",\"show_tags\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"display_num\":\"\",\"menu-anchor_title\":\"Joomla4All | Downloads\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":0,\"page_title\":\"Downloads | Joomla4All\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"Joomla4All Downloads\",\"menu-meta_keywords\":\"joomla, demo, sjablonen, themes, thema\'s, projecten, downloads \",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"Downloads\",\"helixultimate_page_subtitle\":\"gratis bestanden voor je joomla-website\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"images\\/backgrounds\\/joomla4all-abstract-geometrische-milkeyway-licht-stippen-verbonden-in-lijnen.jpg\"}', '79', '80', '0', '*', '0'), ('253', 'mainmenu', 'Downloads', 'downloads', '', 'pages/download/downloads', 'index.php?Itemid=', 'alias', '1', '147', '3', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"252\",\"alias_redirect\":1,\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '65', '66', '0', '*', '0'), ('270', 'mainmenu', 'Profiel', 'account', '', 'pages/services/account', 'index.php?option=com_users&view=profile', 'component', '1', '123', '3', '25', '0', '0000-00-00 00:00:00', '0', '2', ' ', '0', '{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"Account | Joomla4All\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"Joomla4All Account\",\"menu-meta_keywords\":\"Joomla4All Account\",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"badge\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"faicon\\\":\\\"\\\",\\\"megamenu\\\":\\\"0\\\",\\\"menualign\\\":\\\"right\\\",\\\"showtitle\\\":\\\"1\\\",\\\"width\\\":\\\"600\\\"}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"Profiel\",\"helixultimate_page_subtitle\":\"gebruikersprofiel\",\"helixultimate_page_title_heading\":\"h1\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"images\\/backgrounds\\/joomla4all-abstract-geometrische-milkeyway-licht-stippen-verbonden-in-lijnen.jpg\"}', '55', '56', '0', '*', '0'), ('271', 'mainmenu', 'Templates', 'joomla-templates', '', 'joomla-templates', 'index.php?option=com_advportfoliopro&view=projects', 'component', '1', '1', '1', '10193', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"catids\":[\"24\"],\"show_filter\":\"0\",\"show_title_list\":\"0\",\"show_category\":\"0\",\"show_short_description\":\"0\",\"zoom_gallery\":\"0\",\"show_info\":\"1\",\"show_info_title\":\"1\",\"show_info_category\":\"1\",\"show_info_project_link\":\"0\",\"show_info_project_details\":\"1\",\"show_info_project_gallery\":\"1\",\"click_thumbnail_to\":\"1\",\"bg_icon\":\"#2c3e50\",\"bg_icon_hover\":\"#bdc3c7\",\"num_columns\":\"2\",\"orderby\":\"rdate\",\"limit\":\"10\",\"loadmore\":\"1\",\"number_load_each\":\"4\",\"show_pagination\":\"2\",\"show_pagination_results\":\"0\",\"gutter_width\":\"30\",\"overlay_color1\":\"#bdc3c7\",\"overlay_color2\":\"#bdc3c7\",\"overlay_opacity\":\"60\",\"overlay_effect\":\"hoverdir\",\"hover_easing\":\"ease-in-out\",\"hover_duration\":\"2\",\"hover_delay\":\"0.3\",\"hoverdir_speed\":\"300\",\"hoverdir_inverse\":\"1\",\"scale\":\"1\",\"scale_x\":\"1.2\",\"scale_y\":\"1.2\",\"translate\":\"\",\"translate_x\":\"\",\"translate_y\":\"\",\"rotatex\":\"\",\"rotatey\":\"\",\"rotatez\":\"\",\"rotate_angle_x\":\"\",\"rotate_angle_y\":\"\",\"rotate_angle_z\":\"\",\"skew\":\"\",\"skew_angle_x\":\"\",\"skew_angle_y\":\"\",\"menu-anchor_title\":\"Templates | Joomla4All\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":0,\"page_title\":\"Templates | Joomla4All\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"Joomla4All Templates\",\"menu-meta_keywords\":\"joomla, demo, sjablonen, themes, thema\'s, projecten, joomla4all, quatuora, schumm\",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"demo\'s en sjablonen\",\"helixultimate_page_subtitle\":\"joomla website demo\'s en sjablonen\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"#ecf0f1\",\"helixultimate_page_title_bg_image\":\"images\\/backgrounds\\/joomla4all-abstract-geometrische-milkeyway-licht-stippen-verbonden-in-lijnen.jpg\"}', '145', '146', '0', '*', '0'), ('272', 'mainmenu', 'Projecten', 'projecten', '', 'projecten', 'index.php?option=com_advportfoliopro&view=projects', 'component', '1', '1', '1', '10193', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"catids\":[\"25\"],\"show_filter\":\"0\",\"show_title_list\":\"0\",\"show_category\":\"0\",\"show_short_description\":\"0\",\"zoom_gallery\":\"0\",\"show_info\":\"1\",\"show_info_title\":\"1\",\"show_info_category\":\"1\",\"show_info_project_link\":\"0\",\"show_info_project_details\":\"1\",\"show_info_project_gallery\":\"1\",\"click_thumbnail_to\":\"1\",\"bg_icon\":\"#2c3e50\",\"bg_icon_hover\":\"#bdc3c7\",\"num_columns\":\"2\",\"orderby\":\"rdate\",\"limit\":\"8\",\"loadmore\":\"1\",\"number_load_each\":\"4\",\"show_pagination\":\"2\",\"show_pagination_results\":\"0\",\"gutter_width\":\"30\",\"overlay_color1\":\"#bdc3c7\",\"overlay_color2\":\"#bdc3c7\",\"overlay_opacity\":\"60\",\"overlay_effect\":\"hoverdir\",\"hover_easing\":\"ease-in-out\",\"hover_duration\":\"2\",\"hover_delay\":\"0.3\",\"hoverdir_speed\":\"300\",\"hoverdir_inverse\":\"1\",\"scale\":\"0\",\"scale_x\":\"1.2\",\"scale_y\":\"1.2\",\"translate\":\"0\",\"translate_x\":\"10\",\"translate_y\":\"10\",\"rotatex\":\"0\",\"rotatey\":\"0\",\"rotatez\":\"0\",\"rotate_angle_x\":\"\",\"rotate_angle_y\":\"\",\"rotate_angle_z\":\"\",\"skew\":\"0\",\"skew_angle_x\":\"\",\"skew_angle_y\":\"\",\"menu-anchor_title\":\"Projecten | Joomla4All\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":0,\"page_title\":\"Projecten | Joomla4All\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"Joomla4All Projecten\",\"menu-meta_keywords\":\"joomla, demo, sjablonen, themes, thema\'s, projecten, joomla4all, quatuora, schumm\",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"demo\'s en sjablonen\",\"helixultimate_page_subtitle\":\"joomla website demo\'s en sjablonen\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"#ecf0f1\",\"helixultimate_page_title_bg_image\":\"images\\/backgrounds\\/joomla4all-abstract-geometrische-milkeyway-licht-stippen-verbonden-in-lijnen.jpg\"}', '141', '142', '0', '*', '0'), ('273', 'themes', 'Alle Demo\'s & Templates bij TAGS', 'demos-by-tags', '', 'demos-by-tags', 'index.php?option=com_advportfoliopro&view=projects', 'component', '1', '1', '1', '10193', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"catids\":[\"\"],\"show_filter\":\"1\",\"show_title_list\":\"0\",\"show_category\":\"0\",\"show_short_description\":\"0\",\"zoom_gallery\":\"0\",\"show_info\":\"1\",\"show_info_title\":\"1\",\"show_info_category\":\"1\",\"show_info_project_link\":\"0\",\"show_info_project_details\":\"1\",\"show_info_project_gallery\":\"1\",\"click_thumbnail_to\":\"1\",\"bg_icon\":\"#2c3e50\",\"bg_icon_hover\":\"#bdc3c7\",\"num_columns\":\"2\",\"orderby\":\"rdate\",\"limit\":\"8\",\"loadmore\":\"1\",\"number_load_each\":\"4\",\"show_pagination\":\"2\",\"show_pagination_results\":\"0\",\"gutter_width\":\"30\",\"overlay_color1\":\"#bdc3c7\",\"overlay_color2\":\"#bdc3c7\",\"overlay_opacity\":\"60\",\"overlay_effect\":\"hoverdir\",\"hover_easing\":\"ease-in-out\",\"hover_duration\":\"2\",\"hover_delay\":\"0.3\",\"hoverdir_speed\":\"300\",\"hoverdir_inverse\":\"1\",\"scale\":\"1\",\"scale_x\":\"1.2\",\"scale_y\":\"1.2\",\"translate\":\"\",\"translate_x\":\"\",\"translate_y\":\"\",\"rotatex\":\"\",\"rotatey\":\"\",\"rotatez\":\"\",\"rotate_angle_x\":\"\",\"rotate_angle_y\":\"\",\"rotate_angle_z\":\"\",\"skew\":\"\",\"skew_angle_x\":\"\",\"skew_angle_y\":\"\",\"menu-anchor_title\":\"Demo\'s & Templates | Joomla4All\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"Demo\'s & Templates | Joomla4All\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"Joomla4All Demo\'s & Templates\",\"menu-meta_keywords\":\"joomla, demo, sjablonen, themes, thema\'s, projecten, joomla4all, quatuora, schumm\",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"demo\'s en sjablonen\",\"helixultimate_page_subtitle\":\"joomla demo\'s en sjablonen bij tags\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"#ecf0f1\",\"helixultimate_page_title_bg_image\":\"images\\/backgrounds\\/joomla4all-abstract-geometrische-milkeyway-licht-stippen-verbonden-in-lijnen.jpg\"}', '133', '134', '0', '*', '0'), ('274', 'themes', 'Alle Demo\'s & Templates bij CATEGORIE', 'demos-by-category', '', 'demos-by-category', 'index.php?option=com_advportfoliopro&view=projects', 'component', '1', '1', '1', '10193', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"catids\":[\"\"],\"show_filter\":\"2\",\"show_title_list\":\"0\",\"show_category\":\"0\",\"show_short_description\":\"0\",\"zoom_gallery\":\"0\",\"show_info\":\"1\",\"show_info_title\":\"1\",\"show_info_category\":\"1\",\"show_info_project_link\":\"0\",\"show_info_project_details\":\"1\",\"show_info_project_gallery\":\"1\",\"click_thumbnail_to\":\"1\",\"bg_icon\":\"#2c3e50\",\"bg_icon_hover\":\"#bdc3c7\",\"num_columns\":\"2\",\"orderby\":\"rdate\",\"limit\":\"8\",\"loadmore\":\"1\",\"number_load_each\":\"4\",\"show_pagination\":\"2\",\"show_pagination_results\":\"0\",\"gutter_width\":\"30\",\"overlay_color1\":\"#bdc3c7\",\"overlay_color2\":\"#bdc3c7\",\"overlay_opacity\":\"60\",\"overlay_effect\":\"hoverdir\",\"hover_easing\":\"ease-in-out\",\"hover_duration\":\"2\",\"hover_delay\":\"0.3\",\"hoverdir_speed\":\"300\",\"hoverdir_inverse\":\"1\",\"scale\":\"1\",\"scale_x\":\"1.2\",\"scale_y\":\"1.2\",\"translate\":\"\",\"translate_x\":\"\",\"translate_y\":\"\",\"rotatex\":\"\",\"rotatey\":\"\",\"rotatez\":\"\",\"rotate_angle_x\":\"\",\"rotate_angle_y\":\"\",\"rotate_angle_z\":\"\",\"skew\":\"\",\"skew_angle_x\":\"\",\"skew_angle_y\":\"\",\"menu-anchor_title\":\"Demo\'s & Templates | Joomla4All\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"Demo\'s & Templates | Joomla4All\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"joomla4all Demo\'s & Templates\",\"menu-meta_keywords\":\"joomla, demo, sjablonen, themes, thema\'s, projecten, joomla4all, quatuora, schumm\",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"demo\'s en sjablonen\",\"helixultimate_page_subtitle\":\"joomla demo\'s en sjablonen by categorie\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"#ecf0f1\",\"helixultimate_page_title_bg_image\":\"images\\/backgrounds\\/joomla4all-abstract-geometrische-milkeyway-licht-stippen-verbonden-in-lijnen.jpg\"}', '135', '136', '0', '*', '0'), ('275', 'mainmenu', 'Weblinks', 'weblinks', '', 'weblinks', 'index.php?option=com_sppagebuilder&view=page&id=25', 'component', '1', '1', '1', '10000', '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\":0,\"page_title\":\"Link Directory | Joomla4All\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"Joomla4All Weblinks\",\"menu-meta_keywords\":\"joomla, weblinks\",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"fa-link\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"Link Directory\",\"helixultimate_page_subtitle\":\"belangrijke en informatieve websites\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"images\\/backgrounds\\/joomla4all-abstract-geometrische-milkeyway-licht-stippen-verbonden-in-lijnen.jpg\"}', '137', '138', '0', '*', '0'), ('276', 'mainmenu', 'Link Directory', 'weblinks', '', 'pages/knowledge-base/weblinks', 'index.php?Itemid=', 'alias', '1', '124', '3', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"275\",\"alias_redirect\":1,\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '39', '40', '0', '*', '0'), ('277', 'mainmenu', 'Logged-out', 'logged-out', '', 'logged-out', 'index.php?option=com_sppagebuilder&view=page&id=29', 'component', '1', '1', '1', '10000', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"menu-anchor_title\":\"Joomla4All | Logout\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":0,\"page_title\":\"Logout | Joomla4All\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"Joomla4All Logout\",\"menu-meta_keywords\":\"joomla, logout\",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"logout\",\"helixultimate_page_subtitle\":\"je bent uit gelogt\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"images\\/backgrounds\\/joomla4all-abstract-geometrische-milkeyway-licht-stippen-verbonden-in-lijnen.jpg\"}', '139', '140', '0', '*', '0'), ('279', 'mainmenu', 'Projecten', 'projecten', '', 'pages/portfolio/projecten', 'index.php?Itemid=', 'alias', '1', '125', '3', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"272\",\"alias_redirect\":1,\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '29', '30', '0', '*', '0'), ('280', 'mainmenu', 'Templates', 'templates', '', 'pages/portfolio/templates', 'index.php?Itemid=', 'alias', '1', '125', '3', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"271\",\"alias_redirect\":1,\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '31', '32', '0', '*', '0'), ('281', 'mainmenu', 'Demo\'s', 'demos', '', 'pages/portfolio/demos', 'index.php?Itemid=', 'alias', '1', '125', '3', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"217\",\"alias_redirect\":1,\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '33', '34', '0', '*', '0'), ('299', 'mainmenu', 'Schumm-Cloud-Logo', 'schumm-cloud-logo', '', 'pages/schumm-cloud/schumm-cloud-logo', 'https://cloud.schumm.nl/portal/cloud/', 'url', '1', '148', '3', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu-anchor_rel\":\"\",\"menu_image\":\"images\\/schumm-cloud-big-black.png\",\"menu_image_css\":\"\",\"menu_text\":0,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"badge\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"customclass\\\":\\\"at-menu-logo\\\",\\\"dropdown\\\":\\\"right\\\",\\\"faicon\\\":\\\"\\\",\\\"megamenu\\\":\\\"0\\\",\\\"menualign\\\":\\\"right\\\",\\\"showtitle\\\":\\\"1\\\",\\\"width\\\":\\\"600\\\"}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '69', '70', '0', '*', '0'), ('300', 'mainmenu', 'Checkout', 'checkout', '', 'checkout', 'index.php?option=com_virtuemart&view=cart', 'component', '1', '1', '1', '10214', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"menu-anchor_title\":\"Checkout | Joomla4All\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":0,\"page_title\":\"Checkout | Joomla4All\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '149', '150', '0', '*', '0'), ('301', 'mainmenu', 'Checkout', 'checkout', '', 'pages/download/shop/checkout', 'index.php?Itemid=', 'alias', '0', '251', '4', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"300\",\"alias_redirect\":0,\"menu-anchor_title\":\"Checkout\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '60', '61', '0', '*', '0'), ('318', 'mainmenu', 'Newsfeeds', 'joomla-newsfeeds', '', 'joomla-newsfeeds', 'index.php?option=com_newsfeeds&view=newsfeed&id=1', 'component', '1', '1', '1', '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\":\"\",\"feed_display_order\":\"\",\"menu-anchor_title\":\"Newsfeeds | Joomla4All\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":0,\"page_title\":\"Newsfeeds | Joomla4All\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"Joomla! Announcements\",\"helixultimate_page_subtitle\":\"official joomla! newsfeeds \",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"images\\/backgrounds\\/joomla4all-abstract-geometrische-milkeyway-licht-stippen-verbonden-in-lijnen.jpg\"}', '151', '152', '0', '*', '0'), ('319', 'mainmenu', 'Joomla! Nieuws', 'newsfeeds', '', 'pages/knowledge-base/newsfeeds', 'index.php?Itemid=', 'alias', '1', '124', '3', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"318\",\"alias_redirect\":0,\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '41', '42', '0', '*', '0'), ('351', 'mainmenu', 'Services', 'services', '', 'pages/wat-doen-wij/services', 'index.php?Itemid=', 'alias', '0', '122', '3', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"114\",\"alias_redirect\":0,\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '25', '26', '0', '*', '0'), ('352', 'mainmenu', 'Card', 'card', '', 'card', 'index.php?option=com_virtuemart&view=cart', 'component', '1', '1', '1', '10214', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"menu-anchor_title\":\"Winkelmantje | Joomla4All\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":0,\"page_title\":\"Winkelmantje | Joomla4All\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '155', '156', '0', '*', '0'), ('353', 'mainmenu', 'Winkelmantje', 'winkelmantje', '', 'pages/download/shop/winkelmantje', 'index.php?Itemid=', 'alias', '0', '251', '4', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"352\",\"alias_redirect\":0,\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '62', '63', '0', '*', '0'), ('368', 'mainmenu', 'Comingsoon', 'comingsoon', '', 'comingsoon', '?tmpl=comingsoon', 'url', '-2', '1', '1', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu-anchor_rel\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '157', '158', '0', '*', '0'), ('369', 'mainmenu', 'WebDesign', 'webdesign', '', 'pages/wat-doen-wij/webdesign', 'index.php?option=com_sppagebuilder&view=page&id=35', 'component', '0', '122', '3', '10000', '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,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '23', '24', '0', '*', '0'), ('385', 'main', 'COM_COALAWEBTRAFFIC', 'com-coalawebtraffic', '', 'com-coalawebtraffic', 'index.php?option=com_coalawebtraffic', 'component', '1', '1', '1', '10021', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '159', '160', '0', '', '1'), ('389', 'offcanvas-menu', 'Home', 'm-home', '', 'm-home', 'index.php?Itemid=', 'alias', '1', '1', '1', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"101\",\"alias_redirect\":0,\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"icon-home3\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '161', '162', '0', '*', '0'), ('390', 'offcanvas-menu', 'Blog', 'm-blog', '', 'm-blog', 'index.php?Itemid=', 'alias', '1', '1', '1', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"115\",\"alias_redirect\":0,\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"icon-books\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '163', '164', '0', '*', '0'), ('391', 'offcanvas-menu', 'Contact', 'm-contact', '', 'm-contact', 'index.php?Itemid=', 'alias', '1', '1', '1', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"113\",\"alias_redirect\":0,\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"icon-mail2\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '165', '166', '0', '*', '0'), ('420', 'mainmenu', 'LOGINFORM', 'loginform', '', 'loginform', 'index.php?option=com_users&view=login', 'component', '-2', '1', '1', '25', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"loginredirectchoice\":\"1\",\"login_redirect_url\":\"\",\"login_redirect_menuitem\":\"\",\"logindescription_show\":\"0\",\"login_description\":\"\",\"login_image\":\"\",\"logoutredirectchoice\":\"1\",\"logout_redirect_url\":\"\",\"logout_redirect_menuitem\":\"\",\"logoutdescription_show\":\"1\",\"logout_description\":\"\",\"logout_image\":\"\",\"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,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"images\\/backgrounds\\/joomla4all-abstract-geometrische-milkeyway-licht-stippen-verbonden-in-lijnen.jpg\"}', '167', '168', '0', '*', '0'), ('421', 'mainmenu', 'ZZZZ', 'zzzz', '', 'zzzz', 'index.php?option=com_sppagebuilder&view=page&id=37', 'component', '-2', '1', '1', '10000', '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,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '169', '170', '0', '*', '0'), ('422', 'mainmenu', 'webl', 'webl', '', 'webl', 'index.php?option=com_weblinks&view=weblink&id=webliks', 'component', '-2', '1', '1', '10207', '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,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '171', '172', '0', '*', '0'), ('423', 'main', 'COM_COALAWEBSOCIALLINKS', 'com-coalawebsociallinks', '', 'com-coalawebsociallinks', 'index.php?option=com_coalawebsociallinks', 'component', '1', '1', '1', '10199', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '173', '174', '0', '', '1'), ('424', 'mainmenu', 'WeblinksArt', 'weblinksart', '', 'weblinksart', 'index.php?option=com_content&view=article&id=22', 'component', '-2', '1', '1', '22', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"show_title\":\"\",\"link_titles\":\"\",\"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_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_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"sp-weblinks-tabs\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '175', '176', '0', '*', '0'), ('459', 'main', 'COM_VIRTUEMART', 'com-virtuemart', '', 'com-virtuemart', 'index.php?option=com_virtuemart', 'component', '1', '1', '1', '10214', '0', '0000-00-00 00:00:00', '0', '1', '../components/com_virtuemart/assets/images/vmgeneral/menu_icon.png', '0', '{}', '177', '204', '0', '', '1'), ('460', 'main', 'COM_VIRTUEMART_CONTROL_PANEL', 'com-virtuemart-control-panel', '', 'com-virtuemart/com-virtuemart-control-panel', 'index.php?option=com_virtuemart&view=virtuemart', 'component', '1', '459', '2', '10214', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_virtuemart/assets/images/icon_16/menu-icon16-report.png', '0', '{}', '178', '179', '0', '', '1'), ('461', 'main', 'COM_VIRTUEMART_MENU_CATEGORIES', 'com-virtuemart-menu-categories', '', 'com-virtuemart/com-virtuemart-menu-categories', 'index.php?option=com_virtuemart&view=category', 'component', '1', '459', '2', '10214', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_virtuemart/assets/images/icon_16/menu-icon16-categories.png', '0', '{}', '180', '181', '0', '', '1'), ('462', 'main', 'COM_VIRTUEMART_MENU_PRODUCTS', 'com-virtuemart-menu-products', '', 'com-virtuemart/com-virtuemart-menu-products', 'index.php?option=com_virtuemart&view=product', 'component', '1', '459', '2', '10214', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_virtuemart/assets/images/icon_16/menu-icon16-products.png', '0', '{}', '182', '183', '0', '', '1'), ('463', 'main', 'COM_VIRTUEMART_MENU_CUSTOMS', 'com-virtuemart-menu-customs', '', 'com-virtuemart/com-virtuemart-menu-customs', 'index.php?option=com_virtuemart&view=custom', 'component', '1', '459', '2', '10214', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_virtuemart/assets/images/icon_16/menu-icon16-document_move.png', '0', '{}', '184', '185', '0', '', '1'), ('464', 'main', 'COM_VIRTUEMART_MENU_ORDERS', 'com-virtuemart-menu-orders', '', 'com-virtuemart/com-virtuemart-menu-orders', 'index.php?option=com_virtuemart&view=orders', 'component', '1', '459', '2', '10214', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_virtuemart/assets/images/icon_16/menu-icon16-orders.png', '0', '{}', '186', '187', '0', '', '1'), ('465', 'main', 'COM_VIRTUEMART_MENU_REPORT', 'com-virtuemart-menu-report', '', 'com-virtuemart/com-virtuemart-menu-report', 'index.php?option=com_virtuemart&view=report', 'component', '1', '459', '2', '10214', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_virtuemart/assets/images/icon_16/menu-icon16-report.png', '0', '{}', '188', '189', '0', '', '1'), ('466', 'main', 'COM_VIRTUEMART_MENU_USERS', 'com-virtuemart-menu-users', '', 'com-virtuemart/com-virtuemart-menu-users', 'index.php?option=com_virtuemart&view=user', 'component', '1', '459', '2', '10214', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_virtuemart/assets/images/icon_16/menu-icon16-shoppers.png', '0', '{}', '190', '191', '0', '', '1'), ('467', 'main', 'COM_VIRTUEMART_MENU_MANUFACTURERS', 'com-virtuemart-menu-manufacturers', '', 'com-virtuemart/com-virtuemart-menu-manufacturers', 'index.php?option=com_virtuemart&view=manufacturer', 'component', '1', '459', '2', '10214', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_virtuemart/assets/images/icon_16/menu-icon16-manufacturers.png', '0', '{}', '192', '193', '0', '', '1'), ('468', 'main', 'COM_VIRTUEMART_MENU_STORE', 'com-virtuemart-menu-store', '', 'com-virtuemart/com-virtuemart-menu-store', 'index.php?option=com_virtuemart&view=user&task=editshop', 'component', '1', '459', '2', '10214', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_virtuemart/assets/images/icon_16/menu-icon16-shop.png', '0', '{}', '194', '195', '0', '', '1'), ('469', 'main', 'COM_VIRTUEMART_MENU_MEDIAFILES', 'com-virtuemart-menu-mediafiles', '', 'com-virtuemart/com-virtuemart-menu-mediafiles', 'index.php?option=com_virtuemart&view=media', 'component', '1', '459', '2', '10214', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_virtuemart/assets/images/icon_16/menu-icon16-media.png', '0', '{}', '196', '197', '0', '', '1'), ('470', 'main', 'COM_VIRTUEMART_MENU_SHIPMENTMETHODS', 'com-virtuemart-menu-shipmentmethods', '', 'com-virtuemart/com-virtuemart-menu-shipmentmethods', 'index.php?option=com_virtuemart&view=shipmentmethod', 'component', '1', '459', '2', '10214', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_virtuemart/assets/images/icon_16/menu-icon16-shipmentmethods.png', '0', '{}', '198', '199', '0', '', '1'), ('471', 'main', 'COM_VIRTUEMART_MENU_PAYMENTMETHODS', 'com-virtuemart-menu-paymentmethods', '', 'com-virtuemart/com-virtuemart-menu-paymentmethods', 'index.php?option=com_virtuemart&view=paymentmethod', 'component', '1', '459', '2', '10214', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_virtuemart/assets/images/icon_16/menu-icon16-paymentmethods.png', '0', '{}', '200', '201', '0', '', '1'), ('472', 'main', 'COM_VIRTUEMART_MENU_CONFIGURATION', 'com-virtuemart-menu-configuration', '', 'com-virtuemart/com-virtuemart-menu-configuration', 'index.php?option=com_virtuemart&view=config', 'component', '1', '459', '2', '10214', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_virtuemart/assets/images/icon_16/menu-icon16-config.png', '0', '{}', '202', '203', '0', '', '1'), ('473', 'main', 'VirtueMart AIO', 'virtuemart-aio', '', 'virtuemart-aio', 'index.php?option=com_virtuemart_allinone', 'component', '1', '1', '1', '10215', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '205', '206', '0', '', '1'), ('474', 'main', 'TCPDF', 'tcpdf', '', 'tcpdf', 'index.php?option=com_tcpdf', 'component', '1', '1', '1', '10247', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '207', '208', '0', '', '1'), ('475', 'mainmenu', 'Demo Portfolio', 'projects', '', 'projects', 'index.php?option=com_sppagebuilder&view=page&id=41', 'component', '-2', '1', '1', '10000', '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,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"images\\/backgrounds\\/joomla4all-abstract-geometrische-milkeyway-licht-stippen-verbonden-in-lijnen.jpg\"}', '209', '210', '0', '*', '0'), ('535', 'mainmenu', 'demo2', 'demo2', '', 'demo2', 'index.php?option=com_advportfoliopro&view=projects', 'component', '-2', '1', '1', '10193', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"catids\":[\"22\"],\"show_filter\":\"\",\"show_title_list\":\"\",\"show_category\":\"\",\"show_short_description\":\"\",\"zoom_gallery\":\"0\",\"show_info\":\"\",\"show_info_title\":\"\",\"show_info_category\":\"\",\"show_info_project_link\":\"\",\"show_info_project_details\":\"\",\"show_info_project_gallery\":\"\",\"click_thumbnail_to\":\"1\",\"bg_icon\":\"\",\"bg_icon_hover\":\"\",\"num_columns\":\"\",\"orderby\":\"\",\"limit\":\"\",\"loadmore\":\"0\",\"number_load_each\":\"3\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"gutter_width\":\"\",\"overlay_color1\":\"\",\"overlay_color2\":\"\",\"overlay_opacity\":\"\",\"overlay_effect\":\"\",\"hover_easing\":\"\",\"hover_duration\":\"\",\"hover_delay\":\"\",\"hoverdir_speed\":\"\",\"hoverdir_inverse\":\"\",\"scale\":\"\",\"scale_x\":\"\",\"scale_y\":\"\",\"translate\":\"\",\"translate_x\":\"\",\"translate_y\":\"\",\"rotatex\":\"\",\"rotatey\":\"\",\"rotatez\":\"\",\"rotate_angle_x\":\"\",\"rotate_angle_y\":\"\",\"rotate_angle_z\":\"\",\"skew\":\"\",\"skew_angle_x\":\"\",\"skew_angle_y\":\"\",\"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,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"demo\'s en sjablonen\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '211', '212', '0', '*', '0'), ('536', 'portfolio-menu', 'Projecten', 'port-projecten', '', 'port-projecten', 'index.php?Itemid=', 'alias', '1', '1', '1', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"272\",\"alias_redirect\":0,\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '213', '214', '0', '*', '0'), ('537', 'portfolio-menu', 'Demo\'s', 'port-demos', '', 'port-demos', 'index.php?Itemid=', 'alias', '1', '1', '1', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"217\",\"alias_redirect\":0,\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '215', '216', '0', '*', '0'), ('538', 'portfolio-menu', 'Templates', 'port-templates', '', 'port-templates', 'index.php?Itemid=', 'alias', '1', '1', '1', '0', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"aliasoptions\":\"271\",\"alias_redirect\":0,\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '217', '218', '0', '*', '0'), ('539', 'mainmenu', 'feeds', 'feeds', '', 'feeds', 'index.php?option=com_newsfeeds&view=newsfeed&id=1', 'component', '-2', '1', '1', '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\":\"\",\"feed_display_order\":\"\",\"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,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '219', '220', '0', '*', '0'), ('554', 'main', 'COM_JDOWNLOADS', 'com-jdownloads', '', 'com-jdownloads', 'index.php?option=com_jdownloads', 'component', '1', '1', '1', '10028', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_jdownloads/assets/images/m_jdownloads.gif', '0', '{}', '221', '248', '0', '', '1'), ('555', 'main', 'COM_JDOWNLOADS_CONTROL_PANEL', 'com-jdownloads-control-panel', '', 'com-jdownloads/com-jdownloads-control-panel', 'index.php?option=com_jdownloads', 'component', '1', '554', '2', '10028', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_jdownloads/assets/images/m_jdownloads.gif', '0', '{}', '222', '223', '0', '', '1'), ('556', 'main', 'COM_JDOWNLOADS_CATEGORIES', 'com-jdownloads-categories', '', 'com-jdownloads/com-jdownloads-categories', 'index.php?option=com_jdownloads&view=categories', 'component', '1', '554', '2', '10028', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_jdownloads/assets/images/m_categories.gif', '0', '{}', '224', '225', '0', '', '1'), ('557', 'main', 'COM_JDOWNLOADS_DOWNLOADS', 'com-jdownloads-downloads', '', 'com-jdownloads/com-jdownloads-downloads', 'index.php?option=com_jdownloads&view=downloads', 'component', '1', '554', '2', '10028', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_jdownloads/assets/images/m_downloads.gif', '0', '{}', '226', '227', '0', '', '1'), ('558', 'main', 'COM_JDOWNLOADS_FILES', 'com-jdownloads-files', '', 'com-jdownloads/com-jdownloads-files', 'index.php?option=com_jdownloads&view=files', 'component', '1', '554', '2', '10028', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_jdownloads/assets/images/m_files.gif', '0', '{}', '228', '229', '0', '', '1'), ('559', 'main', 'COM_JDOWNLOADS_LICENSES', 'com-jdownloads-licenses', '', 'com-jdownloads/com-jdownloads-licenses', 'index.php?option=com_jdownloads&view=licenses', 'component', '1', '554', '2', '10028', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_jdownloads/assets/images/m_licenses.gif', '0', '{}', '230', '231', '0', '', '1'), ('560', 'main', 'COM_JDOWNLOADS_LAYOUTS', 'com-jdownloads-layouts', '', 'com-jdownloads/com-jdownloads-layouts', 'index.php?option=com_jdownloads&view=layouts', 'component', '1', '554', '2', '10028', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_jdownloads/assets/images/m_templates.gif', '0', '{}', '232', '233', '0', '', '1'), ('561', 'main', 'COM_JDOWNLOADS_LOGS', 'com-jdownloads-logs', '', 'com-jdownloads/com-jdownloads-logs', 'index.php?option=com_jdownloads&view=logs', 'component', '1', '554', '2', '10028', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_jdownloads/assets/images/m_logs.gif', '0', '{}', '234', '235', '0', '', '1'), ('562', 'main', 'COM_JDOWNLOADS_MULTILINGUAL_ASSOCIATIONS', 'com-jdownloads-multilingual-associations', '', 'com-jdownloads/com-jdownloads-multilingual-associations', 'index.php?option=com_jdownloads&view=associations', 'component', '1', '554', '2', '10028', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_jdownloads/assets/images/m_logs.gif', '0', '{}', '236', '237', '0', '', '1'), ('563', 'main', 'COM_JDOWNLOADS_USER_GROUPS', 'com-jdownloads-user-groups', '', 'com-jdownloads/com-jdownloads-user-groups', 'index.php?option=com_jdownloads&view=groups', 'component', '1', '554', '2', '10028', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_jdownloads/assets/images/m_groups.gif', '0', '{}', '238', '239', '0', '', '1'), ('564', 'main', 'COM_JDOWNLOADS_CUSTOM_FIELDS', 'com-jdownloads-custom-fields', '', 'com-jdownloads/com-jdownloads-custom-fields', 'index.php?option=com_fields&context=com_jdownloads.download', 'component', '1', '554', '2', '10028', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '240', '241', '0', '', '1'), ('565', 'main', 'COM_JDOWNLOADS_CUSTOM_FIELD_GROUPS', 'com-jdownloads-custom-field-groups', '', 'com-jdownloads/com-jdownloads-custom-field-groups', 'index.php?option=com_fields&view=groups&context=com_jdownloads.download', 'component', '1', '554', '2', '10028', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_jdownloads/assets/images/m_categories.gif', '0', '{}', '242', '243', '0', '', '1'), ('566', 'main', 'COM_JDOWNLOADS_TOOLS', 'com-jdownloads-tools', '', 'com-jdownloads/com-jdownloads-tools', 'index.php?option=com_jdownloads&view=tools', 'component', '1', '554', '2', '10028', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_jdownloads/assets/images/m_tools.gif', '0', '{}', '244', '245', '0', '', '1'), ('567', 'main', 'COM_JDOWNLOADS_TERMS_OF_USE', 'com-jdownloads-terms-of-use', '', 'com-jdownloads/com-jdownloads-terms-of-use', 'index.php?option=com_jdownloads&view=info', 'component', '1', '554', '2', '10028', '0', '0000-00-00 00:00:00', '0', '1', 'components/com_jdownloads/assets/images/m_info.gif', '0', '{}', '246', '247', '0', '', '1'), ('572', 'main', 'COM_ACYM', 'com-acym', '', 'com-acym', 'index.php?option=com_acym', 'component', '1', '1', '1', '10012', '0', '0000-00-00 00:00:00', '0', '1', '../media/com_acym/images/icons/logo_acym.png', '0', '{}', '249', '276', '0', '', '1'), ('573', 'main', 'ACYM_DASHBOARD', 'acym-dashboard', '', 'com-acym/acym-dashboard', 'index.php?option=com_acym&ctrl=dashboard', 'component', '1', '572', '2', '10012', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '250', '251', '0', '', '1'), ('574', 'main', 'ACYM_SUBSCRIPTION_FORMS', 'acym-subscription-forms', '', 'com-acym/acym-subscription-forms', 'index.php?option=com_acym&ctrl=forms', 'component', '1', '572', '2', '10012', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '252', '253', '0', '', '1'), ('575', 'main', 'ACYM_SUBSCRIBERS', 'acym-subscribers', '', 'com-acym/acym-subscribers', 'index.php?option=com_acym&ctrl=users', 'component', '1', '572', '2', '10012', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '254', '255', '0', '', '1'), ('576', 'main', 'ACYM_CUSTOM_FIELDS', 'acym-custom-fields', '', 'com-acym/acym-custom-fields', 'index.php?option=com_acym&ctrl=fields', 'component', '1', '572', '2', '10012', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '256', '257', '0', '', '1'), ('577', 'main', 'ACYM_LISTS', 'acym-lists', '', 'com-acym/acym-lists', 'index.php?option=com_acym&ctrl=lists', 'component', '1', '572', '2', '10012', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '258', '259', '0', '', '1'), ('578', 'main', 'ACYM_SEGMENTS', 'acym-segments', '', 'com-acym/acym-segments', 'index.php?option=com_acym&ctrl=segments', 'component', '1', '572', '2', '10012', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '260', '261', '0', '', '1'), ('579', 'main', 'ACYM_EMAILS', 'acym-emails', '', 'com-acym/acym-emails', 'index.php?option=com_acym&ctrl=campaigns', 'component', '1', '572', '2', '10012', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '262', '263', '0', '', '1'), ('580', 'main', 'ACYM_TEMPLATES', 'acym-templates', '', 'com-acym/acym-templates', 'index.php?option=com_acym&ctrl=mails', 'component', '1', '572', '2', '10012', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '264', '265', '0', '', '1'), ('581', 'main', 'ACYM_EMAILS_OVERRIDE', 'acym-emails-override', '', 'com-acym/acym-emails-override', 'index.php?option=com_acym&ctrl=override', 'component', '1', '572', '2', '10012', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '266', '267', '0', '', '1'), ('582', 'main', 'ACYM_QUEUE', 'acym-queue', '', 'com-acym/acym-queue', 'index.php?option=com_acym&ctrl=queue', 'component', '1', '572', '2', '10012', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '268', '269', '0', '', '1'), ('583', 'main', 'ACYM_STATISTICS', 'acym-statistics', '', 'com-acym/acym-statistics', 'index.php?option=com_acym&ctrl=stats', 'component', '1', '572', '2', '10012', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '270', '271', '0', '', '1'), ('584', 'main', 'ACYM_ADD_ONS', 'acym-add-ons', '', 'com-acym/acym-add-ons', 'index.php?option=com_acym&ctrl=plugins', 'component', '1', '572', '2', '10012', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '272', '273', '0', '', '1'), ('585', 'main', 'ACYM_CONFIGURATION', 'acym-configuration', '', 'com-acym/acym-configuration', 'index.php?option=com_acym&ctrl=configuration', 'component', '1', '572', '2', '10012', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '274', '275', '0', '', '1'), ('597', 'mainmenu', 'Winkel', 'shop', '', 'shop', 'index.php?option=com_virtuemart&view=category&virtuemart_category_id=0&virtuemart_manufacturer_id=0', 'component', '1', '1', '1', '10214', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"storefront\":\"0\",\"show_store_desc\":\"1\",\"categorylayout\":\"default\",\"showcategory_desc\":\"\",\"showcategory\":\"0\",\"categories_per_row\":\"\",\"showproducts\":\"\",\"showsearch\":\"0\",\"productsublayout\":\"\",\"products_per_row\":\"\",\"featured\":\"0\",\"featured_rows\":\"\",\"discontinued\":\"0\",\"discontinued_rows\":\"\",\"latest\":\"0\",\"latest_rows\":\"\",\"topten\":\"0\",\"topten_rows\":\"\",\"recent\":\"0\",\"recent_rows\":\"\",\"stf_itemid\":\"\",\"stf_categorylayout\":\"\",\"stf_show_store_desc\":\"\",\"stf_showcategory_desc\":\"\",\"stf_showcategory\":\"\",\"stf_categories_per_row\":\"\",\"stf_showproducts\":\"\",\"stf_showsearch\":\"\",\"stf_productsublayout\":\"\",\"stf_products_per_row\":\"\",\"stf_featured\":\"\",\"stf_featured_rows\":\"\",\"stf_discontinued\":\"\",\"stf_discontinued_rows\":\"\",\"stf_latest\":\"\",\"stf_latest_rows\":\"\",\"stf_topten\":\"\",\"stf_topten_rows\":\"\",\"stf_recent\":\"\",\"stf_recent_rows\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":0,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"menu-meta_keywords\":\"\",\"robots\":\"\",\"secure\":0,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '277', '278', '0', '*', '0'), ('598', 'main', 'COM_ARKEDITOR', 'com-arkeditor', '', 'com-arkeditor', 'index.php?option=com_arkeditor', 'component', '1', '1', '1', '10319', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '279', '288', '0', '', '1'), ('599', 'main', 'COM_ARKEDITOR_SUBMENU_CPANEL_NAME', 'com-arkeditor-submenu-cpanel-name', '', 'com-arkeditor/com-arkeditor-submenu-cpanel-name', 'index.php?option=com_arkeditor&view=cpanel', 'component', '1', '598', '2', '10319', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '280', '281', '0', '', '1'), ('600', 'main', 'COM_ARKEDITOR_SUBMENU_PLUGIN_NAME', 'com-arkeditor-submenu-plugin-name', '', 'com-arkeditor/com-arkeditor-submenu-plugin-name', 'index.php?option=com_arkeditor&view=list', 'component', '1', '598', '2', '10319', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '282', '283', '0', '', '1'), ('601', 'main', 'COM_ARKEDITOR_SUBMENU_LAYOUT_NAME', 'com-arkeditor-submenu-layout-name', '', 'com-arkeditor/com-arkeditor-submenu-layout-name', 'index.php?option=com_arkeditor&view=toolbars', 'component', '1', '598', '2', '10319', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '284', '285', '0', '', '1'), ('602', 'main', 'COM_ARKEDITOR_SUBMENU_ARKEDITOR_NAME', 'com-arkeditor-submenu-arkeditor-name', '', 'com-arkeditor/com-arkeditor-submenu-arkeditor-name', 'index.php?option=com_arkeditor&view=cpanel&task=cpanel.editor', 'component', '1', '598', '2', '10319', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '286', '287', '0', '', '1'), ('603', 'main', 'com_weblinks', 'com-weblinks', '', 'com-weblinks', 'index.php?option=com_weblinks', 'component', '1', '1', '1', '10207', '0', '0000-00-00 00:00:00', '0', '1', 'class:weblinks', '0', '{}', '289', '294', '0', '', '1'), ('604', 'main', 'com_weblinks_links', 'com-weblinks-links', '', 'com-weblinks/com-weblinks-links', 'index.php?option=com_weblinks', 'component', '1', '603', '2', '10207', '0', '0000-00-00 00:00:00', '0', '1', 'class:weblinks', '0', '{}', '290', '291', '0', '', '1'), ('605', 'main', 'com_weblinks_categories', 'com-weblinks-categories', '', 'com-weblinks/com-weblinks-categories', 'index.php?option=com_categories&extension=com_weblinks', 'component', '1', '603', '2', '10207', '0', '0000-00-00 00:00:00', '0', '1', 'class:weblinks-cat', '0', '{}', '292', '293', '0', '', '1'), ('609', 'mainmenu', 'Projecten2', 'projecten2', '', 'projecten2', 'index.php?option=com_spsimpleportfolio&view=items', 'component', '-2', '1', '1', '10281', '0', '0000-00-00 00:00:00', '0', '1', ' ', '0', '{\"show_filter\":\"1\",\"catid\":\"43\",\"ordering\":\"ordering:ASC\",\"layout_type\":\"default\",\"columns\":\"2\",\"thumbnail_type\":\"masonry\",\"popup_image\":\"default\",\"limit\":\"6\",\"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,\"helixultimatemenulayout\":\"\",\"helixultimate_enable_page_title\":\"0\",\"helixultimate_page_title_alt\":\"\",\"helixultimate_page_subtitle\":\"\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"\"}', '295', '296', '0', '*', '0'), ('610', 'main', 'COM_SPSIMPLEPORTFOLIO', 'com-spsimpleportfolio', '', 'com-spsimpleportfolio', 'index.php?option=com_spsimpleportfolio', 'component', '1', '1', '1', '10281', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '297', '304', '0', '', '1'), ('611', 'main', 'COM_SPSIMPLEPORTFOLIO_ITEMS', 'com-spsimpleportfolio-items', '', 'com-spsimpleportfolio/com-spsimpleportfolio-items', 'index.php?option=com_spsimpleportfolio&view=items', 'component', '1', '610', '2', '10281', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '298', '299', '0', '', '1'), ('612', 'main', 'COM_SPSIMPLEPORTFOLIO_CATEGORIES', 'com-spsimpleportfolio-categories', '', 'com-spsimpleportfolio/com-spsimpleportfolio-categories', 'index.php?option=com_categories&view=categories&extension=com_spsimpleportfolio', 'component', '1', '610', '2', '10281', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '300', '301', '0', '', '1'), ('613', 'main', 'COM_SPSIMPLEPORTFOLIO_TAGS', 'com-spsimpleportfolio-tags', '', 'com-spsimpleportfolio/com-spsimpleportfolio-tags', 'index.php?option=com_spsimpleportfolio&view=tags', 'component', '1', '610', '2', '10281', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '302', '303', '0', '', '1'), ('614', 'mainmenu', 'Blog (2)', 'blog-2', '', 'blog-2', 'index.php?option=com_content&view=category&layout=blog&id=8', 'component', '0', '1', '1', '22', '0', '0000-00-00 00:00:00', '0', '1', ' ', '9', '{\"layout_type\":\"blog\",\"show_category_heading_title_text\":\"0\",\"show_category_title\":\"0\",\"show_description\":\"0\",\"show_description_image\":\"0\",\"maxLevel\":\"0\",\"show_empty_categories\":\"0\",\"show_no_articles\":\"0\",\"show_subcat_desc\":\"0\",\"show_cat_num_articles\":\"1\",\"show_cat_tags\":\"0\",\"page_subheading\":\"\",\"num_leading_articles\":\"0\",\"num_intro_articles\":\"8\",\"num_columns\":\"2\",\"num_links\":\"0\",\"multi_column_order\":\"0\",\"show_subcategory_content\":\"-1\",\"orderby_pri\":\"alpha\",\"orderby_sec\":\"rdate\",\"order_date\":\"published\",\"show_pagination\":\"2\",\"show_pagination_results\":\"1\",\"show_featured\":\"show\",\"article_layout\":\"_:default\",\"show_title\":\"1\",\"link_titles\":\"1\",\"show_intro\":\"1\",\"info_block_position\":\"0\",\"info_block_show_title\":\"1\",\"show_category\":\"1\",\"link_category\":\"1\",\"show_parent_category\":\"0\",\"link_parent_category\":\"1\",\"show_associations\":\"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\",\"show_icons\":\"0\",\"show_print_icon\":\"1\",\"show_email_icon\":\"0\",\"show_hits\":\"1\",\"show_tags\":\"0\",\"show_noauth\":\"1\",\"show_feed_link\":\"1\",\"feed_summary\":\"0\",\"menu-anchor_title\":\"Blog | Joomla4All\",\"menu-anchor_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"Blog | Joomla4All\",\"show_page_heading\":\"0\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"Joomla4All Blog\",\"menu-meta_keywords\":\"joomla, blog, weblog, artikelen, documenten, ideeen\",\"robots\":\"index, follow\",\"secure\":1,\"helixultimatemenulayout\":\"{\\\"width\\\":600,\\\"menualign\\\":\\\"right\\\",\\\"megamenu\\\":0,\\\"showtitle\\\":1,\\\"faicon\\\":\\\"\\\",\\\"customclass\\\":\\\"\\\",\\\"dropdown\\\":\\\"right\\\",\\\"badge\\\":\\\"\\\",\\\"badge_position\\\":\\\"\\\",\\\"badge_bg_color\\\":\\\"\\\",\\\"badge_text_color\\\":\\\"\\\",\\\"layout\\\":[]}\",\"helixultimate_enable_page_title\":\"1\",\"helixultimate_page_title_alt\":\"Blog\",\"helixultimate_page_subtitle\":\"w\\u00e1t is een website zonder blog?\",\"helixultimate_page_title_heading\":\"h2\",\"helixultimate_page_title_bg_color\":\"\",\"helixultimate_page_title_bg_image\":\"images\\/backgrounds\\/joomla4all-abstract-geometrische-milkeyway-licht-stippen-verbonden-in-lijnen.jpg\"}', '15', '16', '0', '*', '0'), ('615', 'main', 'COM_FAILEDLOGINATTEMPTS', 'com-failedloginattempts', '', 'com-failedloginattempts', 'index.php?option=com_failedloginattempts&view=failedloginattempts', 'component', '1', '1', '1', '10308', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '305', '306', '0', '', '1'), ('616', 'main', 'COM_SPEASYIMAGEGALLERY', 'com-speasyimagegallery', '', 'com-speasyimagegallery', 'index.php?option=com_speasyimagegallery', 'component', '1', '1', '1', '10008', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '307', '312', '0', '', '1'), ('617', 'main', 'COM_SPEASYIMAGEGALLERY_SUBMENU_ALBUMS', 'com-speasyimagegallery-submenu-albums', '', 'com-speasyimagegallery/com-speasyimagegallery-submenu-albums', 'index.php?option=com_speasyimagegallery&view=albums', 'component', '1', '616', '2', '10008', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '308', '309', '0', '', '1'), ('618', 'main', 'COM_SPEASYIMAGEGALLERY_SUBMENU_CATEGORIES', 'com-speasyimagegallery-submenu-categories', '', 'com-speasyimagegallery/com-speasyimagegallery-submenu-categories', 'index.php?option=com_categories&view=categories&extension=com_speasyimagegallery', 'component', '1', '616', '2', '10008', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '310', '311', '0', '', '1'), ('619', 'main', 'COM_AKEEBA', 'com-akeeba', '', 'com-akeeba', 'index.php?option=com_akeeba', 'component', '1', '1', '1', '10014', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '313', '314', '0', '', '1'), ('620', 'main', 'COM_SPPAGEBUILDER', 'com-sppagebuilder', '', 'com-sppagebuilder', 'index.php?option=com_sppagebuilder', 'component', '1', '1', '1', '10000', '0', '0000-00-00 00:00:00', '0', '1', 'class:component', '0', '{}', '315', '316', '0', '', '1'); /**ABDB**/CREATE TABLE `#__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) COLLATE utf8mb4_unicode_ci NOT NULL, `title_native` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `sef` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(512) COLLATE utf8mb4_unicode_ci NOT NULL, `metakey` text COLLATE utf8mb4_unicode_ci NOT NULL, `metadesc` text COLLATE utf8mb4_unicode_ci NOT NULL, `sitename` varchar(1024) COLLATE utf8mb4_unicode_ci 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=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /**ABDB**/INSERT INTO `#__languages` VALUES ('1', '274', 'en-GB', 'English (en-GB)', 'English (United Kingdom)', 'en', 'en_gb', '', '', '', '', '1', '1', '1'), ('2', '275', 'nl-NL', 'Nederlands (nl-NL)', 'Nederlands (Nederlands)', 'nl', 'nl_nl', '', '', '', '', '1', '1', '0'); /**ABDB**/CREATE TABLE `#__jdownloads_usergroups_limits` ( `id` int(11) NOT NULL AUTO_INCREMENT, `importance` smallint(6) NOT NULL DEFAULT '0', `group_id` int(10) NOT NULL DEFAULT '0', `download_limit_daily` int(10) NOT NULL DEFAULT '0', `download_limit_daily_msg` text COLLATE utf8mb4_unicode_ci NOT NULL, `download_limit_weekly` int(10) NOT NULL DEFAULT '0', `download_limit_weekly_msg` text COLLATE utf8mb4_unicode_ci NOT NULL, `download_limit_monthly` int(10) NOT NULL DEFAULT '0', `download_limit_monthly_msg` text COLLATE utf8mb4_unicode_ci NOT NULL, `download_volume_limit_daily` int(10) NOT NULL DEFAULT '0', `download_volume_limit_daily_msg` text COLLATE utf8mb4_unicode_ci NOT NULL, `download_volume_limit_weekly` int(10) NOT NULL DEFAULT '0', `download_volume_limit_weekly_msg` text COLLATE utf8mb4_unicode_ci NOT NULL, `download_volume_limit_monthly` int(10) NOT NULL DEFAULT '0', `download_volume_limit_monthly_msg` text COLLATE utf8mb4_unicode_ci NOT NULL, `how_many_times` int(10) NOT NULL DEFAULT '0', `how_many_times_msg` text COLLATE utf8mb4_unicode_ci NOT NULL, `download_limit_after_this_time` int(4) NOT NULL DEFAULT '60', `transfer_speed_limit_kb` int(10) NOT NULL DEFAULT '0', `upload_limit_daily` int(10) NOT NULL DEFAULT '0', `upload_limit_daily_msg` text COLLATE utf8mb4_unicode_ci NOT NULL, `view_captcha` tinyint(1) NOT NULL DEFAULT '0', `view_inquiry_form` tinyint(1) NOT NULL DEFAULT '0', `view_report_form` tinyint(1) NOT NULL DEFAULT '0', `must_form_fill_out` tinyint(1) NOT NULL DEFAULT '0', `form_fieldset` char(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `countdown_timer_duration` int(10) NOT NULL DEFAULT '0', `countdown_timer_msg` text COLLATE utf8mb4_unicode_ci NOT NULL, `may_edit_own_downloads` tinyint(1) NOT NULL DEFAULT '0', `may_edit_all_downloads` tinyint(1) NOT NULL DEFAULT '0', `use_private_area` tinyint(1) NOT NULL DEFAULT '0', `view_user_his_limits` tinyint(1) NOT NULL DEFAULT '0', `view_user_his_limits_msg` text COLLATE utf8mb4_unicode_ci NOT NULL, `uploads_only_in_cat_id` int(11) NOT NULL DEFAULT '0', `uploads_auto_publish` tinyint(1) NOT NULL DEFAULT '0', `uploads_allowed_types` text COLLATE utf8mb4_unicode_ci NOT NULL, `uploads_use_editor` tinyint(1) NOT NULL DEFAULT '1', `uploads_use_tabs` tinyint(1) NOT NULL DEFAULT '1', `uploads_allowed_preview_types` text COLLATE utf8mb4_unicode_ci NOT NULL, `uploads_maxfilesize_kb` char(15) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '2048', `uploads_form_text` text COLLATE utf8mb4_unicode_ci NOT NULL, `uploads_max_amount_images` int(3) NOT NULL DEFAULT '3', `uploads_can_change_category` tinyint(1) NOT NULL DEFAULT '1', `uploads_default_access_level` int(10) NOT NULL DEFAULT '0', `uploads_view_upload_icon` tinyint(1) NOT NULL DEFAULT '1', `uploads_allow_custom_tags` tinyint(1) NOT NULL DEFAULT '1', `form_title` tinyint(1) NOT NULL DEFAULT '1', `form_alias` tinyint(1) NOT NULL DEFAULT '1', `form_alias_x` tinyint(1) NOT NULL DEFAULT '0', `form_version` tinyint(1) NOT NULL DEFAULT '1', `form_version_x` tinyint(1) NOT NULL DEFAULT '0', `form_access` tinyint(1) NOT NULL DEFAULT '0', `form_access_x` tinyint(1) NOT NULL DEFAULT '0', `form_user_access` tinyint(1) NOT NULL DEFAULT '0', `form_update_active` tinyint(1) NOT NULL DEFAULT '0', `form_file_language` tinyint(1) NOT NULL DEFAULT '1', `form_file_language_x` tinyint(1) NOT NULL DEFAULT '0', `form_file_system` tinyint(1) NOT NULL DEFAULT '1', `form_file_system_x` tinyint(1) NOT NULL DEFAULT '0', `form_license` tinyint(1) NOT NULL DEFAULT '1', `form_license_x` tinyint(1) NOT NULL DEFAULT '0', `form_confirm_license` tinyint(1) NOT NULL DEFAULT '1', `form_short_desc` tinyint(1) NOT NULL DEFAULT '1', `form_short_desc_x` tinyint(1) NOT NULL DEFAULT '0', `form_long_desc` tinyint(1) NOT NULL DEFAULT '1', `form_long_desc_x` tinyint(1) NOT NULL DEFAULT '0', `form_changelog` tinyint(1) NOT NULL DEFAULT '1', `form_changelog_x` tinyint(1) NOT NULL DEFAULT '0', `form_category` tinyint(1) NOT NULL DEFAULT '1', `form_view_access` tinyint(1) NOT NULL DEFAULT '0', `form_language` tinyint(1) NOT NULL DEFAULT '0', `form_language_x` tinyint(1) NOT NULL DEFAULT '0', `form_published` tinyint(1) NOT NULL DEFAULT '0', `form_featured` tinyint(1) NOT NULL DEFAULT '0', `form_creation_date` tinyint(1) NOT NULL DEFAULT '1', `form_creation_date_x` tinyint(1) NOT NULL DEFAULT '0', `form_modified_date` tinyint(1) NOT NULL DEFAULT '1', `form_timeframe` tinyint(1) NOT NULL DEFAULT '0', `form_views` tinyint(1) NOT NULL DEFAULT '0', `form_downloaded` tinyint(1) NOT NULL DEFAULT '0', `form_ordering` tinyint(1) NOT NULL DEFAULT '0', `form_password` tinyint(1) NOT NULL DEFAULT '0', `form_password_x` tinyint(1) NOT NULL DEFAULT '0', `form_price` tinyint(1) NOT NULL DEFAULT '1', `form_price_x` tinyint(1) NOT NULL DEFAULT '0', `form_website` tinyint(1) NOT NULL DEFAULT '1', `form_website_x` tinyint(1) NOT NULL DEFAULT '0', `form_author_name` tinyint(1) NOT NULL DEFAULT '1', `form_author_name_x` tinyint(1) NOT NULL DEFAULT '0', `form_author_mail` tinyint(1) NOT NULL DEFAULT '1', `form_author_mail_x` tinyint(1) NOT NULL DEFAULT '0', `form_file_pic` tinyint(1) NOT NULL DEFAULT '1', `form_file_pic_x` tinyint(1) NOT NULL DEFAULT '0', `form_select_main_file` tinyint(1) NOT NULL DEFAULT '1', `form_select_main_file_x` tinyint(1) NOT NULL DEFAULT '0', `form_file_size` tinyint(1) NOT NULL DEFAULT '1', `form_file_date` tinyint(1) NOT NULL DEFAULT '1', `form_file_date_x` tinyint(1) NOT NULL DEFAULT '0', `form_select_preview_file` tinyint(1) NOT NULL DEFAULT '1', `form_select_preview_file_x` tinyint(1) NOT NULL DEFAULT '0', `form_external_file` tinyint(1) NOT NULL DEFAULT '1', `form_external_file_x` tinyint(1) NOT NULL DEFAULT '0', `form_mirror_1` tinyint(1) NOT NULL DEFAULT '1', `form_mirror_1_x` tinyint(1) NOT NULL DEFAULT '0', `form_mirror_2` tinyint(4) NOT NULL DEFAULT '1', `form_mirror_2_x` tinyint(4) NOT NULL DEFAULT '0', `form_images` tinyint(1) NOT NULL DEFAULT '1', `form_images_x` tinyint(1) NOT NULL DEFAULT '0', `form_meta_desc` tinyint(1) NOT NULL DEFAULT '1', `form_meta_key` tinyint(1) NOT NULL DEFAULT '1', `form_robots` tinyint(1) NOT NULL DEFAULT '1', `form_tags` tinyint(1) NOT NULL DEFAULT '0', `form_select_from_other` tinyint(1) NOT NULL DEFAULT '0', `form_created_id` tinyint(1) NOT NULL DEFAULT '0', `form_created_id_x` tinyint(1) NOT NULL DEFAULT '0', `notes` text COLLATE utf8mb4_unicode_ci NOT 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`), KEY `idx_checked_out` (`checked_out`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /**ABDB**/INSERT INTO `#__jdownloads_usergroups_limits` VALUES ('1', '1', '1', '0', '{en-GB}You have reached your daily limit for the allowed number of Downloads.
You can resume downloading tomorrow. A new day starts when the Server time has passed the time 00:00:01.{/en-GB}', '0', '{en-GB}You have reached your weekly limit for the maximum permitted number of Downloads.
You can download more next week.{/en-GB}', '0', '{en-GB}You have reached your monthly limit for the maximum permitted number of downloads.
You can download more next month.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total daily download size.
You can download more tomorrow. A new day starts when the Server time has passed the time 00:00:01.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total weekly download size.
You can resume downloading next week.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total monthly download size.
You can resume downloading next month.{/en-GB}', '0', '{en-GB}One or more of your selected files exceeds your Download limit for the number of times it may be downloaded.
Please note that you can download every file only %s times.{/en-GB}', '60', '0', '0', '{en-GB}You can only upload %s files each day. You have reached the limit for today.{/en-GB}', '0', '0', '0', '0', '', '0', '{en-GB}Please wait. You can download the file in %s seconds.

Please note that you can only download the file immediately when you are a registered member.{/en-GB}', '0', '0', '0', '0', '
{msg_title}
', '0', '0', 'zip,rar,pdf,txt', '1', '1', 'mp3,mp4', '5120', '', '3', '1', '0', '1', '1', '1', '1', '0', '1', '0', '0', '0', '0', '0', '1', '0', '1', '0', '1', '0', '1', '1', '0', '1', '0', '1', '0', '1', '0', '0', '0', '0', '0', '1', '0', '1', '0', '0', '0', '0', '0', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '1', '1', '0', '0', '0', '0', '', '0', '0000-00-00 00:00:00'), ('2', '20', '2', '0', '{en-GB}You have reached your daily limit for the allowed number of Downloads.
You can resume downloading tomorrow. A new day starts when the Server time has passed the time 00:00:01.{/en-GB}', '0', '{en-GB}You have reached your weekly limit for the maximum permitted number of Downloads.
You can download more next week.{/en-GB}', '0', '{en-GB}You have reached your monthly limit for the maximum permitted number of downloads.
You can download more next month.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total daily download size.
You can download more tomorrow. A new day starts when the Server time has passed the time 00:00:01.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total weekly download size.
You can resume downloading next week.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total monthly download size.
You can resume downloading next month.{/en-GB}', '0', '{en-GB}One or more of your selected files exceeds your Download limit for the number of times it may be downloaded.
Please note that you can download every file only %s times.{/en-GB}', '60', '0', '0', '{en-GB}You can only upload %s files each day. You have reached the limit for today.{/en-GB}', '0', '0', '0', '0', '', '0', '{en-GB}Please wait. You can download the file in %s seconds.

Please note that you can only download the file immediately when you are a registered member.{/en-GB}', '0', '0', '0', '0', '
{msg_title}
', '0', '0', 'zip,rar,pdf,txt', '1', '1', 'mp3,mp4', '5120', '', '3', '1', '0', '1', '1', '1', '1', '0', '1', '0', '0', '0', '0', '0', '1', '0', '1', '0', '1', '0', '1', '1', '0', '1', '0', '1', '0', '1', '0', '0', '0', '0', '0', '1', '0', '1', '0', '0', '0', '0', '0', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '1', '1', '0', '0', '0', '0', '', '0', '0000-00-00 00:00:00'), ('3', '30', '3', '0', '{en-GB}You have reached your daily limit for the allowed number of Downloads.
You can resume downloading tomorrow. A new day starts when the Server time has passed the time 00:00:01.{/en-GB}', '0', '{en-GB}You have reached your weekly limit for the maximum permitted number of Downloads.
You can download more next week.{/en-GB}', '0', '{en-GB}You have reached your monthly limit for the maximum permitted number of downloads.
You can download more next month.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total daily download size.
You can download more tomorrow. A new day starts when the Server time has passed the time 00:00:01.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total weekly download size.
You can resume downloading next week.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total monthly download size.
You can resume downloading next month.{/en-GB}', '0', '{en-GB}One or more of your selected files exceeds your Download limit for the number of times it may be downloaded.
Please note that you can download every file only %s times.{/en-GB}', '60', '0', '0', '{en-GB}You can only upload %s files each day. You have reached the limit for today.{/en-GB}', '0', '0', '0', '0', '', '0', '{en-GB}Please wait. You can download the file in %s seconds.

Please note that you can only download the file immediately when you are a registered member.{/en-GB}', '0', '0', '0', '0', '
{msg_title}
', '0', '0', 'zip,rar,pdf,txt', '1', '1', 'mp3,mp4', '5120', '', '3', '1', '0', '1', '1', '1', '1', '0', '1', '0', '0', '0', '0', '0', '1', '0', '1', '0', '1', '0', '1', '1', '0', '1', '0', '1', '0', '1', '0', '0', '0', '0', '0', '1', '0', '1', '0', '0', '0', '0', '0', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '1', '1', '0', '0', '0', '0', '', '0', '0000-00-00 00:00:00'), ('4', '40', '4', '0', '{en-GB}You have reached your daily limit for the allowed number of Downloads.
You can resume downloading tomorrow. A new day starts when the Server time has passed the time 00:00:01.{/en-GB}', '0', '{en-GB}You have reached your weekly limit for the maximum permitted number of Downloads.
You can download more next week.{/en-GB}', '0', '{en-GB}You have reached your monthly limit for the maximum permitted number of downloads.
You can download more next month.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total daily download size.
You can download more tomorrow. A new day starts when the Server time has passed the time 00:00:01.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total weekly download size.
You can resume downloading next week.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total monthly download size.
You can resume downloading next month.{/en-GB}', '0', '{en-GB}One or more of your selected files exceeds your Download limit for the number of times it may be downloaded.
Please note that you can download every file only %s times.{/en-GB}', '60', '0', '0', '{en-GB}You can only upload %s files each day. You have reached the limit for today.{/en-GB}', '0', '0', '0', '0', '', '0', '{en-GB}Please wait. You can download the file in %s seconds.

Please note that you can only download the file immediately when you are a registered member.{/en-GB}', '0', '0', '0', '0', '
{msg_title}
', '0', '0', 'zip,rar,pdf,txt', '1', '1', 'mp3,mp4', '5120', '', '3', '1', '0', '1', '1', '1', '1', '0', '1', '0', '0', '0', '0', '0', '1', '0', '1', '0', '1', '0', '1', '1', '0', '1', '0', '1', '0', '1', '0', '0', '0', '0', '0', '1', '0', '1', '0', '0', '0', '0', '0', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '1', '1', '0', '0', '0', '0', '', '0', '0000-00-00 00:00:00'), ('5', '50', '5', '0', '{en-GB}You have reached your daily limit for the allowed number of Downloads.
You can resume downloading tomorrow. A new day starts when the Server time has passed the time 00:00:01.{/en-GB}', '0', '{en-GB}You have reached your weekly limit for the maximum permitted number of Downloads.
You can download more next week.{/en-GB}', '0', '{en-GB}You have reached your monthly limit for the maximum permitted number of downloads.
You can download more next month.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total daily download size.
You can download more tomorrow. A new day starts when the Server time has passed the time 00:00:01.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total weekly download size.
You can resume downloading next week.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total monthly download size.
You can resume downloading next month.{/en-GB}', '0', '{en-GB}One or more of your selected files exceeds your Download limit for the number of times it may be downloaded.
Please note that you can download every file only %s times.{/en-GB}', '60', '0', '0', '{en-GB}You can only upload %s files each day. You have reached the limit for today.{/en-GB}', '0', '0', '0', '0', '', '0', '{en-GB}Please wait. You can download the file in %s seconds.

Please note that you can only download the file immediately when you are a registered member.{/en-GB}', '0', '0', '0', '0', '
{msg_title}
', '0', '0', 'zip,rar,pdf,txt', '1', '1', 'mp3,mp4', '5120', '', '3', '1', '0', '1', '1', '1', '1', '0', '1', '0', '0', '0', '0', '0', '1', '0', '1', '0', '1', '0', '1', '1', '0', '1', '0', '1', '0', '1', '0', '0', '0', '0', '0', '1', '0', '1', '0', '0', '0', '0', '0', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '1', '1', '0', '0', '0', '0', '', '0', '0000-00-00 00:00:00'), ('6', '60', '6', '0', '{en-GB}You have reached your daily limit for the allowed number of Downloads.
You can resume downloading tomorrow. A new day starts when the Server time has passed the time 00:00:01.{/en-GB}', '0', '{en-GB}You have reached your weekly limit for the maximum permitted number of Downloads.
You can download more next week.{/en-GB}', '0', '{en-GB}You have reached your monthly limit for the maximum permitted number of downloads.
You can download more next month.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total daily download size.
You can download more tomorrow. A new day starts when the Server time has passed the time 00:00:01.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total weekly download size.
You can resume downloading next week.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total monthly download size.
You can resume downloading next month.{/en-GB}', '0', '{en-GB}One or more of your selected files exceeds your Download limit for the number of times it may be downloaded.
Please note that you can download every file only %s times.{/en-GB}', '60', '0', '0', '{en-GB}You can only upload %s files each day. You have reached the limit for today.{/en-GB}', '0', '0', '0', '0', '', '0', '{en-GB}Please wait. You can download the file in %s seconds.

Please note that you can only download the file immediately when you are a registered member.{/en-GB}', '0', '0', '0', '0', '
{msg_title}
', '0', '0', 'zip,rar,pdf,txt', '1', '1', 'mp3,mp4', '5120', '', '3', '1', '0', '1', '1', '1', '1', '0', '1', '0', '0', '0', '0', '0', '1', '0', '1', '0', '1', '0', '1', '1', '0', '1', '0', '1', '0', '1', '0', '0', '0', '0', '0', '1', '0', '1', '0', '0', '0', '0', '0', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '1', '1', '0', '0', '0', '0', '', '0', '0000-00-00 00:00:00'), ('7', '70', '7', '0', '{en-GB}You have reached your daily limit for the allowed number of Downloads.
You can resume downloading tomorrow. A new day starts when the Server time has passed the time 00:00:01.{/en-GB}', '0', '{en-GB}You have reached your weekly limit for the maximum permitted number of Downloads.
You can download more next week.{/en-GB}', '0', '{en-GB}You have reached your monthly limit for the maximum permitted number of downloads.
You can download more next month.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total daily download size.
You can download more tomorrow. A new day starts when the Server time has passed the time 00:00:01.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total weekly download size.
You can resume downloading next week.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total monthly download size.
You can resume downloading next month.{/en-GB}', '0', '{en-GB}One or more of your selected files exceeds your Download limit for the number of times it may be downloaded.
Please note that you can download every file only %s times.{/en-GB}', '60', '0', '0', '{en-GB}You can only upload %s files each day. You have reached the limit for today.{/en-GB}', '0', '0', '0', '0', '', '0', '{en-GB}Please wait. You can download the file in %s seconds.

Please note that you can only download the file immediately when you are a registered member.{/en-GB}', '0', '0', '0', '0', '
{msg_title}
', '0', '0', 'zip,rar,pdf,txt', '1', '1', 'mp3,mp4', '5120', '', '3', '1', '0', '1', '1', '1', '1', '0', '1', '0', '0', '0', '0', '0', '1', '0', '1', '0', '1', '0', '1', '1', '0', '1', '0', '1', '0', '1', '0', '0', '0', '0', '0', '1', '0', '1', '0', '0', '0', '0', '0', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '1', '1', '0', '0', '0', '0', '', '0', '0000-00-00 00:00:00'), ('8', '100', '8', '0', '{en-GB}You have reached your daily limit for the allowed number of Downloads.
You can resume downloading tomorrow. A new day starts when the Server time has passed the time 00:00:01.{/en-GB}', '0', '{en-GB}You have reached your weekly limit for the maximum permitted number of Downloads.
You can download more next week.{/en-GB}', '0', '{en-GB}You have reached your monthly limit for the maximum permitted number of downloads.
You can download more next month.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total daily download size.
You can download more tomorrow. A new day starts when the Server time has passed the time 00:00:01.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total weekly download size.
You can resume downloading next week.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total monthly download size.
You can resume downloading next month.{/en-GB}', '0', '{en-GB}One or more of your selected files exceeds your Download limit for the number of times it may be downloaded.
Please note that you can download every file only %s times.{/en-GB}', '60', '0', '0', '{en-GB}You can only upload %s files each day. You have reached the limit for today.{/en-GB}', '0', '0', '0', '0', '', '0', '{en-GB}Please wait. You can download the file in %s seconds.

Please note that you can only download the file immediately when you are a registered member.{/en-GB}', '0', '0', '0', '0', '
{msg_title}
', '0', '1', 'zip,rar,pdf,txt,doc,gif,png,jpg', '1', '1', 'mp3,mp4', '32768', '', '10', '1', '0', '1', '1', '1', '1', '0', '1', '0', '0', '0', '0', '0', '1', '0', '1', '0', '1', '0', '1', '1', '0', '1', '0', '1', '0', '1', '0', '0', '0', '0', '0', '1', '0', '1', '0', '0', '0', '0', '0', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '1', '1', '0', '0', '0', '0', '', '0', '0000-00-00 00:00:00'), ('9', '0', '9', '0', '{en-GB}You have reached your daily limit for the allowed number of Downloads.
You can resume downloading tomorrow. A new day starts when the Server time has passed the time 00:00:01.{/en-GB}', '0', '{en-GB}You have reached your weekly limit for the maximum permitted number of Downloads.
You can download more next week.{/en-GB}', '0', '{en-GB}You have reached your monthly limit for the maximum permitted number of downloads.
You can download more next month.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total daily download size.
You can download more tomorrow. A new day starts when the Server time has passed the time 00:00:01.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total weekly download size.
You can resume downloading next week.{/en-GB}', '0', '{en-GB}You have your reached the limit for the total monthly download size.
You can resume downloading next month.{/en-GB}', '0', '{en-GB}One or more of your selected files exceeds your Download limit for the number of times it may be downloaded.
Please note that you can download every file only %s times.{/en-GB}', '60', '0', '0', '{en-GB}You can only upload %s files each day. You have reached the limit for today.{/en-GB}', '0', '0', '0', '0', '', '0', '{en-GB}Please wait. You can download the file in %s seconds.

Please note that you can only download the file immediately when you are a registered member.{/en-GB}', '0', '0', '0', '0', '
{msg_title}
', '0', '0', 'zip,rar,pdf,txt', '1', '1', 'mp3,mp4', '5120', '', '3', '1', '0', '1', '1', '1', '1', '0', '1', '0', '0', '0', '0', '0', '1', '0', '1', '0', '1', '0', '1', '1', '0', '1', '0', '1', '0', '1', '0', '0', '0', '0', '0', '1', '0', '1', '0', '0', '0', '0', '0', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '0', '1', '1', '1', '0', '0', '0', '0', '', '0', '0000-00-00 00:00:00'); /**ABDB**/CREATE TABLE `#__jdownloads_templates` ( `id` int(11) NOT NULL AUTO_INCREMENT, `template_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `template_typ` tinyint(2) NOT NULL DEFAULT '0', `template_header_text` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `template_subheader_text` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `template_footer_text` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `template_before_text` text COLLATE utf8mb4_unicode_ci NOT NULL, `template_text` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `template_after_text` text COLLATE utf8mb4_unicode_ci NOT NULL, `template_active` tinyint(1) NOT NULL DEFAULT '0', `locked` tinyint(1) NOT NULL DEFAULT '0', `note` text COLLATE utf8mb4_unicode_ci NOT NULL, `cols` tinyint(1) NOT NULL DEFAULT '1', `uses_bootstrap` tinyint(1) NOT NULL DEFAULT '0', `uses_w3css` tinyint(1) NOT NULL DEFAULT '0', `checkbox_off` tinyint(1) NOT NULL DEFAULT '0', `use_to_view_subcats` tinyint(1) NOT NULL DEFAULT '0', `symbol_off` tinyint(1) NOT NULL DEFAULT '0', `language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '*', `checked_out` int(11) NOT NULL DEFAULT '0', `checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `preview_id` int(3) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_checked_out` (`checked_out`), KEY `idx_template_typ` (`template_typ`), KEY `idx_language` (`language`) ) ENGINE=InnoDB AUTO_INCREMENT=47 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /**ABDB**/INSERT INTO `#__jdownloads_templates` VALUES ('24', 'Standard Categories Layout 3.9', '1', '
\n
{home_link}
\n
{search_link}
\n
{upload_link}
\n
{category_listbox}
\n
', '
\n
\n
{subheader_title}
\n
{count_of_sub_categories}
\n
\n
{page_navigation_pages_counter}{page_navigation}
\n
', '\n
{back_link}
', '', '{cat_title_begin}
{subcats_title_text}
{cat_title_end}\n{cat_info_begin}\n
\n\n
{cat_pic}{cat_title}\n
\n
{sum_subcats}
\n
{sum_files_cat}
\n
\n
\n
{cat_description}
\n
{tags}
\n
\n{cat_info_end}', '', '1', '1', '', '1', '0', '0', '0', '0', '0', '*', '0', '0000-00-00 00:00:00', '1'), ('25', 'Categories Example with 4 columns 3.9', '1', '
\n
{home_link}
\n
{search_link}
\n
{upload_link}
\n
{category_listbox}
\n
', '
\n
\n
{subheader_title}
\n
{count_of_sub_categories}
\n
\n
{page_navigation_pages_counter}{page_navigation}
\n
', '\n
{back_link}
', '', '{cat_info_begin}\n
\n \n
\n
{cat_pic1}
\n
{cat_pic2}
\n
{cat_pic3}
\n
{cat_pic4}
\n
\n \n
\n
{cat_title1}
\n
{cat_title2}
\n
{cat_title3}
\n
{cat_title4}
\n
\n \n
\n
{sum_subcats1} 
\n
{sum_subcats2} 
\n
{sum_subcats3} 
\n
{sum_subcats4} 
\n
\n \n
\n
{sum_files_cat1} 
\n
{sum_files_cat2} 
\n
{sum_files_cat3} 
\n
{sum_files_cat4} 
\n
\n
\n
\n{cat_info_end}', '', '0', '1', 'Here is a sample layout with 4 columns. If you create your own layout with more then one column, you must observe the rules which may be found in the FAQ.', '4', '0', '0', '0', '0', '0', '*', '0', '0000-00-00 00:00:00', '2'), ('26', 'Categories Example with 2 columns 3.9', '1', '
\n
{home_link}
\n
{search_link}
\n
{upload_link}
\n
{category_listbox}
\n
', '
\n
\n
{subheader_title}
\n
{count_of_sub_categories}
\n
\n
{page_navigation_pages_counter}{page_navigation}
\n
', '\n
{back_link}
', '', '{cat_info_begin}\n
\n
\n
\n
{cat_title1}
\n
{sum_subcats1} 
\n
{sum_files_cat1} 
\n
\n
{cat_pic1}
\n
{cat_description1} 
\n
\n
\n
\n
{cat_title2}
\n
{sum_subcats2} 
\n
{sum_files_cat2} 
\n
\n
{cat_pic2}
\n
{cat_description2} 
\n
\n
\n
\n{cat_info_end}', '', '0', '1', '', '2', '0', '0', '0', '0', '0', '*', '0', '0000-00-00 00:00:00', '3'), ('27', 'Standard Subcategories Layout 3.9', '8', '', '', '', '\n\n
{subcats_title_text}\n \n
\n
', '\n\n
\n
{cat_pic}{cat_title}\n
\n
{sum_subcats}
\n
{sum_files_cat}
\n
\n
\n
\n
{cat_description}
\n
{tags}
\n
', '
', '1', '1', 'This is a subcategory layout used in a single category view.', '1', '0', '0', '0', '0', '0', '*', '0', '0000-00-00 00:00:00', '4'), ('28', 'Multi-Column Subcategories Layout 3.9', '8', '', '', '', '\n\n
{subcats_title_text}\n \n
\n
', '{cat_info_begin}\n
\n \n
\n
{cat_pic1}
\n
{cat_pic2}
\n
{cat_pic3}
\n
{cat_pic4}
\n
\n \n
\n
{cat_title1}
\n
{cat_title2}
\n
{cat_title3}
\n
{cat_title4}
\n
\n \n
\n
{sum_subcats1} 
\n
{sum_subcats2} 
\n
{sum_subcats3} 
\n
{sum_subcats4} 
\n
\n \n
\n
{sum_files_cat1} 
\n
{sum_files_cat2} 
\n
{sum_files_cat3} 
\n
{sum_files_cat4} 
\n
\n
\n
\n{cat_info_end}', '
', '0', '1', 'This is a subcategory layout used in a single category view.', '4', '0', '0', '0', '0', '0', '*', '0', '0000-00-00 00:00:00', '5'), ('29', 'Standard Category Layout 3.9', '4', '
\n
{home_link}
\n
{search_link}
\n
{upper_link}
\n
{upload_link}
\n
{category_listbox}
\n
', '
\n
\n
{subheader_title}
\n
{count_of_sub_categories}
\n
\n
{page_navigation_pages_counter}{page_navigation}
\n
', '\n
{back_link}
', '', '{cat_title_begin}
{subcats_title_text}
{cat_title_end}\n{cat_info_begin}\n
\n
{cat_pic}{cat_title}\n
\n
{sum_subcats}
\n
{sum_files_cat}
\n
\n
\n
\n
{cat_description}
\n
{tags}
\n
\n{cat_info_end}\n{sub_categories}\n
{checkbox_top}
\n{files}\n{form_hidden}\n
{form_button}
', '', '1', '1', '', '1', '0', '0', '0', '0', '0', '*', '0', '0000-00-00 00:00:00', '6'), ('30', 'Standard Files Layout 3.9', '2', '
\n
{home_link}
\n
{search_link}
\n
{upper_link}
\n
{upload_link}
\n
{category_listbox}
\n
', '
\n
\n
{subheader_title}
\n
{count_of_sub_categories}
\n
\n
{page_navigation_pages_counter}{page_navigation}
\n
{sort_order}
\n
\n
', '\n
{back_link}
', '', '{files_title_begin}
{files_title_text}
{files_title_end}\n\n
\n
{file_pic}{file_title}{release}{pic_is_new}{pic_is_hot}{pic_is_updated}
\n
{rating}
\n \n
\n
{tags}{show_association}
\r\n
\n
\n
\n
\n
{screenshot_begin}{screenshot_end}
\n
\n
{description}
\n \n
\n
\n
{license_text}
\n
{author_text}
\n
{author_url_text}
\n
{created_date_value}
\n
{language_text}
\n
{system_text}
\n
{filesize_value}
\n
{hits_value}
\n
\n \n
\n
{report_link}
\n
{sum_jcomments}
\n
{url_download}
\n
\n
{preview_player}{mp3_id3_tag}
\n
\n
', '', '0', '1', '', '1', '0', '0', '1', '0', '0', '*', '0', '0000-00-00 00:00:00', '7'), ('31', 'Standard Files Layout with Checkboxes 3.9', '2', '
\n
{home_link}
\n
{search_link}
\n
{upper_link}
\n
{upload_link}
\n
{category_listbox}
\n
', '
\n
\n
{subheader_title}
\n
{count_of_sub_categories}
\n
\n
{page_navigation_pages_counter}{page_navigation}
\n
{sort_order}
\n
\n
', '\n
{back_link}
', '', '{files_title_begin}
{files_title_text}
{files_title_end}\n
\n
\n
{file_pic}{file_title}{release}{pic_is_new}{pic_is_hot}{pic_is_updated}
\n
\n \n
{rating}
\n
{checkbox_list}
\n
\n
\n
\n
{tags}{show_association}
\r\n
\n\n
\n
\n
{screenshot_begin}{screenshot_end}
\n
{description}
\n
\n
\n
\n
{information_header}
\n
\n
\n {created_date_title}\n {created_date_value}\n
\n
\n {modified_date_title}\n {modified_date_value}\n
\n
\n {release_title}\n {release}\n
\n
\n {filesize_title}\n {filesize_value}\n
\n
\n {system_title}\n {system_text}\n
\n
\n {hits_title}\n {hits_value}\n
\n
\n
\n \n
\n
{report_link}
\n
{preview_player}{mp3_id3_tag}
\n
\n
', '', '0', '1', '', '1', '0', '0', '0', '0', '1', '*', '0', '0000-00-00 00:00:00', '8'), ('32', 'Standard Files Layout without Checkboxes 3.9', '2', '
\n
{home_link}
\n
{search_link}
\n
{upper_link}
\n
{upload_link}
\n
{category_listbox}
\n
', '
\n
\n
{subheader_title}
\n
{count_of_sub_categories}
\n
\n
{page_navigation_pages_counter}{page_navigation}
\n
{sort_order}
\n
\n
', '\n
{back_link}
', '', '{files_title_begin}
{files_title_text}
{files_title_end}\n
\n
\n
{file_pic}{file_title}{release}{pic_is_new}{pic_is_hot}{pic_is_updated}
\n
{url_download}
\n
{rating}
\n \n
\n
\n
{tags}{show_association}
\r\n
\n\n
\n
\n
{screenshot_begin}{screenshot_end}
\n
{description}
\n
\n
\n\n
\n
{information_header}
\n
\n
\n {created_date_title}\n {created_date_value}\n
\n
\n {modified_date_title}\n {modified_date_value}\n
\n
\n {release_title}\n {release}\n
\n
\n {filesize_title}\n {filesize_value}\n
\n
\n {system_title}\n {system_text}\n
\n
\n {hits_title}\n {hits_value}\n
\n
\n
\n \n
\n
{report_link}
\n\n
{preview_player}{mp3_id3_tag}
\n
\n
', '', '1', '1', '', '1', '0', '0', '1', '0', '1', '*', '0', '0000-00-00 00:00:00', '9'), ('33', 'Alternate Files Layout 3.9', '2', '
\n
{home_link}
\n
{search_link}
\n
{upper_link}
\n
{upload_link}
\n
{category_listbox}
\n
', '
\n
\n
{subheader_title}
\n
{count_of_sub_categories}
\n
\n
{page_navigation_pages_counter}{page_navigation}
\n
{sort_order}
\n
\n
', '\n
{back_link}
', '', '{files_title_begin}
{files_title_text}
{files_title_end}\n
\n
{file_pic} {file_title} {pic_is_new} {pic_is_hot} {pic_is_updated}{featured_pic}
\n
{rating}
\n
\n
\n
{tags}{show_association}
\r\n
\n
\n
\n
\n
\n {created_date_title}: {created_date_value}
\n
{release_title}: {release}
\n
{license_title}: {license_text}
\n
{filesize_title}: {filesize_value}
\n
{url_download}
\n
\n
\n
\n
{screenshot_begin} \n {screenshot_end}
\n
\n
{description}
\n
\n \n
\n
{report_link}
\n
\n
{link_to_details}
\n
\n
', '', '0', '1', '', '1', '0', '0', '1', '0', '1', '*', '0', '0000-00-00 00:00:00', '10'), ('34', 'Files Layout Full Info 3.9', '2', '
\n
{home_link}
\n
{search_link}
\n
{upper_link}
\n
{upload_link}
\n
{category_listbox}
\n
', '
\n
\n
{subheader_title}
\n
{count_of_sub_categories}
\n
\n
{page_navigation_pages_counter}{page_navigation}
\n
{sort_order}
\n
\n
', '\n
{back_link}
', '', '{files_title_begin}
{files_title_text}
{files_title_end}\n
\n \n
\n

{file_pic}{file_title}{pic_is_new}{pic_is_hot}{pic_is_updated}

\n
{url_download}
\n
{featured_pic}
\n
\n
\n
{tags}{show_association}
\r\n
\n \n
\n
{description}
\n
{preview_player} {mp3_id3_tag}
\n
\n {screenshot_begin}{screenshot_end}\n {screenshot_begin2}{screenshot_end2}\n {screenshot_begin3}{screenshot_end3}\n
\n
\n
\n\n
\n
{information_header}
\n \n
\n
\n {created_date_title}\n {created_date_value}\n
\n
\n {modified_date_title}\n {modified_date_value}\n
\n
\n {release_title}\n {release}\n
\n
\n {filesize_title}\n {filesize_value}\n
\n
\n {rating_title}\n {rating}\n
\n
\n \n
\n
\n {created_by_title}\n {created_by_value}\n
\n
\n {modified_by_title}\n {modified_by_value}\n
\n
\n {hits_title}\n {hits_value}\n
\n
\n {license_title}\n {license_text}\n
\n
\n {price_title}\n {price_value}\n
\n
\n
\n \n
\n
{report_link}
\n
\n
', '', '0', '1', '', '1', '0', '0', '1', '0', '1', '*', '0', '0000-00-00 00:00:00', '11'), ('35', 'Files link only 3.9', '2', '
\n
{home_link}
\n
{search_link}
\n
{upper_link}
\n
{upload_link}
\n
{category_listbox}
\n
', '
\n
\n
{subheader_title}
\n
{count_of_sub_categories}
\n
\n
{page_navigation_pages_counter}{page_navigation}
\n
{sort_order}
\n
\n
', '\n
{back_link}
', '', '
{file_title}{release}{pic_is_new}{pic_is_hot}{pic_is_updated} 
', '', '0', '1', '', '1', '0', '0', '1', '0', '1', '*', '0', '0000-00-00 00:00:00', '12'), ('36', 'Files Layout Single Line 3.9', '2', '
\n
{home_link}
\n
{search_link}
\n
{upper_link}
\n
{upload_link}
\n
{category_listbox}
\n
', '
\n
\n
{subheader_title}
\n
{count_of_sub_categories}
\n
\n
{page_navigation_pages_counter}{page_navigation}
\n
{sort_order}
\n
\n
', '\n
{back_link}
', '', '
\n
\n
{file_pic}{file_title}{release}{pic_is_new}{pic_is_hot}{pic_is_updated}
\n
{url_download}
\n \n
{tags}
\n
{show_association}
\n
\n
\n
', '', '0', '1', '', '1', '0', '0', '1', '0', '1', '*', '0', '0000-00-00 00:00:00', '13'), ('37', 'Compact Files Layout with Checkboxes 3.9', '2', '
\n
{home_link}
\n
{search_link}
\n
{upper_link}
\n
{upload_link}
\n
{category_listbox}
\n
', '
\n
\n
{subheader_title}
\n
{count_of_sub_categories}
\n
\n
{page_navigation_pages_counter}{page_navigation}
\n
{sort_order}
\n
\n
', '\n
{back_link}
', '', '{files_title_begin}
{files_title_text}
{files_title_end}\n
\n\n
\n
{file_pic}{file_title}{release}{pic_is_new}{pic_is_hot}{pic_is_updated}
\n
\n \n
{rating}
\n
{checkbox_list}
\n
\n
\n
{tags}{show_association}
\r\n
\n
\n\n
\n
\n
{screenshot_begin}{screenshot_end}
\n
{description}
\n
\n
\n\n
\n
\n
{information_header}
\n
\n
\n {created_date_title}\n {created_date_value}\n
\n
\n {modified_date_title}\n {modified_date_value}\n
\n
\n {release_title}\n {release}\n
\n
\n {filesize_title}\n {filesize_value}\n
\n
\n {created_by_title}\n {created_by_value}\n
\n
\n {hits_title}\n {hits_value}\n
\n
\n
\n
\n \n
\n
{report_link}
\n\n
{preview_player}{mp3_id3_tag}
\n
', '', '0', '1', '', '1', '0', '0', '0', '0', '1', '*', '0', '0000-00-00 00:00:00', '14'), ('38', 'Compact Files Layout 3.9', '2', '
\n
{home_link}
\n
{search_link}
\n
{upper_link}
\n
{upload_link}
\n
{category_listbox}
\n
', '
\n
\n
{subheader_title}
\n
{count_of_sub_categories}
\n
\n
{page_navigation_pages_counter}{page_navigation}
\n
{sort_order}
\n
\n
', '\n
{back_link}
', '', '{files_title_begin}
{files_title_text}
{files_title_end}\n
\n\n\n
{file_pic}{file_title}{release}{pic_is_new}{pic_is_hot}{pic_is_updated}
\n
{url_download}
\n
{rating}
\n \n
\n
{tags}{show_association}
\r\n
\n
\n\n
\n
\n
{screenshot_begin}{screenshot_end}
\n
{description}
\n
\n
\n\n
\n
\n
{information_header}
\n
\n
\n {created_date_title}\n {created_date_value}\n
\n
\n {modified_date_title}\n {modified_date_value}\n
\n
\n {release_title}\n {release}\n
\n
\n {filesize_title}\n {filesize_value}\n
\n
\n {created_by_title}\n {created_by_value}\n
\n
\n {hits_title}\n {hits_value}\n
\n
\n
\n
\n \n
\n
{report_link}
\n\n
{preview_player}{mp3_id3_tag}
\n
', '', '0', '1', '', '1', '0', '0', '1', '0', '1', '*', '0', '0000-00-00 00:00:00', '15'), ('39', 'Standard Details Layout - Full Info 3.9', '5', '
\n
{home_link}
\n
{search_link}
\n
{upper_link}
\n
{upload_link}
\n
{category_listbox}
\n
', '
{detail_title}
', '
{back_link}
', '', '
\n\n
\n

{file_pic} {file_title} {pic_is_new} {pic_is_hot} {pic_is_updated}

\n
{url_download}
\n
{featured_pic}
\n
\n
{tags}{show_association}
\r\n
\n
\n\n
\n
{description_long}
\n
{preview_player}
\n
{mp3_id3_tag}
\n
\n {screenshot_begin}{screenshot_end} \n {screenshot_begin2}{screenshot_end2} \n {screenshot_begin3}{screenshot_end3} \n
\n
\n
\n\n
\n
{information_header}
\n\n
\n
\n {created_date_title} \n {created_date_value}\n
\n
\n {modified_date_title} \n {modified_date_value}\n
\n
\n {release_title}\n {release}\n
\n
\n {filesize_title}\n {filesize_value}\n
\n
\n {rating_title}\n {rating}\n
\n
\n \n
\n
\n {created_by_title} \n {created_by_value}\n
\n
\n {modified_by_title} \n {modified_by_value}\n
\n
\n {hits_title}\n {hits_value}\n
\n
\n {license_title}\n {license_text}\n
\n
\n {price_title}\n {price_value}\n
\n
\n
\n
\n
{report_link}
\n
', '', '1', '1', '', '1', '0', '0', '0', '0', '1', '*', '0', '0000-00-00 00:00:00', '16'), ('40', 'Example Details Layout with Tabs 3.9', '5', '
\n
{home_link}
\n
{search_link}
\n
{upper_link}
\n
{upload_link}
\n
{category_listbox}
\n
', '
{detail_title}
', '
{back_link}
', '', '
\n
{file_pic}{file_title}{pic_is_new}{pic_is_hot}{pic_is_updated}\n
{featured_pic}
\n
{rating}
\n
\n
\n
{tags}{show_association}
\r\n
\n
\n{tabs begin}\n{tab description}\n
\n
{description_long}
\n
\n{tab description end}\n{tab pics}\n
\n
\n
{screenshot_begin}{screenshot_end}
\n
{screenshot_begin2}{screenshot_end2}
\n
{screenshot_begin3}{screenshot_end3}
\n
{screenshot_begin4}{screenshot_end4}
\n
{screenshot_begin5}{screenshot_end5}
\n
\n
\n
\n{tab pics end}\n{tab mp3}\n
\n
{preview_player}{mp3_id3_tag}
\n
\n{tab mp3 end}\n{tab data}\n
\n
{details_block_title}
\n\n
\n
\n {created_date_title}\n {created_date_value}\n
\n
\n {modified_date_title}\n {modified_date_value}\n
\n
\n {release_title}\n {release}\n
\n
\n {filesize_title}\n {filesize_value}\n
\n
\n {rating_title}\n {rating}\n
\n
\n {author_title}\n {author_text}\n
\n
\n {md5_title}\n {md5_value}\n
\n
\n \n
\n
\n {created_by_title}\n {created_by_value}\n
\n
\n {modified_by_title}\n {modified_by_value}\n
\n
\n {hits_title}\n {hits_value}\n
\n
\n {license_title}\n {license_text}\n
\n
\n {price_title}\n {price_value}\n
\n
\n {author_url_title}\n {author_url_text}\n
\n
\n {sha1_title}\n {sha1_value}\n
\n
\n
\n{tab data end}\n{tab download}\n
\n
{file_name_title}:{file_name}
\n
{filesize_title}:{filesize_value}
\n
{url_download}{mirror_1}{mirror_2}
\n
{report_link}
\n
\n{tab download end}\n{tabs end}', '', '0', '1', '', '1', '0', '0', '0', '0', '1', '*', '0', '0000-00-00 00:00:00', '17'), ('41', 'Example Details Layout 3.9', '5', '
\n
{home_link}
\n
{search_link}
\n
{upper_link}
\n
{upload_link}
\n
{category_listbox}
\n
', '
{detail_title}
', '
{back_link}
', '', '
\n
{file_pic}{file_title}{pic_is_new}{pic_is_hot}{pic_is_updated}\n
{featured_pic}
\n
{rating}
\n
\n
\n
{tags}{show_association}
\r\n
\n
{description_long}
\n
\n
{preview_player}
\n
{mp3_id3_tag}
\n
\n
{screenshot_begin}{screenshot_end}
\n
{screenshot_begin2}{screenshot_end2}
\n
{screenshot_begin3}{screenshot_end3}
\n
{screenshot_begin4}{screenshot_end4}
\n
{screenshot_begin5}{screenshot_end5}
\n
\n
\n
\n\n
\n
{details_block_title}
\n\n
\n
\n {created_date_title} \n {created_date_value}\n
\n
\n {modified_date_title} \n {modified_date_value}\n
\n
\n {release_title}\n {release}\n
\n
\n {filesize_title}\n {filesize_value}\n
\n
\n {rating_title}\n {rating}\n
\n
\n {author_title}\n {author_text}\n
\n
\n {md5_title}\n {md5_value}\n
\n
\n \n
\n
\n {created_by_title} \n {created_by_value}\n
\n
\n {modified_by_title} \n {modified_by_value}\n
\n
\n {hits_title}\n {hits_value}\n
\n
\n {license_title}\n {license_text}\n
\n
\n {price_title}\n {price_value}\n
\n
\n {author_url_title}\n {author_url_text}\n
\n
\n {sha1_title}\n {sha1_value}\n
\n
\n
{url_download}{mirror_1}{mirror_2}
\n
{report_link}
\n
', '', '0', '1', '', '1', '0', '0', '0', '0', '1', '*', '0', '0000-00-00 00:00:00', '18'), ('42', 'Standard Details Layout - Full Info (with Related Module) 3.9', '5', '
\n
{home_link}
\n
{search_link}
\n
{upper_link}
\n
{upload_link}
\n
{category_listbox}
\n
', '
{detail_title}
', '
{back_link}
', '', '
\n\n
\n

{file_pic} {file_title} {pic_is_new} {pic_is_hot} {pic_is_updated}

\n
{url_download}
\n
{featured_pic}
\n
\n
\n
{tags}{show_association}
\r\n
\n
\n\n
\n
{description_long}
\n
{preview_player}{mp3_id3_tag}
\n
\n {screenshot_begin}{screenshot_end} \n {screenshot_begin2}{screenshot_end2} \n {screenshot_begin3}{screenshot_end3} \n
\n
\n \n\n
\n
Information
\n\n
\n
\n {created_date_title} \n {created_date_value}\n
\n
\n {modified_date_title} \n {modified_date_value}\n
\n
\n {release_title}\n {release}\n
\n
\n {filesize_title}\n {filesize_value}\n
\n
\n {rating_title}\n {rating}\n
\n
\n \n
\n
\n {created_by_title} \n {created_by_value}\n
\n
\n {modified_by_title} \n {modified_by_value}\n
\n
\n {hits_title}\n {hits_value}\n
\n
\n {license_title}\n {license_text}\n
\n
\n {price_title}\n {price_value}\n
\n
\n
\n
\n
{report_link}
\n
', '', '0', '1', '', '1', '0', '0', '0', '0', '1', '*', '0', '0000-00-00 00:00:00', '19'), ('43', 'W3 CSS Layout: Two-Column - Text Right - Blue Header 3.9', '5', '
\n
{home_link}
\n
{search_link}
\n
{upper_link}
\n
{upload_link}
\n
{category_listbox}
\n
', '
{detail_title}
', '
{back_link}
', '', '
\n\n \n
\n\n \n
\n

{file_pic} {file_title} {release}

{pic_is_new} {pic_is_hot} {pic_is_updated}

\n
\n\n\n
\n

{license_title} {license_text}

\n

{filesize_title} {filesize_value}

\n

{file_date_title} {file_date}

\n

{file_name_title} {file_name}

\n

{hits_title} {hits_value}

\n

{created_date_title} {created_date_value}

\n

{modified_date_title} {modified_date_value}

\n

{system_title} {system_text}

\n\n
{rating}
\n \n
{tags}
\n
\n\n

{url_download}

\n\n\n
{screenshot_begin2} {screenshot_end2}
\n
\n\n\n\n
\n
{screenshot_begin} {screenshot_end}
\n
{description_long}
\n
\n
', '', '0', '1', '', '1', '0', '1', '0', '0', '1', '*', '0', '0000-00-00 00:00:00', '23'), ('44', 'Standard Summary Layout 3.9', '3', '
\n
{home_link}
\n
{search_link}
\n
{upper_link}
\n
{upload_link}
\n
{category_listbox}
\n
', '
\n
{summary_title}
\n
', '
{back_link}
', '', '
{title_text}
\n
{download_liste}
\n
{captcha}
\n
{password}
\n
{aup_points_info}
\n
{license_title}
\n
{license_text}
\n
{license_checkbox}
\n
{download_link}
\n
{info_zip_file_size}
\n
{external_download_info}
\n
{user_limitations}
\n
{google_adsense}
', '', '1', '1', '', '1', '0', '0', '0', '0', '0', '*', '0', '0000-00-00 00:00:00', '20'), ('45', 'Search Form Vertical Layout - Standard 3.9', '7', '
\n
{home_link}
\n
{search_link}
\n
{upper_link}
\n
{upload_link}
\n
{category_listbox}
\n
', '', '', '', '', '', '1', '1', '', '4', '0', '0', '0', '0', '0', '*', '0', '0000-00-00 00:00:00', '21'), ('46', 'Search Form Horizontal Layout 3.9', '7', '
\n
{home_link}
\n
{search_link}
\n
{upper_link}
\n
{upload_link}
\n
{category_listbox}
\n
', '
', '
', '', '', '', '0', '1', '', '4', '0', '0', '0', '0', '0', '*', '0', '0000-00-00 00:00:00', '22'); /**ABDB**/CREATE TABLE `#__jdownloads_ratings` ( `file_id` int(11) NOT NULL DEFAULT '0', `rating_sum` int(11) unsigned NOT NULL DEFAULT '0', `rating_count` int(11) unsigned NOT NULL DEFAULT '0', `lastip` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', PRIMARY KEY (`file_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /**ABDB**/CREATE TABLE `#__jdownloads_logs` ( `id` int(11) NOT NULL AUTO_INCREMENT, `type` tinyint(1) NOT NULL DEFAULT '1', `log_file_id` int(11) NOT NULL DEFAULT '0', `log_file_size` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `log_file_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `log_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `log_ip` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `log_datetime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `log_user` int(11) NOT NULL DEFAULT '0', `log_browser` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `ordering` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `idx_type` (`type`), KEY `idx_log_user` (`log_user`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /**ABDB**/CREATE TABLE `#__jdownloads_licenses` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `alias` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `checked_out` int(11) 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', PRIMARY KEY (`id`), KEY `idx_checked_out` (`checked_out`), KEY `idx_language` (`language`) ) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /**ABDB**/INSERT INTO `#__jdownloads_licenses` VALUES ('1', 'GNU/GPL', 'gnu-gpl', '

General Public License

\r\n\r\n

De GNU General Public License of kortweg de GPL is een copyleftlicentie voor software, bedacht door Richard M. Stallman van GNU, die (in het kort) stelt dat je met de software mag doen wat je wilt, inclusief aanpassen en verkopen, mits je dat recht ook doorgeeft aan anderen en de auteur(s) van de software vermeldt.

\r\n\r\n

\"Het

\r\n', 'https://nl.wikipedia.org/wiki/GNU_General_Public_License', '*', '0', '0000-00-00 00:00:00', '1', '1'), ('2', 'GNU/LGPL', 'gnu-lgpl', '

General Public License

\r\n\r\n

De GNU Lesser General Public License (meestal afgekort tot LGPL) is een licentie voor vrije software, bedacht door Richard M. Stallman en Eben Moglen. Het is een variatie op de GPL. De licentie heette eerst GNU Library GPL.

\r\n\r\n

\"Het

\r\n', 'https://nl.wikipedia.org/wiki/GNU_Lesser_General_Public_License', '*', '0', '0000-00-00 00:00:00', '1', '2'), ('3', 'Donationware', 'donationware', '

Donationware

\r\n\r\n

Donationware is een licentiemodel waarbij volledig operationele software door de auteur wordt gegeven aan een gebruiker, waarna de gebruiker verzocht wordt een donatie te betale.

\r\n', 'https://nl.wikipedia.org/wiki/Donationware', '*', '0', '0000-00-00 00:00:00', '1', '3'), ('4', 'Linkware', 'linkware', '

Linkware

\r\n\r\n

De Linkware-licentie vereist dat een link naar het originele document, de afbeelding of de softwareleverancier is opgenomen.

\r\n', 'https://nl.wikipedia.org/wiki/Softwarelicentie', '*', '0', '0000-00-00 00:00:00', '1', '4'), ('5', 'Charityware', 'charityware', '

Charityware

\r\n\r\n

Careware (ook wel charityware, helpware of goodware genoemd) is softwarelicentie op een manier die ten goede komt aan een goed doel. Sommige careware wordt gratis gedistribueerd, en de auteur suggereert dat sommige betalingen moeten worden gedaan aan een genomineerd goed doel of een goed doel naar keuze van de gebruiker

\r\n', 'https://nl.wikipedia.org/wiki/Careware', '*', '0', '0000-00-00 00:00:00', '1', '5'), ('6', 'Commercial license', 'commercial-license', '

Commercial license

\r\n\r\n

Commercial license is software waarvoor een vergunning (softwarelicentie) nodig is om een computerprogramma van de softwareleverancier te gebruiken.

\r\n', 'https://nl.wikipedia.org/wiki/Softwarelicentie', '*', '0', '0000-00-00 00:00:00', '1', '1'), ('7', 'Creative Commons', 'creative-commons', '

Creative Commons

\r\n\r\n

https://creativecommons.org/licenses/by/3.0/nl/

\r\n\r\n

Creative Commons (CC) is een oorspronkelijk Amerikaans project voor het bevorderen van open inhoud. Het heeft als doel om creatieve werken vrijer beschikbaar te stellen dan bij traditioneel auteursrecht of copyright mogelijk is, zodat die werken bijvoorbeeld gemakkelijker gekopieerd en verspreid kunnen worden of dat anderen er verder aan kunnen werken. Creative Commons biedt verschillende vrije licenties aan die copyrighthouders kunnen gebruiken om bij het verspreiden van informatie problemen te voorkomen die door de huidige auteursrechtwetgeving kunnen optreden.

\r\n\r\n

Het initiatief werd in 2001 opgericht door onder anderen Lawrence Lessig, een pleitbezorger voor een soepeler systeem van auteursrecht. Creative Commons heeft internationaal netwerk om de licenties te vertalen van het Engels naar andere talen.

\r\n\r\n

Creative Commons kenmerkt haar licenties doordat ze heeft gezorgd dat de licenties begrijpelijk zijn zowel voor de mens (de Commons Deed) als voor machines (de metadata) en dat de licenties afdwingbaar zijn voor de rechtbank (de juridische code, de daadwerkelijke licentie).

\r\n\r\n

\"Logo

\r\n', 'https://nl.wikipedia.org/wiki/Creative_Commons', '*', '0', '0000-00-00 00:00:00', '1', '6'), ('8', 'Careware', 'careware', '

Charityware

\r\n\r\n

Careware (ook wel charityware, helpware of goodware genoemd) is softwarelicentie op een manier die ten goede komt aan een goed doel. Sommige careware wordt gratis gedistribueerd, en de auteur suggereert dat sommige betalingen moeten worden gedaan aan een genomineerd goed doel of een goed doel naar keuze van de gebruiker

\r\n', 'https://nl.wikipedia.org/wiki/Careware', '*', '0', '0000-00-00 00:00:00', '1', '7'), ('9', 'Freeware', 'freeware', '

Freeware

\r\n\r\n

Freeware is een gangbare benaming voor software waarvan de auteur een licentie heeft verleend tot gebruik en verdere verspreiding in ongewijzigde vorm.

\r\n', 'https://nl.wikipedia.org/wiki/Freeware', '*', '0', '0000-00-00 00:00:00', '1', '8'), ('10', 'Open-Source', 'open-source', '

Open Source Software

\r\n\r\n

Opensourcesoftware is computerprogrammatuur waarvan de gebruiker de licentie heeft om naast gebruiker, ook ontwikkelaar te zijn.

\r\n\r\n

\"\"

\r\n', 'https://nl.wikipedia.org/wiki/Opensourcesoftware', '*', '0', '0000-00-00 00:00:00', '1', '9'), ('11', 'Pixabay', 'pixabay', '

Vereenvoudigde Pixabay-licentie

\r\n\r\n

De Pixabay Licentie stelt makers in staat en beschermt onze gemeenschap. We willen het zo simpel mogelijk houden. Hier is een overzicht van wat Pixabay-inhoud wel en niet kan worden gebruikt.

\r\n\r\n

Wat mag er zijn?

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
✓Alle inhoud op Pixabay kan gratis worden gebruikt voor commercieel en niet-commercieel gebruik in print en digitaal, behalve in de gevallen vermeld in "Wat is niet toegestaan".
✓Naamsvermelding is niet vereist. Het is niet nodig om de bijdrager of Pixabay te erkennen, maar wordt altijd gewaardeerd door onze gemeenschap.
✓U kunt inhoud aanpassen via Pixabay.
\r\n\r\n

 

\r\n\r\n

Wat mag er niet?

\r\n\r\n

Dit gedeelte is alleen van toepassing op gebruikers van afbeeldingen en niet op de juiste auteurs van afbeeldingen.

\r\n\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n
✕Verspreid of verkoop de Pixabay-afbeeldingen of video's van iemand anders niet op andere aandelen- of wallpaper-platforms.
✕Verkoop geen ongewijzigde kopieën van een afbeelding. verkoop bijvoorbeeld een exacte kopie van een stockfoto als poster, print of op een fysiek product.
✕Stel identificeerbare mensen niet in een slecht daglicht of op een manier die beledigend is.
✕Gebruik geen afbeeldingen met identificeerbare merken om een ​​misleidende associatie met een product of dienst te creëren.
\r\n', 'https://pixabay.com/service/license/', '*', '0', '0000-00-00 00:00:00', '1', '10'), ('12', 'Public Domain', 'public-domain', '

Public Domain

\r\n\r\n

Publicdomainsoftware is over het algemeen software die door de ontwikkelaars in het publiek domein is geplaatst, waarbij dus afstand is gedaan van de auteurs- of creatierechten.

\r\n', 'https://nl.wikipedia.org/wiki/Publicdomainsoftware', '*', '0', '0000-00-00 00:00:00', '1', '11'), ('13', 'Shareware', 'shareware', '

Shareware

\r\n\r\n

Shareware is een vorm van software die zonder of met weinig restricties verspreid mag worden.

\r\n', 'https://nl.wikipedia.org/wiki/Shareware', '*', '0', '0000-00-00 00:00:00', '1', '12'), ('14', 'Perpetual Software License', 'perpetual-software-license', '

Perpetual Software License  (eeuwigdurende softwarelicentie)

\r\n\r\n

Een Perpetual softwarelicentie is een soort  softwarelicentie waarmee iemand een  programma voor onbepaalde tijd mag gebruiken. Over het algemeen staat een permanente softwarelicentie de houder buiten de beëindiging toe om een ​​specifieke versie van een bepaald softwareprogramma continu te gebruiken tegen betaling van een eenmalige vergoeding.

\r\n', 'https://nl.wikipedia.org/wiki/Softwarelicentie', '*', '0', '0000-00-00 00:00:00', '1', '13'), ('15', 'Subscription-based licensing', 'subscription-based-licensing', '', '', '*', '0', '0000-00-00 00:00:00', '1', '14'), ('16', 'FaaS', 'faas', '

FaaS

\r\n\r\n

Function as a Service (FaaS) is een cloud computing-model waarmee gebruikers applicaties kunnen ontwikkelen en functionaliteiten kunnen implementeren zonder een server te onderhouden, waardoor de procesefficiëntie toeneemt.

\r\n', '', '*', '0', '0000-00-00 00:00:00', '1', '15'), ('17', 'SaaS', 'saas', '

SaaS

\r\n\r\n

Software as a service, vaak afgekort als SaaS, ook weleens software on demand genoemd, is software die als een online dienst wordt aangeboden. De klant hoeft de software niet aan te schaffen, maar sluit bijvoorbeeld een contract per maand per gebruiker af, eventueel in combinatie met andere parameters. De SaaS-aanbieder zorgt voor installatie, onderhoud en beheer, de gebruiker benadert de software over het internet bij de SaaS-aanbieder.

\r\n', 'https://nl.wikipedia.org/wiki/Software_as_a_Service', '*', '0', '0000-00-00 00:00:00', '1', '16'); /**ABDB**/CREATE TABLE `#__jdownloads_files` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `alias` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `description_long` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `file_pic` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `images` text COLLATE utf8mb4_unicode_ci NOT NULL, `price` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `release` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `file_language` int(3) NOT NULL DEFAULT '0', `system` int(3) NOT NULL DEFAULT '0', `license` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `url_license` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `license_agree` tinyint(1) NOT NULL DEFAULT '0', `size` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `file_date` 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', `use_timeframe` tinyint(1) NOT NULL DEFAULT '0', `url_download` varchar(400) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'contains only the assigned filename', `preview_filename` varchar(400) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `other_file_id` int(11) NOT NULL DEFAULT '0', `md5_value` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `sha1_value` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `extern_file` varchar(600) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `extern_site` tinyint(1) NOT NULL DEFAULT '0', `mirror_1` varchar(600) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `mirror_2` varchar(600) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `extern_site_mirror_1` tinyint(1) NOT NULL DEFAULT '0', `extern_site_mirror_2` tinyint(1) NOT NULL DEFAULT '0', `url_home` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `author` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `url_author` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `created_by` int(11) NOT NULL DEFAULT '0', `created_mail` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `modified_by` int(11) NOT NULL DEFAULT '0', `modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `submitted_by` int(11) NOT NULL DEFAULT '0', `set_aup_points` tinyint(1) NOT NULL DEFAULT '0', `downloads` int(11) NOT NULL DEFAULT '0', `catid` int(11) NOT NULL DEFAULT '0', `notes` text COLLATE utf8mb4_unicode_ci NOT NULL, `changelog` text COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `password_md5` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `views` int(11) NOT NULL DEFAULT '0', `metakey` text COLLATE utf8mb4_unicode_ci NOT NULL, `metadesc` text COLLATE utf8mb4_unicode_ci NOT NULL, `robots` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `update_active` tinyint(1) NOT NULL DEFAULT '0', `access` int(10) unsigned NOT NULL DEFAULT '0', `user_access` int(11) unsigned NOT NULL DEFAULT '0', `language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `ordering` int(11) NOT NULL DEFAULT '0', `featured` tinyint(1) NOT NULL DEFAULT '0', `published` 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', `asset_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'FK to the #__assets table', PRIMARY KEY (`id`), KEY `idx_catid` (`catid`), KEY `idx_access` (`access`), KEY `idx_user_access` (`user_access`), KEY `idx_published` (`published`), KEY `idx_checked_out` (`checked_out`), KEY `idx_alias` (`alias`), KEY `idx_created_by` (`created_by`), KEY `idx_language` (`language`), KEY `idx_featured` (`featured`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /**ABDB**/INSERT INTO `#__jdownloads_files` VALUES ('1', 'Joomla_3.9.x_to_3.9.24-Stable-Patch_Package', 'joomla-3-9-x-to-3-9-24-stable-patch-package', '', '', 'zip.png', '', '', '', '0', '0', '', '', '0', '6.87 MB', '2021-02-14 09:19:21', '2021-02-14 09:19:21', '2021-03-18 20:31:30', '0000-00-00 00:00:00', '0', 'Joomla_3.9.x_to_3.9.24-Stable-Patch_Package.zip', '', '0', '9754af74a9a5bd24bba74923279725eb', '83b179a5f1f8b227b9e4cdd7e62335466d0521cd', '', '0', '', '', '0', '0', '', '', '', '0', '', '0', '0000-00-00 00:00:00', '0', '0', '0', '4', '', '', '', '', '0', '', '', '', '0', '1', '0', '*', '1', '0', '1', '0', '0000-00-00 00:00:00', '248'), ('2', 'Joomla_3.9.24-Stable-Full_Package', 'joomla-3-9-24-stable-full-package', '', '', 'zip.png', '', '', '', '0', '0', '', '', '0', '13.36 MB', '2021-02-14 09:19:21', '2021-02-14 09:19:21', '2021-03-18 20:31:33', '0000-00-00 00:00:00', '0', 'Joomla_3.9.24-Stable-Full_Package.zip', '', '0', '79412ce9be0f460db2da96bd9455238c', '4ae73137a0a84a0b606ecbffb82ac90930bdebf6', '', '0', '', '', '0', '0', '', '', '', '0', '', '0', '0000-00-00 00:00:00', '0', '0', '0', '4', '', '', '', '', '0', '', '', '', '0', '1', '0', '*', '2', '0', '1', '0', '0000-00-00 00:00:00', '249'); /**ABDB**/CREATE TABLE `#__jdownloads_categories` ( `id` int(11) NOT NULL AUTO_INCREMENT, `cat_dir` text COLLATE utf8mb4_unicode_ci NOT NULL, `cat_dir_parent` text COLLATE utf8mb4_unicode_ci NOT NULL, `parent_id` int(11) 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', `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `alias` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '', `description` text COLLATE utf8mb4_unicode_ci NOT NULL, `pic` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `access` int(10) unsigned NOT NULL DEFAULT '0', `user_access` int(11) unsigned NOT NULL DEFAULT '0', `metakey` text COLLATE utf8mb4_unicode_ci NOT NULL, `metadesc` text COLLATE utf8mb4_unicode_ci NOT NULL, `robots` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `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) NOT NULL DEFAULT '0', `modified_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `notes` text COLLATE utf8mb4_unicode_ci NOT NULL, `views` int(10) unsigned NOT NULL DEFAULT '0', `params` text COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `password_md5` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `ordering` int(11) NOT NULL DEFAULT '0', `published` 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', `asset_id` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'FK to the #__assets table', PRIMARY KEY (`id`), KEY `idx_access` (`access`), KEY `idx_checked_out` (`checked_out`), KEY `idx_left_right` (`lft`,`rgt`), KEY `idx_alias` (`alias`(100)), KEY `idx_published` (`published`), KEY `idx_language` (`language`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /**ABDB**/INSERT INTO `#__jdownloads_categories` VALUES ('1', '', '', '0', '0', '7', '0', 'ROOT', 'root', '', '', '1', '0', '', '', '', '0', '0000-00-00 00:00:00', '0', '0000-00-00 00:00:00', '*', '', '0', '', '', '', '0', '1', '0', '0000-00-00 00:00:00', '0'), ('2', 'Uncategorised', '', '1', '1', '2', '1', 'Uncategorised', 'uncategorised', '', 'folder.png', '1', '0', '', '', '', '524', '2021-02-13 20:54:24', '0', '0000-00-00 00:00:00', '*', '', '0', '{}', '', '', '1', '1', '0', '0000-00-00 00:00:00', '240'), ('3', 'joomla', '', '1', '3', '6', '1', 'joomla', 'joomla', '', 'folder.png', '1', '0', '', '', '', '0', '2021-02-13 20:54:48', '0', '0000-00-00 00:00:00', '*', '', '0', '{}', '', '', '2', '0', '0', '0000-00-00 00:00:00', '241'), ('4', 'Version-3x', 'joomla', '3', '4', '5', '2', 'Version-3x', 'version-3x', '', 'folder.png', '1', '0', '', '', '', '0', '2021-02-13 20:54:48', '0', '0000-00-00 00:00:00', '*', '', '0', '{}', '', '', '1', '0', '0', '0000-00-00 00:00:00', '242'); /**ABDB**/CREATE TABLE `#__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 AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4; /**ABDB**/INSERT INTO `#__finder_types` VALUES ('1', 'Tag', ''), ('2', 'Category', ''), ('3', 'Contact', ''), ('4', 'Article', ''), ('5', 'News Feed', ''); /**ABDB**/CREATE TABLE `#__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; /**ABDB**/CREATE TABLE `#__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; /**ABDB**/CREATE TABLE `#__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; /**ABDB**/INSERT INTO `#__finder_terms_common` VALUES ('a', 'en'), ('about', 'en'), ('after', 'en'), ('ago', 'en'), ('all', 'en'), ('am', 'en'), ('an', 'en'), ('and', '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'), ('nothing', 'en'), ('of', 'en'), ('off', 'en'), ('often', 'en'), ('old', 'en'), ('on', 'en'), ('onc', 'en'), ('once', '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'), ('version', 'en'), ('very', 'en'), ('via', 'en'), ('want', 'en'), ('was', 'en'), ('way', 'en'), ('were', 'en'), ('what', 'en'), ('when', 'en'), ('where', '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'); /**ABDB**/CREATE TABLE `#__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 AUTO_INCREMENT=336082 DEFAULT CHARSET=utf8mb4; /**ABDB**/CREATE TABLE `#__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; /**ABDB**/CREATE TABLE `#__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 AUTO_INCREMENT=155 DEFAULT CHARSET=utf8mb4; /**ABDB**/CREATE TABLE `#__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; /**ABDB**/CREATE TABLE `#__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; /**ABDB**/CREATE TABLE `#__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; /**ABDB**/CREATE TABLE `#__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; /**ABDB**/CREATE TABLE `#__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; /**ABDB**/CREATE TABLE `#__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; /**ABDB**/CREATE TABLE `#__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; /**ABDB**/CREATE TABLE `#__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; /**ABDB**/CREATE TABLE `#__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; /**ABDB**/CREATE TABLE `#__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; /**ABDB**/CREATE TABLE `#__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; /**ABDB**/CREATE TABLE `#__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; /**ABDB**/CREATE TABLE `#__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; /**ABDB**/CREATE TABLE `#__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; /**ABDB**/CREATE TABLE `#__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; /**ABDB**/CREATE TABLE `#__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; /**ABDB**/CREATE TABLE `#__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, `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 AUTO_INCREMENT=467 DEFAULT CHARSET=utf8mb4; /**ABDB**/CREATE TABLE `#__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, PRIMARY KEY (`filter_id`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4; /**ABDB**/INSERT INTO `#__finder_filters` VALUES ('2', 'Blog Search', 'blog-search', '1', '2021-06-02 09:51:16', '524', '', '2021-06-02 09:51:16', '0', '0', '0000-00-00 00:00:00', '1', '33', '{\"w1\":\"\",\"d1\":\"\",\"w2\":\"\",\"d2\":\"\"}'); /**ABDB**/CREATE TABLE `#__fields_values` ( `field_id` int(10) unsigned NOT NULL, `item_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Allow references to items which have strings as ids, eg. none db systems.', `value` text COLLATE utf8mb4_unicode_ci, KEY `idx_field_id` (`field_id`), KEY `idx_item_id` (`item_id`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /**ABDB**/INSERT INTO `#__fields_values` VALUES ('1', '24', 'waarde'), ('1', '1', 'Age Themes'), ('1', '11', 'waarde'), ('1', '27', 'Development'), ('1', '12', 'Development'), ('1', '13', 'Development'), ('1', '14', 'Development'), ('1', '15', 'Development'), ('1', '17', 'Development'), ('1', '18', 'Development'), ('1', '26', 'Development'), ('1', '29', 'Development'), ('1', '19', 'Development'), ('1', '30', 'Development'), ('1', '9', 'Development'), ('1', '34', 'Development'), ('1', '35', 'Development'), ('1', '38', 'Development'), ('1', '41', 'Development'), ('1', '42', 'Development'), ('1', '16', 'Development'), ('1', '45', 'Development'), ('1', '46', 'Development'), ('1', '50', 'Development'); /**ABDB**/CREATE TABLE `#__fields_groups` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `asset_id` int(10) unsigned NOT NULL DEFAULT '0', `context` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `note` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` text COLLATE utf8mb4_unicode_ci 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 COLLATE utf8mb4_unicode_ci NOT NULL, `language` char(7) COLLATE utf8mb4_unicode_ci 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 AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /**ABDB**/INSERT INTO `#__fields_groups` VALUES ('1', '260', 'com_weblinks.weblink', 'veldgroep1', '', 'veldgroep1', '1', '0', '0000-00-00 00:00:00', '0', '{\"display_readonly\":\"1\"}', '*', '2021-02-20 20:42:59', '524', '2021-03-03 11:01:36', '524', '1'); /**ABDB**/CREATE TABLE `#__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; /**ABDB**/INSERT INTO `#__fields_categories` VALUES ('1', '29'), ('1', '30'), ('1', '31'); /**ABDB**/CREATE TABLE `#__fields` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `asset_id` int(10) unsigned NOT NULL DEFAULT '0', `context` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `group_id` int(10) unsigned NOT NULL DEFAULT '0', `title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `default_value` text COLLATE utf8mb4_unicode_ci, `type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'text', `note` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '', `description` text COLLATE utf8mb4_unicode_ci 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 COLLATE utf8mb4_unicode_ci NOT NULL, `fieldparams` text COLLATE utf8mb4_unicode_ci NOT NULL, `language` char(7) COLLATE utf8mb4_unicode_ci 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 AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /**ABDB**/INSERT INTO `#__fields` VALUES ('1', '259', 'com_weblinks.weblink', '0', 'Development', 'development', 'Development', 'Development', 'text', '', 'Development', '1', '0', '0', '0000-00-00 00:00:00', '0', '{\"hint\":\"\",\"class\":\"\",\"label_class\":\"\",\"show_on\":\"\",\"render_class\":\"\",\"showlabel\":\"1\",\"label_render_class\":\"\",\"display\":\"2\",\"layout\":\"\",\"display_readonly\":\"2\"}', '{\"filter\":\"JComponentHelper::filterText\",\"maxlength\":\"\"}', '*', '2021-02-20 20:42:33', '524', '2021-03-03 11:01:19', '524', '1'); /**ABDB**/CREATE TABLE `#__failed_login_attempts_logs` ( `id` int(11) NOT NULL AUTO_INCREMENT, `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `username` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `datetime` datetime NOT NULL, `country` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `browser` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `operating_system` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `where` varchar(15) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=38 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /**ABDB**/INSERT INTO `#__failed_login_attempts_logs` VALUES ('10', '10.32.1.232', 'Joomla4All', 'jooml_admin', '', '2021-09-25 11:00:37', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('11', '10.32.1.232', 'Joomla4All', 'jooml_admin', '', '2021-09-25 16:10:52', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('12', '10.32.1.232', 'Joomla4All', 'jooml_admin', '', '2021-10-01 11:10:55', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('13', '10.32.1.232', 'Joomla4All', 'jooml_admin', '', '2021-10-06 19:15:41', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('14', '10.32.1.232', 'Joomla4All', 'jooml_admin', '', '2021-10-07 09:30:08', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('15', '10.32.1.232', 'Joomla4All', 'jooml_admin', '', '2021-10-07 14:54:52', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('16', '10.32.1.232', 'Joomla4All', 'jooml_admin', '', '2021-10-07 15:40:37', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('17', '10.32.1.232', 'Joomla4All', 'jooml_admin', '', '2021-10-08 08:52:04', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('18', '10.32.1.232', 'Joomla4All', 'jooml_admin', '', '2021-10-08 08:59:08', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('19', '10.32.1.232', 'Joomla4All', 'jooml_admin', '', '2021-10-08 09:06:54', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('20', '10.32.1.232', 'Joomla4All', 'jooml_admin', '', '2021-10-09 10:15:08', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('21', '10.32.1.232', 'Joomla4All', 'jooml_admin', '', '2021-10-09 19:28:52', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('22', '10.32.1.232', 'Joomla4All', 'jooml_admin', '', '2021-10-10 16:20:43', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('23', '10.32.1.232', 'Joomla4All', 'jooml_admin', '', '2021-10-17 20:14:36', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('24', '10.32.1.232', 'Joomla4All', 'jooml_admin', '', '2021-10-18 09:52:23', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('25', '10.32.1.232', 'Joomla4All', 'jooml_admin', '', '2021-10-18 18:19:03', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('26', '10.32.1.232', 'Joomla4All', 'jooml_admin', '', '2021-10-19 22:22:54', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('27', '10.32.1.232', 'Joomla4All', 'jooml_admin', '', '2021-10-20 15:06:48', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('28', '10.32.1.232', 'Joomla4All', 'jooml_admin', '', '2021-10-20 20:39:45', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('29', '10.32.1.232', 'Joomla4All', 'jooml_admin', '', '2021-10-22 09:54:00', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('30', '90.145.170.115', 'Joomla4All', 'jooml_admin', '', '2021-10-22 14:22:33', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('31', '90.145.170.115', '', ' jooml_admin', '', '2021-10-22 14:24:15', '', '', '', 'JGLOBAL_AUTH_NO_USER', 'frontend'), ('32', '90.145.170.115', 'Joomla4All', 'jooml_admin', '', '2021-10-22 14:37:22', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('33', '90.145.170.115', 'Joomla4All', 'jooml_admin', '', '2021-10-22 14:38:10', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('34', '90.145.170.115', 'Joomla4All', 'jooml_admin', '', '2021-10-22 14:59:51', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('35', '90.145.170.115', 'Joomla4All', 'jooml_admin', '', '2021-10-22 15:00:18', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('36', '90.145.170.115', 'Joomla4All', 'jooml_admin', '', '2021-10-22 15:26:05', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'), ('37', '90.145.170.115', 'Joomla4All', 'jooml_admin', '', '2021-10-22 17:26:09', '', '', '', 'PLG_FLA_SUCCESSFULLY_LOGIN', 'backend'); /**ABDB**/CREATE TABLE `#__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) COLLATE utf8mb4_unicode_ci NOT NULL, `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `element` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL, `folder` varchar(100) COLLATE utf8mb4_unicode_ci 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` text COLLATE utf8mb4_unicode_ci NOT NULL, `params` text COLLATE utf8mb4_unicode_ci NOT NULL, `custom_data` text COLLATE utf8mb4_unicode_ci NOT NULL, `system_data` text COLLATE utf8mb4_unicode_ci 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=10425 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /**ABDB**/INSERT INTO `#__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) 2006 Open Source Matters, Inc.\",\"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) 2007 Open Source Matters, Inc.\\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) 2006 Open Source Matters, Inc.\",\"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) 2006 Open Source Matters, Inc.\",\"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) 2006 Open Source Matters, Inc.\",\"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) 2007 Open Source Matters, Inc.\",\"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) 2006 Open Source Matters, Inc.\",\"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) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_CONTACT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"contact\"}', '{\"contact_layout\":\"_:default\",\"show_contact_category\":\"hide\",\"save_history\":\"1\",\"history_limit\":10,\"show_contact_list\":\"0\",\"presentation_style\":\"plain\",\"show_tags\":\"1\",\"show_info\":\"1\",\"show_name\":\"0\",\"show_position\":\"1\",\"show_email\":\"0\",\"add_mailto_link\":\"1\",\"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_image\":\"1\",\"image\":\"\",\"show_misc\":\"1\",\"allow_vcard\":\"0\",\"show_articles\":\"0\",\"articles_display_num\":\"10\",\"show_profile\":\"0\",\"show_user_custom_fields\":[\"-1\"],\"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\":\"\",\"category_layout\":\"_:default\",\"show_category_title\":\"1\",\"show_description\":\"1\",\"show_description_image\":\"0\",\"maxLevel\":\"-1\",\"show_subcat_desc\":\"1\",\"show_empty_categories\":\"0\",\"show_cat_items\":\"1\",\"show_cat_tags\":\"1\",\"show_base_description\":\"1\",\"maxLevelcat\":\"-1\",\"show_subcat_desc_cat\":\"1\",\"show_empty_categories_cat\":\"0\",\"show_cat_items_cat\":\"1\",\"filter_field\":\"0\",\"show_pagination_limit\":\"0\",\"show_headings\":\"1\",\"show_image_heading\":\"0\",\"show_position_headings\":\"1\",\"show_email_headings\":\"0\",\"show_telephone_headings\":\"1\",\"show_mobile_headings\":\"0\",\"show_fax_headings\":\"0\",\"show_suburb_headings\":\"1\",\"show_state_headings\":\"1\",\"show_country_headings\":\"1\",\"show_pagination\":\"2\",\"show_pagination_results\":\"1\",\"initial_sort\":\"ordering\",\"captcha\":\"\",\"show_email_form\":\"1\",\"show_email_copy\":\"0\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"1\",\"custom_reply\":\"0\",\"redirect\":\"\",\"show_feed_link\":\"1\",\"sef_advanced\":0,\"sef_ids\":0,\"custom_fields_enable\":\"1\"}', '', '', '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\":\"Jun 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2007 Open Source Matters, Inc.\",\"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) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_INSTALLER_XML_DESCRIPTION\",\"group\":\"\"}', '{\"show_jed_info\":\"1\",\"cachetimeout\":\"6\",\"minimum_stability\":\"4\"}', '', '', '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) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_LANGUAGES_XML_DESCRIPTION\",\"group\":\"\"}', '{\"administrator\":\"en-GB\",\"site\":\"nl-NL\"}', '', '', '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) 2006 Open Source Matters, Inc.\",\"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) 2006 Open Source Matters, Inc.\",\"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,txt,xcf,xls,BMP,CSV,DOC,GIF,ICO,JPG,JPEG,ODG,ODP,ODS,ODT,PDF,PNG,PPT,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\\/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) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MENUS_XML_DESCRIPTION\",\"group\":\"\"}', '{\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\"}', '', '', '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) 2006 Open Source Matters, Inc.\",\"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) 2006 Open Source Matters, Inc.\",\"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) 2006 Open Source Matters, Inc.\",\"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) 2006 Open Source Matters, Inc.\",\"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) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_SEARCH_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"search\"}', '{\"enabled\":\"1\",\"search_phrases\":\"1\",\"search_areas\":\"1\",\"show_date\":\"1\",\"opensearch_name\":\"\",\"opensearch_description\":\"\"}', '', '', '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) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_TEMPLATES_XML_DESCRIPTION\",\"group\":\"\"}', '{\"template_positions_display\":\"0\",\"upload_limit\":\"20\",\"image_formats\":\"gif,bmp,jpg,jpeg,png\",\"source_formats\":\"txt,less,ini,xml,js,php,css,scss,sass\",\"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) 2006 Open Source Matters, Inc.\",\"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\",\"info_block_show_title\":\"1\",\"show_category\":\"1\",\"link_category\":\"1\",\"show_parent_category\":\"1\",\"link_parent_category\":\"0\",\"show_associations\":\"0\",\"flags\":\"1\",\"show_author\":\"1\",\"link_author\":\"0\",\"show_create_date\":\"0\",\"show_modify_date\":\"0\",\"show_publish_date\":\"1\",\"show_item_navigation\":\"1\",\"show_vote\":\"0\",\"show_readmore\":\"1\",\"show_readmore_title\":\"1\",\"readmore_limit\":\"100\",\"show_tags\":\"1\",\"show_icons\":\"1\",\"show_print_icon\":\"1\",\"show_email_icon\":\"0\",\"show_hits\":\"1\",\"record_hits\":\"1\",\"show_noauth\":\"0\",\"urls_position\":\"0\",\"captcha\":\"recaptcha_invisible\",\"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\":\"1\",\"show_empty_categories\":\"0\",\"show_no_articles\":\"1\",\"show_subcat_desc\":\"1\",\"show_cat_num_articles\":\"0\",\"show_cat_tags\":\"1\",\"show_base_description\":\"1\",\"maxLevelcat\":\"-1\",\"show_empty_categories_cat\":\"0\",\"show_subcat_desc_cat\":\"1\",\"show_cat_num_articles_cat\":\"1\",\"num_leading_articles\":\"1\",\"num_intro_articles\":\"4\",\"num_columns\":\"2\",\"num_links\":\"4\",\"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\",\"list_show_votes\":\"1\",\"list_show_ratings\":\"1\",\"orderby_pri\":\"order\",\"orderby_sec\":\"rdate\",\"order_date\":\"published\",\"show_pagination\":\"2\",\"show_pagination_results\":\"1\",\"show_featured\":\"show\",\"show_feed_link\":\"1\",\"feed_summary\":\"0\",\"feed_show_readmore\":\"0\",\"sef_advanced\":1,\"sef_ids\":1,\"custom_fields_enable\":\"1\"}', '', '', '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) 2006 Open Source Matters, Inc.\",\"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\":\"NH\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"6\":{\"filter_type\":\"NH\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"7\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"2\":{\"filter_type\":\"NONE\",\"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) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_REDIRECT_XML_DESCRIPTION\",\"group\":\"\"}', '{\"mode\":\"1\",\"separator\":\"|\",\"defaultImportState\":\"0\"}', '', '', '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) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_USERS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"users\"}', '{\"allowUserRegistration\":\"1\",\"new_usertype\":\"2\",\"guest_usergroup\":\"9\",\"sendpassword\":\"1\",\"useractivation\":\"2\",\"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\":\"\",\"debugUsers\":\"1\",\"debugGroups\":\"1\",\"sef_advanced\":0,\"custom_fields_enable\":\"1\"}', '', '', '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) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_FINDER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"finder\"}', '{\"enabled\":\"1\",\"show_description\":\"1\",\"description_length\":255,\"allow_empty_query\":\"1\",\"show_url\":\"1\",\"show_autosuggest\":\"1\",\"show_suggested_query\":\"1\",\"show_explained_query\":\"1\",\"show_advanced\":\"1\",\"show_advanced_tips\":\"1\",\"expand_advanced\":\"1\",\"show_date_filters\":\"1\",\"sort_order\":\"relevance\",\"sort_direction\":\"desc\",\"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\",\"misc_multiplier\":\"0.3\",\"stem\":\"1\",\"stemmer\":\"snowball\",\"enable_logging\":\"0\"}', '', '', '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) 2012 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.10.1\",\"description\":\"COM_JOOMLAUPDATE_XML_DESCRIPTION\",\"group\":\"\"}', '{\"updatesource\":\"default\",\"customurl\":\"\"}', '', '', '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) 2013 Open Source Matters, Inc.\",\"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\":\"\",\"tag_list_orderby\":\"c.core_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,\"min_term_length\":\"3\",\"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_description\":\"1\",\"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) 2013 Open Source Matters, Inc.\",\"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) 2013 Open Source Matters, Inc.\",\"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) 2013 Open Source Matters, Inc.\",\"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) 2016 Open Source Matters, Inc.\",\"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) 2017 Open Source Matters, Inc.\",\"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) 2018 Open Source Matters, Inc.\",\"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\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"COM_ACTIONLOGS_XML_DESCRIPTION\",\"group\":\"\"}', '{\"ip_logging\":1,\"csv_delimiter\":\";\",\"loggable_extensions\":[\"com_banners\",\"com_content\",\"com_messages\",\"com_cache\",\"com_categories\",\"com_contact\",\"com_users\",\"com_checkin\",\"com_installer\",\"com_config\",\"com_jdownloads\",\"com_media\",\"com_menus\",\"com_modules\",\"com_newsfeeds\",\"com_plugins\",\"com_tags\",\"com_templates\",\"com_redirect\"]}', '', '', '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\":\"(C) 2008 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"https:\\/\\/www.joomla.org\",\"version\":\"13.1\",\"description\":\"LIB_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"joomla\"}', '{\"mediaversion\":\"659a54dfe5fe0ee605a2c94c894e95f7\"}', '', '', '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\":\"(C) 2006 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2006 Open Source Matters, Inc.\",\"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\":\"(C) 2006 Open Source Matters, Inc.\",\"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\":\"(C) 2006 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2006 Open Source Matters, Inc.\",\"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\":\"(C) 2006 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2006 Open Source Matters, Inc.\",\"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\":\"(C) 2006 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2006 Open Source Matters, Inc.\",\"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\":\"(C) 2009 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2010 Open Source Matters, Inc.\",\"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\":\"(C) 2010 Open Source Matters, Inc.\",\"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\":\"(C) 2010 Open Source Matters, Inc.\",\"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) 2011 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2006 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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) 2006 Open Source Matters, Inc.\",\"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\":\"(C) 2006 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2011 Open Source Matters, Inc.\",\"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\":\"(C) 2012 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2013 Open Source Matters, Inc.\",\"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\":\"(C) 2013 Open Source Matters, Inc.\",\"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\":\"(C) 2017 Open Source Matters, Inc.\",\"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\":\"(C) 2018 Open Source Matters, Inc.\",\"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\":\"(C) 2018 Open Source Matters, Inc.\",\"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\":\"(C) 2006 Open Source Matters, Inc.\",\"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', '4', '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\":\"(C) 2005 Open Source Matters, Inc.\",\"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', '3', '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\":\"(C) 2005 Open Source Matters, Inc.\",\"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', '2', '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\":\"(C) 2014 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2006 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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 - 2021 by Marijn Haverbeke and others\",\"authorEmail\":\"marijnh@gmail.com\",\"authorUrl\":\"https:\\/\\/codemirror.net\\/\",\"version\":\"5.60.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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\"}', '{\"configuration\":{\"toolbars\":{\"2\":{\"toolbar1\":[\"bold\",\"underline\",\"strikethrough\",\"|\",\"undo\",\"redo\",\"|\",\"bullist\",\"numlist\",\"|\",\"pastetext\"]},\"1\":{\"menu\":[\"edit\",\"insert\",\"view\",\"format\",\"table\",\"tools\"],\"toolbar1\":[\"bold\",\"italic\",\"underline\",\"strikethrough\",\"|\",\"alignleft\",\"aligncenter\",\"alignright\",\"alignjustify\",\"|\",\"formatselect\",\"|\",\"bullist\",\"numlist\",\"|\",\"outdent\",\"indent\",\"|\",\"undo\",\"redo\",\"|\",\"link\",\"unlink\",\"anchor\",\"code\",\"|\",\"hr\",\"table\",\"|\",\"subscript\",\"superscript\",\"|\",\"charmap\",\"pastetext\",\"preview\"]},\"0\":{\"menu\":[\"edit\",\"insert\",\"view\",\"format\",\"table\",\"tools\"],\"toolbar1\":[\"bold\",\"italic\",\"underline\",\"strikethrough\",\"|\",\"alignleft\",\"aligncenter\",\"alignright\",\"alignjustify\",\"|\",\"styleselect\",\"|\",\"formatselect\",\"fontselect\",\"fontsizeselect\",\"|\",\"searchreplace\",\"|\",\"bullist\",\"numlist\",\"|\",\"outdent\",\"indent\",\"|\",\"undo\",\"redo\",\"|\",\"link\",\"unlink\",\"anchor\",\"image\",\"|\",\"code\",\"|\",\"forecolor\",\"backcolor\",\"|\",\"fullscreen\",\"|\",\"table\",\"|\",\"subscript\",\"superscript\",\"|\",\"charmap\",\"emoticons\",\"media\",\"hr\",\"ltr\",\"rtl\",\"|\",\"cut\",\"copy\",\"paste\",\"pastetext\",\"|\",\"visualchars\",\"visualblocks\",\"nonbreaking\",\"blockquote\",\"template\",\"|\",\"print\",\"preview\",\"codesample\",\"insertdatetime\",\"removeformat\"]}},\"setoptions\":{\"2\":{\"access\":[\"1\"],\"skin\":\"0\",\"skin_admin\":\"0\",\"mobile\":\"0\",\"drag_drop\":\"1\",\"path\":\"\",\"entity_encoding\":\"raw\",\"lang_mode\":\"1\",\"text_direction\":\"ltr\",\"content_css\":\"1\",\"content_css_custom\":\"\",\"relative_urls\":\"1\",\"newlines\":\"0\",\"use_config_textfilters\":\"0\",\"invalid_elements\":\"script,applet,iframe\",\"valid_elements\":\"\",\"extended_elements\":\"\",\"resizing\":\"1\",\"resize_horizontal\":\"1\",\"element_path\":\"1\",\"wordcount\":\"1\",\"image_advtab\":\"0\",\"advlist\":\"1\",\"autosave\":\"1\",\"contextmenu\":\"1\",\"custom_plugin\":\"\",\"custom_button\":\"\"},\"1\":{\"access\":[\"6\",\"2\"],\"skin\":\"0\",\"skin_admin\":\"0\",\"mobile\":\"0\",\"drag_drop\":\"1\",\"path\":\"\",\"entity_encoding\":\"raw\",\"lang_mode\":\"1\",\"text_direction\":\"ltr\",\"content_css\":\"1\",\"content_css_custom\":\"\",\"relative_urls\":\"1\",\"newlines\":\"0\",\"use_config_textfilters\":\"0\",\"invalid_elements\":\"script,applet,iframe\",\"valid_elements\":\"\",\"extended_elements\":\"\",\"resizing\":\"1\",\"resize_horizontal\":\"1\",\"element_path\":\"1\",\"wordcount\":\"1\",\"image_advtab\":\"0\",\"advlist\":\"1\",\"autosave\":\"1\",\"contextmenu\":\"1\",\"custom_plugin\":\"\",\"custom_button\":\"\"},\"0\":{\"access\":[\"7\",\"4\",\"8\"],\"skin\":\"0\",\"skin_admin\":\"0\",\"mobile\":\"0\",\"drag_drop\":\"1\",\"path\":\"\",\"entity_encoding\":\"raw\",\"lang_mode\":\"1\",\"text_direction\":\"ltr\",\"content_css\":\"1\",\"content_css_custom\":\"\",\"relative_urls\":\"1\",\"newlines\":\"0\",\"use_config_textfilters\":\"0\",\"invalid_elements\":\"script,applet,iframe\",\"valid_elements\":\"\",\"extended_elements\":\"\",\"resizing\":\"1\",\"resize_horizontal\":\"1\",\"element_path\":\"1\",\"wordcount\":\"1\",\"image_advtab\":\"1\",\"advlist\":\"1\",\"autosave\":\"1\",\"contextmenu\":\"1\",\"custom_plugin\":\"\",\"custom_button\":\"\"}}},\"sets_amount\":3,\"html_height\":\"550\",\"html_width\":\"750\"}', '', '', '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\":\"(C) 2009 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2006 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2005 Open Source Matters, Inc.\",\"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\":\"(C) 2010 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_LANGUAGEFILTER_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"languagefilter\"}', '', '', '', '0', '0000-00-00 00:00:00', '1', '0'), ('423', '0', 'plg_system_p3p', 'plugin', 'p3p', 'system', '0', '0', '1', '0', '{\"name\":\"plg_system_p3p\",\"type\":\"plugin\",\"creationDate\":\"September 2010\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2010 Open Source Matters, Inc.\",\"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', '1', '1', '1', '{\"name\":\"plg_system_cache\",\"type\":\"plugin\",\"creationDate\":\"February 2007\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2007 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CACHE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"cache\"}', '{\"browsercache\":1,\"exclude\":\"\"}', '', '', '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\":\"(C) 2006 Open Source Matters, Inc.\",\"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\":\"(C) 2007 Open Source Matters, Inc.\",\"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', '1', '1', '1', '{\"name\":\"plg_system_redirect\",\"type\":\"plugin\",\"creationDate\":\"April 2009\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2009 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_REDIRECT_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"redirect\"}', '{\"collect_urls\":1,\"includeUrl\":1,\"exclude_urls\":[]}', '', '', '0', '0000-00-00 00:00:00', '6', '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\":\"(C) 2007 Open Source Matters, Inc.\",\"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\":\"(C) 2007 Open Source Matters, Inc.\",\"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\":\"(C) 2009 Open Source Matters, Inc.\",\"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) 2009 Open Source Matters, Inc.\",\"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) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_USER_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"joomla\"}', '{\"autoregister\":\"1\",\"mail_to_user\":\"1\",\"forceLogout\":\"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) 2008 Open Source Matters, Inc.\",\"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\":\"(C) 2010 Open Source Matters, Inc.\",\"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\":\"(C) 2010 Open Source Matters, Inc.\",\"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\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_LANGUAGECODE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"languagecode\"}', '', '', '', '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\":\"(C) 2011 Open Source Matters, Inc.\",\"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\":\"(C) 2011 Open Source Matters, Inc.\",\"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', '1', '1', '0', '{\"name\":\"plg_captcha_recaptcha\",\"type\":\"plugin\",\"creationDate\":\"December 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.4.0\",\"description\":\"PLG_CAPTCHA_RECAPTCHA_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"recaptcha\"}', '{\"version\":\"2.0\",\"public_key\":\"6LfCP6MZAAAAAMxQkUemSLwGqLqO9sWHLJtcwFCL\",\"private_key\":\"6LfCP6MZAAAAAPi7QvxyYj1Q6gUTFky52eqE5vpF\",\"theme\":\"clean\",\"theme2\":\"light\",\"size\":\"compact\",\"tabindex\":\"0\",\"callback\":\"\",\"expired_callback\":\"\",\"error_callback\":\"\"}', '', '', '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) 2011 Open Source Matters, Inc.\",\"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', '1', '1', '0', '{\"name\":\"plg_content_finder\",\"type\":\"plugin\",\"creationDate\":\"December 2011\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"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) 2011 Open Source Matters, Inc.\",\"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) 2011 Open Source Matters, Inc.\",\"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) 2011 Open Source Matters, Inc.\",\"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) 2011 Open Source Matters, Inc.\",\"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) 2013 Open Source Matters, Inc.\",\"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', '1', '1', '0', '{\"name\":\"plg_twofactorauth_totp\",\"type\":\"plugin\",\"creationDate\":\"August 2013\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"PLG_TWOFACTORAUTH_TOTP_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"totp\"}', '{\"section\":3}', '', '', '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\":\"(C) 2013 Open Source Matters, Inc.\",\"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', '5', '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\":\"(C) 2013 Open Source Matters, Inc.\",\"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\":\"(C) 2014 Open Source Matters, Inc.\",\"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\":\"(C) 2015 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.5.0\",\"description\":\"PLG_SYSTEM_UPDATENOTIFICATION_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"updatenotification\"}', '{\"lastrun\":1634912288}', '', '', '0', '0000-00-00 00:00:00', '0', '0'), ('453', '0', 'plg_editors-xtd_module', 'plugin', 'module', 'editors-xtd', '0', '0', '1', '0', '{\"name\":\"plg_editors-xtd_module\",\"type\":\"plugin\",\"creationDate\":\"October 2015\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2015 Open Source Matters, Inc.\",\"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\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.5.0\",\"description\":\"PLG_SYSTEM_STATS_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"stats\"}', '{\"mode\":3,\"lastrun\":\"\",\"unique_id\":\"6d30f13db174eb0c94efb885594275cd80da3e3a\",\"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\":\"(C) 2016 Open Source Matters, Inc.\",\"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\":\"(C) 2016 Open Source Matters, Inc.\",\"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\":\"(C) 2016 Open Source Matters, Inc.\",\"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\":\"(C) 2016 Open Source Matters, Inc.\",\"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\":\"(C) 2016 Open Source Matters, Inc.\",\"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\":\"(C) 2016 Open Source Matters, Inc.\",\"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\":\"(C) 2016 Open Source Matters, Inc.\",\"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\":\"(C) 2016 Open Source Matters, Inc.\",\"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\":\"(C) 2016 Open Source Matters, Inc.\",\"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\":\"(C) 2016 Open Source Matters, Inc.\",\"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\":\"(C) 2016 Open Source Matters, Inc.\",\"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\":\"(C) 2016 Open Source Matters, Inc.\",\"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\":\"(C) 2016 Open Source Matters, Inc.\",\"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\":\"(C) 2016 Open Source Matters, Inc.\",\"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\":\"(C) 2016 Open Source Matters, Inc.\",\"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\":\"(C) 2016 Open Source Matters, Inc.\",\"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\":\"(C) 2016 Open Source Matters, Inc.\",\"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\":\"(C) 2016 Open Source Matters, Inc.\",\"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\":\"(C) 2016 Open Source Matters, Inc.\",\"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\":\"(C) 2016 Open Source Matters, Inc.\",\"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\":\"(C) 2016 Open Source Matters, Inc.\",\"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\":\"(C) 2016 Open Source Matters, Inc.\",\"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\":\"(C) 2017 Open Source Matters, Inc.\",\"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\":\"(C) 2017 Open Source Matters, Inc.\",\"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', '1', '1', '0', '{\"name\":\"plg_sampledata_blog\",\"type\":\"plugin\",\"creationDate\":\"July 2017\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2017 Open Source Matters, Inc.\",\"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\":\"(C) 2018 Open Source Matters, Inc.\",\"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\":\"(C) 2018 Open Source Matters, Inc.\",\"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\":\"(C) 2018 Open Source Matters, Inc.\",\"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\":\"(C) 2018 Open Source Matters, Inc.\",\"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\":\"(C) 2018 Open Source Matters, Inc.\",\"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) 2018 Open Source Matters, Inc.\",\"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\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_SYSTEM_LOGROTATION_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"logrotation\"}', '{\"lastrun\":1634494409}', '', '', '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) 2018 Open Source Matters, Inc.\",\"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\":\"(C) 2018 Open Source Matters, Inc.\",\"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) 2018 Open Source Matters, Inc.\",\"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) 2018 Open Source Matters, Inc.\",\"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) 2018 Open Source Matters, Inc.\",\"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) 2018 Open Source Matters, Inc.\",\"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) 2018 Open Source Matters, Inc.\",\"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', '1', '1', '0', '{\"name\":\"plg_captcha_recaptcha_invisible\",\"type\":\"plugin\",\"creationDate\":\"November 2017\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2017 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.8\",\"description\":\"PLG_CAPTCHA_RECAPTCHA_INVISIBLE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"recaptcha_invisible\"}', '{\"public_key\":\"6LeKP6MZAAAAAC-UDzaqPYJvHGywRpIWLz-5jTm1\",\"private_key\":\"6LeKP6MZAAAAAHaVVUVJit7FTdhQPBAw_tIpVrbB\",\"badge\":\"inline\",\"tabindex\":0,\"callback\":\"\",\"expired_callback\":\"\",\"error_callback\":\"\"}', '', '', '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) 2018 Open Source Matters, Inc.\",\"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', '0', '1', '0', '{\"name\":\"beez3\",\"type\":\"template\",\"creationDate\":\"25 November 2009\",\"author\":\"Angie Radtke\",\"copyright\":\"(C) 2010 Open Source Matters, Inc.\",\"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\":\"(C) 2010 Open Source Matters, Inc.\",\"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', '0', '1', '0', '{\"name\":\"protostar\",\"type\":\"template\",\"creationDate\":\"4\\/30\\/2012\",\"author\":\"Kyle Ledbetter\",\"copyright\":\"(C) 2012 Open Source Matters, Inc.\",\"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\":\"(C) 2012 Open Source Matters, Inc.\",\"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\":\"September 2021\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.10.2\",\"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\":\"September 2021\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.10.2\",\"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\":\"September 2021\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.10.2\",\"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\":\"September 2021\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"admin@joomla.org\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.10.2.1\",\"description\":\"en-GB language pack\",\"group\":\"\",\"filename\":\"pkg_en-GB\"}', '', '', '', '0', '0000-00-00 00:00:00', '0', '0'), ('10000', '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 - 2021 JoomShaper. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"https:\\/\\/www.joomshaper.com\",\"version\":\"3.8.0\",\"description\":\"\",\"group\":\"\",\"filename\":\"sppagebuilder\"}', '{\"production_mode\":\"0\",\"gmap_api\":\"AIzaSyA_MlSCs9MnE8WQfbu2RVJFBCKbaBAvEJg\",\"ig_token\":\"{\\\"appId\\\":\\\"\\\",\\\"appSecret\\\":\\\"\\\",\\\"accessToken\\\":\\\"\\\",\\\"igId\\\":\\\"\\\"}\",\"fontawesome\":\"1\",\"lazyloadimg\":\"1\",\"lazyplaceholder\":\"https:\\/\\/cloud.schumm.nl\\/_include\\/images\\/placeholder.svg\",\"disableanimatecss\":\"0\",\"disablecss\":\"0\",\"disable_og\":\"0\",\"fb_app_id\":\"\",\"disable_tc\":\"0\",\"joomshaper_email\":\"arno@schumm.nl\",\"joomshaper_license_key\":\"8fa34a5c7fc3385dbddae30a78c94933\"}', '', '', '0', '0000-00-00 00:00:00', '0', '0'), ('10001', '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 - 2021 JoomShaper.com. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"www.joomshaper.com\",\"version\":\"1.6\",\"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'), ('10002', '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'), ('10003', '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 - 2021 JoomShaper. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"www.joomshaper.com\",\"version\":\"1.4\",\"description\":\"MOD_SPPAGEBUILDER_MENU_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_sppagebuilder_admin_menu\"}', '[]', '', '', '0', '0000-00-00 00:00:00', '0', '0'), ('10004', '0', 'System - Helix Ultimate Framework', 'plugin', 'helixultimate', 'system', '0', '1', '1', '0', '{\"name\":\"System - Helix Ultimate Framework\",\"type\":\"plugin\",\"creationDate\":\"Feb 2018\",\"author\":\"JoomShaper.com\",\"copyright\":\"Copyright (C) 2010 - 2020 JoomShaper. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"www.joomshaper.com\",\"version\":\"2.0.5\",\"description\":\"Helix Ultimate Framework - Joomla Template Framework by JoomShaper\",\"group\":\"\",\"filename\":\"helixultimate\"}', '{}', '', '', '0', '0000-00-00 00:00:00', '0', '0'), ('10005', '0', 'shaper_helixultimate', 'template', 'shaper_helixultimate', '', '0', '1', '1', '0', '{\"name\":\"shaper_helixultimate\",\"type\":\"template\",\"creationDate\":\"Feb 2018\",\"author\":\"JoomShaper.com\",\"copyright\":\"Copyright (C) 2010 - 2021 JoomShaper.com. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"http:\\/\\/www.joomshaper.com\",\"version\":\"2.0.5\",\"description\":\"Helix Ultimate - Starter Template of Helix Ultimate Framework\",\"group\":\"\",\"filename\":\"templateDetails\"}', '{}', '', '', '0', '0000-00-00 00:00:00', '0', '0'), ('10006', '0', 'Helix Ultimate based template installer', 'plugin', 'TmplHelixUltimate', 'system', '0', '0', '1', '0', '{\"name\":\"Helix Ultimate based template installer\",\"type\":\"plugin\",\"creationDate\":\"Unknown\",\"author\":\"Unknown\",\"copyright\":\"\",\"authorEmail\":\"\",\"authorUrl\":\"\",\"version\":\"\",\"description\":\"Shaper Helix Ultimate - Blank template of Helix Ultimate framework\",\"group\":\"\",\"filename\":\"TmplHelixUltimate\"}', '{}', '', '', '0', '0000-00-00 00:00:00', '0', '0'), ('10008', '0', 'COM_SPEASYIMAGEGALLERY', 'component', 'com_speasyimagegallery', '', '1', '1', '0', '0', '{\"name\":\"COM_SPEASYIMAGEGALLERY\",\"type\":\"component\",\"creationDate\":\"Mar 2017\",\"author\":\"JoomShaper\",\"copyright\":\"@JoomShaper 2010 - 2021. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"http:\\/\\/www.joomshaper.com\",\"version\":\"2.0.1\",\"description\":\"A simple image gallery component for Joomla.\",\"group\":\"\",\"filename\":\"speasyimagegallery\"}', '{\"thumb_width\":\"400\",\"thumb_height\":\"400\"}', '', '', '0', '0000-00-00 00:00:00', '0', '0'), ('10009', '0', 'SP Easy Image Gallery Module', 'module', 'mod_speasyimagegallery', '', '0', '1', '0', '0', '{\"name\":\"SP Easy Image Gallery Module\",\"type\":\"module\",\"creationDate\":\"Mar 2016\",\"author\":\"JoomShaper\",\"copyright\":\"@JoomShaper 2010 - 2021. All rights reserved.\",\"authorEmail\":\"support@joomshaper.com\",\"authorUrl\":\"http:\\/\\/www.joomshaper.com\",\"version\":\"2.0.0\",\"description\":\"Module to display albums or album images from SP Easy Image Gallery component.\",\"group\":\"\",\"filename\":\"mod_speasyimagegallery\"}', '{\"layout\":\"album\",\"albums_column\":\"3\",\"albums_column_sm\":\"4\",\"albums_column_xs\":\"6\",\"albums_gutter\":\"20\",\"albums_gutter_sm\":\"15\",\"albums_gutter_xs\":\"10\",\"album_limit\":\"8\",\"album_layout\":\"default\",\"album_column\":\"3\",\"album_column_sm\":\"4\",\"album_column_xs\":\"6\",\"album_gutter\":\"20\",\"album_gutter_sm\":\"15\",\"album_gutter_xs\":\"10\",\"show_title\":\"1\",\"show_desc\":\"1\",\"show_count\":\"1\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}', '', '', '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\"}', '{}', '', '', '0', '0000-00-00 00:00:00', '0', '0'), ('10012', '0', 'Acym', 'component', 'com_acym', '', '1', '1', '0', '0', '{\"name\":\"Acym\",\"type\":\"component\",\"creationDate\":\"October 2021\",\"author\":\"Acyba\",\"copyright\":\"Copyright (C) 2009-2021 ACYBA SAS - All rights reserved.\",\"authorEmail\":\"dev@acyba.com\",\"authorUrl\":\"https:\\/\\/www.acymailing.com\",\"version\":\"7.6.0\",\"description\":\"Manage your Mailing lists and e-mail marketing campaigns\",\"group\":\"\",\"filename\":\"acym\"}', '{}', '', '', '0', '0000-00-00 00:00:00', '0', '0'), ('10013', '0', 'file_fof30', 'file', 'file_fof30', '', '0', '1', '0', '0', '{\"name\":\"file_fof30\",\"type\":\"file\",\"creationDate\":\"2021-08-12\",\"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.8.1\",\"description\":\"\\n\\t\\t\\n\\t\\tFramework-on-Framework (FOF) 3.x - The rapid application development framework for Joomla!.\\n\\t\\tWARNING<\\/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'), ('10014', '10019', 'Akeeba', 'component', 'com_akeeba', '', '1', '1', '0', '0', '{\"name\":\"Akeeba\",\"type\":\"component\",\"creationDate\":\"2021-09-28\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2006-2019 Akeeba Ltd \\/ Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"https:\\/\\/www.akeeba.com\",\"version\":\"8.0.11\",\"description\":\"Akeeba Backup Core - Full Joomla! site backup solution, Core Edition.\",\"group\":\"\",\"filename\":\"akeeba\"}', '{\"dark_mode\":\"0\",\"dateformat\":\"d-m-yy\",\"localtime\":\"1\",\"timezonetext\":\"T\",\"showDeleteOnRestore\":\"0\",\"legacyapi_enabled\":\"1\",\"jsonapi_enabled\":\"1\",\"frontend_secret_word\":\"###AES128###Pey6LtrKuCdanQ4VSPDJhcRBbsA7Cz+rWu6Qvxtg31ZuzXmb+qoaQSmuFq3Cg32iSlBTVNM2lCjEklrinmsNmUnjF4\\/I0JXEs0COGrqTJf4b8hyD2gMuFJtMCuIStZsZEmjfEl7cQHcXSwQ82ZALGOG+9xFKUElWv6v+8ybfJmQz\\/x7PKUxJ2CAAAAA=\",\"forced_backup_timezone\":\"Europe\\/Amsterdam\",\"frontend_email_on_finish\":\"0\",\"frontend_email_when\":\"always\",\"frontend_email_address\":\"\",\"frontend_email_subject\":\"\",\"frontend_email_body\":\"\",\"failure_timeout\":180,\"failure_email_address\":\"\",\"failure_email_subject\":\"\",\"failure_email_body\":\"\",\"siteurl\":\"https:\\/\\/www.joomla4all.nl\\/portal\\/quatuora\\/\",\"jversion\":\"\",\"jlibrariesdir\":\"\\/www\\/portal\\/quatuora\\/libraries\",\"lastversion\":\"\",\"angieupgrade\":\"0\",\"show_howtorestoremodal\":0,\"updatedb\":null,\"update_dlid\":\"64b5f06efddb876f18921052078dca29\",\"stats_enabled\":\"1\",\"useencryption\":\"1\",\"desktop_notifications\":\"0\",\"push_preference\":\"0\",\"push_apikey\":\"\",\"confwiz_upgrade\":1}', '', '', '0', '0000-00-00 00:00:00', '0', '0'), ('10016', '10019', 'plg_quickicon_akeebabackup', 'plugin', 'akeebabackup', 'quickicon', '0', '0', '1', '0', '{\"name\":\"plg_quickicon_akeebabackup\",\"type\":\"plugin\",\"creationDate\":\"2021-09-28\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2006-2021 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@akeeba.com\",\"authorUrl\":\"https:\\/\\/www.akeeba.com\",\"version\":\"8.0.11\",\"description\":\"PLG_QUICKICON_AKEEBABACKUP_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"akeebabackup\"}', '{\"enablewarning\":\"1\",\"warnfailed\":\"1\",\"maxbackupperiod\":\"24\",\"profileid\":\"1\"}', '', '', '0', '0000-00-00 00:00:00', '0', '0'), ('10017', '10019', 'PLG_SYSTEM_BACKUPONUPDATE', 'plugin', 'backuponupdate', 'system', '0', '1', '1', '0', '{\"name\":\"PLG_SYSTEM_BACKUPONUPDATE\",\"type\":\"plugin\",\"creationDate\":\"2021-09-28\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2006-2021 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"https:\\/\\/www.akeeba.com\",\"version\":\"8.0.11\",\"description\":\"PLG_SYSTEM_BACKUPONUPDATE_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"backuponupdate\"}', '{\"profileid\":\"1\",\"description\":\"\"}', '', '', '0', '0000-00-00 00:00:00', '0', '0'), ('10018', '10019', 'PLG_ACTIONLOG_AKEEBABACKUP', 'plugin', 'akeebabackup', 'actionlog', '0', '1', '1', '0', '{\"name\":\"PLG_ACTIONLOG_AKEEBABACKUP\",\"type\":\"plugin\",\"creationDate\":\"2021-09-28\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2006-2021 Nicholas K. Dionysopoulos\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"https:\\/\\/www.akeeba.com\",\"version\":\"8.0.11\",\"description\":\"PLG_ACTIONLOG_AKEEBABACKUP_XML_DESCRIPTION\",\"group\":\"\",\"filename\":\"akeebabackup\"}', '{}', '', '', '0', '0000-00-00 00:00:00', '0', '0'), ('10019', '0', 'Akeeba Backup package', 'package', 'pkg_akeeba', '', '0', '1', '1', '0', '{\"name\":\"Akeeba Backup package\",\"type\":\"package\",\"creationDate\":\"2021-09-28\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"Copyright (c)2006-2019 Akeeba Ltd \\/ Nicholas K. Dionysopoulos\",\"authorEmail\":\"\",\"authorUrl\":\"\",\"version\":\"8.0.11\",\"description\":\"Akeeba Backup installation package v.8.0.11\",\"group\":\"\",\"filename\":\"pkg_akeeba\"}', '{}', '', '', '0', '0000-00-00 00:00:00', '0', '0'), ('10020', '0', 'file_fef', 'file', 'file_fef', '', '0', '1', '0', '0', '{\"name\":\"file_fef\",\"type\":\"file\",\"creationDate\":\"2021-08-12\",\"author\":\"Nicholas K. Dionysopoulos\",\"copyright\":\"(C) 2017-2021 Akeeba Ltd.\",\"authorEmail\":\"nicholas@dionysopoulos.me\",\"authorUrl\":\"https:\\/\\/www.akeeba.com\",\"version\":\"2.0.3\",\"description\":\"Akeeba Frontend Framework - The CSS framework for Akeeba Ltd extensions.\",\"group\":\"\"}', '', '', '', '0', '0000-00-00 00:00:00', '0', '0'), ('10021', '0', 'COM_COALAWEBTRAFFIC', 'component', 'com_coalawebtraffic', '', '1', '1', '0', '0', '{\"name\":\"COM_COALAWEBTRAFFIC\",\"type\":\"component\",\"creationDate\":\"2021-04-21\",\"author\":\"Steven Palmer (CoalaWeb)\",\"copyright\":\"\\u00a9 2021 Steven Palmer (CoalaWeb), All rights reserved.\",\"authorEmail\":\"support@coalaweb.com\",\"authorUrl\":\"https:\\/\\/coalaweb.com\",\"version\":\"1.1.9\",\"description\":\"COM_COALAWEBTRAFFIC_DESCRIPTION\",\"group\":\"\"}', '{\"locktime\":\"1440\",\"week_start\":\"mon\",\"preset\":\"0\",\"store_location\":\"1\",\"set_cookie\":\"1\",\"duplicate_clean\":\"1\",\"db_clean\":\"1\",\"db_keep\":\"4\",\"honeypot\":\"0\",\"honeypot_key\":\"\",\"honeypot_sus\":\"0\",\"honeypot_seng\":\"0\",\"honeypot_min\":\"25\",\"honeypot_max\":\"30\",\"maxmind_license_key\":\"d4ktww9BJmdIM9lB \",\"check_proxy\":\"1\",\"log_size\":\"1000000\",\"log_sql\":\"0\",\"log_debug\":\"0\",\"debug\":\"0\"}', '', '', '0', '0000-00-00 00:00:00', '0', '0'), ('10022', '0', 'MOD_COALAWEBTRAFFIC', 'module', 'mod_coalawebtraffic', '', '0', '1', '0', '0', '{\"name\":\"MOD_COALAWEBTRAFFIC\",\"type\":\"module\",\"creationDate\":\"2021-04-21\",\"author\":\"Steven Palmer (CoalaWeb)\",\"copyright\":\"\\u00a9 2021 Steven Palmer (CoalaWeb), All rights reserved.\",\"authorEmail\":\"support@coalaweb.com\",\"authorUrl\":\"https:\\/\\/coalaweb.com\",\"version\":\"1.1.9\",\"description\":\"MOD_COALAWEBTRAFFIC_DESCRIPTION\",\"group\":\"\",\"filename\":\"mod_coalawebtraffic\"}', '{\"s_digital\":\"0\",\"digit_number\":\"5\",\"digit_theme\":\"black-flip\",\"s_individual\":\"1\",\"select_theme\":\"users\",\"hline\":\"1\",\"s_today\":\"1\",\"today\":\"\",\"s_yesterday\":\"1\",\"yesterday\":\"\",\"s_week\":\"1\",\"week\":\"\",\"s_month\":\"1\",\"month\":\"\",\"s_all\":\"1\",\"all\":\"\",\"counter_width\":\"100\",\"css_width\":\"100\",\"layout\":\"default\",\"s_hor_text\":\"1\",\"hor_digital\":\"1\",\"hor_text\":\"\",\"separator\":\"|\",\"s_visitor_info\":\"1\",\"display_title_visitor\":\"1\",\"title_visitor\":\"\",\"title_format_visitor\":\"3\",\"title_align_visitor\":\"cwt-vi-title-ac\",\"hline_visitor\":\"1\",\"s_guestip\":\"1\",\"guestip\":\"\",\"s_guest_browser\":\"1\",\"guest_browser\":\"\",\"guest_browser_v\":\"\",\"s_guest_os\":\"1\",\"guest_os\":\"\",\"s_whoisonline\":\"1\",\"display_title_who\":\"1\",\"title_who\":\"\",\"subtitle_who\":\"\",\"title_align_who\":\"cwt-wio-title-ac\",\"title_format_who\":\"3\",\"hline_who\":\"1\",\"load_css\":\"1\",\"custom_css\":\"\",\"s_dateTime\":\"1\",\"dateTimeFormat\":\"LC4\",\"cache\":\"0\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}', '', '', '0', '0000-00-00 00:00:00', '0', '0'), ('10023', '0', 'PLG_CWTRAFFICCOUNT', 'plugin', 'cwtrafficcount', 'system', '0', '1', '1', '0', '{\"name\":\"PLG_CWTRAFFICCOUNT\",\"type\":\"plugin\",\"creationDate\":\"2021-04-21\",\"author\":\"Steven Palmer (CoalaWeb)\",\"copyright\":\"\\u00a9 2021 Steven Palmer (CoalaWeb), All rights reserved.\",\"authorEmail\":\"support@coalaweb.com\",\"authorUrl\":\"https:\\/\\/coalaweb.com\",\"version\":\"1.1.9\",\"description\":\"PLG_CWTRAFFICCOUNT_DESC\",\"group\":\"\",\"filename\":\"cwtrafficcount\"}', '{\"debug\":\"\"}', '', '', '0', '0000-00-00 00:00:00', '0', '0'), ('10024', '0', 'PLG_CWTRAFFICCLEAN', 'plugin', 'cwtrafficclean', 'system', '0', '1', '1', '0', '{\"name\":\"PLG_CWTRAFFICCLEAN\",\"type\":\"plugin\",\"creationDate\":\"2021-04-21\",\"author\":\"Steven Palmer (CoalaWeb)\",\"copyright\":\"\\u00a9 2021 Steven Palmer (CoalaWeb), All rights reserved.\",\"authorEmail\":\"support@coalaweb.com\",\"authorUrl\":\"https:\\/\\/coalaweb.com\",\"version\":\"1.1.9\",\"description\":\"PLG_CWTRAFFICCLEAN_DESC\",\"group\":\"\",\"filename\":\"cwtrafficclean\"}', '{\"debug\":\"\"}', '', '', '0', '0000-00-00 00:00:00', '0', '0'), ('10025', '0', 'PLG_CWTRAFFICONLINE', 'plugin', 'cwtrafficonline', 'system', '0', '1', '1', '0', '{\"name\":\"PLG_CWTRAFFICONLINE\",\"type\":\"plugin\",\"creationDate\":\"2021-04-21\",\"author\":\"Steven Palmer (CoalaWeb)\",\"copyright\":\"\\u00a9 2021 Steven Palmer (CoalaWeb), All rights reserved.\",\"authorEmail\":\"support@coalaweb.com\",\"authorUrl\":\"https:\\/\\/coalaweb.com\",\"version\":\"1.1.9\",\"description\":\"PLG_CWTRAFFICONLINE_DESC\",\"group\":\"\",\"filename\":\"cwtrafficonline\"}', '{\"debug\":\"\"}', '', '', '0', '0000-00-00 00:00:00', '0', '0'), ('10026', '0', 'PLG_CWGEARS', 'plugin', 'cwgears', 'system', '0', '1', '1', '0', '{\"name\":\"PLG_CWGEARS\",\"type\":\"plugin\",\"creationDate\":\"2021-05-17\",\"author\":\"Steven Palmer (CoalaWeb)\",\"copyright\":\"\\u00a9 2021 Steven Palmer (CoalaWeb), All rights reserved.\",\"authorEmail\":\"support@coalaweb.com\",\"authorUrl\":\"https:\\/\\/coalaweb.com\",\"version\":\"0.6.5\",\"description\":\"PLG_CWGEARS_DESC\",\"group\":\"\",\"filename\":\"cwgears\"}', '{\"zoo_editor_tweak\":\"0\",\"sys_msg_demo\":\"0\",\"gzip_help\":\"0\",\"recap_compact\":\"0\",\"log_sql\":\"0\",\"jquery_on\":\"0\",\"jquery_server\":\"0\",\"jquery_library\":\"2.0.2\",\"jquery_noconflict\":\"0\",\"jquery_migrate\":\"0\",\"async\":\"1\",\"defer\":\"0\",\"script_list\":\"\\/\\/www.xing-share.com\\/js\\/external\\/share.js,\\/\\/platform.twitter.com\\/widgets.js,\\/\\/apis.google.com\\/js\\/plusone.js,\\/\\/cdnjs.cloudflare.com\\/ajax\\/libs\\/jquery-easing\\/1.3\\/jquery.easing.min.js,\\/\\/connect.facebook.net\\/en_GB\\/all.js#xfbml=1,\\/\\/assets.pinterest.com\\/js\\/pinit.js,\\/\\/platform.stumbleupon.com\\/1\\/widgets.js\",\"uikit_add\":\"1\",\"uikit_theme\":\"flat\",\"ccss_add\":\"0\",\"ccss_minimize\":\"1\",\"ccss_full_paths\":\"0\",\"ccss_remove_comments\":\"1\",\"ccss_code\":\"\",\"cjs_add\":\"0\",\"cjs_minimize\":\"1\",\"cjs_remove_comments\":\"1\",\"cjs_code\":\"\",\"cache_off\":\"0\",\"rules\":\"option=com_content\",\"db_clean\":\"1\",\"locktime\":\"1440\",\"downloadid\":\"\"}', '', '', '0', '0000-00-00 00:00:00', '0', '0');