Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.188.39.197
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
svgo /
plugins /
Delete
Unzip
Name
Size
Permission
Date
Action
_collections.js
56.33
KB
-rw-r--r--
2016-12-25 15:17
_path.js
29.8
KB
-rw-r--r--
2017-01-29 15:46
_transforms.js
9.9
KB
-rw-r--r--
2016-08-20 17:44
addAttributesToSVGElement.js
1.34
KB
-rw-r--r--
2016-08-25 19:35
addClassesToSVGElement.js
1.58
KB
-rw-r--r--
2016-08-25 19:56
cleanupAttrs.js
1.28
KB
-rw-r--r--
2016-08-20 17:44
cleanupEnableBackground.js
2.25
KB
-rw-r--r--
2016-08-20 17:44
cleanupIDs.js
5.42
KB
-rw-r--r--
2016-11-21 19:50
cleanupListOfValues.js
3.45
KB
-rw-r--r--
2016-08-20 17:44
cleanupNumericValues.js
2.01
KB
-rw-r--r--
2016-08-20 17:44
collapseGroups.js
2.76
KB
-rw-r--r--
2016-12-25 15:17
convertColors.js
3.47
KB
-rw-r--r--
2016-12-25 15:17
convertPathData.js
29.66
KB
-rw-r--r--
2017-01-29 15:46
convertShapeToPath.js
2.82
KB
-rw-r--r--
2016-08-20 17:44
convertStyleToAttrs.js
3.93
KB
-rw-r--r--
2016-08-20 17:44
convertTransform.js
10.65
KB
-rw-r--r--
2016-08-20 17:44
mergePaths.js
2.01
KB
-rw-r--r--
2016-08-20 17:44
minifyStyles.js
1.19
KB
-rw-r--r--
2016-08-20 17:44
moveElemsAttrsToGroup.js
3.31
KB
-rw-r--r--
2016-08-20 17:44
moveGroupAttrsToElems.js
1.81
KB
-rw-r--r--
2016-08-20 17:44
removeAttrs.js
2.49
KB
-rw-r--r--
2016-08-20 17:44
removeComments.js
508
B
-rw-r--r--
2016-08-20 17:44
removeDesc.js
785
B
-rw-r--r--
2016-08-20 17:44
removeDimensions.js
662
B
-rw-r--r--
2016-08-20 17:44
removeDoctype.js
1.01
KB
-rw-r--r--
2016-08-20 17:44
removeEditorsNSData.js
1.51
KB
-rw-r--r--
2016-08-20 17:44
removeElementsByAttr.js
1.89
KB
-rw-r--r--
2016-08-20 17:44
removeEmptyAttrs.js
509
B
-rw-r--r--
2016-08-20 17:44
removeEmptyContainers.js
690
B
-rw-r--r--
2016-08-20 17:44
removeEmptyText.js
1.1
KB
-rw-r--r--
2016-08-20 17:44
removeHiddenElems.js
6.23
KB
-rw-r--r--
2016-08-20 17:44
removeMetadata.js
392
B
-rw-r--r--
2016-08-20 17:44
removeNonInheritableGroupAttrs.js
1.08
KB
-rw-r--r--
2016-11-20 10:56
removeRasterImages.js
558
B
-rw-r--r--
2016-08-20 17:44
removeStyleElement.js
426
B
-rw-r--r--
2016-08-20 17:44
removeTitle.js
497
B
-rw-r--r--
2016-08-20 17:44
removeUnknownsAndDefaults.js
4.48
KB
-rw-r--r--
2016-12-25 15:17
removeUnusedNS.js
2.33
KB
-rw-r--r--
2016-08-20 17:44
removeUselessDefs.js
1.01
KB
-rw-r--r--
2016-08-24 19:21
removeUselessStrokeAndFill.js
2.37
KB
-rw-r--r--
2016-08-20 17:44
removeViewBox.js
1.15
KB
-rw-r--r--
2016-08-20 17:44
removeXMLNS.js
591
B
-rw-r--r--
2016-08-25 19:56
removeXMLProcInst.js
487
B
-rw-r--r--
2016-08-20 17:44
sortAttrs.js
1.5
KB
-rw-r--r--
2016-08-25 19:35
transformsWithOnePath.js
10.57
KB
-rw-r--r--
2016-08-20 17:44
Save
Rename
/* jshint quotmark: false */ 'use strict'; exports.type = 'perItem'; exports.active = true; exports.description = 'converts style to attributes'; var EXTEND = require('whet.extend'), stylingProps = require('./_collections').attrsGroups.presentation, rEscape = '\\\\(?:[0-9a-f]{1,6}\\s?|\\r\\n|.)', // Like \" or \2051. Code points consume one space. rAttr = '\\s*(' + g('[^:;\\\\]', rEscape) + '*?)\\s*', // attribute name like ‘fill’ rSingleQuotes = "'(?:[^'\\n\\r\\\\]|" + rEscape + ")*?(?:'|$)", // string in single quotes: 'smth' rQuotes = '"(?:[^"\\n\\r\\\\]|' + rEscape + ')*?(?:"|$)', // string in double quotes: "smth" rQuotedString = new RegExp('^' + g(rSingleQuotes, rQuotes) + '$'), // Parentheses, E.g.: url(data:image/png;base64,iVBO...). // ':' and ';' inside of it should be threated as is. (Just like in strings.) rParenthesis = '\\(' + g('[^\'"()\\\\]+', rEscape, rSingleQuotes, rQuotes) + '*?' + '\\)', // The value. It can have strings and parentheses (see above). Fallbacks to anything in case of unexpected input. rValue = '\\s*(' + g('[^\'"();\\\\]+?', rEscape, rSingleQuotes, rQuotes, rParenthesis, '[^;]*?') + '*?' + ')', // End of declaration. Spaces outside of capturing groups help to do natural trimming. rDeclEnd = '\\s*(?:;\\s*|$)', // Final RegExp to parse CSS declarations. regDeclarationBlock = new RegExp(rAttr + ':' + rValue + rDeclEnd, 'ig'), // Comments expression. Honors escape sequences and strings. regStripComments = new RegExp(g(rEscape, rSingleQuotes, rQuotes, '/\\*[^]*?\\*/'), 'ig'); /** * Convert style in attributes. Cleanups comments and illegal declarations (without colon) as a side effect. * * @example * <g style="fill:#000; color: #fff;"> * ⬇ * <g fill="#000" color="#fff"> * * @example * <g style="fill:#000; color: #fff; -webkit-blah: blah"> * ⬇ * <g fill="#000" color="#fff" style="-webkit-blah: blah"> * * @param {Object} item current iteration item * @return {Boolean} if false, item will be filtered out * * @author Kir Belevich */ exports.fn = function(item) { /* jshint boss: true */ if (item.elem && item.hasAttr('style')) { // ['opacity: 1', 'color: #000'] var styleValue = item.attr('style').value, styles = [], attrs = {}; // Strip CSS comments preserving escape sequences and strings. styleValue = styleValue.replace(regStripComments, function(match) { return match[0] == '/' ? '' : match[0] == '\\' && /[-g-z]/i.test(match[1]) ? match[1] : match; }); regDeclarationBlock.lastIndex = 0; for (var rule; rule = regDeclarationBlock.exec(styleValue);) { styles.push([rule[1], rule[2]]); } if (styles.length) { styles = styles.filter(function(style) { if (style[0]) { var prop = style[0].toLowerCase(), val = style[1]; if (rQuotedString.test(val)) { val = val.slice(1, -1); } if (stylingProps.indexOf(prop) > -1) { attrs[prop] = { name: prop, value: val, local: prop, prefix: '' }; return false; } } return true; }); EXTEND(item.attrs, attrs); if (styles.length) { item.attr('style').value = styles .map(function(declaration) { return declaration.join(':') }) .join(';'); } else { item.removeAttr('style'); } } } }; function g() { return '(?:' + Array.prototype.join.call(arguments, '|') + ')'; }