3v4l.org

run code in 300+ PHP versions simultaneously
<?php function pack_encode($format, $val) { $b64 = base64_encode(pack($format, $val)); return str_replace(array('/', '='), array('_', ''), $b64); // "/" json-encodes poorly and "=" is padding } function pack_decode($format, $width, $bin) { $b64 = str_replace('_', '/', $bin); // un-padded $data = unpack($format, base64_decode($b64, false)); $val = 0; foreach ($data as $v) { $val = ($val<<$width) | $v; } return $val; } function pack_encode_uint16($val) { return pack_encode('n', $val); } function pack_decode_uint16($val) { return pack_decode('n', 16, $val); } function pack_encode_uint32($val) { return pack_encode('N', $val); } function pack_decode_uint32($val) { return pack_decode('N', 32, $val); } function pack_encode_uint64($val) { return pack_encode('NN', $val); } function pack_decode_uint64($val) { return pack_decode('NN', 32, $val); } $max = 32767; $n = 20; $step = intval($max/$n); for ($i=0; $i<=$n; $i++) { $val = $i*$step; $enc16 = pack_encode_uint16($val); $enc32 = pack_encode_uint32($val); $enc64 = pack_encode_uint64($val); $str = base64_encode(strval($val)); // STUPID echo "$enc16 $enc32 $str $val"; $dec16 = pack_decode_uint16($enc16); $dec32 = pack_decode_uint32($enc32); $dec64 = pack_decode_uint32($enc64); if ($dec16 != $val) { echo " 16($dec16 != $val)"; }if ($dec32 != $val) { echo " 32($dec32 != $val)"; } else if ($dec64 != $val) { echo " 64($dec64 != $val)"; } echo "\n"; }
Output for 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Fatal error: Uncaught ValueError: Type N: too few arguments in /in/YG4ht:4 Stack trace: #0 /in/YG4ht(4): pack('NN', 0) #1 /in/YG4ht(35): pack_encode('NN', 0) #2 /in/YG4ht(51): pack_encode_uint64(0) #3 {main} thrown in /in/YG4ht on line 4
Process exited with code 255.
Output for 5.2.0, 5.2.2 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.24 - 5.5.35, 5.6.7 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.10, 7.2.0 - 7.2.33, 7.3.16 - 7.3.33, 7.4.0 - 7.4.33
Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 AAA AAAAAA MA== 0 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 BmY AAAGZg MTYzOA== 1638 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 1638) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 DMw AAAMzA MzI3Ng== 3276 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 3276) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 EzI AAATMg NDkxNA== 4914 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 4914) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 GZg AAAZmA NjU1Mg== 6552 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 6552) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 H_4 AAAf_g ODE5MA== 8190 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 8190) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 JmQ AAAmZA OTgyOA== 9828 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 9828) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 LMo AAAsyg MTE0NjY= 11466 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 11466) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 MzA AAAzMA MTMxMDQ= 13104 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 13104) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 OZY AAA5lg MTQ3NDI= 14742 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 14742) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 P_w AAA__A MTYzODA= 16380 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 16380) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 RmI AABGYg MTgwMTg= 18018 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 18018) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 TMg AABMyA MTk2NTY= 19656 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 19656) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 Uy4 AABTLg MjEyOTQ= 21294 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 21294) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 WZQ AABZlA MjI5MzI= 22932 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 22932) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 X_o AABf+g MjQ1NzA= 24570 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 24570) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 ZmA AABmYA MjYyMDg= 26208 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 26208) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 bMY AABsxg Mjc4NDY= 27846 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 27846) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 cyw AABzLA Mjk0ODQ= 29484 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 29484) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 eZI AAB5kg MzExMjI= 31122 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 31122) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 f_g AAB_+A MzI3NjA= 32760 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 32760)
Output for 5.2.1
Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 AAA AAAAAA MA== 0 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 BmY AAAGZg MTYzOA== 1638 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 1638) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 DMw AAAMzA MzI3Ng== 3276 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 32(-2147480372 != 3276) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 EzI AAATMg NDkxNA== 4914 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 4914) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 GZg AAAZmA NjU1Mg== 6552 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 32(-2147477096 != 6552) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 H_4 AAAf_g ODE5MA== 8190 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 32(-2147475458 != 8190) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 JmQ AAAmZA OTgyOA== 9828 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 9828) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 LMo AAAsyg MTE0NjY= 11466 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 32(-2147472182 != 11466) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 MzA AAAzMA MTMxMDQ= 13104 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 13104) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 OZY AAA5lg MTQ3NDI= 14742 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 32(-2147468906 != 14742) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 P_w AAA__A MTYzODA= 16380 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 32(-2147467268 != 16380) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 RmI AABGYg MTgwMTg= 18018 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 18018) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 TMg AABMyA MTk2NTY= 19656 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 32(-2147463992 != 19656) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 Uy4 AABTLg MjEyOTQ= 21294 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 21294) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 WZQ AABZlA MjI5MzI= 22932 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 32(-2147460716 != 22932) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 X_o AABf+g MjQ1NzA= 24570 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 32(-2147459078 != 24570) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 ZmA AABmYA MjYyMDg= 26208 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 26208) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 bMY AABsxg Mjc4NDY= 27846 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 32(-2147455802 != 27846) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 cyw AABzLA Mjk0ODQ= 29484 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 64(0 != 29484) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 eZI AAB5kg MzExMjI= 31122 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 32(-2147452526 != 31122) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 f_g AAB_+A MzI3NjA= 32760 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 32(-2147450888 != 32760)
Output for 4.3.2 - 4.3.10, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 AAA AAAAAA MA== 0 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 BmY AAAGZg MTYzOA== 1638 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 1638) 32(0 != 1638) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 DMw AAAMzA MzI3Ng== 3276 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 3276) 32(0 != 3276) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 EzI AAATMg NDkxNA== 4914 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 4914) 32(0 != 4914) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 GZg AAAZmA NjU1Mg== 6552 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 6552) 32(0 != 6552) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 H_4 AAAf_g ODE5MA== 8190 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 8190) 32(0 != 8190) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 JmQ AAAmZA OTgyOA== 9828 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 9828) 32(0 != 9828) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 LMo AAAsyg MTE0NjY= 11466 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 11466) 32(0 != 11466) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 MzA AAAzMA MTMxMDQ= 13104 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 13104) 32(0 != 13104) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 OZY AAA5lg MTQ3NDI= 14742 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 14742) 32(0 != 14742) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 P_w AAA__A MTYzODA= 16380 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 16380) 32(0 != 16380) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 RmI AABGYg MTgwMTg= 18018 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 18018) 32(0 != 18018) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 TMg AABMyA MTk2NTY= 19656 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 19656) 32(0 != 19656) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 Uy4 AABTLg MjEyOTQ= 21294 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 21294) 32(0 != 21294) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 WZQ AABZlA MjI5MzI= 22932 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 22932) 32(0 != 22932) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 X_o AABf+g MjQ1NzA= 24570 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 24570) 32(0 != 24570) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 ZmA AABmYA MjYyMDg= 26208 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 26208) 32(0 != 26208) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 bMY AABsxg Mjc4NDY= 27846 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 27846) 32(0 != 27846) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 cyw AABzLA Mjk0ODQ= 29484 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 29484) 32(0 != 29484) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 eZI AAB5kg MzExMjI= 31122 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 31122) 32(0 != 31122) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 f_g AAB_+A MzI3NjA= 32760 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 32760) 32(0 != 32760)
Output for 4.3.11
Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 AAA AAAAAA MA== 0 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 BmY AAAGZg MTYzOA== 1638 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 16(0 != 1638) 32(0 != 1638) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 DMw AAAMzA MzI3Ng== 3276 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 16(0 != 3276) 32(0 != 3276) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 EzI AAATMg NDkxNA== 4914 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 16(0 != 4914) 32(0 != 4914) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 GZg AAAZmA NjU1Mg== 6552 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 16(0 != 6552) 32(0 != 6552) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 H_4 AAAf_g ODE5MA== 8190 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 16(0 != 8190) 32(0 != 8190) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 JmQ AAAmZA OTgyOA== 9828 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 16(0 != 9828) 32(0 != 9828) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 LMo AAAsyg MTE0NjY= 11466 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 16(0 != 11466) 32(0 != 11466) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 MzA AAAzMA MTMxMDQ= 13104 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 16(0 != 13104) 32(0 != 13104) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 OZY AAA5lg MTQ3NDI= 14742 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 16(0 != 14742) 32(0 != 14742) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 P_w AAA__A MTYzODA= 16380 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 16(0 != 16380) 32(0 != 16380) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 RmI AABGYg MTgwMTg= 18018 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 16(0 != 18018) 32(0 != 18018) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 TMg AABMyA MTk2NTY= 19656 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 16(0 != 19656) 32(0 != 19656) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 Uy4 AABTLg MjEyOTQ= 21294 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 16(0 != 21294) 32(0 != 21294) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 WZQ AABZlA MjI5MzI= 22932 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 16(0 != 22932) 32(0 != 22932) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 X_o AABf+g MjQ1NzA= 24570 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 16(0 != 24570) 32(0 != 24570) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 ZmA AABmYA MjYyMDg= 26208 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 16(0 != 26208) 32(0 != 26208) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 bMY AABsxg Mjc4NDY= 27846 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 16(0 != 27846) 32(0 != 27846) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 cyw AABzLA Mjk0ODQ= 29484 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 16(0 != 29484) 32(0 != 29484) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 eZI AAB5kg MzExMjI= 31122 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 16(0 != 31122) 32(0 != 31122) Warning: pack(): Type N: too few arguments in /in/YG4ht on line 4 f_g AAB_+A MzI3NjA= 32760 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 16(0 != 32760) 32(0 != 32760)
Output for 4.3.0 - 4.3.1
Warning: pack() [http://www.php.net/function.pack]: Type N: too few arguments in /in/YG4ht on line 4 AAA AAAAAA MA== 0 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: pack() [http://www.php.net/function.pack]: Type N: too few arguments in /in/YG4ht on line 4 BmY AAAGZg MTYzOA== 1638 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 1638) 32(0 != 1638) Warning: pack() [http://www.php.net/function.pack]: Type N: too few arguments in /in/YG4ht on line 4 DMw AAAMzA MzI3Ng== 3276 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 3276) 32(0 != 3276) Warning: pack() [http://www.php.net/function.pack]: Type N: too few arguments in /in/YG4ht on line 4 EzI AAATMg NDkxNA== 4914 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 4914) 32(0 != 4914) Warning: pack() [http://www.php.net/function.pack]: Type N: too few arguments in /in/YG4ht on line 4 GZg AAAZmA NjU1Mg== 6552 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 6552) 32(0 != 6552) Warning: pack() [http://www.php.net/function.pack]: Type N: too few arguments in /in/YG4ht on line 4 H_4 AAAf_g ODE5MA== 8190 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 8190) 32(0 != 8190) Warning: pack() [http://www.php.net/function.pack]: Type N: too few arguments in /in/YG4ht on line 4 JmQ AAAmZA OTgyOA== 9828 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 9828) 32(0 != 9828) Warning: pack() [http://www.php.net/function.pack]: Type N: too few arguments in /in/YG4ht on line 4 LMo AAAsyg MTE0NjY= 11466 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 11466) 32(0 != 11466) Warning: pack() [http://www.php.net/function.pack]: Type N: too few arguments in /in/YG4ht on line 4 MzA AAAzMA MTMxMDQ= 13104 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 13104) 32(0 != 13104) Warning: pack() [http://www.php.net/function.pack]: Type N: too few arguments in /in/YG4ht on line 4 OZY AAA5lg MTQ3NDI= 14742 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 14742) 32(0 != 14742) Warning: pack() [http://www.php.net/function.pack]: Type N: too few arguments in /in/YG4ht on line 4 P_w AAA__A MTYzODA= 16380 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 16380) 32(0 != 16380) Warning: pack() [http://www.php.net/function.pack]: Type N: too few arguments in /in/YG4ht on line 4 RmI AABGYg MTgwMTg= 18018 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 18018) 32(0 != 18018) Warning: pack() [http://www.php.net/function.pack]: Type N: too few arguments in /in/YG4ht on line 4 TMg AABMyA MTk2NTY= 19656 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 19656) 32(0 != 19656) Warning: pack() [http://www.php.net/function.pack]: Type N: too few arguments in /in/YG4ht on line 4 Uy4 AABTLg MjEyOTQ= 21294 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 21294) 32(0 != 21294) Warning: pack() [http://www.php.net/function.pack]: Type N: too few arguments in /in/YG4ht on line 4 WZQ AABZlA MjI5MzI= 22932 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 22932) 32(0 != 22932) Warning: pack() [http://www.php.net/function.pack]: Type N: too few arguments in /in/YG4ht on line 4 X_o AABf+g MjQ1NzA= 24570 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 24570) 32(0 != 24570) Warning: pack() [http://www.php.net/function.pack]: Type N: too few arguments in /in/YG4ht on line 4 ZmA AABmYA MjYyMDg= 26208 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 26208) 32(0 != 26208) Warning: pack() [http://www.php.net/function.pack]: Type N: too few arguments in /in/YG4ht on line 4 bMY AABsxg Mjc4NDY= 27846 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 27846) 32(0 != 27846) Warning: pack() [http://www.php.net/function.pack]: Type N: too few arguments in /in/YG4ht on line 4 cyw AABzLA Mjk0ODQ= 29484 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 29484) 32(0 != 29484) Warning: pack() [http://www.php.net/function.pack]: Type N: too few arguments in /in/YG4ht on line 4 eZI AAB5kg MzExMjI= 31122 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 31122) 32(0 != 31122) Warning: pack() [http://www.php.net/function.pack]: Type N: too few arguments in /in/YG4ht on line 4 f_g AAB_+A MzI3NjA= 32760 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type n: not enough input, need 2, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/YG4ht on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/YG4ht on line 10 Warning: Invalid argument supplied for foreach() in /in/YG4ht on line 12 16(0 != 32760) 32(0 != 32760)

preferences:
238.8 ms | 445 KiB | 311 Q