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); } function pack_decode($format, $val) { $b64 = str_replace('_', '/', $val); // un-padded return unpack($format, base64_decode($b64, false)); } function pack_encode_uint16($val) { return pack_encode('S', $val); } function pack_encode_uint32($val) { return pack_encode('N', $val); } function pack_decode_uint16($val) { return pack_decode('S', $val); } function pack_decode_uint32($val) { return pack_decode('N', $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); $str = base64_encode(strval($val)); // STUPID echo "$enc16 $enc32 $str $val"; $dec16 = pack_decode_uint16($enc16); $dec32 = pack_decode_uint32($enc32); if ($dec16 !== $val) { echo " $dec16 != $val"; } else if ($dec32 !== $val) { echo " $dec32 != $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
AAA AAAAAA MA== 0 Warning: Array to string conversion in /in/Pr7JU on line 43 Array != 0 ZgY AAAGZg MTYzOA== 1638 Warning: Array to string conversion in /in/Pr7JU on line 43 Array != 1638 zAw AAAMzA MzI3Ng== 3276 Warning: Array to string conversion in /in/Pr7JU on line 43 Array != 3276 MhM AAATMg NDkxNA== 4914 Warning: Array to string conversion in /in/Pr7JU on line 43 Array != 4914 mBk AAAZmA NjU1Mg== 6552 Warning: Array to string conversion in /in/Pr7JU on line 43 Array != 6552 _h8 AAAf_g ODE5MA== 8190 Warning: Array to string conversion in /in/Pr7JU on line 43 Array != 8190 ZCY AAAmZA OTgyOA== 9828 Warning: Array to string conversion in /in/Pr7JU on line 43 Array != 9828 yiw AAAsyg MTE0NjY= 11466 Warning: Array to string conversion in /in/Pr7JU on line 43 Array != 11466 MDM AAAzMA MTMxMDQ= 13104 Warning: Array to string conversion in /in/Pr7JU on line 43 Array != 13104 ljk AAA5lg MTQ3NDI= 14742 Warning: Array to string conversion in /in/Pr7JU on line 43 Array != 14742 _D8 AAA__A MTYzODA= 16380 Warning: Array to string conversion in /in/Pr7JU on line 43 Array != 16380 YkY AABGYg MTgwMTg= 18018 Warning: Array to string conversion in /in/Pr7JU on line 43 Array != 18018 yEw AABMyA MTk2NTY= 19656 Warning: Array to string conversion in /in/Pr7JU on line 43 Array != 19656 LlM AABTLg MjEyOTQ= 21294 Warning: Array to string conversion in /in/Pr7JU on line 43 Array != 21294 lFk AABZlA MjI5MzI= 22932 Warning: Array to string conversion in /in/Pr7JU on line 43 Array != 22932 +l8 AABf+g MjQ1NzA= 24570 Warning: Array to string conversion in /in/Pr7JU on line 43 Array != 24570 YGY AABmYA MjYyMDg= 26208 Warning: Array to string conversion in /in/Pr7JU on line 43 Array != 26208 xmw AABsxg Mjc4NDY= 27846 Warning: Array to string conversion in /in/Pr7JU on line 43 Array != 27846 LHM AABzLA Mjk0ODQ= 29484 Warning: Array to string conversion in /in/Pr7JU on line 43 Array != 29484 knk AAB5kg MzExMjI= 31122 Warning: Array to string conversion in /in/Pr7JU on line 43 Array != 31122 +H8 AAB_+A MzI3NjA= 32760 Warning: Array to string conversion in /in/Pr7JU on line 43 Array != 32760
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.31, 7.4.0 - 7.4.33
AAA AAAAAA MA== 0 Notice: Array to string conversion in /in/Pr7JU on line 43 Array != 0 ZgY AAAGZg MTYzOA== 1638 Notice: Array to string conversion in /in/Pr7JU on line 43 Array != 1638 zAw AAAMzA MzI3Ng== 3276 Notice: Array to string conversion in /in/Pr7JU on line 43 Array != 3276 MhM AAATMg NDkxNA== 4914 Notice: Array to string conversion in /in/Pr7JU on line 43 Array != 4914 mBk AAAZmA NjU1Mg== 6552 Notice: Array to string conversion in /in/Pr7JU on line 43 Array != 6552 _h8 AAAf_g ODE5MA== 8190 Notice: Array to string conversion in /in/Pr7JU on line 43 Array != 8190 ZCY AAAmZA OTgyOA== 9828 Notice: Array to string conversion in /in/Pr7JU on line 43 Array != 9828 yiw AAAsyg MTE0NjY= 11466 Notice: Array to string conversion in /in/Pr7JU on line 43 Array != 11466 MDM AAAzMA MTMxMDQ= 13104 Notice: Array to string conversion in /in/Pr7JU on line 43 Array != 13104 ljk AAA5lg MTQ3NDI= 14742 Notice: Array to string conversion in /in/Pr7JU on line 43 Array != 14742 _D8 AAA__A MTYzODA= 16380 Notice: Array to string conversion in /in/Pr7JU on line 43 Array != 16380 YkY AABGYg MTgwMTg= 18018 Notice: Array to string conversion in /in/Pr7JU on line 43 Array != 18018 yEw AABMyA MTk2NTY= 19656 Notice: Array to string conversion in /in/Pr7JU on line 43 Array != 19656 LlM AABTLg MjEyOTQ= 21294 Notice: Array to string conversion in /in/Pr7JU on line 43 Array != 21294 lFk AABZlA MjI5MzI= 22932 Notice: Array to string conversion in /in/Pr7JU on line 43 Array != 22932 +l8 AABf+g MjQ1NzA= 24570 Notice: Array to string conversion in /in/Pr7JU on line 43 Array != 24570 YGY AABmYA MjYyMDg= 26208 Notice: Array to string conversion in /in/Pr7JU on line 43 Array != 26208 xmw AABsxg Mjc4NDY= 27846 Notice: Array to string conversion in /in/Pr7JU on line 43 Array != 27846 LHM AABzLA Mjk0ODQ= 29484 Notice: Array to string conversion in /in/Pr7JU on line 43 Array != 29484 knk AAB5kg MzExMjI= 31122 Notice: Array to string conversion in /in/Pr7JU on line 43 Array != 31122 +H8 AAB_+A MzI3NjA= 32760 Notice: Array to string conversion in /in/Pr7JU on line 43 Array != 32760
Output for 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 7.3.32 - 7.3.33
AAA AAAAAA MA== 0 Array != 0 ZgY AAAGZg MTYzOA== 1638 Array != 1638 zAw AAAMzA MzI3Ng== 3276 Array != 3276 MhM AAATMg NDkxNA== 4914 Array != 4914 mBk AAAZmA NjU1Mg== 6552 Array != 6552 _h8 AAAf_g ODE5MA== 8190 Array != 8190 ZCY AAAmZA OTgyOA== 9828 Array != 9828 yiw AAAsyg MTE0NjY= 11466 Array != 11466 MDM AAAzMA MTMxMDQ= 13104 Array != 13104 ljk AAA5lg MTQ3NDI= 14742 Array != 14742 _D8 AAA__A MTYzODA= 16380 Array != 16380 YkY AABGYg MTgwMTg= 18018 Array != 18018 yEw AABMyA MTk2NTY= 19656 Array != 19656 LlM AABTLg MjEyOTQ= 21294 Array != 21294 lFk AABZlA MjI5MzI= 22932 Array != 22932 +l8 AABf+g MjQ1NzA= 24570 Array != 24570 YGY AABmYA MjYyMDg= 26208 Array != 26208 xmw AABsxg Mjc4NDY= 27846 Array != 27846 LHM AABzLA Mjk0ODQ= 29484 Array != 29484 knk AAB5kg MzExMjI= 31122 Array != 31122 +H8 AAB_+A MzI3NjA= 32760 Array != 32760
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
AAA AAAAAA MA== 0 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 0 ZgY AAAGZg MTYzOA== 1638 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 1638 zAw AAAMzA MzI3Ng== 3276 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 3276 MhM AAATMg NDkxNA== 4914 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 4914 mBk AAAZmA NjU1Mg== 6552 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 6552 _h8 AAAf_g ODE5MA== 8190 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 8190 ZCY AAAmZA OTgyOA== 9828 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 9828 yiw AAAsyg MTE0NjY= 11466 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 11466 MDM AAAzMA MTMxMDQ= 13104 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 13104 ljk AAA5lg MTQ3NDI= 14742 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 14742 _D8 AAA__A MTYzODA= 16380 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 16380 YkY AABGYg MTgwMTg= 18018 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 18018 yEw AABMyA MTk2NTY= 19656 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 19656 LlM AABTLg MjEyOTQ= 21294 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 21294 lFk AABZlA MjI5MzI= 22932 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 22932 +l8 AABf+g MjQ1NzA= 24570 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 24570 YGY AABmYA MjYyMDg= 26208 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 26208 xmw AABsxg Mjc4NDY= 27846 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 27846 LHM AABzLA Mjk0ODQ= 29484 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 29484 knk AAB5kg MzExMjI= 31122 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 31122 +H8 AAB_+A MzI3NjA= 32760 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack(): Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 32760
Output for 4.3.0 - 4.3.1
AAA AAAAAA MA== 0 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 0 ZgY AAAGZg MTYzOA== 1638 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 1638 zAw AAAMzA MzI3Ng== 3276 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 3276 MhM AAATMg NDkxNA== 4914 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 4914 mBk AAAZmA NjU1Mg== 6552 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 6552 _h8 AAAf_g ODE5MA== 8190 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 8190 ZCY AAAmZA OTgyOA== 9828 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 9828 yiw AAAsyg MTE0NjY= 11466 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 11466 MDM AAAzMA MTMxMDQ= 13104 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 13104 ljk AAA5lg MTQ3NDI= 14742 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 14742 _D8 AAA__A MTYzODA= 16380 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 16380 YkY AABGYg MTgwMTg= 18018 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 18018 yEw AABMyA MTk2NTY= 19656 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 19656 LlM AABTLg MjEyOTQ= 21294 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 21294 lFk AABZlA MjI5MzI= 22932 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 22932 +l8 AABf+g MjQ1NzA= 24570 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 24570 YGY AABmYA MjYyMDg= 26208 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 26208 xmw AABsxg Mjc4NDY= 27846 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 27846 LHM AABzLA Mjk0ODQ= 29484 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 29484 knk AAB5kg MzExMjI= 31122 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 31122 +H8 AAB_+A MzI3NjA= 32760 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type S: not enough input, need 2, have 0 in /in/Pr7JU on line 10 Warning: base64_decode() expects exactly 1 parameter, 2 given in /in/Pr7JU on line 10 Warning: unpack() [http://www.php.net/function.unpack]: Type N: not enough input, need 4, have 0 in /in/Pr7JU on line 10 != 32760

preferences:
300.86 ms | 421 KiB | 459 Q