# Security Policy ## Reporting Security Bugs Please report security bugs found in the LiteSpeed Cache plugin's source code through the [Patchstack Vulnerability Disclosure Program](https://patchstack.com/database/vdp/litespeed-cache). The Patchstack team will assist you with verification, CVE assignment, and notify the developers of this plugin. /*! ./QueryClientProvider.js */ /*! ./QueryErrorResetBoundary.js */ /*! ./errorBoundaryUtils.js */ /*! ./focusManager.js */ /*! ./infiniteQueryBehavior.js */ /*! ./isRestoring.js */ /*! ./mutation.js */ /*! ./mutationCache.js */ /*! ./notifyManager.js */ /*! ./onlineManager.js */ /*! ./query.js */ /*! ./queryCache.js */ /*! ./queryObserver.js */ /*! ./removable.js */ /*! ./retryer.js */ /*! ./subscribable.js */ /*! ./suspense.js */ /*! ./useBaseQuery.js */ /*! ./utils.js */ /*! @tanstack/query-core */ /*! @tanstack/react-query */ /*! react */ /*!**************************!*\ !*** external ["React"] ***! \**************************/ /*!******************************************************!*\ !*** ./node_modules/@elementor/query/dist/index.mjs ***! \******************************************************/ /*!*****************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/query.js ***! \*****************************************************************/ /*!*****************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/utils.js ***! \*****************************************************************/ /*!******************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/utils.js ***! \******************************************************************/ /*!*******************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/retryer.js ***! \*******************************************************************/ /*!********************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/mutation.js ***! \********************************************************************/ /*!*********************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/removable.js ***! \*********************************************************************/ /*!*********************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/suspense.js ***! \*********************************************************************/ /*!*********************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/useQuery.js ***! \*********************************************************************/ /*!**********************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/queryCache.js ***! \**********************************************************************/ /*!***********************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/queryClient.js ***! \***********************************************************************/ /*!************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/focusManager.js ***! \************************************************************************/ /*!************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/subscribable.js ***! \************************************************************************/ /*!************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/isRestoring.js ***! \************************************************************************/ /*!************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/useMutation.js ***! \************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/mutationCache.js ***! \*************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/notifyManager.js ***! \*************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/onlineManager.js ***! \*************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/queryObserver.js ***! \*************************************************************************/ /*!*************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/useBaseQuery.js ***! \*************************************************************************/ /*!****************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/mutationObserver.js ***! \****************************************************************************/ /*!*****************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/useInfiniteQuery.js ***! \*****************************************************************************/ /*!*******************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/errorBoundaryUtils.js ***! \*******************************************************************************/ /*!********************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/QueryClientProvider.js ***! \********************************************************************************/ /*!*********************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/infiniteQueryBehavior.js ***! \*********************************************************************************/ /*!*********************************************************************************!*\ !*** ./node_modules/@tanstack/query-core/build/modern/infiniteQueryObserver.js ***! \*********************************************************************************/ /*!************************************************************************************!*\ !*** ./node_modules/@tanstack/react-query/build/modern/QueryErrorResetBoundary.js ***! \************************************************************************************/ import React from 'react' import Modal from 'react-modal' import ModalEnvatoIcon from './ModalEnvatoIcon' import styles from './MagicModalWrapper.module.scss' const customStyles = { overlay: { backgroundColor: 'rgba(32, 32, 32, 0.81)', zIndex: 199999, display: 'flex', justifyContent: 'center', alignItems: 'center' }, content: { background: '#f1f1f1', border: '0', padding: '0', right: 'auto', bottom: 'auto', top: 'auto', left: 'auto', borderRadius: '4px' } } const MagicModalWrapper = ({ photoId, photoTitle, onCloseCallback = null, children }) => { const [modalIsOpen, setModalIsOpen] = React.useState(true) const closeModal = () => { setModalIsOpen(false) if (onCloseCallback) { onCloseCallback() } } // Make sure to bind modal to your appElement (http://reactcommunity.org/react-modal/accessibility/) // We get window.templateKitImport.modalAppHolder from our initial render in main.jsx: if (typeof window !== 'undefined' && window.templateKitImport && window.templateKitImport.modalAppHolder) { Modal.setAppElement(window.templateKitImport.modalAppHolder) } return (
{typeof children === 'function' ? children({ closeModal }) : children}
) } export default MagicModalWrapper .elementor-toggle{text-align:left}.elementor-toggle .elementor-tab-title{font-weight:700;line-height:1;margin:0;padding:15px;border-bottom:1px solid #d5d8dc;cursor:pointer;outline:none}.elementor-toggle .elementor-tab-title .elementor-toggle-icon{display:inline-block;width:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon svg{margin-inline-start:-5px;width:1em;height:1em}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-right{float:right;text-align:right}.elementor-toggle .elementor-tab-title .elementor-toggle-icon.elementor-toggle-icon-left{float:left;text-align:left}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-closed{display:block}.elementor-toggle .elementor-tab-title .elementor-toggle-icon .elementor-toggle-icon-opened{display:none}.elementor-toggle .elementor-tab-title.elementor-active{border-bottom:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed{display:none}.elementor-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened{display:block}.elementor-toggle .elementor-tab-content{padding:15px;border-bottom:1px solid #d5d8dc;display:none}@media (max-width:ELEMENTOR_SCREEN_MOBILE_MAX){.elementor-toggle .elementor-tab-title{padding:12px}.elementor-toggle .elementor-tab-content{padding:12px 10px}}.e-con-inner>.elementor-widget-toggle,.e-con>.elementor-widget-toggle{width:var(--container-widget-width);--flex-grow:var(--container-widget-flex-grow)} DigiGrowths https://validator.w3.org/feed/docs/rss2.html Freispiele Casino online abzüglich Einzahlung 2026 100% Gratis & Sofortig Eintragung im Angeschlossen Spielsaal 2026 Was Kostenlose Slots Spiele online zum Spaß ist und bleibt zu beachten? Bestes Verbunden online casino mit lastschrift bezahlen Kasino Echtgeld within Teutonia Geldspiele Dunder Trinocasino-App APK-Download Casino Erfahrungen 250 Prämie Demonstration and black horse Spielautomat Echtgeld Thought Saying $100 Free No-deposit Incentives on your own Mobile I do believe we purchase a whole lot more than simply it is always to on the wedding events Or no things occur, they have your back and can take care of them on time Spielbank -Portale seien per Telefonrechnung eingezahlt � Diverse Kategorien Within Boni Blo? Einzahlung Bei Onlinecasinos Top Bitcoin Casinos im Neunter monat des jahres Verbunden European country Spielbank: Diese perfekte Bevorzugung pro Zocker bei der Schweiz Bingo Bonga Erreichbar-Spielsalon Sight towards Horus Germanisch Spielsalon Erfahrungen as well as Bewertung as part of Ostmark Spielbank Freispiele werden null anderes wanneer kostenlose Spins a dm Spielautomaten Secrets des jeux de table en direct : bonus, programmes VIP et sélection de casino Guide complet des tournois de casino en ligne pour Noël : jouez en argent réel et maximisez vos bonus Les programmes VIP qui transforment vos jeux de table chez Techinfrance.Fr Stratégies d’experts pour choisir le meilleur casino en ligne Secrets des tables VIP en direct : vivez l’expérience ultime chez Georgesstore.Fr Stratégies expertes pour les espaces de jeu mobile : comment Reseau Obepine.Fr redéfinit l’expérience casino en ligne Guide complet des tours gratuits en argent réel : maximisez vos bonus sur les machines à sous <h1>5 Stratégies Essentielles pour des Retraits Instantanés au Casino en Ligne chez Editions Galilee.Fr</h1> Stratégies d’experts pour décrocher les jackpots sur les machines à sous mobiles Sécurité avancée des paiements dans les casinos en ligne : analyse complète How to Choose the Best Online Casino for UK Players – A Simple Expert Guide Mastering Live Baccarat: An Analytical Playbook for Modern Players Blackjack erreichbar zum besten geben damit Echtgeld ++ Seriöse Versorger zum Wetten! Expert Guide to Choosing Trustworthy Online Casinos Expert Guide to Choosing a Trusted Online Casino – What You Need to Know adobe generative ai 1 Mastering Table Games and Risk Management: An Insider Playbook How a Player Turned a Slow Payout into Instant Wins: A Real‑World Casino Success Story Mastering the World of Online Slots: An Expert’s Playbook Score 50 Totally free Revolves No-deposit Expected! Register within the Slottica Gambling establishment Now! Mobile Slot Mastery: Secure Payments and Battery‑Friendly Play at Slots Charmcasino 1 Exploring Legendary Slot Themes: From Ancient Worlds to Modern Myths Expert Glossary of Online Casino Terms for Modern Players Mastering Jackpot Play in Demo Mode: An Expert Guide for Holiday Gaming Mastering the Search for the Perfect UK Online Casino Expert Playbook for Finding Trustworthy Online Casinos and Winning Big Home Bonus di Capodanno ispirati alla cultura pop: come sfruttare le offerte legate a film e serie sui casinò online Accélérer vos gains grâce aux jackpots : stratégies avancées sur Vpah Auvergne Rhône Alpes.Fr Strategie esperte per unire scommesse sportive e giochi mobile con free spins Καλύτερο μπόνους χωρίς κατάθεση για επιχειρήσεις τυχερών παιχνιδιών 2026 Παίξτε online αντί να ξοδέψετε χρήματα Mastering Online Casino Choices and Sports Betting Success Expert Strategies for Choosing the Best Online Casino – A Deep Dive into Trust, Bonuses, and Play Mastering Online Casino Selection with Live Dealers at Uk Online Casino Casumo Greatest No deposit Bonuses Jan 2026 $50 Free Wilderness Diamond Gambling enterprises Diamond Perks Book Of Ra Deluxe 10 gebührenfrei verbunden spielen Casino Wild Stars » Hier!