3v4l.org

run code in 300+ PHP versions simultaneously
<?php function strpose_simple($haystack, $needle, $index = 0) { $hlen = strlen($haystack); $nlen = strlen($needle); do { $pos = strpos($haystack, $needle, $index); if ($pos !== false) { $end = $pos+$nlen; if (!isset($haystack[$pos-1]) || !trim($haystack[$pos-1])) { if (!isset($haystack[$end]) || !trim($haystack[$end])) { return $pos; } else $index = $pos+1; } else $index = $pos+1; } } while ($pos !== false && $pos < $hlen); return $pos; } function strpose_slow($haystack, $needle, $offset = 0) { $found = preg_match( '(\b(?:'.preg_quote($needle).')\b)Su', $haystack, $match, PREG_OFFSET_CAPTURE, $offset ); return ($found) ? $match[0][1] : FALSE; } $haystack = "Hello World"; $needles = array( "ll", "Hello", "Worlds" ); foreach (array('strpose_simple', 'strpose_slow') as $function) { $begin = 0; $end = 500000; $start = microtime(true); while ($begin++<$end) { foreach ($needles as $id => $needle) { $function($haystack, $needle); } } printf("%s: %.4f seconds/%d peak\n", $function, microtime(true)-$start, memory_get_usage(true)); }
Output for 7.2.0
strpose_simple: 0.4935 seconds/2097152 peak strpose_slow: 0.8284 seconds/2097152 peak
Output for 7.1.7
strpose_simple: 0.5199 seconds/2097152 peak strpose_slow: 0.6480 seconds/2097152 peak
Output for 7.1.6
strpose_simple: 0.4231 seconds/2097152 peak strpose_slow: 0.6201 seconds/2097152 peak
Output for 7.1.5
strpose_simple: 0.3819 seconds/2097152 peak strpose_slow: 0.6093 seconds/2097152 peak
Output for 7.1.0
strpose_simple: 0.4600 seconds/2097152 peak strpose_slow: 0.6515 seconds/2097152 peak
Output for 7.0.20
strpose_simple: 0.3647 seconds/2097152 peak strpose_slow: 0.6413 seconds/2097152 peak
Output for 7.0.14
strpose_simple: 0.4251 seconds/2097152 peak strpose_slow: 0.6180 seconds/2097152 peak
Output for 7.0.10
strpose_simple: 0.3487 seconds/2097152 peak strpose_slow: 0.6994 seconds/2097152 peak
Output for 7.0.9
strpose_simple: 0.3394 seconds/2097152 peak strpose_slow: 0.7129 seconds/2097152 peak
Output for 7.0.8
strpose_simple: 0.3492 seconds/2097152 peak strpose_slow: 0.7857 seconds/2097152 peak
Output for 7.0.7
strpose_simple: 0.3719 seconds/2097152 peak strpose_slow: 0.7620 seconds/2097152 peak
Output for 7.0.6
strpose_simple: 0.3138 seconds/2097152 peak strpose_slow: 0.6633 seconds/2097152 peak
Output for 7.0.5
strpose_simple: 0.3366 seconds/2097152 peak strpose_slow: 0.7356 seconds/2097152 peak
Output for 7.0.4
strpose_simple: 0.4261 seconds/2097152 peak strpose_slow: 0.7883 seconds/2097152 peak
Output for 7.0.3
strpose_simple: 0.3448 seconds/2097152 peak strpose_slow: 0.7425 seconds/2097152 peak
Output for 7.0.2
strpose_simple: 0.4096 seconds/2097152 peak strpose_slow: 0.7712 seconds/2097152 peak
Output for 7.0.1
strpose_simple: 0.4051 seconds/2097152 peak strpose_slow: 0.7816 seconds/2097152 peak
Output for 7.0.0
strpose_simple: 0.3334 seconds/2097152 peak strpose_slow: 0.6685 seconds/2097152 peak
Output for 5.6.28
strpose_simple: 1.3186 seconds/262144 peak
Process exited with code 137.
Output for 5.6.25
strpose_simple: 0.9840 seconds/262144 peak strpose_slow: 1.2201 seconds/262144 peak
Output for 5.6.24
strpose_simple: 1.0710 seconds/262144 peak
Process exited with code 137.
Output for 5.6.23
strpose_simple: 0.8773 seconds/262144 peak strpose_slow: 1.2453 seconds/262144 peak
Output for 5.6.22
strpose_simple: 1.0707 seconds/262144 peak
Process exited with code 137.
Output for 5.6.21
strpose_simple: 0.9656 seconds/262144 peak strpose_slow: 1.2294 seconds/262144 peak
Output for 5.6.20
strpose_simple: 0.9619 seconds/262144 peak strpose_slow: 1.2099 seconds/262144 peak
Output for 5.6.19
strpose_simple: 1.0385 seconds/262144 peak
Process exited with code 137.
Output for 5.6.18
strpose_simple: 0.9854 seconds/262144 peak strpose_slow: 1.2232 seconds/262144 peak
Output for 5.6.17
strpose_simple: 0.9533 seconds/262144 peak
Process exited with code 137.
Output for 5.6.16
strpose_simple: 1.2075 seconds/262144 peak
Process exited with code 137.
Output for 5.6.15
strpose_simple: 1.0665 seconds/262144 peak strpose_slow: 1.2126 seconds/262144 peak
Output for 5.6.14
strpose_simple: 1.0230 seconds/262144 peak strpose_slow: 1.2844 seconds/262144 peak
Output for 5.6.13
strpose_simple: 0.9669 seconds/262144 peak strpose_slow: 1.2419 seconds/262144 peak
Output for 5.6.12
strpose_simple: 0.9631 seconds/262144 peak
Process exited with code 137.
Output for 5.4.40, 5.6.11
strpose_simple: 1.0962 seconds/262144 peak
Process exited with code 137.
Output for 5.6.10
strpose_simple: 0.9494 seconds/262144 peak strpose_slow: 1.2164 seconds/262144 peak
Output for 5.6.9
strpose_simple: 0.9308 seconds/262144 peak strpose_slow: 1.2313 seconds/262144 peak
Output for 5.6.8
strpose_simple: 0.9224 seconds/262144 peak strpose_slow: 1.2105 seconds/262144 peak
Output for 5.6.7
strpose_simple: 0.9471 seconds/262144 peak strpose_slow: 1.2233 seconds/262144 peak
Output for 5.6.6
strpose_simple: 0.9903 seconds/262144 peak
Process exited with code 137.
Output for 5.6.5
strpose_simple: 1.0730 seconds/262144 peak strpose_slow: 1.2236 seconds/262144 peak
Output for 5.6.4
strpose_simple: 1.0275 seconds/262144 peak
Process exited with code 137.
Output for 5.6.3
strpose_simple: 1.0669 seconds/262144 peak
Process exited with code 137.
Output for 5.6.2
strpose_simple: 0.9700 seconds/262144 peak strpose_slow: 1.2055 seconds/262144 peak
Output for 5.6.1
strpose_simple: 0.8428 seconds/262144 peak strpose_slow: 1.2347 seconds/262144 peak
Output for 5.6.0
strpose_simple: 0.9511 seconds/262144 peak strpose_slow: 1.2069 seconds/262144 peak
Output for 5.5.38
strpose_simple: 0.9992 seconds/262144 peak strpose_slow: 1.2193 seconds/262144 peak
Output for 5.5.37
strpose_simple: 0.9931 seconds/262144 peak strpose_slow: 1.2576 seconds/262144 peak
Output for 5.5.36
strpose_simple: 1.7437 seconds/262144 peak
Process exited with code 137.
Output for 5.5.35
strpose_simple: 1.0126 seconds/262144 peak strpose_slow: 1.2531 seconds/262144 peak
Output for 5.5.34
strpose_simple: 1.0352 seconds/262144 peak strpose_slow: 1.2554 seconds/262144 peak
Output for 5.5.33
strpose_simple: 1.1232 seconds/262144 peak
Process exited with code 137.
Output for 5.5.32
strpose_simple: 0.9997 seconds/262144 peak strpose_slow: 1.2442 seconds/262144 peak
Output for 5.5.31
strpose_simple: 1.1192 seconds/262144 peak
Process exited with code 137.
Output for 5.5.30
strpose_simple: 1.0419 seconds/262144 peak strpose_slow: 1.3042 seconds/262144 peak
Output for 5.5.29
strpose_simple: 1.1183 seconds/262144 peak
Process exited with code 137.
Output for 5.5.28
strpose_simple: 1.1487 seconds/262144 peak
Process exited with code 137.
Output for 5.5.27
strpose_simple: 0.9258 seconds/262144 peak strpose_slow: 1.2647 seconds/262144 peak
Output for 5.5.26
strpose_simple: 2.1671 seconds/262144 peak
Process exited with code 137.
Output for 5.5.25
strpose_simple: 1.0130 seconds/262144 peak strpose_slow: 1.2863 seconds/262144 peak
Output for 5.5.24
strpose_simple: 1.9430 seconds/262144 peak
Process exited with code 137.
Output for 5.5.23
strpose_simple: 2.0462 seconds/262144 peak
Process exited with code 137.
Output for 5.5.22
strpose_simple: 1.0223 seconds/262144 peak
Process exited with code 137.
Output for 5.5.21
strpose_simple: 2.0017 seconds/262144 peak
Process exited with code 137.
Output for 5.5.20
strpose_simple: 0.9488 seconds/262144 peak strpose_slow: 1.2639 seconds/262144 peak
Output for 5.5.19
strpose_simple: 1.0455 seconds/262144 peak strpose_slow: 1.2552 seconds/262144 peak
Output for 5.5.18
strpose_simple: 1.0359 seconds/262144 peak strpose_slow: 1.2427 seconds/262144 peak
Output for 5.5.16
strpose_simple: 1.0397 seconds/262144 peak strpose_slow: 1.2199 seconds/262144 peak
Output for 5.5.15
strpose_simple: 1.8861 seconds/262144 peak
Process exited with code 137.
Output for 5.5.14
strpose_simple: 0.9940 seconds/262144 peak strpose_slow: 1.2406 seconds/262144 peak
Output for 5.5.13
strpose_simple: 1.0547 seconds/262144 peak strpose_slow: 1.2432 seconds/262144 peak
Output for 5.5.12
strpose_simple: 1.1319 seconds/262144 peak
Process exited with code 137.
Output for 5.5.11
strpose_simple: 0.9950 seconds/262144 peak strpose_slow: 1.2426 seconds/262144 peak
Output for 5.5.10
strpose_simple: 1.8663 seconds/262144 peak
Process exited with code 137.
Output for 5.5.9
strpose_simple: 0.9662 seconds/262144 peak strpose_slow: 1.2927 seconds/262144 peak
Output for 5.5.8
strpose_simple: 1.9811 seconds/262144 peak
Process exited with code 137.
Output for 5.5.7
strpose_simple: 1.0249 seconds/262144 peak strpose_slow: 1.2333 seconds/262144 peak
Output for 5.5.6
strpose_simple: 1.0209 seconds/262144 peak strpose_slow: 1.2464 seconds/262144 peak
Output for 5.5.5
strpose_simple: 0.9856 seconds/262144 peak strpose_slow: 1.2253 seconds/262144 peak
Output for 5.5.4
strpose_simple: 1.0297 seconds/262144 peak strpose_slow: 1.2750 seconds/262144 peak
Output for 5.5.3
strpose_simple: 1.0355 seconds/262144 peak strpose_slow: 1.2644 seconds/262144 peak
Output for 5.5.2
strpose_simple: 0.8956 seconds/262144 peak strpose_slow: 1.2463 seconds/262144 peak
Output for 5.5.1
strpose_simple: 1.1081 seconds/262144 peak strpose_slow: 1.2292 seconds/262144 peak
Output for 5.5.0
strpose_simple: 0.9825 seconds/262144 peak strpose_slow: 1.2487 seconds/262144 peak
Output for 5.4.45
strpose_simple: 0.9284 seconds/262144 peak strpose_slow: 1.2006 seconds/262144 peak
Output for 5.4.44
strpose_simple: 0.9532 seconds/262144 peak strpose_slow: 1.2044 seconds/262144 peak
Output for 5.4.43
strpose_simple: 0.8861 seconds/262144 peak strpose_slow: 1.2403 seconds/262144 peak
Output for 5.4.42
strpose_simple: 1.0497 seconds/262144 peak strpose_slow: 1.2533 seconds/262144 peak
Output for 5.4.41
strpose_simple: 0.9844 seconds/262144 peak strpose_slow: 1.2500 seconds/262144 peak
Output for 5.4.39
strpose_simple: 1.0348 seconds/262144 peak strpose_slow: 1.1943 seconds/262144 peak
Output for 5.4.38
strpose_simple: 1.0359 seconds/262144 peak strpose_slow: 1.2460 seconds/262144 peak
Output for 5.4.37
strpose_simple: 1.0055 seconds/262144 peak strpose_slow: 1.2008 seconds/262144 peak
Output for 5.4.36
strpose_simple: 1.0277 seconds/262144 peak strpose_slow: 1.2492 seconds/262144 peak
Output for 5.4.35
strpose_simple: 0.9089 seconds/262144 peak strpose_slow: 1.2455 seconds/262144 peak
Output for 5.4.34
strpose_simple: 0.9458 seconds/262144 peak strpose_slow: 1.2367 seconds/262144 peak
Output for 5.4.32
strpose_simple: 1.9479 seconds/262144 peak
Process exited with code 137.
Output for 5.4.31
strpose_simple: 2.0612 seconds/262144 peak
Process exited with code 137.
Output for 5.4.30
strpose_simple: 1.0562 seconds/262144 peak strpose_slow: 1.1933 seconds/262144 peak
Output for 5.4.29
strpose_simple: 1.0720 seconds/262144 peak strpose_slow: 1.2183 seconds/262144 peak
Output for 5.4.28
strpose_simple: 1.1295 seconds/262144 peak
Process exited with code 137.
Output for 5.4.27
strpose_simple: 1.0785 seconds/262144 peak strpose_slow: 1.2100 seconds/262144 peak
Output for 5.4.26
strpose_simple: 1.0383 seconds/262144 peak strpose_slow: 1.2054 seconds/262144 peak
Output for 5.4.25
strpose_simple: 2.2948 seconds/262144 peak
Process exited with code 137.
Output for 5.4.24
strpose_simple: 1.0012 seconds/262144 peak strpose_slow: 1.2106 seconds/262144 peak
Output for 5.4.23
strpose_simple: 1.1164 seconds/262144 peak strpose_slow: 1.2424 seconds/262144 peak
Output for 5.4.22
strpose_simple: 0.9759 seconds/262144 peak strpose_slow: 1.2330 seconds/262144 peak
Output for 5.4.21
strpose_simple: 1.0617 seconds/262144 peak strpose_slow: 1.2041 seconds/262144 peak
Output for 5.4.20
strpose_simple: 0.8685 seconds/262144 peak strpose_slow: 1.2171 seconds/262144 peak
Output for 5.4.19
strpose_simple: 0.9934 seconds/262144 peak strpose_slow: 1.2487 seconds/262144 peak
Output for 5.4.18
strpose_simple: 1.0226 seconds/262144 peak strpose_slow: 1.2238 seconds/262144 peak
Output for 5.4.17
strpose_simple: 1.0380 seconds/262144 peak strpose_slow: 1.2190 seconds/262144 peak
Output for 5.4.16
strpose_simple: 1.0150 seconds/262144 peak strpose_slow: 1.2261 seconds/262144 peak
Output for 5.4.15
strpose_simple: 0.8811 seconds/262144 peak strpose_slow: 1.2169 seconds/262144 peak
Output for 5.4.14
strpose_simple: 0.8799 seconds/262144 peak strpose_slow: 1.2279 seconds/262144 peak
Output for 5.4.13
strpose_simple: 1.0350 seconds/262144 peak strpose_slow: 1.2501 seconds/262144 peak
Output for 5.4.12
strpose_simple: 1.0897 seconds/262144 peak
Process exited with code 137.
Output for 5.4.11
strpose_simple: 0.9318 seconds/262144 peak strpose_slow: 1.2056 seconds/262144 peak
Output for 5.4.10
strpose_simple: 1.0112 seconds/262144 peak strpose_slow: 1.2312 seconds/262144 peak
Output for 5.4.9
strpose_simple: 0.8894 seconds/262144 peak strpose_slow: 1.2803 seconds/262144 peak
Output for 5.4.8
strpose_simple: 0.8997 seconds/262144 peak strpose_slow: 1.2400 seconds/262144 peak
Output for 5.4.7
strpose_simple: 1.0497 seconds/262144 peak strpose_slow: 1.1928 seconds/262144 peak
Output for 5.4.6
strpose_simple: 0.9895 seconds/262144 peak strpose_slow: 1.2364 seconds/262144 peak
Output for 5.4.5
strpose_simple: 1.0369 seconds/262144 peak strpose_slow: 1.2064 seconds/262144 peak
Output for 5.4.4
strpose_simple: 1.0149 seconds/262144 peak strpose_slow: 1.2441 seconds/262144 peak
Output for 5.4.3
strpose_simple: 0.8679 seconds/262144 peak strpose_slow: 1.2169 seconds/262144 peak
Output for 5.4.2
strpose_simple: 0.9769 seconds/262144 peak strpose_slow: 1.2015 seconds/262144 peak
Output for 5.4.1
strpose_simple: 1.0425 seconds/262144 peak strpose_slow: 1.2867 seconds/262144 peak
Output for 5.4.0
strpose_simple: 0.9934 seconds/262144 peak strpose_slow: 1.2291 seconds/262144 peak
Output for 5.3.29
strpose_simple: 1.3186 seconds/786432 peak
Process exited with code 137.
Output for 5.3.28
strpose_simple: 1.3473 seconds/786432 peak
Process exited with code 137.
Output for 5.3.27
strpose_simple: 1.3262 seconds/786432 peak
Process exited with code 137.
Output for 4.3.3 - 4.3.11, 4.4.0 - 4.4.9, 5.0.3 - 5.0.5, 5.2.1 - 5.2.2, 5.2.7 - 5.2.9, 5.2.12, 5.2.14, 5.2.17, 5.3.3 - 5.3.4, 5.3.6 - 5.3.8, 5.3.10, 5.3.12 - 5.3.13, 5.3.17 - 5.3.22, 5.3.24, 5.3.26

