diff --git a/CHANGELOG.md b/CHANGELOG.md index 6537c1bad..88a1ae0e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ -# v3.2.5-beta2 +# v3.2.5-beta3 +- Fix the noticeboard to display Llewellyn's Joomla Social feed + +# v3.2.5-beta + +- Add first classes for the new import engine. - Improve the [VDM Registry] to be Joomla Registry Compatible - Move all registries to the [VDM Registry] class - Fix Checked Out to be null and not 0. (#1194) @@ -8,10 +13,6 @@ - Update created_by, modified_by, checked_out fields in table class. - Implementation of the decentralized Super-Power CORE repository network. (#1190) -# v3.2.5-beta - -- Add first classes for the new import engine. - # v3.2.5-alpha - Add [AllowDynamicProperties] in the base view class for J5 diff --git a/README.md b/README.md index 0febcc8d0..847eca9b8 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ The Component Builder for [Joomla](https://extensions.joomla.org/extension/compo Whether you're a seasoned [Joomla](https://extensions.joomla.org/extension/component-builder/) developer, or have just started, Component Builder will save you lots of time and money. A real must have! -You can install it quite easily and with no limitations. On [gitea](https://git.vdm.dev/joomla/Component-Builder/tags) is the latest release (3.2.5-beta2) with **ALL** its features and **ALL** concepts totally open-source and free! +You can install it quite easily and with no limitations. On [gitea](https://git.vdm.dev/joomla/Component-Builder/tags) is the latest release (3.2.5-beta3) with **ALL** its features and **ALL** concepts totally open-source and free! > Watch Quick Build of a Hello World component in [JCB on Youtube](https://www.youtube.com/watch?v=IQfsLYIeblk&list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE&index=45) @@ -144,13 +144,13 @@ TODO + *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io) + *Name*: [Component Builder](https://git.vdm.dev/joomla/Component-Builder) + *First Build*: 30th April, 2015 -+ *Last Build*: 16th December, 2024 -+ *Version*: 3.2.5-beta2 ++ *Last Build*: 28th December, 2024 ++ *Version*: 3.2.5-beta3 + *Copyright*: Copyright (C) 2015 Vast Development Method. All rights reserved. + *License*: GNU General Public License version 2 or later; see LICENSE.txt -+ *Line count*: **884672** ++ *Line count*: **885046** + *Field count*: **2098** -+ *File count*: **5978** ++ *File count*: **5979** + *Folder count*: **507** > This **component** was build with a [Joomla](https://extensions.joomla.org/extension/component-builder/) [Automated Component Builder](https://www.joomlacomponentbuilder.com). diff --git a/admin/README.txt b/admin/README.txt index 0febcc8d0..847eca9b8 100644 --- a/admin/README.txt +++ b/admin/README.txt @@ -9,7 +9,7 @@ The Component Builder for [Joomla](https://extensions.joomla.org/extension/compo Whether you're a seasoned [Joomla](https://extensions.joomla.org/extension/component-builder/) developer, or have just started, Component Builder will save you lots of time and money. A real must have! -You can install it quite easily and with no limitations. On [gitea](https://git.vdm.dev/joomla/Component-Builder/tags) is the latest release (3.2.5-beta2) with **ALL** its features and **ALL** concepts totally open-source and free! +You can install it quite easily and with no limitations. On [gitea](https://git.vdm.dev/joomla/Component-Builder/tags) is the latest release (3.2.5-beta3) with **ALL** its features and **ALL** concepts totally open-source and free! > Watch Quick Build of a Hello World component in [JCB on Youtube](https://www.youtube.com/watch?v=IQfsLYIeblk&list=PLQRGFI8XZ_wtGvPQZWBfDzzlERLQgpMRE&index=45) @@ -144,13 +144,13 @@ TODO + *Author*: [Llewellyn van der Merwe](mailto:joomla@vdm.io) + *Name*: [Component Builder](https://git.vdm.dev/joomla/Component-Builder) + *First Build*: 30th April, 2015 -+ *Last Build*: 16th December, 2024 -+ *Version*: 3.2.5-beta2 ++ *Last Build*: 28th December, 2024 ++ *Version*: 3.2.5-beta3 + *Copyright*: Copyright (C) 2015 Vast Development Method. All rights reserved. + *License*: GNU General Public License version 2 or later; see LICENSE.txt -+ *Line count*: **884672** ++ *Line count*: **885046** + *Field count*: **2098** -+ *File count*: **5978** ++ *File count*: **5979** + *Folder count*: **507** > This **component** was build with a [Joomla](https://extensions.joomla.org/extension/component-builder/) [Automated Component Builder](https://www.joomlacomponentbuilder.com). diff --git a/admin/assets/css/compiler.css b/admin/assets/css/compiler.css index 2e970cd50..500e718c8 100644 --- a/admin/assets/css/compiler.css +++ b/admin/assets/css/compiler.css @@ -16,4 +16,97 @@ html, body { .jcb-sponsor-banner { -webkit-box-shadow: 0 0 7px 1px #f0f0f0; box-shadow: 0 0 7px 1px #f0f0f0; +} + +/* Spinning effect within the mastadon-display-block */ +.mastadon-display-block .spinning i { + animation: spin 1s linear infinite; +} + +.mastadon-display-block .enlarge-and-disappear { + animation: enlarge-fade-out 1s forwards; +} + +@keyframes spin { + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +} + +@keyframes enlarge-fade-out { + 0% { + transform: scale(1); + opacity: 1; + } + 100% { + transform: scale(2); + opacity: 0; + } +} + +/* Placeholder container scoped to mastadon-display-block */ +.mastadon-display-block .placeholder { + display: flex; + flex-direction: column; + gap: 10px; + margin-bottom: 16px; + padding: 16px; + background-color: #fff; + border: 1px solid #ddd; + border-radius: 4px; +} + +.mastadon-display-block .placeholder-line { + height: 12px; + background-color: #f0f0f0; + border-radius: 4px; + animation: pulse 1.5s infinite; +} + +.mastadon-display-block .placeholder-line:nth-child(1) { + width: 80%; +} +.mastadon-display-block .placeholder-line:nth-child(2) { + width: 60%; +} +.mastadon-display-block .placeholder-line:nth-child(3) { + width: 40%; +} + +.mastadon-display-block .placeholder-circle { + width: 50px; + height: 50px; + background-color: #f0f0f0; + border-radius: 50%; + animation: pulse 1.5s infinite; + margin-top: 10px; +} + +@keyframes pulse { + 0% { + opacity: 1; + } + 50% { + opacity: 0.5; + } + 100% { + opacity: 1; + } +} + +.mastadon-display-block .loading { + visibility: visible; + position: relative; +} + +.social-icon-details { + min-height: 50px; + width: 100%; + padding: 5px; + box-sizing: border-box; + font-size: 10px; + text-align: right; } diff --git a/admin/assets/js/compiler.js b/admin/assets/js/compiler.js new file mode 100644 index 000000000..d26f4e95c --- /dev/null +++ b/admin/assets/js/compiler.js @@ -0,0 +1,302 @@ +/** + * @package Joomla.Component.Builder + * + * @created 30th April, 2015 + * @author Llewellyn van der Merwe + * @git Joomla Component Builder + * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. + * @license GNU General Public License version 2 or later; see LICENSE.txt + */ + +/* JS Document */ +class MastodonFeed { + constructor(containerId, refreshButtonId) { + this.container = document.getElementById(containerId); + this.refreshButton = document.getElementById(refreshButtonId); + + // Get settings from data attributes + this.mastodonInstance = this.container.dataset.instance; + this.accountId = this.container.dataset.accountId; + this.postCount = parseInt(this.container.dataset.postCount) || 5; + + this.cacheKey = "mastodon-feed-cache"; + this.cacheExpiration = 24 * 60 * 60 * 1000; // 24 hours in milliseconds + + // Initialize the feed + this.initFeed(); + + // Attach event listener for the refresh button + this.refreshButton.addEventListener("click", () => this.clearCacheAndReload()); + } + + async initFeed() { + const cachedData = this.getCachedData(); + + if (cachedData) { + this.renderFeed(cachedData); + } else { + await this.loadFeed(); + } + } + + getCachedData() { + const cache = localStorage.getItem(this.cacheKey); + if (!cache) return null; + + const parsedCache = JSON.parse(cache); + const now = new Date().getTime(); + + if (now - parsedCache.timestamp > this.cacheExpiration) { + // Cache is expired + this.clearCache(); + return null; + } + + return parsedCache.data; + } + + setCachedData(data) { + const cache = { + timestamp: new Date().getTime(), + data: data, + }; + localStorage.setItem(this.cacheKey, JSON.stringify(cache)); + } + + clearCache() { + localStorage.removeItem(this.cacheKey); + } + + async loadFeed() { + try { + const response = await fetch(`${this.mastodonInstance}/api/v1/accounts/${this.accountId}/statuses?limit=${this.postCount}`); + + if (!response.ok) { + throw new Error(`Failed to fetch Mastodon feed: ${response.statusText}`); + } + + const posts = await response.json(); + this.setCachedData(posts); // Cache the data + this.renderFeed(posts); + } catch (error) { + console.error("Error loading Mastodon feed:", error); + this.container.innerHTML = `
Error loading feed. Please try again later.
`; + } + } + + renderFeed(posts) { + // Clear existing content + this.container.innerHTML = ""; + + posts.forEach(post => { + if (!post.content) return; // Ignore posts with no content + + // Create post element + const listItem = document.createElement("div"); + listItem.className = "well well-small"; + + const postContent = document.createElement("div"); + + const user = post.account; + const avatar = user.avatar_static; + const displayName = user.display_name || user.username; + + // User header + const header = document.createElement("div"); + header.className = "media"; + + const avatarLink = document.createElement("a"); + avatarLink.href = user.url; + avatarLink.className = "pull-left"; + + const avatarImg = document.createElement("img"); + avatarImg.src = avatar; + avatarImg.alt = displayName; + avatarImg.className = "img-circle"; + avatarImg.style.width = "40px"; + + avatarLink.appendChild(avatarImg); + + const userInfo = document.createElement("div"); + userInfo.className = "media-body"; + + const nameLink = document.createElement("a"); + nameLink.href = user.url; + nameLink.className = "muted"; + nameLink.textContent = displayName; + + const username = document.createElement("span"); + username.className = "small muted"; + username.textContent = ` (@${user.username})`; + + const userHeader = document.createElement("h5"); + userHeader.appendChild(nameLink); + userHeader.appendChild(username); + + userInfo.appendChild(userHeader); + + header.appendChild(avatarLink); + header.appendChild(userInfo); + + // Post content + const content = document.createElement("p"); + content.innerHTML = post.content; + + // Interactions + const interactions = document.createElement("div"); + interactions.className = "btn-group"; + + // View Post link + const viewPost = document.createElement("a"); + viewPost.href = post.url; + viewPost.className = "btn btn-small btn-primary"; + viewPost.innerHTML = `View Post   +    ${post.replies_count}  +    ${post.favourites_count}  + ${post.reblogs_count}`; + interactions.appendChild(viewPost); + + // Join Me link + const joinLink = document.createElement("a"); + joinLink.href = "https://joomla.social/invite/gzAvC48K"; + joinLink.className = "btn btn-small btn-success"; + joinLink.textContent = "Join Me"; + interactions.appendChild(joinLink); + + // Assemble post + postContent.appendChild(header); + postContent.appendChild(content); + postContent.appendChild(interactions); + + listItem.appendChild(postContent); + this.container.appendChild(listItem); + this.container.classList.remove('loading'); + }); + } + + clearCacheAndReload() { + // Add spinning effect to the refresh button + this.refreshButton.classList.add('spinning'); + + // Show placeholder content + this.container.classList.add('loading'); + this.container.innerHTML = this.generatePlaceholder(); + + // Clear cache and reload feed + this.clearCache(); + + // Wait for 3 seconds + setTimeout(() => { + // Enlarge and fade out the refresh button + this.refreshButton.classList.add('enlarge-and-disappear'); + + // After the animation, reset the button and content + setTimeout(() => { + this.refreshButton.classList.remove('spinning', 'enlarge-and-disappear'); + this.refreshButton.style.display = ''; + + // Remove placeholder and restore actual content + this.loadFeed(); + }, 1000); // Animation time for fade-out + }, 3000); // Spinning duration + } + + generatePlaceholder() { + let placeholders = ''; + for (let i = 0; i < this.postCount; i++) { + placeholders += ` +
+
+
+
+
+
+
+ `; + } + return placeholders; + } +} + +class IconWaveAnimator { + constructor(containerId, detailsId) { + this.details = document.getElementById(detailsId); + this.container = document.getElementById(containerId); + this.icons = this.container.querySelectorAll("i"); + this.links = this.container.querySelectorAll("a"); + this.init(); + } + + init() { + // set the icon hover events + this.setupHoverEvents(); + + // Random chance to do nothing (1 out of 10) + if (Math.random() < 0.1) return; + + // Randomize the initial delay before starting + const initialDelay = Math.random() * 2000 + 2000; // 2–4 seconds + setTimeout(() => { + this.randomBehavior(); + }, initialDelay); + + // Occasionally trigger a second wave after 10 seconds + if (Math.random() > 0.5) { + setTimeout(() => { + this.mexicanWave(false); // Reverse wave + }, 10000); + } + } + + mexicanWave(forward = true) { + let delay = 0; + const iconsArray = Array.from(this.icons); + + (forward ? iconsArray : iconsArray.reverse()).forEach((icon) => { + setTimeout(() => { + icon.style.transition = "transform 0.3s ease-in-out"; + icon.style.transform = "scale(1.3)"; + setTimeout(() => { + icon.style.transform = "scale(1)"; + }, 300); + }, delay); + delay += 150; // Stagger the effect for the wave + }); + } + + randomBehavior() { + const waveDirection = Math.random() > 0.5 ? "forward" : "backward"; + const waveCount = Math.floor(Math.random() * 10) + 1; // 1 to 5 waves + const interval = Math.random() * 2000 + 3000; // 3 to 5 seconds + + let executedCount = 0; + const intervalId = setInterval(() => { + if (executedCount >= waveCount) { + clearInterval(intervalId); + return; + } + this.mexicanWave(waveDirection === "forward"); + executedCount++; + }, interval); + } + + setupHoverEvents() { + this.links.forEach((link) => { + link.addEventListener("mouseenter", () => this.showDetails(link)); + link.addEventListener("mouseleave", () => this.clearDetails()); + }); + } + + showDetails(link) { + const description = link.dataset.description; + if (this.details && description) { + this.details.textContent = description; + } + } + + clearDetails() { + if (this.details) { + this.details.textContent = ""; + } + } +} \ No newline at end of file diff --git a/admin/language/en-GB/en-GB.com_componentbuilder.ini b/admin/language/en-GB/en-GB.com_componentbuilder.ini index 5655c0c01..ee3668b39 100644 --- a/admin/language/en-GB/en-GB.com_componentbuilder.ini +++ b/admin/language/en-GB/en-GB.com_componentbuilder.ini @@ -1287,7 +1287,6 @@ COM_COMPONENTBUILDER_ALIGNMENT="Alignment" COM_COMPONENTBUILDER_ALL="All" COM_COMPONENTBUILDER_ALLOWS_YOU_TO_OVERRIDE_THE_BUILD_DATE_BY_SELECTING_A_DATE_MANUALLY_FROM_THE_CALENDER="Allows you to override the build date by selecting a date manually from the calender." COM_COMPONENTBUILDER_ALL_FOUND_INSTANCES_IN_S_WHERE_REPLACED="All found instances in %s where replaced" -COM_COMPONENTBUILDER_ALL_IS_GOOD_PLEASE_CHECK_AGAIN_LATER="All is good, please check again later" COM_COMPONENTBUILDER_ALL_IS_GOOD_THERE_IS_NO_NOTICE_AT_THIS_TIME="All is good, there is no notice at this time." COM_COMPONENTBUILDER_ALL_OF_THESE_PACKAGES_ARE_A_FULLY_DEVELOPEDMAPPED_COMPONENTS_FOR_JCB_THEY_CAN_BE_SEEN_AS_DEMO_CONTENT_OR_BASE_IMAGES_FROM_WHICH_TO_START_YOUR_PROJECTBR_ALWAYS_MAKE_SURE_YOU_ARE_ON_THE_LATEST_VERSION_OF_JCB_BEFORE_IMPORTING_ANY_OF_THESE_PACKAGES_SHOULD_ANY_OF_THEM_FAIL_TO_IMPORT_A_S_PLEASE_LET_US_KNOWA="All of these packages are a fully developed/mapped components for JCB. They can be seen as demo content, or base images from which to start your project.
Always make sure you are on the latest version of JCB before importing any of these packages, should any of them fail to import please let us know." COM_COMPONENTBUILDER_ALL_THE_FIELDS_AND_VIEWS_FROM_YOUR_SQL_DUMP_HAS_BEEN_CREATED_AND_LINKED_TO_THIS_COMPONENT="All the fields and views from your sql dump has been created and linked to this component." @@ -1351,6 +1350,7 @@ COM_COMPONENTBUILDER_BTHE_TMP_FOLDER_HAS_BEEN_CLEARED_SUCCESSFULLYB="The tmp COM_COMPONENTBUILDER_BUILD="Build" COM_COMPONENTBUILDER_BUILDIN="Build-in" COM_COMPONENTBUILDER_BUILD_DATE="Build Date" +COM_COMPONENTBUILDER_BUILD_INNOVATE_AND_THRIVE_WITH_LLEWELLYN_ON_GITHUB_TURNING_IDEAS_INTO_IMPACT="Build, Innovate, and Thrive with Llewellyn on GitHub: Turning Ideas into Impact!" COM_COMPONENTBUILDER_BULK="Bulk" COM_COMPONENTBUILDER_BULK_GET_ALL_NEW_SNIPPETS="Bulk Get All New Snippets" COM_COMPONENTBUILDER_BULK_TOOLS="Bulk Tools" @@ -1647,6 +1647,7 @@ COM_COMPONENTBUILDER_CLONE_FAILED="Clone failed!" COM_COMPONENTBUILDER_CLOSE_NEW="Close & New" COM_COMPONENTBUILDER_CODE="Code" COM_COMPONENTBUILDER_CODESTRINGS="code/strings" +COM_COMPONENTBUILDER_COLLABORATE_AND_INNOVATE_WITH_LLEWELLYN_ON_GIT_BUILDING_A_BETTER_CODE_FUTURE="Collaborate and Innovate with Llewellyn on Git: Building a Better Code Future!" COM_COMPONENTBUILDER_COMMUNITY_PACKAGES="Community Packages" COM_COMPONENTBUILDER_COMPANY="Company" COM_COMPONENTBUILDER_COMPANY_NAME="Company Name" @@ -2963,7 +2964,6 @@ COM_COMPONENTBUILDER_COMPONENT_FILES_FOLDERS_SAVE_WARNING="Alias already existed COM_COMPONENTBUILDER_COMPONENT_FILES_FOLDERS_STATUS="Status" COM_COMPONENTBUILDER_COMPONENT_FILES_FOLDERS_VERSION_DESC="A count of the number of times this Component Files & Folders has been revised." COM_COMPONENTBUILDER_COMPONENT_FILES_FOLDERS_VERSION_LABEL="Version" -COM_COMPONENTBUILDER_COMPONENT_GLOBAL_SETTINGS="Component Global Settings" COM_COMPONENTBUILDER_COMPONENT_MODULES="Component Modules" COM_COMPONENTBUILDER_COMPONENT_MODULES_ADDJOOMLA_MODULES_DESCRIPTION="Setup the Joomla modules for this component." COM_COMPONENTBUILDER_COMPONENT_MODULES_ADDJOOMLA_MODULES_LABEL="Joomla Modules" @@ -3179,6 +3179,7 @@ COM_COMPONENTBUILDER_COMPONENT_ROUTER_SITEVIEW_LABEL="View" COM_COMPONENTBUILDER_COMPONENT_ROUTER_STATUS="Status" COM_COMPONENTBUILDER_COMPONENT_ROUTER_VERSION_DESC="A count of the number of times this Component Router has been revised." COM_COMPONENTBUILDER_COMPONENT_ROUTER_VERSION_LABEL="Version" +COM_COMPONENTBUILDER_COMPONENT_SETTINGS="Component Settings" COM_COMPONENTBUILDER_COMPONENT_SITE_VIEWS="Component Site Views" COM_COMPONENTBUILDER_COMPONENT_SITE_VIEWS_ACCESS_DESCRIPTION="Select if this view
should use access." COM_COMPONENTBUILDER_COMPONENT_SITE_VIEWS_ACCESS_LABEL="Add Access" @@ -3612,6 +3613,7 @@ COM_COMPONENTBUILDER_CONFIG_VDM_PACKAGES="VDM Packages" COM_COMPONENTBUILDER_CONFIG_VIEW_FIELD_LABEL="View & Field" COM_COMPONENTBUILDER_CONFIG_YES="Yes" COM_COMPONENTBUILDER_CONFIRMATION_STEP_BEFORE_IMPORTING="Confirmation Step Before Importing!" +COM_COMPONENTBUILDER_CONNECT_AND_ENGAGE_WITH_LLEWELLYN_ON_JOOMLA_SOCIAL_EMPOWERING_COMMUNITIES_ONE_POST_AT_A_TIME="Connect and Engage with Llewellyn on Joomla Social: Empowering Communities, One Post at a Time!" COM_COMPONENTBUILDER_CONTEXT="Context" COM_COMPONENTBUILDER_CONTRIBUTE_TO_JCB="Contribute to JCB" COM_COMPONENTBUILDER_CONTRIBUTOR="Contributor" @@ -4221,6 +4223,7 @@ COM_COMPONENTBUILDER_DISPLAY_SWITCH_FOR_DYNAMIC_PLACEMENT_IN_RELATION_TO_THE_USE COM_COMPONENTBUILDER_DIVERGED="Diverged" COM_COMPONENTBUILDER_DIVERGED_MEANS_YOUR_BLOCAL_SNIPPETB_WITH_THE_SAME_NAME_LIBRARY_AND_TYPE_HAS_A_BDIVERGEDB_FROM_THE_COMMUNITY_SNIPPET_WITH_THE_SAME_NAME_LIBRARY_AND_TYPE_IN_THAT_IT_DOES_NOT_HAVE_THE_SAME_BCREATIONB_OR_BMODIFIED_DATEB="Diverged means your local snippet (with the same name, library and type) has a diverged from the community snippet (with the same name, library and type) in that it does not have the same creation or modified date." COM_COMPONENTBUILDER_DOES_THIS_PACKAGE_REQUIRE_A_KEY_TO_INSTALL="Does this package require a key to install." +COM_COMPONENTBUILDER_DONATE_TOWARDS_JCB_HELP_LLEWELLYN_FINANCIALLY_SO_HE_CAN_CONTINUE_DEVELOPING_THIS_GREAT_TOOL="Donate towards JCB: Help Llewellyn financially so he can continue developing this great tool!" COM_COMPONENTBUILDER_DONATE_TO_JCB="Donate to JCB" COM_COMPONENTBUILDER_DONATIONS="Donations!" COM_COMPONENTBUILDER_DOWNLOAD_UPDATE="Download Update" @@ -4567,6 +4570,7 @@ COM_COMPONENTBUILDER_EVERY_LANGUAGE="Every language" COM_COMPONENTBUILDER_EXACT_LENGTH_ONLY_FOUR_TEXT_FIELD="Exact Length (only 4 text_field)" COM_COMPONENTBUILDER_EXAMPLE="Example" COM_COMPONENTBUILDER_EXIT_TRASH="Exit trash" +COM_COMPONENTBUILDER_EXPLORE_LEARN_AND_CREATE_WITH_LLEWELLYN_ON_YOUTUBE_YOUR_GATEWAY_TO_INSPIRATION="Explore, Learn, and Create with Llewellyn on YouTube: Your Gateway to Inspiration!" COM_COMPONENTBUILDER_EXPORTIMPORT_DATA="Export/Import Data" COM_COMPONENTBUILDER_EXPORT_COMPLETED="Export Completed!" COM_COMPONENTBUILDER_EXPORT_DATA="Export Data" @@ -5516,8 +5520,6 @@ COM_COMPONENTBUILDER_JCB_PACKAGE_INFO_PATH_DOES_NOT_WORK_WE_ADVICE_YOU_BNOT_TO_C COM_COMPONENTBUILDER_JCB_PROMOTES_EFFICIENCY="JCB Promotes Efficiency" COM_COMPONENTBUILDER_JCB_PROMOTES_GOODWILL="JCB Promotes Goodwill" COM_COMPONENTBUILDER_JCB_PROVIDES_A_BETTER_EXPERIENCE="JCB Provides a Better Experience" -COM_COMPONENTBUILDER_JCB_PRO_BOARD="JCB Pro board" -COM_COMPONENTBUILDER_JCB_PRO_NOTICE_BOARD="JCB Pro Notice Board" COM_COMPONENTBUILDER_JCB_REDUCES_DEVELOPMENT_COSTS="JCB Reduces Development Costs" COM_COMPONENTBUILDER_JCB_SAVES_TIME="JCB Saves Time" COM_COMPONENTBUILDER_JCB_STREAMLINES_DEVELOPMENT="JCB Streamlines Development" @@ -5535,9 +5537,12 @@ COM_COMPONENTBUILDER_JCB_YOUR_SUPPORT_MATTERS_MOST="JCB: Your Support Matters Mo COM_COMPONENTBUILDER_JOIN_FIELDS="Join Fields" COM_COMPONENTBUILDER_JOIN_JCBS_COMMUNITY="Join JCB's Community" COM_COMPONENTBUILDER_JOIN_JCBS_JOURNEY="Join JCB's Journey" +COM_COMPONENTBUILDER_JOIN_JCBS_LEAD_DEVELOPER_ON_JOOMLA_SOCIAL_A_MASTODON_INSTANCE="Join JCB's lead developer on Joomla! social a Mastodon instance." COM_COMPONENTBUILDER_JOIN_JCBS_MISSION="Join JCB's Mission" COM_COMPONENTBUILDER_JOIN_JCBS_SUCCESS="Join JCB's Success" COM_COMPONENTBUILDER_JOIN_JCBS_VISION="Join JCB's Vision" +COM_COMPONENTBUILDER_JOIN_LLEWELLYN_ON_THE_JOOMLA_VOLUNTEER_PORTAL_SHAPING_THE_FUTURE_TOGETHER="Join Llewellyn on the Joomla Volunteer Portal: Shaping the Future Together!" +COM_COMPONENTBUILDER_JOIN_THE_CONVERSATION_WITH_LLEWELLYN_ON_X_WHERE_IDEAS_TAKE_FLIGHT="Join the Conversation with Llewellyn on X: Where Ideas Take Flight!" COM_COMPONENTBUILDER_JOIN_TYPE="Join Type" COM_COMPONENTBUILDER_JOOMLA_COMPONENT="Joomla Component" COM_COMPONENTBUILDER_JOOMLA_COMPONENTS="Joomla Components" @@ -5744,6 +5749,7 @@ COM_COMPONENTBUILDER_JOOMLA_COMPONENT_GUID_DESCRIPTION="Globally Unique Identifi COM_COMPONENTBUILDER_JOOMLA_COMPONENT_GUID_HINT="Auto Generated" COM_COMPONENTBUILDER_JOOMLA_COMPONENT_GUID_LABEL="GUID" COM_COMPONENTBUILDER_JOOMLA_COMPONENT_ID="Id" +COM_COMPONENTBUILDER_JOOMLA_COMPONENT_IMAGE="Joomla Component Image" COM_COMPONENTBUILDER_JOOMLA_COMPONENT_IMAGE_DESCRIPTION="The component image (product box) for the dashboard and install page, must be 300px X 300px." COM_COMPONENTBUILDER_JOOMLA_COMPONENT_IMAGE_LABEL="Component Image" COM_COMPONENTBUILDER_JOOMLA_COMPONENT_IMPORT_JCB_PACKAGES_BUTTON_ACCESS="Joomla Component Import JCB Packages Button Access" @@ -7531,6 +7537,8 @@ COM_COMPONENTBUILDER_LINK_LOCAL_DYNAMIC="Link & Local (dynamic)" COM_COMPONENTBUILDER_LINK_TO_THE_CONTRIBUTOR="Link to the contributor" COM_COMPONENTBUILDER_LIST_FIELD="List Field" COM_COMPONENTBUILDER_LIST_VIEW="List View" +COM_COMPONENTBUILDER_LLEWELLYNS_JOOMLA_SOCIAL_FEED="Llewellyn's Joomla! Social Feed" +COM_COMPONENTBUILDER_LLEWELLYN_ON_DOCKER_CONTAINERIZE_YOUR_CREATIVITY="Llewellyn on Docker: Containerize Your Creativity!" COM_COMPONENTBUILDER_LOADING="loading" COM_COMPONENTBUILDER_LOADING_THE_PRIVATE_KEY_FILE_FAILED="Loading the private key file failed" COM_COMPONENTBUILDER_LOADING_THE_PRIVATE_KEY_TEXT_FAILED="Loading the private key text failed" @@ -7925,6 +7933,7 @@ COM_COMPONENTBUILDER_PUSH_FAILED="Push Failed!" COM_COMPONENTBUILDER_README="Readme" COM_COMPONENTBUILDER_READY_TO_COMPILE_A_COMPONENT="Ready to compile a component" COM_COMPONENTBUILDER_REFRESH="Refresh" +COM_COMPONENTBUILDER_REFRESH_FEED="Refresh Feed" COM_COMPONENTBUILDER_REGEX_SEARCH="Regex Search" COM_COMPONENTBUILDER_REMOVE="Remove" COM_COMPONENTBUILDER_REMOVING_ALL_ZIP_PACKAGES_FROM_THE_TEMPORARY_FOLDER_OF_THE_JOOMLA_INSTALL="Removing all zip packages from the temporary folder of the Joomla install" @@ -9138,7 +9147,6 @@ COM_COMPONENTBUILDER_THE_POWER_HAS_SUCCESSFULLY_BEEN_PUSHED="The power has succe COM_COMPONENTBUILDER_THE_POWER_HAS_SUCCESSFULLY_BEEN_RESET="The power has successfully been reset." COM_COMPONENTBUILDER_THE_PRIVATE_KEY_FIELD_COULD_NOT_BE_LOADED_FOR_BSB_SERVER="The private key field could not be loaded for %s server!" COM_COMPONENTBUILDER_THE_PRIVATE_KEY_FILE_COULD_NOT_BE_LOADEDFOUND_FOR_BSB_SERVER="The private key file could not be loaded/found for %s server!" -COM_COMPONENTBUILDER_THE_PRO_BOARD_IS_LOADING="The pro board is loading" COM_COMPONENTBUILDER_THE_PUSH_OF_THESE_JOOMLA_FIELD_TYPES_HAS_FAILED="The push of these Joomla Field Types has failed." COM_COMPONENTBUILDER_THE_PUSH_OF_THESE_JOOMLA_POWERS_HAS_FAILED="The push of these Joomla Powers has failed." COM_COMPONENTBUILDER_THE_PUSH_OF_THESE_POWERS_HAS_FAILED="The push of these Powers has failed." @@ -9246,6 +9254,7 @@ COM_COMPONENTBUILDER_TYPE_TEMPLATE="Template" COM_COMPONENTBUILDER_TYPE_VALIDATION_RULE="Validation Rule" COM_COMPONENTBUILDER_UNACTIVE_ONLY_FOUR_TEXT_FIELD="Unactive (only 4 text_field)" COM_COMPONENTBUILDER_UNDERNEATH_TABS="Underneath Tabs" +COM_COMPONENTBUILDER_UNLOCK_TRUST_AND_SECURITY_WITH_LLEWELLYNS_GPG_KEY_YOUR_GATEWAY_TO_VERIFIED_CONNECTIONS="Unlock Trust and Security with Llewellyn's GPG Key: Your Gateway to Verified Connections!" COM_COMPONENTBUILDER_UPDATE="Update" COM_COMPONENTBUILDER_UPDATE_ALL="Update All" COM_COMPONENTBUILDER_UPDATE_ALL_DIVERGED_SNIPPETS="Update All Diverged Snippets" @@ -9344,7 +9353,6 @@ COM_COMPONENTBUILDER_VALIDATION_RULE_STATUS="Status" COM_COMPONENTBUILDER_VALIDATION_RULE_VERSION_DESC="A count of the number of times this Validation Rule has been revised." COM_COMPONENTBUILDER_VALIDATION_RULE_VERSION_LABEL="Version" COM_COMPONENTBUILDER_VALUE="Value" -COM_COMPONENTBUILDER_VDM_BOARD="VDM board" COM_COMPONENTBUILDER_VDM_NOTICE_BOARD="VDM Notice Board" COM_COMPONENTBUILDER_VDM_PACKAGES="VDM Packages" COM_COMPONENTBUILDER_VERSION="Version" diff --git a/admin/layouts/jcbnoticeboardpro.php b/admin/layouts/jcbnoticeboard.php similarity index 59% rename from admin/layouts/jcbnoticeboardpro.php rename to admin/layouts/jcbnoticeboard.php index 43533de2d..78df660c7 100644 --- a/admin/layouts/jcbnoticeboardpro.php +++ b/admin/layouts/jcbnoticeboard.php @@ -20,8 +20,8 @@ use Joomla\CMS\Layout\LayoutHelper; ?> -
- -
.
-
JCB PRO
-
+
+ +
+ +
diff --git a/admin/layouts/jcbnoticeboardtabs.php b/admin/layouts/jcbnoticeboardtabs.php deleted file mode 100644 index 7e7693314..000000000 --- a/admin/layouts/jcbnoticeboardtabs.php +++ /dev/null @@ -1,34 +0,0 @@ - - * @git Joomla Component Builder - * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. - * @license GNU General Public License version 2 or later; see LICENSE.txt - */ - -// No direct access to this file -defined('JPATH_BASE') or die('Restricted access'); - -use Joomla\CMS\Factory; -use Joomla\CMS\Language\Text; -use Joomla\CMS\HTML\HTMLHelper as Html; -use Joomla\CMS\Layout\LayoutHelper; - - - -?> -
- $displayData['active'] . '-noticeboard')); ?> - - -
- - - -
- - -
diff --git a/admin/layouts/jcbnoticeboardvdm.php b/admin/layouts/jcbnoticeboardvdm.php deleted file mode 100644 index 99bc2f1f4..000000000 --- a/admin/layouts/jcbnoticeboardvdm.php +++ /dev/null @@ -1,27 +0,0 @@ - - * @git Joomla Component Builder - * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. - * @license GNU General Public License version 2 or later; see LICENSE.txt - */ - -// No direct access to this file -defined('JPATH_BASE') or die('Restricted access'); - -use Joomla\CMS\Factory; -use Joomla\CMS\Language\Text; -use Joomla\CMS\HTML\HTMLHelper as Html; -use Joomla\CMS\Layout\LayoutHelper; - - - -?> -
- -
.
- -
diff --git a/admin/layouts/mastodon.php b/admin/layouts/mastodon.php new file mode 100644 index 000000000..177fa4ac9 --- /dev/null +++ b/admin/layouts/mastodon.php @@ -0,0 +1,71 @@ + + * @git Joomla Component Builder + * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. + * @license GNU General Public License version 2 or later; see LICENSE.txt + */ + +// No direct access to this file +defined('JPATH_BASE') or die('Restricted access'); + +use Joomla\CMS\Factory; +use Joomla\CMS\Language\Text; +use Joomla\CMS\HTML\HTMLHelper as Html; +use Joomla\CMS\Layout\LayoutHelper; + +// Extract all keys from $displayData as individual variables. +extract($displayData ?? []); + +// The 'id' parameter, defaulting to mastodon-feed. +$id ??= 'mastodon-feed'; + +// The button 'id' parameter, defaulting to refresh-feed. +$button_id ??= 'refresh-feed'; + +// The mastodon instance URL +$instance ??= 'https://joomla.social'; + +// The user account ID +$account ??= '112766899254600077'; + +// The number of post to load +$posts ??= 5; + +// The 'invite_url' parameter, defaulting to https://joomla.social/invite/gzAvC48K. +$invite_url ??= 'https://joomla.social/invite/gzAvC48K'; + +// The 'invite_heading' parameter. +$invite_heading ??= Text::_("COM_COMPONENTBUILDER_LLEWELLYNS_JOOMLA_SOCIAL_FEED"); + +// The 'invite_title' parameter. +$invite_title ??= Text::_("COM_COMPONENTBUILDER_JOIN_JCBS_LEAD_DEVELOPER_ON_JOOMLA_SOCIAL_A_MASTODON_INSTANCE"); + +?> +
+

+ + +    + + + +

+
+
+ +
diff --git a/admin/layouts/socialnetworking.php b/admin/layouts/socialnetworking.php new file mode 100644 index 000000000..eccfcb4a3 --- /dev/null +++ b/admin/layouts/socialnetworking.php @@ -0,0 +1,61 @@ + + * @git Joomla Component Builder + * @copyright Copyright (C) 2015 Vast Development Method. All rights reserved. + * @license GNU General Public License version 2 or later; see LICENSE.txt + */ + +// No direct access to this file +defined('JPATH_BASE') or die('Restricted access'); + +use Joomla\CMS\Factory; +use Joomla\CMS\Language\Text; +use Joomla\CMS\HTML\HTMLHelper as Html; +use Joomla\CMS\Layout\LayoutHelper; + + + +?> + +
+ + diff --git a/admin/models/ajax.php b/admin/models/ajax.php index b0b7f1db6..715c8c30e 100644 --- a/admin/models/ajax.php +++ b/admin/models/ajax.php @@ -165,35 +165,73 @@ class ComponentbuilderModelAjax extends ListModel } /** - * set the component display - **/ + * Generate the component details display in HTML. + * + * @param object $object The component object containing details. + * @return string The HTML string for displaying component details. + */ protected function componentDetailsDisplay($object) { - // set some vars - $image = (StringHelper::check($object->image)) ? 'Joomla Component Image': ''; - $desc = (StringHelper::check($object->description)) ? $object->description : $object->short_description; - $placeholder = ($object->add_placeholders == 1) ? ' ' . Text::_('COM_COMPONENTBUILDER_YES') . ' ' : ' ' .Text::_('COM_COMPONENTBUILDER_NO') . ' ' ; - $debug = ($object->debug_linenr == 1) ? ' ' .Text::_('COM_COMPONENTBUILDER_YES') . '' : ' ' .Text::_('COM_COMPONENTBUILDER_NO') . ' ' ; - $html = array(); - $html[] = '

' . $object->name . ' (v' . $object->component_version . ')

'; - $html[] = '

' . $desc . $image . '

'; - $html[] = '
    '; - $html[] = '
  • ' . Text::_('COM_COMPONENTBUILDER_COMPANY') . ': ' . $object->companyname . '
  • '; - $html[] = '
  • ' . Text::_('COM_COMPONENTBUILDER_AUTHOR') . ': ' . $object->author . '
  • '; - $html[] = '
  • ' . Text::_('COM_COMPONENTBUILDER_EMAIL') . ': ' . $object->email . '
  • '; - $html[] = '
  • ' . Text::_('COM_COMPONENTBUILDER_WEBSITE') . ': ' . $object->website . '
  • '; - $html[] = '
'; - $html[] = '

' . Text::_('COM_COMPONENTBUILDER_COMPONENT_GLOBAL_SETTINGS') . '

'; + // Helper variables with null coalescing to ensure robust value assignment + $imageSrc = !empty($object->image) ? htmlspecialchars($object->image, ENT_QUOTES) : null; + $image = $imageSrc + ? '' . Text::_('COM_COMPONENTBUILDER_JOOMLA_COMPONENT_IMAGE') . '' + : ''; + + $description = htmlspecialchars(!empty($object->description) ? $object->description : $object->short_description, ENT_QUOTES); + + $placeholderStatus = $object->add_placeholders + ? '' . Text::_('COM_COMPONENTBUILDER_YES') . '' + : '' . Text::_('COM_COMPONENTBUILDER_NO') . ''; + + $debugStatus = $object->debug_linenr + ? '' . Text::_('COM_COMPONENTBUILDER_YES') . '' + : '' . Text::_('COM_COMPONENTBUILDER_NO') . ''; + + // Author and company details + $company = ''; + + // Build HTML output + $html = []; + + // Header with component name and version + $html[] = '
'; + $html[] = '

' . htmlspecialchars($object->name, ENT_QUOTES) . ' (v' . htmlspecialchars($object->component_version, ENT_QUOTES) . ')

'; + + // Description with optional image + $html[] = '
'; + $html[] = '

' . $image . $description . $company . '

'; + $html[] = '
'; + + // Component settings + $html[] = '

' . Text::_('COM_COMPONENTBUILDER_COMPONENT_SETTINGS') . '

'; $html[] = '

'; - $html[] = Text::_('COM_COMPONENTBUILDER_ADD_CUSTOM_CODE_PLACEHOLDERS') . '
' . $placeholder . '
'; - $html[] = Text::_('COM_COMPONENTBUILDER_DEBUG_LINE_NUMBERS') . '
' . $debug ; + $html[] = Text::_('COM_COMPONENTBUILDER_ADD_CUSTOM_CODE_PLACEHOLDERS') . ': ' . $placeholderStatus . '
'; + $html[] = Text::_('COM_COMPONENTBUILDER_DEBUG_LINE_NUMBERS') . ': ' . $debugStatus; $html[] = '

'; + + // License details $html[] = '

' . Text::_('COM_COMPONENTBUILDER_LICENSE') . '

'; - $html[] = '

' . $object->license . '

'; + $html[] = '

' . nl2br(htmlspecialchars($object->license, ENT_QUOTES)) . '

'; + + // Copyright $html[] = '

' . Text::_('COM_COMPONENTBUILDER_COPYRIGHT') . '

'; - $html[] = '

' . $object->copyright . '

'; - $html[] = ' ' . Text::_('COM_COMPONENTBUILDER_EDIT') . ' ' .$object->system_name . '

'; - // now return the diplay + $html[] = '

' . nl2br(htmlspecialchars($object->copyright, ENT_QUOTES)) . '

'; + + // Edit button + $html[] = '

'; + $html[] = ''; + $html[] = ' ' . Text::_('COM_COMPONENTBUILDER_EDIT') . ' ' . htmlspecialchars($object->system_name, ENT_QUOTES); + $html[] = ''; + $html[] = '

'; + + $html[] = '
'; // Close component-details + return implode("\n", $html); } diff --git a/admin/models/componentbuilder.php b/admin/models/componentbuilder.php index be431d449..10a39e2f2 100644 --- a/admin/models/componentbuilder.php +++ b/admin/models/componentbuilder.php @@ -455,97 +455,6 @@ class ComponentbuilderModelComponentbuilder extends ListModel } - public function getNoticeboard() - { - // get the document to load the scripts - $document = Factory::getDocument(); - Html::_('script', "media/com_componentbuilder/js/marked.js", ['version' => 'auto']); - $document->addScriptDeclaration(' - var token = "' . Session::getFormToken() . '"; - var noticeboard = "https://vdm.bz/componentbuilder-noticeboard-md"; - document.addEventListener("DOMContentLoaded", function() { - fetch(noticeboard) - .then(response => { - if (!response.ok) { - throw new Error("Network response was not ok"); - } - return response.text(); - }) - .then(board => { - if (board.length > 5) { - document.getElementById("noticeboard-md").innerHTML = marked.parse(board); - getIS(1, board) - .then(result => { - if (result) { - document.querySelectorAll("#cpanel_tabTabs a").forEach(link => { - if (link.href.includes("#vast_development_method") || link.href.includes("#notice_board")) { - var textVDM = link.textContent; - link.innerHTML = "1 " + textVDM; - link.id = "vdm-new-notice"; - document.getElementById("vdm-new-notice").addEventListener("click", () => { - getIS(2, board) - .then(result => { - if (result) { - document.querySelectorAll(".vdm-new-notice").forEach(element => { - element.style.opacity = 0; - }); - } - }); - }); - } - }); - } - }); - } else { - document.getElementById("noticeboard-md").innerHTML = "'.Text::_('COM_COMPONENTBUILDER_ALL_IS_GOOD_PLEASE_CHECK_AGAIN_LATER').'."; - } - }) - .catch(error => { - console.error("There was an error!", error); - document.getElementById("noticeboard-md").innerHTML = "'.Text::_('COM_COMPONENTBUILDER_ALL_IS_GOOD_PLEASE_CHECK_AGAIN_LATER').'."; - }); - }); - - // to check is READ/NEW - function getIS(type, notice) { - let getUrl = ""; - if (type === 1) { - getUrl = "index.php?option=com_componentbuilder&task=ajax.isNew&format=json&raw=true"; - } else if (type === 2) { - getUrl = "index.php?option=com_componentbuilder&task=ajax.isRead&format=json&raw=true"; - } - let request = new URLSearchParams(); - if (token.length > 0 && notice.length) { - request.append(token, "1"); - request.append("notice", notice); - } - return fetch(getUrl, { - method: "POST", - headers: { - "Content-Type": "application/x-www-form-urlencoded;charset=UTF-8" - }, - body: request - }).then(response => response.json()); - } - -document.addEventListener("DOMContentLoaded", function() { - document.querySelectorAll(".loading-dots").forEach(function(loading_dots) { - let x = 0; - let intervalId = setInterval(function() { - if (!loading_dots.classList.contains("loading-dots")) { - clearInterval(intervalId); - return; - } - let dots = ".".repeat(x % 8); - loading_dots.textContent = dots; - x++; - }, 500); - }); -});'); - - return '
'.Text::_('COM_COMPONENTBUILDER_THE_NOTICE_BOARD_IS_LOADING').'..
'; - } - public function getReadme() { $document = Factory::getDocument(); diff --git a/admin/sql/install.mysql.utf8.sql b/admin/sql/install.mysql.utf8.sql index 80084f89c..aac129be0 100644 --- a/admin/sql/install.mysql.utf8.sql +++ b/admin/sql/install.mysql.utf8.sql @@ -2086,7 +2086,7 @@ CREATE TABLE IF NOT EXISTS `#__componentbuilder_joomla_plugin_files_folders_urls -- INSERT INTO `#__componentbuilder_joomla_component` (`id`, `add_admin_event`, `add_backup_folder_path`, `add_css_admin`, `add_css_site`, `add_email_helper`, `add_git_folder_path`, `add_javascript`, `add_jcb_powers_path`, `add_menu_prefix`, `add_namespace_prefix`, `add_php_helper_admin`, `add_php_helper_both`, `add_php_helper_site`, `add_php_method_uninstall`, `add_php_postflight_install`, `add_php_postflight_update`, `add_php_preflight_install`, `add_php_preflight_update`, `add_placeholders`, `add_powers`, `add_sales_server`, `add_site_event`, `add_sql`, `add_sql_uninstall`, `add_update_server`, `addcontributors`, `addfootable`, `addreadme`, `adduikit`, `assets_table_fix`, `author`, `backup_folder_path`, `bom`, `buildcomp`, `buildcompsql`, `companyname`, `component_version`, `copyright`, `created`, `creatuserhelper`, `crowdin_account_api_key`, `crowdin_project_api_key`, `crowdin_project_identifier`, `crowdin_username`, `css_admin`, `css_site`, `dashboard`, `dashboard_type`, `debug_linenr`, `description`, `email`, `emptycontributors`, `export_buy_link`, `export_key`, `git_folder_path`, `guid`, `image`, `javascript`, `jcb_powers_path`, `joomla_source_link`, `license`, `menu_prefix`, `modified`, `mvc_versiondate`, `name`, `name_code`, `namespace_prefix`, `number`, `php_admin_event`, `php_helper_admin`, `php_helper_both`, `php_helper_site`, `php_method_uninstall`, `php_postflight_install`, `php_postflight_update`, `php_preflight_install`, `php_preflight_update`, `php_site_event`, `php_method_install`, `readme`, `remove_line_breaks`, `sales_server`, `short_description`, `sql`, `sql_uninstall`, `system_name`, `toignore`, `translation_tool`, `update_server`, `update_server_target`, `update_server_url`, `website`, `params`, `published`, `version`, `hits`, `access`, `ordering`) VALUES -(36, '', '', '', '', '', '', '', '', 1, '', '', '', '', '', 1, '', '', '', '', 1, '', '', '', '', 1, '{}', 3, 1, 3, 3, 'Llewellyn', '', 'default.txt', '', '', 'VDM', '1.1.1', 'Copyright (C) 2015. All Rights Reserved', '2017-09-20 01:21:36', '', 'R2t0OZFJuajxbEbPLRIGfNMERHLfQDPtio/9jDK4O38=', 'dfTqc5TxuEat+/uVZLiFg55VvDo6cUnn2rut7zDZG78=', '', 'Xh8G2eqmI3x7Uv2RhRVkBtCZLrjFdyDK+yWbQhgN0Is=', '', '', '', 1, '', '', 'joomla@vdm.io', '', '', '9TOiHh/ntpStnbBcsXRNafYYnBVmtwRnChvH1AXdjgw=', '', '2dea78a6-e0be-4260-8f7d-b278e0b661a8', 'images/demo300.jpg', '', '', 'https://github.com/Llewellynvdm/Joomla-Hello-World-Component', 'GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html', '»', '2024-09-16 23:04:01', '', 'Hello World', 'HelloWorld', 'JCB', 4, '', '', '', '', '', 'W0NVU1RPTUNPREU9dW5sb2NrVGhlUG93ZXJPZkpvb21sYURldmVsb3BtZW50K0hlbGxvIFdvcmxkXQ==', '', '', '', '', '', 'IyAjIyNDb21wb25lbnRfbmFtZSMjIyAoIyMjVkVSU0lPTiMjIykNCg0KIyMjREVTQ1JJUFRJT04jIyMNCg0KIyBCdWlsZCBEZXRhaWxzDQoNCisgKkNvbXBhbnkqOiBbIyMjQ09NUEFOWU5BTUUjIyNdKCMjI0FVVEhPUldFQlNJVEUjIyMpDQorICpBdXRob3IqOiBbIyMjQVVUSE9SIyMjXShtYWlsdG86IyMjQVVUSE9SRU1BSUwjIyMpDQorICpOYW1lKjogWyMjI0NvbXBvbmVudF9uYW1lIyMjXSgjIyNBVVRIT1JXRUJTSVRFIyMjKQ0KKyAqRmlyc3QgQnVpbGQqOiAjIyNDUkVBVElPTkRBVEUjIyMNCisgKkxhc3QgQnVpbGQqOiAjIyNCVUlMRERBVEUjIyMNCisgKlZlcnNpb24qOiAjIyNWRVJTSU9OIyMjDQorICpDb3B5cmlnaHQqOiAjIyNDT1BZUklHSFQjIyMNCisgKkxpY2Vuc2UqOiAjIyNMSUNFTlNFIyMjDQoNCiMjIEJ1aWxkIFRpbWUNCg0KKiojIyN0b3RhbEhvdXJzIyMjIEhvdXJzKiogb3IgKiojIyN0b3RhbERheXMjIyMgRWlnaHQgSG91ciBEYXlzKiogKGFjdHVhbCB0aW1lIHRoZSBhdXRob3Igc2F2ZWQgLQ0KZHVlIHRvIFtBdXRvbWF0ZWQgQ29tcG9uZW50IEJ1aWxkZXJdKGh0dHBzOi8vd3d3Lmpvb21sYWNvbXBvbmVudGJ1aWxkZXIuY29tKSkNCg0KPiAoaWYgY3JlYXRpbmcgYSBmb2xkZXIgYW5kIGZpbGUgdG9vayAqKjUgc2Vjb25kcyoqIGFuZCB3cml0aW5nIG9uZSBsaW5lIG9mIGNvZGUgdG9vayAqKjEwIHNlY29uZHMqKiwNCj4gbmV2ZXIgbWFraW5nIG9uZSBtaXN0YWtlIG9yIHRha2luZyBhbnkgY29mZmVlIGJyZWFrLikNCg0KKyAqTGluZSBjb3VudCo6ICoqIyMjTElORV9DT1VOVCMjIyoqDQorICpGaWxlIGNvdW50KjogKiojIyNGSUxFX0NPVU5UIyMjKioNCisgKkZvbGRlciBjb3VudCo6ICoqIyMjRk9MREVSX0NPVU5UIyMjKioNCg0KKiojIyNhY3R1YWxIb3Vyc1NwZW50IyMjIEhvdXJzKiogb3IgKiojIyNhY3R1YWxEYXlzU3BlbnQjIyMgRWlnaHQgSG91ciBEYXlzKiogKHRoZSBhY3R1YWwgdGltZSB0aGUgYXV0aG9yIHNwZW50KQ0KDQo+ICh3aXRoIHRoZSBmb2xsb3dpbmcgYnJlYWsgZG93bjoNCj4gKipkZWJ1Z2dpbmcgQCMjI2RlYnVnZ2luZ0hvdXJzIyMjaG91cnMqKiA9IGNvZGluZ3RpbWUgLyA0Ow0KPiAqKnBsYW5uaW5nIEAjIyNwbGFubmluZ0hvdXJzIyMjaG91cnMqKiA9IGNvZGluZ3RpbWUgLyA3Ow0KPiAqKm1hcHBpbmcgQCMjI21hcHBpbmdIb3VycyMjI2hvdXJzKiogPSBjb2Rpbmd0aW1lIC8gMTA7DQo+ICoqb2ZmaWNlIEAjIyNvZmZpY2VIb3VycyMjI2hvdXJzKiogPSBjb2Rpbmd0aW1lIC8gNjspDQoNCioqIyMjYWN0dWFsVG90YWxIb3VycyMjIyBIb3VycyoqIG9yICoqIyMjYWN0dWFsVG90YWxEYXlzIyMjIEVpZ2h0IEhvdXIgRGF5cyoqDQooYSB0b3RhbCBvZiB0aGUgcmVhbGlzdGljIHRpbWUgZnJhbWUgZm9yIHRoaXMgcHJvamVjdCkNCg0KPiAoaWYgY3JlYXRpbmcgYSBmb2xkZXIgYW5kIGZpbGUgdG9vayAqKjUgc2Vjb25kcyoqIGFuZCB3cml0aW5nIG9uZSBsaW5lIG9mIGNvZGUgdG9vayAqKjEwIHNlY29uZHMqKiwNCj4gd2l0aCB0aGUgbm9ybWFsIGV2ZXJ5ZGF5IHJlYWxpdGllcyBhdCB0aGUgb2ZmaWNlLCB0aGF0IGluY2x1ZGVzIHRoZSBjb21wb25lbnQgcGxhbm5pbmcsIG1hcHBpbmcgJiBkZWJ1Z2dpbmcuKQ0KDQpQcm9qZWN0IGR1cmF0aW9uOiAqKiMjI3Byb2plY3RXZWVrVGltZSMjIyB3ZWVrcyoqIG9yICoqIyMjcHJvamVjdE1vbnRoVGltZSMjIyBtb250aHMqKg0KDQo+IFRoaXMgKipjb21wb25lbnQqKiB3YXMgYnVpbGQgd2l0aCBhIEpvb21sYSBbQXV0b21hdGVkIENvbXBvbmVudCBCdWlsZGVyXShodHRwczovL3d3dy5qb29tbGFjb21wb25lbnRidWlsZGVyLmNvbSkuDQo+IERldmVsb3BlZCBieSBbTGxld2VsbHluIHZhbiBkZXIgTWVyd2VdKG1haWx0bzpqb29tbGFAdmRtLmlvKQ0KDQpbQ1VTVE9NQ09ERT1yZWFkTUVjb250cmlidXRvcnNd', 1, '', 'Hello World', '', '', 'Hello World (public)', '.git', '', '', 2, 'https://raw.githubusercontent.com/Llewellynvdm/Joomla-Hello-World-Component/master/helloworld_updateserver.xml', 'https://www.vdm.io', '{\"language_options\":{\"activate\":\"0\",\"use_percentagelanguageadd\":\"1\",\"percentagelanguageadd\":\"50\"},\"joomla_component_headers\":{\"add_admin_component\":\"0\",\"admin_component\":\"\",\"power_admin_component\":[],\"add_site_component\":\"0\",\"site_component\":\"\",\"power_site_component\":[],\"add_admin_helper\":\"1\",\"admin_helper\":\"use Joomla\\\\CMS\\\\Filesystem\\\\File;\\r\\nuse Joomla\\\\CMS\\\\Filesystem\\\\Folder;\",\"power_admin_helper\":[],\"add_site_helper\":\"1\",\"site_helper\":\"use Joomla\\\\CMS\\\\Filesystem\\\\File;\\r\\nuse Joomla\\\\CMS\\\\Filesystem\\\\Folder;\",\"power_site_helper\":[]}}', 1, 30, '', 1, 48); +(36, '', '', '', '', '', '', '', '', 1, '', '', '', '', '', 1, '', '', '', '', 1, '', '', '', '', 1, '{}', 3, 1, 3, 3, 'Llewellyn', '', 'default.txt', '', '', 'VDM', '1.1.1', 'Copyright (C) 2015. All Rights Reserved', '2017-09-20 01:21:36', '', 'R2t0OZFJuajxbEbPLRIGfNMERHLfQDPtio/9jDK4O38=', 'dfTqc5TxuEat+/uVZLiFg55VvDo6cUnn2rut7zDZG78=', '', 'Xh8G2eqmI3x7Uv2RhRVkBtCZLrjFdyDK+yWbQhgN0Is=', '', '', '', 1, '', '', 'joomla@vdm.io', '', '', '9TOiHh/ntpStnbBcsXRNafYYnBVmtwRnChvH1AXdjgw=', '', '2dea78a6-e0be-4260-8f7d-b278e0b661a8', 'images/demo300.jpg', '', '', 'https://github.com/Llewellynvdm/Joomla-Hello-World-Component', 'GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html', '»', '2024-09-16 23:04:01', '', 'Hello World', 'HelloWorld', 'JCB', 4, '', '', '', '', '', 'W0NVU1RPTUNPREU9dW5sb2NrVGhlUG93ZXJPZkpvb21sYURldmVsb3BtZW50K0hlbGxvIFdvcmxkXQ==', '', '', '', '', '', 'IyAjIyNDb21wb25lbnRfbmFtZSMjIyAoIyMjVkVSU0lPTiMjIykNCg0KIyMjREVTQ1JJUFRJT04jIyMNCg0KIyBCdWlsZCBEZXRhaWxzDQoNCisgKkNvbXBhbnkqOiBbIyMjQ09NUEFOWU5BTUUjIyNdKCMjI0FVVEhPUldFQlNJVEUjIyMpDQorICpBdXRob3IqOiBbIyMjQVVUSE9SIyMjXShtYWlsdG86IyMjQVVUSE9SRU1BSUwjIyMpDQorICpOYW1lKjogWyMjI0NvbXBvbmVudF9uYW1lIyMjXSgjIyNBVVRIT1JXRUJTSVRFIyMjKQ0KKyAqRmlyc3QgQnVpbGQqOiAjIyNDUkVBVElPTkRBVEUjIyMNCisgKkxhc3QgQnVpbGQqOiAjIyNCVUlMRERBVEUjIyMNCisgKlZlcnNpb24qOiAjIyNWRVJTSU9OIyMjDQorICpDb3B5cmlnaHQqOiAjIyNDT1BZUklHSFQjIyMNCisgKkxpY2Vuc2UqOiAjIyNMSUNFTlNFIyMjDQoNCiMjIEJ1aWxkIFRpbWUNCg0KKiojIyN0b3RhbEhvdXJzIyMjIEhvdXJzKiogb3IgKiojIyN0b3RhbERheXMjIyMgRWlnaHQgSG91ciBEYXlzKiogKGFjdHVhbCB0aW1lIHRoZSBhdXRob3Igc2F2ZWQgLQ0KZHVlIHRvIFtBdXRvbWF0ZWQgQ29tcG9uZW50IEJ1aWxkZXJdKGh0dHBzOi8vd3d3Lmpvb21sYWNvbXBvbmVudGJ1aWxkZXIuY29tKSkNCg0KPiAoaWYgY3JlYXRpbmcgYSBmb2xkZXIgYW5kIGZpbGUgdG9vayAqKjUgc2Vjb25kcyoqIGFuZCB3cml0aW5nIG9uZSBsaW5lIG9mIGNvZGUgdG9vayAqKjEwIHNlY29uZHMqKiwNCj4gbmV2ZXIgbWFraW5nIG9uZSBtaXN0YWtlIG9yIHRha2luZyBhbnkgY29mZmVlIGJyZWFrLikNCg0KKyAqTGluZSBjb3VudCo6ICoqIyMjTElORV9DT1VOVCMjIyoqDQorICpGaWxlIGNvdW50KjogKiojIyNGSUxFX0NPVU5UIyMjKioNCisgKkZvbGRlciBjb3VudCo6ICoqIyMjRk9MREVSX0NPVU5UIyMjKioNCg0KKiojIyNhY3R1YWxIb3Vyc1NwZW50IyMjIEhvdXJzKiogb3IgKiojIyNhY3R1YWxEYXlzU3BlbnQjIyMgRWlnaHQgSG91ciBEYXlzKiogKHRoZSBhY3R1YWwgdGltZSB0aGUgYXV0aG9yIHNwZW50KQ0KDQo+ICh3aXRoIHRoZSBmb2xsb3dpbmcgYnJlYWsgZG93bjoNCj4gKipkZWJ1Z2dpbmcgQCMjI2RlYnVnZ2luZ0hvdXJzIyMjaG91cnMqKiA9IGNvZGluZ3RpbWUgLyA0Ow0KPiAqKnBsYW5uaW5nIEAjIyNwbGFubmluZ0hvdXJzIyMjaG91cnMqKiA9IGNvZGluZ3RpbWUgLyA3Ow0KPiAqKm1hcHBpbmcgQCMjI21hcHBpbmdIb3VycyMjI2hvdXJzKiogPSBjb2Rpbmd0aW1lIC8gMTA7DQo+ICoqb2ZmaWNlIEAjIyNvZmZpY2VIb3VycyMjI2hvdXJzKiogPSBjb2Rpbmd0aW1lIC8gNjspDQoNCioqIyMjYWN0dWFsVG90YWxIb3VycyMjIyBIb3VycyoqIG9yICoqIyMjYWN0dWFsVG90YWxEYXlzIyMjIEVpZ2h0IEhvdXIgRGF5cyoqDQooYSB0b3RhbCBvZiB0aGUgcmVhbGlzdGljIHRpbWUgZnJhbWUgZm9yIHRoaXMgcHJvamVjdCkNCg0KPiAoaWYgY3JlYXRpbmcgYSBmb2xkZXIgYW5kIGZpbGUgdG9vayAqKjUgc2Vjb25kcyoqIGFuZCB3cml0aW5nIG9uZSBsaW5lIG9mIGNvZGUgdG9vayAqKjEwIHNlY29uZHMqKiwNCj4gd2l0aCB0aGUgbm9ybWFsIGV2ZXJ5ZGF5IHJlYWxpdGllcyBhdCB0aGUgb2ZmaWNlLCB0aGF0IGluY2x1ZGVzIHRoZSBjb21wb25lbnQgcGxhbm5pbmcsIG1hcHBpbmcgJiBkZWJ1Z2dpbmcuKQ0KDQpQcm9qZWN0IGR1cmF0aW9uOiAqKiMjI3Byb2plY3RXZWVrVGltZSMjIyB3ZWVrcyoqIG9yICoqIyMjcHJvamVjdE1vbnRoVGltZSMjIyBtb250aHMqKg0KDQo+IFRoaXMgKipjb21wb25lbnQqKiB3YXMgYnVpbGQgd2l0aCBhIEpvb21sYSBbQXV0b21hdGVkIENvbXBvbmVudCBCdWlsZGVyXShodHRwczovL3d3dy5qb29tbGFjb21wb25lbnRidWlsZGVyLmNvbSkuDQo+IERldmVsb3BlZCBieSBbTGxld2VsbHluIHZhbiBkZXIgTWVyd2VdKG1haWx0bzpqb29tbGFAdmRtLmlvKQ0KDQpbQ1VTVE9NQ09ERT1yZWFkTUVjb250cmlidXRvcnNd', 1, '', 'Hello World', '', '', 'Hello World (public)', '.git', '', '', 2, 'https://raw.githubusercontent.com/Llewellynvdm/Joomla-Hello-World-Component/master/helloworld_updateserver.xml', 'https://www.vdm.io', '{\"language_options\":{\"activate\":\"0\",\"use_percentagelanguageadd\":\"1\",\"percentagelanguageadd\":\"50\"},\"joomla_component_headers\":{\"add_admin_component\":\"0\",\"admin_component\":\"\",\"power_admin_component\":[],\"add_site_component\":\"0\",\"site_component\":\"\",\"power_site_component\":[],\"add_admin_helper\":\"1\",\"admin_helper\":\"use Joomla\\\\CMS\\\\Filesystem\\\\File;\\r\\nuse Joomla\\\\CMS\\\\Filesystem\\\\Folder;\",\"power_admin_helper\":[],\"add_site_helper\":\"1\",\"site_helper\":\"use Joomla\\\\CMS\\\\Filesystem\\\\File;\\r\\nuse Joomla\\\\CMS\\\\Filesystem\\\\Folder;\",\"power_site_helper\":[]}}', 2, 30, '', 1, 48); -- -- Dumping data for table `#__componentbuilder_joomla_plugin` @@ -2961,188 +2961,188 @@ INSERT INTO `#__componentbuilder_admin_fields_conditions` (`id`, `addconditions` -- INSERT INTO `#__componentbuilder_component_admin_views` (`id`, `addadmin_views`, `joomla_component`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `params`) VALUES -(35, '{\"addadmin_views0\":{\"adminview\":\"170\",\"icomoon\":\"joomla\",\"mainmenu\":\"1\",\"dashboard_add\":\"1\",\"dashboard_list\":\"1\",\"submenu\":\"1\",\"checkin\":\"1\",\"history\":\"1\",\"joomla_fields\":\"1\",\"metadata\":\"1\",\"access\":\"1\",\"port\":\"1\",\"filter\":\"2\",\"edit_create_site_view\":\"1\",\"order\":\"1\"}}', 36, 1, '0000-00-00 00:00:00', '2021-02-08 10:13:57', 7, '', '', ''); +(35, '{\"addadmin_views0\":{\"adminview\":\"170\",\"icomoon\":\"joomla\",\"mainmenu\":\"1\",\"dashboard_add\":\"1\",\"dashboard_list\":\"1\",\"submenu\":\"1\",\"checkin\":\"1\",\"history\":\"1\",\"joomla_fields\":\"1\",\"metadata\":\"1\",\"access\":\"1\",\"port\":\"1\",\"filter\":\"2\",\"edit_create_site_view\":\"1\",\"order\":\"1\"}}', 36, 2, '0000-00-00 00:00:00', '2021-02-08 10:13:57', 7, '', '', ''); -- -- Dumping data for table `#__componentbuilder_component_site_views` -- INSERT INTO `#__componentbuilder_component_site_views` (`id`, `addsite_views`, `joomla_component`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `params`) VALUES -(35, '{\"addsite_views0\":{\"siteview\":\"51\",\"metadata\":\"1\",\"access\":\"1\",\"public_access\":\"1\"},\"addsite_views1\":{\"siteview\":\"50\",\"menu\":\"1\",\"metadata\":\"1\",\"default_view\":\"1\",\"access\":\"1\",\"public_access\":\"1\"}}', 36, 1, '0000-00-00 00:00:00', '2020-05-25 09:42:01', 6, '', '', ''); +(35, '{\"addsite_views0\":{\"siteview\":\"51\",\"metadata\":\"1\",\"access\":\"1\",\"public_access\":\"1\"},\"addsite_views1\":{\"siteview\":\"50\",\"menu\":\"1\",\"metadata\":\"1\",\"default_view\":\"1\",\"access\":\"1\",\"public_access\":\"1\"}}', 36, 2, '0000-00-00 00:00:00', '2020-05-25 09:42:01', 6, '', '', ''); -- -- Dumping data for table `#__componentbuilder_component_updates` -- INSERT INTO `#__componentbuilder_component_updates` (`id`, `joomla_component`, `version_update`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `params`) VALUES -(68, 36, '{\"version_update0\":{\"version\":\"1.0.1\",\"mysql\":\"\",\"url\":\"https:\\/\\/git.vdm.dev\\/joomla\\/Hello-World-Component\\/archive\\/v1.0.1.zip\",\"update_server_adv\":\"0\",\"update_server_type\":\"component\",\"update_element\":\"\",\"update_state\":\"stable\",\"update_target_version\":\"3.*\",\"change_log\":\"\",\"update_client\":\"site\"},\"version_update1\":{\"version\":\"1.1.0\",\"mysql\":\"ALTER TABLE `#__helloworld_greeting` ADD `alias` CHAR(64) NOT NULL DEFAULT \'\' AFTER `asset_id`;\",\"url\":\"https:\\/\\/git.vdm.dev\\/joomla\\/Hello-World-Component\\/archive\\/v1.1.0.zip\",\"update_server_adv\":\"0\",\"update_server_type\":\"component\",\"update_element\":\"\",\"update_state\":\"stable\",\"update_target_version\":\"3.*\",\"change_log\":\"\",\"update_client\":\"site\"},\"version_update2\":{\"version\":\"1.1.1\",\"mysql\":\"\",\"url\":\"http:\\/\\/domain.com\\/demo.zip\"}}', 1, '2020-05-30 23:52:35', '2024-02-02 10:13:23', 4, '', 7, ''); +(68, 36, '{\"version_update0\":{\"version\":\"1.0.1\",\"mysql\":\"\",\"url\":\"https:\\/\\/git.vdm.dev\\/joomla\\/Hello-World-Component\\/archive\\/v1.0.1.zip\",\"update_server_adv\":\"0\",\"update_server_type\":\"component\",\"update_element\":\"\",\"update_state\":\"stable\",\"update_target_version\":\"3.*\",\"change_log\":\"\",\"update_client\":\"site\"},\"version_update1\":{\"version\":\"1.1.0\",\"mysql\":\"ALTER TABLE `#__helloworld_greeting` ADD `alias` CHAR(64) NOT NULL DEFAULT \'\' AFTER `asset_id`;\",\"url\":\"https:\\/\\/git.vdm.dev\\/joomla\\/Hello-World-Component\\/archive\\/v1.1.0.zip\",\"update_server_adv\":\"0\",\"update_server_type\":\"component\",\"update_element\":\"\",\"update_state\":\"stable\",\"update_target_version\":\"3.*\",\"change_log\":\"\",\"update_client\":\"site\"},\"version_update2\":{\"version\":\"1.1.1\",\"mysql\":\"\",\"url\":\"http:\\/\\/domain.com\\/demo.zip\"}}', 2, '2020-05-30 23:52:35', '2024-02-02 10:13:23', 4, '', 7, ''); -- -- Dumping data for table `#__componentbuilder_component_mysql_tweaks` -- INSERT INTO `#__componentbuilder_component_mysql_tweaks` (`id`, `joomla_component`, `sql_tweak`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `params`) VALUES -(1, 1, '{\"sql_tweak0\":{\"adminview\":\"46\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak1\":{\"adminview\":\"8\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak2\":{\"adminview\":\"15\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak3\":{\"adminview\":\"49\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak4\":{\"adminview\":\"7\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak5\":{\"adminview\":\"52\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak6\":{\"adminview\":\"51\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak7\":{\"adminview\":\"48\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak8\":{\"adminview\":\"47\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak9\":{\"adminview\":\"17\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak10\":{\"adminview\":\"9\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak11\":{\"adminview\":\"2\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak12\":{\"adminview\":\"58\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak13\":{\"adminview\":\"45\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak14\":{\"adminview\":\"6\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak15\":{\"adminview\":\"1\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak16\":{\"adminview\":\"5\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak17\":{\"adminview\":\"50\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak18\":{\"adminview\":\"11\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak19\":{\"adminview\":\"4\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"}}', 1, '2017-10-28 03:56:26', '2018-12-17 19:52:24', 4, '', '', ''), +(1, 1, '{\"sql_tweak0\":{\"adminview\":\"46\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak1\":{\"adminview\":\"8\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak2\":{\"adminview\":\"15\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak3\":{\"adminview\":\"49\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak4\":{\"adminview\":\"7\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak5\":{\"adminview\":\"52\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak6\":{\"adminview\":\"51\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak7\":{\"adminview\":\"48\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak8\":{\"adminview\":\"47\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak9\":{\"adminview\":\"17\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak10\":{\"adminview\":\"9\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak11\":{\"adminview\":\"2\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak12\":{\"adminview\":\"58\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak13\":{\"adminview\":\"45\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak14\":{\"adminview\":\"6\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak15\":{\"adminview\":\"1\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak16\":{\"adminview\":\"5\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak17\":{\"adminview\":\"50\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak18\":{\"adminview\":\"11\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak19\":{\"adminview\":\"4\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"}}', 2, '2017-10-28 03:56:26', '2018-12-17 19:52:24', 4, '', '', ''), (2, 2, '{\"sql_tweak0\":{\"adminview\":\"18\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"36\"},\"sql_tweak1\":{\"adminview\":\"236\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak2\":{\"adminview\":\"106\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1,21,24,28\"},\"sql_tweak3\":{\"adminview\":\"221\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak4\":{\"adminview\":\"279\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak5\":{\"adminview\":\"220\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak6\":{\"adminview\":\"222\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak7\":{\"adminview\":\"219\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak8\":{\"adminview\":\"147\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"35\"},\"sql_tweak9\":{\"adminview\":\"151\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak10\":{\"adminview\":\"148\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak11\":{\"adminview\":\"152\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak12\":{\"adminview\":\"153\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"35\"},\"sql_tweak13\":{\"adminview\":\"154\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"\"},\"sql_tweak14\":{\"adminview\":\"150\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"\"},\"sql_tweak15\":{\"adminview\":\"149\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"35\"},\"sql_tweak16\":{\"adminview\":\"146\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"68\"},\"sql_tweak17\":{\"adminview\":\"275\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak18\":{\"adminview\":\"223\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak19\":{\"adminview\":\"237\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak20\":{\"adminview\":\"212\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak21\":{\"adminview\":\"14\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"170\"},\"sql_tweak22\":{\"adminview\":\"144\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"169\"},\"sql_tweak23\":{\"adminview\":\"145\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"\"},\"sql_tweak24\":{\"adminview\":\"43\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak25\":{\"adminview\":\"25\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"51,50\"},\"sql_tweak26\":{\"adminview\":\"156\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1 => 6\"},\"sql_tweak27\":{\"adminview\":\"157\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak28\":{\"adminview\":\"158\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"2,3\"},\"sql_tweak29\":{\"adminview\":\"21\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1 => 144\"},\"sql_tweak30\":{\"adminview\":\"13\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"23,1989\"},\"sql_tweak31\":{\"adminview\":\"12\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1 => 39,40,43,44\"},\"sql_tweak32\":{\"adminview\":\"24\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak33\":{\"adminview\":\"20\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"97,101=>109\"},\"sql_tweak34\":{\"adminview\":\"22\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"87,86\"},\"sql_tweak35\":{\"adminview\":\"107\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"5,338,400\"},\"sql_tweak36\":{\"adminview\":\"172\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"9 => 11,19 => 22,25 => 31\"},\"sql_tweak37\":{\"adminview\":\"129\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak38\":{\"adminview\":\"176\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak39\":{\"adminview\":\"171\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1 => 6,8 => 11\"},\"sql_tweak40\":{\"adminview\":\"258\",\"add_sql\":0,\"add_sql_options\":2,\"ids\":\"\"},\"sql_tweak41\":{\"adminview\":\"280\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"14=>19\"}}', 1, '2017-10-28 03:56:26', '2024-09-16 17:27:53', 38, '', '', ''), -(3, 34, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), -(4, 3, '{\"sql_tweak0\":{\"adminview\":\"34\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak1\":{\"adminview\":\"40\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak2\":{\"adminview\":\"30\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak3\":{\"adminview\":\"29\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"}}', 1, '2017-10-28 03:56:26', '2018-05-05 13:09:35', 3, '', '', ''), -(5, 4, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), -(6, 5, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), -(7, 7, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), -(8, 8, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), -(9, 9, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), -(10, 10, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), -(11, 11, '', 1, '2017-10-28 03:56:26', '2019-06-19 14:59:32', 3, '', '', ''), +(3, 34, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), +(4, 3, '{\"sql_tweak0\":{\"adminview\":\"34\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak1\":{\"adminview\":\"40\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak2\":{\"adminview\":\"30\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak3\":{\"adminview\":\"29\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"}}', 2, '2017-10-28 03:56:26', '2018-05-05 13:09:35', 3, '', '', ''), +(5, 4, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), +(6, 5, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), +(7, 7, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), +(8, 8, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), +(9, 9, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), +(10, 10, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), +(11, 11, '', 2, '2017-10-28 03:56:26', '2019-06-19 14:59:32', 3, '', '', ''), (12, 14, '{\"sql_tweak0\":{\"adminview\":\"18\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"25\"},\"sql_tweak1\":{\"adminview\":\"147\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak2\":{\"adminview\":\"151\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak3\":{\"adminview\":\"148\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak4\":{\"adminview\":\"152\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak5\":{\"adminview\":\"153\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak6\":{\"adminview\":\"154\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak7\":{\"adminview\":\"150\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak8\":{\"adminview\":\"149\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak9\":{\"adminview\":\"146\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak10\":{\"adminview\":\"14\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"109\"},\"sql_tweak11\":{\"adminview\":\"144\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"111\"},\"sql_tweak12\":{\"adminview\":\"145\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"111\"},\"sql_tweak13\":{\"adminview\":\"43\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak14\":{\"adminview\":\"25\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"23,25\"},\"sql_tweak15\":{\"adminview\":\"156\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1 => 6\"},\"sql_tweak16\":{\"adminview\":\"157\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1 => 5\"},\"sql_tweak17\":{\"adminview\":\"158\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"1 => 2\"},\"sql_tweak18\":{\"adminview\":\"21\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1 => 144\"},\"sql_tweak19\":{\"adminview\":\"13\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"23,84,100,158,196,199,203,280,682,1011\"},\"sql_tweak20\":{\"adminview\":\"12\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak21\":{\"adminview\":\"24\",\"add_sql\":0,\"add_sql_options\":2,\"ids\":\"\"},\"sql_tweak22\":{\"adminview\":\"20\",\"add_sql\":0,\"add_sql_options\":2,\"ids\":\"\"},\"sql_tweak23\":{\"adminview\":\"22\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"36,39\"},\"sql_tweak24\":{\"adminview\":\"107\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak25\":{\"adminview\":\"129\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak26\":{\"adminview\":\"176\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak27\":{\"adminview\":\"171\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1 => 6\"},\"sql_tweak28\":{\"adminview\":\"258\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1, 5 => 29\"}}', 2, '2017-10-28 03:56:26', '2022-08-20 16:53:16', 7, '', '', ''), -(13, 12, '{\"sql_tweak0\":{\"adminview\":\"18\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"5,8,14\"},\"sql_tweak1\":{\"adminview\":\"14\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"12=>14,18,20=>22,24,25,33,42,43,53,56,54,55\"},\"sql_tweak2\":{\"adminview\":\"43\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak3\":{\"adminview\":\"25\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"11,12,13,14,15,16,17\"},\"sql_tweak4\":{\"adminview\":\"13\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"1,4=>20,23,34=>36,43,46=>48,53,65,66,69=>71,84,85,147=>149,157,160,167,168,172,198=>203,206,210=>216,218,219,225,224,230=>234,238,255,257,258,273,279,280,284,288=>294,297,298,300=>303,307,309,311,312,314,318=>327,330=>333,338,340,342,343,351,376,380,492,530=>532,538=>540,542=>544,546,551=>556,558=>563,565=>569,573=>579,597=>604,662=>665,676,682=>684,691=>694,696,699,701=>705,720=>724,755,756,757,787,789,794,795,799,802,803,804,807=>827,829,830=>835,836,837,838,839,841,845,840,842=>867,869=>897,884,887=>895,899,900=>922,926,931,936,939,940,941,942,943,944,945,946,948,949,953=>961,970,972=>974,1017=>1020,1023,1027,1032,1033,1036,1038=>1041\"},\"sql_tweak5\":{\"adminview\":\"24\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"19 => 48\"},\"sql_tweak6\":{\"adminview\":\"20\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"20 => 46\"},\"sql_tweak7\":{\"adminview\":\"22\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"19 => 35\"}}', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), -(14, 13, '{\"sql_tweak0\":{\"adminview\":\"18\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak1\":{\"adminview\":\"14\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak2\":{\"adminview\":\"43\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak3\":{\"adminview\":\"25\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak4\":{\"adminview\":\"12\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"8,11,17,24,25\"},\"sql_tweak5\":{\"adminview\":\"13\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak6\":{\"adminview\":\"21\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak7\":{\"adminview\":\"24\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak8\":{\"adminview\":\"20\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak9\":{\"adminview\":\"22\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"}}', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), +(13, 12, '{\"sql_tweak0\":{\"adminview\":\"18\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"5,8,14\"},\"sql_tweak1\":{\"adminview\":\"14\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"12=>14,18,20=>22,24,25,33,42,43,53,56,54,55\"},\"sql_tweak2\":{\"adminview\":\"43\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak3\":{\"adminview\":\"25\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"11,12,13,14,15,16,17\"},\"sql_tweak4\":{\"adminview\":\"13\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"1,4=>20,23,34=>36,43,46=>48,53,65,66,69=>71,84,85,147=>149,157,160,167,168,172,198=>203,206,210=>216,218,219,225,224,230=>234,238,255,257,258,273,279,280,284,288=>294,297,298,300=>303,307,309,311,312,314,318=>327,330=>333,338,340,342,343,351,376,380,492,530=>532,538=>540,542=>544,546,551=>556,558=>563,565=>569,573=>579,597=>604,662=>665,676,682=>684,691=>694,696,699,701=>705,720=>724,755,756,757,787,789,794,795,799,802,803,804,807=>827,829,830=>835,836,837,838,839,841,845,840,842=>867,869=>897,884,887=>895,899,900=>922,926,931,936,939,940,941,942,943,944,945,946,948,949,953=>961,970,972=>974,1017=>1020,1023,1027,1032,1033,1036,1038=>1041\"},\"sql_tweak5\":{\"adminview\":\"24\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"19 => 48\"},\"sql_tweak6\":{\"adminview\":\"20\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"20 => 46\"},\"sql_tweak7\":{\"adminview\":\"22\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"19 => 35\"}}', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), +(14, 13, '{\"sql_tweak0\":{\"adminview\":\"18\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak1\":{\"adminview\":\"14\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak2\":{\"adminview\":\"43\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak3\":{\"adminview\":\"25\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak4\":{\"adminview\":\"12\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"8,11,17,24,25\"},\"sql_tweak5\":{\"adminview\":\"13\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak6\":{\"adminview\":\"21\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak7\":{\"adminview\":\"24\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak8\":{\"adminview\":\"20\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak9\":{\"adminview\":\"22\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"}}', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), (15, 15, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), (16, 16, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), -(17, 18, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), +(17, 18, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), (18, 17, '{\"sql_tweak0\":{\"adminview\":\"18\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"25\"},\"sql_tweak1\":{\"adminview\":\"147\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak2\":{\"adminview\":\"151\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak3\":{\"adminview\":\"148\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak4\":{\"adminview\":\"152\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak5\":{\"adminview\":\"153\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak6\":{\"adminview\":\"154\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak7\":{\"adminview\":\"150\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak8\":{\"adminview\":\"149\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak9\":{\"adminview\":\"146\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak10\":{\"adminview\":\"14\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"109\"},\"sql_tweak11\":{\"adminview\":\"144\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"111\"},\"sql_tweak12\":{\"adminview\":\"145\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"111\"},\"sql_tweak13\":{\"adminview\":\"43\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak14\":{\"adminview\":\"25\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"23,25\"},\"sql_tweak15\":{\"adminview\":\"156\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1 => 6\"},\"sql_tweak16\":{\"adminview\":\"157\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1 => 5\"},\"sql_tweak17\":{\"adminview\":\"158\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"1 => 2\"},\"sql_tweak18\":{\"adminview\":\"21\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1 => 144\"},\"sql_tweak19\":{\"adminview\":\"13\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"23,84,100,158,196,199,203,280,682,1011\"},\"sql_tweak20\":{\"adminview\":\"12\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1 => 39,40,43\"},\"sql_tweak21\":{\"adminview\":\"24\",\"add_sql\":0,\"add_sql_options\":2,\"ids\":\"\"},\"sql_tweak22\":{\"adminview\":\"20\",\"add_sql\":0,\"add_sql_options\":2,\"ids\":\"\"},\"sql_tweak23\":{\"adminview\":\"22\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"36,39\"},\"sql_tweak24\":{\"adminview\":\"107\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak25\":{\"adminview\":\"129\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak26\":{\"adminview\":\"176\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak27\":{\"adminview\":\"171\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1 => 6\"}}', 2, '2017-10-28 03:56:26', '2021-12-21 10:00:02', 3, '', '', ''), -(19, 33, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), -(20, 19, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), -(21, 20, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), +(19, 33, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), +(20, 19, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), +(21, 20, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), (22, 21, '{\"sql_tweak0\":{\"adminview\":\"81\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"}}', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), (23, 22, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), -(24, 23, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), -(25, 28, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), -(26, 24, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), -(27, 25, '{}', 1, '2017-10-28 03:56:26', '2024-09-07 03:00:20', 3, '', '', ''), -(28, 26, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), +(24, 23, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), +(25, 28, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), +(26, 24, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), +(27, 25, '{}', 2, '2017-10-28 03:56:26', '2024-09-07 03:00:20', 3, '', '', ''), +(28, 26, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), (29, 27, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), -(30, 29, '{\"sql_tweak0\":{\"adminview\":\"76\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak1\":{\"adminview\":\"77\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak2\":{\"adminview\":\"79\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak3\":{\"adminview\":\"85\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak4\":{\"adminview\":\"82\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak5\":{\"adminview\":\"87\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak6\":{\"adminview\":\"78\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak7\":{\"adminview\":\"81\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak8\":{\"adminview\":\"80\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak9\":{\"adminview\":\"90\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak10\":{\"adminview\":\"91\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak11\":{\"adminview\":\"86\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"}}', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), -(31, 30, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), +(30, 29, '{\"sql_tweak0\":{\"adminview\":\"76\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak1\":{\"adminview\":\"77\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak2\":{\"adminview\":\"79\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak3\":{\"adminview\":\"85\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak4\":{\"adminview\":\"82\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak5\":{\"adminview\":\"87\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak6\":{\"adminview\":\"78\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak7\":{\"adminview\":\"81\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak8\":{\"adminview\":\"80\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak9\":{\"adminview\":\"90\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak10\":{\"adminview\":\"91\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak11\":{\"adminview\":\"86\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"}}', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), +(31, 30, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), (32, 31, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), -(33, 32, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), -(34, 35, '{\"sql_tweak0\":{\"adminview\":\"18\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"25\"},\"sql_tweak1\":{\"adminview\":\"147\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"27\"},\"sql_tweak2\":{\"adminview\":\"151\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"27\"},\"sql_tweak3\":{\"adminview\":\"148\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"27\"},\"sql_tweak4\":{\"adminview\":\"152\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"27\"},\"sql_tweak5\":{\"adminview\":\"153\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"27\"},\"sql_tweak6\":{\"adminview\":\"154\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"27\"},\"sql_tweak7\":{\"adminview\":\"150\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"27\"},\"sql_tweak8\":{\"adminview\":\"149\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"27\"},\"sql_tweak9\":{\"adminview\":\"146\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"27\"},\"sql_tweak10\":{\"adminview\":\"14\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"109\"},\"sql_tweak11\":{\"adminview\":\"144\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"111\"},\"sql_tweak12\":{\"adminview\":\"145\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"111\"},\"sql_tweak13\":{\"adminview\":\"43\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak14\":{\"adminview\":\"25\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"23,25\"},\"sql_tweak15\":{\"adminview\":\"156\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"1 => 6\"},\"sql_tweak16\":{\"adminview\":\"157\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"1 => 5\"},\"sql_tweak17\":{\"adminview\":\"158\",\"add_sql\":\"1\",\"add_sql_options\":\"1\",\"ids\":\"1 => 2\"},\"sql_tweak25\":{\"adminview\":\"21\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"1 => 144\"},\"sql_tweak18\":{\"adminview\":\"13\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"23,84,100,158,196,199,203,280,682,1011\"},\"sql_tweak19\":{\"adminview\":\"12\",\"add_sql\":\"1\",\"add_sql_options\":\"1\",\"ids\":\"\"},\"sql_tweak20\":{\"adminview\":\"24\",\"add_sql\":\"0\",\"add_sql_options\":\"2\",\"ids\":\"\"},\"sql_tweak21\":{\"adminview\":\"20\",\"add_sql\":\"0\",\"add_sql_options\":\"2\",\"ids\":\"\"},\"sql_tweak22\":{\"adminview\":\"22\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"36,39\"},\"sql_tweak23\":{\"adminview\":\"107\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"}}', 1, '2018-02-26 15:27:39', '2017-12-25 12:44:20', 1, '', 1, ''), -(36, 38, '', 1, '2018-08-06 14:56:04', '0000-00-00 00:00:00', 1, '', 2, ''), -(37, 39, '', 1, '2018-08-10 13:06:34', '0000-00-00 00:00:00', 1, '', 2, ''), -(38, 40, '', 1, '2018-08-21 13:15:04', '0000-00-00 00:00:00', 1, '', 2, ''), -(39, 41, '', 1, '2018-08-21 19:33:15', '0000-00-00 00:00:00', 1, '', 2, ''), -(40, 42, '', 1, '2018-09-12 00:41:47', '0000-00-00 00:00:00', 1, '', 2, ''), -(41, 43, '', 1, '2018-09-12 19:55:57', '0000-00-00 00:00:00', 1, '', 2, ''), -(42, 44, '', 1, '2018-10-09 16:09:37', '0000-00-00 00:00:00', 1, '', 2, ''), -(43, 45, '', 1, '2018-10-15 14:33:08', '0000-00-00 00:00:00', 1, '', 2, ''), -(44, 46, '', 1, '2018-11-24 01:54:02', '0000-00-00 00:00:00', 1, '', 2, ''), -(45, 47, '', 1, '2018-12-17 13:44:13', '0000-00-00 00:00:00', 1, '', 2, ''), -(46, 48, '', 1, '2019-02-04 21:30:52', '0000-00-00 00:00:00', 1, '', 3, ''), -(47, 49, '', 1, '2019-02-06 20:27:41', '0000-00-00 00:00:00', 1, '', 2, ''), -(48, 50, '', 1, '2019-02-12 20:06:53', '0000-00-00 00:00:00', 1, '', 2, ''), -(49, 51, '', 1, '2019-02-12 21:03:52', '0000-00-00 00:00:00', 1, '', 2, ''), -(50, 52, '', 1, '2019-02-12 21:05:31', '0000-00-00 00:00:00', 1, '', 2, ''), -(51, 53, '', 1, '2019-02-12 21:07:27', '0000-00-00 00:00:00', 1, '', 2, ''), -(52, 54, '', 1, '2019-02-12 21:08:53', '0000-00-00 00:00:00', 1, '', 2, ''), -(53, 55, '', 1, '2019-02-12 21:09:55', '0000-00-00 00:00:00', 1, '', 2, ''), -(54, 56, '', 1, '2019-02-12 21:10:55', '0000-00-00 00:00:00', 1, '', 2, ''), -(55, 57, '', 1, '2019-02-12 21:12:05', '0000-00-00 00:00:00', 1, '', 2, ''), -(56, 58, '', 1, '2019-02-12 21:13:15', '0000-00-00 00:00:00', 1, '', 2, ''), -(57, 59, '', 1, '2019-02-12 21:14:30', '0000-00-00 00:00:00', 1, '', 2, ''), -(58, 60, '', 1, '2019-05-07 20:25:06', '0000-00-00 00:00:00', 1, '', 2, ''), -(59, 62, '', 1, '2019-09-25 12:57:04', '0000-00-00 00:00:00', 1, '', 4, ''), -(60, 64, '', 1, '2020-02-22 10:08:00', '0000-00-00 00:00:00', 1, '', 3, ''), -(61, 65, '', 1, '2020-02-22 16:56:44', '0000-00-00 00:00:00', 1, '', 2, ''), -(62, 66, '', 1, '2017-10-28 03:56:26', '2020-02-23 15:54:28', 2, '', '', ''), -(63, 67, '', 1, '2020-03-15 15:10:46', '0000-00-00 00:00:00', 1, '', 2, ''), -(64, 68, '', 1, '2020-05-22 10:28:48', '0000-00-00 00:00:00', 1, '', 3, ''), -(65, 69, '', 1, '2020-05-22 10:40:28', '0000-00-00 00:00:00', 1, '', 2, ''), -(66, 70, '', 1, '2020-06-27 20:06:25', '0000-00-00 00:00:00', 1, '', 2, ''), -(67, 71, '', 1, '2020-07-03 13:47:05', '0000-00-00 00:00:00', 1, '', 3, ''), -(68, 72, '', 1, '2020-07-03 15:40:40', '0000-00-00 00:00:00', 1, '', 2, ''), -(69, 73, '', 1, '2020-07-05 02:26:09', '0000-00-00 00:00:00', 1, '', 2, ''), -(72, 83, '', 1, '2024-01-16 07:58:01', '0000-00-00 00:00:00', 1, '', 5, ''), -(73, 84, '', 1, '2024-01-21 09:56:47', '0000-00-00 00:00:00', 1, '', 6, ''), -(74, 85, '{\"sql_tweak0\":{\"adminview\":\"276\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"25\"},\"sql_tweak1\":{\"adminview\":\"292\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"8 => 10\"},\"sql_tweak2\":{\"adminview\":\"291\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"21,24,28,46,66\"},\"sql_tweak3\":{\"adminview\":\"221\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak4\":{\"adminview\":\"220\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak5\":{\"adminview\":\"219\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak6\":{\"adminview\":\"222\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak7\":{\"adminview\":\"279\",\"add_sql\":0,\"add_sql_options\":2,\"ids\":\"\"},\"sql_tweak8\":{\"adminview\":\"147\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak9\":{\"adminview\":\"151\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak10\":{\"adminview\":\"148\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak11\":{\"adminview\":\"152\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak12\":{\"adminview\":\"153\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak13\":{\"adminview\":\"154\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak14\":{\"adminview\":\"150\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak15\":{\"adminview\":\"149\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak16\":{\"adminview\":\"146\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak17\":{\"adminview\":\"275\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak18\":{\"adminview\":\"223\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"13\"},\"sql_tweak19\":{\"adminview\":\"237\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"15\"},\"sql_tweak20\":{\"adminview\":\"212\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"43\"},\"sql_tweak21\":{\"adminview\":\"14\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"109,283=>286\"},\"sql_tweak22\":{\"adminview\":\"144\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"111,282=>285\"},\"sql_tweak23\":{\"adminview\":\"145\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak24\":{\"adminview\":\"43\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak25\":{\"adminview\":\"25\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"23,25\"},\"sql_tweak26\":{\"adminview\":\"156\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1=>6,11=>15\"},\"sql_tweak27\":{\"adminview\":\"157\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak28\":{\"adminview\":\"158\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"2,3\"},\"sql_tweak29\":{\"adminview\":\"21\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1=>144\"},\"sql_tweak30\":{\"adminview\":\"277\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"23,84,100,158,196,199,203,280,324,599,682,691,1011,1160,2395,2396,2657,2678,2941,3044,3049=>3066,3071,3333=>3337,3395=>3429\"},\"sql_tweak31\":{\"adminview\":\"278\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1=>47\"},\"sql_tweak32\":{\"adminview\":\"24\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak33\":{\"adminview\":\"20\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"97,101=>109,133\"},\"sql_tweak34\":{\"adminview\":\"281\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"36,39\"},\"sql_tweak35\":{\"adminview\":\"107\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"5,185,338,360,362,387,388,396=>398,400\"},\"sql_tweak36\":{\"adminview\":\"172\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"19=>22,25=>31\"},\"sql_tweak37\":{\"adminview\":\"129\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak38\":{\"adminview\":\"176\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak39\":{\"adminview\":\"171\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1 => 6,8 => 11\"},\"sql_tweak40\":{\"adminview\":\"258\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak41\":{\"adminview\":\"280\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"14 =>19\"}}', 1, '2024-01-25 14:33:10', '2024-09-17 02:01:09', 34, '', 7, ''), -(75, 87, '', 1, '2024-03-07 12:51:17', '0000-00-00 00:00:00', 1, '', 6, ''), -(76, 88, '', 1, '2024-03-07 13:03:22', '0000-00-00 00:00:00', 1, '', 5, ''), -(77, 89, '{\"sql_tweak0\":{\"adminview\":\"276\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"25\"},\"sql_tweak1\":{\"adminview\":\"292\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"8 => 10\"},\"sql_tweak2\":{\"adminview\":\"291\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"21,24,28,46,66\"},\"sql_tweak3\":{\"adminview\":\"221\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak4\":{\"adminview\":\"220\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak5\":{\"adminview\":\"219\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak6\":{\"adminview\":\"222\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak7\":{\"adminview\":\"279\",\"add_sql\":0,\"add_sql_options\":2,\"ids\":\"\"},\"sql_tweak8\":{\"adminview\":\"147\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak9\":{\"adminview\":\"151\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak10\":{\"adminview\":\"148\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak11\":{\"adminview\":\"152\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak12\":{\"adminview\":\"153\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak13\":{\"adminview\":\"154\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak14\":{\"adminview\":\"150\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak15\":{\"adminview\":\"149\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak16\":{\"adminview\":\"146\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak17\":{\"adminview\":\"275\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak18\":{\"adminview\":\"223\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"13\"},\"sql_tweak19\":{\"adminview\":\"237\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"15\"},\"sql_tweak20\":{\"adminview\":\"212\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"43\"},\"sql_tweak21\":{\"adminview\":\"14\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"109,283=>286\"},\"sql_tweak22\":{\"adminview\":\"144\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"111,282=>285\"},\"sql_tweak23\":{\"adminview\":\"145\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak24\":{\"adminview\":\"43\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak25\":{\"adminview\":\"25\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"23,25\"},\"sql_tweak26\":{\"adminview\":\"156\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1=>6,11=>15\"},\"sql_tweak27\":{\"adminview\":\"157\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak28\":{\"adminview\":\"158\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"2,3\"},\"sql_tweak29\":{\"adminview\":\"21\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1=>144\"},\"sql_tweak30\":{\"adminview\":\"277\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"23,84,100,158,196,199,203,280,324,599,682,691,1011,1160,2395,2396,2657,2678,2941,3044,3049=>3066,3071,3333=>3337,3395=>3429\"},\"sql_tweak31\":{\"adminview\":\"278\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1=>47\"},\"sql_tweak32\":{\"adminview\":\"24\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak33\":{\"adminview\":\"20\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"97,101=>109,133\"},\"sql_tweak34\":{\"adminview\":\"281\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"36,39\"},\"sql_tweak35\":{\"adminview\":\"107\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"5,185,338,360,362,387,388,396=>398,400\"},\"sql_tweak36\":{\"adminview\":\"172\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"19=>22,25=>31\"},\"sql_tweak37\":{\"adminview\":\"129\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak38\":{\"adminview\":\"176\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak39\":{\"adminview\":\"171\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1 => 6,8 => 11\"},\"sql_tweak40\":{\"adminview\":\"258\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak41\":{\"adminview\":\"280\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"14 =>19\"}}', 1, '2024-03-08 11:34:35', '2024-09-17 03:04:06', 27, '', 7, ''); +(33, 32, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', ''), +(34, 35, '{\"sql_tweak0\":{\"adminview\":\"18\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"25\"},\"sql_tweak1\":{\"adminview\":\"147\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"27\"},\"sql_tweak2\":{\"adminview\":\"151\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"27\"},\"sql_tweak3\":{\"adminview\":\"148\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"27\"},\"sql_tweak4\":{\"adminview\":\"152\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"27\"},\"sql_tweak5\":{\"adminview\":\"153\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"27\"},\"sql_tweak6\":{\"adminview\":\"154\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"27\"},\"sql_tweak7\":{\"adminview\":\"150\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"27\"},\"sql_tweak8\":{\"adminview\":\"149\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"27\"},\"sql_tweak9\":{\"adminview\":\"146\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"27\"},\"sql_tweak10\":{\"adminview\":\"14\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"109\"},\"sql_tweak11\":{\"adminview\":\"144\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"111\"},\"sql_tweak12\":{\"adminview\":\"145\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"111\"},\"sql_tweak13\":{\"adminview\":\"43\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak14\":{\"adminview\":\"25\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"23,25\"},\"sql_tweak15\":{\"adminview\":\"156\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"1 => 6\"},\"sql_tweak16\":{\"adminview\":\"157\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"1 => 5\"},\"sql_tweak17\":{\"adminview\":\"158\",\"add_sql\":\"1\",\"add_sql_options\":\"1\",\"ids\":\"1 => 2\"},\"sql_tweak25\":{\"adminview\":\"21\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"1 => 144\"},\"sql_tweak18\":{\"adminview\":\"13\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"23,84,100,158,196,199,203,280,682,1011\"},\"sql_tweak19\":{\"adminview\":\"12\",\"add_sql\":\"1\",\"add_sql_options\":\"1\",\"ids\":\"\"},\"sql_tweak20\":{\"adminview\":\"24\",\"add_sql\":\"0\",\"add_sql_options\":\"2\",\"ids\":\"\"},\"sql_tweak21\":{\"adminview\":\"20\",\"add_sql\":\"0\",\"add_sql_options\":\"2\",\"ids\":\"\"},\"sql_tweak22\":{\"adminview\":\"22\",\"add_sql\":\"1\",\"add_sql_options\":\"2\",\"ids\":\"36,39\"},\"sql_tweak23\":{\"adminview\":\"107\",\"add_sql\":\"0\",\"add_sql_options\":\"\",\"ids\":\"\"}}', 2, '2018-02-26 15:27:39', '2017-12-25 12:44:20', 1, '', 1, ''), +(36, 38, '', 2, '2018-08-06 14:56:04', '0000-00-00 00:00:00', 1, '', 2, ''), +(37, 39, '', 2, '2018-08-10 13:06:34', '0000-00-00 00:00:00', 1, '', 2, ''), +(38, 40, '', 2, '2018-08-21 13:15:04', '0000-00-00 00:00:00', 1, '', 2, ''), +(39, 41, '', 2, '2018-08-21 19:33:15', '0000-00-00 00:00:00', 1, '', 2, ''), +(40, 42, '', 2, '2018-09-12 00:41:47', '0000-00-00 00:00:00', 1, '', 2, ''), +(41, 43, '', 2, '2018-09-12 19:55:57', '0000-00-00 00:00:00', 1, '', 2, ''), +(42, 44, '', 2, '2018-10-09 16:09:37', '0000-00-00 00:00:00', 1, '', 2, ''), +(43, 45, '', 2, '2018-10-15 14:33:08', '0000-00-00 00:00:00', 1, '', 2, ''), +(44, 46, '', 2, '2018-11-24 01:54:02', '0000-00-00 00:00:00', 1, '', 2, ''), +(45, 47, '', 2, '2018-12-17 13:44:13', '0000-00-00 00:00:00', 1, '', 2, ''), +(46, 48, '', 2, '2019-02-04 21:30:52', '0000-00-00 00:00:00', 1, '', 3, ''), +(47, 49, '', 2, '2019-02-06 20:27:41', '0000-00-00 00:00:00', 1, '', 2, ''), +(48, 50, '', 2, '2019-02-12 20:06:53', '0000-00-00 00:00:00', 1, '', 2, ''), +(49, 51, '', 2, '2019-02-12 21:03:52', '0000-00-00 00:00:00', 1, '', 2, ''), +(50, 52, '', 2, '2019-02-12 21:05:31', '0000-00-00 00:00:00', 1, '', 2, ''), +(51, 53, '', 2, '2019-02-12 21:07:27', '0000-00-00 00:00:00', 1, '', 2, ''), +(52, 54, '', 2, '2019-02-12 21:08:53', '0000-00-00 00:00:00', 1, '', 2, ''), +(53, 55, '', 2, '2019-02-12 21:09:55', '0000-00-00 00:00:00', 1, '', 2, ''), +(54, 56, '', 2, '2019-02-12 21:10:55', '0000-00-00 00:00:00', 1, '', 2, ''), +(55, 57, '', 2, '2019-02-12 21:12:05', '0000-00-00 00:00:00', 1, '', 2, ''), +(56, 58, '', 2, '2019-02-12 21:13:15', '0000-00-00 00:00:00', 1, '', 2, ''), +(57, 59, '', 2, '2019-02-12 21:14:30', '0000-00-00 00:00:00', 1, '', 2, ''), +(58, 60, '', 2, '2019-05-07 20:25:06', '0000-00-00 00:00:00', 1, '', 2, ''), +(59, 62, '', 2, '2019-09-25 12:57:04', '0000-00-00 00:00:00', 1, '', 4, ''), +(60, 64, '', 2, '2020-02-22 10:08:00', '0000-00-00 00:00:00', 1, '', 3, ''), +(61, 65, '', 2, '2020-02-22 16:56:44', '0000-00-00 00:00:00', 1, '', 2, ''), +(62, 66, '', 2, '2017-10-28 03:56:26', '2020-02-23 15:54:28', 2, '', '', ''), +(63, 67, '', 2, '2020-03-15 15:10:46', '0000-00-00 00:00:00', 1, '', 2, ''), +(64, 68, '', 2, '2020-05-22 10:28:48', '0000-00-00 00:00:00', 1, '', 3, ''), +(65, 69, '', 2, '2020-05-22 10:40:28', '0000-00-00 00:00:00', 1, '', 2, ''), +(66, 70, '', 2, '2020-06-27 20:06:25', '0000-00-00 00:00:00', 1, '', 2, ''), +(67, 71, '', 2, '2020-07-03 13:47:05', '0000-00-00 00:00:00', 1, '', 3, ''), +(68, 72, '', 2, '2020-07-03 15:40:40', '0000-00-00 00:00:00', 1, '', 2, ''), +(69, 73, '', 2, '2020-07-05 02:26:09', '0000-00-00 00:00:00', 1, '', 2, ''), +(72, 83, '', 2, '2024-01-16 07:58:01', '0000-00-00 00:00:00', 1, '', 5, ''), +(73, 84, '', 2, '2024-01-21 09:56:47', '0000-00-00 00:00:00', 1, '', 6, ''), +(74, 85, '{\"sql_tweak0\":{\"adminview\":\"276\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"25\"},\"sql_tweak1\":{\"adminview\":\"292\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"8 => 10\"},\"sql_tweak2\":{\"adminview\":\"291\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"21,24,28,46,66\"},\"sql_tweak3\":{\"adminview\":\"221\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak4\":{\"adminview\":\"220\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak5\":{\"adminview\":\"219\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak6\":{\"adminview\":\"222\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak7\":{\"adminview\":\"279\",\"add_sql\":0,\"add_sql_options\":2,\"ids\":\"\"},\"sql_tweak8\":{\"adminview\":\"147\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak9\":{\"adminview\":\"151\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak10\":{\"adminview\":\"148\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak11\":{\"adminview\":\"152\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak12\":{\"adminview\":\"153\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak13\":{\"adminview\":\"154\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak14\":{\"adminview\":\"150\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak15\":{\"adminview\":\"149\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak16\":{\"adminview\":\"146\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak17\":{\"adminview\":\"275\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak18\":{\"adminview\":\"223\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"13\"},\"sql_tweak19\":{\"adminview\":\"237\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"15\"},\"sql_tweak20\":{\"adminview\":\"212\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"43\"},\"sql_tweak21\":{\"adminview\":\"14\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"109,283=>286\"},\"sql_tweak22\":{\"adminview\":\"144\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"111,282=>285\"},\"sql_tweak23\":{\"adminview\":\"145\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak24\":{\"adminview\":\"43\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak25\":{\"adminview\":\"25\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"23,25\"},\"sql_tweak26\":{\"adminview\":\"156\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1=>6,11=>15\"},\"sql_tweak27\":{\"adminview\":\"157\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak28\":{\"adminview\":\"158\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"2,3\"},\"sql_tweak29\":{\"adminview\":\"21\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1=>144\"},\"sql_tweak30\":{\"adminview\":\"277\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"23,84,100,158,196,199,203,280,324,599,682,691,1011,1160,2395,2396,2657,2678,2941,3044,3049=>3066,3071,3333=>3337,3395=>3429\"},\"sql_tweak31\":{\"adminview\":\"278\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1=>47\"},\"sql_tweak32\":{\"adminview\":\"24\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak33\":{\"adminview\":\"20\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"97,101=>109,133\"},\"sql_tweak34\":{\"adminview\":\"281\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"36,39\"},\"sql_tweak35\":{\"adminview\":\"107\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"5,185,338,360,362,387,388,396=>398,400\"},\"sql_tweak36\":{\"adminview\":\"172\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"19=>22,25=>31\"},\"sql_tweak37\":{\"adminview\":\"129\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak38\":{\"adminview\":\"176\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak39\":{\"adminview\":\"171\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1 => 6,8 => 11\"},\"sql_tweak40\":{\"adminview\":\"258\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak41\":{\"adminview\":\"280\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"14 =>19\"}}', 2, '2024-01-25 14:33:10', '2024-09-17 02:01:09', 34, '', 7, ''), +(75, 87, '', 2, '2024-03-07 12:51:17', '0000-00-00 00:00:00', 1, '', 6, ''), +(76, 88, '', 2, '2024-03-07 13:03:22', '0000-00-00 00:00:00', 1, '', 5, ''), +(77, 89, '{\"sql_tweak0\":{\"adminview\":\"276\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"25\"},\"sql_tweak1\":{\"adminview\":\"292\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"8 => 10\"},\"sql_tweak2\":{\"adminview\":\"291\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"21,24,28,46,66\"},\"sql_tweak3\":{\"adminview\":\"221\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak4\":{\"adminview\":\"220\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak5\":{\"adminview\":\"219\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak6\":{\"adminview\":\"222\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak7\":{\"adminview\":\"279\",\"add_sql\":0,\"add_sql_options\":2,\"ids\":\"\"},\"sql_tweak8\":{\"adminview\":\"147\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak9\":{\"adminview\":\"151\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak10\":{\"adminview\":\"148\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak11\":{\"adminview\":\"152\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak12\":{\"adminview\":\"153\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak13\":{\"adminview\":\"154\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak14\":{\"adminview\":\"150\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak15\":{\"adminview\":\"149\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak16\":{\"adminview\":\"146\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"27\"},\"sql_tweak17\":{\"adminview\":\"275\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak18\":{\"adminview\":\"223\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"13\"},\"sql_tweak19\":{\"adminview\":\"237\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"15\"},\"sql_tweak20\":{\"adminview\":\"212\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"43\"},\"sql_tweak21\":{\"adminview\":\"14\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"109,283=>286\"},\"sql_tweak22\":{\"adminview\":\"144\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"111,282=>285\"},\"sql_tweak23\":{\"adminview\":\"145\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak24\":{\"adminview\":\"43\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak25\":{\"adminview\":\"25\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"23,25\"},\"sql_tweak26\":{\"adminview\":\"156\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1=>6,11=>15\"},\"sql_tweak27\":{\"adminview\":\"157\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak28\":{\"adminview\":\"158\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"2,3\"},\"sql_tweak29\":{\"adminview\":\"21\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1=>144\"},\"sql_tweak30\":{\"adminview\":\"277\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"23,84,100,158,196,199,203,280,324,599,682,691,1011,1160,2395,2396,2657,2678,2941,3044,3049=>3066,3071,3333=>3337,3395=>3429\"},\"sql_tweak31\":{\"adminview\":\"278\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1=>47\"},\"sql_tweak32\":{\"adminview\":\"24\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak33\":{\"adminview\":\"20\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"97,101=>109,133\"},\"sql_tweak34\":{\"adminview\":\"281\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"36,39\"},\"sql_tweak35\":{\"adminview\":\"107\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"5,185,338,360,362,387,388,396=>398,400\"},\"sql_tweak36\":{\"adminview\":\"172\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"19=>22,25=>31\"},\"sql_tweak37\":{\"adminview\":\"129\",\"add_sql\":1,\"add_sql_options\":1,\"ids\":\"\"},\"sql_tweak38\":{\"adminview\":\"176\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak39\":{\"adminview\":\"171\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"1 => 6,8 => 11\"},\"sql_tweak40\":{\"adminview\":\"258\",\"add_sql\":0,\"add_sql_options\":\"\",\"ids\":\"\"},\"sql_tweak41\":{\"adminview\":\"280\",\"add_sql\":1,\"add_sql_options\":2,\"ids\":\"14 =>19\"}}', 2, '2024-03-08 11:34:35', '2024-09-17 03:04:06', 27, '', 7, ''); -- -- Dumping data for table `#__componentbuilder_component_dashboard` -- INSERT INTO `#__componentbuilder_component_dashboard` (`id`, `dashboard_tab`, `joomla_component`, `php_dashboard_methods`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `params`) VALUES -(35, '', 36, '', 1, '0000-00-00 00:00:00', '2018-04-11 21:11:46', 1, '', '', ''); +(35, '', 36, '', 2, '0000-00-00 00:00:00', '2018-04-11 21:11:46', 1, '', '', ''); -- -- Dumping data for table `#__componentbuilder_component_files_folders` -- INSERT INTO `#__componentbuilder_component_files_folders` (`id`, `addfiles`, `addfolders`, `joomla_component`, `params`, `published`, `created`, `modified`, `version`, `hits`, `ordering`, `addfilesfullpath`, `addfoldersfullpath`) VALUES -(1, '{\"addfiles0\":{\"file\":\"dropbox.php\",\"path\":\"\\/site\\/helpers\"},\"addfiles1\":{\"file\":\"downloadController.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"fb_loader.gif\",\"path\":\"\\/media\\/images\\/load.gif\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles4\":{\"file\":\"base64.js\",\"path\":\"\\/media\\/js\"}}', '', 1, '', 1, '2017-10-28 03:56:26', '2019-06-11 12:25:39', 3, '', '', '', ''), +(1, '{\"addfiles0\":{\"file\":\"dropbox.php\",\"path\":\"\\/site\\/helpers\"},\"addfiles1\":{\"file\":\"downloadController.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"fb_loader.gif\",\"path\":\"\\/media\\/images\\/load.gif\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles4\":{\"file\":\"base64.js\",\"path\":\"\\/media\\/js\"}}', '', 1, '', 2, '2017-10-28 03:56:26', '2019-06-11 12:25:39', 3, '', '', '', ''), (2, '{\"addfiles0\":{\"file\":\"JCB_SECURITY.md\",\"path\":\"\\/SECURITY.md\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"JCB_CONTRIBUTING.md\",\"path\":\"\\/.github\\/CONTRIBUTING.md\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"JCB_SUPPORT.md\",\"path\":\"\\/.github\\/SUPPORT.md\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"JCB_ISSUE_TEMPLATE.md\",\"path\":\"\\/.github\\/ISSUE_TEMPLATE.md\",\"notnew\":\"1\"},\"addfiles4\":{\"file\":\"JCB_PULL_REQUEST_TEMPLATE.md\",\"path\":\"\\/.github\\/PULL_REQUEST_TEMPLATE.md\",\"notnew\":\"1\"},\"addfiles5\":{\"file\":\"JCB_FUNDING.yml\",\"path\":\"\\/.github\\/FUNDING.yml\",\"notnew\":\"1\"},\"addfiles6\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles7\":{\"file\":\"grid.png\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles8\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/custom\"},\"addfiles9\":{\"file\":\"base64.js\",\"path\":\"admin\\/custom\"},\"addfiles10\":{\"file\":\"marked.js\",\"path\":\"admin\\/custom\"},\"addfiles11\":{\"file\":\"timeago.js\",\"path\":\"admin\\/custom\"},\"addfiles12\":{\"file\":\"bootstrap-tab.js\",\"path\":\"admin\\/custom\"},\"addfiles13\":{\"file\":\"bootstrap.min.js\",\"path\":\"admin\\/custom\"},\"addfiles14\":{\"file\":\"bootstrapSwitch.js\",\"path\":\"admin\\/custom\"},\"addfiles15\":{\"file\":\"chartMenu.js\",\"path\":\"admin\\/custom\"},\"addfiles16\":{\"file\":\"chartbuilder.php\",\"path\":\"admin\\/custom\"},\"addfiles17\":{\"file\":\"data-generator.js\",\"path\":\"admin\\/custom\"},\"addfiles18\":{\"file\":\"downloadController.php\",\"path\":\"admin\\/custom\"},\"addfiles19\":{\"file\":\"DownloadControllerAdmin.php\",\"path\":\"admin\\/custom\"},\"addfiles37\":{\"file\":\"DownloadControllerSite.php\",\"path\":\"admin\\/custom\"},\"addfiles20\":{\"file\":\"fb_loader.gif\",\"path\":\"admin\\/custom\"},\"addfiles21\":{\"file\":\"form.js\",\"path\":\"admin\\/custom\",\"notnew\":\"1\"},\"addfiles22\":{\"file\":\"form-password.js\",\"path\":\"admin\\/custom\"},\"addfiles23\":{\"file\":\"form-password.min.js\",\"path\":\"admin\\/custom\"},\"addfiles24\":{\"file\":\"google.jsapi.js\",\"path\":\"admin\\/custom\"},\"addfiles25\":{\"file\":\"grid.png\",\"path\":\"admin\\/custom\"},\"addfiles26\":{\"file\":\"iframeheight.min.js\",\"path\":\"admin\\/custom\"},\"addfiles27\":{\"file\":\"index.html\",\"path\":\"admin\\/custom\"},\"addfiles28\":{\"file\":\"jquery.mockjax.js\",\"path\":\"admin\\/custom\"},\"addfiles29\":{\"file\":\"mustache.js\",\"path\":\"admin\\/custom\"},\"addfiles30\":{\"file\":\"offline.min.js\",\"path\":\"admin\\/custom\"},\"addfiles31\":{\"file\":\"marked.js\",\"path\":\"media\\/js\"},\"addfiles32\":{\"file\":\"timeago.js\",\"path\":\"media\\/js\"},\"addfiles33\":{\"file\":\"jstorage.min.js\",\"path\":\"media\\/js\"},\"addfiles34\":{\"file\":\"jquery.json.min.js\",\"path\":\"media\\/js\"},\"addfiles35\":{\"file\":\"strtotime.js\",\"path\":\"media\\/js\"},\"addfiles36\":{\"file\":\"jcb-banner.jpg\",\"path\":\"admin\\/assets\\/images\"}}', '{\"addfolders0\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"custem\",\"path\":\"admin\\/compiler\",\"rename\":\"1\"},\"addfolders2\":{\"folder\":\"custem\",\"path\":\"libraries\\/phpseclib3\",\"rename\":\"1\"},\"addfolders3\":{\"folder\":\"uikit-v2\",\"path\":\"admin\\/custom\"},\"addfolders4\":{\"folder\":\"uikit-v3\",\"path\":\"admin\\/custom\"},\"addfolders5\":{\"folder\":\"soundmanager\",\"path\":\"admin\\/custom\"},\"addfolders6\":{\"folder\":\"importViews\",\"path\":\"admin\\/custom\"},\"addfolders7\":{\"folder\":\"footable-v2\",\"path\":\"admin\\/custom\"},\"addfolders8\":{\"folder\":\"footable-v3\",\"path\":\"admin\\/custom\"},\"addfolders9\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\"}}', 2, '', 1, '2017-10-28 03:56:26', '2024-09-18 23:39:49', 73, '', '', '{\"addfilesfullpath0\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/default.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath1\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/description.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath2\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/vdm.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath3\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/SD.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath4\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/JCB.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath5\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\\/LICENSE.txt\",\"path\":\"LICENSE.txt\"}}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib3\\/vendor\\/\",\"path\":\"\\/libraries\\/phpseclib3\\/\"},\"addfoldersfullpath1\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfoldersfullpath2\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_4\",\"path\":\"\\/admin\\/compiler\\/\"}}'), -(3, '{\"addfiles0\":{\"file\":\"marked.js\",\"path\":\"media\\/js\",\"notnew\":\"0\"}}', '', 34, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), -(4, '{\"addfiles0\":{\"file\":\"chartMenu.js\",\"path\":\"\\/media\\/js\"},\"addfiles1\":{\"file\":\"table2excel.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles13\":{\"file\":\"timeago.js\",\"path\":\"\\/media\\/js\"},\"addfiles3\":{\"file\":\"keynote-on-icon.png\",\"path\":\"\\/media\\/images\\/charts.png\"},\"addfiles4\":{\"file\":\"table.png\",\"path\":\"\\/media\\/images\\/tables.png\"},\"addfiles5\":{\"file\":\"fb_loader.gif\",\"path\":\"\\/media\\/images\\/load.gif\"},\"addfiles6\":{\"file\":\"giz.png\",\"path\":\"\\/media\\/images\\/cbp_box.png\"},\"addfiles7\":{\"file\":\"negativefinder.php\",\"path\":\"\\/admin\\/helpers\"},\"addfiles8\":{\"file\":\"aes.php\",\"path\":\"\\/admin\\/helpers\"},\"addfiles9\":{\"file\":\"negativefinder.php\",\"path\":\"\\/site\\/helpers\"},\"addfiles10\":{\"file\":\"sum.php\",\"path\":\"\\/admin\\/helpers\",\"notnew\":\"1\"},\"addfiles11\":{\"file\":\"sumcombine.php\",\"path\":\"\\/admin\\/helpers\",\"notnew\":\"1\"}}', '{}', 3, '', 1, '2017-10-28 03:56:26', '2020-11-20 17:15:00', 3, '', '', '{}', '{}'), -(5, '', '', 4, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), -(6, '', '', 5, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), -(8, '{\"addfiles0\":{\"file\":\"dropbox.php\",\"path\":\"\\/site\\/helpers\"},\"addfiles1\":{\"file\":\"dropboxupdater.php\",\"path\":\"\\/site\\/helpers\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"downloadController_sermonDistributor.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles4\":{\"file\":\"timeago.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"soundmanager\",\"path\":\"\\/media\\/\"},\"addfolders1\":{\"folder\":\"jplayer\",\"path\":\"\\/media\\/\"}}', 8, '', 1, '2017-10-28 03:56:26', '2018-03-03 21:17:49', 3, '', '', '', ''), -(9, '{\"addfiles0\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\"},\"addfiles1\":{\"file\":\"icon.png\",\"path\":\"\\/media\\/images\\/\"},\"addfiles2\":{\"file\":\"ajax.gif\",\"path\":\"\\/media\\/images\\/\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{}', 9, '', 1, '2017-10-28 03:56:26', '2023-07-26 09:39:22', 8, '', '', '{}', '{}'), -(11, '', '', 11, '', 1, '2017-10-28 03:56:26', '2019-06-19 14:59:59', 3, '', '', '', ''), +(3, '{\"addfiles0\":{\"file\":\"marked.js\",\"path\":\"media\\/js\",\"notnew\":\"0\"}}', '', 34, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), +(4, '{\"addfiles0\":{\"file\":\"chartMenu.js\",\"path\":\"\\/media\\/js\"},\"addfiles1\":{\"file\":\"table2excel.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles13\":{\"file\":\"timeago.js\",\"path\":\"\\/media\\/js\"},\"addfiles3\":{\"file\":\"keynote-on-icon.png\",\"path\":\"\\/media\\/images\\/charts.png\"},\"addfiles4\":{\"file\":\"table.png\",\"path\":\"\\/media\\/images\\/tables.png\"},\"addfiles5\":{\"file\":\"fb_loader.gif\",\"path\":\"\\/media\\/images\\/load.gif\"},\"addfiles6\":{\"file\":\"giz.png\",\"path\":\"\\/media\\/images\\/cbp_box.png\"},\"addfiles7\":{\"file\":\"negativefinder.php\",\"path\":\"\\/admin\\/helpers\"},\"addfiles8\":{\"file\":\"aes.php\",\"path\":\"\\/admin\\/helpers\"},\"addfiles9\":{\"file\":\"negativefinder.php\",\"path\":\"\\/site\\/helpers\"},\"addfiles10\":{\"file\":\"sum.php\",\"path\":\"\\/admin\\/helpers\",\"notnew\":\"1\"},\"addfiles11\":{\"file\":\"sumcombine.php\",\"path\":\"\\/admin\\/helpers\",\"notnew\":\"1\"}}', '{}', 3, '', 2, '2017-10-28 03:56:26', '2020-11-20 17:15:00', 3, '', '', '{}', '{}'), +(5, '', '', 4, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), +(6, '', '', 5, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), +(8, '{\"addfiles0\":{\"file\":\"dropbox.php\",\"path\":\"\\/site\\/helpers\"},\"addfiles1\":{\"file\":\"dropboxupdater.php\",\"path\":\"\\/site\\/helpers\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"downloadController_sermonDistributor.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles4\":{\"file\":\"timeago.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"soundmanager\",\"path\":\"\\/media\\/\"},\"addfolders1\":{\"folder\":\"jplayer\",\"path\":\"\\/media\\/\"}}', 8, '', 2, '2017-10-28 03:56:26', '2018-03-03 21:17:49', 3, '', '', '', ''), +(9, '{\"addfiles0\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\"},\"addfiles1\":{\"file\":\"icon.png\",\"path\":\"\\/media\\/images\\/\"},\"addfiles2\":{\"file\":\"ajax.gif\",\"path\":\"\\/media\\/images\\/\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{}', 9, '', 2, '2017-10-28 03:56:26', '2023-07-26 09:39:22', 8, '', '', '{}', '{}'), +(11, '', '', 11, '', 2, '2017-10-28 03:56:26', '2019-06-19 14:59:59', 3, '', '', '', ''), (12, '{\"addfiles0\":{\"file\":\"ajax-loader.gif\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"grid.png\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"A4.print.css\",\"path\":\"admin\\/custom\"},\"addfiles4\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/custom\"},\"addfiles5\":{\"file\":\"base64.js\",\"path\":\"admin\\/custom\"},\"addfiles6\":{\"file\":\"marked.js\",\"path\":\"admin\\/custom\"},\"addfiles7\":{\"file\":\"timeago.js\",\"path\":\"admin\\/custom\"},\"addfiles8\":{\"file\":\"bootstrap-tab.js\",\"path\":\"admin\\/custom\"},\"addfiles9\":{\"file\":\"bootstrap.min.js\",\"path\":\"admin\\/custom\"},\"addfiles10\":{\"file\":\"bootstrapSwitch.js\",\"path\":\"admin\\/custom\"},\"addfiles11\":{\"file\":\"chartMenu.js\",\"path\":\"admin\\/custom\"},\"addfiles12\":{\"file\":\"chartbuilder.php\",\"path\":\"admin\\/custom\"},\"addfiles13\":{\"file\":\"data-generator.js\",\"path\":\"admin\\/custom\"},\"addfiles14\":{\"file\":\"downloadController.php\",\"path\":\"admin\\/custom\"},\"addfiles15\":{\"file\":\"fb_loader.gif\",\"path\":\"admin\\/custom\"},\"addfiles16\":{\"file\":\"form.js\",\"path\":\"admin\\/custom\",\"notnew\":\"1\"},\"addfiles17\":{\"file\":\"form-password.js\",\"path\":\"admin\\/custom\"},\"addfiles18\":{\"file\":\"form-password.min.js\",\"path\":\"admin\\/custom\"},\"addfiles19\":{\"file\":\"google.jsapi.js\",\"path\":\"admin\\/custom\"},\"addfiles20\":{\"file\":\"grid.png\",\"path\":\"admin\\/custom\"},\"addfiles21\":{\"file\":\"iframeheight.min.js\",\"path\":\"admin\\/custom\"},\"addfiles22\":{\"file\":\"index.html\",\"path\":\"admin\\/custom\"},\"addfiles23\":{\"file\":\"jquery.mockjax.js\",\"path\":\"admin\\/custom\"},\"addfiles24\":{\"file\":\"mustache.js\",\"path\":\"admin\\/custom\"},\"addfiles25\":{\"file\":\"offline.min.js\",\"path\":\"admin\\/custom\"},\"addfiles26\":{\"file\":\"marked.js\",\"path\":\"media\\/js\"},\"addfiles27\":{\"file\":\"timeago.js\",\"path\":\"media\\/js\"},\"addfiles28\":{\"file\":\"jstorage.min.js\",\"path\":\"media\\/js\"},\"addfiles29\":{\"file\":\"jquery.json.min.js\",\"path\":\"media\\/js\"},\"addfiles30\":{\"file\":\"strtotime.js\",\"path\":\"media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"custem\",\"path\":\"admin\\/compiler\",\"rename\":\"1\"},\"addfolders2\":{\"folder\":\"custem\",\"path\":\"libraries\\/phpseclib\",\"rename\":\"1\"},\"addfolders4\":{\"folder\":\"uikit-v2\",\"path\":\"admin\\/custom\"},\"addfolders5\":{\"folder\":\"uikit-v3\",\"path\":\"admin\\/custom\"},\"addfolders6\":{\"folder\":\"soundmanager\",\"path\":\"admin\\/custom\"},\"addfolders7\":{\"folder\":\"importViews\",\"path\":\"admin\\/custom\"},\"addfolders8\":{\"folder\":\"footable-v2\",\"path\":\"admin\\/custom\"},\"addfolders9\":{\"folder\":\"footable-v3\",\"path\":\"admin\\/custom\"},\"addfolders10\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\"}}', 14, '', 2, '2017-10-28 03:56:26', '2020-12-08 17:42:27', 4, '', '', '{\"addfilesfullpath0\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/helpers\\/compiler.php\",\"path\":\"\\/admin\\/helpers\\/\"},\"addfilesfullpath1\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/helpers\\/js.php\",\"path\":\"\\/admin\\/helpers\\/\"},\"addfilesfullpath2\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/helpers\\/indenter.php\",\"path\":\"\\/admin\\/helpers\\/\"},\"addfilesfullpath3\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/helpers\\/keywords_after.txt\",\"path\":\"\\/admin\\/helpers\\/\"},\"addfilesfullpath4\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/helpers\\/keywords_before.txt\",\"path\":\"\\/admin\\/helpers\\/\"},\"addfilesfullpath5\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/helpers\\/operators_after.txt\",\"path\":\"\\/admin\\/helpers\\/\"},\"addfilesfullpath6\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/helpers\\/operators_before.txt\",\"path\":\"\\/admin\\/helpers\\/\"},\"addfilesfullpath7\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/helpers\\/keywords_reserved.txt\",\"path\":\"\\/admin\\/helpers\\/\"},\"addfilesfullpath8\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/helpers\\/minify.php\",\"path\":\"\\/admin\\/helpers\\/\"},\"addfilesfullpath9\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/default.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath10\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/description.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath11\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/vdm.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath12\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/SD.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath13\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/JCB.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath14\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\\/LICENSE.txt\",\"path\":\"LICENSE.txt\"}}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib\\/vendor\\/\",\"path\":\"libraries\\/phpseclib\\/\"},\"addfoldersfullpath1\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/helpers\\/compiler\",\"path\":\"\\/admin\\/helpers\\/\"},\"addfoldersfullpath2\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/helpers\\/extrusion\",\"path\":\"\\/admin\\/helpers\\/\"},\"addfoldersfullpath3\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\",\"path\":\"\\/admin\\/compiler\\/\"}}'), -(13, '{\"addfiles0\":{\"file\":\"compilerController.php\",\"path\":\"admin\\/controllers\\/compiler.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"compilerController.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles2\":{\"file\":\"compilerModel.php\",\"path\":\"admin\\/models\\/compiler.php\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"compilerModel.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles4\":{\"file\":\"compiler.php\",\"path\":\"admin\\/helpers\",\"notnew\":\"0\"},\"addfiles5\":{\"file\":\"infusion.php\",\"path\":\"admin\\/helpers\",\"notnew\":\"0\"},\"addfiles6\":{\"file\":\"interpretation.php\",\"path\":\"admin\\/helpers\",\"notnew\":\"0\"},\"addfiles7\":{\"file\":\"structure.php\",\"path\":\"admin\\/helpers\",\"notnew\":\"0\"},\"addfiles8\":{\"file\":\"get.php\",\"path\":\"admin\\/helpers\",\"notnew\":\"0\"},\"addfiles9\":{\"file\":\"compiler.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles10\":{\"file\":\"infusion.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles11\":{\"file\":\"interpretation.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles12\":{\"file\":\"structure.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles13\":{\"file\":\"get.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles14\":{\"file\":\"js.php\",\"path\":\"admin\\/helpers\",\"notnew\":\"1\"},\"addfiles15\":{\"file\":\"js.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles16\":{\"file\":\"keywords_after.txt\",\"path\":\"admin\\/helpers\",\"notnew\":\"1\"},\"addfiles17\":{\"file\":\"keywords_after.txt\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles18\":{\"file\":\"keywords_before.txt\",\"path\":\"admin\\/helpers\",\"notnew\":\"1\"},\"addfiles19\":{\"file\":\"keywords_before.txt\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles20\":{\"file\":\"keywords_reserved.txt\",\"path\":\"admin\\/helpers\",\"notnew\":\"1\"},\"addfiles21\":{\"file\":\"keywords_reserved.txt\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles22\":{\"file\":\"minify.php\",\"path\":\"admin\\/helpers\",\"notnew\":\"1\"},\"addfiles23\":{\"file\":\"minify.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles24\":{\"file\":\"operators_after.txt\",\"path\":\"admin\\/helpers\",\"notnew\":\"1\"},\"addfiles25\":{\"file\":\"operators_after.txt\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles26\":{\"file\":\"operators_before.txt\",\"path\":\"admin\\/helpers\",\"notnew\":\"1\"},\"addfiles27\":{\"file\":\"operators_before.txt\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles28\":{\"file\":\"ajax-loader.gif\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles29\":{\"file\":\"ajax-loader.gif\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles30\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles31\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles32\":{\"file\":\"grid.png\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles33\":{\"file\":\"grid.png\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles34\":{\"file\":\"view.htmlCompiler.php\",\"path\":\"admin\\/views\\/compiler\\/view.html.php\",\"notnew\":\"1\"},\"addfiles35\":{\"file\":\"view.htmlCompiler.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles36\":{\"file\":\"defaultCompiler.php\",\"path\":\"admin\\/views\\/compiler\\/tmpl\\/default.php\",\"notnew\":\"1\"},\"addfiles37\":{\"file\":\"defaultCompiler.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles38\":{\"file\":\"indenter.php\",\"path\":\"admin\\/helpers\",\"notnew\":\"1\"},\"addfiles39\":{\"file\":\"indenter.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles40\":{\"file\":\"PHPExcel.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles41\":{\"file\":\"base64.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles42\":{\"file\":\"bootstrap-tab.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles43\":{\"file\":\"bootstrap.min.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles44\":{\"file\":\"bootstrapSwitch.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles45\":{\"file\":\"chartMenu.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles46\":{\"file\":\"chartbuilder.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles47\":{\"file\":\"data-generator.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles48\":{\"file\":\"downloadController.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles49\":{\"file\":\"downloadController_sermonDistributor.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles50\":{\"file\":\"dropbox.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles51\":{\"file\":\"dropboxupdater.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles52\":{\"file\":\"fb_loader.gif\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles53\":{\"file\":\"form.js\",\"path\":\"admin\\/custom\",\"notnew\":\"1\"},\"addfiles54\":{\"file\":\"form-password.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles55\":{\"file\":\"form-password.min.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles56\":{\"file\":\"google.jsapi.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles57\":{\"file\":\"iframeheight.min.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles58\":{\"file\":\"index.html\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles59\":{\"file\":\"jquery.mockjax.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles60\":{\"file\":\"mustache.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles61\":{\"file\":\"offline.min.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles62\":{\"file\":\"soundmanager2.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles63\":{\"file\":\"updatedropbox.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles64\":{\"file\":\"index.html\",\"path\":\"admin\\/custom\\/custem\",\"notnew\":\"0\"}}', '{\"addfolders0\":{\"folder\":\"compilerViews\",\"path\":\"admin\\/views\\/compiler\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"compiler\",\"path\":\"admin\\/\",\"rename\":\"0\"},\"addfolders2\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\",\"rename\":\"1\"},\"addfolders3\":{\"folder\":\"compilerViews\",\"path\":\"admin\\/custom\",\"rename\":\"0\"},\"addfolders4\":{\"folder\":\"compiler\",\"path\":\"admin\\/custom\",\"rename\":\"0\"},\"addfolders5\":{\"folder\":\"PHPExcel\",\"path\":\"admin\\/custom\",\"rename\":\"0\"},\"addfolders6\":{\"folder\":\"footable\",\"path\":\"admin\\/custom\",\"rename\":\"0\"},\"addfolders7\":{\"folder\":\"importViews\",\"path\":\"admin\\/custom\",\"rename\":\"0\"},\"addfolders8\":{\"folder\":\"soundmanager\",\"path\":\"admin\\/custom\",\"rename\":\"0\"},\"addfolders9\":{\"folder\":\"uikit\",\"path\":\"admin\\/custom\",\"rename\":\"0\"},\"addfolders10\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\",\"rename\":\"0\"}}', 12, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), -(14, '{\"addfiles0\":{\"file\":\"downloadController_local_file.php\",\"path\":\"\\/admin\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"downloadController_local_file.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders1\":{\"folder\":\"file_icon_vectors\",\"path\":\"\\/media\\/vector\",\"rename\":\"1\"},\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 13, '', 1, '2017-10-28 03:56:26', '2019-10-19 22:17:42', 6, '', '', '{}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib\\/vendor\\/\",\"path\":\"\\/libraries\\/phpseclib\\/\"}}'), +(13, '{\"addfiles0\":{\"file\":\"compilerController.php\",\"path\":\"admin\\/controllers\\/compiler.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"compilerController.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles2\":{\"file\":\"compilerModel.php\",\"path\":\"admin\\/models\\/compiler.php\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"compilerModel.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles4\":{\"file\":\"compiler.php\",\"path\":\"admin\\/helpers\",\"notnew\":\"0\"},\"addfiles5\":{\"file\":\"infusion.php\",\"path\":\"admin\\/helpers\",\"notnew\":\"0\"},\"addfiles6\":{\"file\":\"interpretation.php\",\"path\":\"admin\\/helpers\",\"notnew\":\"0\"},\"addfiles7\":{\"file\":\"structure.php\",\"path\":\"admin\\/helpers\",\"notnew\":\"0\"},\"addfiles8\":{\"file\":\"get.php\",\"path\":\"admin\\/helpers\",\"notnew\":\"0\"},\"addfiles9\":{\"file\":\"compiler.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles10\":{\"file\":\"infusion.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles11\":{\"file\":\"interpretation.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles12\":{\"file\":\"structure.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles13\":{\"file\":\"get.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles14\":{\"file\":\"js.php\",\"path\":\"admin\\/helpers\",\"notnew\":\"1\"},\"addfiles15\":{\"file\":\"js.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles16\":{\"file\":\"keywords_after.txt\",\"path\":\"admin\\/helpers\",\"notnew\":\"1\"},\"addfiles17\":{\"file\":\"keywords_after.txt\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles18\":{\"file\":\"keywords_before.txt\",\"path\":\"admin\\/helpers\",\"notnew\":\"1\"},\"addfiles19\":{\"file\":\"keywords_before.txt\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles20\":{\"file\":\"keywords_reserved.txt\",\"path\":\"admin\\/helpers\",\"notnew\":\"1\"},\"addfiles21\":{\"file\":\"keywords_reserved.txt\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles22\":{\"file\":\"minify.php\",\"path\":\"admin\\/helpers\",\"notnew\":\"1\"},\"addfiles23\":{\"file\":\"minify.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles24\":{\"file\":\"operators_after.txt\",\"path\":\"admin\\/helpers\",\"notnew\":\"1\"},\"addfiles25\":{\"file\":\"operators_after.txt\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles26\":{\"file\":\"operators_before.txt\",\"path\":\"admin\\/helpers\",\"notnew\":\"1\"},\"addfiles27\":{\"file\":\"operators_before.txt\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles28\":{\"file\":\"ajax-loader.gif\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles29\":{\"file\":\"ajax-loader.gif\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles30\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles31\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles32\":{\"file\":\"grid.png\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles33\":{\"file\":\"grid.png\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles34\":{\"file\":\"view.htmlCompiler.php\",\"path\":\"admin\\/views\\/compiler\\/view.html.php\",\"notnew\":\"1\"},\"addfiles35\":{\"file\":\"view.htmlCompiler.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles36\":{\"file\":\"defaultCompiler.php\",\"path\":\"admin\\/views\\/compiler\\/tmpl\\/default.php\",\"notnew\":\"1\"},\"addfiles37\":{\"file\":\"defaultCompiler.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles38\":{\"file\":\"indenter.php\",\"path\":\"admin\\/helpers\",\"notnew\":\"1\"},\"addfiles39\":{\"file\":\"indenter.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles40\":{\"file\":\"PHPExcel.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles41\":{\"file\":\"base64.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles42\":{\"file\":\"bootstrap-tab.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles43\":{\"file\":\"bootstrap.min.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles44\":{\"file\":\"bootstrapSwitch.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles45\":{\"file\":\"chartMenu.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles46\":{\"file\":\"chartbuilder.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles47\":{\"file\":\"data-generator.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles48\":{\"file\":\"downloadController.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles49\":{\"file\":\"downloadController_sermonDistributor.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles50\":{\"file\":\"dropbox.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles51\":{\"file\":\"dropboxupdater.php\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles52\":{\"file\":\"fb_loader.gif\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles53\":{\"file\":\"form.js\",\"path\":\"admin\\/custom\",\"notnew\":\"1\"},\"addfiles54\":{\"file\":\"form-password.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles55\":{\"file\":\"form-password.min.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles56\":{\"file\":\"google.jsapi.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles57\":{\"file\":\"iframeheight.min.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles58\":{\"file\":\"index.html\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles59\":{\"file\":\"jquery.mockjax.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles60\":{\"file\":\"mustache.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles61\":{\"file\":\"offline.min.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles62\":{\"file\":\"soundmanager2.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles63\":{\"file\":\"updatedropbox.js\",\"path\":\"admin\\/custom\",\"notnew\":\"0\"},\"addfiles64\":{\"file\":\"index.html\",\"path\":\"admin\\/custom\\/custem\",\"notnew\":\"0\"}}', '{\"addfolders0\":{\"folder\":\"compilerViews\",\"path\":\"admin\\/views\\/compiler\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"compiler\",\"path\":\"admin\\/\",\"rename\":\"0\"},\"addfolders2\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\",\"rename\":\"1\"},\"addfolders3\":{\"folder\":\"compilerViews\",\"path\":\"admin\\/custom\",\"rename\":\"0\"},\"addfolders4\":{\"folder\":\"compiler\",\"path\":\"admin\\/custom\",\"rename\":\"0\"},\"addfolders5\":{\"folder\":\"PHPExcel\",\"path\":\"admin\\/custom\",\"rename\":\"0\"},\"addfolders6\":{\"folder\":\"footable\",\"path\":\"admin\\/custom\",\"rename\":\"0\"},\"addfolders7\":{\"folder\":\"importViews\",\"path\":\"admin\\/custom\",\"rename\":\"0\"},\"addfolders8\":{\"folder\":\"soundmanager\",\"path\":\"admin\\/custom\",\"rename\":\"0\"},\"addfolders9\":{\"folder\":\"uikit\",\"path\":\"admin\\/custom\",\"rename\":\"0\"},\"addfolders10\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\",\"rename\":\"0\"}}', 12, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), +(14, '{\"addfiles0\":{\"file\":\"downloadController_local_file.php\",\"path\":\"\\/admin\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"downloadController_local_file.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders1\":{\"folder\":\"file_icon_vectors\",\"path\":\"\\/media\\/vector\",\"rename\":\"1\"},\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 13, '', 2, '2017-10-28 03:56:26', '2019-10-19 22:17:42', 6, '', '', '{}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib\\/vendor\\/\",\"path\":\"\\/libraries\\/phpseclib\\/\"}}'), (15, '{\"addfiles0\":{\"file\":\"chartMenu.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles1\":{\"file\":\"keynote-on-icon.png\",\"path\":\"\\/media\\/images\\/charts.png\",\"notnew\":\"0\"},\"addfiles2\":{\"file\":\"table.png\",\"path\":\"\\/media\\/images\\/tables.png\",\"notnew\":\"0\"},\"addfiles3\":{\"file\":\"fb_loader.gif\",\"path\":\"\\/media\\/images\\/load.gif\",\"notnew\":\"0\"},\"addfiles4\":{\"file\":\"giz.png\",\"path\":\"\\/media\\/images\\/cbp_box.png\",\"notnew\":\"0\"},\"addfiles5\":{\"file\":\"negativefinder.php\",\"path\":\"\\/admin\\/helpers\",\"notnew\":\"0\"},\"addfiles6\":{\"file\":\"negativefinder.php\",\"path\":\"\\/site\\/helpers\",\"notnew\":\"0\"},\"addfiles7\":{\"file\":\"sum.php\",\"path\":\"\\/admin\\/helpers\",\"notnew\":\"1\"},\"addfiles8\":{\"file\":\"sumcombine.php\",\"path\":\"\\/admin\\/helpers\",\"notnew\":\"1\"}}', '', 15, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), (16, '', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\",\"rename\":\"0\"}}', 16, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), -(17, '{\"addfiles0\":{\"file\":\"negativefinder_multi.php\",\"path\":\"\\/admin\\/helpers\\/negativefinder.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"jstorage.js\",\"path\":\"\\/media\\/js\"},\"addfiles2\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\"},\"addfiles3\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\"},\"addfiles4\":{\"file\":\"clinic.png\",\"path\":\"\\/media\\/images\\/facility.png\",\"notnew\":\"1\"},\"addfiles5\":{\"file\":\"loopArray.js\",\"path\":\"\\/media\\/js\\/loop.js\",\"notnew\":\"1\"},\"addfiles6\":{\"file\":\"marked.js\",\"path\":\"media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"custem\",\"path\":\"\\/admin\\/helpers\\/totals\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"js-marker-cluster\",\"path\":\"\\/media\\/\"}}', 18, '', 1, '2017-10-28 03:56:26', '2018-12-21 16:10:11', 4, '', '', '', ''), +(17, '{\"addfiles0\":{\"file\":\"negativefinder_multi.php\",\"path\":\"\\/admin\\/helpers\\/negativefinder.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"jstorage.js\",\"path\":\"\\/media\\/js\"},\"addfiles2\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\"},\"addfiles3\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\"},\"addfiles4\":{\"file\":\"clinic.png\",\"path\":\"\\/media\\/images\\/facility.png\",\"notnew\":\"1\"},\"addfiles5\":{\"file\":\"loopArray.js\",\"path\":\"\\/media\\/js\\/loop.js\",\"notnew\":\"1\"},\"addfiles6\":{\"file\":\"marked.js\",\"path\":\"media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"custem\",\"path\":\"\\/admin\\/helpers\\/totals\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"js-marker-cluster\",\"path\":\"\\/media\\/\"}}', 18, '', 2, '2017-10-28 03:56:26', '2018-12-21 16:10:11', 4, '', '', '', ''), (18, '{\"addfiles0\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"grid.png\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/custom\"},\"addfiles3\":{\"file\":\"base64.js\",\"path\":\"admin\\/custom\"},\"addfiles4\":{\"file\":\"marked.js\",\"path\":\"admin\\/custom\"},\"addfiles5\":{\"file\":\"timeago.js\",\"path\":\"admin\\/custom\"},\"addfiles6\":{\"file\":\"bootstrap-tab.js\",\"path\":\"admin\\/custom\"},\"addfiles7\":{\"file\":\"bootstrap.min.js\",\"path\":\"admin\\/custom\"},\"addfiles8\":{\"file\":\"bootstrapSwitch.js\",\"path\":\"admin\\/custom\"},\"addfiles9\":{\"file\":\"chartMenu.js\",\"path\":\"admin\\/custom\"},\"addfiles10\":{\"file\":\"chartbuilder.php\",\"path\":\"admin\\/custom\"},\"addfiles11\":{\"file\":\"data-generator.js\",\"path\":\"admin\\/custom\"},\"addfiles12\":{\"file\":\"downloadController.php\",\"path\":\"admin\\/custom\"},\"addfiles13\":{\"file\":\"fb_loader.gif\",\"path\":\"admin\\/custom\"},\"addfiles14\":{\"file\":\"form.js\",\"path\":\"admin\\/custom\",\"notnew\":\"1\"},\"addfiles15\":{\"file\":\"form-password.js\",\"path\":\"admin\\/custom\"},\"addfiles16\":{\"file\":\"form-password.min.js\",\"path\":\"admin\\/custom\"},\"addfiles17\":{\"file\":\"google.jsapi.js\",\"path\":\"admin\\/custom\"},\"addfiles18\":{\"file\":\"grid.png\",\"path\":\"admin\\/custom\"},\"addfiles19\":{\"file\":\"iframeheight.min.js\",\"path\":\"admin\\/custom\"},\"addfiles20\":{\"file\":\"index.html\",\"path\":\"admin\\/custom\"},\"addfiles21\":{\"file\":\"jquery.mockjax.js\",\"path\":\"admin\\/custom\"},\"addfiles22\":{\"file\":\"mustache.js\",\"path\":\"admin\\/custom\"},\"addfiles23\":{\"file\":\"offline.min.js\",\"path\":\"admin\\/custom\"},\"addfiles24\":{\"file\":\"marked.js\",\"path\":\"media\\/js\"},\"addfiles25\":{\"file\":\"timeago.js\",\"path\":\"media\\/js\"},\"addfiles26\":{\"file\":\"jstorage.min.js\",\"path\":\"media\\/js\"},\"addfiles27\":{\"file\":\"jquery.json.min.js\",\"path\":\"media\\/js\"},\"addfiles28\":{\"file\":\"strtotime.js\",\"path\":\"media\\/js\"},\"addfiles29\":{\"file\":\"jcb-banner.jpg\",\"path\":\"admin\\/assets\\/images\"}}', '{\"addfolders0\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"custem\",\"path\":\"admin\\/compiler\",\"rename\":\"1\"},\"addfolders2\":{\"folder\":\"custem\",\"path\":\"libraries\\/phpseclib3\",\"rename\":\"1\"},\"addfolders3\":{\"folder\":\"uikit-v2\",\"path\":\"admin\\/custom\"},\"addfolders4\":{\"folder\":\"uikit-v3\",\"path\":\"admin\\/custom\"},\"addfolders5\":{\"folder\":\"soundmanager\",\"path\":\"admin\\/custom\"},\"addfolders6\":{\"folder\":\"importViews\",\"path\":\"admin\\/custom\"},\"addfolders7\":{\"folder\":\"footable-v2\",\"path\":\"admin\\/custom\"},\"addfolders8\":{\"folder\":\"footable-v3\",\"path\":\"admin\\/custom\"},\"addfolders9\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\"}}', 17, '', 2, '2017-10-28 03:56:26', '2023-02-17 15:06:08', 3, '', '', '{\"addfilesfullpath0\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/helpers\\/compiler.php\",\"path\":\"\\/admin\\/helpers\\/\"},\"addfilesfullpath2\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/helpers\\/indenter.php\",\"path\":\"\\/admin\\/helpers\\/\"},\"addfilesfullpath9\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/default.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath10\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/description.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath11\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/vdm.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath12\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/SD.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath13\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/JCB.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath14\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\\/LICENSE.txt\",\"path\":\"LICENSE.txt\"}}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib3\\/vendor\\/\",\"path\":\"\\/libraries\\/phpseclib3\\/\"},\"addfoldersfullpath1\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/helpers\\/compiler\",\"path\":\"\\/admin\\/helpers\\/\"},\"addfoldersfullpath2\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/helpers\\/extrusion\",\"path\":\"\\/admin\\/helpers\\/\"},\"addfoldersfullpath3\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\",\"path\":\"\\/admin\\/compiler\\/\"}}'), -(19, '{\"addfiles0\":{\"file\":\"loader.gif\",\"path\":\"\\/media\\/images\\/loader.gif\",\"notnew\":\"0\"}}', '', 33, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), -(20, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 19, '', 1, '2017-10-28 03:56:26', '2018-06-22 20:35:55', 4, '', '', '', ''), -(21, '{\"addfiles0\":{\"file\":\"negativefinder_multi.php\",\"path\":\"\\/admin\\/helpers\\/negativefinder.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"negativefinder_multi.php\",\"path\":\"\\/site\\/helpers\\/negativefinder.php\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"base64.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"}}', '', 20, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), +(19, '{\"addfiles0\":{\"file\":\"loader.gif\",\"path\":\"\\/media\\/images\\/loader.gif\",\"notnew\":\"0\"}}', '', 33, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), +(20, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 19, '', 2, '2017-10-28 03:56:26', '2018-06-22 20:35:55', 4, '', '', '', ''), +(21, '{\"addfiles0\":{\"file\":\"negativefinder_multi.php\",\"path\":\"\\/admin\\/helpers\\/negativefinder.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"negativefinder_multi.php\",\"path\":\"\\/site\\/helpers\\/negativefinder.php\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"base64.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"}}', '', 20, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), (22, '{\"addfiles0\":{\"file\":\"negativefinder_multi.php\",\"path\":\"\\/admin\\/helpers\\/negativefinder.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"negativefinder_multi.php\",\"path\":\"\\/site\\/helpers\\/negativefinder.php\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"downloadController_local.php\",\"path\":\"\\/admin\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"downloadController_local.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles4\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles5\":{\"file\":\"base64.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles6\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles7\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\",\"rename\":\"0\"}}', 21, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), (23, '{\"addfiles0\":{\"file\":\"dropbox.php\",\"path\":\"\\/site\\/helpers\",\"notnew\":\"0\"},\"addfiles1\":{\"file\":\"dropboxupdater.php\",\"path\":\"\\/site\\/helpers\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"downloadController_sermonDistributor.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"}}', '{\"addfolders0\":{\"folder\":\"soundmanager\",\"path\":\"\\/media\\/\",\"rename\":\"0\"}}', 22, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), -(24, '{\"addfiles0\":{\"file\":\"negativefinder_multi.php\",\"path\":\"\\/admin\\/helpers\\/negativefinder.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"negativefinder_multi.php\",\"path\":\"\\/site\\/helpers\\/negativefinder.php\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"locationdata.php\",\"path\":\"\\/admin\\/helpers\\/componentbuilderfactory.php\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"locationdata.php\",\"path\":\"\\/site\\/helpers\\/componentbuilderfactory.php\",\"notnew\":\"1\"},\"addfiles4\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles5\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\"},\"addfiles6\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\"},\"addfiles7\":{\"file\":\"timeago.js\",\"path\":\"\\/media\\/js\"}}', '', 23, '', 1, '2017-10-28 03:56:26', '2018-04-04 15:50:01', 7, '', '', '', ''), -(25, '{\"addfiles0\":{\"file\":\"downloadController_local.php\",\"path\":\"\\/admin\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"downloadController_local.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\",\"rename\":\"0\"}}', 28, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), -(26, '{\"addfiles0\":{\"file\":\"negativefinder.php\",\"path\":\"\\/admin\\/helpers\",\"notnew\":\"0\"},\"addfiles1\":{\"file\":\"jstorage.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles2\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles3\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles4\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles5\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles6\":{\"file\":\"clinic.png\",\"path\":\"\\/media\\/images\\/facility.png\",\"notnew\":\"1\"},\"addfiles7\":{\"file\":\"loopArray.js\",\"path\":\"\\/media\\/js\\/loop.js\",\"notnew\":\"1\"},\"addfiles8\":{\"file\":\"downloadController_expertDB.php\",\"path\":\"\\/admin\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles9\":{\"file\":\"downloadController_expertDB.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles10\":{\"file\":\"confirmationController_expertDB.php\",\"path\":\"\\/site\\/controllers\\/confirm.php\",\"notnew\":\"1\"}}', '{\"addfolders0\":{\"folder\":\"custem\",\"path\":\"\\/admin\\/helpers\\/locker\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"js-marker-cluster\",\"path\":\"\\/media\\/\",\"rename\":\"0\"}}', 24, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), -(27, '{\"addfiles0\":{\"file\":\"DownloadControllerAdmin.php\",\"path\":\"admin\\/src\\/Controller\\/DownloadController.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"DownloadControllerSite.php\",\"path\":\"site\\/src\\/Controller\\/DownloadController.php\",\"notnew\":\"1\"}}', '{}', 25, '', 1, '2017-10-28 03:56:26', '2024-09-18 23:34:35', 6, '', '', '{}', '{}'), -(28, '', '', 26, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), +(24, '{\"addfiles0\":{\"file\":\"negativefinder_multi.php\",\"path\":\"\\/admin\\/helpers\\/negativefinder.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"negativefinder_multi.php\",\"path\":\"\\/site\\/helpers\\/negativefinder.php\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"locationdata.php\",\"path\":\"\\/admin\\/helpers\\/componentbuilderfactory.php\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"locationdata.php\",\"path\":\"\\/site\\/helpers\\/componentbuilderfactory.php\",\"notnew\":\"1\"},\"addfiles4\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles5\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\"},\"addfiles6\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\"},\"addfiles7\":{\"file\":\"timeago.js\",\"path\":\"\\/media\\/js\"}}', '', 23, '', 2, '2017-10-28 03:56:26', '2018-04-04 15:50:01', 7, '', '', '', ''), +(25, '{\"addfiles0\":{\"file\":\"downloadController_local.php\",\"path\":\"\\/admin\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"downloadController_local.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\",\"rename\":\"0\"}}', 28, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), +(26, '{\"addfiles0\":{\"file\":\"negativefinder.php\",\"path\":\"\\/admin\\/helpers\",\"notnew\":\"0\"},\"addfiles1\":{\"file\":\"jstorage.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles2\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles3\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles4\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles5\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles6\":{\"file\":\"clinic.png\",\"path\":\"\\/media\\/images\\/facility.png\",\"notnew\":\"1\"},\"addfiles7\":{\"file\":\"loopArray.js\",\"path\":\"\\/media\\/js\\/loop.js\",\"notnew\":\"1\"},\"addfiles8\":{\"file\":\"downloadController_expertDB.php\",\"path\":\"\\/admin\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles9\":{\"file\":\"downloadController_expertDB.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles10\":{\"file\":\"confirmationController_expertDB.php\",\"path\":\"\\/site\\/controllers\\/confirm.php\",\"notnew\":\"1\"}}', '{\"addfolders0\":{\"folder\":\"custem\",\"path\":\"\\/admin\\/helpers\\/locker\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"js-marker-cluster\",\"path\":\"\\/media\\/\",\"rename\":\"0\"}}', 24, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), +(27, '{\"addfiles0\":{\"file\":\"DownloadControllerAdmin.php\",\"path\":\"admin\\/src\\/Controller\\/DownloadController.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"DownloadControllerSite.php\",\"path\":\"site\\/src\\/Controller\\/DownloadController.php\",\"notnew\":\"1\"}}', '{}', 25, '', 2, '2017-10-28 03:56:26', '2024-09-18 23:34:35', 6, '', '', '{}', '{}'), +(28, '', '', 26, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), (29, '{\"addfiles0\":{\"file\":\"negativefinder.php\",\"path\":\"\\/admin\\/helpers\",\"notnew\":\"0\"},\"addfiles1\":{\"file\":\"jstorage.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles2\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles3\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles4\":{\"file\":\"clinic.png\",\"path\":\"\\/media\\/images\\/facility.png\",\"notnew\":\"1\"},\"addfiles5\":{\"file\":\"loopArray.js\",\"path\":\"\\/media\\/js\\/loop.js\",\"notnew\":\"1\"}}', '{\"addfolders0\":{\"folder\":\"custem\",\"path\":\"\\/admin\\/helpers\\/totals\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"js-marker-cluster\",\"path\":\"\\/media\\/\",\"rename\":\"0\"}}', 27, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), -(30, '{\"addfiles0\":{\"file\":\"negativefinder_multi.php\",\"path\":\"\\/admin\\/helpers\\/negativefinder.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"negativefinder_multi.php\",\"path\":\"\\/site\\/helpers\\/negativefinder.php\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"downloadController_local.php\",\"path\":\"\\/admin\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"downloadController_local.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles4\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles5\":{\"file\":\"base64.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles6\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles7\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\",\"rename\":\"0\"}}', 29, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), -(31, '{\"addfiles0\":{\"file\":\"downloadController_local.php\",\"path\":\"\\/admin\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"downloadController_local.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"},\"addfolders1\":{\"folder\":\"file_icon_vectors\",\"path\":\"\\/media\\/vector\",\"rename\":\"1\"}}', 30, '', 1, '2017-10-28 03:56:26', '2019-10-01 11:59:32', 3, '', '', '{}', '{}'), +(30, '{\"addfiles0\":{\"file\":\"negativefinder_multi.php\",\"path\":\"\\/admin\\/helpers\\/negativefinder.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"negativefinder_multi.php\",\"path\":\"\\/site\\/helpers\\/negativefinder.php\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"downloadController_local.php\",\"path\":\"\\/admin\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"downloadController_local.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles4\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles5\":{\"file\":\"base64.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles6\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles7\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\",\"rename\":\"0\"}}', 29, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), +(31, '{\"addfiles0\":{\"file\":\"downloadController_local.php\",\"path\":\"\\/admin\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"downloadController_local.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"},\"addfolders1\":{\"folder\":\"file_icon_vectors\",\"path\":\"\\/media\\/vector\",\"rename\":\"1\"}}', 30, '', 2, '2017-10-28 03:56:26', '2019-10-01 11:59:32', 3, '', '', '{}', '{}'), (32, '{\"addfiles0\":{\"file\":\"negativefinder.php\",\"path\":\"\\/admin\\/helpers\",\"notnew\":\"0\"},\"addfiles1\":{\"file\":\"jstorage.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles2\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles3\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\",\"notnew\":\"0\"},\"addfiles4\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles5\":{\"file\":\"clinic.png\",\"path\":\"\\/media\\/images\\/facility.png\",\"notnew\":\"1\"},\"addfiles6\":{\"file\":\"loopArray.js\",\"path\":\"\\/media\\/js\\/loop.js\",\"notnew\":\"1\"},\"addfiles7\":{\"file\":\"downloadController_expertDB.php\",\"path\":\"\\/admin\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles8\":{\"file\":\"downloadController_expertDB.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles9\":{\"file\":\"confirmationController_expertDB.php\",\"path\":\"\\/site\\/controllers\\/confirm.php\",\"notnew\":\"1\"}}', '{\"addfolders0\":{\"folder\":\"custem\",\"path\":\"\\/admin\\/helpers\\/locker\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"js-marker-cluster\",\"path\":\"\\/media\\/\",\"rename\":\"0\"}}', 31, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), -(33, '{\"addfiles0\":{\"file\":\"marked.js\",\"path\":\"media\\/js\",\"notnew\":\"0\"}}', '', 32, '', 1, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), -(34, '{\"addfiles0\":{\"file\":\"ajax-loader.gif\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"grid.png\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"}}', '', 35, '', 1, '2018-02-26 15:27:39', '2018-02-27 21:41:50', 6, '', 1, '', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/vdm_io\\/vendor\\/\",\"path\":\"libraries\\/vdm_io\\/\"}}'), -(35, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles2\":{\"file\":\"jstorage.js\",\"path\":\"\\/media\\/js\"},\"addfiles3\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\"},\"addfiles4\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 7, '', 1, '2018-06-22 20:39:10', '2018-09-01 19:44:08', 3, '', 2, '', ''), -(37, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 38, '', 1, '2018-08-06 14:56:04', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(38, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 39, '', 1, '2018-08-10 13:06:34', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(39, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 40, '', 1, '2018-08-21 13:15:04', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(40, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 41, '', 1, '2018-08-21 19:33:15', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(41, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 42, '', 1, '2018-09-12 00:41:47', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(42, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 43, '', 1, '2018-09-12 19:55:57', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(43, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 44, '', 1, '2018-10-09 16:09:37', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(44, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 45, '', 1, '2018-10-15 14:33:08', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(45, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 46, '', 1, '2018-11-24 01:54:02', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(46, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 47, '', 1, '2018-12-17 13:44:13', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(47, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles2\":{\"file\":\"jstorage.js\",\"path\":\"\\/media\\/js\"},\"addfiles3\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\"},\"addfiles4\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 48, '', 1, '2019-02-04 21:30:52', '2018-09-01 19:44:08', 1, '', 2, '', ''), -(48, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 49, '', 1, '2019-02-06 20:27:41', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(49, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 50, '', 1, '2019-02-12 20:06:53', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(50, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 51, '', 1, '2019-02-12 21:03:52', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(51, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 52, '', 1, '2019-02-12 21:05:31', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(52, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 53, '', 1, '2019-02-12 21:07:27', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(53, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 54, '', 1, '2019-02-12 21:08:53', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(54, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 55, '', 1, '2019-02-12 21:09:55', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(55, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 56, '', 1, '2019-02-12 21:10:55', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(56, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 57, '', 1, '2019-02-12 21:12:05', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(57, '{\"addfiles0\":{\"file\":\"downloadController_mymakita.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"warranty-template.jpg\",\"path\":\"\\/site\\/assets\\/images\\/m6eKpHEivVR3xYnXZwD42BTQombLFbmY.jpg\"}}', '{\"addfolders0\":{\"folder\":\"jQuery-Autocomplete-1.4.11\",\"path\":\"\\/media\\/autocomplete\",\"rename\":\"1\"}}', 58, '', 1, '2019-02-12 21:13:15', '2020-06-14 15:49:28', 6, '', 2, '{}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib\\/vendor\\/\",\"path\":\"\\/libraries\\/phpseclib\\/\"}}'), -(58, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 59, '', 1, '2019-02-12 21:14:30', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(59, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 60, '', 1, '2019-05-07 20:25:06', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(60, '{\"addfiles0\":{\"file\":\"downloadController_local_file.php\",\"path\":\"\\/admin\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"downloadController_local_file.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 62, '', 1, '2019-09-25 12:57:04', '2019-10-16 01:07:26', 6, '', 3, '{}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib\\/vendor\\/\",\"path\":\"\\/libraries\\/phpseclib\\/\"}}'), -(61, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 63, '', 1, '2019-10-14 13:09:45', '2019-10-16 01:06:57', 4, '', 4, '{}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib\\/vendor\\/\",\"path\":\"\\/libraries\\/phpseclib\\/\"}}'), -(62, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles2\":{\"file\":\"jstorage.js\",\"path\":\"\\/media\\/js\"},\"addfiles3\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\"},\"addfiles4\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 64, '', 1, '2020-02-22 10:08:00', '2018-09-01 19:44:08', 1, '', 2, '', ''), -(63, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 65, '', 1, '2020-02-22 16:56:44', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(64, '{\"addfiles0\":{\"file\":\"marked.js\",\"path\":\"media\\/js\"}}', '{}', 66, '', 1, '2017-10-28 03:56:26', '2020-02-25 12:11:24', 3, '', '', '{}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib\\/vendor\\/\",\"path\":\"\\/libraries\\/phpseclib\\/\"}}'), -(65, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 67, '', 1, '2020-03-15 15:10:46', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(66, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles2\":{\"file\":\"jstorage.js\",\"path\":\"\\/media\\/js\"},\"addfiles3\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\"},\"addfiles4\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 68, '', 1, '2020-05-22 10:28:48', '2018-09-01 19:44:08', 1, '', 2, '', ''), -(67, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 69, '', 1, '2020-05-22 10:40:28', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(68, '{}', '{}', 70, '', 1, '2020-06-27 20:06:25', '2020-06-27 20:27:57', 2, '', 2, '{}', '{}'), -(69, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles2\":{\"file\":\"jstorage.js\",\"path\":\"\\/media\\/js\"},\"addfiles3\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\"},\"addfiles4\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 71, '', 1, '2020-07-03 13:47:05', '2018-09-01 19:44:08', 1, '', 2, '', ''), -(70, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 72, '', 1, '2020-07-03 15:40:40', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(71, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 73, '', 1, '2020-07-05 02:26:09', '0000-00-00 00:00:00', 1, '', 2, '', ''), -(74, '{\"addfiles0\":{\"file\":\"dropbox.php\",\"path\":\"\\/site\\/helpers\"},\"addfiles1\":{\"file\":\"dropboxupdater.php\",\"path\":\"\\/site\\/helpers\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"downloadController_sermonDistributor.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles4\":{\"file\":\"timeago.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"soundmanager\",\"path\":\"\\/media\\/\"},\"addfolders1\":{\"folder\":\"jplayer\",\"path\":\"\\/media\\/\"}}', 83, '', 1, '2024-01-16 07:58:01', '2018-03-03 21:17:49', 1, '', 5, '', ''), -(75, '{\"addfiles0\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\"},\"addfiles1\":{\"file\":\"icon.png\",\"path\":\"\\/media\\/images\\/\"},\"addfiles2\":{\"file\":\"ajax.gif\",\"path\":\"\\/media\\/images\\/\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{}', 84, '', 1, '2024-01-21 09:56:47', '2023-07-26 09:39:22', 1, '', 6, '{}', '{}'), -(76, '{\"addfiles0\":{\"file\":\"JCB_SECURITY.md\",\"path\":\"\\/SECURITY.md\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"JCB_CONTRIBUTING.md\",\"path\":\"\\/.github\\/CONTRIBUTING.md\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"JCB_SUPPORT.md\",\"path\":\"\\/.github\\/SUPPORT.md\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"JCB_ISSUE_TEMPLATE.md\",\"path\":\"\\/.github\\/ISSUE_TEMPLATE.md\",\"notnew\":\"1\"},\"addfiles4\":{\"file\":\"JCB_PULL_REQUEST_TEMPLATE.md\",\"path\":\"\\/.github\\/PULL_REQUEST_TEMPLATE.md\",\"notnew\":\"1\"},\"addfiles5\":{\"file\":\"JCB_FUNDING.yml\",\"path\":\"\\/.github\\/FUNDING.yml\",\"notnew\":\"1\"},\"addfiles6\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles7\":{\"file\":\"grid.png\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles8\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/custom\"},\"addfiles9\":{\"file\":\"base64.js\",\"path\":\"admin\\/custom\"},\"addfiles10\":{\"file\":\"marked.js\",\"path\":\"admin\\/custom\"},\"addfiles11\":{\"file\":\"timeago.js\",\"path\":\"admin\\/custom\"},\"addfiles12\":{\"file\":\"bootstrap-tab.js\",\"path\":\"admin\\/custom\"},\"addfiles13\":{\"file\":\"bootstrap.min.js\",\"path\":\"admin\\/custom\"},\"addfiles14\":{\"file\":\"bootstrapSwitch.js\",\"path\":\"admin\\/custom\"},\"addfiles15\":{\"file\":\"chartMenu.js\",\"path\":\"admin\\/custom\"},\"addfiles16\":{\"file\":\"chartbuilder.php\",\"path\":\"admin\\/custom\"},\"addfiles17\":{\"file\":\"data-generator.js\",\"path\":\"admin\\/custom\"},\"addfiles18\":{\"file\":\"downloadController.php\",\"path\":\"admin\\/custom\"},\"addfiles19\":{\"file\":\"DownloadControllerAdmin.php\",\"path\":\"admin\\/custom\"},\"addfiles20\":{\"file\":\"DownloadControllerSite.php\",\"path\":\"admin\\/custom\"},\"addfiles21\":{\"file\":\"fb_loader.gif\",\"path\":\"admin\\/custom\"},\"addfiles22\":{\"file\":\"form.js\",\"path\":\"admin\\/custom\",\"notnew\":\"1\"},\"addfiles23\":{\"file\":\"form-password.js\",\"path\":\"admin\\/custom\"},\"addfiles24\":{\"file\":\"form-password.min.js\",\"path\":\"admin\\/custom\"},\"addfiles25\":{\"file\":\"google.jsapi.js\",\"path\":\"admin\\/custom\"},\"addfiles26\":{\"file\":\"grid.png\",\"path\":\"admin\\/custom\"},\"addfiles27\":{\"file\":\"iframeheight.min.js\",\"path\":\"admin\\/custom\"},\"addfiles28\":{\"file\":\"index.html\",\"path\":\"admin\\/custom\"},\"addfiles29\":{\"file\":\"jquery.mockjax.js\",\"path\":\"admin\\/custom\"},\"addfiles30\":{\"file\":\"mustache.js\",\"path\":\"admin\\/custom\"},\"addfiles31\":{\"file\":\"offline.min.js\",\"path\":\"admin\\/custom\"},\"addfiles32\":{\"file\":\"marked.js\",\"path\":\"media\\/js\"},\"addfiles33\":{\"file\":\"timeago.js\",\"path\":\"media\\/js\"},\"addfiles34\":{\"file\":\"jstorage.min.js\",\"path\":\"media\\/js\"},\"addfiles35\":{\"file\":\"jquery.json.min.js\",\"path\":\"media\\/js\"},\"addfiles36\":{\"file\":\"strtotime.js\",\"path\":\"media\\/js\"},\"addfiles37\":{\"file\":\"jcb-banner.jpg\",\"path\":\"admin\\/assets\\/images\"}}', '{\"addfolders0\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"custem\",\"path\":\"admin\\/compiler\",\"rename\":\"1\"},\"addfolders2\":{\"folder\":\"custem\",\"path\":\"libraries\\/phpseclib3\",\"rename\":\"1\"},\"addfolders3\":{\"folder\":\"custem\",\"path\":\"images\\/vdm\",\"rename\":\"1\"},\"addfolders4\":{\"folder\":\"custem\",\"path\":\"images\\/vdm\\/icon\",\"rename\":\"1\"},\"addfolders5\":{\"folder\":\"uikit-v2\",\"path\":\"admin\\/custom\"},\"addfolders6\":{\"folder\":\"uikit-v3\",\"path\":\"admin\\/custom\"},\"addfolders7\":{\"folder\":\"soundmanager\",\"path\":\"admin\\/custom\"},\"addfolders8\":{\"folder\":\"importViews\",\"path\":\"admin\\/custom\"},\"addfolders9\":{\"folder\":\"footable-v2\",\"path\":\"admin\\/custom\"},\"addfolders10\":{\"folder\":\"footable-v3\",\"path\":\"admin\\/custom\"},\"addfolders11\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\"}}', 85, '', 1, '2024-01-25 14:33:10', '2024-09-19 22:31:14', 6, '', 7, '{\"addfilesfullpath0\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/default.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath1\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_basic.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath2\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/description.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath3\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/vdm.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath4\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/SD.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath5\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/JCB.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath6\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\\/LICENSE.txt\",\"path\":\"LICENSE.txt\"},\"addfilesfullpath7\":{\"filepath\":\"JPATH_SITE\\/images\\/vdm\\/demo500.jpg\",\"path\":\"\\/images\\/vdm\\/\"},\"addfilesfullpath8\":{\"filepath\":\"JPATH_SITE\\/images\\/vdm\\/icon\\/look.png\",\"path\":\"\\/images\\/vdm\\/icon\\/\"},\"addfilesfullpath11\":{\"filepath\":\"JPATH_SITE\\/images\\/vdm\\/icon\\/look_add.png\",\"path\":\"\\/images\\/vdm\\/icon\\/\"},\"addfilesfullpath10\":{\"filepath\":\"JPATH_SITE\\/images\\/vdm\\/icon\\/file.png\",\"path\":\"\\/images\\/vdm\\/icon\\/\"},\"addfilesfullpath9\":{\"filepath\":\"JPATH_SITE\\/images\\/vdm\\/icon\\/detail.png\",\"path\":\"\\/images\\/vdm\\/icon\\/\"}}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib3\\/vendor\\/\",\"path\":\"\\/libraries\\/phpseclib3\\/\"},\"addfoldersfullpath1\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfoldersfullpath2\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_4\",\"path\":\"\\/admin\\/compiler\\/\"}}'), -(77, '{\"addfiles0\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\"},\"addfiles1\":{\"file\":\"icon.png\",\"path\":\"\\/media\\/images\\/\"},\"addfiles2\":{\"file\":\"ajax.gif\",\"path\":\"\\/media\\/images\\/\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{}', 87, '', 1, '2024-03-07 12:51:17', '2023-07-26 09:39:22', 1, '', 6, '{}', '{}'), -(78, '{\"addfiles0\":{\"file\":\"dropbox.php\",\"path\":\"\\/site\\/helpers\"},\"addfiles1\":{\"file\":\"dropboxupdater.php\",\"path\":\"\\/site\\/helpers\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"downloadController_sermonDistributor.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles4\":{\"file\":\"timeago.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"soundmanager\",\"path\":\"\\/media\\/\"},\"addfolders1\":{\"folder\":\"jplayer\",\"path\":\"\\/media\\/\"}}', 88, '', 1, '2024-03-07 13:03:22', '2018-03-03 21:17:49', 1, '', 5, '', ''), -(79, '{\"addfiles0\":{\"file\":\"JCB_SECURITY.md\",\"path\":\"\\/SECURITY.md\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"JCB_CONTRIBUTING.md\",\"path\":\"\\/.github\\/CONTRIBUTING.md\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"JCB_SUPPORT.md\",\"path\":\"\\/.github\\/SUPPORT.md\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"JCB_ISSUE_TEMPLATE.md\",\"path\":\"\\/.github\\/ISSUE_TEMPLATE.md\",\"notnew\":\"1\"},\"addfiles4\":{\"file\":\"JCB_PULL_REQUEST_TEMPLATE.md\",\"path\":\"\\/.github\\/PULL_REQUEST_TEMPLATE.md\",\"notnew\":\"1\"},\"addfiles5\":{\"file\":\"JCB_FUNDING.yml\",\"path\":\"\\/.github\\/FUNDING.yml\",\"notnew\":\"1\"},\"addfiles6\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles7\":{\"file\":\"grid.png\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles8\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/custom\"},\"addfiles9\":{\"file\":\"base64.js\",\"path\":\"admin\\/custom\"},\"addfiles10\":{\"file\":\"marked.js\",\"path\":\"admin\\/custom\"},\"addfiles11\":{\"file\":\"timeago.js\",\"path\":\"admin\\/custom\"},\"addfiles12\":{\"file\":\"bootstrap-tab.js\",\"path\":\"admin\\/custom\"},\"addfiles13\":{\"file\":\"bootstrap.min.js\",\"path\":\"admin\\/custom\"},\"addfiles14\":{\"file\":\"bootstrapSwitch.js\",\"path\":\"admin\\/custom\"},\"addfiles15\":{\"file\":\"chartMenu.js\",\"path\":\"admin\\/custom\"},\"addfiles16\":{\"file\":\"chartbuilder.php\",\"path\":\"admin\\/custom\"},\"addfiles17\":{\"file\":\"data-generator.js\",\"path\":\"admin\\/custom\"},\"addfiles18\":{\"file\":\"downloadController.php\",\"path\":\"admin\\/custom\"},\"addfiles19\":{\"file\":\"DownloadControllerAdmin.php\",\"path\":\"admin\\/custom\"},\"addfiles20\":{\"file\":\"DownloadControllerSite.php\",\"path\":\"admin\\/custom\"},\"addfiles21\":{\"file\":\"fb_loader.gif\",\"path\":\"admin\\/custom\"},\"addfiles22\":{\"file\":\"form.js\",\"path\":\"admin\\/custom\",\"notnew\":\"1\"},\"addfiles23\":{\"file\":\"form-password.js\",\"path\":\"admin\\/custom\"},\"addfiles24\":{\"file\":\"form-password.min.js\",\"path\":\"admin\\/custom\"},\"addfiles25\":{\"file\":\"google.jsapi.js\",\"path\":\"admin\\/custom\"},\"addfiles26\":{\"file\":\"grid.png\",\"path\":\"admin\\/custom\"},\"addfiles27\":{\"file\":\"iframeheight.min.js\",\"path\":\"admin\\/custom\"},\"addfiles28\":{\"file\":\"index.html\",\"path\":\"admin\\/custom\"},\"addfiles29\":{\"file\":\"jquery.mockjax.js\",\"path\":\"admin\\/custom\"},\"addfiles30\":{\"file\":\"mustache.js\",\"path\":\"admin\\/custom\"},\"addfiles31\":{\"file\":\"offline.min.js\",\"path\":\"admin\\/custom\"},\"addfiles32\":{\"file\":\"marked.js\",\"path\":\"media\\/js\"},\"addfiles33\":{\"file\":\"timeago.js\",\"path\":\"media\\/js\"},\"addfiles34\":{\"file\":\"jstorage.min.js\",\"path\":\"media\\/js\"},\"addfiles35\":{\"file\":\"jquery.json.min.js\",\"path\":\"media\\/js\"},\"addfiles36\":{\"file\":\"strtotime.js\",\"path\":\"media\\/js\"},\"addfiles37\":{\"file\":\"jcb-banner.jpg\",\"path\":\"admin\\/assets\\/images\"}}', '{\"addfolders0\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"custem\",\"path\":\"admin\\/compiler\",\"rename\":\"1\"},\"addfolders2\":{\"folder\":\"custem\",\"path\":\"libraries\\/phpseclib3\",\"rename\":\"1\"},\"addfolders3\":{\"folder\":\"custem\",\"path\":\"images\\/vdm\",\"rename\":\"1\"},\"addfolders4\":{\"folder\":\"custem\",\"path\":\"images\\/vdm\\/icon\",\"rename\":\"1\"},\"addfolders5\":{\"folder\":\"uikit-v2\",\"path\":\"admin\\/custom\"},\"addfolders6\":{\"folder\":\"uikit-v3\",\"path\":\"admin\\/custom\"},\"addfolders7\":{\"folder\":\"soundmanager\",\"path\":\"admin\\/custom\"},\"addfolders8\":{\"folder\":\"importViews\",\"path\":\"admin\\/custom\"},\"addfolders9\":{\"folder\":\"footable-v2\",\"path\":\"admin\\/custom\"},\"addfolders10\":{\"folder\":\"footable-v3\",\"path\":\"admin\\/custom\"},\"addfolders11\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\"}}', 89, '', 1, '2024-03-08 11:34:35', '2024-09-19 22:31:02', 6, '', 7, '{\"addfilesfullpath0\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/default.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath1\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_basic.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath2\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/description.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath3\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/vdm.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath4\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/SD.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath5\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/JCB.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath6\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\\/LICENSE.txt\",\"path\":\"LICENSE.txt\"},\"addfilesfullpath7\":{\"filepath\":\"JPATH_SITE\\/images\\/vdm\\/demo500.jpg\",\"path\":\"\\/images\\/vdm\\/\"},\"addfilesfullpath8\":{\"filepath\":\"JPATH_SITE\\/images\\/vdm\\/icon\\/look.png\",\"path\":\"\\/images\\/vdm\\/icon\\/\"},\"addfilesfullpath11\":{\"filepath\":\"JPATH_SITE\\/images\\/vdm\\/icon\\/look_add.png\",\"path\":\"\\/images\\/vdm\\/icon\\/\"},\"addfilesfullpath10\":{\"filepath\":\"JPATH_SITE\\/images\\/vdm\\/icon\\/file.png\",\"path\":\"\\/images\\/vdm\\/icon\\/\"},\"addfilesfullpath9\":{\"filepath\":\"JPATH_SITE\\/images\\/vdm\\/icon\\/detail.png\",\"path\":\"\\/images\\/vdm\\/icon\\/\"}}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib3\\/vendor\\/\",\"path\":\"\\/libraries\\/phpseclib3\\/\"},\"addfoldersfullpath1\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfoldersfullpath2\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_4\",\"path\":\"\\/admin\\/compiler\\/\"}}'); +(33, '{\"addfiles0\":{\"file\":\"marked.js\",\"path\":\"media\\/js\",\"notnew\":\"0\"}}', '', 32, '', 2, '2017-10-28 03:56:26', '0000-00-00 00:00:00', 2, '', '', '', ''), +(34, '{\"addfiles0\":{\"file\":\"ajax-loader.gif\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"grid.png\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"}}', '', 35, '', 2, '2018-02-26 15:27:39', '2018-02-27 21:41:50', 6, '', 1, '', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/vdm_io\\/vendor\\/\",\"path\":\"libraries\\/vdm_io\\/\"}}'), +(35, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles2\":{\"file\":\"jstorage.js\",\"path\":\"\\/media\\/js\"},\"addfiles3\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\"},\"addfiles4\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 7, '', 2, '2018-06-22 20:39:10', '2018-09-01 19:44:08', 3, '', 2, '', ''), +(37, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 38, '', 2, '2018-08-06 14:56:04', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(38, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 39, '', 2, '2018-08-10 13:06:34', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(39, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 40, '', 2, '2018-08-21 13:15:04', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(40, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 41, '', 2, '2018-08-21 19:33:15', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(41, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 42, '', 2, '2018-09-12 00:41:47', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(42, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 43, '', 2, '2018-09-12 19:55:57', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(43, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 44, '', 2, '2018-10-09 16:09:37', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(44, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 45, '', 2, '2018-10-15 14:33:08', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(45, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 46, '', 2, '2018-11-24 01:54:02', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(46, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 47, '', 2, '2018-12-17 13:44:13', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(47, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles2\":{\"file\":\"jstorage.js\",\"path\":\"\\/media\\/js\"},\"addfiles3\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\"},\"addfiles4\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 48, '', 2, '2019-02-04 21:30:52', '2018-09-01 19:44:08', 1, '', 2, '', ''), +(48, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 49, '', 2, '2019-02-06 20:27:41', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(49, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 50, '', 2, '2019-02-12 20:06:53', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(50, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 51, '', 2, '2019-02-12 21:03:52', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(51, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 52, '', 2, '2019-02-12 21:05:31', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(52, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 53, '', 2, '2019-02-12 21:07:27', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(53, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 54, '', 2, '2019-02-12 21:08:53', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(54, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 55, '', 2, '2019-02-12 21:09:55', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(55, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 56, '', 2, '2019-02-12 21:10:55', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(56, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 57, '', 2, '2019-02-12 21:12:05', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(57, '{\"addfiles0\":{\"file\":\"downloadController_mymakita.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"warranty-template.jpg\",\"path\":\"\\/site\\/assets\\/images\\/m6eKpHEivVR3xYnXZwD42BTQombLFbmY.jpg\"}}', '{\"addfolders0\":{\"folder\":\"jQuery-Autocomplete-1.4.11\",\"path\":\"\\/media\\/autocomplete\",\"rename\":\"1\"}}', 58, '', 2, '2019-02-12 21:13:15', '2020-06-14 15:49:28', 6, '', 2, '{}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib\\/vendor\\/\",\"path\":\"\\/libraries\\/phpseclib\\/\"}}'), +(58, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 59, '', 2, '2019-02-12 21:14:30', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(59, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 60, '', 2, '2019-05-07 20:25:06', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(60, '{\"addfiles0\":{\"file\":\"downloadController_local_file.php\",\"path\":\"\\/admin\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"downloadController_local_file.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 62, '', 2, '2019-09-25 12:57:04', '2019-10-16 01:07:26', 6, '', 3, '{}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib\\/vendor\\/\",\"path\":\"\\/libraries\\/phpseclib\\/\"}}'), +(61, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 63, '', 2, '2019-10-14 13:09:45', '2019-10-16 01:06:57', 4, '', 4, '{}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib\\/vendor\\/\",\"path\":\"\\/libraries\\/phpseclib\\/\"}}'), +(62, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles2\":{\"file\":\"jstorage.js\",\"path\":\"\\/media\\/js\"},\"addfiles3\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\"},\"addfiles4\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 64, '', 2, '2020-02-22 10:08:00', '2018-09-01 19:44:08', 1, '', 2, '', ''), +(63, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 65, '', 2, '2020-02-22 16:56:44', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(64, '{\"addfiles0\":{\"file\":\"marked.js\",\"path\":\"media\\/js\"}}', '{}', 66, '', 2, '2017-10-28 03:56:26', '2020-02-25 12:11:24', 3, '', '', '{}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib\\/vendor\\/\",\"path\":\"\\/libraries\\/phpseclib\\/\"}}'), +(65, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 67, '', 2, '2020-03-15 15:10:46', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(66, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles2\":{\"file\":\"jstorage.js\",\"path\":\"\\/media\\/js\"},\"addfiles3\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\"},\"addfiles4\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 68, '', 2, '2020-05-22 10:28:48', '2018-09-01 19:44:08', 1, '', 2, '', ''), +(67, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 69, '', 2, '2020-05-22 10:40:28', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(68, '{}', '{}', 70, '', 2, '2020-06-27 20:06:25', '2020-06-27 20:27:57', 2, '', 2, '{}', '{}'), +(69, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles2\":{\"file\":\"jstorage.js\",\"path\":\"\\/media\\/js\"},\"addfiles3\":{\"file\":\"jstorage.min.js\",\"path\":\"\\/media\\/js\"},\"addfiles4\":{\"file\":\"jquery.json.min.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 71, '', 2, '2020-07-03 13:47:05', '2018-09-01 19:44:08', 1, '', 2, '', ''), +(70, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 72, '', 2, '2020-07-03 15:40:40', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(71, '{\"addfiles0\":{\"file\":\"A4.print.css\",\"path\":\"\\/media\\/css\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"wideimage\",\"path\":\"\\/admin\\/helpers\\/\"}}', 73, '', 2, '2020-07-05 02:26:09', '0000-00-00 00:00:00', 1, '', 2, '', ''), +(74, '{\"addfiles0\":{\"file\":\"dropbox.php\",\"path\":\"\\/site\\/helpers\"},\"addfiles1\":{\"file\":\"dropboxupdater.php\",\"path\":\"\\/site\\/helpers\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"downloadController_sermonDistributor.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles4\":{\"file\":\"timeago.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"soundmanager\",\"path\":\"\\/media\\/\"},\"addfolders1\":{\"folder\":\"jplayer\",\"path\":\"\\/media\\/\"}}', 83, '', 2, '2024-01-16 07:58:01', '2018-03-03 21:17:49', 1, '', 5, '', ''), +(75, '{\"addfiles0\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\"},\"addfiles1\":{\"file\":\"icon.png\",\"path\":\"\\/media\\/images\\/\"},\"addfiles2\":{\"file\":\"ajax.gif\",\"path\":\"\\/media\\/images\\/\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{}', 84, '', 2, '2024-01-21 09:56:47', '2023-07-26 09:39:22', 1, '', 6, '{}', '{}'), +(76, '{\"addfiles0\":{\"file\":\"JCB_SECURITY.md\",\"path\":\"\\/SECURITY.md\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"JCB_CONTRIBUTING.md\",\"path\":\"\\/.github\\/CONTRIBUTING.md\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"JCB_SUPPORT.md\",\"path\":\"\\/.github\\/SUPPORT.md\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"JCB_ISSUE_TEMPLATE.md\",\"path\":\"\\/.github\\/ISSUE_TEMPLATE.md\",\"notnew\":\"1\"},\"addfiles4\":{\"file\":\"JCB_PULL_REQUEST_TEMPLATE.md\",\"path\":\"\\/.github\\/PULL_REQUEST_TEMPLATE.md\",\"notnew\":\"1\"},\"addfiles5\":{\"file\":\"JCB_FUNDING.yml\",\"path\":\"\\/.github\\/FUNDING.yml\",\"notnew\":\"1\"},\"addfiles6\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles7\":{\"file\":\"grid.png\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles8\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/custom\"},\"addfiles9\":{\"file\":\"base64.js\",\"path\":\"admin\\/custom\"},\"addfiles10\":{\"file\":\"marked.js\",\"path\":\"admin\\/custom\"},\"addfiles11\":{\"file\":\"timeago.js\",\"path\":\"admin\\/custom\"},\"addfiles12\":{\"file\":\"bootstrap-tab.js\",\"path\":\"admin\\/custom\"},\"addfiles13\":{\"file\":\"bootstrap.min.js\",\"path\":\"admin\\/custom\"},\"addfiles14\":{\"file\":\"bootstrapSwitch.js\",\"path\":\"admin\\/custom\"},\"addfiles15\":{\"file\":\"chartMenu.js\",\"path\":\"admin\\/custom\"},\"addfiles16\":{\"file\":\"chartbuilder.php\",\"path\":\"admin\\/custom\"},\"addfiles17\":{\"file\":\"data-generator.js\",\"path\":\"admin\\/custom\"},\"addfiles18\":{\"file\":\"downloadController.php\",\"path\":\"admin\\/custom\"},\"addfiles19\":{\"file\":\"DownloadControllerAdmin.php\",\"path\":\"admin\\/custom\"},\"addfiles20\":{\"file\":\"DownloadControllerSite.php\",\"path\":\"admin\\/custom\"},\"addfiles21\":{\"file\":\"fb_loader.gif\",\"path\":\"admin\\/custom\"},\"addfiles22\":{\"file\":\"form.js\",\"path\":\"admin\\/custom\",\"notnew\":\"1\"},\"addfiles23\":{\"file\":\"form-password.js\",\"path\":\"admin\\/custom\"},\"addfiles24\":{\"file\":\"form-password.min.js\",\"path\":\"admin\\/custom\"},\"addfiles25\":{\"file\":\"google.jsapi.js\",\"path\":\"admin\\/custom\"},\"addfiles26\":{\"file\":\"grid.png\",\"path\":\"admin\\/custom\"},\"addfiles27\":{\"file\":\"iframeheight.min.js\",\"path\":\"admin\\/custom\"},\"addfiles28\":{\"file\":\"index.html\",\"path\":\"admin\\/custom\"},\"addfiles29\":{\"file\":\"jquery.mockjax.js\",\"path\":\"admin\\/custom\"},\"addfiles30\":{\"file\":\"mustache.js\",\"path\":\"admin\\/custom\"},\"addfiles31\":{\"file\":\"offline.min.js\",\"path\":\"admin\\/custom\"},\"addfiles32\":{\"file\":\"marked.js\",\"path\":\"media\\/js\"},\"addfiles33\":{\"file\":\"timeago.js\",\"path\":\"media\\/js\"},\"addfiles34\":{\"file\":\"jstorage.min.js\",\"path\":\"media\\/js\"},\"addfiles35\":{\"file\":\"jquery.json.min.js\",\"path\":\"media\\/js\"},\"addfiles36\":{\"file\":\"strtotime.js\",\"path\":\"media\\/js\"},\"addfiles37\":{\"file\":\"jcb-banner.jpg\",\"path\":\"admin\\/assets\\/images\"}}', '{\"addfolders0\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"custem\",\"path\":\"admin\\/compiler\",\"rename\":\"1\"},\"addfolders2\":{\"folder\":\"custem\",\"path\":\"libraries\\/phpseclib3\",\"rename\":\"1\"},\"addfolders3\":{\"folder\":\"custem\",\"path\":\"images\\/vdm\",\"rename\":\"1\"},\"addfolders4\":{\"folder\":\"custem\",\"path\":\"images\\/vdm\\/icon\",\"rename\":\"1\"},\"addfolders5\":{\"folder\":\"uikit-v2\",\"path\":\"admin\\/custom\"},\"addfolders6\":{\"folder\":\"uikit-v3\",\"path\":\"admin\\/custom\"},\"addfolders7\":{\"folder\":\"soundmanager\",\"path\":\"admin\\/custom\"},\"addfolders8\":{\"folder\":\"importViews\",\"path\":\"admin\\/custom\"},\"addfolders9\":{\"folder\":\"footable-v2\",\"path\":\"admin\\/custom\"},\"addfolders10\":{\"folder\":\"footable-v3\",\"path\":\"admin\\/custom\"},\"addfolders11\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\"}}', 85, '', 2, '2024-01-25 14:33:10', '2024-09-19 22:31:14', 6, '', 7, '{\"addfilesfullpath0\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/default.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath1\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_basic.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath2\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/description.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath3\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/vdm.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath4\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/SD.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath5\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/JCB.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath6\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\\/LICENSE.txt\",\"path\":\"LICENSE.txt\"},\"addfilesfullpath7\":{\"filepath\":\"JPATH_SITE\\/images\\/vdm\\/demo500.jpg\",\"path\":\"\\/images\\/vdm\\/\"},\"addfilesfullpath8\":{\"filepath\":\"JPATH_SITE\\/images\\/vdm\\/icon\\/look.png\",\"path\":\"\\/images\\/vdm\\/icon\\/\"},\"addfilesfullpath11\":{\"filepath\":\"JPATH_SITE\\/images\\/vdm\\/icon\\/look_add.png\",\"path\":\"\\/images\\/vdm\\/icon\\/\"},\"addfilesfullpath10\":{\"filepath\":\"JPATH_SITE\\/images\\/vdm\\/icon\\/file.png\",\"path\":\"\\/images\\/vdm\\/icon\\/\"},\"addfilesfullpath9\":{\"filepath\":\"JPATH_SITE\\/images\\/vdm\\/icon\\/detail.png\",\"path\":\"\\/images\\/vdm\\/icon\\/\"}}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib3\\/vendor\\/\",\"path\":\"\\/libraries\\/phpseclib3\\/\"},\"addfoldersfullpath1\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfoldersfullpath2\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_4\",\"path\":\"\\/admin\\/compiler\\/\"}}'), +(77, '{\"addfiles0\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\"},\"addfiles1\":{\"file\":\"icon.png\",\"path\":\"\\/media\\/images\\/\"},\"addfiles2\":{\"file\":\"ajax.gif\",\"path\":\"\\/media\\/images\\/\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"}}', '{}', 87, '', 2, '2024-03-07 12:51:17', '2023-07-26 09:39:22', 1, '', 6, '{}', '{}'), +(78, '{\"addfiles0\":{\"file\":\"dropbox.php\",\"path\":\"\\/site\\/helpers\"},\"addfiles1\":{\"file\":\"dropboxupdater.php\",\"path\":\"\\/site\\/helpers\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"downloadController_sermonDistributor.php\",\"path\":\"\\/site\\/controllers\\/download.php\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"marked.js\",\"path\":\"\\/media\\/js\"},\"addfiles4\":{\"file\":\"timeago.js\",\"path\":\"\\/media\\/js\"}}', '{\"addfolders0\":{\"folder\":\"soundmanager\",\"path\":\"\\/media\\/\"},\"addfolders1\":{\"folder\":\"jplayer\",\"path\":\"\\/media\\/\"}}', 88, '', 2, '2024-03-07 13:03:22', '2018-03-03 21:17:49', 1, '', 5, '', ''), +(79, '{\"addfiles0\":{\"file\":\"JCB_SECURITY.md\",\"path\":\"\\/SECURITY.md\",\"notnew\":\"1\"},\"addfiles1\":{\"file\":\"JCB_CONTRIBUTING.md\",\"path\":\"\\/.github\\/CONTRIBUTING.md\",\"notnew\":\"1\"},\"addfiles2\":{\"file\":\"JCB_SUPPORT.md\",\"path\":\"\\/.github\\/SUPPORT.md\",\"notnew\":\"1\"},\"addfiles3\":{\"file\":\"JCB_ISSUE_TEMPLATE.md\",\"path\":\"\\/.github\\/ISSUE_TEMPLATE.md\",\"notnew\":\"1\"},\"addfiles4\":{\"file\":\"JCB_PULL_REQUEST_TEMPLATE.md\",\"path\":\"\\/.github\\/PULL_REQUEST_TEMPLATE.md\",\"notnew\":\"1\"},\"addfiles5\":{\"file\":\"JCB_FUNDING.yml\",\"path\":\"\\/.github\\/FUNDING.yml\",\"notnew\":\"1\"},\"addfiles6\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles7\":{\"file\":\"grid.png\",\"path\":\"admin\\/assets\\/images\",\"notnew\":\"1\"},\"addfiles8\":{\"file\":\"ajax.gif\",\"path\":\"admin\\/custom\"},\"addfiles9\":{\"file\":\"base64.js\",\"path\":\"admin\\/custom\"},\"addfiles10\":{\"file\":\"marked.js\",\"path\":\"admin\\/custom\"},\"addfiles11\":{\"file\":\"timeago.js\",\"path\":\"admin\\/custom\"},\"addfiles12\":{\"file\":\"bootstrap-tab.js\",\"path\":\"admin\\/custom\"},\"addfiles13\":{\"file\":\"bootstrap.min.js\",\"path\":\"admin\\/custom\"},\"addfiles14\":{\"file\":\"bootstrapSwitch.js\",\"path\":\"admin\\/custom\"},\"addfiles15\":{\"file\":\"chartMenu.js\",\"path\":\"admin\\/custom\"},\"addfiles16\":{\"file\":\"chartbuilder.php\",\"path\":\"admin\\/custom\"},\"addfiles17\":{\"file\":\"data-generator.js\",\"path\":\"admin\\/custom\"},\"addfiles18\":{\"file\":\"downloadController.php\",\"path\":\"admin\\/custom\"},\"addfiles19\":{\"file\":\"DownloadControllerAdmin.php\",\"path\":\"admin\\/custom\"},\"addfiles20\":{\"file\":\"DownloadControllerSite.php\",\"path\":\"admin\\/custom\"},\"addfiles21\":{\"file\":\"fb_loader.gif\",\"path\":\"admin\\/custom\"},\"addfiles22\":{\"file\":\"form.js\",\"path\":\"admin\\/custom\",\"notnew\":\"1\"},\"addfiles23\":{\"file\":\"form-password.js\",\"path\":\"admin\\/custom\"},\"addfiles24\":{\"file\":\"form-password.min.js\",\"path\":\"admin\\/custom\"},\"addfiles25\":{\"file\":\"google.jsapi.js\",\"path\":\"admin\\/custom\"},\"addfiles26\":{\"file\":\"grid.png\",\"path\":\"admin\\/custom\"},\"addfiles27\":{\"file\":\"iframeheight.min.js\",\"path\":\"admin\\/custom\"},\"addfiles28\":{\"file\":\"index.html\",\"path\":\"admin\\/custom\"},\"addfiles29\":{\"file\":\"jquery.mockjax.js\",\"path\":\"admin\\/custom\"},\"addfiles30\":{\"file\":\"mustache.js\",\"path\":\"admin\\/custom\"},\"addfiles31\":{\"file\":\"offline.min.js\",\"path\":\"admin\\/custom\"},\"addfiles32\":{\"file\":\"marked.js\",\"path\":\"media\\/js\"},\"addfiles33\":{\"file\":\"timeago.js\",\"path\":\"media\\/js\"},\"addfiles34\":{\"file\":\"jstorage.min.js\",\"path\":\"media\\/js\"},\"addfiles35\":{\"file\":\"jquery.json.min.js\",\"path\":\"media\\/js\"},\"addfiles36\":{\"file\":\"strtotime.js\",\"path\":\"media\\/js\"},\"addfiles37\":{\"file\":\"jcb-banner.jpg\",\"path\":\"admin\\/assets\\/images\"}}', '{\"addfolders0\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\",\"rename\":\"1\"},\"addfolders1\":{\"folder\":\"custem\",\"path\":\"admin\\/compiler\",\"rename\":\"1\"},\"addfolders2\":{\"folder\":\"custem\",\"path\":\"libraries\\/phpseclib3\",\"rename\":\"1\"},\"addfolders3\":{\"folder\":\"custem\",\"path\":\"images\\/vdm\",\"rename\":\"1\"},\"addfolders4\":{\"folder\":\"custem\",\"path\":\"images\\/vdm\\/icon\",\"rename\":\"1\"},\"addfolders5\":{\"folder\":\"uikit-v2\",\"path\":\"admin\\/custom\"},\"addfolders6\":{\"folder\":\"uikit-v3\",\"path\":\"admin\\/custom\"},\"addfolders7\":{\"folder\":\"soundmanager\",\"path\":\"admin\\/custom\"},\"addfolders8\":{\"folder\":\"importViews\",\"path\":\"admin\\/custom\"},\"addfolders9\":{\"folder\":\"footable-v2\",\"path\":\"admin\\/custom\"},\"addfolders10\":{\"folder\":\"footable-v3\",\"path\":\"admin\\/custom\"},\"addfolders11\":{\"folder\":\"custem\",\"path\":\"admin\\/custom\"}}', 89, '', 2, '2024-03-08 11:34:35', '2024-09-19 22:31:02', 6, '', 7, '{\"addfilesfullpath0\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/default.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath1\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_basic.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath2\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/description.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath3\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/vdm.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath4\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/SD.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath5\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/JCB.txt\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfilesfullpath6\":{\"filepath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\\/LICENSE.txt\",\"path\":\"LICENSE.txt\"},\"addfilesfullpath7\":{\"filepath\":\"JPATH_SITE\\/images\\/vdm\\/demo500.jpg\",\"path\":\"\\/images\\/vdm\\/\"},\"addfilesfullpath8\":{\"filepath\":\"JPATH_SITE\\/images\\/vdm\\/icon\\/look.png\",\"path\":\"\\/images\\/vdm\\/icon\\/\"},\"addfilesfullpath11\":{\"filepath\":\"JPATH_SITE\\/images\\/vdm\\/icon\\/look_add.png\",\"path\":\"\\/images\\/vdm\\/icon\\/\"},\"addfilesfullpath10\":{\"filepath\":\"JPATH_SITE\\/images\\/vdm\\/icon\\/file.png\",\"path\":\"\\/images\\/vdm\\/icon\\/\"},\"addfilesfullpath9\":{\"filepath\":\"JPATH_SITE\\/images\\/vdm\\/icon\\/detail.png\",\"path\":\"\\/images\\/vdm\\/icon\\/\"}}', '{\"addfoldersfullpath0\":{\"folderpath\":\"JPATH_LIBRARIES\\/phpseclib3\\/vendor\\/\",\"path\":\"\\/libraries\\/phpseclib3\\/\"},\"addfoldersfullpath1\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_3\",\"path\":\"\\/admin\\/compiler\\/\"},\"addfoldersfullpath2\":{\"folderpath\":\"JPATH_COMPONENT_ADMINISTRATOR\\/compiler\\/joomla_4\",\"path\":\"\\/admin\\/compiler\\/\"}}'); -- -- Dumping data for table `#__componentbuilder_snippet_type` diff --git a/admin/views/compiler/tmpl/default.php b/admin/views/compiler/tmpl/default.php index eec98231b..d8a4c54e2 100644 --- a/admin/views/compiler/tmpl/default.php +++ b/admin/views/compiler/tmpl/default.php @@ -170,7 +170,8 @@ document.addEventListener('DOMContentLoaded', function() {
form->renderFieldset('advanced'); ?>
- 'noticeboard' , 'active' => $noticeboardOptions[array_rand($noticeboardOptions)])); ?> +
+
diff --git a/admin/views/compiler/view.html.php b/admin/views/compiler/view.html.php index b5470e329..74352f94a 100644 --- a/admin/views/compiler/view.html.php +++ b/admin/views/compiler/view.html.php @@ -589,6 +589,9 @@ class ComponentbuilderViewCompiler extends HtmlView // Initialize the header checker. $HeaderCheck = new componentbuilderHeaderCheck(); + // Add View JavaScript File + Html::_('script', "administrator/components/com_componentbuilder/assets/js/compiler.js", ['version' => 'auto']); + // Load uikit options. $uikit = $this->params->get('uikit_load'); // Set script size. @@ -684,70 +687,6 @@ class ComponentbuilderViewCompiler extends HtmlView } } }); - } - - document.addEventListener('DOMContentLoaded', function() { - fetchNoticeboard(\"https://vdm.bz/componentbuilder-noticeboard-md\", \".noticeboard-md\", true); - fetchNoticeboard(\"https://vdm.bz/componentbuilder-pro-noticeboard-md\", \".proboard-md\", false); - }); - function fetchNoticeboard(url, selector, processGetIS) { - fetch(url) - .then(response => { - if (!response.ok) { - throw new Error('Network response was not ok'); - } - return response.text(); - }) - .then(board => { - var elements = document.querySelectorAll(selector); - if (board.length > 5) { - let html_board = marked.parse(board); - elements.forEach(element => { - element.innerHTML = html_board; - }); - if (processGetIS) { - getIS(1, board).then(result => { - if (result) { - document.querySelectorAll(\".vdm-new-notice\").forEach(element => { - element.style.display = 'block'; - }); - getIS(2, board); - } - }); - } - } else { - elements.forEach(element => { - element.innerHTML = all_is_good; - }); - } - }) - .catch(error => { - console.error('There was an error!', error); - document.querySelectorAll(selector).forEach(element => { - element.innerHTML = all_is_good; - }); - }); - } - // to check is READ/NEW - function getIS(type, notice) { - let getUrl = \"\"; - if (type === 1) { - getUrl = JRouter(\"index.php?option=com_componentbuilder&task=ajax.isNew&format=json&raw=true\"); - } else if (type === 2) { - getUrl = JRouter(\"index.php?option=com_componentbuilder&task=ajax.isRead&format=json&raw=true\"); - } - let request = new URLSearchParams(); - if (token.length > 0 && notice.length) { - request.append(token, \"1\"); - request.append(\"notice\", notice); - } - return fetch(getUrl, { - method: \"POST\", - headers: { - \"Content-Type\": \"application/x-www-form-urlencoded;charset=UTF-8\" - }, - body: request - }).then(response => response.json()); } "); } diff --git a/admin/views/componentbuilder/tmpl/default_notice_board_vast_development_method.php b/admin/views/componentbuilder/tmpl/default_notice_board_vast_development_method.php index 5cf2865f3..669f402ca 100644 --- a/admin/views/componentbuilder/tmpl/default_notice_board_vast_development_method.php +++ b/admin/views/componentbuilder/tmpl/default_notice_board_vast_development_method.php @@ -15,6 +15,12 @@ defined('_JEXEC') or die('Restricted access'); use Joomla\CMS\Language\Text; use Joomla\CMS\Router\Route; use Joomla\CMS\HTML\HTMLHelper as Html; +use Joomla\CMS\Layout\LayoutHelper; ?> -noticeboard; ?> + 'auto']); +Html::_('stylesheet', "administrator/components/com_componentbuilder/assets/css/compiler.css", ['version' => 'auto']); +Html::_('script', "media/com_componentbuilder/js/marked.js", ['version' => 'auto']); +echo LayoutHelper::render('jcbnoticeboard', null); +?> diff --git a/admin/views/componentbuilder/view.html.php b/admin/views/componentbuilder/view.html.php index 76252ea59..1eece9674 100644 --- a/admin/views/componentbuilder/view.html.php +++ b/admin/views/componentbuilder/view.html.php @@ -34,7 +34,6 @@ class ComponentbuilderViewComponentbuilder extends HtmlView $this->icons = $this->get('Icons'); $this->contributors = ComponentbuilderHelper::getContributors(); $this->wiki = $this->get('Wiki'); - $this->noticeboard = $this->get('Noticeboard'); $this->readme = $this->get('Readme'); $this->version = $this->get('Version'); diff --git a/componentbuilder.xml b/componentbuilder.xml index b0a3a59de..da8e4f662 100644 --- a/componentbuilder.xml +++ b/componentbuilder.xml @@ -1,15 +1,15 @@ COM_COMPONENTBUILDER - 16th December, 2024 + 28th December, 2024 Llewellyn van der Merwe joomla@vdm.io https://dev.vdm.io Copyright (C) 2015 Vast Development Method. All rights reserved. GNU General Public License version 2 or later; see LICENSE.txt - 3.2.5-beta2 + 3.2.5-beta3 Component Builder (v.3.2.5-beta2) +

