3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * ECSHOP OPEN API统一接口 * ============================================================================ * * 版权所有 2005-2012 上海商派网络科技有限公司,并保留所有权利。 * 网站地址: http://www.ecshop.com; * ---------------------------------------------------------------------------- * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和 * 使用;不允许对程序代码以任何形式任何目的的再发布。 * ============================================================================ * $Author: sxc_shop $ * $Id: goods.php 15921 2009-05-07 05:35:58Z sxc_shop $ */ define('IN_ECS', true); require(dirname(__FILE__) . '/includes/init.php'); require(ROOT_PATH . 'includes/lib_license.php'); require_once('includes/cls_json.php'); define('RETURN_TYPE', empty($_POST['return_data']) ? 1 : ($_POST['return_data'] == 'json' ? 2 : 1)); /* 接收传递参数并初步检验 */ if (empty($_POST) || empty($_POST['ac'])) { api_err('0x003', 'no parameter'); //输出系统级错误:数据异常 } /* 根据请求类型进入相应的接口处理程序 */ switch ($_POST['act']) { case 'search_goods_list': search_goods_list(); break; case 'search_goods_detail': search_goods_detail(); break; case 'search_deleted_goods_list': search_deleted_goods_list(); break; case 'search_products_list': search_products_list(); break; case 'search_site_info': search_site_info(); break; default: api_err('0x008', 'no this type api'); //输出系统级错误:数据异常 } /** * 获取商品列表接口函数 */ function search_goods_list() { check_auth(); //检查基本权限 $version = '1.0'; //版本号 if ($_POST['api_version'] != $version) //网店的接口版本低 { api_err('0x008', 'a low version api'); } if (is_numeric($_POST['last_modify_st_time']) && is_numeric($_POST['last_modify_en_time'])) { $sql = 'SELECT COUNT(*) AS count' . ' FROM ' . $GLOBALS['ecs']->table('goods') . " WHERE is_delete = 0 AND is_on_sale = 1 AND (last_update > '" . $_POST['last_modify_st_time'] . "' OR last_update = 0)"; $date_count = $GLOBALS['db']->getRow($sql); if (empty($date_count)) { api_err('0x003', 'no data to back'); //无符合条件数据 } $page = empty($_POST['pages']) ? 1 : $_POST['pages']; //确定读取哪些记录 $counts = empty($_POST['counts']) ? 100 : $_POST['counts']; $sql = 'SELECT goods_id, last_update AS last_modify' . ' FROM ' . $GLOBALS['ecs']->table('goods') . " WHERE is_delete = 0 AND is_on_sale = 1 AND (last_update > '" . $_POST['last_modify_st_time'] . "' OR last_update = 0)". " LIMIT ".($page - 1) * $counts . ', ' . $counts; $date_arr = $GLOBALS['db']->getAll($sql); if (!empty($_POST['columns'])) { $column_arr = explode('|', $_POST['columns']); foreach ($date_arr as $k => $v) { foreach ($v as $key => $val) { if (in_array($key, $column_arr)) { $re_arr['data_info'][$k][$key] = $val; } } } } else { $re_arr['data_info'] = $date_arr; } /* 处理更新时间等于0的数据 */ $sql = 'UPDATE ' . $GLOBALS['ecs']->table('goods') . " SET last_update = 1 WHERE is_delete = 0 AND is_on_sale = 1 AND last_update = 0"; $GLOBALS['db']->query($sql, 'SILENT'); $re_arr['counts'] = $date_count['count']; data_back($re_arr, '', RETURN_TYPE); //返回数据 } else { api_err('0x003', 'required date invalid'); //请求数据异常 } } /** * 商品详细信息接口函数 */ function search_goods_detail() { check_auth(); //检查基本权限 $version = '1.0'; //版本号 if ($_POST['api_version'] != $version) //网店的接口版本低 { api_err('0x008', 'a low version api'); } if (!empty($_POST['goods_id']) && is_numeric($_POST['goods_id'])) { $sql = 'SELECT g.goods_id, g.last_update AS last_modify, g.cat_id, c.cat_name AS category_name, g.brand_id, b.brand_name, g.shop_price AS price, g.goods_sn AS bn, g.goods_name AS name, g.is_on_sale AS marketable, g.goods_weight AS weight, g.goods_number AS store , g.give_integral AS score, g.add_time AS uptime, g.original_img AS image_default, g.goods_desc AS intro' . ' FROM ' . $GLOBALS['ecs']->table('category') . ' AS c, ' . $GLOBALS['ecs']->table('goods') . ' AS g LEFT JOIN ' . $GLOBALS['ecs']->table('brand') . ' AS b ON g.brand_id = b.brand_id'. ' WHERE g.cat_id = c.cat_id AND g.goods_id = ' . $_POST['goods_id']; $goods_data = $GLOBALS['db']->getRow($sql); if (empty($goods_data)) { api_err('0x003', 'no data to back'); //无符合条件数据 } $goods_data['goods_link'] = 'http://' . $_SERVER['HTTP_HOST'] . '/goods.php?id=' . $goods_data['goods_id']; $goods_data['image_default'] = 'http://' . $_SERVER['HTTP_HOST'] . '/' . $goods_data['image_default']; $goods_data['unit'] = '千克'; $goods_data['brand_name'] = empty($goods_data['brand_name']) ? '' : $goods_data['brand_name']; $prop = create_goods_properties($_POST['goods_id']); $goods_data['props_name'] = $prop['props_name']; $goods_data['props'] = $prop['props']; if (!empty($_POST['columns'])) { $column_arr = explode('|', $_POST['columns']); foreach ($goods_data as $key=>$val) { if (in_array($key, $column_arr)) { $re_arr['data_info'][$key] = $val; } } } else { $re_arr['data_info'] = $goods_data; } data_back($re_arr, '', RETURN_TYPE); //返回数据 } else { api_err('0x003', 'required date invalid'); //请求数据异常 } } /** * 被删除商品列表接口函数 */ function search_deleted_goods_list() { api_err('0x007', '暂时不提供此服务功能'); //服务不可用 } /** * 获取货品列表接口函数 */ function search_products_list() { check_auth(); //检查基本权限 $version = '1.0'; //版本号 if ($_POST['api_version'] != $version) //网店的接口版本低 { api_err('0x008', 'a low version api'); } if (!empty($_POST['goods_id']) && is_numeric($_POST['goods_id']) || !empty($_POST['bn'])) { $sql = 'SELECT goods_id, last_update AS last_modify, shop_price AS price, goods_sn AS bn, goods_name AS name, goods_weight AS weight, goods_number AS store, add_time AS uptime' . ' FROM ' . $GLOBALS['ecs']->table('goods') . ' WHERE ' . empty($_POST['bn']) ? "goods_id = $_POST[goods_id]" : "goods_sn = $_POST[bn]"; $goods_data = $GLOBALS['db']->getRow($sql); if (empty($goods_data)) { api_err('0x003', 'no data to back'); //无符合条件数据 } $goods_data['product_id'] = $_POST['goods_id']; $goods_data['cost'] = $goods_data['price']; $prop = create_goods_properties($_POST['goods_id']); $goods_data['props'] = $prop['props']; if (!empty($_POST['columns'])) { $column_arr = explode('|', $_POST['columns']); foreach ($goods_data as $key=>$val) { if (in_array($key, $column_arr)) { $re_arr['data_info'][$key] = $val; } } } else { $re_arr['data_info'] = $goods_data; } data_back($re_arr, '', RETURN_TYPE); //返回数据 } else { api_err('0x003', 'required date invalid'); //请求数据异常 } } /** * 获取站点信息接口函数 */ function search_site_info() { check_auth(); //检查基本权限 $version = '1.0'; //版本号 if ($_POST['api_version'] != $version) //网店的接口版本低 { api_err('0x008', 'a low version api'); } $sql = 'SELECT code, value'. ' FROM ' . $GLOBALS['ecs']->table('shop_config') . " WHERE code IN ('shop_name', 'service_phone')"; $siteinfo['data_info'] = $GLOBALS['db']->getRow($sql); $siteinfo['data_info']['site_address'] = $_SERVER['SERVER_NAME']; data_back($siteinfo, '', RETURN_TYPE); //返回数据 } /** * 权限校验函数 */ function check_auth() { $license = get_shop_license(); // 取出网店 license信息 if (empty($license['certificate_id']) || empty($license['token']) || empty($license['certi'])) { api_err('0x006', 'no certificate'); //没有证书数据,输出系统级错误:用户权限不够 } if (!check_shopex_ac($_POST, $license['token'])) { api_err('0x009'); //输出系统级错误:签名无效 } /* 对应用申请的session进行验证 */ $certi['certificate_id'] = $license['certificate_id']; // 网店证书ID $certi['app_id'] = 'ecshop_b2c'; // 说明客户端来源 $certi['app_instance_id'] = 'webcollect'; // 应用服务ID $certi['version'] = VERSION . '#' . RELEASE; // 网店软件版本号 $certi['format'] = 'json'; // 官方返回数据格式 $certi['certi_app'] = 'sess.valid_session'; // 证书方法 $certi['certi_session'] = $_POST['app_session']; //应用服务器申请的session值 $certi['certi_ac'] = make_shopex_ac($certi, $license['token']); // 网店验证字符串 $request_arr = exchange_shop_license($certi, $license); if ($request_arr['res'] != 'succ') { api_err('0x001', 'session is invalid'); //输出系统级错误:身份验证失败 } } /** * 验证POST签名 * * @param string $post_params POST传递参数 * @param string $token 证书加密码 * * @return boolean 返回是否有效 */ function check_shopex_ac($post_params,$token) { ksort($post_params); $str = ''; foreach($post_params as $key=>$value) { if ($key!='ac') { $str.=$value; } } if ($post_params['ac'] == md5($str.$token)) { return true; } else { return false; } } /** * 系统级错误处理 * * @param string $err_type 错误类型代号 * @param string $err_info 错误说明 * */ function api_err($err_type, $err_info = '') { /* 系统级错误列表 */ $err_arr = array(); $err_arr['0x001'] = 'Verify fail'; //身份验证失败 $err_arr['0x002'] = 'Time out'; //请求/执行超时 $err_arr['0x003'] = 'Data fail'; //数据异常 $err_arr['0x004'] = 'Db error'; //数据库执行失败 $err_arr['0x005'] = 'Service error'; //服务器导常 $err_arr['0x006'] = 'User permissions'; //用户权限不够 $err_arr['0x007'] = 'Service unavailable'; //服务不可用 $err_arr['0x008'] = 'Missing Method'; //方法不可用 $err_arr['0x009'] = 'Missing signature'; //签名无效 $err_arr['0x010'] = 'Missing api version'; //版本丢失 $err_arr['0x011'] = 'Api verion error'; //API版本异常 $err_arr['0x012'] = 'Api need update'; //API需要升级 $err_arr['0x013'] = 'Shop Error'; //网痁服务异常 $err_arr['0x014'] = 'Shop Space Error'; //网店空间不足 data_back($err_info == '' ? $err_arr[$err_type] : $err_info, $err_type, RETURN_TYPE, 'fail'); //回复请求以错误信息 } /** * 返回结果集 * * @param mixed $info 返回的有效数据集或是错误说明 * @param string $msg 为空或是错误类型代号 * @param string $result 请求成功或是失败的标识 * @param int $post 1为xml方式,2为json方式 * */ function data_back($info, $msg = '', $post, $result = 'success') { /* 分为xml和json两种方式 */ $data_arr = array('result'=>$result, 'msg'=>$msg, 'info'=>$info); $data_arr = to_utf8_iconv($data_arr); //确保传递的编码为UTF-8 if ($post == 1) { /* xml方式 */ if (class_exists('DOMDocument')) { $doc=new DOMDocument('1.0','UTF-8'); $doc->formatOutput=true; $shopex=$doc->createElement('shopex'); $doc->appendChild($shopex); $result=$doc->createElement('result'); $shopex->appendChild($result); $result->appendChild($doc->createCDATASection($data_arr['result'])); $msg=$doc->createElement('msg'); $shopex->appendChild($msg); $msg->appendChild($doc->createCDATASection($data_arr['msg'])); $info=$doc->createElement('info'); $shopex->appendChild($info); create_tree($doc, $info, $data_arr['info']); die($doc->saveXML()); } die('<?xml version="1.0" encoding="UTF-8"?>' . array2xml($data_arr)) ; } else { /* json方式 */ $json = new JSON; die($json->encode($data_arr)); //把生成的返回字符串打印出来 } } /** * 循环生成xml节点 * * @param handle $doc xml实例句柄 * @param handle $top 当前父节点 * @param array $info_arr 需要解析的数组 * @param boolean $have_item 是否是数据数组,是则需要在每条数据上加item父节点 * */ function create_tree($doc, $top, $info_arr, $have_item = false) { if (is_array($info_arr)) { foreach ($info_arr as $key => $val) { if (is_array($val)) { if ($have_item == false) { $data_info=$doc->createElement('data_info'); $top->appendChild($data_info); create_tree($doc, $data_info, $val, true); } else { $item=$doc->createElement('item'); $top->appendChild($item); $key_code = $doc->createAttribute('key'); $item->appendChild($key_code); $key_code->appendChild($doc->createTextNode($key)); create_tree($doc, $item, $val); } } else { $text_code=$doc->createElement($key); $top->appendChild($text_code); if (is_string($val)) { $text_code->appendChild($doc->createCDATASection($val)); } else { $text_code->appendChild($doc->createTextNode($val)); } } } } else { $top->appendChild($doc->createCDATASection($info_arr)); } } function array2xml($data,$root='shopex'){ $xml='<'.$root.'>'; _array2xml($data,$xml); $xml.='</'.$root.'>'; return $xml; } function _array2xml(&$data,&$xml){ if(is_array($data)){ foreach($data as $k=>$v){ if(is_numeric($k)){ $xml.='<item key="' . $k . '">'; $xml.=_array2xml($v,$xml); $xml.='</item>'; }else{ $xml.='<'.$k.'>'; $xml.=_array2xml($v,$xml); $xml.='</'.$k.'>'; } } }elseif(is_numeric($data)){ $xml.=$data; }elseif(is_string($data)){ $xml.='<![CDATA['.$data.']]>'; } } function create_goods_properties($goods_id) { /* 对属性进行重新排序和分组 $sql = "SELECT attr_group ". "FROM " . $GLOBALS['ecs']->table('goods_type') . " AS gt, " . $GLOBALS['ecs']->table('goods') . " AS g ". "WHERE g.goods_id='$goods_id' AND gt.cat_id=g.goods_type"; $grp = $GLOBALS['db']->getOne($sql); if (!empty($grp)) { $groups = explode("\n", strtr($grp, "\r", '')); } */ /* 获得商品的规格 */ $sql = "SELECT a.attr_id, a.attr_name, a.attr_group, a.is_linked, a.attr_type, ". "g.goods_attr_id, g.attr_value, g.attr_price " . 'FROM ' . $GLOBALS['ecs']->table('goods_attr') . ' AS g ' . 'LEFT JOIN ' . $GLOBALS['ecs']->table('attribute') . ' AS a ON a.attr_id = g.attr_id ' . "WHERE g.goods_id = '$goods_id' " . 'ORDER BY a.sort_order, g.attr_price, g.goods_attr_id'; $res = $GLOBALS['db']->getAll($sql); $arr = array(); $arr['props_name'] = array(); // props_name $arr['props'] = array(); // props foreach ($res AS $row) { if ($row['attr_type'] == 0) { //$group = (isset($groups[$row['attr_group']])) ? $groups[$row['attr_group']] : $GLOBALS['_LANG']['goods_attr']; //$arr['props_name'][$row['attr_group']]['name'] = $group; $arr['props_name'][] = array('name' => $row['attr_name'], 'value' => $row['attr_value']); $arr['props'][] = array('pid' => $row['attr_id'], 'vid' => $row['goods_attr_id']); } } return $arr; } ?>

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.0070.01316.88
8.3.50.0080.01022.06
8.3.40.0100.01018.92
8.3.30.0150.00019.21
8.3.20.0050.00220.41
8.3.10.0040.00423.61
8.3.00.0080.00022.44
8.2.180.0120.00925.92
8.2.170.0160.00319.16
8.2.160.0070.00720.60
8.2.150.0080.00024.18
8.2.140.0060.00324.66
8.2.130.0040.00426.16
8.2.120.0040.00421.05
8.2.110.0000.01022.26
8.2.100.0100.00318.09
8.2.90.0030.00519.39
8.2.80.0000.00818.18
8.2.70.0030.00617.63
8.2.60.0030.00618.16
8.2.50.0050.00318.07
8.2.40.0030.00519.66
8.2.30.0000.00818.23
8.2.20.0030.00618.01
8.2.10.0040.00417.89
8.2.00.0040.00417.85
8.1.280.0060.00925.92
8.1.270.0100.00023.99
8.1.260.0080.00026.35
8.1.250.0090.00628.09
8.1.240.0000.00923.79
8.1.230.0040.00819.23
8.1.220.0060.00317.74
8.1.210.0040.00418.77
8.1.200.0070.00317.48
8.1.190.0050.00317.65
8.1.180.0040.00418.10
8.1.170.0030.00618.82
8.1.160.0050.00322.25
8.1.150.0050.00518.73
8.1.140.0040.00417.49
8.1.130.0070.00018.05
8.1.120.0000.00717.57
8.1.110.0080.00017.51
8.1.100.0030.00517.52
8.1.90.0000.00817.63
8.1.80.0000.00717.55
8.1.70.0000.00717.57
8.1.60.0070.00317.87
8.1.50.0030.00617.67
8.1.40.0040.00417.82
8.1.30.0060.00317.77
8.1.20.0000.00917.70
8.1.10.0030.00617.70
8.1.00.0060.00317.74
8.0.300.0050.00318.77
8.0.290.0050.00317.43
8.0.280.0040.00418.75
8.0.270.0030.00717.55
8.0.260.0050.00217.18
8.0.250.0050.00317.31
8.0.240.0040.00417.14
8.0.230.0000.00717.22
8.0.220.0040.00417.26
8.0.210.0000.00717.23
8.0.200.0000.00817.22
8.0.190.0000.00917.21
8.0.180.0000.00917.25
8.0.170.0040.00417.18
8.0.160.0060.00317.21
8.0.150.0030.00617.19
8.0.140.0030.00617.09
8.0.130.0030.00313.69
8.0.120.0070.00115.43
8.0.110.0050.00315.41
8.0.100.0040.00415.39
8.0.90.0050.00315.48
8.0.80.0050.00715.45
8.0.70.0060.00215.53
8.0.60.0060.00315.47
8.0.50.0020.00615.49
8.0.30.0080.00716.13
8.0.20.0090.00916.13
8.0.10.0040.00415.48
8.0.00.0060.01115.96
7.4.330.0000.00615.14
7.4.320.0030.00316.75
7.4.300.0030.00316.81
7.4.290.0000.00816.75
7.4.280.0040.00416.78
7.4.270.0040.00316.75
7.4.260.0070.00016.81
7.4.250.0040.00415.18
7.4.240.0060.00215.65
7.4.230.0040.00415.17
7.4.220.0140.00015.16
7.4.210.0070.00815.92
7.4.200.0080.00015.21
7.4.190.0040.00415.14
7.4.180.0000.00713.58
7.4.160.0100.00615.06
7.4.150.0030.00915.50
7.4.140.0110.00416.41
7.4.130.0050.01215.58
7.4.120.0110.00515.58
7.4.110.0110.00515.16
7.4.100.0110.00615.19
7.4.90.0110.00415.03
7.4.80.0100.00816.38
7.4.70.0070.00615.15
7.4.60.0030.01014.95
7.4.50.0040.00214.95
7.4.40.0040.00818.02
7.4.30.0120.00015.06
7.4.20.0040.00413.26
7.4.10.0000.00713.30
7.4.00.0070.00614.46
7.3.330.0000.00513.57
7.3.320.0050.00013.38
7.3.310.0000.00715.14
7.3.300.0040.00315.01
7.3.290.0030.00914.96
7.3.280.0070.01115.82
7.3.270.0100.00315.45
7.3.260.0080.00615.04
7.3.250.0110.00415.61
7.3.240.0040.00915.00
7.3.230.0040.00914.95
7.3.220.0080.00013.57
7.3.210.0040.00914.94
7.3.200.0100.00416.42
7.3.190.0060.01014.89
7.3.180.0090.00514.99
7.3.170.0040.00815.02
7.3.160.0090.00314.99
7.3.150.0040.00413.35
7.3.140.0000.00613.32
7.3.130.0000.00713.34
7.3.120.0040.01014.45
7.3.110.0050.00714.25
7.3.100.0020.01114.08
7.3.90.0070.00314.29
7.3.80.0070.00314.22
7.3.70.0020.00814.22
7.3.60.0040.00514.28
7.3.50.0030.00514.22
7.3.40.0070.00314.33
7.3.30.0040.00714.20
7.3.20.0050.00415.88
7.3.10.0050.00615.70
7.3.00.0000.01015.85
7.2.340.0120.00013.39
7.2.330.0060.01015.00
7.2.320.0100.00515.19
7.2.310.0120.00315.20
7.2.300.0080.00715.07
7.2.290.0040.01215.10
7.2.280.0130.00013.34
7.2.270.0080.00413.47
7.2.260.0070.00713.45
7.2.250.0090.00814.30
7.2.240.0070.01014.32
7.2.230.0120.00214.19
7.2.220.0040.00914.43
7.2.210.0050.00814.28
7.2.200.0060.00814.39
7.2.190.0100.00414.40
7.2.180.0070.00514.31
7.2.170.0080.00514.32
7.2.160.0070.00714.20
7.2.150.0070.00915.96
7.2.140.0030.01015.85
7.2.130.0030.01216.11
7.2.120.0050.01116.05
7.2.110.0060.00815.79
7.2.100.0040.00915.95
7.2.90.0060.00816.06
7.2.80.0100.00515.94
7.2.70.0070.00716.04
7.2.60.0060.00716.24
7.2.50.0090.00516.05
7.2.40.0090.00716.05
7.2.30.0070.00716.06
7.2.20.0080.00516.10
7.2.10.0060.00915.95
7.2.00.0100.00516.06
7.1.330.0090.00614.97
7.1.320.0040.00915.00
7.1.310.0060.00614.84
7.1.300.0030.00914.82
7.1.290.0110.00314.95
7.1.280.0060.00515.07
7.1.270.0050.00915.03
7.1.260.0090.00614.96
7.1.250.0070.00814.94
7.1.240.0120.00114.89
7.1.230.0020.01114.93
7.1.220.0070.00614.83
7.1.210.0080.00514.99
7.1.200.0080.00615.12
7.1.190.0070.00515.00
7.1.180.0020.01114.80
7.1.170.0080.00514.95
7.1.160.0070.00515.04
7.1.150.0050.00715.05
7.1.140.0090.00514.97
7.1.130.0080.00714.95
7.1.120.0050.00814.86
7.1.110.0090.00414.97
7.1.100.0090.00514.90
7.1.90.0110.00314.97
7.1.80.0070.00815.03
7.1.70.0050.00715.69
7.1.60.0140.00316.44
7.1.50.0040.00715.49
7.1.40.0050.00615.00
7.1.30.0080.00514.79
7.1.20.0040.01014.90
7.1.10.0080.00414.99
7.1.00.0060.03017.46
7.0.330.0030.01014.77
7.0.320.0020.01114.73
7.0.310.0060.00614.61
7.0.300.0110.00514.73
7.0.290.0070.00614.75
7.0.280.0030.01114.62
7.0.270.0080.00714.78
7.0.260.0090.00114.85
7.0.250.0090.00514.76
7.0.240.0090.00814.73
7.0.230.0090.00414.76
7.0.220.0080.00714.81
7.0.210.0070.00614.67
7.0.200.0050.00915.39
7.0.190.0090.00414.62
7.0.180.0070.00614.61
7.0.170.0070.00614.92
7.0.160.0100.00414.77
7.0.150.0090.00514.60
7.0.140.0050.02817.24
7.0.130.0070.00714.72
7.0.120.0100.00314.68
7.0.110.0070.00314.77
7.0.100.0060.03016.55
7.0.90.0030.03216.49
7.0.80.0170.02816.54
7.0.70.0120.02516.39
7.0.60.0090.03116.60
7.0.50.0090.03516.60
7.0.40.0060.03215.83
7.0.30.0050.03215.90
7.0.20.0110.02615.82
7.0.10.0070.02915.86
7.0.00.0030.02715.80
5.6.400.0030.01013.54
5.6.390.0110.00313.43
5.6.380.0070.00613.67
5.6.370.0040.00813.42
5.6.360.0060.01013.51
5.6.350.0060.00513.29
5.6.340.0070.00713.44
5.6.330.0070.00813.43
5.6.320.0090.00713.47
5.6.310.0020.01213.43
5.6.300.0100.00313.47
5.6.290.0060.00813.41
5.6.280.0070.02716.11
5.6.270.0040.00713.49
5.6.260.0070.00613.52
5.6.250.0030.02715.95
5.6.240.0070.02015.82
5.6.230.0070.03016.02
5.6.220.0110.01815.94
5.6.210.0080.03015.85
5.6.200.0100.02316.12
5.6.190.0120.02816.07
5.6.180.0040.02716.04
5.6.170.0080.03116.02
5.6.160.0080.03016.11
5.6.150.0120.03016.17
5.6.140.0080.03016.09
5.6.130.0060.03616.03
5.6.120.0120.01816.10
5.6.110.0070.02815.99
5.6.100.0090.02615.91
5.6.90.0040.02715.98
5.6.80.0070.02415.83
5.6.70.0060.02015.86
5.6.60.0060.02515.88
5.6.50.0070.03015.82
5.6.40.0060.02215.75
5.6.30.0110.03015.72
5.6.20.0090.02715.71
5.6.10.0080.02815.73
5.6.00.0070.03115.64
5.5.380.0110.02815.91
5.5.370.0110.02915.85
5.5.360.0060.03415.71
5.5.350.0080.03015.85
5.5.340.0080.01615.83
5.5.330.0070.03215.96
5.5.320.0060.01915.88
5.5.310.0060.03315.83
5.5.300.0090.02115.86
5.5.290.0080.03515.88
5.5.280.0070.03315.81
5.5.270.0060.02215.85
5.5.260.0050.03415.97
5.5.250.0120.02515.96
5.5.240.0090.02915.69
5.5.230.0060.01815.64
5.5.220.0110.02615.69
5.5.210.0070.03015.74
5.5.200.0090.02915.71
5.5.190.0050.02415.60
5.5.180.0070.01815.71
5.5.170.0050.00813.32
5.5.160.0070.02515.65
5.5.150.0060.02015.70
5.5.140.0080.02615.63
5.5.130.0050.03315.52
5.5.120.0090.01815.67
5.5.110.0050.03415.61
5.5.100.0080.02415.71
5.5.90.0080.02815.56
5.5.80.0060.02815.64
5.5.70.0080.02915.55
5.5.60.0060.02815.47
5.5.50.0050.02915.49
5.5.40.0080.03115.60
5.5.30.0090.02815.61
5.5.20.0080.01615.70
5.5.10.0080.02415.71
5.5.00.0090.03115.57
5.4.450.0070.02814.43
5.4.440.0070.01914.42
5.4.430.0030.03314.16
5.4.420.0100.02714.32
5.4.410.0070.02514.34
5.4.400.0050.03014.15
5.4.390.0060.02714.14
5.4.380.0070.02914.21
5.4.370.0090.02614.23
5.4.360.0120.02714.20
5.4.350.0050.03114.22
5.4.340.0070.03014.29
5.4.330.0060.00311.83
5.4.320.0070.02914.10
5.4.310.0060.02314.18
5.4.300.0100.02414.20
5.4.290.0050.02014.21
5.4.280.0070.02614.16
5.4.270.0080.02814.27
5.4.260.0100.01614.24
5.4.250.0060.02814.23
5.4.240.0050.02914.21
5.4.230.0050.03114.15
5.4.220.0080.03014.01
5.4.210.0060.01714.10
5.4.200.0100.02214.04
5.4.190.0100.02714.08
5.4.180.0060.01513.99
5.4.170.0030.03114.18
5.4.160.0040.02814.17
5.4.150.0030.03314.15
5.4.140.0100.02413.36
5.4.130.0050.02913.16
5.4.120.0070.02513.29
5.4.110.0060.01713.37
5.4.100.0060.02713.33
5.4.90.0050.02613.28
5.4.80.0090.02513.35
5.4.70.0050.03013.37
5.4.60.0060.01913.33
5.4.50.0070.02513.36
5.4.40.0070.02613.35
5.4.30.0080.02213.24
5.4.20.0100.02413.32
5.4.10.0070.02613.36
5.4.00.0090.02613.02
5.3.290.0030.02613.89
5.3.280.0070.04413.96
5.3.270.0110.03614.05
5.3.260.0080.04113.91
5.3.250.0050.04114.00
5.3.240.0090.03313.91
5.3.230.0120.03413.94
5.3.220.0100.03413.95
5.3.210.0070.02413.78
5.3.200.0030.02513.90
5.3.190.0050.03613.97
5.3.180.0090.03713.91
5.3.170.0060.04313.87
5.3.160.0070.04214.01
5.3.150.0030.03614.08
5.3.140.0040.03013.83
5.3.130.0060.02313.96
5.3.120.0060.04513.87
5.3.110.0110.03514.03
5.3.100.0040.03413.72
5.3.90.0110.02513.66
5.3.80.0040.02413.66
5.3.70.0050.03813.73
5.3.60.0050.03913.66
5.3.50.0050.03013.63
5.3.40.0080.04113.47
5.3.30.0070.02513.63
5.3.20.0070.02713.52
5.3.10.0050.03813.38
5.3.00.0000.03213.30

preferences:
36.94 ms | 400 KiB | 5 Q