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 : 3.137.152.81
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp /
vendor /
ramsey /
uuid /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
Builder
[ DIR ]
drwxr-xr-x
2018-07-19 09:00
Codec
[ DIR ]
drwxr-xr-x
2018-07-19 09:00
Converter
[ DIR ]
drwxr-xr-x
2018-07-19 09:00
Exception
[ DIR ]
drwxr-xr-x
2018-07-19 09:00
Generator
[ DIR ]
drwxr-xr-x
2018-07-19 09:00
Provider
[ DIR ]
drwxr-xr-x
2018-07-19 09:00
BinaryUtils.php
1.1
KB
-rw-r--r--
2018-07-19 09:00
DegradedUuid.php
3.57
KB
-rw-r--r--
2018-07-19 09:00
FeatureSet.php
8.99
KB
-rw-r--r--
2018-07-19 09:00
Uuid.php
22.28
KB
-rw-r--r--
2018-07-19 09:00
UuidFactory.php
8.28
KB
-rw-r--r--
2018-07-19 09:00
UuidFactoryInterface.php
3.83
KB
-rw-r--r--
2018-07-19 09:00
UuidInterface.php
9.17
KB
-rw-r--r--
2018-07-19 09:00
Save
Rename
<?php namespace Ramsey\Uuid; /** * Provides binary math utilities */ class BinaryUtils { /** * Applies the RFC 4122 variant field to the `clock_seq_hi_and_reserved` field * * @param $clockSeqHi * @return int The high field of the clock sequence multiplexed with the variant * @link http://tools.ietf.org/html/rfc4122#section-4.1.1 */ public static function applyVariant($clockSeqHi) { // Set the variant to RFC 4122 $clockSeqHi = $clockSeqHi & 0x3f; $clockSeqHi &= ~(0xc0); $clockSeqHi |= 0x80; return $clockSeqHi; } /** * Applies the RFC 4122 version number to the `time_hi_and_version` field * * @param string $timeHi * @param integer $version * @return int The high field of the timestamp multiplexed with the version number * @link http://tools.ietf.org/html/rfc4122#section-4.1.3 */ public static function applyVersion($timeHi, $version) { $timeHi = hexdec($timeHi) & 0x0fff; $timeHi &= ~(0xf000); $timeHi |= $version << 12; return $timeHi; } }