<!DOCTYPE html>
<html>
<head>
    <style>
        body {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
    </style>
</head>
<body>

    <!-- Your page content -->

    <script>
        // Disable right-click context menu
        document.addEventListener('contextmenu', function(e) {
            e.preventDefault();
        });

        // Disable text selection via mouse
        document.addEventListener('selectstart', function(e) {
            e.preventDefault();
        });

        // Optional: block common copy shortcuts (Ctrl+C, Ctrl+U, Ctrl+S, etc.)
        document.addEventListener('keydown', function(e) {
            if (
                (e.ctrlKey && (e.key === 'c' || e.key === 'u' || e.key === 's')) ||
                e.key === 'F12'
            ) {
                e.preventDefault();
            }
        });
    </script>

</body>
</html><?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://collection.elitewave.org/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"><sitemap><loc>https://collection.elitewave.org/wp-sitemap-posts-page-1.xml</loc></sitemap><sitemap><loc>https://collection.elitewave.org/wp-sitemap-users-1.xml</loc></sitemap></sitemapindex>
