?AEGIS/State256.php000064400000014575147331221070007436 0ustar00 $state */ protected $state; public function __construct() { $this->state = array_fill(0, 6, ''); } /** * @internal Only use this for unit tests! * @return string[] */ public function getState() { return array_values($this->state); } /** * @param array $input * @return self * @throws SodiumException * * @internal Only for unit tests */ public static function initForUnitTests(array $input) { if (count($input) < 6) { throw new SodiumException('invalid input'); } $state = new self(); for ($i = 0; $i < 6; ++$i) { $state->state[$i] = $input[$i]; } return $state; } /** * @param string $key * @param string $nonce * @return self */ public static function init($key, $nonce) { $state = new self(); $k0 = ParagonIE_Sodium_Core_Util::substr($key, 0, 16); $k1 = ParagonIE_Sodium_Core_Util::substr($key, 16, 16); $n0 = ParagonIE_Sodium_Core_Util::substr($nonce, 0, 16); $n1 = ParagonIE_Sodium_Core_Util::substr($nonce, 16, 16); // S0 = k0 ^ n0 // S1 = k1 ^ n1 // S2 = C1 // S3 = C0 // S4 = k0 ^ C0 // S5 = k1 ^ C1 $k0_n0 = $k0 ^ $n0; $k1_n1 = $k1 ^ $n1; $state->state[0] = $k0_n0; $state->state[1] = $k1_n1; $state->state[2] = SODIUM_COMPAT_AEGIS_C1; $state->state[3] = SODIUM_COMPAT_AEGIS_C0; $state->state[4] = $k0 ^ SODIUM_COMPAT_AEGIS_C0; $state->state[5] = $k1 ^ SODIUM_COMPAT_AEGIS_C1; // Repeat(4, // Update(k0) // Update(k1) // Update(k0 ^ n0) // Update(k1 ^ n1) // ) for ($i = 0; $i < 4; ++$i) { $state->update($k0); $state->update($k1); $state->update($k0 ^ $n0); $state->update($k1 ^ $n1); } return $state; } /** * @param string $ai * @return self * @throws SodiumException */ public function absorb($ai) { if (ParagonIE_Sodium_Core_Util::strlen($ai) !== 16) { throw new SodiumException('Input must be an AES block in size'); } return $this->update($ai); } /** * @param string $ci * @return string * @throws SodiumException */ public function dec($ci) { if (ParagonIE_Sodium_Core_Util::strlen($ci) !== 16) { throw new SodiumException('Input must be an AES block in size'); } // z = S1 ^ S4 ^ S5 ^ (S2 & S3) $z = $this->state[1] ^ $this->state[4] ^ $this->state[5] ^ ParagonIE_Sodium_Core_Util::andStrings($this->state[2], $this->state[3]); $xi = $ci ^ $z; $this->update($xi); return $xi; } /** * @param string $cn * @return string */ public function decPartial($cn) { $len = ParagonIE_Sodium_Core_Util::strlen($cn); // z = S1 ^ S4 ^ S5 ^ (S2 & S3) $z = $this->state[1] ^ $this->state[4] ^ $this->state[5] ^ ParagonIE_Sodium_Core_Util::andStrings($this->state[2], $this->state[3]); // t = ZeroPad(cn, 128) $t = str_pad($cn, 16, "\0", STR_PAD_RIGHT); // out = t ^ z $out = $t ^ $z; // xn = Truncate(out, |cn|) $xn = ParagonIE_Sodium_Core_Util::substr($out, 0, $len); // v = ZeroPad(xn, 128) $v = str_pad($xn, 16, "\0", STR_PAD_RIGHT); // Update(v) $this->update($v); // return xn return $xn; } /** * @param string $xi * @return string * @throws SodiumException */ public function enc($xi) { if (ParagonIE_Sodium_Core_Util::strlen($xi) !== 16) { throw new SodiumException('Input must be an AES block in size'); } // z = S1 ^ S4 ^ S5 ^ (S2 & S3) $z = $this->state[1] ^ $this->state[4] ^ $this->state[5] ^ ParagonIE_Sodium_Core_Util::andStrings($this->state[2], $this->state[3]); $this->update($xi); return $xi ^ $z; } /** * @param int $ad_len_bits * @param int $msg_len_bits * @return string */ public function finalize($ad_len_bits, $msg_len_bits) { $encoded = ParagonIE_Sodium_Core_Util::store64_le($ad_len_bits) . ParagonIE_Sodium_Core_Util::store64_le($msg_len_bits); $t = $this->state[3] ^ $encoded; for ($i = 0; $i < 7; ++$i) { $this->update($t); } return ($this->state[0] ^ $this->state[1] ^ $this->state[2]) . ($this->state[3] ^ $this->state[4] ^ $this->state[5]); } /** * @param string $m * @return self */ public function update($m) { /* S'0 = AESRound(S5, S0 ^ M) S'1 = AESRound(S0, S1) S'2 = AESRound(S1, S2) S'3 = AESRound(S2, S3) S'4 = AESRound(S3, S4) S'5 = AESRound(S4, S5) */ list($s_0, $s_1) = ParagonIE_Sodium_Core_AES::doubleRound( $this->state[5],$this->state[0] ^ $m, $this->state[0], $this->state[1] ); list($s_2, $s_3) = ParagonIE_Sodium_Core_AES::doubleRound( $this->state[1], $this->state[2], $this->state[2], $this->state[3] ); list($s_4, $s_5) = ParagonIE_Sodium_Core_AES::doubleRound( $this->state[3], $this->state[4], $this->state[4], $this->state[5] ); /* S0 = S'0 S1 = S'1 S2 = S'2 S3 = S'3 S4 = S'4 S5 = S'5 */ $this->state[0] = $s_0; $this->state[1] = $s_1; $this->state[2] = $s_2; $this->state[3] = $s_3; $this->state[4] = $s_4; $this->state[5] = $s_5; return $this; } } AEGIS/State128L.php000064400000020052147331221070007533 0ustar00 $state */ protected $state; public function __construct() { $this->state = array_fill(0, 8, ''); } /** * @internal Only use this for unit tests! * @return string[] */ public function getState() { return array_values($this->state); } /** * @param array $input * @return self * @throws SodiumException * * @internal Only for unit tests */ public static function initForUnitTests(array $input) { if (count($input) < 8) { throw new SodiumException('invalid input'); } $state = new self(); for ($i = 0; $i < 8; ++$i) { $state->state[$i] = $input[$i]; } return $state; } /** * @param string $key * @param string $nonce * @return self */ public static function init($key, $nonce) { $state = new self(); // S0 = key ^ nonce $state->state[0] = $key ^ $nonce; // S1 = C1 $state->state[1] = SODIUM_COMPAT_AEGIS_C1; // S2 = C0 $state->state[2] = SODIUM_COMPAT_AEGIS_C0; // S3 = C1 $state->state[3] = SODIUM_COMPAT_AEGIS_C1; // S4 = key ^ nonce $state->state[4] = $key ^ $nonce; // S5 = key ^ C0 $state->state[5] = $key ^ SODIUM_COMPAT_AEGIS_C0; // S6 = key ^ C1 $state->state[6] = $key ^ SODIUM_COMPAT_AEGIS_C1; // S7 = key ^ C0 $state->state[7] = $key ^ SODIUM_COMPAT_AEGIS_C0; // Repeat(10, Update(nonce, key)) for ($i = 0; $i < 10; ++$i) { $state->update($nonce, $key); } return $state; } /** * @param string $ai * @return self */ public function absorb($ai) { if (ParagonIE_Sodium_Core_Util::strlen($ai) !== 32) { throw new SodiumException('Input must be two AES blocks in size'); } $t0 = ParagonIE_Sodium_Core_Util::substr($ai, 0, 16); $t1 = ParagonIE_Sodium_Core_Util::substr($ai, 16, 16); return $this->update($t0, $t1); } /** * @param string $ci * @return string * @throws SodiumException */ public function dec($ci) { if (ParagonIE_Sodium_Core_Util::strlen($ci) !== 32) { throw new SodiumException('Input must be two AES blocks in size'); } // z0 = S6 ^ S1 ^ (S2 & S3) $z0 = $this->state[6] ^ $this->state[1] ^ ParagonIE_Sodium_Core_Util::andStrings($this->state[2], $this->state[3]); // z1 = S2 ^ S5 ^ (S6 & S7) $z1 = $this->state[2] ^ $this->state[5] ^ ParagonIE_Sodium_Core_Util::andStrings($this->state[6], $this->state[7]); // t0, t1 = Split(xi, 128) $t0 = ParagonIE_Sodium_Core_Util::substr($ci, 0, 16); $t1 = ParagonIE_Sodium_Core_Util::substr($ci, 16, 16); // out0 = t0 ^ z0 // out1 = t1 ^ z1 $out0 = $t0 ^ $z0; $out1 = $t1 ^ $z1; // Update(out0, out1) // xi = out0 || out1 $this->update($out0, $out1); return $out0 . $out1; } /** * @param string $cn * @return string */ public function decPartial($cn) { $len = ParagonIE_Sodium_Core_Util::strlen($cn); // z0 = S6 ^ S1 ^ (S2 & S3) $z0 = $this->state[6] ^ $this->state[1] ^ ParagonIE_Sodium_Core_Util::andStrings($this->state[2], $this->state[3]); // z1 = S2 ^ S5 ^ (S6 & S7) $z1 = $this->state[2] ^ $this->state[5] ^ ParagonIE_Sodium_Core_Util::andStrings($this->state[6], $this->state[7]); // t0, t1 = Split(ZeroPad(cn, 256), 128) $cn = str_pad($cn, 32, "\0", STR_PAD_RIGHT); $t0 = ParagonIE_Sodium_Core_Util::substr($cn, 0, 16); $t1 = ParagonIE_Sodium_Core_Util::substr($cn, 16, 16); // out0 = t0 ^ z0 // out1 = t1 ^ z1 $out0 = $t0 ^ $z0; $out1 = $t1 ^ $z1; // xn = Truncate(out0 || out1, |cn|) $xn = ParagonIE_Sodium_Core_Util::substr($out0 . $out1, 0, $len); // v0, v1 = Split(ZeroPad(xn, 256), 128) $padded = str_pad($xn, 32, "\0", STR_PAD_RIGHT); $v0 = ParagonIE_Sodium_Core_Util::substr($padded, 0, 16); $v1 = ParagonIE_Sodium_Core_Util::substr($padded, 16, 16); // Update(v0, v1) $this->update($v0, $v1); // return xn return $xn; } /** * @param string $xi * @return string * @throws SodiumException */ public function enc($xi) { if (ParagonIE_Sodium_Core_Util::strlen($xi) !== 32) { throw new SodiumException('Input must be two AES blocks in size'); } // z0 = S6 ^ S1 ^ (S2 & S3) $z0 = $this->state[6] ^ $this->state[1] ^ ParagonIE_Sodium_Core_Util::andStrings($this->state[2], $this->state[3]); // z1 = S2 ^ S5 ^ (S6 & S7) $z1 = $this->state[2] ^ $this->state[5] ^ ParagonIE_Sodium_Core_Util::andStrings($this->state[6], $this->state[7]); // t0, t1 = Split(xi, 128) $t0 = ParagonIE_Sodium_Core_Util::substr($xi, 0, 16); $t1 = ParagonIE_Sodium_Core_Util::substr($xi, 16, 16); // out0 = t0 ^ z0 // out1 = t1 ^ z1 $out0 = $t0 ^ $z0; $out1 = $t1 ^ $z1; // Update(t0, t1) // ci = out0 || out1 $this->update($t0, $t1); // return ci return $out0 . $out1; } /** * @param int $ad_len_bits * @param int $msg_len_bits * @return string */ public function finalize($ad_len_bits, $msg_len_bits) { $encoded = ParagonIE_Sodium_Core_Util::store64_le($ad_len_bits) . ParagonIE_Sodium_Core_Util::store64_le($msg_len_bits); $t = $this->state[2] ^ $encoded; for ($i = 0; $i < 7; ++$i) { $this->update($t, $t); } return ($this->state[0] ^ $this->state[1] ^ $this->state[2] ^ $this->state[3]) . ($this->state[4] ^ $this->state[5] ^ $this->state[6] ^ $this->state[7]); } /** * @param string $m0 * @param string $m1 * @return self */ public function update($m0, $m1) { /* S'0 = AESRound(S7, S0 ^ M0) S'1 = AESRound(S0, S1) S'2 = AESRound(S1, S2) S'3 = AESRound(S2, S3) S'4 = AESRound(S3, S4 ^ M1) S'5 = AESRound(S4, S5) S'6 = AESRound(S5, S6) S'7 = AESRound(S6, S7) */ list($s_0, $s_1) = ParagonIE_Sodium_Core_AES::doubleRound( $this->state[7], $this->state[0] ^ $m0, $this->state[0], $this->state[1] ); list($s_2, $s_3) = ParagonIE_Sodium_Core_AES::doubleRound( $this->state[1], $this->state[2], $this->state[2], $this->state[3] ); list($s_4, $s_5) = ParagonIE_Sodium_Core_AES::doubleRound( $this->state[3], $this->state[4] ^ $m1, $this->state[4], $this->state[5] ); list($s_6, $s_7) = ParagonIE_Sodium_Core_AES::doubleRound( $this->state[5], $this->state[6], $this->state[6], $this->state[7] ); /* S0 = S'0 S1 = S'1 S2 = S'2 S3 = S'3 S4 = S'4 S5 = S'5 S6 = S'6 S7 = S'7 */ $this->state[0] = $s_0; $this->state[1] = $s_1; $this->state[2] = $s_2; $this->state[3] = $s_3; $this->state[4] = $s_4; $this->state[5] = $s_5; $this->state[6] = $s_6; $this->state[7] = $s_7; return $this; } }XSalsa20.php000064400000002533147331221070006615 0ustar00 $skey -- has size 120 */ protected $skey; /** @var bool $expanded */ protected $expanded = false; /** @var int $numRounds */ private $numRounds; /** * @param array $skey * @param int $numRounds */ public function __construct(array $skey, $numRounds = 10) { $this->skey = $skey; $this->numRounds = $numRounds; } /** * Get a value at an arbitrary index. Mostly used for unit testing. * * @param int $i * @return int */ public function get($i) { return $this->skey[$i]; } /** * @return int */ public function getNumRounds() { return $this->numRounds; } /** * @param int $offset * @return ParagonIE_Sodium_Core_AES_Block */ public function getRoundKey($offset) { return ParagonIE_Sodium_Core_AES_Block::fromArray( array_slice($this->skey, $offset, 8) ); } /** * Return an expanded key schedule * * @return ParagonIE_Sodium_Core_AES_Expanded */ public function expand() { $exp = new ParagonIE_Sodium_Core_AES_Expanded( array_fill(0, 120, 0), $this->numRounds ); $n = ($exp->numRounds + 1) << 2; for ($u = 0, $v = 0; $u < $n; ++$u, $v += 2) { $x = $y = $this->skey[$u]; $x &= 0x55555555; $exp->skey[$v] = ($x | ($x << 1)) & ParagonIE_Sodium_Core_Util::U32_MAX; $y &= 0xAAAAAAAA; $exp->skey[$v + 1] = ($y | ($y >> 1)) & ParagonIE_Sodium_Core_Util::U32_MAX; } return $exp; } } AES/Block.php000064400000024342147331221070006724 0ustar00 */ protected $values = array(); /** * @var int */ protected $size; /** * @param int $size */ public function __construct($size = 8) { parent::__construct($size); $this->size = $size; $this->values = array_fill(0, $size, 0); } /** * @return self */ public static function init() { return new self(8); } /** * @internal You should not use this directly from another application * * @param array $array * @param bool $save_indexes * @return self * * @psalm-suppress MethodSignatureMismatch */ #[ReturnTypeWillChange] public static function fromArray($array, $save_indexes = null) { $count = count($array); if ($save_indexes) { $keys = array_keys($array); } else { $keys = range(0, $count - 1); } $array = array_values($array); /** @var array $keys */ $obj = new ParagonIE_Sodium_Core_AES_Block(); if ($save_indexes) { for ($i = 0; $i < $count; ++$i) { $obj->offsetSet($keys[$i], $array[$i]); } } else { for ($i = 0; $i < $count; ++$i) { $obj->offsetSet($i, $array[$i]); } } return $obj; } /** * @internal You should not use this directly from another application * * @param int|null $offset * @param int $value * @return void * * @psalm-suppress MethodSignatureMismatch * @psalm-suppress MixedArrayOffset */ #[ReturnTypeWillChange] public function offsetSet($offset, $value) { if (!is_int($value)) { throw new InvalidArgumentException('Expected an integer'); } if (is_null($offset)) { $this->values[] = $value; } else { $this->values[$offset] = $value; } } /** * @internal You should not use this directly from another application * * @param int $offset * @return bool * * @psalm-suppress MethodSignatureMismatch * @psalm-suppress MixedArrayOffset */ #[ReturnTypeWillChange] public function offsetExists($offset) { return isset($this->values[$offset]); } /** * @internal You should not use this directly from another application * * @param int $offset * @return void * * @psalm-suppress MethodSignatureMismatch * @psalm-suppress MixedArrayOffset */ #[ReturnTypeWillChange] public function offsetUnset($offset) { unset($this->values[$offset]); } /** * @internal You should not use this directly from another application * * @param int $offset * @return int * * @psalm-suppress MethodSignatureMismatch * @psalm-suppress MixedArrayOffset */ #[ReturnTypeWillChange] public function offsetGet($offset) { if (!isset($this->values[$offset])) { $this->values[$offset] = 0; } return (int) ($this->values[$offset]); } /** * @internal You should not use this directly from another application * * @return array */ public function __debugInfo() { $out = array(); foreach ($this->values as $v) { $out[] = str_pad(dechex($v), 8, '0', STR_PAD_LEFT); } return array(implode(', ', $out)); /* return array(implode(', ', $this->values)); */ } /** * @param int $cl low bit mask * @param int $ch high bit mask * @param int $s shift * @param int $x index 1 * @param int $y index 2 * @return self */ public function swapN($cl, $ch, $s, $x, $y) { static $u32mask = ParagonIE_Sodium_Core_Util::U32_MAX; $a = $this->values[$x] & $u32mask; $b = $this->values[$y] & $u32mask; // (x) = (a & cl) | ((b & cl) << (s)); $this->values[$x] = ($a & $cl) | ((($b & $cl) << $s) & $u32mask); // (y) = ((a & ch) >> (s)) | (b & ch); $this->values[$y] = ((($a & $ch) & $u32mask) >> $s) | ($b & $ch); return $this; } /** * @param int $x index 1 * @param int $y index 2 * @return self */ public function swap2($x, $y) { return $this->swapN(0x55555555, 0xAAAAAAAA, 1, $x, $y); } /** * @param int $x index 1 * @param int $y index 2 * @return self */ public function swap4($x, $y) { return $this->swapN(0x33333333, 0xCCCCCCCC, 2, $x, $y); } /** * @param int $x index 1 * @param int $y index 2 * @return self */ public function swap8($x, $y) { return $this->swapN(0x0F0F0F0F, 0xF0F0F0F0, 4, $x, $y); } /** * @return self */ public function orthogonalize() { return $this ->swap2(0, 1) ->swap2(2, 3) ->swap2(4, 5) ->swap2(6, 7) ->swap4(0, 2) ->swap4(1, 3) ->swap4(4, 6) ->swap4(5, 7) ->swap8(0, 4) ->swap8(1, 5) ->swap8(2, 6) ->swap8(3, 7); } /** * @return self */ public function shiftRows() { for ($i = 0; $i < 8; ++$i) { $x = $this->values[$i] & ParagonIE_Sodium_Core_Util::U32_MAX; $this->values[$i] = ( ($x & 0x000000FF) | (($x & 0x0000FC00) >> 2) | (($x & 0x00000300) << 6) | (($x & 0x00F00000) >> 4) | (($x & 0x000F0000) << 4) | (($x & 0xC0000000) >> 6) | (($x & 0x3F000000) << 2) ) & ParagonIE_Sodium_Core_Util::U32_MAX; } return $this; } /** * @param int $x * @return int */ public static function rotr16($x) { return (($x << 16) & ParagonIE_Sodium_Core_Util::U32_MAX) | ($x >> 16); } /** * @return self */ public function mixColumns() { $q0 = $this->values[0]; $q1 = $this->values[1]; $q2 = $this->values[2]; $q3 = $this->values[3]; $q4 = $this->values[4]; $q5 = $this->values[5]; $q6 = $this->values[6]; $q7 = $this->values[7]; $r0 = (($q0 >> 8) | ($q0 << 24)) & ParagonIE_Sodium_Core_Util::U32_MAX; $r1 = (($q1 >> 8) | ($q1 << 24)) & ParagonIE_Sodium_Core_Util::U32_MAX; $r2 = (($q2 >> 8) | ($q2 << 24)) & ParagonIE_Sodium_Core_Util::U32_MAX; $r3 = (($q3 >> 8) | ($q3 << 24)) & ParagonIE_Sodium_Core_Util::U32_MAX; $r4 = (($q4 >> 8) | ($q4 << 24)) & ParagonIE_Sodium_Core_Util::U32_MAX; $r5 = (($q5 >> 8) | ($q5 << 24)) & ParagonIE_Sodium_Core_Util::U32_MAX; $r6 = (($q6 >> 8) | ($q6 << 24)) & ParagonIE_Sodium_Core_Util::U32_MAX; $r7 = (($q7 >> 8) | ($q7 << 24)) & ParagonIE_Sodium_Core_Util::U32_MAX; $this->values[0] = $q7 ^ $r7 ^ $r0 ^ self::rotr16($q0 ^ $r0); $this->values[1] = $q0 ^ $r0 ^ $q7 ^ $r7 ^ $r1 ^ self::rotr16($q1 ^ $r1); $this->values[2] = $q1 ^ $r1 ^ $r2 ^ self::rotr16($q2 ^ $r2); $this->values[3] = $q2 ^ $r2 ^ $q7 ^ $r7 ^ $r3 ^ self::rotr16($q3 ^ $r3); $this->values[4] = $q3 ^ $r3 ^ $q7 ^ $r7 ^ $r4 ^ self::rotr16($q4 ^ $r4); $this->values[5] = $q4 ^ $r4 ^ $r5 ^ self::rotr16($q5 ^ $r5); $this->values[6] = $q5 ^ $r5 ^ $r6 ^ self::rotr16($q6 ^ $r6); $this->values[7] = $q6 ^ $r6 ^ $r7 ^ self::rotr16($q7 ^ $r7); return $this; } /** * @return self */ public function inverseMixColumns() { $q0 = $this->values[0]; $q1 = $this->values[1]; $q2 = $this->values[2]; $q3 = $this->values[3]; $q4 = $this->values[4]; $q5 = $this->values[5]; $q6 = $this->values[6]; $q7 = $this->values[7]; $r0 = (($q0 >> 8) | ($q0 << 24)) & ParagonIE_Sodium_Core_Util::U32_MAX; $r1 = (($q1 >> 8) | ($q1 << 24)) & ParagonIE_Sodium_Core_Util::U32_MAX; $r2 = (($q2 >> 8) | ($q2 << 24)) & ParagonIE_Sodium_Core_Util::U32_MAX; $r3 = (($q3 >> 8) | ($q3 << 24)) & ParagonIE_Sodium_Core_Util::U32_MAX; $r4 = (($q4 >> 8) | ($q4 << 24)) & ParagonIE_Sodium_Core_Util::U32_MAX; $r5 = (($q5 >> 8) | ($q5 << 24)) & ParagonIE_Sodium_Core_Util::U32_MAX; $r6 = (($q6 >> 8) | ($q6 << 24)) & ParagonIE_Sodium_Core_Util::U32_MAX; $r7 = (($q7 >> 8) | ($q7 << 24)) & ParagonIE_Sodium_Core_Util::U32_MAX; $this->values[0] = $q5 ^ $q6 ^ $q7 ^ $r0 ^ $r5 ^ $r7 ^ self::rotr16($q0 ^ $q5 ^ $q6 ^ $r0 ^ $r5); $this->values[1] = $q0 ^ $q5 ^ $r0 ^ $r1 ^ $r5 ^ $r6 ^ $r7 ^ self::rotr16($q1 ^ $q5 ^ $q7 ^ $r1 ^ $r5 ^ $r6); $this->values[2] = $q0 ^ $q1 ^ $q6 ^ $r1 ^ $r2 ^ $r6 ^ $r7 ^ self::rotr16($q0 ^ $q2 ^ $q6 ^ $r2 ^ $r6 ^ $r7); $this->values[3] = $q0 ^ $q1 ^ $q2 ^ $q5 ^ $q6 ^ $r0 ^ $r2 ^ $r3 ^ $r5 ^ self::rotr16($q0 ^ $q1 ^ $q3 ^ $q5 ^ $q6 ^ $q7 ^ $r0 ^ $r3 ^ $r5 ^ $r7); $this->values[4] = $q1 ^ $q2 ^ $q3 ^ $q5 ^ $r1 ^ $r3 ^ $r4 ^ $r5 ^ $r6 ^ $r7 ^ self::rotr16($q1 ^ $q2 ^ $q4 ^ $q5 ^ $q7 ^ $r1 ^ $r4 ^ $r5 ^ $r6); $this->values[5] = $q2 ^ $q3 ^ $q4 ^ $q6 ^ $r2 ^ $r4 ^ $r5 ^ $r6 ^ $r7 ^ self::rotr16($q2 ^ $q3 ^ $q5 ^ $q6 ^ $r2 ^ $r5 ^ $r6 ^ $r7); $this->values[6] = $q3 ^ $q4 ^ $q5 ^ $q7 ^ $r3 ^ $r5 ^ $r6 ^ $r7 ^ self::rotr16($q3 ^ $q4 ^ $q6 ^ $q7 ^ $r3 ^ $r6 ^ $r7); $this->values[7] = $q4 ^ $q5 ^ $q6 ^ $r4 ^ $r6 ^ $r7 ^ self::rotr16($q4 ^ $q5 ^ $q7 ^ $r4 ^ $r7); return $this; } /** * @return self */ public function inverseShiftRows() { for ($i = 0; $i < 8; ++$i) { $x = $this->values[$i]; $this->values[$i] = ParagonIE_Sodium_Core_Util::U32_MAX & ( ($x & 0x000000FF) | (($x & 0x00003F00) << 2) | (($x & 0x0000C000) >> 6) | (($x & 0x000F0000) << 4) | (($x & 0x00F00000) >> 4) | (($x & 0x03000000) << 6) | (($x & 0xFC000000) >> 2) ); } return $this; } } AES/error_log000064400000002005147331221070007066 0ustar00[25-Dec-2024 06:19:47 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_AES_KeySchedule' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/src/Core/AES/Expanded.php:10 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/src/Core/AES/Expanded.php on line 10 [25-Dec-2024 10:14:31 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_AES_KeySchedule' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/src/Core/AES/Expanded.php:10 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/src/Core/AES/Expanded.php on line 10 [25-Dec-2024 12:29:47 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_AES_KeySchedule' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/src/Core/AES/Expanded.php:10 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/src/Core/AES/Expanded.php on line 10 AES/Expanded.php000064400000000460147331221070007415 0ustar00key = $key; $this->counter = 1; if (is_null($nonce)) { $nonce = str_repeat("\0", 12); } $this->nonce = str_pad($nonce, 12, "\0", STR_PAD_RIGHT);; $this->_pad = str_repeat("\0", 4); } /** * @return self */ public function counterReset() { $this->counter = 1; $this->_pad = str_repeat("\0", 4); return $this; } /** * @return string */ public function getKey() { return $this->key; } /** * @return string */ public function getCounter() { return ParagonIE_Sodium_Core_Util::store32_le($this->counter); } /** * @return string */ public function getNonce() { if (!is_string($this->nonce)) { $this->nonce = str_repeat("\0", 12); } if (ParagonIE_Sodium_Core_Util::strlen($this->nonce) !== 12) { $this->nonce = str_pad($this->nonce, 12, "\0", STR_PAD_RIGHT); } return $this->nonce; } /** * @return string */ public function getCombinedNonce() { return $this->getCounter() . ParagonIE_Sodium_Core_Util::substr($this->getNonce(), 0, 8); } /** * @return self */ public function incrementCounter() { ++$this->counter; return $this; } /** * @return bool */ public function needsRekey() { return ($this->counter & 0xffff) === 0; } /** * @param string $newKeyAndNonce * @return self */ public function rekey($newKeyAndNonce) { $this->key = ParagonIE_Sodium_Core_Util::substr($newKeyAndNonce, 0, 32); $this->nonce = str_pad( ParagonIE_Sodium_Core_Util::substr($newKeyAndNonce, 32), 12, "\0", STR_PAD_RIGHT ); return $this; } /** * @param string $str * @return self */ public function xorNonce($str) { $this->nonce = ParagonIE_Sodium_Core_Util::xorStrings( $this->getNonce(), str_pad( ParagonIE_Sodium_Core_Util::substr($str, 0, 8), 12, "\0", STR_PAD_RIGHT ) ); return $this; } /** * @param string $string * @return self */ public static function fromString($string) { $state = new ParagonIE_Sodium_Core_SecretStream_State( ParagonIE_Sodium_Core_Util::substr($string, 0, 32) ); $state->counter = ParagonIE_Sodium_Core_Util::load_4( ParagonIE_Sodium_Core_Util::substr($string, 32, 4) ); $state->nonce = ParagonIE_Sodium_Core_Util::substr($string, 36, 12); $state->_pad = ParagonIE_Sodium_Core_Util::substr($string, 48, 8); return $state; } /** * @return string */ public function toString() { return $this->key . $this->getCounter() . $this->nonce . $this->_pad; } } BLAKE2b.php000064400000000142147331221070006314 0ustar00> 31) & 1; } /** * @param ParagonIE_Sodium_Core_Curve25519_Fe $u * @param ParagonIE_Sodium_Core_Curve25519_Fe $v * @return array{x: ParagonIE_Sodium_Core_Curve25519_Fe, nonsquare: int} * * @throws SodiumException */ public static function ristretto255_sqrt_ratio_m1( ParagonIE_Sodium_Core_Curve25519_Fe $u, ParagonIE_Sodium_Core_Curve25519_Fe $v ) { $sqrtm1 = ParagonIE_Sodium_Core_Curve25519_Fe::fromArray(self::$sqrtm1); $v3 = self::fe_mul( self::fe_sq($v), $v ); /* v3 = v^3 */ $x = self::fe_mul( self::fe_mul( self::fe_sq($v3), $u ), $v ); /* x = uv^7 */ $x = self::fe_mul( self::fe_mul( self::fe_pow22523($x), /* x = (uv^7)^((q-5)/8) */ $v3 ), $u ); /* x = uv^3(uv^7)^((q-5)/8) */ $vxx = self::fe_mul( self::fe_sq($x), $v ); /* vx^2 */ $m_root_check = self::fe_sub($vxx, $u); /* vx^2-u */ $p_root_check = self::fe_add($vxx, $u); /* vx^2+u */ $f_root_check = self::fe_mul($u, $sqrtm1); /* u*sqrt(-1) */ $f_root_check = self::fe_add($vxx, $f_root_check); /* vx^2+u*sqrt(-1) */ $has_m_root = self::fe_iszero($m_root_check); $has_p_root = self::fe_iszero($p_root_check); $has_f_root = self::fe_iszero($f_root_check); $x_sqrtm1 = self::fe_mul($x, $sqrtm1); /* x*sqrt(-1) */ $x = self::fe_abs( self::fe_cmov($x, $x_sqrtm1, $has_p_root | $has_f_root) ); return array( 'x' => $x, 'nonsquare' => $has_m_root | $has_p_root ); } /** * @param string $s * @return int * @throws SodiumException */ public static function ristretto255_point_is_canonical($s) { $c = (self::chrToInt($s[31]) & 0x7f) ^ 0x7f; for ($i = 30; $i > 0; --$i) { $c |= self::chrToInt($s[$i]) ^ 0xff; } $c = ($c - 1) >> 8; $d = (0xed - 1 - self::chrToInt($s[0])) >> 8; $e = self::chrToInt($s[31]) >> 7; return 1 - ((($c & $d) | $e | self::chrToInt($s[0])) & 1); } /** * @param string $s * @param bool $skipCanonicalCheck * @return array{h: ParagonIE_Sodium_Core_Curve25519_Ge_P3, res: int} * @throws SodiumException */ public static function ristretto255_frombytes($s, $skipCanonicalCheck = false) { if (!$skipCanonicalCheck) { if (!self::ristretto255_point_is_canonical($s)) { throw new SodiumException('S is not canonical'); } } $s_ = self::fe_frombytes($s); $ss = self::fe_sq($s_); /* ss = s^2 */ $u1 = self::fe_sub(self::fe_1(), $ss); /* u1 = 1-ss */ $u1u1 = self::fe_sq($u1); /* u1u1 = u1^2 */ $u2 = self::fe_add(self::fe_1(), $ss); /* u2 = 1+ss */ $u2u2 = self::fe_sq($u2); /* u2u2 = u2^2 */ $v = self::fe_mul( ParagonIE_Sodium_Core_Curve25519_Fe::fromArray(self::$d), $u1u1 ); /* v = d*u1^2 */ $v = self::fe_neg($v); /* v = -d*u1^2 */ $v = self::fe_sub($v, $u2u2); /* v = -(d*u1^2)-u2^2 */ $v_u2u2 = self::fe_mul($v, $u2u2); /* v_u2u2 = v*u2^2 */ // fe25519_1(one); // notsquare = ristretto255_sqrt_ratio_m1(inv_sqrt, one, v_u2u2); $one = self::fe_1(); $result = self::ristretto255_sqrt_ratio_m1($one, $v_u2u2); $inv_sqrt = $result['x']; $notsquare = $result['nonsquare']; $h = new ParagonIE_Sodium_Core_Curve25519_Ge_P3(); $h->X = self::fe_mul($inv_sqrt, $u2); $h->Y = self::fe_mul(self::fe_mul($inv_sqrt, $h->X), $v); $h->X = self::fe_mul($h->X, $s_); $h->X = self::fe_abs( self::fe_add($h->X, $h->X) ); $h->Y = self::fe_mul($u1, $h->Y); $h->Z = self::fe_1(); $h->T = self::fe_mul($h->X, $h->Y); $res = - ((1 - $notsquare) | self::fe_isnegative($h->T) | self::fe_iszero($h->Y)); return array('h' => $h, 'res' => $res); } /** * @param ParagonIE_Sodium_Core_Curve25519_Ge_P3 $h * @return string * @throws SodiumException */ public static function ristretto255_p3_tobytes(ParagonIE_Sodium_Core_Curve25519_Ge_P3 $h) { $sqrtm1 = ParagonIE_Sodium_Core_Curve25519_Fe::fromArray(self::$sqrtm1); $invsqrtamd = ParagonIE_Sodium_Core_Curve25519_Fe::fromArray(self::$invsqrtamd); $u1 = self::fe_add($h->Z, $h->Y); /* u1 = Z+Y */ $zmy = self::fe_sub($h->Z, $h->Y); /* zmy = Z-Y */ $u1 = self::fe_mul($u1, $zmy); /* u1 = (Z+Y)*(Z-Y) */ $u2 = self::fe_mul($h->X, $h->Y); /* u2 = X*Y */ $u1_u2u2 = self::fe_mul(self::fe_sq($u2), $u1); /* u1_u2u2 = u1*u2^2 */ $one = self::fe_1(); // fe25519_1(one); // (void) ristretto255_sqrt_ratio_m1(inv_sqrt, one, u1_u2u2); $result = self::ristretto255_sqrt_ratio_m1($one, $u1_u2u2); $inv_sqrt = $result['x']; $den1 = self::fe_mul($inv_sqrt, $u1); /* den1 = inv_sqrt*u1 */ $den2 = self::fe_mul($inv_sqrt, $u2); /* den2 = inv_sqrt*u2 */ $z_inv = self::fe_mul($h->T, self::fe_mul($den1, $den2)); /* z_inv = den1*den2*T */ $ix = self::fe_mul($h->X, $sqrtm1); /* ix = X*sqrt(-1) */ $iy = self::fe_mul($h->Y, $sqrtm1); /* iy = Y*sqrt(-1) */ $eden = self::fe_mul($den1, $invsqrtamd); $t_z_inv = self::fe_mul($h->T, $z_inv); /* t_z_inv = T*z_inv */ $rotate = self::fe_isnegative($t_z_inv); $x_ = self::fe_copy($h->X); $y_ = self::fe_copy($h->Y); $den_inv = self::fe_copy($den2); $x_ = self::fe_cmov($x_, $iy, $rotate); $y_ = self::fe_cmov($y_, $ix, $rotate); $den_inv = self::fe_cmov($den_inv, $eden, $rotate); $x_z_inv = self::fe_mul($x_, $z_inv); $y_ = self::fe_cneg($y_, self::fe_isnegative($x_z_inv)); // fe25519_sub(s_, h->Z, y_); // fe25519_mul(s_, den_inv, s_); // fe25519_abs(s_, s_); // fe25519_tobytes(s, s_); return self::fe_tobytes( self::fe_abs( self::fe_mul( $den_inv, self::fe_sub($h->Z, $y_) ) ) ); } /** * @param ParagonIE_Sodium_Core_Curve25519_Fe $t * @return ParagonIE_Sodium_Core_Curve25519_Ge_P3 * * @throws SodiumException */ public static function ristretto255_elligator(ParagonIE_Sodium_Core_Curve25519_Fe $t) { $sqrtm1 = ParagonIE_Sodium_Core_Curve25519_Fe::fromArray(self::$sqrtm1); $onemsqd = ParagonIE_Sodium_Core_Curve25519_Fe::fromArray(self::$onemsqd); $d = ParagonIE_Sodium_Core_Curve25519_Fe::fromArray(self::$d); $sqdmone = ParagonIE_Sodium_Core_Curve25519_Fe::fromArray(self::$sqdmone); $sqrtadm1 = ParagonIE_Sodium_Core_Curve25519_Fe::fromArray(self::$sqrtadm1); $one = self::fe_1(); $r = self::fe_mul($sqrtm1, self::fe_sq($t)); /* r = sqrt(-1)*t^2 */ $u = self::fe_mul(self::fe_add($r, $one), $onemsqd); /* u = (r+1)*(1-d^2) */ $c = self::fe_neg(self::fe_1()); /* c = -1 */ $rpd = self::fe_add($r, $d); /* rpd = r+d */ $v = self::fe_mul( self::fe_sub( $c, self::fe_mul($r, $d) ), $rpd ); /* v = (c-r*d)*(r+d) */ $result = self::ristretto255_sqrt_ratio_m1($u, $v); $s = $result['x']; $wasnt_square = 1 - $result['nonsquare']; $s_prime = self::fe_neg( self::fe_abs( self::fe_mul($s, $t) ) ); /* s_prime = -|s*t| */ $s = self::fe_cmov($s, $s_prime, $wasnt_square); $c = self::fe_cmov($c, $r, $wasnt_square); // fe25519_sub(n, r, one); /* n = r-1 */ // fe25519_mul(n, n, c); /* n = c*(r-1) */ // fe25519_mul(n, n, ed25519_sqdmone); /* n = c*(r-1)*(d-1)^2 */ // fe25519_sub(n, n, v); /* n = c*(r-1)*(d-1)^2-v */ $n = self::fe_sub( self::fe_mul( self::fe_mul( self::fe_sub($r, $one), $c ), $sqdmone ), $v ); /* n = c*(r-1)*(d-1)^2-v */ $w0 = self::fe_mul( self::fe_add($s, $s), $v ); /* w0 = 2s*v */ $w1 = self::fe_mul($n, $sqrtadm1); /* w1 = n*sqrt(ad-1) */ $ss = self::fe_sq($s); /* ss = s^2 */ $w2 = self::fe_sub($one, $ss); /* w2 = 1-s^2 */ $w3 = self::fe_add($one, $ss); /* w3 = 1+s^2 */ return new ParagonIE_Sodium_Core_Curve25519_Ge_P3( self::fe_mul($w0, $w3), self::fe_mul($w2, $w1), self::fe_mul($w1, $w3), self::fe_mul($w0, $w2) ); } /** * @param string $h * @return string * @throws SodiumException */ public static function ristretto255_from_hash($h) { if (self::strlen($h) !== 64) { throw new SodiumException('Hash must be 64 bytes'); } //fe25519_frombytes(r0, h); //fe25519_frombytes(r1, h + 32); $r0 = self::fe_frombytes(self::substr($h, 0, 32)); $r1 = self::fe_frombytes(self::substr($h, 32, 32)); //ristretto255_elligator(&p0, r0); //ristretto255_elligator(&p1, r1); $p0 = self::ristretto255_elligator($r0); $p1 = self::ristretto255_elligator($r1); //ge25519_p3_to_cached(&p1_cached, &p1); //ge25519_add_cached(&p_p1p1, &p0, &p1_cached); $p_p1p1 = self::ge_add( $p0, self::ge_p3_to_cached($p1) ); //ge25519_p1p1_to_p3(&p, &p_p1p1); //ristretto255_p3_tobytes(s, &p); return self::ristretto255_p3_tobytes( self::ge_p1p1_to_p3($p_p1p1) ); } /** * @param string $p * @return int * @throws SodiumException */ public static function is_valid_point($p) { $result = self::ristretto255_frombytes($p); if ($result['res'] !== 0) { return 0; } return 1; } /** * @param string $p * @param string $q * @return string * @throws SodiumException */ public static function ristretto255_add($p, $q) { $p_res = self::ristretto255_frombytes($p); $q_res = self::ristretto255_frombytes($q); if ($p_res['res'] !== 0 || $q_res['res'] !== 0) { throw new SodiumException('Could not add points'); } $p_p3 = $p_res['h']; $q_p3 = $q_res['h']; $q_cached = self::ge_p3_to_cached($q_p3); $r_p1p1 = self::ge_add($p_p3, $q_cached); $r_p3 = self::ge_p1p1_to_p3($r_p1p1); return self::ristretto255_p3_tobytes($r_p3); } /** * @param string $p * @param string $q * @return string * @throws SodiumException */ public static function ristretto255_sub($p, $q) { $p_res = self::ristretto255_frombytes($p); $q_res = self::ristretto255_frombytes($q); if ($p_res['res'] !== 0 || $q_res['res'] !== 0) { throw new SodiumException('Could not add points'); } $p_p3 = $p_res['h']; $q_p3 = $q_res['h']; $q_cached = self::ge_p3_to_cached($q_p3); $r_p1p1 = self::ge_sub($p_p3, $q_cached); $r_p3 = self::ge_p1p1_to_p3($r_p1p1); return self::ristretto255_p3_tobytes($r_p3); } /** * @param int $hLen * @param ?string $ctx * @param string $msg * @return string * @throws SodiumException * @psalm-suppress PossiblyInvalidArgument hash API */ protected static function h2c_string_to_hash_sha256($hLen, $ctx, $msg) { $h = array_fill(0, $hLen, 0); $ctx_len = !is_null($ctx) ? self::strlen($ctx) : 0; if ($hLen > 0xff) { throw new SodiumException('Hash must be less than 256 bytes'); } if ($ctx_len > 0xff) { $st = hash_init('sha256'); self::hash_update($st, "H2C-OVERSIZE-DST-"); self::hash_update($st, $ctx); $ctx = hash_final($st, true); $ctx_len = 32; } $t = array(0, $hLen, 0); $ux = str_repeat("\0", 64); $st = hash_init('sha256'); self::hash_update($st, $ux); self::hash_update($st, $msg); self::hash_update($st, self::intArrayToString($t)); self::hash_update($st, $ctx); self::hash_update($st, self::intToChr($ctx_len)); $u0 = hash_final($st, true); for ($i = 0; $i < $hLen; $i += 64) { $ux = self::xorStrings($ux, $u0); ++$t[2]; $st = hash_init('sha256'); self::hash_update($st, $ux); self::hash_update($st, self::intToChr($t[2])); self::hash_update($st, $ctx); self::hash_update($st, self::intToChr($ctx_len)); $ux = hash_final($st, true); $amount = min($hLen - $i, 64); for ($j = 0; $j < $amount; ++$j) { $h[$i + $j] = self::chrToInt($ux[$i]); } } return self::intArrayToString(array_slice($h, 0, $hLen)); } /** * @param int $hLen * @param ?string $ctx * @param string $msg * @return string * @throws SodiumException * @psalm-suppress PossiblyInvalidArgument hash API */ protected static function h2c_string_to_hash_sha512($hLen, $ctx, $msg) { $h = array_fill(0, $hLen, 0); $ctx_len = !is_null($ctx) ? self::strlen($ctx) : 0; if ($hLen > 0xff) { throw new SodiumException('Hash must be less than 256 bytes'); } if ($ctx_len > 0xff) { $st = hash_init('sha256'); self::hash_update($st, "H2C-OVERSIZE-DST-"); self::hash_update($st, $ctx); $ctx = hash_final($st, true); $ctx_len = 32; } $t = array(0, $hLen, 0); $ux = str_repeat("\0", 128); $st = hash_init('sha512'); self::hash_update($st, $ux); self::hash_update($st, $msg); self::hash_update($st, self::intArrayToString($t)); self::hash_update($st, $ctx); self::hash_update($st, self::intToChr($ctx_len)); $u0 = hash_final($st, true); for ($i = 0; $i < $hLen; $i += 128) { $ux = self::xorStrings($ux, $u0); ++$t[2]; $st = hash_init('sha512'); self::hash_update($st, $ux); self::hash_update($st, self::intToChr($t[2])); self::hash_update($st, $ctx); self::hash_update($st, self::intToChr($ctx_len)); $ux = hash_final($st, true); $amount = min($hLen - $i, 128); for ($j = 0; $j < $amount; ++$j) { $h[$i + $j] = self::chrToInt($ux[$i]); } } return self::intArrayToString(array_slice($h, 0, $hLen)); } /** * @param int $hLen * @param ?string $ctx * @param string $msg * @param int $hash_alg * @return string * @throws SodiumException */ public static function h2c_string_to_hash($hLen, $ctx, $msg, $hash_alg) { switch ($hash_alg) { case self::CORE_H2C_SHA256: return self::h2c_string_to_hash_sha256($hLen, $ctx, $msg); case self::CORE_H2C_SHA512: return self::h2c_string_to_hash_sha512($hLen, $ctx, $msg); default: throw new SodiumException('Invalid H2C hash algorithm'); } } /** * @param ?string $ctx * @param string $msg * @param int $hash_alg * @return string * @throws SodiumException */ protected static function _string_to_element($ctx, $msg, $hash_alg) { return self::ristretto255_from_hash( self::h2c_string_to_hash(self::crypto_core_ristretto255_HASHBYTES, $ctx, $msg, $hash_alg) ); } /** * @return string * @throws SodiumException * @throws Exception */ public static function ristretto255_random() { return self::ristretto255_from_hash( ParagonIE_Sodium_Compat::randombytes_buf(self::crypto_core_ristretto255_HASHBYTES) ); } /** * @return string * @throws SodiumException */ public static function ristretto255_scalar_random() { return self::scalar_random(); } /** * @param string $s * @return string * @throws SodiumException */ public static function ristretto255_scalar_complement($s) { return self::scalar_complement($s); } /** * @param string $s * @return string */ public static function ristretto255_scalar_invert($s) { return self::sc25519_invert($s); } /** * @param string $s * @return string * @throws SodiumException */ public static function ristretto255_scalar_negate($s) { return self::scalar_negate($s); } /** * @param string $x * @param string $y * @return string */ public static function ristretto255_scalar_add($x, $y) { return self::scalar_add($x, $y); } /** * @param string $x * @param string $y * @return string */ public static function ristretto255_scalar_sub($x, $y) { return self::scalar_sub($x, $y); } /** * @param string $x * @param string $y * @return string */ public static function ristretto255_scalar_mul($x, $y) { return self::sc25519_mul($x, $y); } /** * @param string $ctx * @param string $msg * @param int $hash_alg * @return string * @throws SodiumException */ public static function ristretto255_scalar_from_string($ctx, $msg, $hash_alg) { $h = array_fill(0, 64, 0); $h_be = self::stringToIntArray( self::h2c_string_to_hash( self::HASH_SC_L, $ctx, $msg, $hash_alg ) ); for ($i = 0; $i < self::HASH_SC_L; ++$i) { $h[$i] = $h_be[self::HASH_SC_L - 1 - $i]; } return self::ristretto255_scalar_reduce(self::intArrayToString($h)); } /** * @param string $s * @return string */ public static function ristretto255_scalar_reduce($s) { return self::sc_reduce($s); } /** * @param string $n * @param string $p * @return string * @throws SodiumException */ public static function scalarmult_ristretto255($n, $p) { if (self::strlen($n) !== 32) { throw new SodiumException('Scalar must be 32 bytes, ' . self::strlen($p) . ' given.'); } if (self::strlen($p) !== 32) { throw new SodiumException('Point must be 32 bytes, ' . self::strlen($p) . ' given.'); } $result = self::ristretto255_frombytes($p); if ($result['res'] !== 0) { throw new SodiumException('Could not multiply points'); } $P = $result['h']; $t = self::stringToIntArray($n); $t[31] &= 0x7f; $Q = self::ge_scalarmult(self::intArrayToString($t), $P); $q = self::ristretto255_p3_tobytes($Q); if (ParagonIE_Sodium_Compat::is_zero($q)) { throw new SodiumException('An unknown error has occurred'); } return $q; } /** * @param string $n * @return string * @throws SodiumException */ public static function scalarmult_ristretto255_base($n) { $t = self::stringToIntArray($n); $t[31] &= 0x7f; $Q = self::ge_scalarmult_base(self::intArrayToString($t)); $q = self::ristretto255_p3_tobytes($Q); if (ParagonIE_Sodium_Compat::is_zero($q)) { throw new SodiumException('An unknown error has occurred'); } return $q; } } Poly1305.php000064400000000144147331221070006510 0ustar00> 5; for ($i = 0; $i < $ad_blocks; ++$i) { $ai = self::substr($ad, $i << 5, 32); if (self::strlen($ai) < 32) { $ai = str_pad($ai, 32, "\0", STR_PAD_RIGHT); } $state->absorb($ai); } $msg = ''; $cn = self::strlen($ct) & 31; $ct_blocks = self::strlen($ct) >> 5; for ($i = 0; $i < $ct_blocks; ++$i) { $msg .= $state->dec(self::substr($ct, $i << 5, 32)); } if ($cn) { $start = $ct_blocks << 5; $msg .= $state->decPartial(self::substr($ct, $start, $cn)); } $expected_tag = $state->finalize( self::strlen($ad) << 3, self::strlen($msg) << 3 ); if (!self::hashEquals($expected_tag, $tag)) { try { // The RFC says to erase msg, so we shall try: ParagonIE_Sodium_Compat::memzero($msg); } catch (SodiumException $ex) { // Do nothing if we cannot memzero } throw new SodiumException('verification failed'); } return $msg; } /** * @param string $msg * @param string $ad * @param string $key * @param string $nonce * @return array * * @throws SodiumException */ public static function encrypt($msg, $ad, $key, $nonce) { $state = self::init($key, $nonce); // ad_blocks = Split(ZeroPad(ad, 256), 256) // for ai in ad_blocks: // Absorb(ai) $ad_len = self::strlen($ad); $msg_len = self::strlen($msg); $ad_blocks = ($ad_len + 31) >> 5; for ($i = 0; $i < $ad_blocks; ++$i) { $ai = self::substr($ad, $i << 5, 32); if (self::strlen($ai) < 32) { $ai = str_pad($ai, 32, "\0", STR_PAD_RIGHT); } $state->absorb($ai); } // msg_blocks = Split(ZeroPad(msg, 256), 256) // for xi in msg_blocks: // ct = ct || Enc(xi) $ct = ''; $msg_blocks = ($msg_len + 31) >> 5; for ($i = 0; $i < $msg_blocks; ++$i) { $xi = self::substr($msg, $i << 5, 32); if (self::strlen($xi) < 32) { $xi = str_pad($xi, 32, "\0", STR_PAD_RIGHT); } $ct .= $state->enc($xi); } // tag = Finalize(|ad|, |msg|) // ct = Truncate(ct, |msg|) $tag = $state->finalize( $ad_len << 3, $msg_len << 3 ); // return ct and tag return array( self::substr($ct, 0, $msg_len), $tag ); } /** * @param string $key * @param string $nonce * @return ParagonIE_Sodium_Core_AEGIS_State128L */ public static function init($key, $nonce) { return ParagonIE_Sodium_Core_AEGIS_State128L::init($key, $nonce); } } AES.php000064400000037015147331221070005673 0ustar00orthogonalize(); self::sbox($q); $q->orthogonalize(); return $q[0] & self::U32_MAX; } /** * Calculate the key schedule from a given random key * * @param string $key * @return ParagonIE_Sodium_Core_AES_KeySchedule * @throws SodiumException */ public static function keySchedule($key) { $key_len = self::strlen($key); switch ($key_len) { case 16: $num_rounds = 10; break; case 24: $num_rounds = 12; break; case 32: $num_rounds = 14; break; default: throw new SodiumException('Invalid key length: ' . $key_len); } $skey = array(); $comp_skey = array(); $nk = $key_len >> 2; $nkf = ($num_rounds + 1) << 2; $tmp = 0; for ($i = 0; $i < $nk; ++$i) { $tmp = self::load_4(self::substr($key, $i << 2, 4)); $skey[($i << 1)] = $tmp; $skey[($i << 1) + 1] = $tmp; } for ($i = $nk, $j = 0, $k = 0; $i < $nkf; ++$i) { if ($j === 0) { $tmp = (($tmp & 0xff) << 24) | ($tmp >> 8); $tmp = (self::subWord($tmp) ^ self::$Rcon[$k]) & self::U32_MAX; } elseif ($nk > 6 && $j === 4) { $tmp = self::subWord($tmp); } $tmp ^= $skey[($i - $nk) << 1]; $skey[($i << 1)] = $tmp & self::U32_MAX; $skey[($i << 1) + 1] = $tmp & self::U32_MAX; if (++$j === $nk) { /** @psalm-suppress LoopInvalidation */ $j = 0; ++$k; } } for ($i = 0; $i < $nkf; $i += 4) { $q = ParagonIE_Sodium_Core_AES_Block::fromArray( array_slice($skey, $i << 1, 8) ); $q->orthogonalize(); // We have to overwrite $skey since we're not using C pointers like BearSSL did for ($j = 0; $j < 8; ++$j) { $skey[($i << 1) + $j] = $q[$j]; } } for ($i = 0, $j = 0; $i < $nkf; ++$i, $j += 2) { $comp_skey[$i] = ($skey[$j] & 0x55555555) | ($skey[$j + 1] & 0xAAAAAAAA); } return new ParagonIE_Sodium_Core_AES_KeySchedule($comp_skey, $num_rounds); } /** * Mutates $q * * @param ParagonIE_Sodium_Core_AES_KeySchedule $skey * @param ParagonIE_Sodium_Core_AES_Block $q * @param int $offset * @return void */ public static function addRoundKey( ParagonIE_Sodium_Core_AES_Block $q, ParagonIE_Sodium_Core_AES_KeySchedule $skey, $offset = 0 ) { $block = $skey->getRoundKey($offset); for ($j = 0; $j < 8; ++$j) { $q[$j] = ($q[$j] ^ $block[$j]) & ParagonIE_Sodium_Core_Util::U32_MAX; } } /** * This mainly exists for testing, as we need the round key features for AEGIS. * * @param string $message * @param string $key * @return string * @throws SodiumException */ public static function decryptBlockECB($message, $key) { if (self::strlen($message) !== 16) { throw new SodiumException('decryptBlockECB() expects a 16 byte message'); } $skey = self::keySchedule($key)->expand(); $q = ParagonIE_Sodium_Core_AES_Block::init(); $q[0] = self::load_4(self::substr($message, 0, 4)); $q[2] = self::load_4(self::substr($message, 4, 4)); $q[4] = self::load_4(self::substr($message, 8, 4)); $q[6] = self::load_4(self::substr($message, 12, 4)); $q->orthogonalize(); self::bitsliceDecryptBlock($skey, $q); $q->orthogonalize(); return self::store32_le($q[0]) . self::store32_le($q[2]) . self::store32_le($q[4]) . self::store32_le($q[6]); } /** * This mainly exists for testing, as we need the round key features for AEGIS. * * @param string $message * @param string $key * @return string * @throws SodiumException */ public static function encryptBlockECB($message, $key) { if (self::strlen($message) !== 16) { throw new SodiumException('encryptBlockECB() expects a 16 byte message'); } $comp_skey = self::keySchedule($key); $skey = $comp_skey->expand(); $q = ParagonIE_Sodium_Core_AES_Block::init(); $q[0] = self::load_4(self::substr($message, 0, 4)); $q[2] = self::load_4(self::substr($message, 4, 4)); $q[4] = self::load_4(self::substr($message, 8, 4)); $q[6] = self::load_4(self::substr($message, 12, 4)); $q->orthogonalize(); self::bitsliceEncryptBlock($skey, $q); $q->orthogonalize(); return self::store32_le($q[0]) . self::store32_le($q[2]) . self::store32_le($q[4]) . self::store32_le($q[6]); } /** * Mutates $q * * @param ParagonIE_Sodium_Core_AES_Expanded $skey * @param ParagonIE_Sodium_Core_AES_Block $q * @return void */ public static function bitsliceEncryptBlock( ParagonIE_Sodium_Core_AES_Expanded $skey, ParagonIE_Sodium_Core_AES_Block $q ) { self::addRoundKey($q, $skey); for ($u = 1; $u < $skey->getNumRounds(); ++$u) { self::sbox($q); $q->shiftRows(); $q->mixColumns(); self::addRoundKey($q, $skey, ($u << 3)); } self::sbox($q); $q->shiftRows(); self::addRoundKey($q, $skey, ($skey->getNumRounds() << 3)); } /** * @param string $x * @param string $y * @return string */ public static function aesRound($x, $y) { $q = ParagonIE_Sodium_Core_AES_Block::init(); $q[0] = self::load_4(self::substr($x, 0, 4)); $q[2] = self::load_4(self::substr($x, 4, 4)); $q[4] = self::load_4(self::substr($x, 8, 4)); $q[6] = self::load_4(self::substr($x, 12, 4)); $rk = ParagonIE_Sodium_Core_AES_Block::init(); $rk[0] = $rk[1] = self::load_4(self::substr($y, 0, 4)); $rk[2] = $rk[3] = self::load_4(self::substr($y, 4, 4)); $rk[4] = $rk[5] = self::load_4(self::substr($y, 8, 4)); $rk[6] = $rk[7] = self::load_4(self::substr($y, 12, 4)); $q->orthogonalize(); self::sbox($q); $q->shiftRows(); $q->mixColumns(); $q->orthogonalize(); // add round key without key schedule: for ($i = 0; $i < 8; ++$i) { $q[$i] ^= $rk[$i]; } return self::store32_le($q[0]) . self::store32_le($q[2]) . self::store32_le($q[4]) . self::store32_le($q[6]); } /** * Process two AES blocks in one shot. * * @param string $b0 First AES block * @param string $rk0 First round key * @param string $b1 Second AES block * @param string $rk1 Second round key * @return string[] */ public static function doubleRound($b0, $rk0, $b1, $rk1) { $q = ParagonIE_Sodium_Core_AES_Block::init(); // First block $q[0] = self::load_4(self::substr($b0, 0, 4)); $q[2] = self::load_4(self::substr($b0, 4, 4)); $q[4] = self::load_4(self::substr($b0, 8, 4)); $q[6] = self::load_4(self::substr($b0, 12, 4)); // Second block $q[1] = self::load_4(self::substr($b1, 0, 4)); $q[3] = self::load_4(self::substr($b1, 4, 4)); $q[5] = self::load_4(self::substr($b1, 8, 4)); $q[7] = self::load_4(self::substr($b1, 12, 4));; $rk = ParagonIE_Sodium_Core_AES_Block::init(); // First round key $rk[0] = self::load_4(self::substr($rk0, 0, 4)); $rk[2] = self::load_4(self::substr($rk0, 4, 4)); $rk[4] = self::load_4(self::substr($rk0, 8, 4)); $rk[6] = self::load_4(self::substr($rk0, 12, 4)); // Second round key $rk[1] = self::load_4(self::substr($rk1, 0, 4)); $rk[3] = self::load_4(self::substr($rk1, 4, 4)); $rk[5] = self::load_4(self::substr($rk1, 8, 4)); $rk[7] = self::load_4(self::substr($rk1, 12, 4)); $q->orthogonalize(); self::sbox($q); $q->shiftRows(); $q->mixColumns(); $q->orthogonalize(); // add round key without key schedule: for ($i = 0; $i < 8; ++$i) { $q[$i] ^= $rk[$i]; } return array( self::store32_le($q[0]) . self::store32_le($q[2]) . self::store32_le($q[4]) . self::store32_le($q[6]), self::store32_le($q[1]) . self::store32_le($q[3]) . self::store32_le($q[5]) . self::store32_le($q[7]), ); } /** * @param ParagonIE_Sodium_Core_AES_Expanded $skey * @param ParagonIE_Sodium_Core_AES_Block $q * @return void */ public static function bitsliceDecryptBlock( ParagonIE_Sodium_Core_AES_Expanded $skey, ParagonIE_Sodium_Core_AES_Block $q ) { self::addRoundKey($q, $skey, ($skey->getNumRounds() << 3)); for ($u = $skey->getNumRounds() - 1; $u > 0; --$u) { $q->inverseShiftRows(); self::invSbox($q); self::addRoundKey($q, $skey, ($u << 3)); $q->inverseMixColumns(); } $q->inverseShiftRows(); self::invSbox($q); self::addRoundKey($q, $skey, ($u << 3)); } } X25519.php000064400000000140147331221070006065 0ustar00> 4; // for ai in ad_blocks: // Absorb(ai) for ($i = 0; $i < $ad_blocks; ++$i) { $ai = self::substr($ad, $i << 4, 16); if (self::strlen($ai) < 16) { $ai = str_pad($ai, 16, "\0", STR_PAD_RIGHT); } $state->absorb($ai); } $msg = ''; $cn = self::strlen($ct) & 15; $ct_blocks = self::strlen($ct) >> 4; // ct_blocks = Split(ZeroPad(ct, 128), 128) // cn = Tail(ct, |ct| mod 128) for ($i = 0; $i < $ct_blocks; ++$i) { $msg .= $state->dec(self::substr($ct, $i << 4, 16)); } // if cn is not empty: // msg = msg || DecPartial(cn) if ($cn) { $start = $ct_blocks << 4; $msg .= $state->decPartial(self::substr($ct, $start, $cn)); } $expected_tag = $state->finalize( self::strlen($ad) << 3, self::strlen($msg) << 3 ); if (!self::hashEquals($expected_tag, $tag)) { try { // The RFC says to erase msg, so we shall try: ParagonIE_Sodium_Compat::memzero($msg); } catch (SodiumException $ex) { // Do nothing if we cannot memzero } throw new SodiumException('verification failed'); } return $msg; } /** * @param string $msg * @param string $ad * @param string $key * @param string $nonce * @return array * @throws SodiumException */ public static function encrypt($msg, $ad, $key, $nonce) { $state = self::init($key, $nonce); $ad_len = self::strlen($ad); $msg_len = self::strlen($msg); $ad_blocks = ($ad_len + 15) >> 4; for ($i = 0; $i < $ad_blocks; ++$i) { $ai = self::substr($ad, $i << 4, 16); if (self::strlen($ai) < 16) { $ai = str_pad($ai, 16, "\0", STR_PAD_RIGHT); } $state->absorb($ai); } $ct = ''; $msg_blocks = ($msg_len + 15) >> 4; for ($i = 0; $i < $msg_blocks; ++$i) { $xi = self::substr($msg, $i << 4, 16); if (self::strlen($xi) < 16) { $xi = str_pad($xi, 16, "\0", STR_PAD_RIGHT); } $ct .= $state->enc($xi); } $tag = $state->finalize( $ad_len << 3, $msg_len << 3 ); return array( self::substr($ct, 0, $msg_len), $tag ); } /** * @param string $key * @param string $nonce * @return ParagonIE_Sodium_Core_AEGIS_State256 */ public static function init($key, $nonce) { return ParagonIE_Sodium_Core_AEGIS_State256::init($key, $nonce); } } Salsa20.php000064400000000142147331221070006457 0ustar00 $chunk */ $chunk = unpack('C*', ParagonIE_Sodium_Core_Util::substr($src, $i, 3)); $b0 = $chunk[1]; $b1 = $chunk[2]; $b2 = $chunk[3]; $dest .= self::encode6Bits( $b0 >> 2 ) . self::encode6Bits((($b0 << 4) | ($b1 >> 4)) & 63) . self::encode6Bits((($b1 << 2) | ($b2 >> 6)) & 63) . self::encode6Bits( $b2 & 63); } // The last chunk, which may have padding: if ($i < $srcLen) { /** @var array $chunk */ $chunk = unpack('C*', ParagonIE_Sodium_Core_Util::substr($src, $i, $srcLen - $i)); $b0 = $chunk[1]; if ($i + 1 < $srcLen) { $b1 = $chunk[2]; $dest .= self::encode6Bits($b0 >> 2) . self::encode6Bits((($b0 << 4) | ($b1 >> 4)) & 63) . self::encode6Bits(($b1 << 2) & 63); if ($pad) { $dest .= '='; } } else { $dest .= self::encode6Bits( $b0 >> 2) . self::encode6Bits(($b0 << 4) & 63); if ($pad) { $dest .= '=='; } } } return $dest; } /** * decode from base64 into binary * * Base64 character set "./[A-Z][a-z][0-9]" * * @param string $src * @param bool $strictPadding * @return string * @throws RangeException * @throws TypeError * @psalm-suppress RedundantCondition */ public static function decode($src, $strictPadding = false) { // Remove padding $srcLen = ParagonIE_Sodium_Core_Util::strlen($src); if ($srcLen === 0) { return ''; } if ($strictPadding) { if (($srcLen & 3) === 0) { if ($src[$srcLen - 1] === '=') { $srcLen--; if ($src[$srcLen - 1] === '=') { $srcLen--; } } } if (($srcLen & 3) === 1) { throw new RangeException( 'Incorrect padding' ); } if ($src[$srcLen - 1] === '=') { throw new RangeException( 'Incorrect padding' ); } } else { $src = rtrim($src, '='); $srcLen = ParagonIE_Sodium_Core_Util::strlen($src); } $err = 0; $dest = ''; // Main loop (no padding): for ($i = 0; $i + 4 <= $srcLen; $i += 4) { /** @var array $chunk */ $chunk = unpack('C*', ParagonIE_Sodium_Core_Util::substr($src, $i, 4)); $c0 = self::decode6Bits($chunk[1]); $c1 = self::decode6Bits($chunk[2]); $c2 = self::decode6Bits($chunk[3]); $c3 = self::decode6Bits($chunk[4]); $dest .= pack( 'CCC', ((($c0 << 2) | ($c1 >> 4)) & 0xff), ((($c1 << 4) | ($c2 >> 2)) & 0xff), ((($c2 << 6) | $c3) & 0xff) ); $err |= ($c0 | $c1 | $c2 | $c3) >> 8; } // The last chunk, which may have padding: if ($i < $srcLen) { /** @var array $chunk */ $chunk = unpack('C*', ParagonIE_Sodium_Core_Util::substr($src, $i, $srcLen - $i)); $c0 = self::decode6Bits($chunk[1]); if ($i + 2 < $srcLen) { $c1 = self::decode6Bits($chunk[2]); $c2 = self::decode6Bits($chunk[3]); $dest .= pack( 'CC', ((($c0 << 2) | ($c1 >> 4)) & 0xff), ((($c1 << 4) | ($c2 >> 2)) & 0xff) ); $err |= ($c0 | $c1 | $c2) >> 8; } elseif ($i + 1 < $srcLen) { $c1 = self::decode6Bits($chunk[2]); $dest .= pack( 'C', ((($c0 << 2) | ($c1 >> 4)) & 0xff) ); $err |= ($c0 | $c1) >> 8; } elseif ($i < $srcLen && $strictPadding) { $err |= 1; } } /** @var bool $check */ $check = ($err === 0); if (!$check) { throw new RangeException( 'Base64::decode() only expects characters in the correct base64 alphabet' ); } return $dest; } // COPY ParagonIE_Sodium_Core_Base64_Common ENDING HERE /** * Uses bitwise operators instead of table-lookups to turn 6-bit integers * into 8-bit integers. * * Base64 character set: * [A-Z] [a-z] [0-9] + / * 0x41-0x5a, 0x61-0x7a, 0x30-0x39, 0x2b, 0x2f * * @param int $src * @return int */ protected static function decode6Bits($src) { $ret = -1; // if ($src > 0x40 && $src < 0x5b) $ret += $src - 0x41 + 1; // -64 $ret += (((0x40 - $src) & ($src - 0x5b)) >> 8) & ($src - 64); // if ($src > 0x60 && $src < 0x7b) $ret += $src - 0x61 + 26 + 1; // -70 $ret += (((0x60 - $src) & ($src - 0x7b)) >> 8) & ($src - 70); // if ($src > 0x2f && $src < 0x3a) $ret += $src - 0x30 + 52 + 1; // 5 $ret += (((0x2f - $src) & ($src - 0x3a)) >> 8) & ($src + 5); // if ($src == 0x2b) $ret += 62 + 1; $ret += (((0x2a - $src) & ($src - 0x2c)) >> 8) & 63; // if ($src == 0x2f) ret += 63 + 1; $ret += (((0x2e - $src) & ($src - 0x30)) >> 8) & 64; return $ret; } /** * Uses bitwise operators instead of table-lookups to turn 8-bit integers * into 6-bit integers. * * @param int $src * @return string */ protected static function encode6Bits($src) { $diff = 0x41; // if ($src > 25) $diff += 0x61 - 0x41 - 26; // 6 $diff += ((25 - $src) >> 8) & 6; // if ($src > 51) $diff += 0x30 - 0x61 - 26; // -75 $diff -= ((51 - $src) >> 8) & 75; // if ($src > 61) $diff += 0x2b - 0x30 - 10; // -15 $diff -= ((61 - $src) >> 8) & 15; // if ($src > 62) $diff += 0x2f - 0x2b - 1; // 3 $diff += ((62 - $src) >> 8) & 3; return pack('C', $src + $diff); } } Base64/UrlSafe.php000064400000017063147331221070007651 0ustar00 $chunk */ $chunk = unpack('C*', ParagonIE_Sodium_Core_Util::substr($src, $i, 3)); $b0 = $chunk[1]; $b1 = $chunk[2]; $b2 = $chunk[3]; $dest .= self::encode6Bits( $b0 >> 2 ) . self::encode6Bits((($b0 << 4) | ($b1 >> 4)) & 63) . self::encode6Bits((($b1 << 2) | ($b2 >> 6)) & 63) . self::encode6Bits( $b2 & 63); } // The last chunk, which may have padding: if ($i < $srcLen) { /** @var array $chunk */ $chunk = unpack('C*', ParagonIE_Sodium_Core_Util::substr($src, $i, $srcLen - $i)); $b0 = $chunk[1]; if ($i + 1 < $srcLen) { $b1 = $chunk[2]; $dest .= self::encode6Bits($b0 >> 2) . self::encode6Bits((($b0 << 4) | ($b1 >> 4)) & 63) . self::encode6Bits(($b1 << 2) & 63); if ($pad) { $dest .= '='; } } else { $dest .= self::encode6Bits( $b0 >> 2) . self::encode6Bits(($b0 << 4) & 63); if ($pad) { $dest .= '=='; } } } return $dest; } /** * decode from base64 into binary * * Base64 character set "./[A-Z][a-z][0-9]" * * @param string $src * @param bool $strictPadding * @return string * @throws RangeException * @throws TypeError * @psalm-suppress RedundantCondition */ public static function decode($src, $strictPadding = false) { // Remove padding $srcLen = ParagonIE_Sodium_Core_Util::strlen($src); if ($srcLen === 0) { return ''; } if ($strictPadding) { if (($srcLen & 3) === 0) { if ($src[$srcLen - 1] === '=') { $srcLen--; if ($src[$srcLen - 1] === '=') { $srcLen--; } } } if (($srcLen & 3) === 1) { throw new RangeException( 'Incorrect padding' ); } if ($src[$srcLen - 1] === '=') { throw new RangeException( 'Incorrect padding' ); } } else { $src = rtrim($src, '='); $srcLen = ParagonIE_Sodium_Core_Util::strlen($src); } $err = 0; $dest = ''; // Main loop (no padding): for ($i = 0; $i + 4 <= $srcLen; $i += 4) { /** @var array $chunk */ $chunk = unpack('C*', ParagonIE_Sodium_Core_Util::substr($src, $i, 4)); $c0 = self::decode6Bits($chunk[1]); $c1 = self::decode6Bits($chunk[2]); $c2 = self::decode6Bits($chunk[3]); $c3 = self::decode6Bits($chunk[4]); $dest .= pack( 'CCC', ((($c0 << 2) | ($c1 >> 4)) & 0xff), ((($c1 << 4) | ($c2 >> 2)) & 0xff), ((($c2 << 6) | $c3) & 0xff) ); $err |= ($c0 | $c1 | $c2 | $c3) >> 8; } // The last chunk, which may have padding: if ($i < $srcLen) { /** @var array $chunk */ $chunk = unpack('C*', ParagonIE_Sodium_Core_Util::substr($src, $i, $srcLen - $i)); $c0 = self::decode6Bits($chunk[1]); if ($i + 2 < $srcLen) { $c1 = self::decode6Bits($chunk[2]); $c2 = self::decode6Bits($chunk[3]); $dest .= pack( 'CC', ((($c0 << 2) | ($c1 >> 4)) & 0xff), ((($c1 << 4) | ($c2 >> 2)) & 0xff) ); $err |= ($c0 | $c1 | $c2) >> 8; } elseif ($i + 1 < $srcLen) { $c1 = self::decode6Bits($chunk[2]); $dest .= pack( 'C', ((($c0 << 2) | ($c1 >> 4)) & 0xff) ); $err |= ($c0 | $c1) >> 8; } elseif ($i < $srcLen && $strictPadding) { $err |= 1; } } /** @var bool $check */ $check = ($err === 0); if (!$check) { throw new RangeException( 'Base64::decode() only expects characters in the correct base64 alphabet' ); } return $dest; } // COPY ParagonIE_Sodium_Core_Base64_Common ENDING HERE /** * Uses bitwise operators instead of table-lookups to turn 6-bit integers * into 8-bit integers. * * Base64 character set: * [A-Z] [a-z] [0-9] + / * 0x41-0x5a, 0x61-0x7a, 0x30-0x39, 0x2b, 0x2f * * @param int $src * @return int */ protected static function decode6Bits($src) { $ret = -1; // if ($src > 0x40 && $src < 0x5b) $ret += $src - 0x41 + 1; // -64 $ret += (((0x40 - $src) & ($src - 0x5b)) >> 8) & ($src - 64); // if ($src > 0x60 && $src < 0x7b) $ret += $src - 0x61 + 26 + 1; // -70 $ret += (((0x60 - $src) & ($src - 0x7b)) >> 8) & ($src - 70); // if ($src > 0x2f && $src < 0x3a) $ret += $src - 0x30 + 52 + 1; // 5 $ret += (((0x2f - $src) & ($src - 0x3a)) >> 8) & ($src + 5); // if ($src == 0x2c) $ret += 62 + 1; $ret += (((0x2c - $src) & ($src - 0x2e)) >> 8) & 63; // if ($src == 0x5f) ret += 63 + 1; $ret += (((0x5e - $src) & ($src - 0x60)) >> 8) & 64; return $ret; } /** * Uses bitwise operators instead of table-lookups to turn 8-bit integers * into 6-bit integers. * * @param int $src * @return string */ protected static function encode6Bits($src) { $diff = 0x41; // if ($src > 25) $diff += 0x61 - 0x41 - 26; // 6 $diff += ((25 - $src) >> 8) & 6; // if ($src > 51) $diff += 0x30 - 0x61 - 26; // -75 $diff -= ((51 - $src) >> 8) & 75; // if ($src > 61) $diff += 0x2d - 0x30 - 10; // -13 $diff -= ((61 - $src) >> 8) & 13; // if ($src > 62) $diff += 0x5f - 0x2b - 1; // 3 $diff += ((62 - $src) >> 8) & 49; return pack('C', $src + $diff); } } error_log000064400001472550147331221070006477 0ustar00[13-Jun-2023 01:15:46 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [13-Jun-2023 01:15:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [13-Jun-2023 01:16:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [13-Jun-2023 01:16:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [13-Jun-2023 01:16:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [13-Jun-2023 01:16:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [13-Jun-2023 01:16:34 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [13-Jun-2023 01:16:40 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [13-Jun-2023 01:16:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [13-Jun-2023 01:16:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [13-Jun-2023 01:17:02 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [13-Jun-2023 01:17:02 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [13-Jun-2023 01:17:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [13-Jun-2023 01:17:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [13-Jun-2023 01:17:28 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [13-Jun-2023 01:17:28 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [13-Jun-2023 01:17:39 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [13-Jun-2023 01:17:39 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [13-Jun-2023 01:17:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [13-Jun-2023 01:17:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [13-Jun-2023 01:18:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [13-Jun-2023 01:18:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [13-Jun-2023 01:18:09 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [13-Jun-2023 01:18:10 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [13-Jun-2023 01:18:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [13-Jun-2023 01:18:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [13-Jun-2023 01:19:03 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [13-Jun-2023 01:19:04 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [13-Jun-2023 01:19:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [13-Jun-2023 01:19:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [13-Jun-2023 01:19:57 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [13-Jun-2023 01:19:57 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [13-Jun-2023 01:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [13-Jun-2023 01:20:39 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [13-Jun-2023 01:20:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [13-Jun-2023 01:20:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [13-Jun-2023 01:21:03 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [13-Jun-2023 01:21:04 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [13-Jun-2023 01:21:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [13-Jun-2023 01:21:09 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [13-Jun-2023 01:21:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [13-Jun-2023 01:21:44 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [13-Jun-2023 01:21:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [13-Jun-2023 01:21:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [13-Jun-2023 01:22:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [13-Jun-2023 01:22:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [13-Jun-2023 01:22:20 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [13-Jun-2023 01:22:20 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [13-Jun-2023 01:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [13-Jun-2023 01:22:32 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [13-Jun-2023 01:22:46 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [13-Jun-2023 01:22:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [21-Jun-2023 19:25:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [21-Jun-2023 19:25:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [21-Jun-2023 19:25:39 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [21-Jun-2023 19:25:39 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [21-Jun-2023 19:25:50 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [21-Jun-2023 19:25:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [21-Jun-2023 19:26:02 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [21-Jun-2023 19:26:02 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [21-Jun-2023 19:26:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [21-Jun-2023 19:26:12 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [21-Jun-2023 19:26:28 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [21-Jun-2023 19:26:29 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [21-Jun-2023 19:26:40 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [21-Jun-2023 19:26:40 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [21-Jun-2023 19:26:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [21-Jun-2023 19:26:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [21-Jun-2023 19:27:10 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [21-Jun-2023 19:27:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [21-Jun-2023 19:27:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [21-Jun-2023 19:27:21 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [21-Jun-2023 19:27:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [21-Jun-2023 19:27:44 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [21-Jun-2023 19:27:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [21-Jun-2023 19:27:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [21-Jun-2023 19:27:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [21-Jun-2023 19:27:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [21-Jun-2023 19:28:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [21-Jun-2023 19:28:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [21-Jun-2023 19:28:46 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [21-Jun-2023 19:28:47 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [21-Jun-2023 19:29:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [21-Jun-2023 19:29:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [21-Jun-2023 19:30:09 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [21-Jun-2023 19:30:09 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [21-Jun-2023 19:30:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [21-Jun-2023 19:30:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [21-Jun-2023 19:30:25 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [21-Jun-2023 19:30:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [21-Jun-2023 19:30:32 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [21-Jun-2023 19:30:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [21-Jun-2023 19:31:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [21-Jun-2023 19:31:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [21-Jun-2023 19:31:18 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [21-Jun-2023 19:31:18 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [21-Jun-2023 19:31:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [21-Jun-2023 19:31:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [21-Jun-2023 19:31:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [21-Jun-2023 19:31:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [21-Jun-2023 19:31:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [21-Jun-2023 19:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [21-Jun-2023 19:32:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [21-Jun-2023 19:32:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [25-Jun-2023 22:24:47 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [25-Jun-2023 22:24:47 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [25-Jun-2023 22:24:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [25-Jun-2023 22:24:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [25-Jun-2023 22:25:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [25-Jun-2023 22:25:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [25-Jun-2023 22:25:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [25-Jun-2023 22:25:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [25-Jun-2023 22:25:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [25-Jun-2023 22:25:24 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [25-Jun-2023 22:25:30 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [25-Jun-2023 22:25:31 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [25-Jun-2023 22:25:49 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [25-Jun-2023 22:25:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [25-Jun-2023 22:25:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [25-Jun-2023 22:26:00 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [25-Jun-2023 22:26:04 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [25-Jun-2023 22:26:04 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [25-Jun-2023 22:26:18 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [25-Jun-2023 22:26:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [25-Jun-2023 22:26:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [25-Jun-2023 22:26:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [25-Jun-2023 22:26:39 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [25-Jun-2023 22:26:40 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [25-Jun-2023 22:26:57 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [25-Jun-2023 22:26:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [25-Jun-2023 22:27:18 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [25-Jun-2023 22:27:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [25-Jun-2023 22:27:27 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [25-Jun-2023 22:27:28 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [25-Jun-2023 22:28:01 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [25-Jun-2023 22:28:02 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [25-Jun-2023 22:28:39 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [25-Jun-2023 22:28:40 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [25-Jun-2023 22:28:47 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [25-Jun-2023 22:28:47 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [25-Jun-2023 22:28:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [25-Jun-2023 22:28:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [25-Jun-2023 22:29:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [25-Jun-2023 22:29:09 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [25-Jun-2023 22:29:42 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [25-Jun-2023 22:29:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [25-Jun-2023 22:29:49 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [25-Jun-2023 22:29:49 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [25-Jun-2023 22:29:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [25-Jun-2023 22:29:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [25-Jun-2023 22:30:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [25-Jun-2023 22:30:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [25-Jun-2023 22:30:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [25-Jun-2023 22:30:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [25-Jun-2023 22:30:31 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [25-Jun-2023 22:30:31 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [27-Jun-2023 21:32:03 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [27-Jun-2023 21:32:04 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [27-Jun-2023 21:32:09 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [27-Jun-2023 21:32:09 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [27-Jun-2023 21:32:12 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [27-Jun-2023 21:32:12 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [27-Jun-2023 21:32:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [27-Jun-2023 21:32:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [27-Jun-2023 21:32:20 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [27-Jun-2023 21:32:21 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [27-Jun-2023 21:32:24 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [27-Jun-2023 21:32:25 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [27-Jun-2023 21:32:30 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [27-Jun-2023 21:32:31 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [27-Jun-2023 21:32:38 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [27-Jun-2023 21:32:39 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [27-Jun-2023 21:32:44 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [27-Jun-2023 21:32:45 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [27-Jun-2023 21:32:50 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [27-Jun-2023 21:32:57 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [27-Jun-2023 21:33:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [27-Jun-2023 21:33:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [27-Jun-2023 21:33:12 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [27-Jun-2023 21:33:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [27-Jun-2023 21:33:20 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [27-Jun-2023 21:33:22 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [01-Jul-2023 07:13:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [01-Jul-2023 07:13:18 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [01-Jul-2023 07:13:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [01-Jul-2023 07:13:28 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [01-Jul-2023 07:13:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [01-Jul-2023 07:13:37 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [01-Jul-2023 07:13:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [01-Jul-2023 07:13:49 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [01-Jul-2023 07:13:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [01-Jul-2023 07:13:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [01-Jul-2023 07:14:02 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [01-Jul-2023 07:14:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [01-Jul-2023 07:14:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [01-Jul-2023 07:14:18 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [01-Jul-2023 07:14:22 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [01-Jul-2023 07:14:27 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [01-Jul-2023 07:14:32 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [01-Jul-2023 07:14:38 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [01-Jul-2023 07:14:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [01-Jul-2023 07:14:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [01-Jul-2023 07:14:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [01-Jul-2023 07:14:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [01-Jul-2023 07:15:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [01-Jul-2023 07:15:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [01-Jul-2023 07:15:17 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [01-Jul-2023 07:15:22 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [22-Jul-2023 03:30:40 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [22-Jul-2023 03:30:45 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [22-Jul-2023 03:31:03 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [22-Jul-2023 03:31:04 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [22-Jul-2023 03:31:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [22-Jul-2023 03:31:17 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [22-Jul-2023 03:31:22 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [22-Jul-2023 03:31:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [22-Jul-2023 03:31:36 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [22-Jul-2023 03:31:37 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [22-Jul-2023 03:31:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [22-Jul-2023 03:31:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [22-Jul-2023 03:32:22 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [22-Jul-2023 03:32:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [22-Jul-2023 03:32:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [22-Jul-2023 03:32:36 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [22-Jul-2023 03:32:46 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [22-Jul-2023 03:32:49 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [22-Jul-2023 03:33:03 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [22-Jul-2023 03:33:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [22-Jul-2023 03:33:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [22-Jul-2023 03:33:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [22-Jul-2023 03:33:32 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [22-Jul-2023 03:33:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [22-Jul-2023 03:33:49 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [22-Jul-2023 03:33:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [22-Jul-2023 03:34:18 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [22-Jul-2023 03:34:20 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [22-Jul-2023 03:34:29 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [22-Jul-2023 03:34:31 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [22-Jul-2023 03:35:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [22-Jul-2023 03:35:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [22-Jul-2023 03:36:09 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [22-Jul-2023 03:36:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [22-Jul-2023 03:36:27 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [22-Jul-2023 03:36:30 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [22-Jul-2023 03:36:42 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [22-Jul-2023 03:36:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [22-Jul-2023 03:36:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [22-Jul-2023 03:36:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [22-Jul-2023 03:37:44 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [22-Jul-2023 03:37:44 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [22-Jul-2023 03:37:54 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [22-Jul-2023 03:37:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [22-Jul-2023 03:38:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [22-Jul-2023 03:38:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [22-Jul-2023 03:38:20 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [22-Jul-2023 03:38:22 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [22-Jul-2023 03:38:24 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [22-Jul-2023 03:38:27 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [22-Jul-2023 03:38:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [22-Jul-2023 03:38:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [02-Aug-2023 13:06:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [02-Aug-2023 13:06:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [02-Aug-2023 13:06:49 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [02-Aug-2023 13:06:49 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [02-Aug-2023 13:06:50 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [02-Aug-2023 13:06:50 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [02-Aug-2023 13:06:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [02-Aug-2023 13:06:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [02-Aug-2023 13:06:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [02-Aug-2023 13:06:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [02-Aug-2023 13:06:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [02-Aug-2023 13:06:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [02-Aug-2023 13:06:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [02-Aug-2023 13:06:54 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [02-Aug-2023 13:06:54 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [02-Aug-2023 13:06:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [02-Aug-2023 13:06:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [02-Aug-2023 13:06:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [02-Aug-2023 13:06:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [02-Aug-2023 13:06:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [02-Aug-2023 13:06:57 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [02-Aug-2023 13:06:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [02-Aug-2023 13:06:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [02-Aug-2023 13:06:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [02-Aug-2023 13:06:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [02-Aug-2023 13:07:00 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [26-Aug-2023 21:55:03 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [26-Aug-2023 21:55:04 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [09-Oct-2023 07:33:38 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [09-Oct-2023 07:33:39 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [09-Oct-2023 07:34:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [09-Oct-2023 07:34:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [09-Oct-2023 07:34:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [09-Oct-2023 07:34:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [09-Oct-2023 07:34:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [09-Oct-2023 07:34:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [09-Oct-2023 07:34:44 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [09-Oct-2023 07:34:44 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [09-Oct-2023 07:35:02 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [09-Oct-2023 07:35:03 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [09-Oct-2023 07:35:22 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [09-Oct-2023 07:35:22 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [09-Oct-2023 07:35:40 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [09-Oct-2023 07:35:40 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [09-Oct-2023 07:35:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [09-Oct-2023 07:36:01 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [09-Oct-2023 07:36:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [09-Oct-2023 07:36:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [09-Oct-2023 07:36:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [09-Oct-2023 07:36:34 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [09-Oct-2023 07:36:39 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [09-Oct-2023 07:36:39 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [09-Oct-2023 07:36:49 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [09-Oct-2023 07:36:49 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [09-Oct-2023 07:37:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [09-Oct-2023 07:37:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [09-Oct-2023 07:37:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [09-Oct-2023 07:37:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [09-Oct-2023 07:38:32 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [09-Oct-2023 07:38:32 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [09-Oct-2023 07:39:22 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [09-Oct-2023 07:39:22 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [09-Oct-2023 07:39:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [09-Oct-2023 07:39:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [09-Oct-2023 07:40:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [09-Oct-2023 07:40:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [09-Oct-2023 07:40:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [09-Oct-2023 07:40:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [09-Oct-2023 07:41:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [09-Oct-2023 07:41:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [09-Oct-2023 07:41:25 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [09-Oct-2023 07:41:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [09-Oct-2023 07:41:45 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [09-Oct-2023 07:41:45 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [09-Oct-2023 07:42:00 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [09-Oct-2023 07:42:00 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [09-Oct-2023 07:42:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [09-Oct-2023 07:42:20 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [09-Oct-2023 07:42:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [09-Oct-2023 07:42:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [05-Nov-2023 04:51:57 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [05-Nov-2023 04:52:04 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [05-Nov-2023 04:52:09 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [05-Nov-2023 04:52:09 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [05-Nov-2023 04:52:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [05-Nov-2023 04:52:20 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [05-Nov-2023 04:52:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [05-Nov-2023 04:52:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [05-Nov-2023 04:52:32 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [05-Nov-2023 04:52:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [05-Nov-2023 04:52:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [05-Nov-2023 04:52:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [05-Nov-2023 04:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [05-Nov-2023 04:53:10 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [05-Nov-2023 04:53:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [05-Nov-2023 04:53:24 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [05-Nov-2023 04:53:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [05-Nov-2023 04:53:44 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [05-Nov-2023 04:53:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [05-Nov-2023 04:53:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [05-Nov-2023 04:54:02 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [05-Nov-2023 04:54:03 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [05-Nov-2023 04:54:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [05-Nov-2023 04:54:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [05-Nov-2023 04:54:25 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [05-Nov-2023 04:54:25 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [05-Nov-2023 04:54:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [05-Nov-2023 04:54:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [05-Nov-2023 04:55:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [05-Nov-2023 04:55:24 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [05-Nov-2023 04:56:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [05-Nov-2023 04:56:24 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [05-Nov-2023 04:57:20 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [05-Nov-2023 04:57:20 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [05-Nov-2023 04:57:41 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [05-Nov-2023 04:57:41 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [05-Nov-2023 04:57:57 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [05-Nov-2023 04:57:57 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [05-Nov-2023 04:58:10 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [05-Nov-2023 04:58:10 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [05-Nov-2023 04:58:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [05-Nov-2023 04:58:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [05-Nov-2023 04:59:04 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [05-Nov-2023 04:59:04 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [05-Nov-2023 04:59:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [05-Nov-2023 04:59:27 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [05-Nov-2023 05:00:01 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [05-Nov-2023 05:00:02 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [05-Nov-2023 05:00:17 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [05-Nov-2023 05:00:18 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [05-Nov-2023 05:00:27 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [05-Nov-2023 05:00:27 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [10-Nov-2023 06:52:20 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [10-Nov-2023 06:52:21 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [10-Nov-2023 06:52:28 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [10-Nov-2023 06:52:28 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [10-Nov-2023 06:52:50 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [10-Nov-2023 06:52:50 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [10-Nov-2023 06:53:20 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [10-Nov-2023 06:53:20 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [10-Nov-2023 06:53:38 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [10-Nov-2023 06:53:38 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [10-Nov-2023 06:53:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [10-Nov-2023 06:53:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [10-Nov-2023 06:54:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [10-Nov-2023 06:54:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [10-Nov-2023 06:54:32 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [10-Nov-2023 06:54:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [10-Nov-2023 06:55:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [10-Nov-2023 06:55:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [10-Nov-2023 06:55:36 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [10-Nov-2023 06:55:36 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [10-Nov-2023 06:55:42 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [10-Nov-2023 06:55:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [10-Nov-2023 06:55:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [10-Nov-2023 06:55:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [10-Nov-2023 06:55:54 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [10-Nov-2023 06:55:54 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [10-Nov-2023 06:56:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [10-Nov-2023 06:56:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [10-Nov-2023 06:56:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [10-Nov-2023 06:56:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [10-Nov-2023 06:58:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [10-Nov-2023 06:58:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [10-Nov-2023 06:58:45 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [10-Nov-2023 06:58:45 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [10-Nov-2023 06:58:54 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [10-Nov-2023 06:58:54 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [10-Nov-2023 06:59:12 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [10-Nov-2023 06:59:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [10-Nov-2023 06:59:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [10-Nov-2023 06:59:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [10-Nov-2023 06:59:31 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [10-Nov-2023 06:59:31 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [10-Nov-2023 06:59:44 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [10-Nov-2023 06:59:44 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [10-Nov-2023 06:59:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [10-Nov-2023 06:59:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [10-Nov-2023 07:00:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [10-Nov-2023 07:00:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [10-Nov-2023 07:00:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [10-Nov-2023 07:00:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [10-Nov-2023 07:00:34 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [10-Nov-2023 07:00:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [15-Nov-2023 19:02:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [15-Nov-2023 19:02:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [15-Nov-2023 19:02:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [15-Nov-2023 19:02:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [15-Nov-2023 19:03:17 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [15-Nov-2023 19:03:17 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [15-Nov-2023 19:03:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [15-Nov-2023 19:03:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [15-Nov-2023 19:04:10 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [15-Nov-2023 19:04:10 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [15-Nov-2023 19:04:30 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [15-Nov-2023 19:04:30 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [15-Nov-2023 19:04:41 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [15-Nov-2023 19:04:41 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [15-Nov-2023 19:04:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [15-Nov-2023 19:04:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [15-Nov-2023 19:05:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [15-Nov-2023 19:05:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [15-Nov-2023 19:05:29 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [15-Nov-2023 19:05:29 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [15-Nov-2023 19:05:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [15-Nov-2023 19:05:44 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [15-Nov-2023 19:05:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [15-Nov-2023 19:05:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [15-Nov-2023 19:06:20 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [15-Nov-2023 19:06:21 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [15-Nov-2023 19:06:42 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [15-Nov-2023 19:06:42 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [15-Nov-2023 19:07:01 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [15-Nov-2023 19:07:01 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [15-Nov-2023 19:07:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [15-Nov-2023 19:07:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [15-Nov-2023 19:08:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [15-Nov-2023 19:08:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [15-Nov-2023 19:08:50 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [15-Nov-2023 19:08:50 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [15-Nov-2023 19:08:54 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [15-Nov-2023 19:08:54 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [15-Nov-2023 19:09:17 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [15-Nov-2023 19:09:17 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [15-Nov-2023 19:09:50 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [15-Nov-2023 19:09:50 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [15-Nov-2023 19:10:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [15-Nov-2023 19:10:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [15-Nov-2023 19:10:28 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [15-Nov-2023 19:10:28 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [15-Nov-2023 19:10:42 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [15-Nov-2023 19:10:42 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [15-Nov-2023 19:10:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [15-Nov-2023 19:10:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [15-Nov-2023 19:10:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [15-Nov-2023 19:10:57 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [30-Nov-2023 00:33:27 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [30-Nov-2023 00:33:27 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [30-Nov-2023 00:33:37 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [30-Nov-2023 00:33:37 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [30-Nov-2023 00:33:50 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [30-Nov-2023 00:33:50 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [30-Nov-2023 00:33:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [30-Nov-2023 00:34:00 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [30-Nov-2023 00:34:12 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [30-Nov-2023 00:34:12 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [30-Nov-2023 00:34:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [30-Nov-2023 00:34:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [30-Nov-2023 00:34:20 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [30-Nov-2023 00:34:21 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [30-Nov-2023 00:34:22 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [30-Nov-2023 00:34:22 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [30-Nov-2023 00:34:24 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [30-Nov-2023 00:34:25 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [30-Nov-2023 00:34:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [30-Nov-2023 00:34:36 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [30-Nov-2023 00:34:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [30-Nov-2023 00:34:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [30-Nov-2023 00:34:57 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [30-Nov-2023 00:34:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [30-Nov-2023 00:35:10 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [30-Nov-2023 00:35:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [30-Nov-2023 00:35:47 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [30-Nov-2023 00:35:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [30-Nov-2023 00:36:10 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [30-Nov-2023 00:36:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [30-Nov-2023 00:37:01 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [30-Nov-2023 00:37:01 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [30-Nov-2023 00:38:02 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [30-Nov-2023 00:38:03 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [30-Nov-2023 00:38:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [30-Nov-2023 00:38:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [30-Nov-2023 00:38:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [30-Nov-2023 00:38:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [30-Nov-2023 00:38:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [30-Nov-2023 00:38:50 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [30-Nov-2023 00:39:28 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [30-Nov-2023 00:39:30 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [30-Nov-2023 00:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [30-Nov-2023 00:39:36 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [30-Nov-2023 00:40:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [30-Nov-2023 00:40:10 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [30-Nov-2023 00:40:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [30-Nov-2023 00:40:27 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [30-Nov-2023 00:40:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [30-Nov-2023 00:40:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [30-Nov-2023 00:40:50 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [30-Nov-2023 00:40:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [12-Dec-2023 17:56:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [12-Dec-2023 17:56:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [12-Dec-2023 17:56:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [12-Dec-2023 17:56:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [12-Dec-2023 17:56:44 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [12-Dec-2023 17:56:45 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [12-Dec-2023 17:57:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [12-Dec-2023 17:57:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [12-Dec-2023 17:57:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [12-Dec-2023 17:57:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [12-Dec-2023 17:57:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [12-Dec-2023 17:57:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [12-Dec-2023 17:57:24 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [12-Dec-2023 17:57:25 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [12-Dec-2023 17:57:47 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [12-Dec-2023 17:57:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [12-Dec-2023 17:57:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [12-Dec-2023 17:57:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [12-Dec-2023 17:58:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [12-Dec-2023 17:58:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [12-Dec-2023 17:58:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [12-Dec-2023 17:58:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [12-Dec-2023 17:58:34 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [12-Dec-2023 17:58:34 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [12-Dec-2023 17:58:42 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [12-Dec-2023 17:58:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [12-Dec-2023 17:59:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [12-Dec-2023 17:59:12 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [12-Dec-2023 17:59:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [12-Dec-2023 17:59:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [12-Dec-2023 18:00:03 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [12-Dec-2023 18:00:04 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [12-Dec-2023 18:01:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [12-Dec-2023 18:01:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [12-Dec-2023 18:02:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [12-Dec-2023 18:02:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [12-Dec-2023 18:02:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [12-Dec-2023 18:02:24 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [12-Dec-2023 18:02:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [12-Dec-2023 18:02:27 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [12-Dec-2023 18:03:20 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [12-Dec-2023 18:03:20 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [12-Dec-2023 18:03:25 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [12-Dec-2023 18:03:25 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [12-Dec-2023 18:03:45 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [12-Dec-2023 18:03:46 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [12-Dec-2023 18:03:47 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [12-Dec-2023 18:03:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [12-Dec-2023 18:04:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [12-Dec-2023 18:04:09 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [12-Dec-2023 18:04:29 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [12-Dec-2023 18:04:30 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [18-Dec-2023 00:02:04 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [18-Dec-2023 00:02:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [18-Dec-2023 00:02:22 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [18-Dec-2023 00:02:22 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [18-Dec-2023 00:02:27 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [18-Dec-2023 00:02:27 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [18-Dec-2023 00:02:31 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [18-Dec-2023 00:02:31 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [18-Dec-2023 00:02:34 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [18-Dec-2023 00:02:34 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [18-Dec-2023 00:02:42 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [18-Dec-2023 00:02:42 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [18-Dec-2023 00:03:01 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [18-Dec-2023 00:03:01 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [18-Dec-2023 00:03:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [18-Dec-2023 00:03:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [18-Dec-2023 00:03:18 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [18-Dec-2023 00:03:18 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [18-Dec-2023 00:03:31 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [18-Dec-2023 00:03:31 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [18-Dec-2023 00:03:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [18-Dec-2023 00:03:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [18-Dec-2023 00:03:41 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [18-Dec-2023 00:03:41 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [18-Dec-2023 00:04:01 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [18-Dec-2023 00:04:01 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [18-Dec-2023 00:04:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [18-Dec-2023 00:04:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [18-Dec-2023 00:04:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [18-Dec-2023 00:04:54 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [18-Dec-2023 00:05:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [18-Dec-2023 00:05:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [18-Dec-2023 00:05:57 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [18-Dec-2023 00:05:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [18-Dec-2023 00:06:12 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [18-Dec-2023 00:06:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [18-Dec-2023 00:06:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [18-Dec-2023 00:06:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [18-Dec-2023 00:06:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [18-Dec-2023 00:06:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [18-Dec-2023 00:06:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [18-Dec-2023 00:06:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [18-Dec-2023 00:07:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [18-Dec-2023 00:07:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [18-Dec-2023 00:07:28 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [18-Dec-2023 00:07:28 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [18-Dec-2023 00:07:38 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [18-Dec-2023 00:07:39 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [18-Dec-2023 00:07:44 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [18-Dec-2023 00:07:44 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [18-Dec-2023 00:07:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [18-Dec-2023 00:07:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [09-Jan-2024 01:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [09-Jan-2024 01:12:54 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [09-Jan-2024 01:12:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [09-Jan-2024 01:13:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [09-Jan-2024 01:13:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [09-Jan-2024 01:13:27 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [09-Jan-2024 01:13:28 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [09-Jan-2024 01:13:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [09-Jan-2024 01:13:34 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [09-Jan-2024 01:13:34 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [09-Jan-2024 01:13:34 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [09-Jan-2024 01:13:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [09-Jan-2024 01:13:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [09-Jan-2024 01:13:49 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [09-Jan-2024 01:13:50 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [09-Jan-2024 01:13:54 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [09-Jan-2024 01:13:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [09-Jan-2024 01:13:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [09-Jan-2024 01:14:02 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [09-Jan-2024 01:14:02 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [09-Jan-2024 01:14:02 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [09-Jan-2024 01:14:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [09-Jan-2024 01:14:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [09-Jan-2024 01:14:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [09-Jan-2024 01:14:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [09-Jan-2024 01:14:12 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [09-Jan-2024 01:14:32 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [09-Jan-2024 01:14:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [09-Jan-2024 01:14:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [09-Jan-2024 01:14:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [09-Jan-2024 01:15:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [09-Jan-2024 01:15:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [09-Jan-2024 01:15:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [09-Jan-2024 01:15:21 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [09-Jan-2024 01:15:21 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [09-Jan-2024 01:15:28 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [09-Jan-2024 01:15:32 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [09-Jan-2024 01:15:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [09-Jan-2024 01:15:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [09-Jan-2024 01:15:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [09-Jan-2024 01:15:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [09-Jan-2024 01:15:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [09-Jan-2024 01:15:49 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [09-Jan-2024 01:15:49 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [09-Jan-2024 01:15:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [09-Jan-2024 01:15:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [09-Jan-2024 01:15:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [09-Jan-2024 01:15:57 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [09-Jan-2024 01:16:00 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [09-Jan-2024 01:16:00 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [09-Jan-2024 01:16:04 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [09-Jan-2024 01:16:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [28-Mar-2024 02:59:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [28-Mar-2024 02:59:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [28-Mar-2024 02:59:37 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [28-Mar-2024 02:59:41 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [28-Mar-2024 02:59:42 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [28-Mar-2024 02:59:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [28-Mar-2024 02:59:44 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [28-Mar-2024 02:59:46 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [28-Mar-2024 03:00:02 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [28-Mar-2024 03:00:02 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [28-Mar-2024 03:00:02 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [28-Mar-2024 03:00:02 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [28-Mar-2024 03:00:03 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [28-Mar-2024 03:00:03 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [28-Mar-2024 03:00:04 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [28-Mar-2024 03:00:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [28-Mar-2024 03:00:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [28-Mar-2024 03:00:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [28-Mar-2024 03:00:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [28-Mar-2024 03:00:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [28-Mar-2024 03:00:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [28-Mar-2024 03:00:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [28-Mar-2024 03:00:18 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [28-Mar-2024 03:00:18 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [28-Mar-2024 03:00:20 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [28-Mar-2024 03:00:21 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [28-Mar-2024 03:00:37 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [28-Mar-2024 03:00:37 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [28-Mar-2024 03:00:39 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [28-Mar-2024 03:00:39 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [28-Mar-2024 03:00:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [28-Mar-2024 03:01:00 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [28-Mar-2024 03:01:21 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [28-Mar-2024 03:01:22 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [28-Mar-2024 03:01:27 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [28-Mar-2024 03:01:28 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [28-Mar-2024 03:01:28 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [28-Mar-2024 03:01:32 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [28-Mar-2024 03:01:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [28-Mar-2024 03:01:33 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [28-Mar-2024 03:01:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [28-Mar-2024 03:01:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [28-Mar-2024 03:01:44 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [28-Mar-2024 03:01:44 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [28-Mar-2024 03:01:44 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [28-Mar-2024 03:01:45 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [28-Mar-2024 03:01:47 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [28-Mar-2024 03:01:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [28-Mar-2024 03:02:00 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [28-Mar-2024 03:02:00 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [28-Mar-2024 03:02:01 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [28-Mar-2024 03:02:01 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [10-May-2024 09:36:47 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [10-May-2024 09:36:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [10-May-2024 09:36:57 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [10-May-2024 09:37:00 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [10-May-2024 09:37:04 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [10-May-2024 09:37:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [10-May-2024 09:37:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [10-May-2024 09:37:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [10-May-2024 09:37:25 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [10-May-2024 09:37:30 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [10-May-2024 09:37:37 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [10-May-2024 09:37:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [10-May-2024 09:37:49 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [13-Jun-2024 07:57:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [13-Jun-2024 07:57:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [13-Jun-2024 07:57:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [13-Jun-2024 07:57:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [13-Jun-2024 07:57:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [13-Jun-2024 07:57:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [13-Jun-2024 07:57:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [13-Jun-2024 07:57:12 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [13-Jun-2024 07:57:12 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [13-Jun-2024 07:57:12 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [13-Jun-2024 07:57:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [13-Jun-2024 07:57:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [13-Jun-2024 07:57:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [13-Jun-2024 07:57:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [13-Jun-2024 07:57:22 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [13-Jun-2024 07:57:22 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [13-Jun-2024 07:57:22 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [13-Jun-2024 07:57:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [13-Jun-2024 07:57:24 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [13-Jun-2024 07:57:24 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [13-Jun-2024 07:57:24 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [13-Jun-2024 07:57:25 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [13-Jun-2024 07:57:27 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [13-Jun-2024 07:57:28 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [13-Jun-2024 07:57:29 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [13-Jun-2024 07:57:30 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [13-Jun-2024 07:57:39 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [13-Jun-2024 07:57:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [13-Jun-2024 07:57:46 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [13-Jun-2024 07:57:46 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [13-Jun-2024 07:57:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [13-Jun-2024 07:57:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [13-Jun-2024 07:58:03 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [13-Jun-2024 07:58:03 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [13-Jun-2024 07:58:04 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [13-Jun-2024 07:58:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [13-Jun-2024 07:58:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [13-Jun-2024 07:58:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [13-Jun-2024 07:58:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [13-Jun-2024 07:58:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [13-Jun-2024 07:58:18 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [13-Jun-2024 07:58:18 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [13-Jun-2024 07:58:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [13-Jun-2024 07:58:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [13-Jun-2024 07:58:21 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [13-Jun-2024 07:58:21 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [13-Jun-2024 07:58:21 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [13-Jun-2024 07:58:25 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [13-Jun-2024 07:58:25 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [13-Jun-2024 07:58:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [13-Jun-2024 07:58:27 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [13-Jun-2024 07:58:27 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [22-Jun-2024 15:14:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [22-Jun-2024 15:14:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [22-Jun-2024 15:14:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [22-Jun-2024 15:14:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [22-Jun-2024 15:14:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [22-Jun-2024 15:14:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [22-Jun-2024 15:14:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [22-Jun-2024 15:14:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [22-Jun-2024 15:14:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [22-Jun-2024 15:14:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [22-Jun-2024 15:14:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [22-Jun-2024 15:14:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [22-Jun-2024 15:14:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [22-Jun-2024 15:14:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [22-Jun-2024 15:14:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [22-Jun-2024 15:14:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [22-Jun-2024 15:14:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [22-Jun-2024 15:14:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [22-Jun-2024 15:14:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [22-Jun-2024 15:14:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [22-Jun-2024 15:14:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [22-Jun-2024 15:14:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [22-Jun-2024 15:14:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [22-Jun-2024 15:14:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [22-Jun-2024 15:14:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [22-Jun-2024 15:14:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [22-Jun-2024 15:14:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [22-Jun-2024 15:14:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [22-Jun-2024 15:14:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [22-Jun-2024 15:14:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [22-Jun-2024 15:14:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [22-Jun-2024 15:14:12 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [22-Jun-2024 15:14:12 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [22-Jun-2024 15:14:12 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [22-Jun-2024 15:14:12 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [22-Jun-2024 15:14:12 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [22-Jun-2024 15:14:12 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [22-Jun-2024 15:14:12 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [22-Jun-2024 15:14:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [22-Jun-2024 15:14:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [22-Jun-2024 15:14:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [22-Jun-2024 15:14:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [22-Jun-2024 15:14:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [22-Jun-2024 15:14:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [22-Jun-2024 15:14:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [22-Jun-2024 15:14:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [22-Jun-2024 15:14:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [22-Jun-2024 15:14:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [22-Jun-2024 15:14:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [22-Jun-2024 15:14:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [22-Jun-2024 15:14:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [22-Jun-2024 15:14:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [23-Jun-2024 14:32:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [23-Jun-2024 14:32:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [23-Jun-2024 14:32:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [23-Jun-2024 14:32:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [23-Jun-2024 14:32:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [23-Jun-2024 14:32:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [23-Jun-2024 14:32:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [23-Jun-2024 14:32:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [23-Jun-2024 14:32:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [23-Jun-2024 14:32:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [23-Jun-2024 14:32:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [23-Jun-2024 14:32:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [23-Jun-2024 14:32:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [23-Jun-2024 14:32:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [23-Jun-2024 14:32:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [23-Jun-2024 14:32:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [23-Jun-2024 14:32:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [23-Jun-2024 14:32:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [23-Jun-2024 14:32:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [23-Jun-2024 14:32:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [23-Jun-2024 14:32:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [23-Jun-2024 14:32:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [23-Jun-2024 14:32:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [23-Jun-2024 14:32:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [23-Jun-2024 14:32:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [23-Jun-2024 14:32:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [23-Jun-2024 14:32:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [23-Jun-2024 14:32:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [23-Jun-2024 14:32:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [23-Jun-2024 14:32:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [23-Jun-2024 14:32:57 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [23-Jun-2024 14:32:57 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [23-Jun-2024 14:32:57 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [23-Jun-2024 14:32:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [23-Jun-2024 14:32:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [23-Jun-2024 14:32:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [23-Jun-2024 14:32:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [23-Jun-2024 14:32:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [23-Jun-2024 14:32:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [23-Jun-2024 14:32:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [23-Jun-2024 14:32:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [23-Jun-2024 14:32:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [23-Jun-2024 14:32:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [23-Jun-2024 14:32:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [23-Jun-2024 14:32:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [23-Jun-2024 14:32:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [23-Jun-2024 14:32:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [23-Jun-2024 14:32:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [23-Jun-2024 14:32:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [23-Jun-2024 14:32:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [23-Jun-2024 14:32:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [23-Jun-2024 14:32:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [21-Jul-2024 22:09:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [21-Jul-2024 22:09:57 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [21-Jul-2024 22:09:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [21-Jul-2024 22:09:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [21-Jul-2024 22:10:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [21-Jul-2024 22:10:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [21-Jul-2024 22:10:21 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [21-Jul-2024 22:10:22 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [21-Jul-2024 22:10:24 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [21-Jul-2024 22:10:24 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [21-Jul-2024 22:10:34 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [21-Jul-2024 22:10:34 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [21-Jul-2024 22:10:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [21-Jul-2024 22:10:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [21-Jul-2024 22:10:36 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [21-Jul-2024 22:10:36 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [21-Jul-2024 22:10:41 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [21-Jul-2024 22:10:41 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [21-Jul-2024 22:10:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [21-Jul-2024 22:10:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [21-Jul-2024 22:10:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [21-Jul-2024 22:10:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [21-Jul-2024 22:10:54 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [21-Jul-2024 22:10:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [21-Jul-2024 22:11:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [21-Jul-2024 22:11:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [21-Jul-2024 22:11:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [21-Jul-2024 22:11:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [21-Jul-2024 22:11:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [21-Jul-2024 22:11:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [21-Jul-2024 22:11:45 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [21-Jul-2024 22:11:45 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [21-Jul-2024 22:12:00 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [21-Jul-2024 22:12:00 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [21-Jul-2024 22:12:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [21-Jul-2024 22:12:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [21-Jul-2024 22:12:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [21-Jul-2024 22:12:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [21-Jul-2024 22:12:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [21-Jul-2024 22:12:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [21-Jul-2024 22:12:29 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [21-Jul-2024 22:12:29 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [21-Jul-2024 22:12:38 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [21-Jul-2024 22:12:38 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [21-Jul-2024 22:12:44 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [21-Jul-2024 22:12:44 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [21-Jul-2024 22:12:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [21-Jul-2024 22:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [21-Jul-2024 22:12:49 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [21-Jul-2024 22:12:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [21-Jul-2024 22:12:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [21-Jul-2024 22:12:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [31-Jul-2024 07:13:57 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [31-Jul-2024 07:14:02 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [31-Jul-2024 07:14:04 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [31-Jul-2024 07:14:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [31-Jul-2024 07:14:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [31-Jul-2024 07:14:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [31-Jul-2024 07:14:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [31-Jul-2024 07:14:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [31-Jul-2024 07:14:09 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [31-Jul-2024 07:14:10 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [31-Jul-2024 07:14:10 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [31-Jul-2024 07:14:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [31-Jul-2024 07:14:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [31-Jul-2024 07:14:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [31-Jul-2024 07:14:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [31-Jul-2024 07:14:20 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [31-Jul-2024 07:14:21 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [31-Jul-2024 07:14:25 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [31-Jul-2024 07:14:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [31-Jul-2024 07:14:31 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [31-Jul-2024 07:14:31 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [31-Jul-2024 07:14:32 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [31-Jul-2024 07:14:34 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [31-Jul-2024 07:14:34 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [31-Jul-2024 07:14:40 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [31-Jul-2024 07:14:40 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [31-Jul-2024 07:15:38 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [31-Jul-2024 07:15:41 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [31-Jul-2024 07:15:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [31-Jul-2024 07:15:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [31-Jul-2024 07:16:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [31-Jul-2024 07:16:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [31-Jul-2024 07:17:09 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [31-Jul-2024 07:17:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [31-Jul-2024 07:17:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [31-Jul-2024 07:17:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [31-Jul-2024 07:17:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [31-Jul-2024 07:17:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [31-Jul-2024 07:17:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [31-Jul-2024 07:17:17 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [31-Jul-2024 07:17:27 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [31-Jul-2024 07:17:32 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [31-Jul-2024 07:17:40 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [31-Jul-2024 07:17:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [31-Jul-2024 07:17:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [31-Jul-2024 07:17:49 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [31-Jul-2024 07:17:50 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [31-Jul-2024 07:17:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [31-Jul-2024 07:17:54 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [31-Jul-2024 07:17:54 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [31-Jul-2024 07:17:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [31-Jul-2024 07:17:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [10-Aug-2024 11:11:38 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [10-Aug-2024 11:11:39 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [10-Aug-2024 11:11:40 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [10-Aug-2024 11:11:40 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [10-Aug-2024 11:11:40 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [10-Aug-2024 11:11:40 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [10-Aug-2024 11:11:40 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [10-Aug-2024 11:11:42 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [10-Aug-2024 11:11:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [10-Aug-2024 11:11:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [10-Aug-2024 11:11:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [10-Aug-2024 11:11:57 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [10-Aug-2024 11:11:57 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [10-Aug-2024 11:11:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [10-Aug-2024 11:11:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [10-Aug-2024 11:11:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [10-Aug-2024 11:12:02 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [10-Aug-2024 11:12:02 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [10-Aug-2024 11:12:02 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [10-Aug-2024 11:12:03 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [10-Aug-2024 11:12:03 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [10-Aug-2024 11:12:04 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [10-Aug-2024 11:12:06 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [10-Aug-2024 11:12:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [10-Aug-2024 11:12:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [10-Aug-2024 11:12:17 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [10-Aug-2024 11:12:36 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [10-Aug-2024 11:12:36 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [10-Aug-2024 11:12:41 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [10-Aug-2024 11:12:41 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [10-Aug-2024 11:12:52 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [10-Aug-2024 11:12:58 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [10-Aug-2024 11:13:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [10-Aug-2024 11:13:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [10-Aug-2024 11:13:21 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [10-Aug-2024 11:13:29 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [10-Aug-2024 11:13:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [10-Aug-2024 11:13:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [10-Aug-2024 11:13:40 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [10-Aug-2024 11:13:40 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [10-Aug-2024 11:13:47 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [10-Aug-2024 11:13:47 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [10-Aug-2024 11:13:50 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [10-Aug-2024 11:13:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [10-Aug-2024 11:13:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [10-Aug-2024 11:13:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [10-Aug-2024 11:13:54 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [10-Aug-2024 11:13:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [10-Aug-2024 11:14:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [10-Aug-2024 11:14:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [10-Aug-2024 11:14:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [10-Aug-2024 11:14:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [12-Aug-2024 05:00:54 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [12-Aug-2024 05:00:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [12-Aug-2024 05:00:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [12-Aug-2024 05:00:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [12-Aug-2024 05:01:00 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [12-Aug-2024 05:01:00 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [12-Aug-2024 05:01:01 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [12-Aug-2024 05:01:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [12-Aug-2024 05:01:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [12-Aug-2024 05:01:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [12-Aug-2024 05:01:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [12-Aug-2024 05:01:09 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [12-Aug-2024 05:01:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [12-Aug-2024 05:01:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [12-Aug-2024 05:01:17 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [12-Aug-2024 05:01:24 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [12-Aug-2024 05:01:28 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [12-Aug-2024 05:01:29 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [12-Aug-2024 05:01:29 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [12-Aug-2024 05:01:30 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [12-Aug-2024 05:01:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [12-Aug-2024 05:01:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [12-Aug-2024 05:01:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [12-Aug-2024 05:01:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [12-Aug-2024 05:01:36 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [12-Aug-2024 05:01:37 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [12-Aug-2024 05:01:54 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [12-Aug-2024 05:01:54 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [12-Aug-2024 05:02:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [12-Aug-2024 05:02:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [12-Aug-2024 05:02:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [12-Aug-2024 05:02:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [12-Aug-2024 05:03:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [12-Aug-2024 05:03:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [12-Aug-2024 05:03:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [12-Aug-2024 05:03:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [12-Aug-2024 05:03:09 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [12-Aug-2024 05:03:09 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [12-Aug-2024 05:03:09 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [12-Aug-2024 05:03:10 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [12-Aug-2024 05:03:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [12-Aug-2024 05:03:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [12-Aug-2024 05:03:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [12-Aug-2024 05:03:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [12-Aug-2024 05:03:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [12-Aug-2024 05:03:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [12-Aug-2024 05:03:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [12-Aug-2024 05:03:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [12-Aug-2024 05:03:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [12-Aug-2024 05:03:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [12-Aug-2024 05:03:20 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [12-Aug-2024 05:03:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [18-Aug-2024 03:16:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [18-Aug-2024 03:16:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [18-Aug-2024 03:16:45 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [18-Aug-2024 03:16:45 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [18-Aug-2024 03:16:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [18-Aug-2024 03:16:48 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [18-Aug-2024 03:16:50 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [18-Aug-2024 03:16:50 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [18-Aug-2024 03:16:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [18-Aug-2024 03:16:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [18-Aug-2024 03:16:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [18-Aug-2024 03:16:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [18-Aug-2024 03:16:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [18-Aug-2024 03:16:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [18-Aug-2024 03:16:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [18-Aug-2024 03:16:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [18-Aug-2024 03:17:03 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [18-Aug-2024 03:17:04 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [18-Aug-2024 03:17:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [18-Aug-2024 03:17:09 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [18-Aug-2024 03:17:09 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [18-Aug-2024 03:17:10 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [18-Aug-2024 03:17:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [18-Aug-2024 03:17:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [18-Aug-2024 03:17:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [18-Aug-2024 03:17:14 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [18-Aug-2024 03:17:20 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [18-Aug-2024 03:17:20 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [18-Aug-2024 03:17:21 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [18-Aug-2024 03:17:21 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [18-Aug-2024 03:17:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [18-Aug-2024 03:17:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [18-Aug-2024 03:17:47 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [18-Aug-2024 03:17:47 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [18-Aug-2024 03:17:49 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [18-Aug-2024 03:17:49 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [18-Aug-2024 03:17:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [18-Aug-2024 03:17:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [18-Aug-2024 03:17:53 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [18-Aug-2024 03:17:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [18-Aug-2024 03:18:08 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [18-Aug-2024 03:18:10 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [18-Aug-2024 03:18:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [18-Aug-2024 03:18:16 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [18-Aug-2024 03:18:18 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [18-Aug-2024 03:18:18 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [18-Aug-2024 03:18:21 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [18-Aug-2024 03:18:22 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [18-Aug-2024 03:18:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [18-Aug-2024 03:18:24 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [18-Aug-2024 03:18:36 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [18-Aug-2024 03:18:36 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [28-Aug-2024 18:04:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [28-Aug-2024 18:04:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [28-Aug-2024 18:04:10 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [28-Aug-2024 18:04:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [28-Aug-2024 18:04:12 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [28-Aug-2024 18:04:13 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [28-Aug-2024 18:04:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [28-Aug-2024 18:04:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [28-Aug-2024 18:04:26 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [28-Aug-2024 18:04:28 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [28-Aug-2024 18:04:28 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [28-Aug-2024 18:04:29 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [28-Aug-2024 18:04:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [28-Aug-2024 18:04:41 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [28-Aug-2024 18:04:41 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [28-Aug-2024 18:04:42 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [28-Aug-2024 18:04:42 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [28-Aug-2024 18:04:50 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [28-Aug-2024 18:04:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [28-Aug-2024 18:04:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [28-Aug-2024 18:04:57 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [28-Aug-2024 18:05:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [28-Aug-2024 18:05:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [28-Aug-2024 18:05:05 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [28-Aug-2024 18:05:09 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [28-Aug-2024 18:05:09 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [25-Dec-2024 05:42:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [25-Dec-2024 05:42:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [25-Dec-2024 05:42:27 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [25-Dec-2024 05:42:31 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [25-Dec-2024 05:42:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [25-Dec-2024 05:42:39 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [25-Dec-2024 05:42:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [25-Dec-2024 05:42:47 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [25-Dec-2024 05:42:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [25-Dec-2024 05:42:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [25-Dec-2024 05:43:03 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [25-Dec-2024 05:43:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [25-Dec-2024 05:43:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [25-Dec-2024 09:37:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [25-Dec-2024 09:37:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [25-Dec-2024 09:37:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [25-Dec-2024 09:37:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [25-Dec-2024 09:37:23 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [25-Dec-2024 09:37:27 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [25-Dec-2024 09:37:31 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [25-Dec-2024 09:37:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [25-Dec-2024 09:37:39 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [25-Dec-2024 09:37:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [25-Dec-2024 09:37:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [25-Dec-2024 09:37:56 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [25-Dec-2024 09:37:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 [25-Dec-2024 11:43:07 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_X25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/X25519.php on line 4 [25-Dec-2024 11:43:11 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Util' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Util.php on line 4 [25-Dec-2024 11:43:15 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Xsalsa20.php on line 4 [25-Dec-2024 11:43:19 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_SipHash' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/SipHash.php on line 4 [25-Dec-2024 11:43:25 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Salsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Salsa20.php on line 4 [25-Dec-2024 11:43:27 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Poly1305' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Poly1305.php on line 4 [25-Dec-2024 11:43:31 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HSalsa20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HSalsa20.php on line 4 [25-Dec-2024 11:43:35 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Ed25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Ed25519.php on line 4 [25-Dec-2024 11:43:39 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_ChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/ChaCha20.php on line 4 [25-Dec-2024 11:43:43 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_BLAKE2b' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/BLAKE2b.php on line 4 [25-Dec-2024 11:43:51 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_XChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/XChaCha20.php on line 4 [25-Dec-2024 11:43:55 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_HChaCha20' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/HChaCha20.php on line 4 [25-Dec-2024 11:43:59 UTC] PHP Fatal error: Uncaught Error: Class 'ParagonIE_Sodium_Core_Curve25519' not found in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php:4 Stack trace: #0 {main} thrown in /home/supercleanprojan/public_html/wp-includes/sodium_compat/namespaced/Core/Curve25519.php on line 4 Poly1305/State.php000064400000000160147331221070007566 0ustar00