<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
 * Lazy Load - jQuery plugin for lazy loading images Version: 1.9.0
 * ====================================================
*/
!function(a,b,c,d){var e=a(b);a.fn.lazyload=function(f){function g(){var b=0;i.each(function(){var c=a(this);if(!j.skip_invisible||c.is(":visible"))if(a.abovethetop(this,j)||a.leftofbegin(this,j));else if(a.belowthefold(this,j)||a.rightoffold(this,j)){if(++b&gt;j.failure_limit)return!1}else c.trigger("appear"),b=0})}var h,i=this,j={threshold:0,failure_limit:0,event:"scroll",effect:"show",container:b,data_attribute:"original",skip_invisible:!0,appear:null,load:null,placeholder:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsQAAA7EAZUrDhsAAAANSURBVBhXYzh8+PB/AAffA0nNPuCLAAAAAElFTkSuQmCC"};return f&amp;&amp;(d!==f.failurelimit&amp;&amp;(f.failure_limit=f.failurelimit,delete f.failurelimit),d!==f.effectspeed&amp;&amp;(f.effect_speed=f.effectspeed,delete f.effectspeed),a.extend(j,f)),h=j.container===d||j.container===b?e:a(j.container),0===j.event.indexOf("scroll")&amp;&amp;h.bind(j.event,function(){return g()}),this.each(function(){var b=this,c=a(b);b.loaded=!1,(c.attr("src")===d||c.attr("src")===!1)&amp;&amp;c.attr("src",j.placeholder),c.one("appear",function(){if(!this.loaded){if(j.appear){var d=i.length;j.appear.call(b,d,j)}a("&lt;img /&gt;").bind("load",function(){var d=c.data(j.data_attribute);c.hide(),c.is("img")?c.attr("src",d):c.css("background-image","url('"+d+"')"),c[j.effect](j.effect_speed),b.loaded=!0;var e=a.grep(i,function(a){return!a.loaded});if(i=a(e),j.load){var f=i.length;j.load.call(b,f,j)}}).attr("src",c.data(j.data_attribute))}}),0!==j.event.indexOf("scroll")&amp;&amp;c.bind(j.event,function(){b.loaded||c.trigger("appear")})}),e.bind("resize",function(){g()}),/iphone|ipod|ipad.*os 5/gi.test(navigator.appVersion)&amp;&amp;e.bind("pageshow",function(b){b.originalEvent&amp;&amp;b.originalEvent.persisted&amp;&amp;i.each(function(){a(this).trigger("appear")})}),a(c).ready(function(){g()}),this},a.belowthefold=function(c,f){var g;return g=f.container===d||f.container===b?(b.innerHeight?b.innerHeight:e.height())+e.scrollTop():a(f.container).offset().top+a(f.container).height(),g&lt;=a(c).offset().top-f.threshold},a.rightoffold=function(c,f){var g;return g=f.container===d||f.container===b?e.width()+e.scrollLeft():a(f.container).offset().left+a(f.container).width(),g&lt;=a(c).offset().left-f.threshold},a.abovethetop=function(c,f){var g;return g=f.container===d||f.container===b?e.scrollTop():a(f.container).offset().top,g&gt;=a(c).offset().top+f.threshold+a(c).height()},a.leftofbegin=function(c,f){var g;return g=f.container===d||f.container===b?e.scrollLeft():a(f.container).offset().left,g&gt;=a(c).offset().left+f.threshold+a(c).width()},a.inviewport=function(b,c){return!(a.rightoffold(b,c)||a.leftofbegin(b,c)||a.belowthefold(b,c)||a.abovethetop(b,c))},a.extend(a.expr[":"],{"below-the-fold":function(b){return a.belowthefold(b,{threshold:0})},"above-the-top":function(b){return!a.belowthefold(b,{threshold:0})},"right-of-screen":function(b){return a.rightoffold(b,{threshold:0})},"left-of-screen":function(b){return!a.rightoffold(b,{threshold:0})},"in-viewport":function(b){return a.inviewport(b,{threshold:0})},"above-the-fold":function(b){return!a.belowthefold(b,{threshold:0})},"right-of-fold":function(b){return a.rightoffold(b,{threshold:0})},"left-of-fold":function(b){return!a.rightoffold(b,{threshold:0})}})}(jQuery,window,document);

jQuery(function($){
     $('.thumb').lazyload({
	        data_attribute: 'original',
	        effect : 'fadeIn',
	        threshold:200,
            failurelimit:13
	    }); 
    
// 	if($('.thumb:first').data('src')){
// 		$('.thumb').lazyload({
// 	        data_attribute: 'src',
// 	        placeholder: _SJT.uri + '/static/img/loading-1.gif',
// 	        threshold: 200
// 	    });
// 	}

    $(".header-search-trigger").click(function(){
    	$(".header .nav").removeClass("show");
    	$(".header-menu-trigger i").removeClass("icon-close");

    	$(this).find('i').toggleClass("icon-close");
    	$(".search-form").toggleClass("show");

    	if($(".header .nav").hasClass("show") || $(".search-form").hasClass("show")){
	    	$(".shadow").addClass("show");
	    }else{
	    	$(".shadow").removeClass("show");
	    }
    });
//--------------------20220208---------------------
    console.log($(window).width())
    console.log($(document).width())
    var nowWidth = $(document).width()
    if(nowWidth&lt;=768){
        $("body").attr("data","moblie")
    }
    $(window).resize(function(){	
      if( $(window).width() &lt;= 768 ) {		       
          $("body").attr("data","moblie")	 
      }
    });
    $(".header .nav li").on("click",function(){
        if( $("body").attr("data") == "moblie"){
          if($(this).find(".sub-menu").hasClass("sshow")){
            $(this).find(".sub-menu").removeClass("sshow")
            
          }else{
            $(this).find(".sub-menu").addClass("sshow")
         }
        }
    });
     //---------------------------------------------------
    $(".header-menu-trigger").click(function(){
    	$(".search-form").removeClass("show");
    	$(".header-search-trigger i").removeClass("icon-close");
    	
    	$(this).find('i').toggleClass("icon-close");
    	$(".header .nav").toggleClass("show");
    	
    	if($(".header .nav").hasClass("show") || $(".search-form").hasClass("show")){
	        $(".shadow").addClass("show");
	    	$("body").addClass("hiddens");
	    }else{
	    	$(".shadow").removeClass("show");
	    	$("body").removeClass("hiddens");
	    }
    });

    $(".shadow").click(function(){
        $(".search-form").removeClass("show");
        $(".header-search-trigger i").removeClass("icon-close");

        $(".header .nav").removeClass("show");
        $(".header-menu-trigger i").removeClass("icon-close");
        $(".shadow").removeClass("show");
    });
   
    
	var bodyWidth = jQuery(window).width();
	if(bodyWidth &lt;= 1240){
		$("#video").height($("#video").width()*9/16);
	}
	if(bodyWidth &lt;= 847){
		$(".posts .post .thumb").each(function(){
			$(this).height($(this).width()*0.625);
		});
	}

	if(bodyWidth &lt;= 768){
		$("#dz_video").height($("#dz_video").width()*9/16);
	}
	
	$(".totop").click(function(){
		scrollTo();
	});
    
});

function JumpChain(vurl){
    var bg = jQuery("#dz_video").attr("bg");
    var url = "https://lk1.supremejav.com/supjav.php?l="+vurl+"&amp;bg="+bg;
    return url;
}
function scrollTo(name, add, speed){
    if (!speed) speed = 300;
    if (!name) {
        jQuery('html,body').animate({
            scrollTop: 0
        }, speed);
    } else {
        if (jQuery(name).length &gt; 0) {
            jQuery('html,body').animate({
                scrollTop: jQuery(name).offset().top + (add || 0)
            }, speed);
        }
    }
}

function base64_encode(str){
    var c1, c2, c3;
    var base64EncodeChars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";        
    var i = 0, len= str.length, string = '';
 
    while (i &lt; len){
        c1 = str.charCodeAt(i++) &amp; 0xff;
        if (i == len){
            string += base64EncodeChars.charAt(c1 &gt;&gt; 2);
            string += base64EncodeChars.charAt((c1 &amp; 0x3) &lt;&lt; 4);
            string += "==";
            break;
        }
        c2 = str.charCodeAt(i++);
        if (i == len){
            string += base64EncodeChars.charAt(c1 &gt;&gt; 2);
            string += base64EncodeChars.charAt(((c1 &amp; 0x3) &lt;&lt; 4) | ((c2 &amp; 0xF0) &gt;&gt; 4));
            string += base64EncodeChars.charAt((c2 &amp; 0xF) &lt;&lt; 2);
            string += "=";
            break;
        }
        c3 = str.charCodeAt(i++);
        string += base64EncodeChars.charAt(c1 &gt;&gt; 2);
        string += base64EncodeChars.charAt(((c1 &amp; 0x3) &lt;&lt; 4) | ((c2 &amp; 0xF0) &gt;&gt; 4));
        string += base64EncodeChars.charAt(((c2 &amp; 0xF) &lt;&lt; 2) | ((c3 &amp; 0xC0) &gt;&gt; 6));
        string += base64EncodeChars.charAt(c3 &amp; 0x3F)
    }
        return string
}


function base64_decode(str){
        var c1, c2, c3, c4;
        var base64DecodeChars = new Array(
            -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
            -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
            -1, -1, -1, -1, -1, -1, -1, 62, -1, -1, -1, 63, 52, 53, 54, 55, 56, 57,
            58, 59, 60, 61, -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, 3, 4, 5, 6,
            7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
            25, -1, -1, -1, -1, -1, -1, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36,
            37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, -1, -1, -1,
            -1, -1
        );
        var i=0, len = str.length, string = '';
 
        while (i &lt; len){
            do{
                c1 = base64DecodeChars[str.charCodeAt(i++) &amp; 0xff]
            } while (
                i &lt; len &amp;&amp; c1 == -1
            );
 
            if (c1 == -1) break;
 
            do{
                c2 = base64DecodeChars[str.charCodeAt(i++) &amp; 0xff]
            } while (
                i &lt; len &amp;&amp; c2 == -1
            );
 
            if (c2 == -1) break;
 
            string += String.fromCharCode((c1 &lt;&lt; 2) | ((c2 &amp; 0x30) &gt;&gt; 4));
 
            do{
                c3 = str.charCodeAt(i++) &amp; 0xff;
                if (c3 == 61)
                    return string;
 
                c3 = base64DecodeChars[c3]
            } while (
                i &lt; len &amp;&amp; c3 == -1
            );
 
            if (c3 == -1) break;
 
            string += String.fromCharCode(((c2 &amp; 0XF) &lt;&lt; 4) | ((c3 &amp; 0x3C) &gt;&gt; 2));
 
            do{
                c4 = str.charCodeAt(i++) &amp; 0xff;
                if (c4 == 61) return string;
                c4 = base64DecodeChars[c4]
            } while (
                i &lt; len &amp;&amp; c4 == -1
            );
 
            if (c4 == -1) break;
 
            string += String.fromCharCode(((c3 &amp; 0x03) &lt;&lt; 6) | c4)
        }
        return string;
    }</pre></body></html>