3v4l.org

run code in 300+ PHP versions simultaneously
<?php $uuid = sprintf('%04x%04x%04x%04x%04x%04x%04x%04x', // 32 bits for "time_low" mt_rand(0, 0xffff), mt_rand(0, 0xffff), // 16 bits for "time_mid" mt_rand(0, 0xffff), // 16 bits for "time_hi_and_version", // four most significant bits holds version number 4 mt_rand(0, 0x0fff) | 0x4000, // 16 bits, 8 bits for "clk_seq_hi_res", // 8 bits for "clk_seq_low", // two most significant bits holds zero and one // for variant DCE1.1 mt_rand(0, 0x3fff) | 0x8000, // 48 bits for "node" mt_rand(0, 0xffff), mt_rand(0, 0xffff), mt_rand(0, 0xffff) ); $packedUuid = pack('H*', $uuid); $unpackedUuid = unpack('H*', $packedUuid); var_dump($unpackedUuid); $unpackedUuid = $unpackedUuid[0]; echo $uuid . PHP_EOL; echo strlen($uuid) . PHP_EOL; echo $packedUuid . PHP_EOL; echo strlen($packedUuid) . PHP_EOL; echo $unpackedUuid . PHP_EOL; echo strlen($unpackedUuid) . PHP_EOL;
Output for 7.3.1
array(1) { [1]=> string(32) "f45f2db0a927467e8092923b2fcc45de" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 f45f2db0a927467e8092923b2fcc45de 32 �_-��'F~���;/�E� 16 0
Output for 7.3.0
array(1) { [1]=> string(32) "e3a15df89ad146419c8d69aa3d1a4937" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 e3a15df89ad146419c8d69aa3d1a4937 32 �]���FA��i�=I7 16 0
Output for 7.2.13
array(1) { [1]=> string(32) "d20daebb4bfd47d0978dd3102f42a0fc" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 d20daebb4bfd47d0978dd3102f42a0fc 32 � ��K�G��/B�� 16 0
Output for 7.2.12
array(1) { [1]=> string(32) "c71162195fa74307b039967ac322cb01" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 c71162195fa74307b039967ac322cb01 32 �b_�C�9�z�"� 16 0
Output for 7.2.11
array(1) { [1]=> string(32) "d55469ee075e42bc81920365c145f826" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 d55469ee075e42bc81920365c145f826 32 �Ti�^B���e�E�& 16 0
Output for 7.2.10
array(1) { [1]=> string(32) "e594f427d70440f9aba68c72153e2571" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 e594f427d70440f9aba68c72153e2571 32 ��'�@����r>%q 16 0
Output for 7.2.9
array(1) { [1]=> string(32) "15c3b2f7469b489ab2500a13ebb2aad8" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 15c3b2f7469b489ab2500a13ebb2aad8 32 ò�F�H��P 벪� 16 0
Output for 7.2.8
array(1) { [1]=> string(32) "d0d07e363f094337b989c1b7c71b22c1" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 d0d07e363f094337b989c1b7c71b22c1 32 ��~6? C7�����"� 16 0
Output for 7.2.7
array(1) { [1]=> string(32) "e0801796d3404a83a755bf080ca41670" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 e0801796d3404a83a755bf080ca41670 32 ���@J��U� �p 16 0
Output for 7.2.6
array(1) { [1]=> string(32) "005c333cdeea4e86a3de02b2cb17bc8b" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 005c333cdeea4e86a3de02b2cb17bc8b 32 \3<��N������� 16 0
Output for 7.2.5
array(1) { [1]=> string(32) "4c737814e7074e20b88619a1a29b4dae" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 4c737814e7074e20b88619a1a29b4dae 32 Lsx�N �����M� 16 0
Output for 7.2.4
array(1) { [1]=> string(32) "05c07472fd634365b6d4368a61f855d1" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 05c07472fd634365b6d4368a61f855d1 32 �tr�cCe��6�a�U� 16 0
Output for 7.2.3
array(1) { [1]=> string(32) "8c3b65c08dcb4e259ca93caf66b59938" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 8c3b65c08dcb4e259ca93caf66b59938 32 �;e���N%��<�f��8 16 0
Output for 7.2.2
array(1) { [1]=> string(32) "b1aed3334b704e26918a2840adfd2402" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 b1aed3334b704e26918a2840adfd2402 32 ���3KpN&��(@��$ 16 0
Output for 7.2.1
array(1) { [1]=> string(32) "3379bae3235c44a7b6c9ec993749217d" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 3379bae3235c44a7b6c9ec993749217d 32 3y��#\D����7I!} 16 0
Output for 7.2.0
array(1) { [1]=> string(32) "736ecf686b9a4f0190fa129cff09d07d" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 736ecf686b9a4f0190fa129cff09d07d 32 sn�hk�O���� �} 16 0
Output for 7.1.25
array(1) { [1]=> string(32) "702f17c5b5034019b890be5c1528bb56" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 702f17c5b5034019b890be5c1528bb56 32 p/ŵ@���\(�V 16 0
Output for 7.1.7
array(1) { [1]=> string(32) "d274e39479c9438480b254c359294828" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 d274e39479c9438480b254c359294828 32 �t�y�C���T�Y)H( 16 0
Output for 7.1.6
array(1) { [1]=> string(32) "7cadd469f5e5430b9514025447a2ff6e" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 7cadd469f5e5430b9514025447a2ff6e 32 |��i��C �TG��n 16 0
Output for 7.1.5
array(1) { [1]=> string(32) "4d0d98f3be5240bab19ccaf5f4be3b86" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 4d0d98f3be5240bab19ccaf5f4be3b86 32 M ��R@�����;� 16 0
Output for 7.1.0
array(1) { [1]=> string(32) "66df03dfcfe349fc975c22878e8c4dfc" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 66df03dfcfe349fc975c22878e8c4dfc 32 f����I��\"���M� 16 0
Output for 7.0.20
array(1) { [1]=> string(32) "d6daf5a6e2514ce89984895874321114" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 d6daf5a6e2514ce89984895874321114 32 ����QL虄�Xt2 16 0
Output for 7.0.14
array(1) { [1]=> string(32) "9c429508c6674a1090ecc6b6fb518d05" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 9c429508c6674a1090ecc6b6fb518d05 32 �B��gJ��ƶ�Q� 16 0
Output for 7.0.10
array(1) { [1]=> string(32) "5ab0998e5c7e4a27947c4c49e9c75e42" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 5ab0998e5c7e4a27947c4c49e9c75e42 32 Z���\~J'�|LI��^B 16 0
Output for 7.0.9
array(1) { [1]=> string(32) "a20a58905a7d41f3abdbee932f1f1966" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 a20a58905a7d41f3abdbee932f1f1966 32 � X�Z}A���/f 16 0
Output for 7.0.8
array(1) { [1]=> string(32) "baca672f2e7249ada95449ad571f5e8c" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 baca672f2e7249ada95449ad571f5e8c 32 ��g/.rI��TI�W^� 16 0
Output for 7.0.7
array(1) { [1]=> string(32) "ad1d6bd55b0b41f2971e1c058da4791e" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 ad1d6bd55b0b41f2971e1c058da4791e 32 �k�[ A���y 16 0
Output for 7.0.6
array(1) { [1]=> string(32) "982dee496e1442c4a569251273dbd06f" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 982dee496e1442c4a569251273dbd06f 32 �-�InBĥi%s��o 16 0
Output for 7.0.5
array(1) { [1]=> string(32) "4382b216ec284be4bd5d7c66eba6ab2a" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 4382b216ec284be4bd5d7c66eba6ab2a 32 C���(K�]|f릫* 16 0
Output for 7.0.4
array(1) { [1]=> string(32) "491fb5d0092f4becacb5c9d754dd5cdb" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 491fb5d0092f4becacb5c9d754dd5cdb 32 I�� /K쬵��T�\� 16 0
Output for 7.0.3
array(1) { [1]=> string(32) "bc452fcf86064e99a3c96b9fad0056b1" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 bc452fcf86064e99a3c96b9fad0056b1 32 �E/φN���k��V� 16 0
Output for 7.0.2
array(1) { [1]=> string(32) "1d3a3bb46d5b4f38abd8bc8d72fcd8e2" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 1d3a3bb46d5b4f38abd8bc8d72fcd8e2 32 :;�m[O8�ؼ�r��� 16 0
Output for 7.0.1
array(1) { [1]=> string(32) "ce18064bda2f446eae159ba13e18c3be" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 ce18064bda2f446eae159ba13e18c3be 32 �K�/Dn���>þ 16 0
Output for 7.0.0
array(1) { [1]=> string(32) "d2bb3b174502469e97e5ee6b9f1e8d59" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 d2bb3b174502469e97e5ee6b9f1e8d59 32 һ;EF����k��Y 16 0
Output for 5.6.28
array(1) { [1]=> string(32) "c430f64c20794cdca4ec3bde24f59668" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 c430f64c20794cdca4ec3bde24f59668 32 �0�L yLܤ�;�$��h 16 0
Output for 5.6.25
array(1) { [1]=> string(32) "dab6c47f349c4dd59fd1715646eaf156" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 dab6c47f349c4dd59fd1715646eaf156 32 ڶ�4�M՟�qVF��V 16 0
Output for 5.6.24
array(1) { [1]=> string(32) "ca83afb7693e442f847e34117c52043e" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 ca83afb7693e442f847e34117c52043e 32 ʃ��i>D/�~4|R> 16 0
Output for 5.6.23
array(1) { [1]=> string(32) "55814266ad1d443f81bf0c1ad371b1a8" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 55814266ad1d443f81bf0c1ad371b1a8 32 U�Bf�D?�� �q�� 16 0
Output for 5.6.22
array(1) { [1]=> string(32) "27fa460278f840198cf8839c1d6f244c" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 27fa460278f840198cf8839c1d6f244c 32 '�Fx�@����o$L 16 0
Output for 5.6.21
array(1) { [1]=> string(32) "a554ebf307904fcebdd2e35c1219cf56" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 a554ebf307904fcebdd2e35c1219cf56 32 �T���O�\�V 16 0
Output for 5.6.20
array(1) { [1]=> string(32) "73248a15f7604770939a0bf7f762b19c" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 73248a15f7604770939a0bf7f762b19c 32 s$��`Gp�� ��b�� 16 0
Output for 5.6.19
array(1) { [1]=> string(32) "58456b35b25040fea34fb3e5764448fb" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 58456b35b25040fea34fb3e5764448fb 32 XEk5�P@��O��vDH� 16 0
Output for 5.6.18
array(1) { [1]=> string(32) "523c7398648c42a8bebf8bd58872979e" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 523c7398648c42a8bebf8bd58872979e 32 R<s�d�B����Ոr�� 16 0
Output for 5.6.17
array(1) { [1]=> string(32) "7e3530d12e624d04b7a99bc461ae9aef" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 7e3530d12e624d04b7a99bc461ae9aef 32 ~50�.bM����a��� 16 0
Output for 5.6.16
array(1) { [1]=> string(32) "166f1dfc809d4c548ea22e4ed62d56f8" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 166f1dfc809d4c548ea22e4ed62d56f8 32 o���LT��.N�-V� 16 0
Output for 5.6.15
array(1) { [1]=> string(32) "fdc72754885e4dc2add67d5abc990a1a" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 fdc72754885e4dc2add67d5abc990a1a 32 ��'T�^M­�}Z��  16 0
Output for 5.6.14
array(1) { [1]=> string(32) "c6a7d184a4fe421db3f97c98db7cdf2b" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 c6a7d184a4fe421db3f97c98db7cdf2b 32 Ƨф��B��|��|�+ 16 0
Output for 5.6.13
array(1) { [1]=> string(32) "443d0f9e5e2e4549ad98d37a45652eae" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 443d0f9e5e2e4549ad98d37a45652eae 32 D=�^.EI���zEe.� 16 0
Output for 5.6.12
array(1) { [1]=> string(32) "ae74c99bb71d41ada8ff7a5334a333d4" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 ae74c99bb71d41ada8ff7a5334a333d4 32 �tɛ�A���zS4�3� 16 0
Output for 5.6.11
array(1) { [1]=> string(32) "c4a02838c14f4178872c4a4cc7233a05" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 c4a02838c14f4178872c4a4cc7233a05 32 Ġ(8�OAx�,JL�#: 16 0
Output for 5.6.10
array(1) { [1]=> string(32) "68524278e01b4bf2ab6457f4c33691e7" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 68524278e01b4bf2ab6457f4c33691e7 32 hRBx�K�dW��6�� 16 0
Output for 5.6.9
array(1) { [1]=> string(32) "1a22edb7195c481795b06142426509fd" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 1a22edb7195c481795b06142426509fd 32 "�\H��aBBe � 16 0
Output for 5.6.8
array(1) { [1]=> string(32) "4296106104534b70910155bb98152bc1" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 4296106104534b70910155bb98152bc1 32 B�aSKp�U��+� 16 0
Output for 5.6.7
array(1) { [1]=> string(32) "707d5228247841f4ab684b83cd538d6d" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 707d5228247841f4ab684b83cd538d6d 32 p}R($xA�hK��S�m 16 0
Output for 5.6.6
array(1) { [1]=> string(32) "3e1f51ec963349338311183229011129" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 3e1f51ec963349338311183229011129 32 >Q�3I3�2)) 16 0
Output for 5.6.5
array(1) { [1]=> string(32) "2c0ec4fcb5d5413cb24d1610030417b5" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 2c0ec4fcb5d5413cb24d1610030417b5 32 ,���A<�M� 16 0
Output for 5.6.4
array(1) { [1]=> string(32) "deb87a048c9c49a0840b03617d8a8131" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 deb87a048c9c49a0840b03617d8a8131 32 ޸z��I�� a}��1 16 0
Output for 5.6.3
array(1) { [1]=> string(32) "b97fd82c8bef4267966e0014f4a2111f" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 b97fd82c8bef4267966e0014f4a2111f 32 ��,��Bg�n� 16 0
Output for 5.6.2
array(1) { [1]=> string(32) "df3a8186d53f474581207c4351c73b63" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 df3a8186d53f474581207c4351c73b63 32 �:���?GE� |CQ�;c 16 0
Output for 5.6.1
array(1) { [1]=> string(32) "edd85ca338454b6c883560042f13b938" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 edd85ca338454b6c883560042f13b938 32 ��\�8EKl�5`/�8 16 0
Output for 5.6.0
array(1) { [1]=> string(32) "82f106dd706a4c18aac84ecf69d582cc" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 82f106dd706a4c18aac84ecf69d582cc 32 ���pjL��N�iՂ� 16 0
Output for 5.5.38
array(1) { [1]=> string(32) "8e090c4cecb54c96887f9aa07074bbff" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 8e090c4cecb54c96887f9aa07074bbff 32 � L�L����pt�� 16 0
Output for 5.5.37
array(1) { [1]=> string(32) "c609a7d96dee464194a5110b50d0f470" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 c609a7d96dee464194a5110b50d0f470 32 � ��m�FA�� P��p 16 0
Output for 5.5.36
array(1) { [1]=> string(32) "11cb7a407fcb4925a7ac12c1b27748e4" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 11cb7a407fcb4925a7ac12c1b27748e4 32 �z@�I%����wH� 16 0
Output for 5.5.35
array(1) { [1]=> string(32) "8c9949012f964bd7a02082cf6baddaf8" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 8c9949012f964bd7a02082cf6baddaf8 32 ��I/�Kנ ��k�� 16 0
Output for 5.5.34
array(1) { [1]=> string(32) "ca3c9f1fd4de4094844cdaf1759260ec" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 ca3c9f1fd4de4094844cdaf1759260ec 32 �<���@��L��u�`� 16 0
Output for 5.5.33
array(1) { [1]=> string(32) "bf694af139c147848bc6633e148bc7a2" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 bf694af139c147848bc6633e148bc7a2 32 �iJ�9�G���c>�Ǣ 16 0
Output for 5.5.32
array(1) { [1]=> string(32) "936588d14e724d1aaaa18c43e03965af" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 936588d14e724d1aaaa18c43e03965af 32 �e��NrM���C�9e� 16 0
Output for 5.5.31
array(1) { [1]=> string(32) "826fcea166754321b4bdc719f9f6f7ba" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 826fcea166754321b4bdc719f9f6f7ba 32 �oΡfuC!������� 16 0
Output for 5.5.30
array(1) { [1]=> string(32) "8fa905d06631400591ff7d7089eb9082" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 8fa905d06631400591ff7d7089eb9082 32 ���f1@��}p�됂 16 0
Output for 5.5.29
array(1) { [1]=> string(32) "f84cb45ff33049c89611f8f9027c02e1" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 f84cb45ff33049c89611f8f9027c02e1 32 �L�_�0IȖ��|� 16 0
Output for 5.5.28
array(1) { [1]=> string(32) "7d1c9cfdcf53460b903bdb1975b69477" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 7d1c9cfdcf53460b903bdb1975b69477 32 }���SF �;�u��w 16 0
Output for 5.5.27
array(1) { [1]=> string(32) "dcfb51a4468f4404ba3a2908eaffabee" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 dcfb51a4468f4404ba3a2908eaffabee 32 �Q�F�D�:)�� 16 0
Output for 5.5.26
array(1) { [1]=> string(32) "ec4f36673a21401a96ad044d0b4a4966" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 ec4f36673a21401a96ad044d0b4a4966 32 �O6g:!@��M JIf 16 0
Output for 5.5.25
array(1) { [1]=> string(32) "fc0b043942114465a90f5325e202b259" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 fc0b043942114465a90f5325e202b259 32 � 9BDe�S%��Y 16 0
Output for 5.5.24
array(1) { [1]=> string(32) "4f4b55e8f0164e269652113ea5813ff6" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 4f4b55e8f0164e269652113ea5813ff6 32 OKU��N&�R>��?� 16 0
Output for 5.5.23
array(1) { [1]=> string(32) "0e04966ed65f4fa08b80c799002d3e35" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 0e04966ed65f4fa08b80c799002d3e35 32 �n�_O���Ǚ->5 16 0
Output for 5.5.22
array(1) { [1]=> string(32) "d39c864e52e8440d8b586a4ca2895110" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 d39c864e52e8440d8b586a4ca2895110 32 Ӝ�NR�D �XjL��Q 16 0
Output for 5.5.21
array(1) { [1]=> string(32) "cd8fe922ed3f41c6af4daac4884ade82" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 cd8fe922ed3f41c6af4daac4884ade82 32 ͏�"�?AƯM�ĈJނ 16 0
Output for 5.5.20
array(1) { [1]=> string(32) "e5a645bcbcbb43b2a9be344f0639e4d5" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 e5a645bcbcbb43b2a9be344f0639e4d5 32 �E���C���4O9�� 16 0
Output for 5.5.19
array(1) { [1]=> string(32) "e0622c8deeda414fb29f8ece0c04b90f" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 e0622c8deeda414fb29f8ece0c04b90f 32 �b,���AO���� � 16 0
Output for 5.5.18
array(1) { [1]=> string(32) "a0df0d5cfd52409f8f9f835b89981111" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 a0df0d5cfd52409f8f9f835b89981111 32 �� \�R@����[�� 16 0
Output for 5.5.16
array(1) { [1]=> string(32) "66e22e9be3eb411995d229f875cfe89e" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 66e22e9be3eb411995d229f875cfe89e 32 f�.���A��)�u�� 16 0
Output for 5.5.15
array(1) { [1]=> string(32) "9b11e46aab2749fabf8e807593508a62" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 9b11e46aab2749fabf8e807593508a62 32 ��j�'I����u�P�b 16 0
Output for 5.5.14
array(1) { [1]=> string(32) "c85f1743ed71436a80a90f4e0a39ff58" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 c85f1743ed71436a80a90f4e0a39ff58 32 �_C�qCj��N 9�X 16 0
Output for 5.5.13
array(1) { [1]=> string(32) "1dcb06ba8c874f9a8d645a9b6e8d1edf" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 1dcb06ba8c874f9a8d645a9b6e8d1edf 32 ����O��dZ�n�� 16 0
Output for 5.5.12
array(1) { [1]=> string(32) "0a5e20081f6c4d03a1f00a09d5d5d950" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 0a5e20081f6c4d03a1f00a09d5d5d950 32 ^ lM�� ���P 16 0
Output for 5.5.11
array(1) { [1]=> string(32) "0d7e5ad6692b4436867b080d14a1cab9" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 0d7e5ad6692b4436867b080d14a1cab9 32 ~Z�i+D6�{ �ʹ 16 0
Output for 5.5.10
array(1) { [1]=> string(32) "5fb634a417df4a2698c879e81a610655" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 5fb634a417df4a2698c879e81a610655 32 _�4��J&��y�aU 16 0
Output for 5.5.9
array(1) { [1]=> string(32) "82af7542decd402b9fcbf4a0cf4f8052" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 82af7542decd402b9fcbf4a0cf4f8052 32 ��uB��@+����O�R 16 0
Output for 5.5.8
array(1) { [1]=> string(32) "9ddefd4dfe46486d9b3c302b5ea06964" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 9ddefd4dfe46486d9b3c302b5ea06964 32 ��M�FHm�<0+^�id 16 0
Output for 5.5.7
array(1) { [1]=> string(32) "e3c66dd11e754663969229078850333e" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 e3c66dd11e754663969229078850333e 32 ��m�uFc��)�P3> 16 0
Output for 5.5.6
array(1) { [1]=> string(32) "41b55a3fd9734f87b3053d2323263fa9" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 41b55a3fd9734f87b3053d2323263fa9 32 A�Z?�sO��=##&?� 16 0
Output for 5.5.5
array(1) { [1]=> string(32) "ed6dd9c905954158ac1fbecf4616b776" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 ed6dd9c905954158ac1fbecf4616b776 32 �m���AX���F�v 16 0
Output for 5.5.4
array(1) { [1]=> string(32) "d3a9586650f64241ab0cf49651d482cc" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 d3a9586650f64241ab0cf49651d482cc 32 өXfP�BA� �QԂ� 16 0
Output for 5.5.3
array(1) { [1]=> string(32) "830c905337844836914596c42c7cc7cb" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 830c905337844836914596c42c7cc7cb 32 � �S7�H6�E��,|�� 16 0
Output for 5.5.2
array(1) { [1]=> string(32) "cf04ff14fcd24cc4b490b2955ee57e00" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 cf04ff14fcd24cc4b490b2955ee57e00 32 ����LĴ���^�~ 16 0
Output for 5.5.1
array(1) { [1]=> string(32) "f540286b24464627939826d708b373ca" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 f540286b24464627939826d708b373ca 32 �@(k$FF'��&��s� 16 0
Output for 5.5.0
array(1) { [1]=> string(32) "146ba8f869094a59a4892c143e07e09a" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 146ba8f869094a59a4892c143e07e09a 32 k��i JY��,>� 16 0
Output for 5.4.45
array(1) { [1]=> string(32) "ae56987aa3544d099c3face42d780c8f" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 ae56987aa3544d099c3face42d780c8f 32 �V�z�TM �?��-x � 16 0
Output for 5.4.44
array(1) { [1]=> string(32) "3b768ae13364408e8532667c3d48b786" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 3b768ae13364408e8532667c3d48b786 32 ;v��3d@��2f|=H�� 16 0
Output for 5.4.43
array(1) { [1]=> string(32) "0aae94ca5d1f420ba444e791a33db2ea" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 0aae94ca5d1f420ba444e791a33db2ea 32 ���]B �D瑣=�� 16 0
Output for 5.4.42
array(1) { [1]=> string(32) "e8fabb6f82224d26a501de0fcb761936" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 e8fabb6f82224d26a501de0fcb761936 32 �o�"M&���v6 16 0
Output for 5.4.41
array(1) { [1]=> string(32) "70d97da114234b4098dbf47fb7472154" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 70d97da114234b4098dbf47fb7472154 32 p�}�#K@����G!T 16 0
Output for 5.4.40
array(1) { [1]=> string(32) "f9739c39f5eb434ea9e767431af11ebb" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 f9739c39f5eb434ea9e767431af11ebb 32 �s�9��CN��gC�� 16 0
Output for 5.4.39
array(1) { [1]=> string(32) "e7800ba062a54bb7bb5d31493fdc67f5" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 e7800ba062a54bb7bb5d31493fdc67f5 32 � �b�K��]1I?�g� 16 0
Output for 5.4.38
array(1) { [1]=> string(32) "ee14e002898d4a25961aaba6e5377141" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 ee14e002898d4a25961aaba6e5377141 32 ����J%����7qA 16 0
Output for 5.4.37
array(1) { [1]=> string(32) "0bbe55508a4241e7b596cb1001194260" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 0bbe55508a4241e7b596cb1001194260 32 �UP�BA絖�B` 16 0
Output for 5.4.36
array(1) { [1]=> string(32) "183d3a9339c64b5fa6e18c73031a11bd" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 183d3a9339c64b5fa6e18c73031a11bd 32 =:�9�K_��s� 16 0
Output for 5.4.35
array(1) { [1]=> string(32) "0877309ba7ec4b3bb0dcfe33d8af9fc7" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 0877309ba7ec4b3bb0dcfe33d8af9fc7 32 w0���K;��3د�� 16 0
Output for 5.4.34
array(1) { [1]=> string(32) "0ae46f084cc949c08fffc9f158a8fd2e" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 0ae46f084cc949c08fffc9f158a8fd2e 32 �oL�I�����X��. 16 0
Output for 5.4.32
array(1) { [1]=> string(32) "f754877a596d4b1386e90277fb52bf76" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 f754877a596d4b1386e90277fb52bf76 32 �T�zYmK��w�R�v 16 0
Output for 5.4.31
array(1) { [1]=> string(32) "540fbdc400c64e0aaf752dcbeed3124f" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 540fbdc400c64e0aaf752dcbeed3124f 32 T���N �u-���O 16 0
Output for 5.4.30
array(1) { [1]=> string(32) "2ee26962fe41457b99828d97251b91c2" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 2ee26962fe41457b99828d97251b91c2 32 .�ib�AE{����%�� 16 0
Output for 5.4.29
array(1) { [1]=> string(32) "9b841c78e1a740029a5ad1bc154d647d" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 9b841c78e1a740029a5ad1bc154d647d 32 ��x�@�ZѼMd} 16 0
Output for 5.4.28
array(1) { [1]=> string(32) "cedc1be572de45e9a663651af02e125a" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 cedc1be572de45e9a663651af02e125a 32 ���r�E�ce�.Z 16 0
Output for 5.4.27
array(1) { [1]=> string(32) "f5597360658a44199e5be52b305482fe" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 f5597360658a44199e5be52b305482fe 32 �Ys`e�D�[�+0T�� 16 0
Output for 5.4.26
array(1) { [1]=> string(32) "4449ebf9c62d48f7830dc0a780d0b1f3" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 4449ebf9c62d48f7830dc0a780d0b1f3 32 DI��-H�� ���б� 16 0
Output for 5.4.25
array(1) { [1]=> string(32) "ad58e2d3e878454a88e703b695dd5631" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 ad58e2d3e878454a88e703b695dd5631 32 �X���xEJ�����V1 16 0
Output for 5.4.24
array(1) { [1]=> string(32) "12cafd78ae884063b1d9fcdbe12efc98" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 12cafd78ae884063b1d9fcdbe12efc98 32 �x��@c����.�� 16 0
Output for 5.4.23
array(1) { [1]=> string(32) "eba6cefe5df34366b3309de7ddf97cc8" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 eba6cefe5df34366b3309de7ddf97cc8 32 ��]�Cf�0���|� 16 0
Output for 5.4.22
array(1) { [1]=> string(32) "56d2ef053d9e427ab9fc60328cacd268" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 56d2ef053d9e427ab9fc60328cacd268 32 V��=�Bz��`2���h 16 0
Output for 5.4.21
array(1) { [1]=> string(32) "fc910ca11c954d348ed5aaafbb48c529" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 fc910ca11c954d348ed5aaafbb48c529 32 �� ��M4�ժ��H�) 16 0
Output for 5.4.20
array(1) { [1]=> string(32) "cb828afd1fab4065a39b35e2f05b01b0" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 cb828afd1fab4065a39b35e2f05b01b0 32 ˂���@e��5��[� 16 0
Output for 5.4.19
array(1) { [1]=> string(32) "37a174e591a24e05ae8d807e6bc80f5e" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 37a174e591a24e05ae8d807e6bc80f5e 32 7�t呢N���~k�^ 16 0
Output for 5.4.18
array(1) { [1]=> string(32) "e3121def0379436a82b716777d942b99" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 e3121def0379436a82b716777d942b99 32 ��yCj��w}�+� 16 0
Output for 5.4.17
array(1) { [1]=> string(32) "fc11968b93a046df9ae2bfa6e8339e06" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 fc11968b93a046df9ae2bfa6e8339e06 32 �����Fߚ⿦�3� 16 0
Output for 5.4.16
array(1) { [1]=> string(32) "55469cf3f3304d9fbfc9355f7a9c8c7b" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 55469cf3f3304d9fbfc9355f7a9c8c7b 32 UF���0M���5_z��{ 16 0
Output for 5.4.15
array(1) { [1]=> string(32) "d444eebf63214c7c92b90cef4ace16a1" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 d444eebf63214c7c92b90cef4ace16a1 32 �D�c!L|�� �J�� 16 0
Output for 5.4.14
array(1) { [1]=> string(32) "f08bb4f2f0c641198981d6d74cc5e7c0" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 f08bb4f2f0c641198981d6d74cc5e7c0 32 ����A����L�� 16 0
Output for 5.4.13
array(1) { [1]=> string(32) "009593a345f24c0f9e7bb1a56f66ae72" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 009593a345f24c0f9e7bb1a56f66ae72 32 ���E�L�{��of�r 16 0
Output for 5.4.12
array(1) { [1]=> string(32) "e557bfda8109448b821fa40ce7ceb29d" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 e557bfda8109448b821fa40ce7ceb29d 32 �W�ځ D��� �β� 16 0
Output for 5.4.11
array(1) { [1]=> string(32) "212ab91a1b4148a9aeb3a8f75fa54080" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 212ab91a1b4148a9aeb3a8f75fa54080 32 !*�AH�����_�@� 16 0
Output for 5.4.10
array(1) { [1]=> string(32) "0c53a5a83ecf4a168d44ca16d66ea244" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 0c53a5a83ecf4a168d44ca16d66ea244 32 S��>�J�D��n�D 16 0
Output for 5.4.9
array(1) { [1]=> string(32) "4fe8238e5f1540038cf1b21d6480fa27" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 4fe8238e5f1540038cf1b21d6480fa27 32 O�#�_@��d��' 16 0
Output for 5.4.8
array(1) { [1]=> string(32) "8ca6214477a64591a8895960eaeeef05" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 8ca6214477a64591a8895960eaeeef05 32 ��!Dw�E���Y`��� 16 0
Output for 5.4.7
array(1) { [1]=> string(32) "111c90a782e245a4ab09e1da76b79797" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 111c90a782e245a4ab09e1da76b79797 32 ����E�� ��v��� 16 0
Output for 5.4.6
array(1) { [1]=> string(32) "61a6ab343f24404aa50cb4b7a569ed3b" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 61a6ab343f24404aa50cb4b7a569ed3b 32 a��4?$@J� ���i�; 16 0
Output for 5.4.5
array(1) { [1]=> string(32) "b77aefd079ac46108eb1d075fe58b884" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 b77aefd079ac46108eb1d075fe58b884 32 �z��y�F���u�X�� 16 0
Output for 5.4.4
array(1) { [1]=> string(32) "1ab93515fbce4e54ac65d24c658ca9de" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 1ab93515fbce4e54ac65d24c658ca9de 32 �5��NT�e�Le��� 16 0
Output for 5.4.3
array(1) { [1]=> string(32) "add75defc3c44ca18af6765356360f89" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 add75defc3c44ca18af6765356360f89 32 ��]���L���vSV6� 16 0
Output for 5.4.2
array(1) { [1]=> string(32) "1088fca34e7b426bb40b72d575281c6c" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 1088fca34e7b426bb40b72d575281c6c 32 ���N{Bk� r�u(l 16 0
Output for 5.4.1
array(1) { [1]=> string(32) "cd2bd142784b42a99bfbb63b90b7fb0e" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 cd2bd142784b42a99bfbb63b90b7fb0e 32 �+�BxKB����;��� 16 0
Output for 5.4.0
array(1) { [1]=> string(32) "1559658c9820481ba4c81d9433ae5acd" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 1559658c9820481ba4c81d9433ae5acd 32 Ye�� H���3�Z� 16 0
Output for 5.3.29
array(1) { [1]=> string(32) "9ac979cf737943e699c9c1724e21e732" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 9ac979cf737943e699c9c1724e21e732 32 ��y�syC��rN!�2 16 0
Output for 5.3.28
array(1) { [1]=> string(32) "ee41ec2e1623435a9690b21c106ccaf8" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 ee41ec2e1623435a9690b21c106ccaf8 32 �A�.#CZ���l� 16 0
Output for 5.3.27
array(1) { [1]=> string(32) "0370e40f264844ea9df3edde8ade578d" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 0370e40f264844ea9df3edde8ade578d 32 p�&HD���ފ�W� 16 0
Output for 5.3.26
array(1) { [1]=> string(32) "fc216889b7cf431d9a4e70d3fd00fe82" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 fc216889b7cf431d9a4e70d3fd00fe82 32 �!h���C�Np��� 16 0
Output for 5.3.25
array(1) { [1]=> string(32) "a76cca982e2243b295e55a75c34eede8" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 a76cca982e2243b295e55a75c34eede8 32 �lʘ."C���Zu�N�� 16 0
Output for 5.3.24
array(1) { [1]=> string(32) "89bcb37ae30f47ea9a2d7425584de12f" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 89bcb37ae30f47ea9a2d7425584de12f 32 ���z�G�-t%XM�/ 16 0
Output for 5.3.23
array(1) { [1]=> string(32) "92bfed624ae9447fafdd42250a75bae2" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 92bfed624ae9447fafdd42250a75bae2 32 ���bJ�D��B% u�� 16 0
Output for 5.3.22
array(1) { [1]=> string(32) "02e91989726f4550ae33b3867d282c04" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 02e91989726f4550ae33b3867d282c04 32 ��roEP�3��}(, 16 0
Output for 5.3.21
array(1) { [1]=> string(32) "ba14b0a92c564cf7964ba55275fd95d1" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 ba14b0a92c564cf7964ba55275fd95d1 32 ���,VL��K�Ru��� 16 0
Output for 5.3.20
array(1) { [1]=> string(32) "675d53048ae645a581eb05247c5ba683" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 675d53048ae645a581eb05247c5ba683 32 g]S��E���$|[�� 16 0
Output for 5.3.19
array(1) { [1]=> string(32) "c470e467940147a3a22e4d17b51d44fc" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 c470e467940147a3a22e4d17b51d44fc 32 �p�g�G��.M�D� 16 0
Output for 5.3.18
array(1) { [1]=> string(32) "47daf3382f4542bd8e4758fb86de5542" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 47daf3382f4542bd8e4758fb86de5542 32 G��8/EB��GX���UB 16 0
Output for 5.3.17
array(1) { [1]=> string(32) "cfd9648250a748f2857471252048343c" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 cfd9648250a748f2857471252048343c 32 ��d�P�H�tq% H4< 16 0
Output for 5.3.16
array(1) { [1]=> string(32) "0bda5cc81afb4dc89efd516a72c469b4" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 0bda5cc81afb4dc89efd516a72c469b4 32 �\��MȞ�Qjr�i� 16 0
Output for 5.3.15
array(1) { [1]=> string(32) "29b2a21574594020931f565ce849559f" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 29b2a21574594020931f565ce849559f 32 )��tY@ �V\�IU� 16 0
Output for 5.3.14
array(1) { [1]=> string(32) "e874a4b319384b7fba67eda3be6f3ba5" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 e874a4b319384b7fba67eda3be6f3ba5 32 �t��8K�g�o;� 16 0
Output for 5.3.13
array(1) { [1]=> string(32) "216b112940934245b4b3f3da9d2d4348" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 216b112940934245b4b3f3da9d2d4348 32 !k)@�BE���ڝ-CH 16 0
Output for 5.3.12
array(1) { [1]=> string(32) "a369c4e6148349b7af6331d5d2e72599" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 a369c4e6148349b7af6331d5d2e72599 32 �i���I��c1���%� 16 0
Output for 5.3.11
array(1) { [1]=> string(32) "851ba5c256c345f7a6594bdc104456ff" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 851ba5c256c345f7a6594bdc104456ff 32 ���V�E��YK�DV� 16 0
Output for 5.3.10
array(1) { [1]=> string(32) "1b2c39b49df641199ee6d2de87001114" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 1b2c39b49df641199ee6d2de87001114 32 ,9���A���އ 16 0
Output for 5.3.9
array(1) { [1]=> string(32) "45902c2b06fd490b99550135ca2b1cc0" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 45902c2b06fd490b99550135ca2b1cc0 32 E�,+�I �U5�+� 16 0
Output for 5.3.8
array(1) { [1]=> string(32) "465b44bc173e42eaab40510a183f7da8" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 465b44bc173e42eaab40510a183f7da8 32 F[D�>B�@Q ?}� 16 0
Output for 5.3.7
array(1) { [1]=> string(32) "df26353a20b24b5798a563dc92265c04" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 df26353a20b24b5798a563dc92265c04 32 �&5: �KW��cܒ&\ 16 0
Output for 5.3.6
array(1) { [1]=> string(32) "95eb5dbbe328435a8eeda024e99d49e9" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 95eb5dbbe328435a8eeda024e99d49e9 32 ��]��(CZ��$�I� 16 0
Output for 5.3.5
array(1) { [1]=> string(32) "ee0c23525b4647e8b440b371106e1491" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 ee0c23525b4647e8b440b371106e1491 32 � #R[FG�@�qn� 16 0
Output for 5.3.4
array(1) { [1]=> string(32) "1d513a8e828349b8bd86e12ef99fc162" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 1d513a8e828349b8bd86e12ef99fc162 32 Q:���I����.���b 16 0
Output for 5.3.3
array(1) { [1]=> string(32) "ce54e763479d4152b7ccb1f8d3f9a398" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 ce54e763479d4152b7ccb1f8d3f9a398 32 �T�cG�AR�̱���� 16 0
Output for 5.3.2
array(1) { [1]=> string(32) "f8cfb917771747e3bef793b0ba4ec037" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 f8cfb917771747e3bef793b0ba4ec037 32 �ϹwG����N�7 16 0
Output for 5.3.1
array(1) { [1]=> string(32) "ee7c67c7ad8a482182a962176e4f7b4c" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 ee7c67c7ad8a482182a962176e4f7b4c 32 �|gǭ�H!��bnO{L 16 0
Output for 5.3.0
array(1) { [1]=> string(32) "a1751d0b45eb4a92a4bfa5721a8b82a9" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 a1751d0b45eb4a92a4bfa5721a8b82a9 32 �u E�J����r��� 16 0
Output for 5.2.17
array(1) { [1]=> string(32) "175cd86d96674df0b240d602e1b355e4" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 175cd86d96674df0b240d602e1b355e4 32 \�m�gM�@��U� 16 0
Output for 5.2.16
array(1) { [1]=> string(32) "2341affb6bb94648b0c615720713213c" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 2341affb6bb94648b0c615720713213c 32 #A��k�FH��r!< 16 0
Output for 5.2.15
array(1) { [1]=> string(32) "5ccaa9d2a5b040b0bf61638ef6b1847b" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 5ccaa9d2a5b040b0bf61638ef6b1847b 32 \ʩҥ�@��ac����{ 16 0
Output for 5.2.14
array(1) { [1]=> string(32) "eeae707ab4d246b9b8f90a136ba792f6" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 eeae707ab4d246b9b8f90a136ba792f6 32 �pz��F��� k��� 16 0
Output for 5.2.13
array(1) { [1]=> string(32) "4d95ca73f50f4497824a415bb39c66e4" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 4d95ca73f50f4497824a415bb39c66e4 32 M��s�D��JA[��f� 16 0
Output for 5.2.12
array(1) { [1]=> string(32) "0f01b54f1a7f43bdbe7e848702d33b45" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 0f01b54f1a7f43bdbe7e848702d33b45 32 �OC��~���;E 16 0
Output for 5.2.11
array(1) { [1]=> string(32) "c1b32a5a1f9d47efb76d7f33d58e3460" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 c1b32a5a1f9d47efb76d7f33d58e3460 32 ��*Z�G�m3Վ4` 16 0
Output for 5.2.10
array(1) { [1]=> string(32) "1f837c753d2e4c84b7ee7322084bd13b" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 1f837c753d2e4c84b7ee7322084bd13b 32 �|u=.L���s"K�; 16 0
Output for 5.2.9
array(1) { [1]=> string(32) "8aa9017f46454c66a0d835a0155b3b25" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 8aa9017f46454c66a0d835a0155b3b25 32 ��FELf��5�[;% 16 0
Output for 5.2.8
array(1) { [1]=> string(32) "ce835f5337444323b1aecf4703f6ff5a" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 ce835f5337444323b1aecf4703f6ff5a 32 ΃_S7DC#���G��Z 16 0
Output for 5.2.7
array(1) { [1]=> string(32) "25d505d94a0a4db39d504aa51544ce07" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 25d505d94a0a4db39d504aa51544ce07 32 %��J M��PJ�D� 16 0
Output for 5.2.6
array(1) { [1]=> string(32) "6eded92a0b46428a81869ff37fde53e4" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 6eded92a0b46428a81869ff37fde53e4 32 n��* FB������S� 16 0
Output for 5.2.5
array(1) { [1]=> string(32) "9151dade768b448ba57dbf401eb90454" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 9151dade768b448ba57dbf401eb90454 32 �Q��v�D��}�@�T 16 0
Output for 5.2.4
array(1) { [1]=> string(32) "9cd27b43db2d44489babc9005a91f943" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 9cd27b43db2d44489babc9005a91f943 32 ��{C�-DH���Z��C 16 0
Output for 5.2.3
array(1) { [1]=> string(32) "ebb1f334eed040d59df295282e1d6b9f" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 ebb1f334eed040d59df295282e1d6b9f 32 ��4��@՝�(.k� 16 0
Output for 5.2.2
array(1) { [1]=> string(32) "a39b63de502d4ae6a392199e08246c93" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 a39b63de502d4ae6a392199e08246c93 32 ��c�P-J棒�$l� 16 0
Output for 5.2.1
array(1) { [1]=> string(32) "1498dd5414274c92add875feded355b7" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 1498dd5414274c92add875feded355b7 32 ��T'L���u���U� 16 0
Output for 5.2.0
array(1) { [1]=> string(32) "ed323613e340427b88b26b39a269395c" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 ed323613e340427b88b26b39a269395c 32 �26�@B{��k9�i9\ 16 0
Output for 5.1.6
array(1) { [1]=> string(32) "3927d81c1f524fd997c24604e110d692" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 3927d81c1f524fd997c24604e110d692 32 9'�ROٗ�F�֒ 16 0
Output for 5.1.5
array(1) { [1]=> string(32) "2fedf99f214a4d69bcec529c2f45d82a" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 2fedf99f214a4d69bcec529c2f45d82a 32 /�!JMi��R�/E�* 16 0
Output for 5.1.4
array(1) { [1]=> string(32) "e9f32fa6bde54ab69c0fbb0c884f05b1" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 e9f32fa6bde54ab69c0fbb0c884f05b1 32 ��/���J��� �O� 16 0
Output for 5.1.3
array(1) { [1]=> string(32) "b0bc199c7fc344438af5b4aae1d6db78" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 b0bc199c7fc344438af5b4aae1d6db78 32 ����DC�������x 16 0
Output for 5.1.2
array(1) { [1]=> string(33) "0dbc184f2df6492991e028f9acc51aad0" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 0dbc184f2df6492991e028f9acc51aad 32 �O-�I)��(���� 16 0
Output for 5.1.1
array(1) { [1]=> string(32) "521d83f5113e4aa4a14fdc65ebfd4449" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 521d83f5113e4aa4a14fdc65ebfd4449 32 R��>J��O�e�DI 16 0
Output for 5.1.0
array(1) { [1]=> string(32) "a5f9dd9966c947f49c1ec2cdd7b90fa3" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 a5f9dd9966c947f49c1ec2cdd7b90fa3 32 ��ݙf�G���׹� 16 0
Output for 5.0.5
array(1) { [1]=> string(32) "49d23f0d6cca47cf82a8a9d2e071584d" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 49d23f0d6cca47cf82a8a9d2e071584d 32 I�? l�G��qXM 16 0
Output for 5.0.4
Warning: unpack(): Type H: outside of string in /in/vSYGm on line 21 array(1) { [1]=> string(32) "b9a3c4f55977451485b6e3617f3040cb" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 b9a3c4f55977451485b6e3617f3040cb 32 ���YwE���a0@� 16 0
Output for 5.0.3
Warning: unpack(): Type H: outside of string in /in/vSYGm on line 21 array(1) { [1]=> string(32) "e4381b5a593b49a6ab2b8337bc53ffbe" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 e4381b5a593b49a6ab2b8337bc53ffbe 32 �8ZY;I��+�7�S�� 16 0
Output for 5.0.2
array(1) { [1]=> string(32) "ffebfedc0d924f548ada6052d02dc790" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 ffebfedc0d924f548ada6052d02dc790 32 ��� �OT��`R�-ǐ 16 0
Output for 5.0.1
array(1) { [1]=> string(32) "bc37e2513ecc4d19b93ead98936430d2" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 25 bc37e2513ecc4d19b93ead98936430d2PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 26 32PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 27 �7�Q>�M�>���d0�PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 28 16PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 29 PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 30 0PHP_EOL
Output for 5.0.0
array(1) { [1]=> string(32) "869f6e051063498cb491c2feb41bcd8c" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 25 869f6e051063498cb491c2feb41bcd8cPHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 26 32PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 27 ��ncI�����͌PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 28 16PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 29 PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 30 0PHP_EOL
Output for 4.4.9
array(1) { [1]=> string(32) "8012228c3ba84c479f31072d18a6dfe6" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 8012228c3ba84c479f31072d18a6dfe6 32 �"�;�LG�1-��� 16 0
Output for 4.4.8
array(1) { [1]=> string(32) "0e79a6ec3990408a94d9fb4647cdc862" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 0e79a6ec3990408a94d9fb4647cdc862 32 y��9�@���FG��b 16 0
Output for 4.4.7
array(1) { [1]=> string(32) "63dad738b22a4bcd83db006ea726fa7f" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 63dad738b22a4bcd83db006ea726fa7f 32 c��8�*K̓�n�&� 16 0
Output for 4.4.6
array(1) { [1]=> string(32) "b8a295161d794f4bada6f17df8c98113" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 b8a295161d794f4bada6f17df8c98113 32 ���yOK���}�Ɂ 16 0
Output for 4.4.5
array(1) { [1]=> string(32) "c625cae45ff34b79a336f6119931e209" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 c625cae45ff34b79a336f6119931e209 32 �%��_�Ky�6��1� 16 0
Output for 4.4.4
array(1) { [1]=> string(32) "8bca676aa5f34c1c854fd3561f6c46df" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 8bca676aa5f34c1c854fd3561f6c46df 32 ��gj��L�O�VlF� 16 0
Output for 4.4.3
array(1) { [1]=> string(32) "b4a456f763f74b0da4890ac1b77b489a" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 b4a456f763f74b0da4890ac1b77b489a 32 ��V�c�K �� ��{H� 16 0
Output for 4.4.2
array(1) { [1]=> string(33) "7e6f8e9336e54266bd356ba6796decf10" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 7e6f8e9336e54266bd356ba6796decf1 32 ~o��6�Bf�5k�ym�� 16 0
Output for 4.4.1
array(1) { [1]=> string(32) "11f8f6e980a348619bf340b9e88d919b" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 11f8f6e980a348619bf340b9e88d919b 32 ��連Ha��@�荑� 16 0
Output for 4.4.0
array(1) { [1]=> string(32) "bc9eac249614416d9cc5d7b4efdc0648" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 bc9eac249614416d9cc5d7b4efdc0648 32 ���$�Am��״��H 16 0
Output for 4.3.11
array(1) { [1]=> string(32) "b9d92bf6a2a94b60822680751cbec1fd" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 b9d92bf6a2a94b60822680751cbec1fd 32 ��+���K`�&�u��� 16 0
Output for 4.3.10
Warning: unpack(): Type H: outside of string in /in/vSYGm on line 21 array(1) { [1]=> string(32) "c26d557c0a3b4667bdeec77951e134bf" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 c26d557c0a3b4667bdeec77951e134bf 32 �mU| ;Fg���yQ�4� 16 0
Output for 4.3.9
array(1) { [1]=> string(32) "57f975fb2e334b1f85fa0407079e3a6a" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 25 57f975fb2e334b1f85fa0407079e3a6aPHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 26 32PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 27 W�u�.3K���:jPHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 28 16PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 29 PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 30 0PHP_EOL
Output for 4.3.8
array(1) { [1]=> string(32) "7c9cf5fa8a7a4861959ee151e17f9632" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 25 7c9cf5fa8a7a4861959ee151e17f9632PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 26 32PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 27 |����zHa���Q��2PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 28 16PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 29 PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 30 0PHP_EOL
Output for 4.3.7
array(1) { [1]=> string(32) "26b8efd094bb4703a4f1ddd3a8608a98" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 25 26b8efd094bb4703a4f1ddd3a8608a98PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 26 32PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 27 &��Д�G���Ө`��PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 28 16PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 29 PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 30 0PHP_EOL
Output for 4.3.6
array(1) { [1]=> string(32) "33850a4d1acc4babb22c1b3aeaa9add5" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 25 33850a4d1acc4babb22c1b3aeaa9add5PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 26 32PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 27 3� M�K��,:ꩭ�PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 28 16PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 29 PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 30 0PHP_EOL
Output for 4.3.5
array(1) { [1]=> string(32) "066a7fc15c9442b482dbb367e244d008" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 25 066a7fc15c9442b482dbb367e244d008PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 26 32PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 27 j�\�B��۳g�D�PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 28 16PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 29 PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 30 0PHP_EOL
Output for 4.3.4
array(1) { [""]=> string(32) "ac880b0266344571b8bdad0c4cfcd8d5" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 25 ac880b0266344571b8bdad0c4cfcd8d5PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 26 32PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 27 �� f4Eq��� L���PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 28 16PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 29 PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 30 0PHP_EOL
Output for 4.3.3
array(1) { [""]=> string(32) "0cb7448eb2e24e19a231242e2be458c7" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 25 0cb7448eb2e24e19a231242e2be458c7PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 26 32PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 27 �D���N�1$.+�X�PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 28 16PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 29 PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 30 0PHP_EOL
Output for 4.3.2
array(1) { [""]=> string(32) "957307b1d7164efd8a61e8021a949824" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 25 957307b1d7164efd8a61e8021a949824PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 26 32PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 27 �s��N��a���$PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 28 16PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 29 PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 30 0PHP_EOL
Output for 4.3.1
array(1) { [""]=> string(32) "c50b13ae281948b488ca1333884e305f" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 25 c50b13ae281948b488ca1333884e305fPHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 26 32PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 27 � �(H���3�N0_PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 28 16PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 29 PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 30 0PHP_EOL
Output for 4.3.0
array(1) { [""]=> string(32) "2c0c808f54ef4c12873bf65efdffa0f7" } Notice: Undefined offset: 0 in /in/vSYGm on line 23 Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 25 2c0c808f54ef4c12873bf65efdffa0f7PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 26 32PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 27 , ��T�L�;�^����PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 28 16PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 29 PHP_EOL Notice: Use of undefined constant PHP_EOL - assumed 'PHP_EOL' in /in/vSYGm on line 30 0PHP_EOL

preferences:
147.1 ms | 403 KiB | 232 Q