3v4l.org

run code in 300+ PHP versions simultaneously
<?php namespace GuzzleHttp\Promise; /** * Get the global task queue used for promise resolution. * * This task queue MUST be run in an event loop in order for promises to be * settled asynchronously. It will be automatically run when synchronously * waiting on a promise. * * <code> * while ($eventLoop->isRunning()) { * GuzzleHttp\Promise\queue()->run(); * } * </code> * * @param TaskQueueInterface $assign Optionally specify a new queue instance. * * @return TaskQueueInterface */ function queue(TaskQueueInterface $assign = null) { static $queue; if ($assign) { $queue = $assign; } elseif (!$queue) { $queue = new TaskQueue(); } return $queue; } /** * Adds a function to run in the task queue when it is next `run()` and returns * a promise that is fulfilled or rejected with the result. * * @param callable $task Task function to run. * * @return PromiseInterface */ function task(callable $task) { $queue = queue(); $promise = new Promise([$queue, 'run']); $queue->add(function () use ($task, $promise) { try { $promise->resolve($task()); } catch (\Throwable $e) { $promise->reject($e); } catch (\Exception $e) { $promise->reject($e); } }); return $promise; } /** * Creates a promise for a value if the value is not a promise. * * @param mixed $value Promise or value. * * @return PromiseInterface */ function promise_for($value) { if ($value instanceof PromiseInterface) { return $value; } // Return a Guzzle promise that shadows the given promise. if (method_exists($value, 'then')) { $wfn = method_exists($value, 'wait') ? [$value, 'wait'] : null; $cfn = method_exists($value, 'cancel') ? [$value, 'cancel'] : null; $promise = new Promise($wfn, $cfn); $value->then([$promise, 'resolve'], [$promise, 'reject']); return $promise; } return new FulfilledPromise($value); } /** * Creates a rejected promise for a reason if the reason is not a promise. If * the provided reason is a promise, then it is returned as-is. * * @param mixed $reason Promise or reason. * * @return PromiseInterface */ function rejection_for($reason) { if ($reason instanceof PromiseInterface) { return $reason; } return new RejectedPromise($reason); } /** * Create an exception for a rejected promise value. * * @param mixed $reason * * @return \Exception|\Throwable */ function exception_for($reason) { return $reason instanceof \Exception || $reason instanceof \Throwable ? $reason : new RejectionException($reason); } /** * Returns an iterator for the given value. * * @param mixed $value * * @return \Iterator */ function iter_for($value) { if ($value instanceof \Iterator) { return $value; } elseif (is_array($value)) { return new \ArrayIterator($value); } else { return new \ArrayIterator([$value]); } } /** * Synchronously waits on a promise to resolve and returns an inspection state * array. * * Returns a state associative array containing a "state" key mapping to a * valid promise state. If the state of the promise is "fulfilled", the array * will contain a "value" key mapping to the fulfilled value of the promise. If * the promise is rejected, the array will contain a "reason" key mapping to * the rejection reason of the promise. * * @param PromiseInterface $promise Promise or value. * * @return array */ function inspect(PromiseInterface $promise) { try { return [ 'state' => PromiseInterface::FULFILLED, 'value' => $promise->wait() ]; } catch (RejectionException $e) { return ['state' => PromiseInterface::REJECTED, 'reason' => $e->getReason()]; } catch (\Throwable $e) { return ['state' => PromiseInterface::REJECTED, 'reason' => $e]; } catch (\Exception $e) { return ['state' => PromiseInterface::REJECTED, 'reason' => $e]; } } /** * Waits on all of the provided promises, but does not unwrap rejected promises * as thrown exception. * * Returns an array of inspection state arrays. * * @param PromiseInterface[] $promises Traversable of promises to wait upon. * * @return array * @see GuzzleHttp\Promise\inspect for the inspection state array format. */ function inspect_all($promises) { $results = []; foreach ($promises as $key => $promise) { $results[$key] = inspect($promise); } return $results; } /** * Waits on all of the provided promises and returns the fulfilled values. * * Returns an array that contains the value of each promise (in the same order * the promises were provided). An exception is thrown if any of the promises * are rejected. * * @param mixed $promises Iterable of PromiseInterface objects to wait on. * * @return array * @throws \Exception on error * @throws \Throwable on error in PHP >=7 */ function unwrap($promises) { $results = []; foreach ($promises as $key => $promise) { $results[$key] = $promise->wait(); } return $results; } /** * Given an array of promises, return a promise that is fulfilled when all the * items in the array are fulfilled. * * The promise's fulfillment value is an array with fulfillment values at * respective positions to the original array. If any promise in the array * rejects, the returned promise is rejected with the rejection reason. * * @param mixed $promises Promises or values. * @param bool $recursive - If true, resolves new promises that might have been added to the stack during its own resolution. * * @return PromiseInterface */ function all($promises, $recursive = false) { $results = []; $promise = each( $promises, function ($value, $idx) use (&$results) { $results[$idx] = $value; }, function ($reason, $idx, Promise $aggregate) { $aggregate->reject($reason); } )->then(function () use (&$results) { ksort($results); return $results; }); if (true === $recursive) { $promise = $promise->then(function ($results) use ($recursive, &$promises) { foreach ($promises AS $promise) { if (\GuzzleHttp\Promise\PromiseInterface::PENDING === $promise->getState()) { return all($promises, $recursive); } } return $results; }); } return $promise; } /** * Initiate a competitive race between multiple promises or values (values will * become immediately fulfilled promises). * * When count amount of promises have been fulfilled, the returned promise is * fulfilled with an array that contains the fulfillment values of the winners * in order of resolution. * * This promise is rejected with a {@see GuzzleHttp\Promise\AggregateException} * if the number of fulfilled promises is less than the desired $count. * * @param int $count Total number of promises. * @param mixed $promises Promises or values. * * @return PromiseInterface */ function some($count, $promises) { $results = []; $rejections = []; return each( $promises, function ($value, $idx, PromiseInterface $p) use (&$results, $count) { if ($p->getState() !== PromiseInterface::PENDING) { return; } $results[$idx] = $value; if (count($results) >= $count) { $p->resolve(null); } }, function ($reason) use (&$rejections) { $rejections[] = $reason; } )->then( function () use (&$results, &$rejections, $count) { if (count($results) !== $count) { throw new AggregateException( 'Not enough promises to fulfill count', $rejections ); } ksort($results); return array_values($results); } ); } /** * Like some(), with 1 as count. However, if the promise fulfills, the * fulfillment value is not an array of 1 but the value directly. * * @param mixed $promises Promises or values. * * @return PromiseInterface */ function any($promises) { return some(1, $promises)->then(function ($values) { return $values[0]; }); } /** * Returns a promise that is fulfilled when all of the provided promises have * been fulfilled or rejected. * * The returned promise is fulfilled with an array of inspection state arrays. * * @param mixed $promises Promises or values. * * @return PromiseInterface * @see GuzzleHttp\Promise\inspect for the inspection state array format. */ function settle($promises) { $results = []; return each( $promises, function ($value, $idx) use (&$results) { $results[$idx] = ['state' => PromiseInterface::FULFILLED, 'value' => $value]; }, function ($reason, $idx) use (&$results) { $results[$idx] = ['state' => PromiseInterface::REJECTED, 'reason' => $reason]; } )->then(function () use (&$results) { ksort($results); return $results; }); } /** * Given an iterator that yields promises or values, returns a promise that is * fulfilled with a null value when the iterator has been consumed or the * aggregate promise has been fulfilled or rejected. * * $onFulfilled is a function that accepts the fulfilled value, iterator * index, and the aggregate promise. The callback can invoke any necessary side * effects and choose to resolve or reject the aggregate promise if needed. * * $onRejected is a function that accepts the rejection reason, iterator * index, and the aggregate promise. The callback can invoke any necessary side * effects and choose to resolve or reject the aggregate promise if needed. * * @param mixed $iterable Iterator or array to iterate over. * @param callable $onFulfilled * @param callable $onRejected * * @return PromiseInterface */ function each( $iterable, callable $onFulfilled = null, callable $onRejected = null ) { return (new EachPromise($iterable, [ 'fulfilled' => $onFulfilled, 'rejected' => $onRejected ]))->promise(); } /** * Like each, but only allows a certain number of outstanding promises at any * given time. * * $concurrency may be an integer or a function that accepts the number of * pending promises and returns a numeric concurrency limit value to allow for * dynamic a concurrency size. * * @param mixed $iterable * @param int|callable $concurrency * @param callable $onFulfilled * @param callable $onRejected * * @return PromiseInterface */ function each_limit( $iterable, $concurrency, callable $onFulfilled = null, callable $onRejected = null ) { return (new EachPromise($iterable, [ 'fulfilled' => $onFulfilled, 'rejected' => $onRejected, 'concurrency' => $concurrency ]))->promise(); } /** * Like each_limit, but ensures that no promise in the given $iterable argument * is rejected. If any promise is rejected, then the aggregate promise is * rejected with the encountered rejection. * * @param mixed $iterable * @param int|callable $concurrency * @param callable $onFulfilled * * @return PromiseInterface */ function each_limit_all( $iterable, $concurrency, callable $onFulfilled = null ) { return each_limit( $iterable, $concurrency, $onFulfilled, function ($reason, $idx, PromiseInterface $aggregate) { $aggregate->reject($reason); } ); } /** * Returns true if a promise is fulfilled. * * @param PromiseInterface $promise * * @return bool */ function is_fulfilled(PromiseInterface $promise) { return $promise->getState() === PromiseInterface::FULFILLED; } /** * Returns true if a promise is rejected. * * @param PromiseInterface $promise * * @return bool */ function is_rejected(PromiseInterface $promise) { return $promise->getState() === PromiseInterface::REJECTED; } /** * Returns true if a promise is fulfilled or rejected. * * @param PromiseInterface $promise * * @return bool */ function is_settled(PromiseInterface $promise) { return $promise->getState() !== PromiseInterface::PENDING; } /** * @see Coroutine * * @param callable $generatorFn * * @return PromiseInterface */ function coroutine(callable $generatorFn) { return new Coroutine($generatorFn); }

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.120.0060.00318.82
8.3.110.0130.00620.94
8.3.100.0090.00024.06
8.3.90.0040.01126.77
8.3.80.0000.00918.14
8.3.70.0120.00416.75
8.3.60.0090.00918.07
8.3.50.0150.00717.94
8.3.40.0060.00918.71
8.3.30.0120.00318.66
8.3.20.0000.00820.73
8.3.10.0030.00620.34
8.3.00.0060.00322.40
8.2.240.0080.00018.64
8.2.230.0070.00322.58
8.2.220.0030.00737.54
8.2.210.0000.00826.77
8.2.200.0030.00716.75
8.2.190.0040.01116.71
8.2.180.0120.00318.16
8.2.170.0140.00422.96
8.2.160.0080.00820.59
8.2.150.0080.00024.18
8.2.140.0040.00424.66
8.2.130.0040.00419.51
8.2.120.0040.00426.35
8.2.110.0060.00322.03
8.2.100.0070.00417.84
8.2.90.0000.00817.91
8.2.80.0050.00318.04
8.2.70.0030.00517.89
8.2.60.0080.00018.09
8.2.50.0000.00818.10
8.2.40.0040.00419.45
8.2.30.0030.00519.30
8.2.20.0040.00418.03
8.2.10.0040.00419.58
8.2.00.0030.00518.13
8.1.300.0100.01019.81
8.1.290.0040.00430.84
8.1.280.0150.00025.92
8.1.270.0030.00618.50
8.1.260.0070.00026.35
8.1.250.0000.00828.09
8.1.240.0080.00817.36
8.1.230.0080.00322.75
8.1.220.0060.00317.78
8.1.210.0050.00318.79
8.1.200.0030.00617.35
8.1.190.0080.00017.35
8.1.180.0050.00318.10
8.1.170.0080.00018.78
8.1.160.0050.00218.77
8.1.150.0040.00418.87
8.1.140.0040.00420.37
8.1.130.0000.00720.29
8.1.120.0040.00417.37
8.1.110.0040.00417.32
8.1.100.0000.00817.35
8.1.90.0040.00417.45
8.1.80.0000.00717.42
8.1.70.0050.00317.47
8.1.60.0040.00417.52
8.1.50.0030.00617.41
8.1.40.0030.00517.34
8.1.30.0030.00617.55
8.1.20.0000.00817.60
8.1.10.0050.00317.51
8.1.00.0000.00817.44
8.0.300.0070.00019.80
8.0.290.0000.00816.58
8.0.280.0030.00318.47
8.0.270.0000.00717.22
8.0.260.0070.00018.37
8.0.250.0040.00416.92
8.0.240.0050.00216.93
8.0.230.0060.00316.84
8.0.220.0040.00416.83
8.0.210.0040.00416.85
8.0.200.0030.00316.93
8.0.190.0000.00816.81
8.0.180.0060.00316.83
8.0.170.0040.00416.93
8.0.160.0000.00716.77
8.0.150.0040.00416.78
8.0.140.0070.00016.73
8.0.130.0040.00413.36
8.0.120.0050.00316.80
8.0.110.0070.00016.79
8.0.100.0050.00316.75
8.0.90.0080.00016.74
8.0.80.0060.00916.81
8.0.70.0040.00416.95
8.0.60.0030.00516.79
8.0.50.0000.00816.93
8.0.30.0120.00717.01
8.0.20.0070.01417.37
8.0.10.0040.00416.96
8.0.00.0100.01016.69
7.4.330.0000.00515.55
7.4.320.0030.00316.52
7.4.300.0080.00016.35
7.4.290.0080.00016.57
7.4.280.0040.00416.61
7.4.270.0040.00416.59
7.4.260.0030.00316.40
7.4.250.0030.00316.54
7.4.240.0000.00716.47
7.4.230.0070.00016.38
7.4.220.0040.00416.54
7.4.210.0090.00816.52
7.4.200.0040.00416.62
7.4.160.0060.01116.42
7.4.140.0120.01017.86
7.4.130.0140.01716.50
7.4.120.0130.00316.30
7.4.110.0100.00716.52
7.4.100.0070.01116.54
7.4.90.0170.00016.33
7.4.80.0120.00619.39
7.4.70.0120.00616.47
7.4.60.0090.00616.46
7.4.50.0000.01816.48
7.4.40.0130.00316.55
7.4.00.0050.01214.84
7.3.330.0030.00313.20
7.3.320.0000.00613.28
7.3.310.0000.00716.33
7.3.300.0020.00516.29
7.3.290.0070.00016.27
7.3.280.0080.00916.28
7.3.260.0140.00516.33
7.3.240.0070.01016.43
7.3.230.0090.00916.57
7.3.210.0070.01416.42
7.3.200.0070.01116.31
7.3.190.0120.00616.38
7.3.180.0070.01516.42
7.3.170.0170.00716.39
7.3.160.0090.00916.55
7.3.120.0070.01115.00
7.3.110.0060.01214.66
7.3.100.0070.00314.66
7.3.90.0110.00014.74
7.3.80.0000.01514.67
7.3.70.0090.00614.77
7.3.60.0100.00314.96
7.3.50.0030.01114.84
7.3.40.0040.00814.77
7.3.30.0000.01414.41
7.3.20.2560.01115.19
7.3.10.2610.00515.24
7.3.00.0280.00415.27
7.2.330.0090.00816.38
7.2.320.0130.00616.49
7.2.310.0030.01416.69
7.2.300.0120.00616.71
7.2.290.0030.01516.69
7.2.250.0030.01714.66
7.2.240.0100.01014.93
7.2.230.0070.01115.00
7.2.220.0070.00714.90
7.2.210.0030.00714.75
7.2.200.0090.00314.91
7.2.190.0110.00714.83
7.2.180.0070.00714.79
7.2.170.0060.00314.78
7.2.150.3090.00514.85
7.2.140.4120.00514.85
7.2.130.4860.00714.74
7.2.120.5130.01215.03
7.2.110.4210.00715.05
7.2.100.3160.00914.97
7.2.90.3770.01015.05
7.2.80.1620.01014.89
7.2.70.1110.01014.84
7.2.60.1120.00714.98
7.2.50.0960.00714.64
7.2.40.1020.00714.84
7.2.30.0880.00514.71
7.2.20.0530.00314.70
7.2.10.0240.00814.78
7.2.00.0770.00714.82
7.1.330.0040.01415.31
7.1.320.0040.01115.51
7.1.310.0090.00615.70
7.1.300.0000.01615.54
7.1.290.0070.00715.62
7.1.280.0000.00915.59
7.1.270.0000.01315.76
7.1.260.0070.00315.49
7.1.250.3230.00713.73
7.1.240.0300.00713.70
7.1.230.1030.01013.82
7.1.220.0170.00713.88
7.1.210.3360.01413.72
7.1.200.2830.01613.77
7.1.190.2150.00313.92
7.1.180.1860.00313.91
7.1.170.2010.01313.80
7.1.160.1840.01313.71
7.1.150.1380.00713.80
7.1.140.1610.00313.99
7.1.130.0480.00913.72
7.1.120.1180.01313.59
7.1.110.1060.00914.02
7.1.100.1340.00313.90
7.1.90.0850.01013.71
7.1.80.0750.01013.80
7.1.70.1020.00313.71
7.1.60.0770.00313.80
7.1.50.0620.01013.65
7.1.40.4010.00313.61
7.1.30.0870.00913.96
7.1.20.0830.00413.96
7.1.10.0670.00413.88
7.1.00.0660.00914.00
7.0.330.1800.01413.79
7.0.320.0170.01013.41
7.0.310.2400.01013.56
7.0.300.1880.01613.69
7.0.290.1700.00013.48
7.0.280.1490.02013.47
7.0.270.1780.01013.47
7.0.260.0180.00613.66
7.0.250.0200.01513.32
7.0.240.0320.00613.66
7.0.230.0780.01613.42
7.0.220.0820.00613.48
7.0.210.0740.01013.54
7.0.200.0930.00713.42
7.0.190.0820.01013.59
7.0.180.0630.01313.63
7.0.170.0820.00613.42
7.0.160.0960.00713.34
7.0.150.0770.01713.68
7.0.140.0780.01313.48
7.0.130.0680.00713.31
7.0.120.0570.01813.58
7.0.110.0660.00713.41
7.0.100.0470.00713.27
7.0.90.0620.00713.61
7.0.80.0550.00613.38
7.0.70.0630.00313.59
7.0.60.0510.00313.45
7.0.50.0660.00313.79
7.0.40.0630.00713.49
7.0.30.0540.00713.23
7.0.20.0640.00013.70
7.0.10.0590.00713.61
7.0.00.0220.00516.29
5.6.400.0050.00617.72
5.6.390.0090.00117.72
5.6.380.0100.00517.22
5.6.370.0170.01714.34
5.6.360.0170.01414.34
5.6.350.0180.01414.12
5.6.340.0200.01613.97
5.6.330.0170.01014.02
5.6.320.0170.00714.31
5.6.310.0150.00614.30
5.6.300.0150.01814.26
5.6.290.0170.00714.13
5.6.280.0080.01714.16
5.6.270.0200.01214.34
5.6.260.0220.00014.20
5.6.250.0220.00714.24
5.6.240.0150.00414.33
5.6.230.0140.01614.36
5.6.220.0040.01314.18
5.6.210.0210.00914.42
5.6.200.0070.01414.36
5.6.190.0170.00714.05
5.6.180.0120.00614.20
5.6.170.0080.01913.88
5.6.160.0130.00614.37
5.6.150.0140.01114.41
5.6.140.0210.00714.13
5.6.130.0180.01414.13
5.6.120.0160.00614.27
5.6.110.0160.00613.98
5.6.100.0170.01714.11
5.6.90.0110.01414.08
5.6.80.0190.00914.25
5.6.70.0120.02214.23
5.6.60.0180.01114.14
5.6.50.0120.01214.38
5.6.40.0140.01413.96
5.6.30.0130.01914.30
5.6.20.0130.01914.10
5.6.10.0180.01514.02
5.6.00.0170.01014.24
5.5.380.0150.00011.17
5.5.370.0110.01510.96
5.5.360.0070.00711.17
5.5.350.0040.00910.97
5.5.340.0120.00511.13
5.5.330.0130.01010.91
5.5.320.0120.00010.89
5.5.310.0160.00610.82
5.5.300.0160.00710.96
5.5.290.0140.00811.11
5.5.280.0120.00411.11
5.5.270.0080.01210.98
5.5.260.0200.00310.91
5.5.250.0160.00510.94
5.5.240.0060.01610.90
5.5.230.0090.00210.57
5.5.220.0170.00610.79
5.5.210.0120.00810.91
5.5.200.0200.00010.63
5.5.190.0170.00810.97
5.5.180.0120.00610.74
5.5.170.0090.00310.70
5.5.160.0030.01710.97
5.5.150.0140.00311.00
5.5.140.0060.00610.81
5.5.130.0110.00511.05
5.5.120.0000.01410.70
5.5.110.0120.00411.00
5.5.100.0030.00910.86
5.5.90.0170.00610.77
5.5.80.0190.00011.01
5.5.70.0040.00810.85
5.5.60.0130.01010.82
5.5.50.0070.01710.65
5.5.40.0040.01410.74
5.5.30.0060.00610.68
5.5.20.0130.00710.84
5.5.10.0110.00410.91
5.5.00.0000.01411.01
5.4.450.0070.01010.89
5.4.440.0060.00910.66
5.4.430.0120.00411.10
5.4.420.0090.01211.11
5.4.410.0070.01510.95
5.4.400.0160.00210.56
5.4.390.0140.00910.86
5.4.380.0100.00610.81
5.4.370.0150.00610.66
5.4.360.0160.01210.69
5.4.350.0150.00610.76
5.4.340.0090.00610.60
5.4.330.0140.00710.94
5.4.320.0120.00810.80
5.4.310.0090.00610.94
5.4.300.0110.00010.61
5.4.290.0000.01010.52
5.4.280.0130.00311.02
5.4.270.0100.01010.43
5.4.260.0070.00510.61
5.4.250.0130.00310.61
5.4.240.0070.00510.77
5.4.230.0130.00510.91
5.4.220.0110.00710.75
5.4.210.0120.00810.59
5.4.200.0080.00810.87
5.4.190.0000.01710.75
5.4.180.0060.01310.79
5.4.170.0110.00711.02
5.4.160.0150.00310.93
5.4.150.0200.00310.77
5.4.140.0110.00010.82
5.4.130.0120.00610.89
5.4.120.0150.00310.90
5.4.110.0100.00310.91
5.4.100.0140.01210.88
5.4.90.0090.00910.80
5.4.80.0110.00010.90
5.4.70.0170.00710.88
5.4.60.0140.00410.58
5.4.50.0110.00410.85
5.4.40.0110.00910.84
5.4.30.0070.01010.86
5.4.20.0070.00710.74
5.4.10.0070.00210.80
5.4.00.0000.01010.99
5.3.290.0080.00310.15
5.3.280.0080.00810.19
5.3.270.0000.01110.07
5.3.260.0060.00310.34
5.3.250.0080.01110.34
5.3.240.0150.00610.14
5.3.230.0170.00010.11
5.3.220.0150.00010.18
5.3.210.0110.00510.29
5.3.200.0150.00310.19
5.3.190.0080.0049.99
5.3.180.0140.00310.47
5.3.170.0150.00210.37
5.3.160.0110.00310.46
5.3.150.0060.01510.50
5.3.140.0080.00810.36
5.3.130.0120.00510.26
5.3.120.0080.00810.32
5.3.110.0090.00310.07
5.3.100.0080.00810.07
5.3.90.0140.00510.37
5.3.80.0060.00610.02
5.3.70.0070.00710.07
5.3.60.0060.00910.34
5.3.50.0080.00810.27
5.3.40.0190.00010.23
5.3.30.0080.0009.97
5.3.20.0120.00910.04
5.3.10.0070.01010.02
5.3.00.0110.0069.90
5.2.170.0110.0039.29
5.2.160.0080.0069.29
5.2.150.0110.0009.36
5.2.140.0050.0059.12
5.2.130.0090.0059.19
5.2.120.0070.0078.97
5.2.110.0100.0078.96
5.2.100.0060.0039.12
5.2.90.0050.0059.25
5.2.80.0000.0119.24
5.2.70.0150.0039.21
5.2.60.0150.0048.89
5.2.50.0140.0069.17
5.2.40.0100.0079.25
5.2.30.0080.0119.13
5.2.20.0040.0049.06
5.2.10.0100.0079.01
5.2.00.0080.0088.82
5.1.60.0090.0038.77
5.1.50.0110.0008.77
5.1.40.0080.0088.77
5.1.30.0120.0048.77
5.1.20.0090.0068.77
5.1.10.0050.0098.77
5.1.00.0090.0058.77
5.0.50.0100.0028.77
5.0.40.0070.0018.77
5.0.30.0000.0118.77
5.0.20.0080.0048.77
5.0.10.0000.0058.77
5.0.00.0070.0048.77
4.4.90.0060.0048.77
4.4.80.0080.0048.77
4.4.70.0060.0068.77
4.4.60.0070.0048.77
4.4.50.0070.0008.77
4.4.40.0050.0028.77
4.4.30.0070.0048.77
4.4.20.0090.0008.77
4.4.10.0110.0008.77
4.4.00.0090.0038.77
4.3.110.0070.0048.77
4.3.100.0060.0038.77
4.3.90.0030.0038.77
4.3.80.0060.0038.77
4.3.70.0090.0038.77
4.3.60.0060.0068.77
4.3.50.0070.0048.77
4.3.40.0090.0038.77
4.3.30.0050.0008.77
4.3.20.0020.0028.77
4.3.10.0030.0078.77
4.3.00.0020.0078.77

preferences:
17.72 ms | 403 KiB | 5 Q