Process exited with code 137.
Output for 5.3.25
strpose_simple: 1.1634 seconds/786432 peak
Process exited with code 137.
Output for 5.3.23
strpose_simple: 1.1433 seconds/786432 peak
Process exited with code 137.
Output for 5.3.16
strpose_simple: 1.2921 seconds/786432 peak
Process exited with code 137.
Output for 5.3.15
strpose_simple: 1.2721 seconds/786432 peak
Process exited with code 137.
Output for 5.3.14
strpose_simple: 1.1802 seconds/786432 peak
Process exited with code 137.
Output for 5.3.11
strpose_simple: 1.4578 seconds/786432 peak
Process exited with code 137.
Output for 5.3.9
strpose_simple: 1.1921 seconds/786432 peak
Process exited with code 137.
Output for 5.3.5
strpose_simple: 1.2801 seconds/786432 peak
Process exited with code 137.
Output for 5.3.2
strpose_simple: 1.2851 seconds/786432 peak
Process exited with code 137.
Output for 5.3.1
strpose_simple: 1.2853 seconds/786432 peak
Process exited with code 137.
Output for 5.3.0
strpose_simple: 2.3761 seconds/786432 peak
Process exited with code 137.
Output for 5.2.16
strpose_simple: 1.7018 seconds/262144 peak
Process exited with code 137.
Output for 5.2.15
strpose_simple: 1.7768 seconds/262144 peak
Process exited with code 137.
Output for 5.2.13
strpose_simple: 1.5806 seconds/262144 peak
Process exited with code 137.
Output for 5.2.11
strpose_simple: 1.7403 seconds/262144 peak
Process exited with code 137.
Output for 5.2.10
strpose_simple: 1.5656 seconds/262144 peak
Process exited with code 137.
Output for 5.2.6
strpose_simple: 1.6666 seconds/262144 peak
Process exited with code 137.
Output for 5.2.5
strpose_simple: 1.6645 seconds/262144 peak
Process exited with code 137.
Output for 5.2.4
strpose_simple: 1.6534 seconds/262144 peak
Process exited with code 137.
Output for 5.2.3
strpose_simple: 1.6499 seconds/262144 peak
Process exited with code 137.
Output for 5.1.0 - 5.1.6, 5.2.0
Fatal error: Call to undefined function memory_get_usage() in /in/isZ7b on line 50
Process exited with code 255.
Output for 4.3.0 - 4.3.2, 5.0.0 - 5.0.2
Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string offset: -1 in /in/isZ7b on line 12 Notice: Uninitialized string of
Process exited with code 137.

preferences:
182.29 ms | 437 KiB | 216 Q