3v4l.org

run code in 300+ PHP versions simultaneously
<?php class pstate { //wantedstate: 1: ipmi on, 2: icmp ping an ip ok, 3: sockping an port ok private $groupMembers=array(); private $mgmtGroupsToCheck = array(); private $mgmtGroupNames=array(); private $mgmtGroups=array(); private $todo = array(); private $pdf20; private $portsToCheck=array('ig-p01'=>22); //usage: 'hostname'=>port-number function __construct(&$config) { $this->config = $config; $this->base = new base($config); require_once('lib/wpa_class_pdf20.php'); $this->pdf20=new pdf20($this->base); }//construct public function getGroups() { if(!isset($_REQUEST['groupID'])||empty($_REQUEST['groupID'])) { echo "KeineGroup-ID abgegeben!"; exit; } $this->mgmtGroupsToCheck=explode(';',$_REQUEST['groupID']); $this->mgmtGroupsToCheck=array_unique($this->mgmtGroupsToCheck); for($i=0;$i<count($this->mgmtGroupsToCheck);$i++){ if(strlen($this->mgmtGroupsToCheck[$i])==0) unset($this->mgmtGroupsToCheck[$i]); } } private function getStatusProj(&$projstatus, &$projector) { $projstatus = substr($projstatus, 15, 1); switch ($projstatus){ case 1: $col = 'yellow'; break; case 2: $col = 'green'; break; case 3: $col = 'red'; break; case 4: $col = 'blue'; break; } echo '<tr><td>'.$projector.'</td><td bgcolor=' . $col . '>'; switch ($projstatus){ case 1: echo 'warming up'; //$col = 'yellow'; break; case 2: echo 'online'; //$col = 'green'; break; case 3: echo 'offline'; //$col = 'red'; break; case 4: echo 'cooling down'; //$col = 'blue'; break; } echo "</td><td></td></tr>"; }//getStatusProj private function getStatus(&$host) { $col = 'red'; if ($host['wantedstate'] == $host['status']) $col = 'green'; echo '<tr><td>'.$host['hostname'].'</td><td bgcolor=' . $col . '>'; switch ($host['status']){ case -1: echo 'Status konnte nicht ermittelt werden'; break; case 0: $array['poweron'][0]=$host['mgmtip']; echo 'Netzteil aus </td><td style="width:67px; background-color:grey; border:1px solid white; font-weight:bold; text-align:center;"><a style=" background-color:grey; color:black; text-decoration:none;" href="'.$_SERVER['PHP_SELF'].'?correct='.base64_encode(serialize($array)).'&groupID='.$_REQUEST['groupID'].'">Start</a>'; if ('red' == $col) $this->todo['poweron'][] = $host['mgmtip']; break; case 1: $array['reboot'][0]=$host['ip']; echo 'Netzteil ein </td><td style="width:67px; background-color:grey; border:1px solid white; font-weight:bold; text-align:center;"><a style=" background-color:grey; color:black; text-decoration:none;" href="'.$_SERVER['PHP_SELF'].'?correct='.base64_encode(serialize($array)).'&groupID='.$_REQUEST['groupID'].'">Neustart</a>'; if ('red' == $col) $this->todo['reboot'][] = $host['ip']; break; case 2: $array['reboot'][0]=$host['ip']; echo 'Ping ok </td><td style="width:67px; background-color:grey; border:1px solid white; font-weight:bold; text-align:center;"> <a style="background-color:grey; color:black; text-decoration:none;" href="'.$_SERVER['PHP_SELF'].'?correct='.base64_encode(serialize($array)).'&groupID='.$_REQUEST['groupID'].'">Neustart</a>'; if ('red' == $col) $this->todo['reboot'][] = $host['ip']; break; case 3: $array['reboot'][0]=$host['ip']; echo 'online <td style="width:67px; background-color:grey; border:1px solid white; font-weight:bold; text-align:center;"></td> <a style=" background-color:grey; color:black; text-decoration:none;" href="'.$_SERVER['PHP_SELF'].'?correct='.base64_encode(serialize($array)).'&groupID='.$_REQUEST['groupID'].'">Neustart</a>'; if ('red' == $col) $this->todo['reboot'][] = $host['ip']; break; } echo "</td></tr>"; }//getStatus public function getUpHosts($todo) { foreach ($todo['reboot'] as $reboot){ shell_exec("net rpc -Uesigma%esigma -I$reboot shutdown -r -t 1 -f"); } foreach ($todo['poweron'] as $pon){ shell_exec("ipmitool -UADMIN -PADMIN -H$pon power on"); } echo "Bitte eine Minute warten und den Status erneut <a href=".$_SERVER['PHP_SELF'].'?groupID='.$_REQUEST['groupID'].'>abfragen</a>.'; exit; }//getUpHosts public function getPortsFormDB($tmpHosts) //gets ports out of db { $sqlString='SELECT * from os_types'; $osTypes=$this->base->db->query($sqlString); $sqlstring='Select regex from hosts where os_type=1'; $linuxHostsTmp=$this->base->db->query($sqlstring); $linuxHosts=array(); foreach($linuxHostsTmp as $host) { $linuxHosts[]=$host['regex']; } unset($linuxHostsTmp); for($i=0;$i<count($tmpHosts);$i++) { //echo $host['hostname']; if(in_array($tmpHosts[$i]['hostname'],$linuxHosts)) { $tmpHosts[$i]['port']=22; } } return $tmpHosts; } public function simpleGetPorts($tmpHosts) //gehts ports from$this->portsToCheck { for($i=0;$i<count($tmpHosts);$i++) { //echo $host['hostname']; if(array_key_exists($tmpHosts[$i]['hostname'],$this->portsToCheck)) { $tmpHosts[$i]['port']=$this->portsToCheck[$tmpHosts[$i]['hostname']]; } } return $tmpHosts; } public function setPortToCheck($tmpHosts,$mode=1) { switch($mode){ case 1: $tmpHosts=$this->getPortsFromDB($tmpHosts); break; case 2: $tmpHosts=$this->simpleGetPorts($tmpHosts); break; case 3: $tmpHosts=$this->getPortsFromDB($tmpHosts); $tmpHosts=$this->simpleGetPorts($tmpHosts); break; default: return false; break; }//switch return $tmpHosts; } public function run() { $this->getGroups(); $this->base->connectDB(); $sqlPre = 'SELECT H.regex AS hostname, U.value AS IP, M.ip AS mgmtip, -1 AS status, 33445 AS port, 3 AS wantedstate ' . ' FROM unattended U LEFT JOIN (hosts H LEFT JOIN (mgmt M JOIN mgmt_group_members MGM ON (M.id = MGM.mid )) ON ' . " H.mgmt_id = M.id) ON U.lookup = H.lookup where U.property = 'IP' AND MGM.gid = "; $sqlPost = ' ORDER BY hostname'; $cmdPre = 'php ' . dirname($_SERVER['SCRIPT_FILENAME']) . '/tools/checkPower.php '; $hosts = array(); $allHosts = array(); $allHosts2 = array(); $sqlString = 'SELECT gid from mgmt_groups'; $this->mgmtGroups=$this->base->db->query($sqlString); for($i=0;$i<count($this->mgmtGroups);$i++) { $this->mgmtGroups[$i]=$this->mgmtGroups[$i]['gid']; } $isntGID=array(); foreach($this->mgmtGroupsToCheck as $gid) //existiert groupID? { if(!in_array($gid,$this->mgmtGroups)){ $isntGID[]= $gid; unset($this->mgmtGroupsToCheck[array_search($gid,$this->mgmtGroupsToCheck)]); } } $sqlString = 'SELECT mgmt_groups.gid AS gid, mgmt_groups.groupname AS name FROM mgmt_groups where gid in ('.implode(',',$this->mgmtGroupsToCheck).')'; $tmpGroupNames=$this->base->db->query($sqlString); foreach($tmpGroupNames as $group) { $this->mgmtGroupNames[$group['gid']]=$group['name']; } foreach ($this->mgmtGroupsToCheck as $gid) { $sqlString='Select mid AS mid from mgmt_group_members where gid='.$gid; $gmem=$this->base->db->query($sqlString); for($i=0;$i<count($gmem);$i++) { $gmem[$i]=$gmem[$i]['mid']; } $sqlString="select mgmt.ip AS ip , mgmt.port AS port, mgmt.description AS hostname, 3 AS wantedstate, mgmt.ip as mgmtip, -1 AS status FROM mgmt where id in (".implode(',',$gmem).")AND type='pdf20'"; $pdf20Proj=$this->base->db->query($sqlString); $tmpHosts = $this->base->db->query($sqlPre . $gid . $sqlPost); $tmpHosts=$this->setPortToCheck($tmpHosts,2); $tmpHosts=array_merge($tmpHosts,$pdf20Proj); $hosts[]=$tmpHosts; foreach($hosts as $memberArray) { foreach($memberArray as $member) $this->groupMembers[$member['hostname']]=$gid; } $allHosts = array_merge($allHosts, end($hosts)); } $exchangeFile = tempnam('/tmp', 'wpkgWeb'); file_put_contents($exchangeFile, serialize($allHosts)); $err = exec($cmdPre . $exchangeFile); $tStatus = unserialize(file_get_contents($exchangeFile)); unlink($exchangeFile); echo '<table border=0 bgcolor=lightgrey cellspacing=0 style="font-family:verdana;font-size:14;font-weight:bold">'; echo '<tr bgcolor=grey>'; foreach($this->mgmtGroupsToCheck as $gid) echo "<td>".$this->mgmtGroupNames[$gid]."</td>"; if(count($this->mgmtGroupsToCheck)<3) { $num=3-count($this->mgmtGroupsToCheck); for($i=0;$i<$num;$i++) echo '<td></td>'; } echo '</tr>'; echo '<tr valign=top>'; for ($i=0; $i<count($this->mgmtGroupsToCheck); $i++){ echo '<td><table border=0 cellspacing=2 style="font-family:verdana;font-size:14">'; $grpPrefix = substr($hosts[$i][0]['hostname'], 0, 2); foreach ($hosts[$i] as &$host){ if($this->groupMembers[$host['hostname']]==$this->mgmtGroupsToCheck[$i]); if($host['port']==1025) { $retVal=$this->pdf20->getPowerState($host['ip'], $host['port']); $this->getStatusProj($retVal, $host['hostname']); }else $this->getStatus($tStatus[$host['hostname']]['host']); // $this->getStatus($host); } echo '</table></td>'; } echo '</tr>'; echo '<tr bgcolor=grey><td><a href='.$_SERVER['PHP_SELF'].'?groupID='.$_REQUEST['groupID'].'>Aktualisieren</a>'; echo ' <a href=' . $_SERVER['PHP_SELF'].'?auto=5&groupID='.$_REQUEST['groupID'].'>(Auto)</a>'; echo '</td>'; echo '<td colspan='.(count($this->mgmtGroupsToCheck)-2).' align=center>' . date('d.m.y H:i:s') . '</td><td align=right>'; if (count($this->todo)>0) echo '<a href='.$_SERVER['PHP_SELF'].'?correct='.base64_encode(serialize($this->todo)).'&groupID='.$_REQUEST['groupID'].'>Fehler beheben</a>'; echo'</td></tr></table>'; if(count($isntGID)>0) { $i=0; echo "<font color=red>Zu folgenden Group-IDs existiert keine Gruppe : "; foreach($isntGID as $gid){ if($i>0) echo ', '.$gid; else echo $gid; $i++; } echo "</font>"; } }//run }//class pstate echo '<html><head><title>SSIMINFWA Powerstatus</title>'; if (array_key_exists('auto', $_REQUEST)) echo '<meta http-equiv="refresh" content=' . $_REQUEST['auto'] . '>'; echo '</head><body>'; require_once('config.php'); if (isset($_REQUEST['noDebug'])) $config->debugmode = false; if ($config->debugmode) ini_set('display_errors','on'); else ini_set('display_errors','off'); require_once('lib/wpa_class_base.php'); $power = new pstate($config); if (array_key_exists('correct', $_REQUEST)) $power->getUpHosts(unserialize(base64_decode($_REQUEST['correct']))); $power->run(); echo '</body></html>';

Here you find the average performance (time & memory) of each version. A grayed out version indicates it didn't complete successfully (based on exit-code).

VersionSystem time (s)User time (s)Memory (MiB)
8.3.60.0140.00718.43
8.3.50.0100.01021.27
8.3.40.0060.00918.96
8.3.30.0030.01618.92
8.3.20.0060.00318.98
8.3.10.0030.00621.01
8.3.00.0080.00023.39
8.2.180.0110.01117.25
8.2.170.0040.01122.96
8.2.160.0140.00020.65
8.2.150.0030.00624.18
8.2.140.0030.00524.66
8.2.130.0080.00026.16
8.2.120.0040.00420.87
8.2.110.0070.00320.43
8.2.100.0030.00918.03
8.2.90.0030.00618.00
8.2.80.0040.00418.86
8.2.70.0000.00817.88
8.2.60.0000.00817.88
8.2.50.0000.00818.16
8.2.40.0060.00319.89
8.2.30.0000.00821.36
8.2.20.0000.00817.98
8.2.10.0060.00317.93
8.2.00.0090.00017.99
8.1.280.0090.00625.92
8.1.270.0040.00423.99
8.1.260.0080.00426.35
8.1.250.0000.00928.09
8.1.240.0100.00019.17
8.1.230.0060.00621.03
8.1.220.0080.00018.89
8.1.210.0000.00818.77
8.1.200.0040.00417.72
8.1.190.0030.00617.47
8.1.180.0040.00818.10
8.1.170.0050.00317.69
8.1.160.0060.00318.98
8.1.150.0050.00318.87
8.1.140.0000.00817.62
8.1.130.0040.00417.93
8.1.120.0060.00317.54
8.1.110.0040.00417.55
8.1.100.0000.00917.64
8.1.90.0060.00317.64
8.1.80.0040.00417.60
8.1.70.0040.00417.61
8.1.60.0130.00017.66
8.1.50.0040.00417.74
8.1.40.0030.00617.63
8.1.30.0060.00317.82
8.1.20.0040.00417.81
8.1.10.0030.00617.77
8.1.00.0000.00817.59
8.0.300.0050.00318.77
8.0.290.0030.00517.00
8.0.280.0040.00418.68
8.0.270.0000.01017.55
8.0.260.0000.00717.04
8.0.250.0080.00017.26
8.0.240.0040.00417.29
8.0.230.0000.00717.17
8.0.220.0040.00417.16
8.0.210.0040.00417.17
8.0.200.0030.00617.26
8.0.190.0040.00417.18
8.0.180.0080.00017.26
8.0.170.0000.00817.23
8.0.160.0050.00217.22
8.0.150.0040.00417.14
8.0.140.0000.00717.06
8.0.130.0000.00613.65
8.0.120.0080.00017.07
8.0.110.0080.00017.00
8.0.100.0030.00617.17
8.0.90.0000.00717.23
8.0.80.0100.00617.10
8.0.70.0050.00317.06
8.0.60.0040.00417.27
8.0.50.0000.00717.05
8.0.30.0030.01617.19
8.0.20.0110.00917.48
8.0.10.0040.00417.09
8.0.00.0060.01616.97
7.4.330.0030.00314.71
7.4.320.0050.00316.86
7.4.300.0000.00616.84
7.4.290.0050.00216.60
7.4.280.0000.00716.78
7.4.270.0000.00816.72
7.4.260.0060.00013.40
7.4.250.0000.00816.75
7.4.240.0000.00716.66
7.4.230.0040.00416.61
7.4.220.0030.01316.61
7.4.210.0050.01016.70
7.4.200.0040.00416.70
7.4.190.0040.00416.95
7.4.160.0030.01316.95
7.4.150.0000.01817.40
7.4.140.0160.00217.86
7.4.130.0120.00616.72
7.4.120.0150.00716.61
7.4.110.0060.01216.70
7.4.100.0120.00616.67
7.4.90.0120.00916.84
7.4.80.0100.00719.39
7.4.70.0120.00616.61
7.4.60.0100.00716.70
7.4.50.0030.00616.42
7.4.40.0130.00322.77
7.4.30.0090.00916.66
7.4.10.0040.01516.59
7.4.00.0050.01215.82
7.3.330.0000.00613.23
7.3.320.0000.00613.47
7.3.310.0040.00416.27
7.3.300.0030.00316.36
7.3.290.0040.01116.41
7.3.280.0110.00816.50
7.3.270.0000.01817.40
7.3.260.0130.01118.24
7.3.250.0110.00716.54
7.3.240.0060.01216.62
7.3.230.0180.00016.46
7.3.210.0070.01716.46
7.3.200.0120.01216.63
7.3.190.0060.01216.59
7.3.180.0060.01016.54
7.3.170.0160.00616.55
7.3.160.0130.00316.46
7.3.130.0160.00616.64
7.3.120.0090.00815.58
7.3.110.0080.01015.59
7.3.100.0060.00915.77
7.3.90.0060.00615.68
7.3.80.0070.00815.72
7.3.70.0030.00915.60
7.3.60.0030.01115.64
7.3.50.0080.00815.67
7.3.40.0050.00615.54
7.3.30.0070.00715.68
7.3.20.0030.01117.42
7.3.10.0040.00617.46
7.3.00.0050.01017.15
7.2.330.0120.00616.90
7.2.320.0130.00616.77
7.2.310.0090.01116.80
7.2.300.0110.00716.89
7.2.290.0110.00716.72
7.2.260.0100.00716.60
7.2.250.0090.01216.82
7.2.240.0060.00915.92
7.2.230.0050.00715.93
7.2.220.0070.00515.89
7.2.210.0050.01215.78
7.2.200.0030.01015.85
7.2.190.0020.01316.06
7.2.180.0050.00815.86
7.2.170.0060.00816.00
7.2.160.0050.00515.94
7.2.150.0050.01017.59
7.2.140.0030.01417.55
7.2.130.0030.01217.57
7.2.120.0020.01117.43
7.2.110.0050.01117.73
7.2.100.0020.01417.67
7.2.90.0030.01217.34
7.2.80.0080.00617.64
7.2.70.0060.00717.68
7.2.60.0050.01017.28
7.2.50.0070.00517.57
7.2.40.0080.00517.69
7.2.30.0020.01117.74
7.2.20.0080.00717.50
7.2.10.0070.00517.67
7.2.00.0030.01218.00
7.1.330.0080.00816.46
7.1.320.0070.00616.53
7.1.310.0080.00716.54
7.1.300.0080.00616.46
7.1.290.0090.00516.60
7.1.280.0020.01116.51
7.1.270.0080.00316.43
7.1.260.0030.01316.45
7.1.250.0070.00716.46
7.1.240.0070.00717.36
7.1.230.0110.00417.29
7.1.220.0040.00717.36
7.1.210.0130.00317.14
7.1.200.0060.00616.57
7.1.190.0070.00717.16
7.1.180.0060.01017.41
7.1.170.0130.00017.25
7.1.160.0000.00917.22
7.1.150.0000.01117.07
7.1.140.0110.00417.35
7.1.130.0090.00617.20
7.1.120.0030.00717.06
7.1.110.0040.01417.43
7.1.100.0060.00717.71
7.1.90.0100.00017.29
7.1.80.0030.01317.06
7.1.70.0030.01017.12
7.1.60.0070.00718.21
7.1.50.0100.01016.90
7.1.40.0040.00817.24
7.1.30.0140.00317.33
7.1.20.0100.00717.43
7.1.10.0040.01217.23
7.1.00.0030.02319.87
7.0.330.0030.01316.78
7.0.320.0080.00616.92
7.0.310.0090.00616.98
7.0.300.0060.00916.91
7.0.290.0090.00616.81
7.0.280.0060.00617.17
7.0.270.0110.00316.89
7.0.260.0000.01217.08
7.0.250.0040.01116.86
7.0.240.0140.00017.01
7.0.230.0000.01217.02
7.0.220.0060.01016.77
7.0.210.0100.00717.07
7.0.200.0020.01116.79
7.0.190.0000.01016.82
7.0.180.0110.00516.81
7.0.170.0070.00716.91
7.0.160.0090.01216.98
7.0.150.0110.00716.86
7.0.140.0080.03819.51
7.0.130.0140.00317.03
7.0.120.0090.00916.87
7.0.110.0060.00917.03
7.0.100.0050.04918.52
7.0.90.0060.04718.60
7.0.80.0080.04518.46
7.0.70.0090.03618.49
7.0.60.0060.04518.55
7.0.50.0090.04118.63
7.0.40.0050.04417.56
7.0.30.0020.04717.52
7.0.20.0070.04017.45
7.0.10.0110.02517.50
7.0.00.0040.04417.49
5.6.400.0120.00615.80
5.6.390.0030.01216.05
5.6.380.0040.00815.81
5.6.370.0090.00615.71
5.6.360.0090.00616.03
5.6.350.0110.00315.92
5.6.340.0030.01015.86
5.6.330.0120.00615.84
5.6.320.0110.00415.93
5.6.310.0070.01016.02
5.6.300.0100.01015.90
5.6.290.0140.00416.02
5.6.280.0070.04018.68
5.6.270.0060.01015.95
5.6.260.0090.00616.07
5.6.250.0080.03118.53
5.6.240.0040.04618.39
5.6.230.0050.04518.51
5.6.220.0050.04418.41
5.6.210.0120.03818.29
5.6.200.0060.03218.47
5.6.190.0130.04218.59
5.6.180.0020.04618.53
5.6.170.0050.04218.45
5.6.160.0100.04118.55
5.6.150.0050.02718.44
5.6.140.0030.04318.48
5.6.130.0110.04018.44
5.6.120.0040.03118.59
5.6.110.0100.04618.52
5.6.100.0070.04618.66
5.6.90.0070.03218.50
5.6.80.0040.02718.14
5.6.70.0070.04418.24
5.6.60.0110.03818.17
5.6.50.0090.03918.04
5.6.40.0110.04018.14
5.6.30.0110.02318.17
5.6.20.0030.04418.08
5.6.10.0050.03518.21
5.6.00.0120.03918.08
5.5.380.0140.03918.22
5.5.370.0080.03718.09
5.5.360.0110.03918.00
5.5.350.0070.04718.20
5.5.340.0070.02518.39
5.5.330.0070.04218.44
5.5.320.0090.03518.32
5.5.310.0100.04218.29
5.5.300.0080.03618.43
5.5.290.0020.03318.51
5.5.280.0070.03718.35
5.5.270.0080.03818.39
5.5.260.0070.03218.36
5.5.250.0060.03118.27
5.5.240.0070.03318.01
5.5.230.0140.03517.83
5.5.220.0020.05318.03
5.5.210.0050.04018.06
5.5.200.0030.04717.90
5.5.190.0040.03918.06
5.5.180.0150.04018.01
5.5.170.0070.00715.70
5.5.160.0120.04018.03
5.5.150.0050.03618.01
5.5.140.0080.04118.06
5.5.130.0080.04317.96
5.5.120.0090.04218.00
5.5.110.0040.04018.08
5.5.100.0070.04017.83
5.5.90.0100.02817.85
5.5.80.0120.02718.05
5.5.70.0060.03617.91
5.5.60.0110.03017.94
5.5.50.0070.03517.86
5.5.40.0030.03317.84
5.5.30.0080.03517.88
5.5.20.0100.03617.96
5.5.10.0050.02917.77
5.5.00.0110.04017.83
5.4.450.0070.03815.87
5.4.440.0080.04515.97
5.4.430.0050.02816.03
5.4.420.0050.04116.09
5.4.410.0070.04015.96
5.4.400.0090.03515.79
5.4.390.0040.03215.80
5.4.380.0090.02015.99
5.4.370.0050.04115.76
5.4.360.0030.04115.81
5.4.350.0030.03915.84
5.4.340.0130.03515.83
5.4.330.0030.00912.49
5.4.320.0040.04315.94
5.4.310.0030.03915.99
5.4.300.0090.03815.91
5.4.290.0030.04015.82
5.4.280.0070.04215.83
5.4.270.0030.04015.81
5.4.260.0030.02815.69
5.4.250.0050.02715.79
5.4.240.0050.04115.82
5.4.230.0030.02715.79
5.4.220.0030.04315.75
5.4.210.0050.04315.70
5.4.200.0090.03215.91
5.4.190.0080.02715.71
5.4.180.0070.03015.78
5.4.170.0100.03515.85
5.4.160.0030.03015.93
5.4.150.0070.03815.79
5.4.140.0050.02714.60
5.4.130.0080.03514.53
5.4.120.0050.02914.63
5.4.110.0050.03914.72
5.4.100.0060.02314.54
5.4.90.0120.03814.57
5.4.80.0050.03614.61
5.4.70.0060.03614.53
5.4.60.0020.02914.50
5.4.50.0080.02114.53
5.4.40.0080.03814.52
5.4.30.0070.03214.47
5.4.20.0070.03314.55
5.4.10.0030.03514.40
5.4.00.0030.03814.29
5.3.290.0100.02513.97
5.3.280.0050.03913.99
5.3.270.0050.02513.95
5.3.260.0110.04013.99
5.3.250.0060.02713.99
5.3.240.0000.04313.96
5.3.230.0030.03413.95
5.3.220.0030.04114.06
5.3.210.0090.03813.88
5.3.200.0100.03813.83
5.3.190.0080.04013.82
5.3.180.0030.03014.00
5.3.170.0020.05114.02
5.3.160.0050.04613.97
5.3.150.0060.02314.01
5.3.140.0080.03213.91
5.3.130.0060.03113.84
5.3.120.0120.03614.00
5.3.110.0050.02913.92
5.3.100.0070.04213.76
5.3.90.0030.03013.79
5.3.80.0020.04013.61
5.3.70.0020.04513.58
5.3.60.0050.02513.60
5.3.50.0040.02213.56
5.3.40.0050.03513.56
5.3.30.0080.03813.56
5.3.20.0080.03813.54
5.3.10.0100.03813.41
5.3.00.0060.04113.29

preferences:
57.55 ms | 401 KiB | 5 Q