Component Builder (v.3.2.5-beta3)

The Component Builder for [Joomla](https://extensions.joomla.org/extension/component-builder/) is highly advanced tool that is truly able to build extremely complex components in a fraction of the time. diff --git a/componentbuilder_update_server.xml b/componentbuilder_update_server.xml index a86de4f9b..2f8ae5e2d 100644 --- a/componentbuilder_update_server.xml +++ b/componentbuilder_update_server.xml @@ -223,7 +223,7 @@ 3.2.5-beta https://dev.vdm.io - https://git.vdm.dev/api/v1/repos/joomla/pkg-component-builder/archive/v3.2.5-beta2.zip + https://git.vdm.dev/api/v1/repos/joomla/pkg-component-builder/archive/v3.2.5-beta3.zip beta @@ -238,10 +238,10 @@ pkg_component_builder package site - 3.2.5-beta2 + 3.2.5-beta3 https://dev.vdm.io - https://git.vdm.dev/api/v1/repos/joomla/pkg-component-builder/archive/v3.2.5-beta2.zip + https://git.vdm.dev/api/v1/repos/joomla/pkg-component-builder/archive/v3.2.5-beta3.zip beta diff --git a/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Compiler/Component/Placeholder.php b/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Compiler/Component/Placeholder.php index e762fed9b..c17351028 100644 --- a/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Compiler/Component/Placeholder.php +++ b/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Compiler/Component/Placeholder.php @@ -124,6 +124,8 @@ final class Placeholder implements PlaceholderInterface $bucket[Placefix::_('NamespacePrefix')] = $config->namespace_prefix; $bucket[Placefix::_h('NAMESPACEPREFIX')] = $config->namespace_prefix; $bucket[Placefix::_('NAMESPACEPREFIX')] = $config->namespace_prefix; + $bucket[Placefix::_('POWERLOADERPATH')] = $config->component_autoloader_path; + $bucket[Placefix::_h('POWERLOADERPATH')] = $config->component_autoloader_path; // get the current components overrides if (($_placeholders = GetHelper::var( diff --git a/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Network/Resolve.php b/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Network/Resolve.php index fec698935..85d423390 100644 --- a/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Network/Resolve.php +++ b/libraries/vendor_jcb/VDM.Joomla/src/Componentbuilder/Network/Resolve.php @@ -95,6 +95,7 @@ final class Resolve * @param string &$repository The repository name (passed by reference). * * @return void + * @throws \Exception * @since 5.0.4 */ private function resolve(string $target, string &$domain, string &$organisation, string &$repository): void diff --git a/script.php b/script.php index 2f8641f64..4d3f60e2d 100644 --- a/script.php +++ b/script.php @@ -10001,7 +10001,7 @@ class Com_ComponentbuilderInstallerScript echo '

-

Upgrade to Version 3.2.5-beta2 Was Successful! Let us know if anything is not working as expected.

'; +

Upgrade to Version 3.2.5-beta3 Was Successful! Let us know if anything is not working as expected.

'; // Set db if not set already. if (!isset($db))