<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">(function($){$.fn.lofCountDown=function(options){return this.each(function(){new $.lofCountDown(this,options)})}
$.lofCountDown=function(obj,options){this.options=$.extend({autoStart:!0,LeadingZero:!0,DisplayFormat:"&lt;div&gt;%%D%% Days&lt;/div&gt;&lt;div&gt;%%H%% Hours&lt;/div&gt;&lt;div&gt;%%M%% Minutes&lt;/div&gt;&lt;div&gt;%%S%% Seconds&lt;/div&gt;",FinishMessage:"Expired",CountActive:!0,TargetDate:null},options||{});if(this.options.TargetDate==null||this.options.TargetDate==''){return}
this.timer=null;this.element=obj;this.CountStepper=-1;this.CountStepper=Math.ceil(this.CountStepper);this.SetTimeOutPeriod=(Math.abs(this.CountStepper)-1)*1000+990;var dthen=new Date(this.options.TargetDate);var dnow=new Date();if(this.CountStepper&gt;0){ddiff=new Date(dnow-dthen)}else{ddiff=new Date(dthen-dnow)}
gsecs=Math.floor(ddiff.valueOf()/1000);this.CountBack(gsecs,this)};$.lofCountDown.fn=$.lofCountDown.prototype;$.lofCountDown.fn.extend=$.lofCountDown.extend=$.extend;$.lofCountDown.fn.extend({calculateDate:function(secs,num1,num2){var s=((Math.floor(secs/num1))%num2).toString();if(this.options.LeadingZero&amp;&amp;s.length&lt;2){s="0"+s}
return"&lt;b&gt;"+s+"&lt;/b&gt;"},CountBack:function(secs,self){if(secs&lt;0){self.element.innerHTML='&lt;div class="lof-labelexpired"&gt; '+self.options.FinishMessage+"&lt;/div&gt;";return}
clearInterval(self.timer);DisplayStr=self.options.DisplayFormat.replace(/%%D%%/g,self.calculateDate(secs,86400,100000));DisplayStr=DisplayStr.replace(/%%H%%/g,self.calculateDate(secs,3600,24));DisplayStr=DisplayStr.replace(/%%M%%/g,self.calculateDate(secs,60,60));DisplayStr=DisplayStr.replace(/%%S%%/g,self.calculateDate(secs,1,60));self.element.innerHTML=DisplayStr;if(self.options.CountActive){self.timer=null;self.timer=setTimeout(function(){self.CountBack((secs+self.CountStepper),self)},(self.SetTimeOutPeriod))}}});$(document).ready(function(){$('[data-countdown="countdown"]').each(function(index,el){var $this=$(this);var $date=$this.data('date').split("-");let days=!!$(this).data('day')?$(this).data('day'):"Days";let hours=!!$(this).data('hour')?$(this).data('hour'):"Hours";let mins=!!$(this).data('min')?$(this).data('min'):"Mins";let secs=!!$(this).data('sec')?$(this).data('sec'):"Secs";$this.lofCountDown({TargetDate:$date[0]+"/"+$date[1]+"/"+$date[2]+" "+$date[3]+":"+$date[4]+":"+$date[5],DisplayFormat:"&lt;div class=\"countdown-times\"&gt;&lt;div class=\"day\"&gt;%%D%% "+days+"&lt;/div&gt;&lt;div class=\"hours\"&gt;%%H%% "+hours+"&lt;/div&gt;&lt;div class=\"minutes\"&gt;%%M%% "+mins+"&lt;/div&gt;&lt;div class=\"seconds\"&gt;%%S%% "+secs+"&lt;/div&gt;&lt;/div&gt;",FinishMessage:"Expired"})})})})(jQuery)
;</pre></body></html>